myCRED - Version 1.6.8

Version Description

Big fixes & preparation for 1.7

=

Download this release

Release Info

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

Code changes from version 1.6.7 to 1.6.8

Files changed (37) hide show
  1. abstracts/mycred-abstract-module.php +7 -6
  2. addons/badges/includes/mycred-badge-functions.php +39 -27
  3. addons/badges/includes/mycred-badge-shortcodes.php +7 -4
  4. addons/badges/myCRED-addon-badges.php +112 -44
  5. addons/banking/myCRED-addon-banking.php +59 -17
  6. addons/buy-creds/myCRED-addon-buy-creds.php +26 -24
  7. addons/email-notices/myCRED-addon-email-notices.php +113 -30
  8. addons/gateway/carts/mycred-woocommerce.php +10 -23
  9. addons/gateway/myCRED-addon-gateway.php +5 -1
  10. addons/notifications/myCRED-addon-notifications.php +12 -9
  11. addons/ranks/includes/mycred-rank-functions.php +44 -30
  12. addons/ranks/includes/mycred-rank-shortcodes.php +42 -23
  13. addons/ranks/myCRED-addon-ranks.php +49 -34
  14. addons/sell-content/myCRED-addon-sell-content.php +254 -131
  15. addons/stats/assets/css/mycred-statistics.css +22 -0
  16. addons/stats/includes/mycred-stats-shortcodes.php +44 -0
  17. addons/stats/myCRED-addon-stats.php +62 -12
  18. addons/stats/widgets/mycred-stats-widget-circulation.php +142 -13
  19. addons/transfer/includes/mycred-transfer-shortcodes.php +36 -18
  20. addons/transfer/includes/mycred-transfer-widgets.php +1 -1
  21. addons/transfer/myCRED-addon-transfer.php +23 -17
  22. includes/importers/mycred-balances.php +109 -59
  23. includes/importers/mycred-cubepoints.php +57 -10
  24. includes/importers/mycred-log-entries.php +102 -48
  25. includes/mycred-about.php +44 -22
  26. includes/mycred-admin.php +21 -15
  27. includes/mycred-functions.php +314 -228
  28. includes/mycred-log.php +2 -4
  29. includes/mycred-shortcodes.php +62 -54
  30. lang/mycred-en_US.mo +0 -0
  31. lang/mycred-en_US.po +1135 -1113
  32. lang/mycred-es_ES.mo +0 -0
  33. lang/mycred-es_ES.po +1138 -1116
  34. lang/mycred-es_VE.mo +0 -0
  35. lang/mycred-es_VE.po +1135 -1113
  36. lang/mycred-fa_IR.mo +0 -0
  37. lang/mycred-fa_IR.po +1029 -1007
abstracts/mycred-abstract-module.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED_Module class
6
  * @see http://codex.mycred.me/classes/mycred_module/
7
  * @since 0.1
8
- * @version 1.3.4
9
  */
10
  if ( ! class_exists( 'myCRED_Module' ) ) :
11
  abstract class myCRED_Module {
@@ -296,7 +296,7 @@ if ( ! class_exists( 'myCRED_Module' ) ) :
296
  * Either runs a given class method or function.
297
  * Defaults to an empty array if class/function does not exist
298
  * @since 0.1
299
- * @version 1.0.1
300
  */
301
  function call( $call, $callback, $return = NULL ) {
302
 
@@ -325,8 +325,9 @@ if ( ! class_exists( 'myCRED_Module' ) ) :
325
  }
326
 
327
  }
328
-
329
- return array();
 
330
 
331
  }
332
 
@@ -430,7 +431,7 @@ if ( ! class_exists( 'myCRED_Module' ) ) :
430
  $this->screen_id,
431
  array( $this, 'admin_page' )
432
  );
433
-
434
  add_action( 'admin_print_styles-' . $page, array( $this, 'settings_page_enqueue' ) );
435
  add_action( 'load-' . $page, array( $this, 'screen_options' ) );
436
 
@@ -514,7 +515,7 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
514
  <?php
515
 
516
  }
517
-
518
  $this->settings_header();
519
 
520
  }
5
  * myCRED_Module class
6
  * @see http://codex.mycred.me/classes/mycred_module/
7
  * @since 0.1
8
+ * @version 1.3.5
9
  */
10
  if ( ! class_exists( 'myCRED_Module' ) ) :
11
  abstract class myCRED_Module {
296
  * Either runs a given class method or function.
297
  * Defaults to an empty array if class/function does not exist
298
  * @since 0.1
299
+ * @version 1.0.3
300
  */
301
  function call( $call, $callback, $return = NULL ) {
302
 
325
  }
326
 
327
  }
328
+
329
+ if ( $return !== NULL )
330
+ return array();
331
 
332
  }
333
 
431
  $this->screen_id,
432
  array( $this, 'admin_page' )
433
  );
434
+
435
  add_action( 'admin_print_styles-' . $page, array( $this, 'settings_page_enqueue' ) );
436
  add_action( 'load-' . $page, array( $this, 'screen_options' ) );
437
 
515
  <?php
516
 
517
  }
518
+
519
  $this->settings_header();
520
 
521
  }
addons/badges/includes/mycred-badge-functions.php CHANGED
@@ -8,8 +8,8 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
8
  * @version 1.0.1
9
  */
10
  if ( ! function_exists( 'mycred_get_badge_requirements' ) ) :
11
- function mycred_get_badge_requirements( $post_id = NULL, $editor = false )
12
- {
13
  $req = (array) get_post_meta( $post_id, 'badge_requirements', true );
14
  if ( $editor && empty( $req ) )
15
  $req = array(
@@ -22,6 +22,7 @@ if ( ! function_exists( 'mycred_get_badge_requirements' ) ) :
22
  );
23
 
24
  return apply_filters( 'mycred_badge_requirements', $req, $editor );
 
25
  }
26
  endif;
27
 
@@ -32,8 +33,8 @@ endif;
32
  * @version 1.1.1
33
  */
34
  if ( ! function_exists( 'mycred_display_badge_requirement' ) ) :
35
- function mycred_display_badge_requirements( $post_id = NULL, $sep = '<br />' )
36
- {
37
  $requirements = mycred_get_badge_requirements( $post_id );
38
  if ( empty( $requirements ) ) {
39
 
@@ -42,9 +43,9 @@ if ( ! function_exists( 'mycred_display_badge_requirement' ) ) :
42
  }
43
  else {
44
 
45
- $types = mycred_get_types();
46
  $references = mycred_get_all_references();
47
- $req_count = count( $requirements );
48
 
49
  $output = array();
50
  foreach ( $requirements as $level => $needs ) {
@@ -55,7 +56,7 @@ if ( ! function_exists( 'mycred_display_badge_requirement' ) ) :
55
  if ( ! isset( $types[ $needs['type'] ] ) )
56
  continue;
57
 
58
- $mycred = mycred( $needs['type'] );
59
  $point_type = $mycred->plural();
60
 
61
  if ( ! isset( $references[ $needs['reference'] ] ) )
@@ -78,6 +79,7 @@ if ( ! function_exists( 'mycred_display_badge_requirement' ) ) :
78
  }
79
 
80
  return apply_filters( 'mycred_badge_display_requirements', $reply, $post_id, $sep );
 
81
  }
82
  endif;
83
 
@@ -88,17 +90,18 @@ endif;
88
  * @version 1.0
89
  */
90
  if ( ! function_exists( 'mycred_count_users_with_badge' ) ) :
91
- function mycred_count_users_with_badge( $post_id = NULL )
92
- {
93
  global $wpdb;
94
 
95
- $key = 'mycred_badge' . $post_id;
96
  $count = $wpdb->get_var( $wpdb->prepare( "
97
  SELECT COUNT( DISTINCT user_id )
98
  FROM {$wpdb->usermeta}
99
  WHERE meta_key = %s", $key ) );
100
 
101
  return apply_filters( 'mycred_count_users_with_badge', $count, $post_id );
 
102
  }
103
  endif;
104
 
@@ -109,17 +112,18 @@ endif;
109
  * @version 1.0
110
  */
111
  if ( ! function_exists( 'mycred_count_users_without_badge' ) ) :
112
- function mycred_count_users_without_badge( $post_id = NULL )
113
- {
114
  global $wpdb;
115
 
116
- $key = 'mycred_badge' . $post_id;
117
  $count = $wpdb->get_var( $wpdb->prepare( "
118
  SELECT COUNT( DISTINCT user_id )
119
  FROM {$wpdb->usermeta}
120
  WHERE meta_key != %s", $key ) );
121
 
122
  return apply_filters( 'mycred_count_users_without_badge', $count, $post_id );
 
123
  }
124
  endif;
125
 
@@ -130,8 +134,8 @@ endif;
130
  * @version 1.2
131
  */
132
  if ( ! function_exists( 'mycred_ref_has_badge' ) ) :
133
- function mycred_ref_has_badge( $reference = NULL, $request = NULL )
134
- {
135
  if ( $reference === NULL ) return false;
136
 
137
  global $wpdb;
@@ -146,6 +150,7 @@ if ( ! function_exists( 'mycred_ref_has_badge' ) ) :
146
  $badge_ids = false;
147
 
148
  return apply_filters( 'mycred_ref_has_badge', $badge_ids, $reference, $request );
 
149
  }
150
  endif;
151
 
@@ -156,8 +161,8 @@ endif;
156
  * @version 1.2.2
157
  */
158
  if ( ! function_exists( 'mycred_check_if_user_gets_badge' ) ) :
159
- function mycred_check_if_user_gets_badge( $user_id = NULL, $badge_ids = array(), $save = true )
160
- {
161
  if ( $user_id === NULL || empty( $badge_ids ) ) return;
162
 
163
  global $wpdb;
@@ -165,7 +170,7 @@ if ( ! function_exists( 'mycred_check_if_user_gets_badge' ) ) :
165
  $ids = array();
166
  foreach ( $badge_ids as $badge_id ) {
167
 
168
- $level = false;
169
  $requirements = mycred_get_badge_requirements( $badge_id );
170
  foreach ( $requirements as $req_level => $needs ) {
171
 
@@ -233,8 +238,8 @@ endif;
233
  * @version 1.1
234
  */
235
  if ( ! function_exists( 'mycred_get_users_badges' ) ) :
236
- function mycred_get_users_badges( $user_id = NULL )
237
- {
238
  if ( $user_id === NULL ) return '';
239
 
240
  global $wpdb;
@@ -248,6 +253,7 @@ if ( ! function_exists( 'mycred_get_users_badges' ) ) :
248
  $badge_ids = array();
249
  if ( ! empty( $query ) ) {
250
  foreach ( $query as $badge ) {
 
251
  $badge_id = substr( $badge->meta_key, 12 );
252
  if ( $badge_id == '' ) continue;
253
 
@@ -259,10 +265,12 @@ if ( ! function_exists( 'mycred_get_users_badges' ) ) :
259
  $badge_ids[ $badge_id ] = $badge->meta_value;
260
  else
261
  $badge_ids[ $badge_id ] = 0;
 
262
  }
263
  }
264
 
265
  return apply_filters( 'mycred_get_users_badges', $badge_ids, $user_id );
 
266
  }
267
  endif;
268
 
@@ -273,12 +281,12 @@ endif;
273
  * @version 1.2
274
  */
275
  if ( ! function_exists( 'mycred_display_users_badges' ) ) :
276
- function mycred_display_users_badges( $user_id = NULL )
277
- {
278
  if ( $user_id === NULL || $user_id == 0 ) return;
279
 
280
  $users_badges = mycred_get_users_badges( $user_id );
281
-
282
  echo '<div id="mycred-users-badges">';
283
 
284
  do_action( 'mycred_before_users_badges', $user_id, $users_badges );
@@ -301,6 +309,7 @@ if ( ! function_exists( 'mycred_display_users_badges' ) ) :
301
  do_action( 'mycred_after_users_badges', $user_id, $users_badges );
302
 
303
  echo '</div>';
 
304
  }
305
  endif;
306
 
@@ -311,8 +320,8 @@ endif;
311
  * @version 1.0
312
  */
313
  if ( ! function_exists( 'mycred_get_badge_ids' ) ) :
314
- function mycred_get_badge_ids()
315
- {
316
  global $wpdb;
317
 
318
  $badge_ids = $wpdb->get_col( "
@@ -322,6 +331,7 @@ if ( ! function_exists( 'mycred_get_badge_ids' ) ) :
322
  AND post_status = 'publish';" );
323
 
324
  return apply_filters( 'mycred_get_badge_ids', $badge_ids );
 
325
  }
326
  endif;
327
 
@@ -332,8 +342,8 @@ endif;
332
  * @version 1.0
333
  */
334
  if ( ! function_exists( 'mycred_get_badges' ) ) :
335
- function mycred_get_badges()
336
- {
337
  global $wpdb;
338
 
339
  $badges = $wpdb->get_results( "
@@ -353,6 +363,8 @@ if ( ! function_exists( 'mycred_get_badges' ) ) :
353
  ORDER BY posts.post_date DESC;" );
354
 
355
  return apply_filters( 'mycred_get_badges', $badges );
 
356
  }
357
  endif;
 
358
  ?>
8
  * @version 1.0.1
9
  */
10
  if ( ! function_exists( 'mycred_get_badge_requirements' ) ) :
11
+ function mycred_get_badge_requirements( $post_id = NULL, $editor = false ) {
12
+
13
  $req = (array) get_post_meta( $post_id, 'badge_requirements', true );
14
  if ( $editor && empty( $req ) )
15
  $req = array(
22
  );
23
 
24
  return apply_filters( 'mycred_badge_requirements', $req, $editor );
25
+
26
  }
27
  endif;
28
 
33
  * @version 1.1.1
34
  */
35
  if ( ! function_exists( 'mycred_display_badge_requirement' ) ) :
36
+ function mycred_display_badge_requirements( $post_id = NULL, $sep = '<br />' ) {
37
+
38
  $requirements = mycred_get_badge_requirements( $post_id );
39
  if ( empty( $requirements ) ) {
40
 
43
  }
44
  else {
45
 
46
+ $types = mycred_get_types();
47
  $references = mycred_get_all_references();
48
+ $req_count = count( $requirements );
49
 
50
  $output = array();
51
  foreach ( $requirements as $level => $needs ) {
56
  if ( ! isset( $types[ $needs['type'] ] ) )
57
  continue;
58
 
59
+ $mycred = mycred( $needs['type'] );
60
  $point_type = $mycred->plural();
61
 
62
  if ( ! isset( $references[ $needs['reference'] ] ) )
79
  }
80
 
81
  return apply_filters( 'mycred_badge_display_requirements', $reply, $post_id, $sep );
82
+
83
  }
84
  endif;
85
 
90
  * @version 1.0
91
  */
92
  if ( ! function_exists( 'mycred_count_users_with_badge' ) ) :
93
+ function mycred_count_users_with_badge( $post_id = NULL ) {
94
+
95
  global $wpdb;
96
 
97
+ $key = 'mycred_badge' . $post_id;
98
  $count = $wpdb->get_var( $wpdb->prepare( "
99
  SELECT COUNT( DISTINCT user_id )
100
  FROM {$wpdb->usermeta}
101
  WHERE meta_key = %s", $key ) );
102
 
103
  return apply_filters( 'mycred_count_users_with_badge', $count, $post_id );
104
+
105
  }
106
  endif;
107
 
112
  * @version 1.0
113
  */
114
  if ( ! function_exists( 'mycred_count_users_without_badge' ) ) :
115
+ function mycred_count_users_without_badge( $post_id = NULL ) {
116
+
117
  global $wpdb;
118
 
119
+ $key = 'mycred_badge' . $post_id;
120
  $count = $wpdb->get_var( $wpdb->prepare( "
121
  SELECT COUNT( DISTINCT user_id )
122
  FROM {$wpdb->usermeta}
123
  WHERE meta_key != %s", $key ) );
124
 
125
  return apply_filters( 'mycred_count_users_without_badge', $count, $post_id );
126
+
127
  }
128
  endif;
129
 
134
  * @version 1.2
135
  */
136
  if ( ! function_exists( 'mycred_ref_has_badge' ) ) :
137
+ function mycred_ref_has_badge( $reference = NULL, $request = NULL ) {
138
+
139
  if ( $reference === NULL ) return false;
140
 
141
  global $wpdb;
150
  $badge_ids = false;
151
 
152
  return apply_filters( 'mycred_ref_has_badge', $badge_ids, $reference, $request );
153
+
154
  }
155
  endif;
156
 
161
  * @version 1.2.2
162
  */
163
  if ( ! function_exists( 'mycred_check_if_user_gets_badge' ) ) :
164
+ function mycred_check_if_user_gets_badge( $user_id = NULL, $badge_ids = array(), $save = true ) {
165
+
166
  if ( $user_id === NULL || empty( $badge_ids ) ) return;
167
 
168
  global $wpdb;
170
  $ids = array();
171
  foreach ( $badge_ids as $badge_id ) {
172
 
173
+ $level = false;
174
  $requirements = mycred_get_badge_requirements( $badge_id );
175
  foreach ( $requirements as $req_level => $needs ) {
176
 
238
  * @version 1.1
239
  */
240
  if ( ! function_exists( 'mycred_get_users_badges' ) ) :
241
+ function mycred_get_users_badges( $user_id = NULL ) {
242
+
243
  if ( $user_id === NULL ) return '';
244
 
245
  global $wpdb;
253
  $badge_ids = array();
254
  if ( ! empty( $query ) ) {
255
  foreach ( $query as $badge ) {
256
+
257
  $badge_id = substr( $badge->meta_key, 12 );
258
  if ( $badge_id == '' ) continue;
259
 
265
  $badge_ids[ $badge_id ] = $badge->meta_value;
266
  else
267
  $badge_ids[ $badge_id ] = 0;
268
+
269
  }
270
  }
271
 
272
  return apply_filters( 'mycred_get_users_badges', $badge_ids, $user_id );
273
+
274
  }
275
  endif;
276
 
281
  * @version 1.2
282
  */
283
  if ( ! function_exists( 'mycred_display_users_badges' ) ) :
284
+ function mycred_display_users_badges( $user_id = NULL ) {
285
+
286
  if ( $user_id === NULL || $user_id == 0 ) return;
287
 
288
  $users_badges = mycred_get_users_badges( $user_id );
289
+
290
  echo '<div id="mycred-users-badges">';
291
 
292
  do_action( 'mycred_before_users_badges', $user_id, $users_badges );
309
  do_action( 'mycred_after_users_badges', $user_id, $users_badges );
310
 
311
  echo '</div>';
312
+
313
  }
314
  endif;
315
 
320
  * @version 1.0
321
  */
322
  if ( ! function_exists( 'mycred_get_badge_ids' ) ) :
323
+ function mycred_get_badge_ids() {
324
+
325
  global $wpdb;
326
 
327
  $badge_ids = $wpdb->get_col( "
331
  AND post_status = 'publish';" );
332
 
333
  return apply_filters( 'mycred_get_badge_ids', $badge_ids );
334
+
335
  }
336
  endif;
337
 
342
  * @version 1.0
343
  */
344
  if ( ! function_exists( 'mycred_get_badges' ) ) :
345
+ function mycred_get_badges() {
346
+
347
  global $wpdb;
348
 
349
  $badges = $wpdb->get_results( "
363
  ORDER BY posts.post_date DESC;" );
364
 
365
  return apply_filters( 'mycred_get_badges', $badges );
366
+
367
  }
368
  endif;
369
+
370
  ?>
addons/badges/includes/mycred-badge-shortcodes.php CHANGED
@@ -8,8 +8,8 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
8
  * @version 1.1.2
9
  */
10
  if ( ! function_exists( 'mycred_render_my_badges' ) ) :
11
- function mycred_render_my_badges( $atts, $content = '' )
12
- {
13
  extract( shortcode_atts( array(
14
  'show' => 'earned',
15
  'width' => MYCRED_BADGE_WIDTH,
@@ -91,6 +91,7 @@ if ( ! function_exists( 'mycred_render_my_badges' ) ) :
91
  ob_end_clean();
92
 
93
  return apply_filters( 'mycred_my_badges', $output, $user_id );
 
94
  }
95
  endif;
96
 
@@ -101,8 +102,8 @@ endif;
101
  * @version 1.0.2
102
  */
103
  if ( ! function_exists( 'mycred_render_badges' ) ) :
104
- function mycred_render_badges( $atts, $content = '' )
105
- {
106
  extract( shortcode_atts( array(
107
  'show' => 'default',
108
  'title' => 0,
@@ -164,6 +165,8 @@ if ( ! function_exists( 'mycred_render_badges' ) ) :
164
  ob_end_clean();
165
 
166
  return apply_filters( 'mycred_badges', $output );
 
167
  }
168
  endif;
 
169
  ?>
8
  * @version 1.1.2
9
  */
10
  if ( ! function_exists( 'mycred_render_my_badges' ) ) :
11
+ function mycred_render_my_badges( $atts, $content = '' ) {
12
+
13
  extract( shortcode_atts( array(
14
  'show' => 'earned',
15
  'width' => MYCRED_BADGE_WIDTH,
91
  ob_end_clean();
92
 
93
  return apply_filters( 'mycred_my_badges', $output, $user_id );
94
+
95
  }
96
  endif;
97
 
102
  * @version 1.0.2
103
  */
104
  if ( ! function_exists( 'mycred_render_badges' ) ) :
105
+ function mycred_render_badges( $atts, $content = '' ) {
106
+
107
  extract( shortcode_atts( array(
108
  'show' => 'default',
109
  'title' => 0,
165
  ob_end_clean();
166
 
167
  return apply_filters( 'mycred_badges', $output );
168
+
169
  }
170
  endif;
171
+
172
  ?>
addons/badges/myCRED-addon-badges.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Addon: Badges
4
  * Addon URI: http://mycred.me/add-ons/badges/
5
- * Version: 1.1.1
6
  * Description: Give your users badges based on their interaction with your website.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
@@ -29,13 +29,14 @@ require_once myCRED_BADGE_DIR . 'includes/mycred-badge-shortcodes.php';
29
  * @since 1.5
30
  * @version 1.1
31
  */
32
- if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
33
  class myCRED_Badge_Module extends myCRED_Module {
34
 
35
  /**
36
  * Construct
37
  */
38
  function __construct( $type = 'mycred_default' ) {
 
39
  parent::__construct( 'myCRED_Badge_Module', array(
40
  'module_name' => 'badges',
41
  'defaults' => array(
@@ -53,6 +54,7 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
53
  'register' => false,
54
  'menu_pos' => 90
55
  ), $type );
 
56
  }
57
 
58
  /**
@@ -60,7 +62,9 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
60
  * @version 1.0
61
  */
62
  public function module_pre_init() {
 
63
  add_filter( 'mycred_add_finished', array( $this, 'add_finished' ), 30, 3 );
 
64
  }
65
 
66
  /**
@@ -79,24 +83,31 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
79
 
80
  if ( class_exists( 'BuddyPress' ) )
81
  add_filter( 'mycred_edit_profile_tabs_bp', array( $this, 'add_user_tabs' ), 10, 2 );
 
82
  add_filter( 'mycred_edit_profile_tabs', array( $this, 'add_user_tabs' ), 10, 2 );
83
 
84
  // Insert into bbPress
85
  if ( class_exists( 'bbPress' ) ) {
 
86
  if ( $this->badges['bbpress'] == 'profile' || $this->badges['bbpress'] == 'both' )
87
  add_action( 'bbp_template_after_user_profile', array( $this, 'insert_into_bbpress_profile' ) );
 
88
  if ( $this->badges['bbpress'] == 'reply' || $this->badges['bbpress'] == 'both' )
89
  add_action( 'bbp_theme_after_reply_author_details', array( $this, 'insert_into_bbpress_reply' ) );
 
90
  }
91
 
92
  // Insert into BuddyPress
93
  if ( class_exists( 'BuddyPress' ) ) {
 
94
  // Insert into header
95
  if ( $this->badges['buddypress'] == 'header' || $this->badges['buddypress'] == 'both' )
96
  add_action( 'bp_before_member_header_meta', array( $this, 'insert_into_buddypress' ) );
 
97
  // Insert into profile
98
  if ( $this->badges['buddypress'] == 'profile' || $this->badges['buddypress'] == 'both' )
99
  add_action( 'bp_after_profile_loop_content', array( $this, 'insert_into_buddypress' ) );
 
100
  }
101
 
102
  }
@@ -107,22 +118,22 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
107
  */
108
  public function module_admin_init() {
109
 
110
- add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ) );
111
 
112
  add_filter( 'manage_mycred_badge_posts_columns', array( $this, 'adjust_column_headers' ) );
113
  add_action( 'manage_mycred_badge_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
114
 
115
- add_filter( 'post_row_actions', array( $this, 'adjust_row_actions' ), 10, 2 );
116
 
117
- add_filter( 'post_updated_messages', array( $this, 'post_updated_messages' ) );
118
- add_filter( 'enter_title_here', array( $this, 'enter_title_here' ) );
119
 
120
- add_action( 'add_meta_boxes_mycred_badge', array( $this, 'add_meta_boxes' ) );
121
- add_action( 'post_submitbox_start', array( $this, 'publishing_actions' ) );
122
- add_action( 'save_post_mycred_badge', array( $this, 'save_badge_post' ) );
123
 
124
- add_action( 'wp_ajax_mycred-assign-badge', array( $this, 'action_assign_badge' ) );
125
- add_action( 'wp_ajax_mycred-remove-connections', array( $this, 'action_remove_connections' ) );
126
 
127
  }
128
 
@@ -131,7 +142,9 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
131
  * @version 1.0
132
  */
133
  public function remove_user_page() {
 
134
  remove_submenu_page( 'users.php', 'mycred-edit-badges' );
 
135
  }
136
 
137
  /**
@@ -147,6 +160,7 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
147
  'mycred-edit-badges',
148
  array( $this, 'badge_user_screen' )
149
  );
 
150
  add_action( 'admin_print_styles-' . $page, array( $this, 'badge_user_screen_header' ) );
151
 
152
  }
@@ -180,10 +194,12 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
180
  * @version 1.1.1
181
  */
182
  public function action_assign_badge() {
 
183
  check_ajax_referer( 'mycred-assign-badge', 'token' );
184
 
185
- $badge_id = absint( $_POST['badge_id'] );
186
  $requirements = mycred_get_badge_requirements( $badge_id );
 
187
  if ( empty( $requirements ) )
188
  wp_send_json_error( 'This badge has no requirements set!' );
189
 
@@ -235,6 +251,7 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
235
  }
236
 
237
  }
 
238
  $levels[ $req_level ] = $unique;
239
 
240
  }
@@ -270,6 +287,7 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
270
  * @version 1.0.1
271
  */
272
  public function action_remove_connections() {
 
273
  check_ajax_referer( 'mycred-remove-badge-connection', 'token' );
274
 
275
  $badge_id = absint( $_POST['badge_id'] );
@@ -287,6 +305,7 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
287
  wp_send_json_success( __( 'No connections where removed.', 'mycred' ) );
288
 
289
  wp_send_json_success( sprintf( __( '%s connections where removed.', 'mycred' ), $count ) );
 
290
  }
291
 
292
  /**
@@ -335,13 +354,13 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
335
 
336
  /**
337
  * Insert Badges in BuddyPress
338
- * @version 1.1
339
  */
340
  public function insert_into_buddypress() {
341
 
342
  $user_id = bp_displayed_user_id();
343
  if ( isset( $this->badges['show_all_bp'] ) && $this->badges['show_all_bp'] == 1 )
344
- mycred_render_my_badges( array(
345
  'show' => 'all',
346
  'width' => MYCRED_BADGE_WIDTH,
347
  'height' => MYCRED_BADGE_HEIGHT,
@@ -372,6 +391,7 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
372
  }
373
 
374
  return $ran;
 
375
  }
376
 
377
  /**
@@ -379,6 +399,7 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
379
  * @version 1.0
380
  */
381
  public function register_post_type() {
 
382
  $labels = array(
383
  'name' => __( 'Badges', 'mycred' ),
384
  'singular_name' => __( 'Badge', 'mycred' ),
@@ -394,18 +415,18 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
394
  'parent_item_colon' => '',
395
  'menu_name' => __( 'Badges', 'mycred' )
396
  );
397
-
398
  $args = array(
399
  'labels' => $labels,
400
  'public' => false,
401
  'has_archive' => false,
402
  'show_ui' => true,
403
  'show_in_menu' => 'myCRED',
404
- 'capability_type' => 'page',
405
  'supports' => array( 'title' )
406
  );
407
 
408
  register_post_type( 'mycred_badge', apply_filters( 'mycred_register_badge', $args ) );
 
409
  }
410
 
411
  /**
@@ -454,6 +475,7 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
454
 
455
  // Default Image
456
  if ( $column_name == 'badge-default-image' ) {
 
457
  $default_image = get_post_meta( $post_id, 'default_image', true );
458
  if ( $default_image != '' )
459
  echo '<img src="' . $default_image . '" style="max-width: ' . MYCRED_BADGE_WIDTH . 'px;height: auto;" alt="" />';
@@ -478,13 +500,17 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
478
 
479
  // Badge Requirements
480
  elseif ( $column_name == 'badge-reqs' ) {
 
481
  echo '<small>' . __( 'A user must have gained or lost:', 'mycred' ) . '</small><br />';
482
  echo mycred_display_badge_requirements( $post_id );
 
483
  }
484
 
485
  // Badge Users
486
  elseif ( $column_name == 'badge-users' ) {
 
487
  echo mycred_count_users_with_badge( $post_id );
 
488
  }
489
 
490
  }
@@ -537,6 +563,7 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
537
  public function enter_title_here( $title ) {
538
 
539
  global $post_type;
 
540
  if ( $post_type == 'mycred_badge' )
541
  return __( 'Badge Name', 'mycred' );
542
 
@@ -568,12 +595,14 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
568
  public function publishing_actions() {
569
 
570
  global $post;
 
571
  if ( ! isset( $post->post_type ) || $post->post_type != 'mycred_badge' ) return;
572
 
573
  $lock = '';
574
  if ( $post->post_status != 'publish' )
575
- $lock = ' disabled="disabled"'; ?>
576
 
 
577
  <div id="mycred-badge-actions">
578
 
579
  <?php do_action( 'mycred_edit_badge_before_actions', $post ); ?>
@@ -585,7 +614,8 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
585
  <?php do_action( 'mycred_edit_badge_after_actions', $post ); ?>
586
 
587
  <?php if ( $lock == '' ) : ?>
588
- <script type="text/javascript">
 
589
  jQuery(function($) {
590
 
591
  $( 'input.mycred-badge-action-button' ).click(function(){
@@ -616,10 +646,13 @@ jQuery(function($) {
616
  });
617
 
618
  });
619
- </script>
 
620
  <?php endif; ?>
 
621
  </div>
622
  <?php
 
623
  }
624
 
625
  /**
@@ -628,17 +661,18 @@ jQuery(function($) {
628
  */
629
  public function metabox_badge_requirements( $post ) {
630
 
631
- $requirements = mycred_get_badge_requirements( $post->ID, true );
632
- $references = mycred_get_all_references();
633
 
634
  $default_image = get_post_meta( $post->ID, 'default_image', true );
635
- $main_image = get_post_meta( $post->ID, 'main_image', true );
636
 
637
  $sums = array(
638
  'count' => __( 'Time(s)', 'mycred' ),
639
  'sum' => __( 'In total', 'mycred' )
640
- ); ?>
641
 
 
642
  <style type="text/css">
643
  #mycred-remove-badge-connections { float: right; }
644
  #mycred-badge-actions { padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid #ccc; }
@@ -668,8 +702,10 @@ p.actions { text-align: right; }
668
  </style>
669
  <script type="text/javascript">
670
  jQuery(function($) {
 
671
  $( '#postimagediv h3.hndle span' ).empty().text( '<?php echo esc_js( esc_attr__( 'Badge Image', 'mycred' ) ); ?>' );
672
  $( '#postimagediv div.inside p a' ).attr( 'title', '<?php echo esc_js( esc_attr__( 'Set badge image', 'mycred' ) ); ?>' ).empty().text( '<?php echo esc_js( esc_attr__( 'Set badge image', 'mycred' ) ); ?>' );
 
673
  });
674
  </script>
675
  <table class="table" style="width: 100%;" id="setup-badge-reqs">
@@ -699,6 +735,7 @@ jQuery(function($) {
699
  'amount' => '',
700
  'by' => ''
701
  );
 
702
  ?>
703
  <tr class="badge-requires" id="badge-requirement-<?php echo $row; ?>">
704
  <td class="level"><?php printf( __( 'Level %d', 'mycred' ), $row + 1 ); ?></td>
@@ -708,9 +745,9 @@ jQuery(function($) {
708
  </td>
709
  <td class="for"><?php _e( 'for', 'mycred' ); ?></td>
710
  <td class="reference">
711
- <select name="mycred_badge[req][<?php echo $row; ?>][reference]" id="default-badge-req-reference"><?php
 
712
 
713
-
714
  foreach ( $references as $ref => $label ) {
715
  echo '<option value="' . $ref . '"';
716
  if ( $needs['reference'] == $ref ) echo ' selected="selected"';
@@ -723,7 +760,8 @@ jQuery(function($) {
723
  <input type="text" size="8" name="mycred_badge[req][<?php echo $row; ?>][amount]" id="default-badge-req-amount" value="<?php echo $needs['amount']; ?>" />
724
  </td>
725
  <td class="sum">
726
- <select name="mycred_badge[req][<?php echo $row; ?>][by]" id="default-badge-req-by"><?php
 
727
 
728
  foreach ( $sums as $sum => $label ) {
729
  echo '<option value="' . $sum . '"';
@@ -747,7 +785,7 @@ jQuery(function($) {
747
  }
748
  else {
749
 
750
- $default = $requirements[0];
751
  $level_image = get_post_meta( $post->ID, 'level_image' . $row, true );
752
 
753
  ?>
@@ -869,6 +907,7 @@ jQuery(function($) {
869
  </script>
870
  <div class="clear clearfix"></div>
871
  <?php
 
872
  }
873
 
874
  /**
@@ -882,10 +921,9 @@ jQuery(function($) {
882
 
883
  if ( isset( $_POST['mycred_badge']['req'][0] ) ) {
884
 
885
- $requirements = array();
886
-
887
  $base_requirements = $_POST['mycred_badge']['req'][0];
888
- $requirements[0] = $base_requirements;
889
 
890
  if ( count( $_POST['mycred_badge']['req'] ) > 1 ) {
891
  foreach ( $_POST['mycred_badge']['req'] as $row => $req ) {
@@ -933,10 +971,9 @@ jQuery(function($) {
933
 
934
  }
935
 
936
-
937
-
938
  // Let others play
939
  do_action( 'mycred_save_badge', $post_id );
 
940
  }
941
 
942
  /**
@@ -944,6 +981,7 @@ jQuery(function($) {
944
  * @version 1.0.1
945
  */
946
  public function after_general_settings( $mycred = NULL ) {
 
947
  $settings = $this->badges;
948
 
949
  $buddypress = false;
@@ -954,12 +992,14 @@ jQuery(function($) {
954
  if ( class_exists( 'bbPress' ) )
955
  $bbpress = true;
956
 
957
- if ( ! $buddypress && ! $bbpress ) return; ?>
958
 
 
959
  <h4><div class="icon icon-hook icon-active"></div><label>Badges</label></h4>
960
  <div class="body" style="display:none;">
961
 
962
  <?php if ( $buddypress ) : ?>
 
963
  <label class="subheader" for="<?php echo $this->field_id( 'buddypress' ); ?>">BuddyPress</label>
964
  <ol>
965
  <li>
@@ -972,6 +1012,7 @@ jQuery(function($) {
972
  'profile' => __( 'Include under the "Profile" tab', 'mycred' ),
973
  'both' => __( 'Include under the "Profile" tab and Profile Header', 'mycred' )
974
  );
 
975
  foreach ( $buddypress_options as $location => $description ) {
976
  echo '<option value="' . $location . '"';
977
  if ( isset( $settings['buddypress'] ) && $settings['buddypress'] == $location ) echo ' selected="selected"';
@@ -986,11 +1027,15 @@ jQuery(function($) {
986
  <label for="<?php echo $this->field_id( 'show_all_bp' ); ?>"><input type="checkbox" name="<?php echo $this->field_name( 'show_all_bp' ); ?>" id="<?php echo $this->field_id( 'show_all_bp' ); ?>" <?php checked( $settings['show_all_bp'], 1 ); ?> value="1" /> <?php _e( 'Show all badges, including badges users have not yet earned.', 'mycred' ); ?></label>
987
  </li>
988
  </ol>
 
989
  <?php else : ?>
 
990
  <input type="hidden" name="<?php echo $this->field_name( 'buddypress' ); ?>" id="<?php echo $this->field_id( 'buddypress' ); ?>" value="" />
 
991
  <?php endif; ?>
992
 
993
  <?php if ( $bbpress ) : ?>
 
994
  <label class="subheader" for="<?php echo $this->field_id( 'bbpress' ); ?>">bbPress</label>
995
  <ol>
996
  <li>
@@ -1003,6 +1048,7 @@ jQuery(function($) {
1003
  'reply' => __( 'Include in Forum Replies', 'mycred' ),
1004
  'both' => __( 'Include in Profile and Forum Replies', 'mycred' )
1005
  );
 
1006
  foreach ( $bbpress_options as $location => $description ) {
1007
  echo '<option value="' . $location . '"';
1008
  if ( isset( $settings['bbpress'] ) && $settings['bbpress'] == $location ) echo ' selected="selected"';
@@ -1017,13 +1063,16 @@ jQuery(function($) {
1017
  <label for="<?php echo $this->field_id( 'show_all_bb' ); ?>"><input type="checkbox" name="<?php echo $this->field_name( 'show_all_bb' ); ?>" id="<?php echo $this->field_id( 'show_all_bb' ); ?>" <?php checked( $settings['show_all_bb'], 1 ); ?> value="1" /> <?php _e( 'Show all badges, including badges users have not yet earned.', 'mycred' ); ?></label>
1018
  </li>
1019
  </ol>
 
1020
  <?php else : ?>
 
1021
  <input type="hidden" name="<?php echo $this->field_name( 'bbpress' ); ?>" id="<?php echo $this->field_id( 'bbpress' ); ?>" value="" />
1022
- <?php endif; ?>
1023
 
 
1024
 
1025
  </div>
1026
  <?php
 
1027
  }
1028
 
1029
  /**
@@ -1057,6 +1106,7 @@ jQuery(function($) {
1057
  $users_badges = mycred_get_users_badges( $user_id );
1058
  if ( ! empty( $_POST['mycred_badge_manual']['badges'] ) ) {
1059
  foreach ( $_POST['mycred_badge_manual']['badges'] as $badge_id => $badge ) {
 
1060
  // Give badge
1061
  if ( ! array_key_exists( $badge_id, $users_badges ) && isset( $badge['has'] ) && $badge['has'] == 1 ) {
1062
  $level = 0;
@@ -1066,16 +1116,19 @@ jQuery(function($) {
1066
  update_user_meta( $user_id, 'mycred_badge' . $badge_id, $level );
1067
  $added ++;
1068
  }
 
1069
  // Remove badge
1070
  elseif ( array_key_exists( $badge_id, $users_badges ) && ! isset( $badge['has'] ) ) {
1071
  delete_user_meta( $user_id, 'mycred_badge' . $badge_id );
1072
  $removed ++;
1073
  }
 
1074
  // Level change
1075
  elseif ( array_key_exists( $badge_id, $users_badges ) && isset( $badge['level'] ) && $badge['level'] != $users_badges[ $badge_id ] ) {
1076
  update_user_meta( $user_id, 'mycred_badge' . $badge_id, absint( $badge['level'] ) );
1077
  $updated ++;
1078
  }
 
1079
  }
1080
  }
1081
 
@@ -1094,7 +1147,7 @@ jQuery(function($) {
1094
  global $mycred_manual_badges;
1095
 
1096
  $user_id = absint( $_GET['user_id'] );
1097
- $user = get_userdata( $user_id );
1098
 
1099
  global $bp;
1100
 
@@ -1103,15 +1156,19 @@ jQuery(function($) {
1103
  if ( is_object( $bp ) && isset( $bp->version ) && version_compare( $bp->version, '2.0', '>=' ) && bp_is_active( 'xprofile' ) )
1104
  $mycred_admin->using_bp = true;
1105
 
1106
- $all_badges = mycred_get_badge_ids();
1107
  $users_badges = mycred_get_users_badges( $user_id );
1108
 
1109
  ?>
1110
  <div class="wrap" id="edit-badges-page">
1111
  <h2><?php _e( 'User Badges', 'mycred' ); ?></h2>
 
1112
  <?php if ( isset( $_POST['mycred_badge_manual'] ) ) echo '<div class="updated"><p>Badges successfully updated.</p></div>'; ?>
 
1113
  <form id="your-profile" action="" method="post">
 
1114
  <?php $mycred_admin->user_nav( $user, 'badges' ); ?>
 
1115
  <div class="clear clearfix"></div>
1116
  <p><?php _e( 'Here you can view the badges this user has earned and if needed, manually give or take away a badge from a user.', 'mycred' ); ?></p>
1117
  <div id="badge-wrapper">
@@ -1120,21 +1177,22 @@ jQuery(function($) {
1120
  if ( ! empty( $all_badges ) ) {
1121
  foreach ( $all_badges as $badge_id ) {
1122
 
1123
- $badge_id = absint( $badge_id );
1124
- $earned = $level = 0;
1125
- $status = '<span class="not-earned">' . __( 'Not earned', 'mycred' ) . '</span>';
1126
- $image = get_post_meta( $badge_id, 'default_image', true );
1127
  $requirements = mycred_get_badge_requirements( $badge_id );
1128
 
1129
  if ( array_key_exists( $badge_id, $users_badges ) ) {
 
1130
  $earned = 1;
1131
  $status = '<span class="earned">' . __( 'Earned', 'mycred' ) . '</span>';
1132
- $level = $users_badges[ $badge_id ];
 
1133
 
1134
- $image = get_post_meta( $badge_id, 'level_image' . $level, true );
1135
  if ( $image == '' )
1136
  $image = get_post_meta( $badge_id, 'main_image', true );
1137
-
1138
  }
1139
 
1140
  if ( $image != '' )
@@ -1144,29 +1202,37 @@ jQuery(function($) {
1144
 
1145
  $level_select = '<input type="hidden" name="mycred_badge_manual[badges][' . $badge_id . '][level]" value="" />';
1146
  if ( count( $requirements ) > 1 ) {
 
1147
  $level_select = '<li><select name="mycred_badge_manual[badges][' . $badge_id . '][level]">';
1148
  $level_select .= '<option value=""';
1149
  if ( ! $earned ) $level_select .= ' selected="selected"';
1150
  $level_select .= '>' . __( 'Select a level', 'mycred' ) . '</option>';
 
1151
  foreach ( $requirements as $l => $needs ) {
1152
  $level_select .= '<option value="' . $l . '"';
1153
  if ( $earned && $level == $l ) $level_select .= ' selected="selected"';
1154
  $level_select .= '>' . __( 'Level', 'mycred' ) . ' ' . ( $l + 1 ) . '</option>';
1155
  }
 
1156
  $level_select .= '</select></li>';
 
1157
  }
1158
 
1159
  ?>
1160
  <div class="the-badge">
1161
  <div class="badge-image-wrap">
 
1162
  <?php echo $image; ?>
 
1163
  </div>
1164
  <h4><?php echo get_the_title( $badge_id ); ?></h4>
1165
  <div class="badge-status"><label><?php _e( 'Status', 'mycred' ); ?></label><?php echo $status; ?></div>
1166
  <div class="badge-actions">
1167
  <ul>
1168
  <li><label><input type="checkbox" name="mycred_badge_manual[badges][<?php echo $badge_id; ?>][has]" <?php checked( $earned, 1 );?> value="1" /> <?php _e( 'Earned', 'mycred' ); ?></label></li>
 
1169
  <?php echo $level_select; ?>
 
1170
  </ul>
1171
  </div>
1172
  </div>
@@ -1190,5 +1256,7 @@ jQuery(function($) {
1190
 
1191
  $badge = new myCRED_Badge_Module();
1192
  $badge->load();
1193
- }
 
 
1194
  ?>
2
  /**
3
  * Addon: Badges
4
  * Addon URI: http://mycred.me/add-ons/badges/
5
+ * Version: 1.1.2
6
  * Description: Give your users badges based on their interaction with your website.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
29
  * @since 1.5
30
  * @version 1.1
31
  */
32
+ if ( ! class_exists( 'myCRED_Badge_Module' ) ) :
33
  class myCRED_Badge_Module extends myCRED_Module {
34
 
35
  /**
36
  * Construct
37
  */
38
  function __construct( $type = 'mycred_default' ) {
39
+
40
  parent::__construct( 'myCRED_Badge_Module', array(
41
  'module_name' => 'badges',
42
  'defaults' => array(
54
  'register' => false,
55
  'menu_pos' => 90
56
  ), $type );
57
+
58
  }
59
 
60
  /**
62
  * @version 1.0
63
  */
64
  public function module_pre_init() {
65
+
66
  add_filter( 'mycred_add_finished', array( $this, 'add_finished' ), 30, 3 );
67
+
68
  }
69
 
70
  /**
83
 
84
  if ( class_exists( 'BuddyPress' ) )
85
  add_filter( 'mycred_edit_profile_tabs_bp', array( $this, 'add_user_tabs' ), 10, 2 );
86
+
87
  add_filter( 'mycred_edit_profile_tabs', array( $this, 'add_user_tabs' ), 10, 2 );
88
 
89
  // Insert into bbPress
90
  if ( class_exists( 'bbPress' ) ) {
91
+
92
  if ( $this->badges['bbpress'] == 'profile' || $this->badges['bbpress'] == 'both' )
93
  add_action( 'bbp_template_after_user_profile', array( $this, 'insert_into_bbpress_profile' ) );
94
+
95
  if ( $this->badges['bbpress'] == 'reply' || $this->badges['bbpress'] == 'both' )
96
  add_action( 'bbp_theme_after_reply_author_details', array( $this, 'insert_into_bbpress_reply' ) );
97
+
98
  }
99
 
100
  // Insert into BuddyPress
101
  if ( class_exists( 'BuddyPress' ) ) {
102
+
103
  // Insert into header
104
  if ( $this->badges['buddypress'] == 'header' || $this->badges['buddypress'] == 'both' )
105
  add_action( 'bp_before_member_header_meta', array( $this, 'insert_into_buddypress' ) );
106
+
107
  // Insert into profile
108
  if ( $this->badges['buddypress'] == 'profile' || $this->badges['buddypress'] == 'both' )
109
  add_action( 'bp_after_profile_loop_content', array( $this, 'insert_into_buddypress' ) );
110
+
111
  }
112
 
113
  }
118
  */
119
  public function module_admin_init() {
120
 
121
+ add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ) );
122
 
123
  add_filter( 'manage_mycred_badge_posts_columns', array( $this, 'adjust_column_headers' ) );
124
  add_action( 'manage_mycred_badge_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
125
 
126
+ add_filter( 'post_row_actions', array( $this, 'adjust_row_actions' ), 10, 2 );
127
 
128
+ add_filter( 'post_updated_messages', array( $this, 'post_updated_messages' ) );
129
+ add_filter( 'enter_title_here', array( $this, 'enter_title_here' ) );
130
 
131
+ add_action( 'add_meta_boxes_mycred_badge', array( $this, 'add_meta_boxes' ) );
132
+ add_action( 'post_submitbox_start', array( $this, 'publishing_actions' ) );
133
+ add_action( 'save_post_mycred_badge', array( $this, 'save_badge_post' ) );
134
 
135
+ add_action( 'wp_ajax_mycred-assign-badge', array( $this, 'action_assign_badge' ) );
136
+ add_action( 'wp_ajax_mycred-remove-connections', array( $this, 'action_remove_connections' ) );
137
 
138
  }
139
 
142
  * @version 1.0
143
  */
144
  public function remove_user_page() {
145
+
146
  remove_submenu_page( 'users.php', 'mycred-edit-badges' );
147
+
148
  }
149
 
150
  /**
160
  'mycred-edit-badges',
161
  array( $this, 'badge_user_screen' )
162
  );
163
+
164
  add_action( 'admin_print_styles-' . $page, array( $this, 'badge_user_screen_header' ) );
165
 
166
  }
194
  * @version 1.1.1
195
  */
196
  public function action_assign_badge() {
197
+
198
  check_ajax_referer( 'mycred-assign-badge', 'token' );
199
 
200
+ $badge_id = absint( $_POST['badge_id'] );
201
  $requirements = mycred_get_badge_requirements( $badge_id );
202
+
203
  if ( empty( $requirements ) )
204
  wp_send_json_error( 'This badge has no requirements set!' );
205
 
251
  }
252
 
253
  }
254
+
255
  $levels[ $req_level ] = $unique;
256
 
257
  }
287
  * @version 1.0.1
288
  */
289
  public function action_remove_connections() {
290
+
291
  check_ajax_referer( 'mycred-remove-badge-connection', 'token' );
292
 
293
  $badge_id = absint( $_POST['badge_id'] );
305
  wp_send_json_success( __( 'No connections where removed.', 'mycred' ) );
306
 
307
  wp_send_json_success( sprintf( __( '%s connections where removed.', 'mycred' ), $count ) );
308
+
309
  }
310
 
311
  /**
354
 
355
  /**
356
  * Insert Badges in BuddyPress
357
+ * @version 1.1.1
358
  */
359
  public function insert_into_buddypress() {
360
 
361
  $user_id = bp_displayed_user_id();
362
  if ( isset( $this->badges['show_all_bp'] ) && $this->badges['show_all_bp'] == 1 )
363
+ echo mycred_render_my_badges( array(
364
  'show' => 'all',
365
  'width' => MYCRED_BADGE_WIDTH,
366
  'height' => MYCRED_BADGE_HEIGHT,
391
  }
392
 
393
  return $ran;
394
+
395
  }
396
 
397
  /**
399
  * @version 1.0
400
  */
401
  public function register_post_type() {
402
+
403
  $labels = array(
404
  'name' => __( 'Badges', 'mycred' ),
405
  'singular_name' => __( 'Badge', 'mycred' ),
415
  'parent_item_colon' => '',
416
  'menu_name' => __( 'Badges', 'mycred' )
417
  );
418
+
419
  $args = array(
420
  'labels' => $labels,
421
  'public' => false,
422
  'has_archive' => false,
423
  'show_ui' => true,
424
  'show_in_menu' => 'myCRED',
 
425
  'supports' => array( 'title' )
426
  );
427
 
428
  register_post_type( 'mycred_badge', apply_filters( 'mycred_register_badge', $args ) );
429
+
430
  }
431
 
432
  /**
475
 
476
  // Default Image
477
  if ( $column_name == 'badge-default-image' ) {
478
+
479
  $default_image = get_post_meta( $post_id, 'default_image', true );
480
  if ( $default_image != '' )
481
  echo '<img src="' . $default_image . '" style="max-width: ' . MYCRED_BADGE_WIDTH . 'px;height: auto;" alt="" />';
500
 
501
  // Badge Requirements
502
  elseif ( $column_name == 'badge-reqs' ) {
503
+
504
  echo '<small>' . __( 'A user must have gained or lost:', 'mycred' ) . '</small><br />';
505
  echo mycred_display_badge_requirements( $post_id );
506
+
507
  }
508
 
509
  // Badge Users
510
  elseif ( $column_name == 'badge-users' ) {
511
+
512
  echo mycred_count_users_with_badge( $post_id );
513
+
514
  }
515
 
516
  }
563
  public function enter_title_here( $title ) {
564
 
565
  global $post_type;
566
+
567
  if ( $post_type == 'mycred_badge' )
568
  return __( 'Badge Name', 'mycred' );
569
 
595
  public function publishing_actions() {
596
 
597
  global $post;
598
+
599
  if ( ! isset( $post->post_type ) || $post->post_type != 'mycred_badge' ) return;
600
 
601
  $lock = '';
602
  if ( $post->post_status != 'publish' )
603
+ $lock = ' disabled="disabled"';
604
 
605
+ ?>
606
  <div id="mycred-badge-actions">
607
 
608
  <?php do_action( 'mycred_edit_badge_before_actions', $post ); ?>
614
  <?php do_action( 'mycred_edit_badge_after_actions', $post ); ?>
615
 
616
  <?php if ( $lock == '' ) : ?>
617
+
618
+ <script type="text/javascript">
619
  jQuery(function($) {
620
 
621
  $( 'input.mycred-badge-action-button' ).click(function(){
646
  });
647
 
648
  });
649
+ </script>
650
+
651
  <?php endif; ?>
652
+
653
  </div>
654
  <?php
655
+
656
  }
657
 
658
  /**
661
  */
662
  public function metabox_badge_requirements( $post ) {
663
 
664
+ $requirements = mycred_get_badge_requirements( $post->ID, true );
665
+ $references = mycred_get_all_references();
666
 
667
  $default_image = get_post_meta( $post->ID, 'default_image', true );
668
+ $main_image = get_post_meta( $post->ID, 'main_image', true );
669
 
670
  $sums = array(
671
  'count' => __( 'Time(s)', 'mycred' ),
672
  'sum' => __( 'In total', 'mycred' )
673
+ );
674
 
675
+ ?>
676
  <style type="text/css">
677
  #mycred-remove-badge-connections { float: right; }
678
  #mycred-badge-actions { padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid #ccc; }
702
  </style>
703
  <script type="text/javascript">
704
  jQuery(function($) {
705
+
706
  $( '#postimagediv h3.hndle span' ).empty().text( '<?php echo esc_js( esc_attr__( 'Badge Image', 'mycred' ) ); ?>' );
707
  $( '#postimagediv div.inside p a' ).attr( 'title', '<?php echo esc_js( esc_attr__( 'Set badge image', 'mycred' ) ); ?>' ).empty().text( '<?php echo esc_js( esc_attr__( 'Set badge image', 'mycred' ) ); ?>' );
708
+
709
  });
710
  </script>
711
  <table class="table" style="width: 100%;" id="setup-badge-reqs">
735
  'amount' => '',
736
  'by' => ''
737
  );
738
+
739
  ?>
740
  <tr class="badge-requires" id="badge-requirement-<?php echo $row; ?>">
741
  <td class="level"><?php printf( __( 'Level %d', 'mycred' ), $row + 1 ); ?></td>
745
  </td>
746
  <td class="for"><?php _e( 'for', 'mycred' ); ?></td>
747
  <td class="reference">
748
+ <select name="mycred_badge[req][<?php echo $row; ?>][reference]" id="default-badge-req-reference">
749
+ <?php
750
 
 
751
  foreach ( $references as $ref => $label ) {
752
  echo '<option value="' . $ref . '"';
753
  if ( $needs['reference'] == $ref ) echo ' selected="selected"';
760
  <input type="text" size="8" name="mycred_badge[req][<?php echo $row; ?>][amount]" id="default-badge-req-amount" value="<?php echo $needs['amount']; ?>" />
761
  </td>
762
  <td class="sum">
763
+ <select name="mycred_badge[req][<?php echo $row; ?>][by]" id="default-badge-req-by">
764
+ <?php
765
 
766
  foreach ( $sums as $sum => $label ) {
767
  echo '<option value="' . $sum . '"';
785
  }
786
  else {
787
 
788
+ $default = $requirements[0];
789
  $level_image = get_post_meta( $post->ID, 'level_image' . $row, true );
790
 
791
  ?>
907
  </script>
908
  <div class="clear clearfix"></div>
909
  <?php
910
+
911
  }
912
 
913
  /**
921
 
922
  if ( isset( $_POST['mycred_badge']['req'][0] ) ) {
923
 
924
+ $requirements = array();
 
925
  $base_requirements = $_POST['mycred_badge']['req'][0];
926
+ $requirements[0] = $base_requirements;
927
 
928
  if ( count( $_POST['mycred_badge']['req'] ) > 1 ) {
929
  foreach ( $_POST['mycred_badge']['req'] as $row => $req ) {
971
 
972
  }
973
 
 
 
974
  // Let others play
975
  do_action( 'mycred_save_badge', $post_id );
976
+
977
  }
978
 
979
  /**
981
  * @version 1.0.1
982
  */
983
  public function after_general_settings( $mycred = NULL ) {
984
+
985
  $settings = $this->badges;
986
 
987
  $buddypress = false;
992
  if ( class_exists( 'bbPress' ) )
993
  $bbpress = true;
994
 
995
+ if ( ! $buddypress && ! $bbpress ) return;
996
 
997
+ ?>
998
  <h4><div class="icon icon-hook icon-active"></div><label>Badges</label></h4>
999
  <div class="body" style="display:none;">
1000
 
1001
  <?php if ( $buddypress ) : ?>
1002
+
1003
  <label class="subheader" for="<?php echo $this->field_id( 'buddypress' ); ?>">BuddyPress</label>
1004
  <ol>
1005
  <li>
1012
  'profile' => __( 'Include under the "Profile" tab', 'mycred' ),
1013
  'both' => __( 'Include under the "Profile" tab and Profile Header', 'mycred' )
1014
  );
1015
+
1016
  foreach ( $buddypress_options as $location => $description ) {
1017
  echo '<option value="' . $location . '"';
1018
  if ( isset( $settings['buddypress'] ) && $settings['buddypress'] == $location ) echo ' selected="selected"';
1027
  <label for="<?php echo $this->field_id( 'show_all_bp' ); ?>"><input type="checkbox" name="<?php echo $this->field_name( 'show_all_bp' ); ?>" id="<?php echo $this->field_id( 'show_all_bp' ); ?>" <?php checked( $settings['show_all_bp'], 1 ); ?> value="1" /> <?php _e( 'Show all badges, including badges users have not yet earned.', 'mycred' ); ?></label>
1028
  </li>
1029
  </ol>
1030
+
1031
  <?php else : ?>
1032
+
1033
  <input type="hidden" name="<?php echo $this->field_name( 'buddypress' ); ?>" id="<?php echo $this->field_id( 'buddypress' ); ?>" value="" />
1034
+
1035
  <?php endif; ?>
1036
 
1037
  <?php if ( $bbpress ) : ?>
1038
+
1039
  <label class="subheader" for="<?php echo $this->field_id( 'bbpress' ); ?>">bbPress</label>
1040
  <ol>
1041
  <li>
1048
  'reply' => __( 'Include in Forum Replies', 'mycred' ),
1049
  'both' => __( 'Include in Profile and Forum Replies', 'mycred' )
1050
  );
1051
+
1052
  foreach ( $bbpress_options as $location => $description ) {
1053
  echo '<option value="' . $location . '"';
1054
  if ( isset( $settings['bbpress'] ) && $settings['bbpress'] == $location ) echo ' selected="selected"';
1063
  <label for="<?php echo $this->field_id( 'show_all_bb' ); ?>"><input type="checkbox" name="<?php echo $this->field_name( 'show_all_bb' ); ?>" id="<?php echo $this->field_id( 'show_all_bb' ); ?>" <?php checked( $settings['show_all_bb'], 1 ); ?> value="1" /> <?php _e( 'Show all badges, including badges users have not yet earned.', 'mycred' ); ?></label>
1064
  </li>
1065
  </ol>
1066
+
1067
  <?php else : ?>
1068
+
1069
  <input type="hidden" name="<?php echo $this->field_name( 'bbpress' ); ?>" id="<?php echo $this->field_id( 'bbpress' ); ?>" value="" />
 
1070
 
1071
+ <?php endif; ?>
1072
 
1073
  </div>
1074
  <?php
1075
+
1076
  }
1077
 
1078
  /**
1106
  $users_badges = mycred_get_users_badges( $user_id );
1107
  if ( ! empty( $_POST['mycred_badge_manual']['badges'] ) ) {
1108
  foreach ( $_POST['mycred_badge_manual']['badges'] as $badge_id => $badge ) {
1109
+
1110
  // Give badge
1111
  if ( ! array_key_exists( $badge_id, $users_badges ) && isset( $badge['has'] ) && $badge['has'] == 1 ) {
1112
  $level = 0;
1116
  update_user_meta( $user_id, 'mycred_badge' . $badge_id, $level );
1117
  $added ++;
1118
  }
1119
+
1120
  // Remove badge
1121
  elseif ( array_key_exists( $badge_id, $users_badges ) && ! isset( $badge['has'] ) ) {
1122
  delete_user_meta( $user_id, 'mycred_badge' . $badge_id );
1123
  $removed ++;
1124
  }
1125
+
1126
  // Level change
1127
  elseif ( array_key_exists( $badge_id, $users_badges ) && isset( $badge['level'] ) && $badge['level'] != $users_badges[ $badge_id ] ) {
1128
  update_user_meta( $user_id, 'mycred_badge' . $badge_id, absint( $badge['level'] ) );
1129
  $updated ++;
1130
  }
1131
+
1132
  }
1133
  }
1134
 
1147
  global $mycred_manual_badges;
1148
 
1149
  $user_id = absint( $_GET['user_id'] );
1150
+ $user = get_userdata( $user_id );
1151
 
1152
  global $bp;
1153
 
1156
  if ( is_object( $bp ) && isset( $bp->version ) && version_compare( $bp->version, '2.0', '>=' ) && bp_is_active( 'xprofile' ) )
1157
  $mycred_admin->using_bp = true;
1158
 
1159
+ $all_badges = mycred_get_badge_ids();
1160
  $users_badges = mycred_get_users_badges( $user_id );
1161
 
1162
  ?>
1163
  <div class="wrap" id="edit-badges-page">
1164
  <h2><?php _e( 'User Badges', 'mycred' ); ?></h2>
1165
+
1166
  <?php if ( isset( $_POST['mycred_badge_manual'] ) ) echo '<div class="updated"><p>Badges successfully updated.</p></div>'; ?>
1167
+
1168
  <form id="your-profile" action="" method="post">
1169
+
1170
  <?php $mycred_admin->user_nav( $user, 'badges' ); ?>
1171
+
1172
  <div class="clear clearfix"></div>
1173
  <p><?php _e( 'Here you can view the badges this user has earned and if needed, manually give or take away a badge from a user.', 'mycred' ); ?></p>
1174
  <div id="badge-wrapper">
1177
  if ( ! empty( $all_badges ) ) {
1178
  foreach ( $all_badges as $badge_id ) {
1179
 
1180
+ $badge_id = absint( $badge_id );
1181
+ $earned = $level = 0;
1182
+ $status = '<span class="not-earned">' . __( 'Not earned', 'mycred' ) . '</span>';
1183
+ $image = get_post_meta( $badge_id, 'default_image', true );
1184
  $requirements = mycred_get_badge_requirements( $badge_id );
1185
 
1186
  if ( array_key_exists( $badge_id, $users_badges ) ) {
1187
+
1188
  $earned = 1;
1189
  $status = '<span class="earned">' . __( 'Earned', 'mycred' ) . '</span>';
1190
+ $level = $users_badges[ $badge_id ];
1191
+ $image = get_post_meta( $badge_id, 'level_image' . $level, true );
1192
 
 
1193
  if ( $image == '' )
1194
  $image = get_post_meta( $badge_id, 'main_image', true );
1195
+
1196
  }
1197
 
1198
  if ( $image != '' )
1202
 
1203
  $level_select = '<input type="hidden" name="mycred_badge_manual[badges][' . $badge_id . '][level]" value="" />';
1204
  if ( count( $requirements ) > 1 ) {
1205
+
1206
  $level_select = '<li><select name="mycred_badge_manual[badges][' . $badge_id . '][level]">';
1207
  $level_select .= '<option value=""';
1208
  if ( ! $earned ) $level_select .= ' selected="selected"';
1209
  $level_select .= '>' . __( 'Select a level', 'mycred' ) . '</option>';
1210
+
1211
  foreach ( $requirements as $l => $needs ) {
1212
  $level_select .= '<option value="' . $l . '"';
1213
  if ( $earned && $level == $l ) $level_select .= ' selected="selected"';
1214
  $level_select .= '>' . __( 'Level', 'mycred' ) . ' ' . ( $l + 1 ) . '</option>';
1215
  }
1216
+
1217
  $level_select .= '</select></li>';
1218
+
1219
  }
1220
 
1221
  ?>
1222
  <div class="the-badge">
1223
  <div class="badge-image-wrap">
1224
+
1225
  <?php echo $image; ?>
1226
+
1227
  </div>
1228
  <h4><?php echo get_the_title( $badge_id ); ?></h4>
1229
  <div class="badge-status"><label><?php _e( 'Status', 'mycred' ); ?></label><?php echo $status; ?></div>
1230
  <div class="badge-actions">
1231
  <ul>
1232
  <li><label><input type="checkbox" name="mycred_badge_manual[badges][<?php echo $badge_id; ?>][has]" <?php checked( $earned, 1 );?> value="1" /> <?php _e( 'Earned', 'mycred' ); ?></label></li>
1233
+
1234
  <?php echo $level_select; ?>
1235
+
1236
  </ul>
1237
  </div>
1238
  </div>
1256
 
1257
  $badge = new myCRED_Badge_Module();
1258
  $badge->load();
1259
+
1260
+ endif;
1261
+
1262
  ?>
addons/banking/myCRED-addon-banking.php CHANGED
@@ -14,24 +14,25 @@ define( 'myCRED_BANK_DIR', myCRED_ADDONS_DIR . 'banking/' );
14
  define( 'myCRED_BANK_ABSTRACT_DIR', myCRED_BANK_DIR . 'abstracts/' );
15
  define( 'myCRED_BANK_SERVICES_DIR', myCRED_BANK_DIR . 'services/' );
16
 
17
- require_once( myCRED_BANK_ABSTRACT_DIR . 'mycred-abstract-service.php' );
18
 
19
- require_once( myCRED_BANK_SERVICES_DIR . 'mycred-bank-service-central.php' );
20
- require_once( myCRED_BANK_SERVICES_DIR . 'mycred-bank-service-interest.php' );
21
- require_once( myCRED_BANK_SERVICES_DIR . 'mycred-bank-service-payouts.php' );
22
 
23
  /**
24
  * myCRED_Banking_Module class
25
  * @since 0.1
26
- * @version 1.0
27
  */
28
- if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
29
  class myCRED_Banking_Module extends myCRED_Module {
30
 
31
  /**
32
  * Constructor
33
  */
34
  public function __construct( $type = 'mycred_default' ) {
 
35
  parent::__construct( 'myCRED_Banking_Module', array(
36
  'module_name' => 'banking',
37
  'option_id' => 'mycred_pref_bank',
@@ -53,6 +54,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
53
  add_action( 'mycred_edit_profile', array( $this, 'user_level_override' ), 30, 2 );
54
  add_action( 'mycred_edit_profile_action', array( $this, 'save_user_level_override' ) );
55
  add_action( 'mycred_admin_notices', array( $this, 'update_user_level_profile_notice' ) );
 
56
  }
57
 
58
  /**
@@ -78,6 +80,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
78
  * @version 1.0
79
  */
80
  public function user_level_override( $user, $type ) {
 
81
  if ( $this->mycred_type != $type ) return;
82
 
83
  if ( ! empty( $this->services ) ) {
@@ -87,6 +90,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
87
  }
88
  }
89
  }
 
90
  }
91
 
92
  /**
@@ -95,6 +99,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
95
  * @version 1.0
96
  */
97
  public function save_user_level_override() {
 
98
  if ( ! empty( $this->services ) ) {
99
  foreach ( $this->services as $key => $gdata ) {
100
  if ( $this->is_active( $key ) && isset( $gdata['callback'] ) ) {
@@ -102,6 +107,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
102
  }
103
  }
104
  }
 
105
  }
106
 
107
  /**
@@ -110,6 +116,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
110
  * @version 1.0
111
  */
112
  public function update_user_level_profile_notice() {
 
113
  if ( ! empty( $this->services ) ) {
114
  foreach ( $this->services as $key => $gdata ) {
115
  if ( $this->is_active( $key ) && isset( $gdata['callback'] ) ) {
@@ -117,15 +124,17 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
117
  }
118
  }
119
  }
 
120
  }
121
 
122
  /**
123
  * Call
124
  * Either runs a given class method or function.
125
  * @since 1.2
126
- * @version 1.1
127
  */
128
  public function call( $call, $callback, $return = NULL, $var1 = NULL, $var2 = NULL, $var3 = NULL ) {
 
129
  // Class
130
  if ( is_array( $callback ) && class_exists( $callback[0] ) ) {
131
  $class = $callback[0];
@@ -145,6 +154,10 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
145
  return call_user_func( $callback, $this );
146
  }
147
  }
 
 
 
 
148
  }
149
 
150
  /**
@@ -153,6 +166,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
153
  * @version 1.0
154
  */
155
  public function get( $save = false ) {
 
156
  // Savings
157
  $services['central'] = array(
158
  'title' => __( 'Central Banking', 'mycred' ),
@@ -187,6 +201,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
187
 
188
  $this->services = $services;
189
  return $services;
 
190
  }
191
 
192
  /**
@@ -195,8 +210,10 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
195
  * @version 1.0
196
  */
197
  public function settings_header() {
198
- $banking_icons = plugins_url( 'assets/images/gateway-icons.png', myCRED_THIS ); ?>
199
 
 
 
 
200
  <!-- Banking Add-on -->
201
  <style type="text/css">
202
  #myCRED-wrap #accordion h4 .gate-icon { display: block; width: 48px; height: 48px; margin: 0 0 0 0; padding: 0; float: left; line-height: 48px; }
@@ -206,6 +223,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
206
  #myCRED-wrap #accordion h4 .gate-icon.sandbox { background-position-x: -96px; }
207
  </style>
208
  <?php
 
209
  }
210
 
211
  /**
@@ -214,34 +232,42 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
214
  * @version 1.1
215
  */
216
  public function admin_page() {
 
217
  // Security
218
  if ( ! $this->core->can_edit_creds() )
219
  wp_die( __( 'Access Denied', 'mycred' ) );
220
 
221
  // Get installed
222
- $installed = $this->get( true ); ?>
223
 
 
224
  <div class="wrap" id="myCRED-wrap">
225
  <h2><?php echo sprintf( __( '%s Banking', 'mycred' ), mycred_label() ); ?></h2>
 
226
  <?php $this->update_notice(); ?>
227
 
228
  <p><?php echo $this->core->template_tags_general( __( 'Your banking setup for %plural%.', 'mycred' ) ); ?></p>
 
229
  <?php if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) : ?>
230
 
231
  <p><strong><?php _e( 'WP-Cron deactivation detected!', 'mycred' ); ?></strong></p>
232
  <p><?php _e( 'Warning! This add-on requires WP - Cron to work.', 'mycred' ); ?></p>
 
233
  <?php endif; ?>
234
 
235
  <form method="post" action="options.php">
 
236
  <?php settings_fields( $this->settings_name ); ?>
237
 
238
  <!-- Loop though Services -->
239
  <div class="list-items expandable-li" id="accordion">
240
  <?php
 
241
  // Installed Services
242
  if ( ! empty( $installed ) ) {
243
- foreach ( $installed as $key => $data ) { ?>
244
 
 
245
  <h4><div class="gate-icon <?php if ( $this->is_active( $key ) ) echo 'active'; else echo 'inactive'; ?>"></div><?php echo $this->core->template_tags_general( $data['title'] ); ?></h4>
246
  <div class="body" style="display:none;">
247
  <p><?php echo nl2br( $this->core->template_tags_general( $data['description'] ) ); ?></p>
@@ -251,18 +277,25 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
251
  <input type="checkbox" name="<?php echo $this->option_id; ?>[active][]" id="mycred-bank-service-<?php echo $key; ?>" value="<?php echo $key; ?>"<?php if ( $this->is_active( $key ) ) echo ' checked="checked"'; ?> />
252
  </li>
253
  </ol>
254
- <?php echo $this->call( 'preferences', $data['callback'] ); ?>
 
255
 
256
  </div>
257
- <?php }
258
- } ?>
 
 
 
 
259
 
260
  </div>
 
261
  <?php submit_button( __( 'Update Changes', 'mycred' ), 'primary large', 'submit', false ); ?>
262
 
263
  </form>
264
  </div>
265
  <?php
 
266
  }
267
 
268
  /**
@@ -271,6 +304,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
271
  * @version 1.1
272
  */
273
  public function sanitize_settings( $post ) {
 
274
  // Loop though all installed hooks
275
  $installed = $this->get();
276
 
@@ -283,7 +317,9 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
283
 
284
  if ( ! empty( $installed ) ) {
285
  foreach ( $installed as $key => $data ) {
 
286
  if ( isset( $data['callback'] ) && isset( $post['service_prefs'][ $key ] ) ) {
 
287
  // Old settings
288
  $old_settings = $post['service_prefs'][ $key ];
289
 
@@ -306,19 +342,23 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
306
  $this->call( 'activate', $data['callback'], $new_post['service_prefs'][ $key ] );
307
 
308
  // Next item
 
309
  }
 
310
  }
311
  }
312
 
313
  $installed = NULL;
314
  return $new_post;
 
315
  }
 
316
  }
317
- }
 
 
 
318
 
319
- add_action( 'mycred_pre_init', 'mycred_load_banking' );
320
- function mycred_load_banking()
321
- {
322
  global $mycred_modules;
323
 
324
  $mycred_types = mycred_get_types();
@@ -326,5 +366,7 @@ function mycred_load_banking()
326
  $mycred_modules[ $type ]['banking'] = new myCRED_Banking_Module( $type );
327
  $mycred_modules[ $type ]['banking']->load();
328
  }
 
329
  }
 
330
  ?>
14
  define( 'myCRED_BANK_ABSTRACT_DIR', myCRED_BANK_DIR . 'abstracts/' );
15
  define( 'myCRED_BANK_SERVICES_DIR', myCRED_BANK_DIR . 'services/' );
16
 
17
+ require_once myCRED_BANK_ABSTRACT_DIR . 'mycred-abstract-service.php';
18
 
19
+ require_once myCRED_BANK_SERVICES_DIR . 'mycred-bank-service-central.php';
20
+ require_once myCRED_BANK_SERVICES_DIR . 'mycred-bank-service-interest.php';
21
+ require_once myCRED_BANK_SERVICES_DIR . 'mycred-bank-service-payouts.php';
22
 
23
  /**
24
  * myCRED_Banking_Module class
25
  * @since 0.1
26
+ * @version 1.2
27
  */
28
+ if ( ! class_exists( 'myCRED_Banking_Module' ) ) :
29
  class myCRED_Banking_Module extends myCRED_Module {
30
 
31
  /**
32
  * Constructor
33
  */
34
  public function __construct( $type = 'mycred_default' ) {
35
+
36
  parent::__construct( 'myCRED_Banking_Module', array(
37
  'module_name' => 'banking',
38
  'option_id' => 'mycred_pref_bank',
54
  add_action( 'mycred_edit_profile', array( $this, 'user_level_override' ), 30, 2 );
55
  add_action( 'mycred_edit_profile_action', array( $this, 'save_user_level_override' ) );
56
  add_action( 'mycred_admin_notices', array( $this, 'update_user_level_profile_notice' ) );
57
+
58
  }
59
 
60
  /**
80
  * @version 1.0
81
  */
82
  public function user_level_override( $user, $type ) {
83
+
84
  if ( $this->mycred_type != $type ) return;
85
 
86
  if ( ! empty( $this->services ) ) {
90
  }
91
  }
92
  }
93
+
94
  }
95
 
96
  /**
99
  * @version 1.0
100
  */
101
  public function save_user_level_override() {
102
+
103
  if ( ! empty( $this->services ) ) {
104
  foreach ( $this->services as $key => $gdata ) {
105
  if ( $this->is_active( $key ) && isset( $gdata['callback'] ) ) {
107
  }
108
  }
109
  }
110
+
111
  }
112
 
113
  /**
116
  * @version 1.0
117
  */
118
  public function update_user_level_profile_notice() {
119
+
120
  if ( ! empty( $this->services ) ) {
121
  foreach ( $this->services as $key => $gdata ) {
122
  if ( $this->is_active( $key ) && isset( $gdata['callback'] ) ) {
124
  }
125
  }
126
  }
127
+
128
  }
129
 
130
  /**
131
  * Call
132
  * Either runs a given class method or function.
133
  * @since 1.2
134
+ * @version 1.1.1
135
  */
136
  public function call( $call, $callback, $return = NULL, $var1 = NULL, $var2 = NULL, $var3 = NULL ) {
137
+
138
  // Class
139
  if ( is_array( $callback ) && class_exists( $callback[0] ) ) {
140
  $class = $callback[0];
154
  return call_user_func( $callback, $this );
155
  }
156
  }
157
+
158
+ if ( $return !== NULL )
159
+ return array();
160
+
161
  }
162
 
163
  /**
166
  * @version 1.0
167
  */
168
  public function get( $save = false ) {
169
+
170
  // Savings
171
  $services['central'] = array(
172
  'title' => __( 'Central Banking', 'mycred' ),
201
 
202
  $this->services = $services;
203
  return $services;
204
+
205
  }
206
 
207
  /**
210
  * @version 1.0
211
  */
212
  public function settings_header() {
 
213
 
214
+ $banking_icons = plugins_url( 'assets/images/gateway-icons.png', myCRED_THIS );
215
+
216
+ ?>
217
  <!-- Banking Add-on -->
218
  <style type="text/css">
219
  #myCRED-wrap #accordion h4 .gate-icon { display: block; width: 48px; height: 48px; margin: 0 0 0 0; padding: 0; float: left; line-height: 48px; }
223
  #myCRED-wrap #accordion h4 .gate-icon.sandbox { background-position-x: -96px; }
224
  </style>
225
  <?php
226
+
227
  }
228
 
229
  /**
232
  * @version 1.1
233
  */
234
  public function admin_page() {
235
+
236
  // Security
237
  if ( ! $this->core->can_edit_creds() )
238
  wp_die( __( 'Access Denied', 'mycred' ) );
239
 
240
  // Get installed
241
+ $installed = $this->get( true );
242
 
243
+ ?>
244
  <div class="wrap" id="myCRED-wrap">
245
  <h2><?php echo sprintf( __( '%s Banking', 'mycred' ), mycred_label() ); ?></h2>
246
+
247
  <?php $this->update_notice(); ?>
248
 
249
  <p><?php echo $this->core->template_tags_general( __( 'Your banking setup for %plural%.', 'mycred' ) ); ?></p>
250
+
251
  <?php if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) : ?>
252
 
253
  <p><strong><?php _e( 'WP-Cron deactivation detected!', 'mycred' ); ?></strong></p>
254
  <p><?php _e( 'Warning! This add-on requires WP - Cron to work.', 'mycred' ); ?></p>
255
+
256
  <?php endif; ?>
257
 
258
  <form method="post" action="options.php">
259
+
260
  <?php settings_fields( $this->settings_name ); ?>
261
 
262
  <!-- Loop though Services -->
263
  <div class="list-items expandable-li" id="accordion">
264
  <?php
265
+
266
  // Installed Services
267
  if ( ! empty( $installed ) ) {
268
+ foreach ( $installed as $key => $data ) {
269
 
270
+ ?>
271
  <h4><div class="gate-icon <?php if ( $this->is_active( $key ) ) echo 'active'; else echo 'inactive'; ?>"></div><?php echo $this->core->template_tags_general( $data['title'] ); ?></h4>
272
  <div class="body" style="display:none;">
273
  <p><?php echo nl2br( $this->core->template_tags_general( $data['description'] ) ); ?></p>
277
  <input type="checkbox" name="<?php echo $this->option_id; ?>[active][]" id="mycred-bank-service-<?php echo $key; ?>" value="<?php echo $key; ?>"<?php if ( $this->is_active( $key ) ) echo ' checked="checked"'; ?> />
278
  </li>
279
  </ol>
280
+
281
+ <?php $this->call( 'preferences', $data['callback'] ); ?>
282
 
283
  </div>
284
+ <?php
285
+
286
+ }
287
+ }
288
+
289
+ ?>
290
 
291
  </div>
292
+
293
  <?php submit_button( __( 'Update Changes', 'mycred' ), 'primary large', 'submit', false ); ?>
294
 
295
  </form>
296
  </div>
297
  <?php
298
+
299
  }
300
 
301
  /**
304
  * @version 1.1
305
  */
306
  public function sanitize_settings( $post ) {
307
+
308
  // Loop though all installed hooks
309
  $installed = $this->get();
310
 
317
 
318
  if ( ! empty( $installed ) ) {
319
  foreach ( $installed as $key => $data ) {
320
+
321
  if ( isset( $data['callback'] ) && isset( $post['service_prefs'][ $key ] ) ) {
322
+
323
  // Old settings
324
  $old_settings = $post['service_prefs'][ $key ];
325
 
342
  $this->call( 'activate', $data['callback'], $new_post['service_prefs'][ $key ] );
343
 
344
  // Next item
345
+
346
  }
347
+
348
  }
349
  }
350
 
351
  $installed = NULL;
352
  return $new_post;
353
+
354
  }
355
+
356
  }
357
+ endif;
358
+
359
+ add_action( 'mycred_pre_init', 'mycred_load_banking_addon' );
360
+ function mycred_load_banking_addon() {
361
 
 
 
 
362
  global $mycred_modules;
363
 
364
  $mycred_types = mycred_get_types();
366
  $mycred_modules[ $type ]['banking'] = new myCRED_Banking_Module( $type );
367
  $mycred_modules[ $type ]['banking']->load();
368
  }
369
+
370
  }
371
+
372
  ?>
addons/buy-creds/myCRED-addon-buy-creds.php CHANGED
@@ -78,19 +78,19 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
78
  */
79
  public function load() {
80
 
81
- add_action( 'mycred_init', array( $this, 'module_init' ) );
82
- add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ) );
83
 
84
- add_filter( 'set-screen-option', array( $this, 'set_payments_per_page' ), 11, 3 );
85
- add_action( 'mycred_admin_init', array( $this, 'register_settings' ) );
86
- add_action( 'mycred_add_menu', array( $this, 'add_menu' ), $this->menu_pos );
87
- add_action( 'mycred_add_menu', array( $this, 'add_to_menu' ), $this->menu_pos+1 );
88
- add_action( 'mycred_after_core_prefs', array( $this, 'after_general_settings' ) );
89
- add_filter( 'mycred_save_core_prefs', array( $this, 'sanitize_extra_settings' ), 90, 3 );
90
 
91
- add_action( 'mycred_edit_profile', array( $this, 'user_level_exchange_rates' ), 10, 2 );
92
- add_action( 'mycred_edit_profile_action', array( $this, 'save_user_override' ) );
93
- add_action( 'mycred_admin_notices', array( $this, 'update_profile_notice' ) );
94
 
95
  add_filter( 'manage_buycred_payment_posts_columns', array( $this, 'adjust_column_headers' ) );
96
  add_action( 'manage_buycred_payment_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
@@ -296,8 +296,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
296
  'can_export' => true,
297
  'has_archive' => false,
298
  'exclude_from_search' => true,
299
- 'publicly_queryable' => false,
300
- 'capability_type' => 'page'
301
  );
302
  register_post_type( 'buycred_payment', apply_filters( 'mycred_setup_pending_payment', $args ) );
303
 
@@ -306,14 +305,14 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
306
  /**
307
  * Delete Pending Payment
308
  * @since 1.6.4
309
- * @version 1.0
310
  */
311
  function delete_pending_payment( $payment_id = '' ) {
312
 
313
  if ( $this->current_user_id == 0 ) return;
314
 
315
  $payment_id = sanitize_key( $payment_id );
316
- $payment = get_page_by_title( strtoupper( $post_title ), OBJECT, 'buycred_payment' );
317
 
318
  // If the pending transaction is found and it is ours, delete it now.
319
  if ( isset( $payment->ID ) && get_post_meta( $payment->ID, 'from', true ) == $this->current_user_id ) {
@@ -634,7 +633,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
634
  else
635
  $buy_creds = $defaults;
636
 
637
- $thankyou_use = $buy_creds['thankyou']['use'];
638
  $cancelled_use = $buy_creds['cancelled']['use'];
639
 
640
  ?>
@@ -800,7 +799,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
800
  $types = $this->core->buy_creds['types'];
801
 
802
  $users_saved_overrides = (array) mycred_get_user_meta( $user->ID, 'mycred_buycred_rates_' . $type, '', true );
803
- $installed = $this->get();
804
 
805
  $usable = array();
806
  foreach ( $installed as $gateway_id => $prefs ) {
@@ -907,7 +906,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
907
  /**
908
  * Payment Gateways Page
909
  * @since 0.1
910
- * @version 1.2
911
  */
912
  public function admin_page() {
913
 
@@ -969,7 +968,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
969
 
970
  endif;
971
 
972
- echo $this->call( 'preferences', $data['callback'] );
973
 
974
  ?>
975
  <input type="hidden" name="mycred_pref_buycreds[installed]" value="<?php echo $key; ?>" />
@@ -1107,9 +1106,11 @@ jQuery(function($) {
1107
  if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) )
1108
  echo '<input type="hidden" name="paged" value="' . esc_attr( $_GET['paged'] ) . '" />';
1109
 
1110
- $log->search(); ?>
1111
 
 
1112
  <input type="hidden" name="page" value="<?php echo esc_attr( $_GET['page'] ); ?>" />
 
1113
  <?php do_action( 'mycred_above_payment_log_table', $this ); ?>
1114
 
1115
  <div class="tablenav top">
@@ -1149,8 +1150,8 @@ jQuery(function($) {
1149
 
1150
  // Prep
1151
  $date_format = get_option( 'date_format' ) . ' ' . get_option( 'time_format' );
1152
- $entry_data = '';
1153
- $alt = 0;
1154
 
1155
  // Loop results
1156
  foreach ( $log->results as $log_entry ) {
@@ -1278,6 +1279,7 @@ jQuery(function($) {
1278
  <?php $log->table_nav( 'bottom', false ); ?>
1279
 
1280
  </div>
 
1281
  <?php do_action( 'mycred_below_payment_log_table', $this ); ?>
1282
 
1283
  </form>
@@ -1777,7 +1779,7 @@ form.myCRED-buy-form > div label { display: block; }
1777
 
1778
  $string = $this->core->allowed_tags( $string, false );
1779
  $string = trim( $string );
1780
- $title = $this->core->template_tags_general( $string );
1781
 
1782
  return $title;
1783
 
@@ -1790,7 +1792,7 @@ form.myCRED-buy-form > div label { display: block; }
1790
  */
1791
  public function prep_shortcode_amount( $amount = '' ) {
1792
 
1793
- $amount = $this->core->number( $amount );
1794
  $minimum = $this->core->number( $this->core->buy_creds['minimum'] );
1795
 
1796
  if ( empty( $amount ) || $amount < $minimum )
78
  */
79
  public function load() {
80
 
81
+ add_action( 'mycred_init', array( $this, 'module_init' ) );
82
+ add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ) );
83
 
84
+ add_filter( 'set-screen-option', array( $this, 'set_payments_per_page' ), 11, 3 );
85
+ add_action( 'mycred_admin_init', array( $this, 'register_settings' ) );
86
+ add_action( 'mycred_add_menu', array( $this, 'add_menu' ), $this->menu_pos );
87
+ add_action( 'mycred_add_menu', array( $this, 'add_to_menu' ), $this->menu_pos+1 );
88
+ add_action( 'mycred_after_core_prefs', array( $this, 'after_general_settings' ) );
89
+ add_filter( 'mycred_save_core_prefs', array( $this, 'sanitize_extra_settings' ), 90, 3 );
90
 
91
+ add_action( 'mycred_edit_profile', array( $this, 'user_level_exchange_rates' ), 10, 2 );
92
+ add_action( 'mycred_edit_profile_action', array( $this, 'save_user_override' ) );
93
+ add_action( 'mycred_admin_notices', array( $this, 'update_profile_notice' ) );
94
 
95
  add_filter( 'manage_buycred_payment_posts_columns', array( $this, 'adjust_column_headers' ) );
96
  add_action( 'manage_buycred_payment_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
296
  'can_export' => true,
297
  'has_archive' => false,
298
  'exclude_from_search' => true,
299
+ 'publicly_queryable' => false
 
300
  );
301
  register_post_type( 'buycred_payment', apply_filters( 'mycred_setup_pending_payment', $args ) );
302
 
305
  /**
306
  * Delete Pending Payment
307
  * @since 1.6.4
308
+ * @version 1.0.1
309
  */
310
  function delete_pending_payment( $payment_id = '' ) {
311
 
312
  if ( $this->current_user_id == 0 ) return;
313
 
314
  $payment_id = sanitize_key( $payment_id );
315
+ $payment = get_page_by_title( strtoupper( $payment_id ), OBJECT, 'buycred_payment' );
316
 
317
  // If the pending transaction is found and it is ours, delete it now.
318
  if ( isset( $payment->ID ) && get_post_meta( $payment->ID, 'from', true ) == $this->current_user_id ) {
633
  else
634
  $buy_creds = $defaults;
635
 
636
+ $thankyou_use = $buy_creds['thankyou']['use'];
637
  $cancelled_use = $buy_creds['cancelled']['use'];
638
 
639
  ?>
799
  $types = $this->core->buy_creds['types'];
800
 
801
  $users_saved_overrides = (array) mycred_get_user_meta( $user->ID, 'mycred_buycred_rates_' . $type, '', true );
802
+ $installed = $this->get();
803
 
804
  $usable = array();
805
  foreach ( $installed as $gateway_id => $prefs ) {
906
  /**
907
  * Payment Gateways Page
908
  * @since 0.1
909
+ * @version 1.2.1
910
  */
911
  public function admin_page() {
912
 
968
 
969
  endif;
970
 
971
+ $this->call( 'preferences', $data['callback'] );
972
 
973
  ?>
974
  <input type="hidden" name="mycred_pref_buycreds[installed]" value="<?php echo $key; ?>" />
1106
  if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) )
1107
  echo '<input type="hidden" name="paged" value="' . esc_attr( $_GET['paged'] ) . '" />';
1108
 
1109
+ $log->search();
1110
 
1111
+ ?>
1112
  <input type="hidden" name="page" value="<?php echo esc_attr( $_GET['page'] ); ?>" />
1113
+
1114
  <?php do_action( 'mycred_above_payment_log_table', $this ); ?>
1115
 
1116
  <div class="tablenav top">
1150
 
1151
  // Prep
1152
  $date_format = get_option( 'date_format' ) . ' ' . get_option( 'time_format' );
1153
+ $entry_data = '';
1154
+ $alt = 0;
1155
 
1156
  // Loop results
1157
  foreach ( $log->results as $log_entry ) {
1279
  <?php $log->table_nav( 'bottom', false ); ?>
1280
 
1281
  </div>
1282
+
1283
  <?php do_action( 'mycred_below_payment_log_table', $this ); ?>
1284
 
1285
  </form>
1779
 
1780
  $string = $this->core->allowed_tags( $string, false );
1781
  $string = trim( $string );
1782
+ $title = $this->core->template_tags_general( $string );
1783
 
1784
  return $title;
1785
 
1792
  */
1793
  public function prep_shortcode_amount( $amount = '' ) {
1794
 
1795
+ $amount = $this->core->number( $amount );
1796
  $minimum = $this->core->number( $this->core->buy_creds['minimum'] );
1797
 
1798
  if ( empty( $amount ) || $amount < $minimum )
addons/email-notices/myCRED-addon-email-notices.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Addon: Email Notices
4
  * Addon URI: http://mycred.me/add-ons/email-notices/
5
- * Version: 1.3
6
  * Description: Create email notices for any type of myCRED instance.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
@@ -17,7 +17,7 @@ define( 'myCRED_EMAIL_VERSION', myCRED_VERSION . '.1' );
17
  * @since 1.1
18
  * @version 1.2
19
  */
20
- if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
21
  class myCRED_Email_Notice_Module extends myCRED_Module {
22
 
23
  public $instances = array();
@@ -26,6 +26,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
26
  * Construct
27
  */
28
  function __construct() {
 
29
  parent::__construct( 'myCRED_Email_Notice_Module', array(
30
  'module_name' => 'emailnotices',
31
  'defaults' => array(
@@ -47,6 +48,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
47
  'register' => false,
48
  'add_to_core' => true
49
  ) );
 
50
  }
51
 
52
  /**
@@ -55,6 +57,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
55
  * @version 1.2.1
56
  */
57
  public function module_init() {
 
58
  $this->register_post_type();
59
  $this->setup_instances();
60
 
@@ -84,22 +87,24 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
84
  * @version 1.1
85
  */
86
  public function module_admin_init() {
87
- add_action( 'admin_head', array( $this, 'admin_header' ) );
88
- add_filter( 'post_row_actions', array( $this, 'adjust_row_actions' ), 10, 2 );
 
89
 
90
  add_filter( 'manage_mycred_email_notice_posts_columns', array( $this, 'adjust_column_headers' ), 50 );
91
  add_action( 'manage_mycred_email_notice_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
92
 
93
- add_filter( 'post_updated_messages', array( $this, 'post_updated_messages' ) );
94
- add_filter( 'enter_title_here', array( $this, 'enter_title_here' ) );
95
- add_filter( 'default_content', array( $this, 'default_content' ) );
96
 
97
- add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) );
98
- add_action( 'post_submitbox_start', array( $this, 'publish_warning' ) );
99
- add_action( 'save_post_mycred_email_notice', array( $this, 'save_email_notice' ) );
100
 
101
  if ( $this->emailnotices['use_html'] === false )
102
  add_filter( 'user_can_richedit', array( $this, 'disable_richedit' ) );
 
103
  }
104
 
105
  /**
@@ -108,11 +113,13 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
108
  * @version 1.0
109
  */
110
  public function admin_header() {
 
111
  $screen = get_current_screen();
112
  if ( $screen->id == 'mycred_email_notice' && $this->emailnotices['use_html'] === false ) {
113
  remove_action( 'media_buttons', 'media_buttons' );
114
  echo '<style type="text/css">#ed_toolbar { display: none !important; }</style>';
115
  }
 
116
  }
117
 
118
  /**
@@ -161,6 +168,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
161
  * @version 1.0
162
  */
163
  public function register_post_type() {
 
164
  $labels = array(
165
  'name' => __( 'Email Notices', 'mycred' ),
166
  'singular_name' => __( 'Email Notice', 'mycred' ),
@@ -185,7 +193,9 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
185
  'capability_type' => 'page',
186
  'supports' => array( 'title', 'editor' )
187
  );
 
188
  register_post_type( 'mycred_email_notice', apply_filters( 'mycred_register_emailnotices', $args ) );
 
189
  }
190
 
191
  /**
@@ -250,6 +260,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
250
  }
251
 
252
  $this->instances = apply_filters( 'mycred_email_instances', $instances );
 
253
  }
254
 
255
  /**
@@ -258,6 +269,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
258
  * @version 1.0
259
  */
260
  public function get_instance( $key = '', $detail = NULL ) {
 
261
  $instance_keys = explode( '|', $key );
262
  if ( $instance_keys === false || empty( $instance_keys ) || count( $instance_keys ) != 2 ) return NULL;
263
 
@@ -269,6 +281,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
269
  return $this->core->template_tags_general( $this->instances[ $instance_keys[0] ][ $detail ] );
270
 
271
  return NULL;
 
272
  }
273
 
274
  /**
@@ -278,8 +291,9 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
278
  */
279
  public function after_general_settings( $mycred = NULL ) {
280
 
281
- $this->emailnotices = mycred_apply_defaults( $this->default_prefs, $this->emailnotices ); ?>
282
 
 
283
  <h4><div class="icon icon-active"></div><?php _e( 'Email Notices', 'mycred' ); ?></h4>
284
  <div class="body" style="display:none;">
285
  <p><?php _e( 'Settings that apply to all email notices and can not be overridden for individual emails.', 'mycred' ); ?></p>
@@ -305,6 +319,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
305
  <label for="<?php echo $this->field_id( array( 'filter' => 'content' ) ); ?>"><?php _e( 'Allow WordPress and Third Party Plugins to filter the email content before an email is sent.', 'mycred' ); ?></label>
306
  </li>
307
  </ol>
 
308
  <?php if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) : ?>
309
 
310
  <label class="subheader" for="<?php echo $this->field_id( 'send' ); ?>"><?php _e( 'Email Schedule', 'mycred' ); ?></label>
@@ -374,6 +389,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
374
  </ol>
375
  </div>
376
  <?php
 
377
  }
378
 
379
  /**
@@ -382,22 +398,23 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
382
  * @version 1.1
383
  */
384
  public function sanitize_extra_settings( $new_data, $data, $core ) {
 
385
  if ( ! isset( $data['emailnotices']['use_html'] ) )
386
  $data['emailnotices']['use_html'] = 0;
387
 
388
- $new_data['emailnotices']['use_html'] = ( $data['emailnotices']['use_html'] == 1 ) ? true : false;
389
 
390
  $new_data['emailnotices']['filter']['subject'] = ( isset( $data['emailnotices']['filter']['subject'] ) ) ? true : false;
391
  $new_data['emailnotices']['filter']['content'] = ( isset( $data['emailnotices']['filter']['content'] ) ) ? true : false;
392
 
393
- $new_data['emailnotices']['from']['name'] = sanitize_text_field( $data['emailnotices']['from']['name'] );
394
- $new_data['emailnotices']['from']['email'] = sanitize_text_field( $data['emailnotices']['from']['email'] );
395
- $new_data['emailnotices']['from']['reply_to'] = sanitize_text_field( $data['emailnotices']['from']['reply_to'] );
396
 
397
- $new_data['emailnotices']['content'] = sanitize_text_field( $data['emailnotices']['content'] );
398
- $new_data['emailnotices']['styling'] = sanitize_text_field( $data['emailnotices']['styling'] );
399
 
400
- $new_data['emailnotices']['send'] = sanitize_text_field( $data['emailnotices']['send'] );
401
 
402
  if ( ! isset( $data['emailnotices']['override'] ) )
403
  $data['emailnotices']['override'] = 0;
@@ -405,6 +422,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
405
  $new_data['emailnotices']['override'] = ( $data['emailnotices']['override'] == 1 ) ? true : false;
406
 
407
  return $new_data;
 
408
  }
409
 
410
  /**
@@ -575,7 +593,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
575
  // Unfiltered Content
576
  else $message = $notice->post_content;
577
 
578
- $headers = array();
579
  $attachments = '';
580
 
581
  if ( ! $this->emailnotices['override'] ) {
@@ -613,7 +631,9 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
613
  }
614
 
615
  }
 
616
  }
 
617
  }
618
 
619
  /**
@@ -631,11 +651,11 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
631
  $subject = $this->template_tags_request( $filtered['subject'], $filtered['request'] );
632
  $message = $this->template_tags_request( $filtered['message'], $filtered['request'] );
633
 
634
- $entry = new stdClass();
635
  foreach ( $filtered['request'] as $key => $value )
636
  $entry->$key = $value;
637
 
638
- $mycred = mycred( $filtered['request']['type'] );
639
 
640
  $subject = $mycred->template_tags_user( $subject, $filtered['request']['user_id'] );
641
  $message = $mycred->template_tags_user( $message, $filtered['request']['user_id'] );
@@ -670,16 +690,18 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
670
  * @version 1.0
671
  */
672
  public function get_email_format() {
 
673
  if ( $this->emailnotices['use_html'] === false )
674
  return 'text/plain';
675
- else
676
- return 'text/html';
 
677
  }
678
 
679
  /**
680
  * Request Related Template Tags
681
  * @since 1.1
682
- * @version 1.2
683
  */
684
  public function template_tags_request( $content, $request ) {
685
 
@@ -687,6 +709,9 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
687
  if ( $request['type'] != 'mycred_default' )
688
  $type = mycred( $request['type'] );
689
 
 
 
 
690
  $content = str_replace( '%new_balance%', $new_balance, $content );
691
  $content = str_replace( '%new_balance_f%', $type->format_creds( $new_balance ), $content );
692
 
@@ -740,6 +765,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
740
  }
741
 
742
  return $content;
 
743
  }
744
 
745
  /**
@@ -748,6 +774,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
748
  * @version 1.1
749
  */
750
  public function get_email_settings( $post_id ) {
 
751
  $settings = get_post_meta( $post_id, 'mycred_email_settings', true );
752
  if ( $settings == '' )
753
  $settings = array();
@@ -764,6 +791,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
764
  $settings = mycred_apply_defaults( $default, $settings );
765
 
766
  return apply_filters( 'mycred_email_notice_settings', $settings, $post_id );
 
767
  }
768
 
769
  /**
@@ -772,13 +800,16 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
772
  * @version 1.0
773
  */
774
  public function get_email_styling( $post_id ) {
 
775
  if ( $this->emailnotices['use_html'] === false ) return '';
776
  $style = get_post_meta( $post_id, 'mycred_email_styling', true );
 
777
  // Defaults
778
  if ( empty( $style ) )
779
  return $this->emailnotices['styling'];
780
 
781
  return $style;
 
782
  }
783
 
784
  /**
@@ -787,12 +818,14 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
787
  * @version 1.0
788
  */
789
  public function adjust_row_actions( $actions, $post ) {
 
790
  if ( $post->post_type == 'mycred_email_notice' ) {
791
  unset( $actions['inline hide-if-no-js'] );
792
  unset( $actions['view'] );
793
  }
794
 
795
  return $actions;
 
796
  }
797
 
798
  /**
@@ -802,7 +835,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
802
  */
803
  public function adjust_column_headers( $defaults ) {
804
 
805
- $columns = array();
806
  $columns['cb'] = $defaults['cb'];
807
 
808
  // Add / Adjust
@@ -831,6 +864,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
831
 
832
  // Email Status Column
833
  if ( $column_name == 'mycred-email-status' ) {
 
834
  if ( $post->post_status != 'publish' && $post->post_status != 'future' )
835
  echo '<p>' . __( 'Not Active', 'mycred' ) . '</p>';
836
 
@@ -844,13 +878,16 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
844
  else
845
  echo '<p>' . sprintf( __( 'Active - Last run:<br /><strong>%1$s</strong>', 'mycred' ), date_i18n( get_option( 'date_format' ) . ' @ ' . get_option( 'time_format' ), $date ) ) . '</p>';
846
  }
 
847
  }
848
 
849
  // Email Setup Column
850
  elseif ( $column_name == 'mycred-email-reference' ) {
 
851
  echo '<p>';
852
  $instance_key = get_post_meta( $post->ID, 'mycred_email_instance', true );
853
- $label = $this->get_instance( $instance_key );
 
854
  if ( ! empty( $instance_key ) && ! empty( $label ) )
855
  echo '<em>' . __( 'Email is sent when', 'mycred' ) .' ' . $label . '.</em></br />';
856
  else
@@ -868,6 +905,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
868
  echo '<strong>' . __( 'Sent To', 'mycred' ) . '</strong>: ' . __( 'Administrator', 'mycred' ) . '</p>';
869
  else
870
  echo '<strong>' . __( 'Sent To', 'mycred' ) . '</strong>: ' . __( 'Both Administrator and User', 'mycred' ) . '</p>';
 
871
  }
872
 
873
  // Email Setup Column
@@ -895,6 +933,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
895
  * @version 1.0
896
  */
897
  public function add_meta_boxes() {
 
898
  add_meta_box(
899
  'mycred_email_settings',
900
  __( 'Email Settings', 'mycred' ),
@@ -923,6 +962,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
923
  'normal',
924
  'high'
925
  );
 
926
  }
927
 
928
  /**
@@ -931,11 +971,14 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
931
  * @version 1.0
932
  */
933
  public function disable_richedit( $default ) {
 
934
  global $post;
 
935
  if ( $post->post_type == 'mycred_email_notice' )
936
  return false;
937
 
938
  return $default;
 
939
  }
940
 
941
  /**
@@ -944,11 +987,14 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
944
  * @version 1.0
945
  */
946
  public function enter_title_here( $title ) {
 
947
  global $post_type;
 
948
  if ( $post_type == 'mycred_email_notice' )
949
  return __( 'Email Subject', 'mycred' );
950
 
951
  return $title;
 
952
  }
953
 
954
  /**
@@ -957,11 +1003,14 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
957
  * @version 1.0
958
  */
959
  public function default_content( $content ) {
 
960
  global $post_type;
 
961
  if ( $post_type == 'mycred_email_notice' && !empty( $this->emailnotices['content'] ) )
962
  $content = $this->emailnotices['content'];
963
 
964
  return $content;
 
965
  }
966
 
967
  /**
@@ -973,19 +1022,21 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
973
 
974
  // Get instance
975
  $instance = get_post_meta( $post->ID, 'mycred_email_instance', true );
 
976
  // Get settings
977
  $settings = $this->get_email_settings( $post->ID );
978
 
979
  $set_type = get_post_meta( $post->ID, 'mycred_email_ctype', true );
980
  if ( $set_type == '' )
981
  $set_type = 'mycred_default';
982
- ?>
983
 
 
984
  <div class="misc-pub-section">
985
  <input type="hidden" name="mycred_email[token]" value="<?php echo wp_create_nonce( 'mycred-edit-email' ); ?>" />
986
  <label for="mycred-email-instance"<?php if ( $post->post_status == 'publish' && empty( $instance ) ) echo ' style="color:red;font-weight:bold;"'; ?>><?php _e( 'Send this email notice when...', 'mycred' ); ?></label><br />
987
  <select name="mycred_email[instance]" id="mycred-email-instance">
988
  <?php
 
989
  // Default
990
  echo '<option value=""';
991
  if ( empty( $instance ) ) echo ' selected="selected"';
@@ -993,26 +1044,35 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
993
 
994
  // Loop though instances
995
  foreach ( $this->instances as $hook_ref => $values ) {
 
996
  if ( is_array( $values ) ) {
997
  foreach ( $values as $key => $value ) {
 
998
  // Make sure that the submitted value is unique
999
  $key_value = $hook_ref . '|' . $key;
 
1000
  // Option group starts with 'label'
1001
  if ( $key == 'label' )
1002
  echo '<optgroup label="' . $value . '">';
 
1003
  // Option group ends with 'end'
1004
  elseif ( $key == 'end' )
1005
  echo '</optgroup>';
 
1006
  // The selectable options
1007
  else {
1008
  echo '<option value="' . $key_value . '"';
1009
  if ( $instance == $key_value ) echo ' selected="selected"';
1010
  echo '>... ' . $this->core->template_tags_general( $value ) . '</option>';
1011
  }
 
1012
  }
 
1013
  }
1014
- } ?>
1015
 
 
 
 
1016
  </select><br />
1017
  <label for="mycred-email-recipient-user"><?php _e( 'Recipient:', 'mycred' ); ?></label><br />
1018
  <div class="mycred-inline">
@@ -1027,6 +1087,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1027
  </div>
1028
 
1029
  <?php if ( count( $this->point_types ) > 1 ) : ?>
 
1030
  <div class="misc-pub-section">
1031
  <label for="mycred-email-ctype"><?php _e( 'Point Type', 'mycred' ); ?></label><br />
1032
  <select name="mycred_email[ctype]" id="mycred-email-ctype">
@@ -1045,8 +1106,11 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1045
  ?>
1046
  </select>
1047
  </div>
 
1048
  <?php else : ?>
 
1049
  <input type="hidden" name="mycred_email[ctype]" id="mycred-email-ctype" value="mycred_default" />
 
1050
  <?php endif; ?>
1051
 
1052
  <div class="misc-pub-section">
@@ -1057,12 +1121,14 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1057
  <label for="mycred-email-reply-to"><?php _e( 'Reply-To Email:', 'mycred' ); ?></label><br />
1058
  <input type="text" name="mycred_email[reply_to]" id="mycred-email-reply-to" value="<?php echo $settings['reply_to']; ?>" />
1059
  </div>
 
1060
  <?php do_action( 'mycred_email_settings_box', $this ); ?>
1061
 
1062
  <div class="mycred-save">
1063
  <?php submit_button( __( 'Save', 'mycred' ), 'primary', 'save', false ); ?>
1064
  </div>
1065
  <?php
 
1066
  }
1067
 
1068
  /**
@@ -1070,13 +1136,16 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1070
  * @since 1.1
1071
  * @version 1.0
1072
  */
1073
- public function email_header( $post ) { ?>
1074
 
 
1075
  <p><label for="mycred-email-styling"><?php _e( 'CSS Styling', 'mycred' ); ?></label></p>
1076
  <textarea name="mycred_email[styling]" id="mycred-email-styling"><?php echo $this->get_email_styling( $post->ID ); ?></textarea>
 
1077
  <?php do_action( 'mycred_email_header_box', $this ); ?>
1078
 
1079
  <?php
 
1080
  }
1081
 
1082
  /**
@@ -1103,6 +1172,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1103
  <li><strong>%entry%</strong><div>' . __( 'The log entry', 'mycred' ) . '</div></li>
1104
  </ul>
1105
  <div class="clear"></div>';
 
1106
  }
1107
 
1108
  /**
@@ -1125,6 +1195,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1125
 
1126
  // Construct new settings
1127
  $settings = array();
 
1128
  // If recipient is set but differs from the default, use the posted one else use default
1129
  if ( ! empty( $_POST['mycred_email']['recipient'] ) )
1130
  $settings['recipient'] = $_POST['mycred_email']['recipient'];
@@ -1163,6 +1234,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1163
  // Save styling
1164
  if ( ! empty( $_POST['mycred_email']['styling'] ) )
1165
  update_post_meta( $post_id, 'mycred_email_styling', trim( $_POST['mycred_email']['styling'] ) );
 
1166
  }
1167
 
1168
  /**
@@ -1171,6 +1243,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1171
  * @version 1.0
1172
  */
1173
  public function post_updated_messages( $messages ) {
 
1174
  global $post;
1175
 
1176
  $messages['mycred_email_notice'] = array(
@@ -1188,6 +1261,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1188
  );
1189
 
1190
  return $messages;
 
1191
  }
1192
 
1193
  /**
@@ -1196,7 +1270,9 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1196
  * @version 1.0
1197
  */
1198
  public function publish_warning() {
 
1199
  global $post;
 
1200
  if ( $post->post_type != 'mycred_email_notice' ) return;
1201
 
1202
  if ( $post->post_status != 'publish' && $post->post_status != 'future' )
@@ -1205,6 +1281,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1205
  echo '<p id="mycred-email-notice">' . sprintf( __( 'This notice will become active on:<br /><strong>%1$s</strong>', 'mycred' ), date_i18n( get_option( 'date_format' ) . ' @ ' . get_option( 'time_format' ), strtotime( $post->post_date ) ) ) . '</p>';
1206
  else
1207
  echo '<p id="mycred-email-notice">' . __( 'This email notice is active.', 'mycred' ) . '</p>';
 
1208
  }
1209
 
1210
  /**
@@ -1271,6 +1348,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1271
  </tr>
1272
  </thead>
1273
  <tbody>
 
1274
  <?php if ( ! empty( $email_notices ) ) : ?>
1275
 
1276
  <?php foreach ( $email_notices as $notice ) : $settings = $this->get_email_settings( $notice->ID ); ?>
@@ -1291,6 +1369,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1291
  </tr>
1292
 
1293
  <?php endif; ?>
 
1294
  </tbody>
1295
  </table>
1296
  <input type="submit" class="btn btn-primary button button-primary pull-right" value="<?php _e( 'Save Changes', 'mycred' ); ?>" />
@@ -1308,7 +1387,8 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1308
 
1309
  $email_notice = new myCRED_Email_Notice_Module();
1310
  $email_notice->load();
1311
- }
 
1312
 
1313
  /**
1314
  * myCRED Email Notifications Cron Job
@@ -1317,6 +1397,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1317
  */
1318
  if ( ! function_exists( 'mycred_email_notice_cron_job' ) ) :
1319
  function mycred_email_notice_cron_job() {
 
1320
  if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) return;
1321
 
1322
  $email_notice = new myCRED_Email_Notice_Module();
@@ -1344,6 +1425,8 @@ if ( ! function_exists( 'mycred_email_notice_cron_job' ) ) :
1344
  }
1345
 
1346
  }
 
1347
  }
1348
  endif;
 
1349
  ?>
2
  /**
3
  * Addon: Email Notices
4
  * Addon URI: http://mycred.me/add-ons/email-notices/
5
+ * Version: 1.3.1
6
  * Description: Create email notices for any type of myCRED instance.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
17
  * @since 1.1
18
  * @version 1.2
19
  */
20
+ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
21
  class myCRED_Email_Notice_Module extends myCRED_Module {
22
 
23
  public $instances = array();
26
  * Construct
27
  */
28
  function __construct() {
29
+
30
  parent::__construct( 'myCRED_Email_Notice_Module', array(
31
  'module_name' => 'emailnotices',
32
  'defaults' => array(
48
  'register' => false,
49
  'add_to_core' => true
50
  ) );
51
+
52
  }
53
 
54
  /**
57
  * @version 1.2.1
58
  */
59
  public function module_init() {
60
+
61
  $this->register_post_type();
62
  $this->setup_instances();
63
 
87
  * @version 1.1
88
  */
89
  public function module_admin_init() {
90
+
91
+ add_action( 'admin_head', array( $this, 'admin_header' ) );
92
+ add_filter( 'post_row_actions', array( $this, 'adjust_row_actions' ), 10, 2 );
93
 
94
  add_filter( 'manage_mycred_email_notice_posts_columns', array( $this, 'adjust_column_headers' ), 50 );
95
  add_action( 'manage_mycred_email_notice_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
96
 
97
+ add_filter( 'post_updated_messages', array( $this, 'post_updated_messages' ) );
98
+ add_filter( 'enter_title_here', array( $this, 'enter_title_here' ) );
99
+ add_filter( 'default_content', array( $this, 'default_content' ) );
100
 
101
+ add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) );
102
+ add_action( 'post_submitbox_start', array( $this, 'publish_warning' ) );
103
+ add_action( 'save_post_mycred_email_notice', array( $this, 'save_email_notice' ) );
104
 
105
  if ( $this->emailnotices['use_html'] === false )
106
  add_filter( 'user_can_richedit', array( $this, 'disable_richedit' ) );
107
+
108
  }
109
 
110
  /**
113
  * @version 1.0
114
  */
115
  public function admin_header() {
116
+
117
  $screen = get_current_screen();
118
  if ( $screen->id == 'mycred_email_notice' && $this->emailnotices['use_html'] === false ) {
119
  remove_action( 'media_buttons', 'media_buttons' );
120
  echo '<style type="text/css">#ed_toolbar { display: none !important; }</style>';
121
  }
122
+
123
  }
124
 
125
  /**
168
  * @version 1.0
169
  */
170
  public function register_post_type() {
171
+
172
  $labels = array(
173
  'name' => __( 'Email Notices', 'mycred' ),
174
  'singular_name' => __( 'Email Notice', 'mycred' ),
193
  'capability_type' => 'page',
194
  'supports' => array( 'title', 'editor' )
195
  );
196
+
197
  register_post_type( 'mycred_email_notice', apply_filters( 'mycred_register_emailnotices', $args ) );
198
+
199
  }
200
 
201
  /**
260
  }
261
 
262
  $this->instances = apply_filters( 'mycred_email_instances', $instances );
263
+
264
  }
265
 
266
  /**
269
  * @version 1.0
270
  */
271
  public function get_instance( $key = '', $detail = NULL ) {
272
+
273
  $instance_keys = explode( '|', $key );
274
  if ( $instance_keys === false || empty( $instance_keys ) || count( $instance_keys ) != 2 ) return NULL;
275
 
281
  return $this->core->template_tags_general( $this->instances[ $instance_keys[0] ][ $detail ] );
282
 
283
  return NULL;
284
+
285
  }
286
 
287
  /**
291
  */
292
  public function after_general_settings( $mycred = NULL ) {
293
 
294
+ $this->emailnotices = mycred_apply_defaults( $this->default_prefs, $this->emailnotices );
295
 
296
+ ?>
297
  <h4><div class="icon icon-active"></div><?php _e( 'Email Notices', 'mycred' ); ?></h4>
298
  <div class="body" style="display:none;">
299
  <p><?php _e( 'Settings that apply to all email notices and can not be overridden for individual emails.', 'mycred' ); ?></p>
319
  <label for="<?php echo $this->field_id( array( 'filter' => 'content' ) ); ?>"><?php _e( 'Allow WordPress and Third Party Plugins to filter the email content before an email is sent.', 'mycred' ); ?></label>
320
  </li>
321
  </ol>
322
+
323
  <?php if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) : ?>
324
 
325
  <label class="subheader" for="<?php echo $this->field_id( 'send' ); ?>"><?php _e( 'Email Schedule', 'mycred' ); ?></label>
389
  </ol>
390
  </div>
391
  <?php
392
+
393
  }
394
 
395
  /**
398
  * @version 1.1
399
  */
400
  public function sanitize_extra_settings( $new_data, $data, $core ) {
401
+
402
  if ( ! isset( $data['emailnotices']['use_html'] ) )
403
  $data['emailnotices']['use_html'] = 0;
404
 
405
+ $new_data['emailnotices']['use_html'] = ( $data['emailnotices']['use_html'] == 1 ) ? true : false;
406
 
407
  $new_data['emailnotices']['filter']['subject'] = ( isset( $data['emailnotices']['filter']['subject'] ) ) ? true : false;
408
  $new_data['emailnotices']['filter']['content'] = ( isset( $data['emailnotices']['filter']['content'] ) ) ? true : false;
409
 
410
+ $new_data['emailnotices']['from']['name'] = sanitize_text_field( $data['emailnotices']['from']['name'] );
411
+ $new_data['emailnotices']['from']['email'] = sanitize_text_field( $data['emailnotices']['from']['email'] );
412
+ $new_data['emailnotices']['from']['reply_to'] = sanitize_text_field( $data['emailnotices']['from']['reply_to'] );
413
 
414
+ $new_data['emailnotices']['content'] = sanitize_text_field( $data['emailnotices']['content'] );
415
+ $new_data['emailnotices']['styling'] = sanitize_text_field( $data['emailnotices']['styling'] );
416
 
417
+ $new_data['emailnotices']['send'] = sanitize_text_field( $data['emailnotices']['send'] );
418
 
419
  if ( ! isset( $data['emailnotices']['override'] ) )
420
  $data['emailnotices']['override'] = 0;
422
  $new_data['emailnotices']['override'] = ( $data['emailnotices']['override'] == 1 ) ? true : false;
423
 
424
  return $new_data;
425
+
426
  }
427
 
428
  /**
593
  // Unfiltered Content
594
  else $message = $notice->post_content;
595
 
596
+ $headers = array();
597
  $attachments = '';
598
 
599
  if ( ! $this->emailnotices['override'] ) {
631
  }
632
 
633
  }
634
+
635
  }
636
+
637
  }
638
 
639
  /**
651
  $subject = $this->template_tags_request( $filtered['subject'], $filtered['request'] );
652
  $message = $this->template_tags_request( $filtered['message'], $filtered['request'] );
653
 
654
+ $entry = new stdClass();
655
  foreach ( $filtered['request'] as $key => $value )
656
  $entry->$key = $value;
657
 
658
+ $mycred = mycred( $filtered['request']['type'] );
659
 
660
  $subject = $mycred->template_tags_user( $subject, $filtered['request']['user_id'] );
661
  $message = $mycred->template_tags_user( $message, $filtered['request']['user_id'] );
690
  * @version 1.0
691
  */
692
  public function get_email_format() {
693
+
694
  if ( $this->emailnotices['use_html'] === false )
695
  return 'text/plain';
696
+
697
+ return 'text/html';
698
+
699
  }
700
 
701
  /**
702
  * Request Related Template Tags
703
  * @since 1.1
704
+ * @version 1.2.1
705
  */
706
  public function template_tags_request( $content, $request ) {
707
 
709
  if ( $request['type'] != 'mycred_default' )
710
  $type = mycred( $request['type'] );
711
 
712
+ $user_id = $request['user_id'];
713
+ $new_balance = $type->get_users_balance( $user_id, $request['type'] );
714
+
715
  $content = str_replace( '%new_balance%', $new_balance, $content );
716
  $content = str_replace( '%new_balance_f%', $type->format_creds( $new_balance ), $content );
717
 
765
  }
766
 
767
  return $content;
768
+
769
  }
770
 
771
  /**
774
  * @version 1.1
775
  */
776
  public function get_email_settings( $post_id ) {
777
+
778
  $settings = get_post_meta( $post_id, 'mycred_email_settings', true );
779
  if ( $settings == '' )
780
  $settings = array();
791
  $settings = mycred_apply_defaults( $default, $settings );
792
 
793
  return apply_filters( 'mycred_email_notice_settings', $settings, $post_id );
794
+
795
  }
796
 
797
  /**
800
  * @version 1.0
801
  */
802
  public function get_email_styling( $post_id ) {
803
+
804
  if ( $this->emailnotices['use_html'] === false ) return '';
805
  $style = get_post_meta( $post_id, 'mycred_email_styling', true );
806
+
807
  // Defaults
808
  if ( empty( $style ) )
809
  return $this->emailnotices['styling'];
810
 
811
  return $style;
812
+
813
  }
814
 
815
  /**
818
  * @version 1.0
819
  */
820
  public function adjust_row_actions( $actions, $post ) {
821
+
822
  if ( $post->post_type == 'mycred_email_notice' ) {
823
  unset( $actions['inline hide-if-no-js'] );
824
  unset( $actions['view'] );
825
  }
826
 
827
  return $actions;
828
+
829
  }
830
 
831
  /**
835
  */
836
  public function adjust_column_headers( $defaults ) {
837
 
838
+ $columns = array();
839
  $columns['cb'] = $defaults['cb'];
840
 
841
  // Add / Adjust
864
 
865
  // Email Status Column
866
  if ( $column_name == 'mycred-email-status' ) {
867
+
868
  if ( $post->post_status != 'publish' && $post->post_status != 'future' )
869
  echo '<p>' . __( 'Not Active', 'mycred' ) . '</p>';
870
 
878
  else
879
  echo '<p>' . sprintf( __( 'Active - Last run:<br /><strong>%1$s</strong>', 'mycred' ), date_i18n( get_option( 'date_format' ) . ' @ ' . get_option( 'time_format' ), $date ) ) . '</p>';
880
  }
881
+
882
  }
883
 
884
  // Email Setup Column
885
  elseif ( $column_name == 'mycred-email-reference' ) {
886
+
887
  echo '<p>';
888
  $instance_key = get_post_meta( $post->ID, 'mycred_email_instance', true );
889
+ $label = $this->get_instance( $instance_key );
890
+
891
  if ( ! empty( $instance_key ) && ! empty( $label ) )
892
  echo '<em>' . __( 'Email is sent when', 'mycred' ) .' ' . $label . '.</em></br />';
893
  else
905
  echo '<strong>' . __( 'Sent To', 'mycred' ) . '</strong>: ' . __( 'Administrator', 'mycred' ) . '</p>';
906
  else
907
  echo '<strong>' . __( 'Sent To', 'mycred' ) . '</strong>: ' . __( 'Both Administrator and User', 'mycred' ) . '</p>';
908
+
909
  }
910
 
911
  // Email Setup Column
933
  * @version 1.0
934
  */
935
  public function add_meta_boxes() {
936
+
937
  add_meta_box(
938
  'mycred_email_settings',
939
  __( 'Email Settings', 'mycred' ),
962
  'normal',
963
  'high'
964
  );
965
+
966
  }
967
 
968
  /**
971
  * @version 1.0
972
  */
973
  public function disable_richedit( $default ) {
974
+
975
  global $post;
976
+
977
  if ( $post->post_type == 'mycred_email_notice' )
978
  return false;
979
 
980
  return $default;
981
+
982
  }
983
 
984
  /**
987
  * @version 1.0
988
  */
989
  public function enter_title_here( $title ) {
990
+
991
  global $post_type;
992
+
993
  if ( $post_type == 'mycred_email_notice' )
994
  return __( 'Email Subject', 'mycred' );
995
 
996
  return $title;
997
+
998
  }
999
 
1000
  /**
1003
  * @version 1.0
1004
  */
1005
  public function default_content( $content ) {
1006
+
1007
  global $post_type;
1008
+
1009
  if ( $post_type == 'mycred_email_notice' && !empty( $this->emailnotices['content'] ) )
1010
  $content = $this->emailnotices['content'];
1011
 
1012
  return $content;
1013
+
1014
  }
1015
 
1016
  /**
1022
 
1023
  // Get instance
1024
  $instance = get_post_meta( $post->ID, 'mycred_email_instance', true );
1025
+
1026
  // Get settings
1027
  $settings = $this->get_email_settings( $post->ID );
1028
 
1029
  $set_type = get_post_meta( $post->ID, 'mycred_email_ctype', true );
1030
  if ( $set_type == '' )
1031
  $set_type = 'mycred_default';
 
1032
 
1033
+ ?>
1034
  <div class="misc-pub-section">
1035
  <input type="hidden" name="mycred_email[token]" value="<?php echo wp_create_nonce( 'mycred-edit-email' ); ?>" />
1036
  <label for="mycred-email-instance"<?php if ( $post->post_status == 'publish' && empty( $instance ) ) echo ' style="color:red;font-weight:bold;"'; ?>><?php _e( 'Send this email notice when...', 'mycred' ); ?></label><br />
1037
  <select name="mycred_email[instance]" id="mycred-email-instance">
1038
  <?php
1039
+
1040
  // Default
1041
  echo '<option value=""';
1042
  if ( empty( $instance ) ) echo ' selected="selected"';
1044
 
1045
  // Loop though instances
1046
  foreach ( $this->instances as $hook_ref => $values ) {
1047
+
1048
  if ( is_array( $values ) ) {
1049
  foreach ( $values as $key => $value ) {
1050
+
1051
  // Make sure that the submitted value is unique
1052
  $key_value = $hook_ref . '|' . $key;
1053
+
1054
  // Option group starts with 'label'
1055
  if ( $key == 'label' )
1056
  echo '<optgroup label="' . $value . '">';
1057
+
1058
  // Option group ends with 'end'
1059
  elseif ( $key == 'end' )
1060
  echo '</optgroup>';
1061
+
1062
  // The selectable options
1063
  else {
1064
  echo '<option value="' . $key_value . '"';
1065
  if ( $instance == $key_value ) echo ' selected="selected"';
1066
  echo '>... ' . $this->core->template_tags_general( $value ) . '</option>';
1067
  }
1068
+
1069
  }
1070
+
1071
  }
 
1072
 
1073
+ }
1074
+
1075
+ ?>
1076
  </select><br />
1077
  <label for="mycred-email-recipient-user"><?php _e( 'Recipient:', 'mycred' ); ?></label><br />
1078
  <div class="mycred-inline">
1087
  </div>
1088
 
1089
  <?php if ( count( $this->point_types ) > 1 ) : ?>
1090
+
1091
  <div class="misc-pub-section">
1092
  <label for="mycred-email-ctype"><?php _e( 'Point Type', 'mycred' ); ?></label><br />
1093
  <select name="mycred_email[ctype]" id="mycred-email-ctype">
1106
  ?>
1107
  </select>
1108
  </div>
1109
+
1110
  <?php else : ?>
1111
+
1112
  <input type="hidden" name="mycred_email[ctype]" id="mycred-email-ctype" value="mycred_default" />
1113
+
1114
  <?php endif; ?>
1115
 
1116
  <div class="misc-pub-section">
1121
  <label for="mycred-email-reply-to"><?php _e( 'Reply-To Email:', 'mycred' ); ?></label><br />
1122
  <input type="text" name="mycred_email[reply_to]" id="mycred-email-reply-to" value="<?php echo $settings['reply_to']; ?>" />
1123
  </div>
1124
+
1125
  <?php do_action( 'mycred_email_settings_box', $this ); ?>
1126
 
1127
  <div class="mycred-save">
1128
  <?php submit_button( __( 'Save', 'mycred' ), 'primary', 'save', false ); ?>
1129
  </div>
1130
  <?php
1131
+
1132
  }
1133
 
1134
  /**
1136
  * @since 1.1
1137
  * @version 1.0
1138
  */
1139
+ public function email_header( $post ) {
1140
 
1141
+ ?>
1142
  <p><label for="mycred-email-styling"><?php _e( 'CSS Styling', 'mycred' ); ?></label></p>
1143
  <textarea name="mycred_email[styling]" id="mycred-email-styling"><?php echo $this->get_email_styling( $post->ID ); ?></textarea>
1144
+
1145
  <?php do_action( 'mycred_email_header_box', $this ); ?>
1146
 
1147
  <?php
1148
+
1149
  }
1150
 
1151
  /**
1172
  <li><strong>%entry%</strong><div>' . __( 'The log entry', 'mycred' ) . '</div></li>
1173
  </ul>
1174
  <div class="clear"></div>';
1175
+
1176
  }
1177
 
1178
  /**
1195
 
1196
  // Construct new settings
1197
  $settings = array();
1198
+
1199
  // If recipient is set but differs from the default, use the posted one else use default
1200
  if ( ! empty( $_POST['mycred_email']['recipient'] ) )
1201
  $settings['recipient'] = $_POST['mycred_email']['recipient'];
1234
  // Save styling
1235
  if ( ! empty( $_POST['mycred_email']['styling'] ) )
1236
  update_post_meta( $post_id, 'mycred_email_styling', trim( $_POST['mycred_email']['styling'] ) );
1237
+
1238
  }
1239
 
1240
  /**
1243
  * @version 1.0
1244
  */
1245
  public function post_updated_messages( $messages ) {
1246
+
1247
  global $post;
1248
 
1249
  $messages['mycred_email_notice'] = array(
1261
  );
1262
 
1263
  return $messages;
1264
+
1265
  }
1266
 
1267
  /**
1270
  * @version 1.0
1271
  */
1272
  public function publish_warning() {
1273
+
1274
  global $post;
1275
+
1276
  if ( $post->post_type != 'mycred_email_notice' ) return;
1277
 
1278
  if ( $post->post_status != 'publish' && $post->post_status != 'future' )
1281
  echo '<p id="mycred-email-notice">' . sprintf( __( 'This notice will become active on:<br /><strong>%1$s</strong>', 'mycred' ), date_i18n( get_option( 'date_format' ) . ' @ ' . get_option( 'time_format' ), strtotime( $post->post_date ) ) ) . '</p>';
1282
  else
1283
  echo '<p id="mycred-email-notice">' . __( 'This email notice is active.', 'mycred' ) . '</p>';
1284
+
1285
  }
1286
 
1287
  /**
1348
  </tr>
1349
  </thead>
1350
  <tbody>
1351
+
1352
  <?php if ( ! empty( $email_notices ) ) : ?>
1353
 
1354
  <?php foreach ( $email_notices as $notice ) : $settings = $this->get_email_settings( $notice->ID ); ?>
1369
  </tr>
1370
 
1371
  <?php endif; ?>
1372
+
1373
  </tbody>
1374
  </table>
1375
  <input type="submit" class="btn btn-primary button button-primary pull-right" value="<?php _e( 'Save Changes', 'mycred' ); ?>" />
1387
 
1388
  $email_notice = new myCRED_Email_Notice_Module();
1389
  $email_notice->load();
1390
+
1391
+ endif;
1392
 
1393
  /**
1394
  * myCRED Email Notifications Cron Job
1397
  */
1398
  if ( ! function_exists( 'mycred_email_notice_cron_job' ) ) :
1399
  function mycred_email_notice_cron_job() {
1400
+
1401
  if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) return;
1402
 
1403
  $email_notice = new myCRED_Email_Notice_Module();
1425
  }
1426
 
1427
  }
1428
+
1429
  }
1430
  endif;
1431
+
1432
  ?>
addons/gateway/carts/mycred-woocommerce.php CHANGED
@@ -417,40 +417,27 @@ endif;
417
  /**
418
  * Log Entry: Payment
419
  * @since 0.1
420
- * @version 1.3.2
421
  */
422
  add_filter( 'mycred_parse_log_entry_woocommerce_payment', 'mycred_woo_log_entry_payment', 90, 2 );
423
  if ( ! function_exists( 'mycred_woo_log_entry_payment' ) ) :
424
  function mycred_woo_log_entry_payment( $content, $log_entry ) {
425
 
426
- if ( ! class_exists( 'WC_Payment_Gateway' ) ) return $content;
 
427
 
428
- // Prep
429
- $type = 'mycred_default';
430
- if ( isset( $log_entry->ctype ) )
431
- $type = $log_entry->ctype;
432
-
433
- $mycred = mycred( $type );
434
-
435
- if ( function_exists( 'wc_get_order' ) )
436
- $order = wc_get_order( $log_entry->ref_id );
437
- else
438
- $order = new WC_Order( $log_entry->ref_id );
439
 
440
- $cui = get_current_user_id();
441
 
442
- // Order ID
443
- $content = str_replace( '%order_id%', $order->id, $content );
444
 
445
- // Link to order if we can edit plugin or are the user who made the order
446
- if ( $cui == $order->user_id || $mycred->can_edit_plugin( $cui ) ) {
447
- $url = esc_url( add_query_arg( 'order', $order->id, get_permalink( woocommerce_get_page_id( 'view_order' ) ) ) );
448
- $content = str_replace( '%order_link%', '<a href="' . esc_url( $url ) . '">#' . $order->id . '</a>', $content );
449
- }
450
- else {
451
- $content = str_replace( '%order_link%', '#' . $order->id, $content );
452
  }
453
 
 
 
 
454
  return $content;
455
 
456
  }
417
  /**
418
  * Log Entry: Payment
419
  * @since 0.1
420
+ * @version 1.4
421
  */
422
  add_filter( 'mycred_parse_log_entry_woocommerce_payment', 'mycred_woo_log_entry_payment', 90, 2 );
423
  if ( ! function_exists( 'mycred_woo_log_entry_payment' ) ) :
424
  function mycred_woo_log_entry_payment( $content, $log_entry ) {
425
 
426
+ $order_id = absint( $log_entry->ref_id );
427
+ $order_link = '#' . $order_id;
428
 
429
+ if ( function_exists( 'wc_get_order' ) ) {
 
 
 
 
 
 
 
 
 
 
430
 
431
+ $order = wc_get_order( $order_id );
432
 
433
+ if ( $order !== false && is_object( $order ) )
434
+ $order_link = '<a href="' . esc_url( $order->get_view_order_url() ) . '">#' . $order_id . '</a>';
435
 
 
 
 
 
 
 
 
436
  }
437
 
438
+ $content = str_replace( '%order_id%', $order_id, $content );
439
+ $content = str_replace( '%order_link%', $order_link, $content );
440
+
441
  return $content;
442
 
443
  }
addons/gateway/myCRED-addon-gateway.php CHANGED
@@ -29,11 +29,13 @@ require_once myCRED_GATE_CART_DIR . 'mycred-wpecommerce.php';
29
  */
30
  add_action( 'mycred_init', 'mycred_load_event_espresso3' );
31
  function mycred_load_event_espresso3() {
 
32
  if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) return;
33
 
34
  require_once myCRED_GATE_EVENT_DIR . 'mycred-eventespresso3.php';
35
  $gateway = new myCRED_Espresso_Gateway();
36
  $gateway->load();
 
37
  }
38
 
39
  /**
@@ -41,8 +43,9 @@ function mycred_load_event_espresso3() {
41
  */
42
  add_action( 'mycred_init', 'mycred_load_events_manager' );
43
  function mycred_load_events_manager() {
 
44
  if ( ! defined( 'EM_VERSION' ) ) return;
45
-
46
  // Pro
47
  if ( class_exists( 'EM_Pro' ) && class_exists( 'EM_Gateways' ) ) {
48
  require_once myCRED_GATE_EVENT_DIR . 'mycred-eventsmanager-pro.php';
@@ -54,6 +57,7 @@ function mycred_load_events_manager() {
54
  $events = new myCRED_Events_Manager_Gateway();
55
  $events->load();
56
  }
 
57
  }
58
 
59
  ?>
29
  */
30
  add_action( 'mycred_init', 'mycred_load_event_espresso3' );
31
  function mycred_load_event_espresso3() {
32
+
33
  if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) return;
34
 
35
  require_once myCRED_GATE_EVENT_DIR . 'mycred-eventespresso3.php';
36
  $gateway = new myCRED_Espresso_Gateway();
37
  $gateway->load();
38
+
39
  }
40
 
41
  /**
43
  */
44
  add_action( 'mycred_init', 'mycred_load_events_manager' );
45
  function mycred_load_events_manager() {
46
+
47
  if ( ! defined( 'EM_VERSION' ) ) return;
48
+
49
  // Pro
50
  if ( class_exists( 'EM_Pro' ) && class_exists( 'EM_Gateways' ) ) {
51
  require_once myCRED_GATE_EVENT_DIR . 'mycred-eventsmanager-pro.php';
57
  $events = new myCRED_Events_Manager_Gateway();
58
  $events->load();
59
  }
60
+
61
  }
62
 
63
  ?>
addons/notifications/myCRED-addon-notifications.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Addon: Notifications
4
  * Addon URI: http://mycred.me/add-ons/notifications/
5
- * Version: 1.1.1
6
  * Description: Notify your users when their balances changes.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
@@ -17,7 +17,7 @@ define( 'myCRED_NOTE_VERSION', myCRED_VERSION . '.1' );
17
  * @since 1.2.3
18
  * @version 1.3
19
  */
20
- if ( ! class_exists( 'myCRED_Notifications_Module' ) ) {
21
  class myCRED_Notifications_Module extends myCRED_Module {
22
 
23
  /**
@@ -52,7 +52,7 @@ if ( ! class_exists( 'myCRED_Notifications_Module' ) ) {
52
 
53
  add_action( 'mycred_front_enqueue', array( $this, 'register_assets' ) );
54
  add_action( 'wp_footer', array( $this, 'get_notices' ), 1 );
55
- add_action( 'wp_footer', array( $this, 'wp_footer' ), 99 );
56
 
57
  }
58
 
@@ -100,7 +100,7 @@ if ( ! class_exists( 'myCRED_Notifications_Module' ) ) {
100
  'mycred-notifications',
101
  plugins_url( 'assets/js/notify.js', myCRED_NOTE ),
102
  array( 'jquery' ),
103
- myCRED_NOTE_VERSION . '.1',
104
  true
105
  );
106
 
@@ -170,7 +170,7 @@ if ( ! class_exists( 'myCRED_Notifications_Module' ) ) {
170
  public function get_notices() {
171
 
172
  $user_id = get_current_user_id();
173
- $data = get_transient( 'mycred_notice_' . $user_id );
174
 
175
  if ( $data === false || ! is_array( $data ) ) return;
176
 
@@ -188,8 +188,9 @@ if ( ! class_exists( 'myCRED_Notifications_Module' ) ) {
188
  */
189
  public function after_general_settings( $mycred = NULL ) {
190
 
191
- $prefs = $this->notifications; ?>
192
 
 
193
  <h4><div class="icon icon-active"></div><?php _e( 'Notifications', 'mycred' ); ?></h4>
194
  <div class="body" style="display:none;">
195
  <label class="subheader" for="<?php echo $this->field_id( 'use_css' ); ?>"><?php _e( 'Styling', 'mycred' ); ?></label>
@@ -256,14 +257,15 @@ jQuery(function($) {
256
 
257
  $notice = new myCRED_Notifications_Module();
258
  $notice->load();
259
- }
 
260
 
261
  /**
262
  * Add Notice
263
  * @since 1.2.3
264
  * @version 1.0
265
  */
266
- if ( ! function_exists( 'mycred_add_new_notice' ) ) {
267
  function mycred_add_new_notice( $notice = array(), $life = 1 ) {
268
 
269
  // Minimum requirements
@@ -285,5 +287,6 @@ if ( ! function_exists( 'mycred_add_new_notice' ) ) {
285
  set_transient( 'mycred_notice_' . $notice['user_id'], $notices, 86400*$life );
286
 
287
  }
288
- }
 
289
  ?>
2
  /**
3
  * Addon: Notifications
4
  * Addon URI: http://mycred.me/add-ons/notifications/
5
+ * Version: 1.1.2
6
  * Description: Notify your users when their balances changes.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
17
  * @since 1.2.3
18
  * @version 1.3
19
  */
20
+ if ( ! class_exists( 'myCRED_Notifications_Module' ) ) :
21
  class myCRED_Notifications_Module extends myCRED_Module {
22
 
23
  /**
52
 
53
  add_action( 'mycred_front_enqueue', array( $this, 'register_assets' ) );
54
  add_action( 'wp_footer', array( $this, 'get_notices' ), 1 );
55
+ add_action( 'wp_footer', array( $this, 'wp_footer' ), 999 );
56
 
57
  }
58
 
100
  'mycred-notifications',
101
  plugins_url( 'assets/js/notify.js', myCRED_NOTE ),
102
  array( 'jquery' ),
103
+ myCRED_NOTE_VERSION . '.2',
104
  true
105
  );
106
 
170
  public function get_notices() {
171
 
172
  $user_id = get_current_user_id();
173
+ $data = get_transient( 'mycred_notice_' . $user_id );
174
 
175
  if ( $data === false || ! is_array( $data ) ) return;
176
 
188
  */
189
  public function after_general_settings( $mycred = NULL ) {
190
 
191
+ $prefs = $this->notifications;
192
 
193
+ ?>
194
  <h4><div class="icon icon-active"></div><?php _e( 'Notifications', 'mycred' ); ?></h4>
195
  <div class="body" style="display:none;">
196
  <label class="subheader" for="<?php echo $this->field_id( 'use_css' ); ?>"><?php _e( 'Styling', 'mycred' ); ?></label>
257
 
258
  $notice = new myCRED_Notifications_Module();
259
  $notice->load();
260
+
261
+ endif;
262
 
263
  /**
264
  * Add Notice
265
  * @since 1.2.3
266
  * @version 1.0
267
  */
268
+ if ( ! function_exists( 'mycred_add_new_notice' ) ) :
269
  function mycred_add_new_notice( $notice = array(), $life = 1 ) {
270
 
271
  // Minimum requirements
287
  set_transient( 'mycred_notice_' . $notice['user_id'], $notices, 86400*$life );
288
 
289
  }
290
+ endif;
291
+
292
  ?>
addons/ranks/includes/mycred-rank-functions.php CHANGED
@@ -9,8 +9,8 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
9
  * @version 1.5
10
  */
11
  if ( ! function_exists( 'mycred_have_ranks' ) ) :
12
- function mycred_have_ranks( $type = NULL )
13
- {
14
  global $wpdb;
15
 
16
  if ( ! mycred_override_settings() ) {
@@ -39,6 +39,7 @@ if ( ! function_exists( 'mycred_have_ranks' ) ) :
39
  $return = true;
40
 
41
  return apply_filters( 'mycred_have_ranks', $return, $mycred_ranks );
 
42
  }
43
  endif;
44
 
@@ -50,8 +51,8 @@ endif;
50
  * @version 1.2
51
  */
52
  if ( ! function_exists( 'mycred_get_published_ranks_count' ) ) :
53
- function mycred_get_published_ranks_count( $type = NULL )
54
- {
55
  global $wpdb;
56
 
57
  if ( ! mycred_override_settings() ) {
@@ -77,6 +78,7 @@ if ( ! function_exists( 'mycred_get_published_ranks_count' ) ) :
77
  AND ranks.post_status = 'publish';" );
78
 
79
  return apply_filters( 'mycred_get_published_ranks_count', $count );
 
80
  }
81
  endif;
82
 
@@ -89,8 +91,8 @@ endif;
89
  * @version 1.4
90
  */
91
  if ( ! function_exists( 'mycred_assign_ranks' ) ) :
92
- function mycred_assign_ranks( $type = 'mycred_default' )
93
- {
94
  global $wpdb;
95
 
96
  $mycred = mycred( $type );
@@ -214,8 +216,8 @@ endif;
214
  * @version 1.3
215
  */
216
  if ( ! function_exists( 'mycred_get_rank' ) ) :
217
- function mycred_get_rank( $rank_title = '', $format = 'OBJECT' )
218
- {
219
  if ( empty( $rank_title ) ) return $rank_title;
220
 
221
  if ( ! mycred_override_settings() )
@@ -231,6 +233,7 @@ if ( ! function_exists( 'mycred_get_rank' ) ) :
231
  }
232
 
233
  return apply_filters( 'mycred_get_rank', $rank, $rank_title, $format );
 
234
  }
235
  endif;
236
 
@@ -250,8 +253,8 @@ endif;
250
  * @version 1.4
251
  */
252
  if ( ! function_exists( 'mycred_get_users_rank' ) ) :
253
- function mycred_get_users_rank( $user_id = NULL, $return = 'post_title', $logo_size = 'post-thumbnail', $attr = NULL, $type = 'mycred_default' )
254
- {
255
  // User ID is required
256
  if ( $user_id === NULL )
257
  return __( 'mycred_get_users_rank() : Missing required user id', 'mycred' );
@@ -301,6 +304,7 @@ if ( ! function_exists( 'mycred_get_users_rank' ) ) :
301
  }
302
 
303
  return apply_filters( 'mycred_get_users_rank', $reply, $user_id, $return, $logo_size );
 
304
  }
305
  endif;
306
 
@@ -339,8 +343,8 @@ endif;
339
  * @version 1.5
340
  */
341
  if ( ! function_exists( 'mycred_find_users_rank' ) ) :
342
- function mycred_find_users_rank( $user_id = NULL, $save = false, $type = 'mycred_default' )
343
- {
344
  global $wpdb;
345
 
346
  $mycred = mycred( $type );
@@ -424,6 +428,7 @@ if ( ! function_exists( 'mycred_find_users_rank' ) ) :
424
  mycred_update_user_meta( $user_id, 'mycred_rank', $end, $rank_id );
425
 
426
  return apply_filters( 'mycred_find_users_rank', $rank_id, $user_id, $save, $type );
 
427
  }
428
  endif;
429
 
@@ -437,8 +442,8 @@ endif;
437
  * @version 1.1
438
  */
439
  if ( ! function_exists( 'mycred_get_rank_id_from_title' ) ) :
440
- function mycred_get_rank_id_from_title( $title )
441
- {
442
  $rank = mycred_get_rank( $title );
443
  if ( ! isset( $rank->ID ) )
444
  $return = '';
@@ -446,6 +451,7 @@ if ( ! function_exists( 'mycred_get_rank_id_from_title' ) ) :
446
  $return = $rank->ID;
447
 
448
  return apply_filters( 'mycred_get_rank_id_from_title', $return, $title );
 
449
  }
450
  endif;
451
 
@@ -456,9 +462,10 @@ endif;
456
  * @version 1.0
457
  */
458
  if ( ! function_exists( 'mycred_get_my_rank' ) ) :
459
- function mycred_get_my_rank()
460
- {
461
  return mycred_get_users_rank( get_current_user_id() );
 
462
  }
463
  endif;
464
 
@@ -474,8 +481,8 @@ endif;
474
  * @version 1.4
475
  */
476
  if ( ! function_exists( 'mycred_get_ranks' ) ) :
477
- function mycred_get_ranks( $status = 'publish', $number = '-1', $order = 'DESC', $type = NULL )
478
- {
479
  global $wpdb;
480
 
481
  // Order
@@ -489,11 +496,11 @@ if ( ! function_exists( 'mycred_get_ranks' ) ) :
489
  $limit = '';
490
 
491
  if ( ! mycred_override_settings() ) {
492
- $posts = $wpdb->posts;
493
  $postmeta = $wpdb->postmeta;
494
  }
495
  else {
496
- $posts = $wpdb->base_prefix . 'posts';
497
  $postmeta = $wpdb->base_prefix . 'postmeta';
498
  }
499
 
@@ -525,6 +532,7 @@ if ( ! function_exists( 'mycred_get_ranks' ) ) :
525
  }
526
 
527
  return apply_filters( 'mycred_get_ranks', $ranks, $status, $number, $order );
 
528
  }
529
  endif;
530
 
@@ -539,8 +547,8 @@ endif;
539
  * @version 1.4
540
  */
541
  if ( ! function_exists( 'mycred_get_users_of_rank' ) ) :
542
- function mycred_get_users_of_rank( $rank_id, $number = NULL, $order = 'DESC', $type = 'mycred_default' )
543
- {
544
  if ( ! is_numeric( $rank_id ) )
545
  $rank_id = mycred_get_rank_id_from_title( $rank_id );
546
 
@@ -593,6 +601,7 @@ if ( ! function_exists( 'mycred_get_users_of_rank' ) ) :
593
  $wpdb->flush();
594
 
595
  return apply_filters( 'mycred_get_users_of_rank', $users, $rank_id, $number, $order, $type );
 
596
  }
597
  endif;
598
 
@@ -641,8 +650,8 @@ endif;
641
  * @version 1.2
642
  */
643
  if ( ! function_exists( 'mycred_rank_has_logo' ) ) :
644
- function mycred_rank_has_logo( $rank_id )
645
- {
646
  if ( ! is_numeric( $rank_id ) )
647
  $rank_id = mycred_get_rank_id_from_title( $rank_id );
648
 
@@ -662,6 +671,7 @@ if ( ! function_exists( 'mycred_rank_has_logo' ) ) :
662
  }
663
 
664
  return apply_filters( 'mycred_rank_has_logo', $return, $rank_id );
 
665
  }
666
  endif;
667
 
@@ -679,8 +689,8 @@ endif;
679
  * @version 1.2
680
  */
681
  if ( ! function_exists( 'mycred_get_rank_logo' ) ) :
682
- function mycred_get_rank_logo( $rank_id, $size = 'post-thumbnail', $attr = NULL )
683
- {
684
  if ( ! is_numeric( $rank_id ) )
685
  $rank_id = mycred_get_rank_id_from_title( $rank_id );
686
 
@@ -702,6 +712,7 @@ if ( ! function_exists( 'mycred_get_rank_logo' ) ) :
702
  }
703
 
704
  return apply_filters( 'mycred_get_rank_logo', $logo, $rank_id, $size, $attr );
 
705
  }
706
  endif;
707
 
@@ -712,8 +723,8 @@ endif;
712
  * @version 1.4
713
  */
714
  if ( ! function_exists( 'mycred_user_got_demoted' ) ) :
715
- function mycred_user_got_demoted( $user_id = NULL, $rank_id = NULL )
716
- {
717
  $type = get_post_meta( $rank_id, 'ctype', true );
718
  if ( $type == '' ) {
719
  $type = 'mycred_default';
@@ -751,6 +762,7 @@ if ( ! function_exists( 'mycred_user_got_demoted' ) ) :
751
  if ( $new_min < $current_min ) return true;
752
 
753
  return false;
 
754
  }
755
  endif;
756
 
@@ -761,8 +773,8 @@ endif;
761
  * @version 1.4
762
  */
763
  if ( ! function_exists( 'mycred_user_got_promoted' ) ) :
764
- function mycred_user_got_promoted( $user_id = NULL, $rank_id = NULL )
765
- {
766
  $type = get_post_meta( $rank_id, 'ctype', true );
767
  if ( $type == '' ) {
768
  $type = 'mycred_default';
@@ -800,6 +812,7 @@ if ( ! function_exists( 'mycred_user_got_promoted' ) ) :
800
  if ( $new_min > $current_min ) return true;
801
 
802
  return false;
 
803
  }
804
  endif;
805
 
@@ -875,4 +888,5 @@ if ( ! function_exists( 'mycred_show_rank_in_bbpress' ) ) :
875
 
876
  }
877
  endif;
 
878
  ?>
9
  * @version 1.5
10
  */
11
  if ( ! function_exists( 'mycred_have_ranks' ) ) :
12
+ function mycred_have_ranks( $type = NULL ) {
13
+
14
  global $wpdb;
15
 
16
  if ( ! mycred_override_settings() ) {
39
  $return = true;
40
 
41
  return apply_filters( 'mycred_have_ranks', $return, $mycred_ranks );
42
+
43
  }
44
  endif;
45
 
51
  * @version 1.2
52
  */
53
  if ( ! function_exists( 'mycred_get_published_ranks_count' ) ) :
54
+ function mycred_get_published_ranks_count( $type = NULL ) {
55
+
56
  global $wpdb;
57
 
58
  if ( ! mycred_override_settings() ) {
78
  AND ranks.post_status = 'publish';" );
79
 
80
  return apply_filters( 'mycred_get_published_ranks_count', $count );
81
+
82
  }
83
  endif;
84
 
91
  * @version 1.4
92
  */
93
  if ( ! function_exists( 'mycred_assign_ranks' ) ) :
94
+ function mycred_assign_ranks( $type = 'mycred_default' ) {
95
+
96
  global $wpdb;
97
 
98
  $mycred = mycred( $type );
216
  * @version 1.3
217
  */
218
  if ( ! function_exists( 'mycred_get_rank' ) ) :
219
+ function mycred_get_rank( $rank_title = '', $format = 'OBJECT' ) {
220
+
221
  if ( empty( $rank_title ) ) return $rank_title;
222
 
223
  if ( ! mycred_override_settings() )
233
  }
234
 
235
  return apply_filters( 'mycred_get_rank', $rank, $rank_title, $format );
236
+
237
  }
238
  endif;
239
 
253
  * @version 1.4
254
  */
255
  if ( ! function_exists( 'mycred_get_users_rank' ) ) :
256
+ function mycred_get_users_rank( $user_id = NULL, $return = 'post_title', $logo_size = 'post-thumbnail', $attr = NULL, $type = 'mycred_default' ) {
257
+
258
  // User ID is required
259
  if ( $user_id === NULL )
260
  return __( 'mycred_get_users_rank() : Missing required user id', 'mycred' );
304
  }
305
 
306
  return apply_filters( 'mycred_get_users_rank', $reply, $user_id, $return, $logo_size );
307
+
308
  }
309
  endif;
310
 
343
  * @version 1.5
344
  */
345
  if ( ! function_exists( 'mycred_find_users_rank' ) ) :
346
+ function mycred_find_users_rank( $user_id = NULL, $save = false, $type = 'mycred_default' ) {
347
+
348
  global $wpdb;
349
 
350
  $mycred = mycred( $type );
428
  mycred_update_user_meta( $user_id, 'mycred_rank', $end, $rank_id );
429
 
430
  return apply_filters( 'mycred_find_users_rank', $rank_id, $user_id, $save, $type );
431
+
432
  }
433
  endif;
434
 
442
  * @version 1.1
443
  */
444
  if ( ! function_exists( 'mycred_get_rank_id_from_title' ) ) :
445
+ function mycred_get_rank_id_from_title( $title ) {
446
+
447
  $rank = mycred_get_rank( $title );
448
  if ( ! isset( $rank->ID ) )
449
  $return = '';
451
  $return = $rank->ID;
452
 
453
  return apply_filters( 'mycred_get_rank_id_from_title', $return, $title );
454
+
455
  }
456
  endif;
457
 
462
  * @version 1.0
463
  */
464
  if ( ! function_exists( 'mycred_get_my_rank' ) ) :
465
+ function mycred_get_my_rank() {
466
+
467
  return mycred_get_users_rank( get_current_user_id() );
468
+
469
  }
470
  endif;
471
 
481
  * @version 1.4
482
  */
483
  if ( ! function_exists( 'mycred_get_ranks' ) ) :
484
+ function mycred_get_ranks( $status = 'publish', $number = '-1', $order = 'DESC', $type = NULL ) {
485
+
486
  global $wpdb;
487
 
488
  // Order
496
  $limit = '';
497
 
498
  if ( ! mycred_override_settings() ) {
499
+ $posts = $wpdb->posts;
500
  $postmeta = $wpdb->postmeta;
501
  }
502
  else {
503
+ $posts = $wpdb->base_prefix . 'posts';
504
  $postmeta = $wpdb->base_prefix . 'postmeta';
505
  }
506
 
532
  }
533
 
534
  return apply_filters( 'mycred_get_ranks', $ranks, $status, $number, $order );
535
+
536
  }
537
  endif;
538
 
547
  * @version 1.4
548
  */
549
  if ( ! function_exists( 'mycred_get_users_of_rank' ) ) :
550
+ function mycred_get_users_of_rank( $rank_id, $number = NULL, $order = 'DESC', $type = 'mycred_default' ) {
551
+
552
  if ( ! is_numeric( $rank_id ) )
553
  $rank_id = mycred_get_rank_id_from_title( $rank_id );
554
 
601
  $wpdb->flush();
602
 
603
  return apply_filters( 'mycred_get_users_of_rank', $users, $rank_id, $number, $order, $type );
604
+
605
  }
606
  endif;
607
 
650
  * @version 1.2
651
  */
652
  if ( ! function_exists( 'mycred_rank_has_logo' ) ) :
653
+ function mycred_rank_has_logo( $rank_id ) {
654
+
655
  if ( ! is_numeric( $rank_id ) )
656
  $rank_id = mycred_get_rank_id_from_title( $rank_id );
657
 
671
  }
672
 
673
  return apply_filters( 'mycred_rank_has_logo', $return, $rank_id );
674
+
675
  }
676
  endif;
677
 
689
  * @version 1.2
690
  */
691
  if ( ! function_exists( 'mycred_get_rank_logo' ) ) :
692
+ function mycred_get_rank_logo( $rank_id, $size = 'post-thumbnail', $attr = NULL ) {
693
+
694
  if ( ! is_numeric( $rank_id ) )
695
  $rank_id = mycred_get_rank_id_from_title( $rank_id );
696
 
712
  }
713
 
714
  return apply_filters( 'mycred_get_rank_logo', $logo, $rank_id, $size, $attr );
715
+
716
  }
717
  endif;
718
 
723
  * @version 1.4
724
  */
725
  if ( ! function_exists( 'mycred_user_got_demoted' ) ) :
726
+ function mycred_user_got_demoted( $user_id = NULL, $rank_id = NULL ) {
727
+
728
  $type = get_post_meta( $rank_id, 'ctype', true );
729
  if ( $type == '' ) {
730
  $type = 'mycred_default';
762
  if ( $new_min < $current_min ) return true;
763
 
764
  return false;
765
+
766
  }
767
  endif;
768
 
773
  * @version 1.4
774
  */
775
  if ( ! function_exists( 'mycred_user_got_promoted' ) ) :
776
+ function mycred_user_got_promoted( $user_id = NULL, $rank_id = NULL ) {
777
+
778
  $type = get_post_meta( $rank_id, 'ctype', true );
779
  if ( $type == '' ) {
780
  $type = 'mycred_default';
812
  if ( $new_min > $current_min ) return true;
813
 
814
  return false;
815
+
816
  }
817
  endif;
818
 
888
 
889
  }
890
  endif;
891
+
892
  ?>
addons/ranks/includes/mycred-rank-shortcodes.php CHANGED
@@ -9,8 +9,8 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
9
  * @version 1.2
10
  */
11
  if ( ! function_exists( 'mycred_render_my_rank' ) ) :
12
- function mycred_render_my_rank( $atts, $content = NULL )
13
- {
14
  extract( shortcode_atts( array(
15
  'user_id' => '',
16
  'ctype' => 'mycred_default',
@@ -32,7 +32,7 @@ if ( ! function_exists( 'mycred_render_my_rank' ) ) :
32
  $user_id = get_current_user_id();
33
 
34
  $rank_id = mycred_get_users_rank_id( $user_id, $ctype );
35
- $show = array();
36
 
37
  if ( $show_logo )
38
  $show[] = mycred_get_rank_logo( $rank_id, $logo_size );
@@ -45,6 +45,7 @@ if ( ! function_exists( 'mycred_render_my_rank' ) ) :
45
 
46
  if ( empty( $show ) ) return;
47
  return '<div class="mycred-my-rank">' . implode( ' ', $show ) . '</div>';
 
48
  }
49
  endif;
50
 
@@ -56,8 +57,8 @@ endif;
56
  * @version 1.0
57
  */
58
  if ( ! function_exists( 'mycred_render_my_ranks' ) ) :
59
- function mycred_render_my_ranks( $atts, $content = NULL )
60
- {
61
  extract( shortcode_atts( array(
62
  'user_id' => NULL,
63
  'show_title' => 1,
@@ -92,7 +93,9 @@ if ( ! function_exists( 'mycred_render_my_ranks' ) ) :
92
  }
93
 
94
  if ( empty( $show ) ) return;
 
95
  return '<div class="mycred-all-ranks">' . implode( ' ', $show ) . '</div>';
 
96
  }
97
  endif;
98
 
@@ -198,8 +201,8 @@ endif;
198
  * @version 1.1
199
  */
200
  if ( ! function_exists( 'mycred_render_users_of_all_ranks' ) ) :
201
- function mycred_render_users_of_all_ranks( $atts, $row_template = NULL )
202
- {
203
  extract( shortcode_atts( array(
204
  'login' => '',
205
  'number' => NULL,
@@ -212,25 +215,28 @@ if ( ! function_exists( 'mycred_render_users_of_all_ranks' ) ) :
212
 
213
  // Prep
214
  $mycred = mycred();
215
-
216
  // User is not logged in
217
  if ( ! is_user_logged_in() && $login != '' )
218
  return $mycred->template_tags_general( $login );
219
-
220
  // Default template
221
  if ( $row_template === NULL || empty( $row_template ) )
222
  $row_template = '<p class="mycred-rank-user-row">%user_profile_link% with %balance% %_plural%</p>';
223
-
224
  // Let others play
225
  $row_template = apply_filters( 'mycred_users_of_all_ranks', $row_template, $atts, $mycred );
226
-
227
- $output = '';
228
  $all_ranks = mycred_get_ranks( 'publish', '-1', 'DESC', $ctype );
229
  // If we have ranks
230
  if ( ! empty( $all_ranks ) ) {
 
231
  $output .= '<div class="mycred-all-ranks-wrapper">' . "\n";
 
232
  // Loop though all ranks
233
  foreach ( $all_ranks as $rank_id => $rank ) {
 
234
  // Prep Slug
235
  $slug = $rank->post_name;
236
  if ( empty( $slug ) )
@@ -238,14 +244,14 @@ if ( ! function_exists( 'mycred_render_users_of_all_ranks' ) ) :
238
 
239
  // Rank wrapper
240
  $output .= '<div class="mycred-rank rank-' . $slug . ' rank-' . $rank_id . '"><h2>';
241
-
242
  // Insert Logo
243
  if ( $show_logo )
244
  $output .= mycred_get_rank_logo( $rank_id, $logo_size );
245
 
246
  // Rank title
247
  $output .= $rank->post_title . '</h2>' . "\n";
248
-
249
  $attr = array(
250
  'rank_id' => $rank_id,
251
  'number' => $number,
@@ -254,13 +260,17 @@ if ( ! function_exists( 'mycred_render_users_of_all_ranks' ) ) :
254
  'ctype' => $ctype
255
  );
256
  $output .= mycred_render_users_of_rank( $attr, $row_template );
257
-
258
  $output .= '</div>' . "\n";
 
259
  }
 
260
  $output .= '</div>';
 
261
  }
262
-
263
  return $output;
 
264
  }
265
  endif;
266
 
@@ -272,37 +282,46 @@ endif;
272
  * @version 1.1
273
  */
274
  if ( ! function_exists( 'mycred_render_rank_list' ) ) :
275
- function mycred_render_rank_list( $atts, $content = NULL )
276
- {
277
  extract( shortcode_atts( array(
278
  'order' => 'DESC',
279
  'ctype' => 'mycred_default',
280
  'wrap' => 'div'
281
  ), $atts ) );
282
-
283
  if ( $content === NULL || empty( $content ) )
284
  $content = '<p>%rank% <span class="min">%min%</span> - <span class="max">%max%</span></p>';
285
-
286
- $mycred = mycred();
287
 
288
- $output = '';
 
289
  $all_ranks = mycred_get_ranks( 'publish', '-1', $order, $ctype );
 
290
  if ( ! empty( $all_ranks ) ) {
 
291
  $output .= '<' . $wrap . ' class="mycred-rank-list">';
292
  $content = apply_filters( 'mycred_rank_list', $content, $atts, $mycred );
 
293
  foreach ( $all_ranks as $rank_id => $rank ) {
 
294
  $row = str_replace( '%rank%', $rank->post_title, $content );
295
  $row = str_replace( '%rank_logo%', mycred_get_rank_logo( $rank_id ), $row );
296
  $row = str_replace( '%min%', get_post_meta( $rank_id, 'mycred_rank_min', true ), $row );
297
  $row = str_replace( '%max%', get_post_meta( $rank_id, 'mycred_rank_max', true ), $row );
298
  $row = str_replace( '%count%', count( mycred_get_users_of_rank( $rank_id ) ), $row );
299
  $row = $mycred->template_tags_general( $row );
 
300
  $output .= $row . "\n";
 
301
  }
 
302
  $output .= '</' . $wrap . '>';
 
303
  }
304
-
305
  return $output;
 
306
  }
307
  endif;
 
308
  ?>
9
  * @version 1.2
10
  */
11
  if ( ! function_exists( 'mycred_render_my_rank' ) ) :
12
+ function mycred_render_my_rank( $atts, $content = NULL ) {
13
+
14
  extract( shortcode_atts( array(
15
  'user_id' => '',
16
  'ctype' => 'mycred_default',
32
  $user_id = get_current_user_id();
33
 
34
  $rank_id = mycred_get_users_rank_id( $user_id, $ctype );
35
+ $show = array();
36
 
37
  if ( $show_logo )
38
  $show[] = mycred_get_rank_logo( $rank_id, $logo_size );
45
 
46
  if ( empty( $show ) ) return;
47
  return '<div class="mycred-my-rank">' . implode( ' ', $show ) . '</div>';
48
+
49
  }
50
  endif;
51
 
57
  * @version 1.0
58
  */
59
  if ( ! function_exists( 'mycred_render_my_ranks' ) ) :
60
+ function mycred_render_my_ranks( $atts, $content = NULL ) {
61
+
62
  extract( shortcode_atts( array(
63
  'user_id' => NULL,
64
  'show_title' => 1,
93
  }
94
 
95
  if ( empty( $show ) ) return;
96
+
97
  return '<div class="mycred-all-ranks">' . implode( ' ', $show ) . '</div>';
98
+
99
  }
100
  endif;
101
 
201
  * @version 1.1
202
  */
203
  if ( ! function_exists( 'mycred_render_users_of_all_ranks' ) ) :
204
+ function mycred_render_users_of_all_ranks( $atts, $row_template = NULL ) {
205
+
206
  extract( shortcode_atts( array(
207
  'login' => '',
208
  'number' => NULL,
215
 
216
  // Prep
217
  $mycred = mycred();
218
+
219
  // User is not logged in
220
  if ( ! is_user_logged_in() && $login != '' )
221
  return $mycred->template_tags_general( $login );
222
+
223
  // Default template
224
  if ( $row_template === NULL || empty( $row_template ) )
225
  $row_template = '<p class="mycred-rank-user-row">%user_profile_link% with %balance% %_plural%</p>';
226
+
227
  // Let others play
228
  $row_template = apply_filters( 'mycred_users_of_all_ranks', $row_template, $atts, $mycred );
229
+
230
+ $output = '';
231
  $all_ranks = mycred_get_ranks( 'publish', '-1', 'DESC', $ctype );
232
  // If we have ranks
233
  if ( ! empty( $all_ranks ) ) {
234
+
235
  $output .= '<div class="mycred-all-ranks-wrapper">' . "\n";
236
+
237
  // Loop though all ranks
238
  foreach ( $all_ranks as $rank_id => $rank ) {
239
+
240
  // Prep Slug
241
  $slug = $rank->post_name;
242
  if ( empty( $slug ) )
244
 
245
  // Rank wrapper
246
  $output .= '<div class="mycred-rank rank-' . $slug . ' rank-' . $rank_id . '"><h2>';
247
+
248
  // Insert Logo
249
  if ( $show_logo )
250
  $output .= mycred_get_rank_logo( $rank_id, $logo_size );
251
 
252
  // Rank title
253
  $output .= $rank->post_title . '</h2>' . "\n";
254
+
255
  $attr = array(
256
  'rank_id' => $rank_id,
257
  'number' => $number,
260
  'ctype' => $ctype
261
  );
262
  $output .= mycred_render_users_of_rank( $attr, $row_template );
263
+
264
  $output .= '</div>' . "\n";
265
+
266
  }
267
+
268
  $output .= '</div>';
269
+
270
  }
271
+
272
  return $output;
273
+
274
  }
275
  endif;
276
 
282
  * @version 1.1
283
  */
284
  if ( ! function_exists( 'mycred_render_rank_list' ) ) :
285
+ function mycred_render_rank_list( $atts, $content = NULL ) {
286
+
287
  extract( shortcode_atts( array(
288
  'order' => 'DESC',
289
  'ctype' => 'mycred_default',
290
  'wrap' => 'div'
291
  ), $atts ) );
292
+
293
  if ( $content === NULL || empty( $content ) )
294
  $content = '<p>%rank% <span class="min">%min%</span> - <span class="max">%max%</span></p>';
 
 
295
 
296
+ $mycred = mycred();
297
+ $output = '';
298
  $all_ranks = mycred_get_ranks( 'publish', '-1', $order, $ctype );
299
+
300
  if ( ! empty( $all_ranks ) ) {
301
+
302
  $output .= '<' . $wrap . ' class="mycred-rank-list">';
303
  $content = apply_filters( 'mycred_rank_list', $content, $atts, $mycred );
304
+
305
  foreach ( $all_ranks as $rank_id => $rank ) {
306
+
307
  $row = str_replace( '%rank%', $rank->post_title, $content );
308
  $row = str_replace( '%rank_logo%', mycred_get_rank_logo( $rank_id ), $row );
309
  $row = str_replace( '%min%', get_post_meta( $rank_id, 'mycred_rank_min', true ), $row );
310
  $row = str_replace( '%max%', get_post_meta( $rank_id, 'mycred_rank_max', true ), $row );
311
  $row = str_replace( '%count%', count( mycred_get_users_of_rank( $rank_id ) ), $row );
312
  $row = $mycred->template_tags_general( $row );
313
+
314
  $output .= $row . "\n";
315
+
316
  }
317
+
318
  $output .= '</' . $wrap . '>';
319
+
320
  }
321
+
322
  return $output;
323
+
324
  }
325
  endif;
326
+
327
  ?>
addons/ranks/myCRED-addon-ranks.php CHANGED
@@ -361,8 +361,10 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
361
  * @version 1.0
362
  */
363
  public function exclude_ranks( $excludes ) {
 
364
  $excludes[] = 'mycred_rank';
365
  return $excludes;
 
366
  }
367
 
368
  /**
@@ -371,8 +373,9 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
371
  * @version 1.3
372
  */
373
  public function enqueue_scripts() {
 
374
  $adjust_header = false;
375
- $screen = get_current_screen();
376
 
377
  // Ranks List Page
378
  if ( preg_match( '/(edit-mycred_rank)/', $screen->id, $matches ) ) {
@@ -433,7 +436,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
433
  /**
434
  * Register Rank Post Type
435
  * @since 1.1
436
- * @version 1.3
437
  */
438
  public function register_post_type() {
439
 
@@ -443,19 +446,23 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
443
  $name = __( 'Ranks', 'mycred' );
444
 
445
  $labels = array(
446
- 'name' => $name,
447
- 'singular_name' => __( 'Rank', 'mycred' ),
448
- 'add_new' => __( 'Add New', 'mycred' ),
449
- 'add_new_item' => __( 'Add New Rank', 'mycred' ),
450
- 'edit_item' => __( 'Edit Rank', 'mycred' ),
451
- 'new_item' => __( 'New Rank', 'mycred' ),
452
- 'all_items' => __( 'Ranks', 'mycred' ),
453
- 'view_item' => __( 'View Rank', 'mycred' ),
454
- 'search_items' => __( 'Search Ranks', 'mycred' ),
455
- 'not_found' => __( 'No ranks found', 'mycred' ),
456
- 'not_found_in_trash' => __( 'No ranks found in Trash', 'mycred' ),
457
- 'parent_item_colon' => '',
458
- 'menu_name' => __( 'Ranks', 'mycred' )
 
 
 
 
459
  );
460
 
461
  // Support
@@ -667,7 +674,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
667
  */
668
  public function user_tags( $tags ) {
669
 
670
- $tags = explode( '|', $tags );
671
  $tags[] = 'rank';
672
  $tags[] = 'rank_logo';
673
 
@@ -748,7 +755,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
748
  */
749
  public function insert_rank_header() {
750
 
751
- $output = '';
752
  $user_id = bp_displayed_user_id();
753
 
754
  foreach ( $this->point_types as $type_id => $label ) {
@@ -792,7 +799,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
792
  */
793
  public function insert_rank_profile() {
794
 
795
- $output = '';
796
  $user_id = bp_displayed_user_id();
797
 
798
  $count = 0;
@@ -850,7 +857,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
850
  */
851
  public function insert_rank_bb_reply() {
852
 
853
- $output = '';
854
  $user_id = bbp_get_reply_author_id();
855
  if ( $user_id == 0 ) return;
856
 
@@ -895,7 +902,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
895
  */
896
  public function insert_rank_bb_profile() {
897
 
898
- $output = '';
899
  $user_id = bbp_get_displayed_user_id();
900
 
901
  foreach ( $this->point_types as $type_id => $label ) {
@@ -947,8 +954,9 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
947
 
948
  // If there are no ranks at all
949
  if ( ! mycred_have_ranks() ) {
 
950
  // Construct a new post
951
- $rank = array();
952
  $rank['post_title'] = 'Newbie';
953
  $rank['post_type'] = 'mycred_rank';
954
  $rank['post_status'] = 'publish';
@@ -963,6 +971,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
963
 
964
  $mycred_ranks = 1;
965
  mycred_assign_ranks();
 
966
  }
967
 
968
  }
@@ -975,7 +984,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
975
  public function post_updated_messages( $messages ) {
976
 
977
  $messages['mycred_rank'] = array(
978
- 0 => __( 'Rank Updated.', 'mycred' ),
979
  1 => __( 'Rank Updated.', 'mycred' ),
980
  2 => __( 'Rank Updated.', 'mycred' ),
981
  3 => __( 'Rank Updated.', 'mycred' ),
@@ -987,6 +996,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
987
  9 => __( 'Rank Updated.', 'mycred' ),
988
  10 => ''
989
  );
 
990
  return $messages;
991
 
992
  }
@@ -1033,7 +1043,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
1033
  */
1034
  public function adjust_column_headers( $defaults ) {
1035
 
1036
- $columns = array();
1037
  $columns['cb'] = $defaults['cb'];
1038
 
1039
  // Add / Adjust
@@ -1196,13 +1206,18 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
1196
  <label for="mycred-rank-max"><?php echo $mycred->template_tags_general( __( 'Maximum %plural% to be included in this rank', 'mycred' ) ); ?>:</label>
1197
  <input type="text" name="mycred_rank[max]" id="mycred-rank-max" value="<?php echo $max; ?>" />
1198
  </p>
 
1199
  <?php if ( count( $this->point_types ) > 1 ) : ?>
 
1200
  <p>
1201
  <label for="mycred-rank-point-type"><?php _e( 'Point Type', 'mycred' ); ?></label>
1202
  <?php mycred_types_select_from_dropdown( 'mycred_rank[ctype]', 'mycred-rank-point-type', $type ); ?>
1203
  </p>
 
1204
  <?php else : ?>
 
1205
  <input type="hidden" name="mycred_rank[ctype]" value="mycred_default" />
 
1206
  <?php endif; ?>
1207
 
1208
  <?php do_action( 'mycred_rank_after_req', $post, $this->core ); ?>
@@ -1285,7 +1300,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
1285
  /**
1286
  * Add to General Settings
1287
  * @since 1.1
1288
- * @version 1.3
1289
  */
1290
  public function after_general_settings( $mycred = NULL ) {
1291
 
@@ -1318,7 +1333,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
1318
  <li>
1319
  <label><input type="checkbox" value="1" checked="checked" disabled="disabled" /> <?php _e( 'Title', 'mycred' ); ?></label><br />
1320
  <label><input type="checkbox" value="1" checked="checked" disabled="disabled" /> <?php echo $mycred->core->template_tags_general( __( '%plural% requirement', 'mycred' ) ); ?></label><br />
1321
- <label><input type="checkbox" value="1" checked="checked" disabled="disabled" /> <?php _e( 'Featured Image (Logo)', 'mycred' ); ?></label><br />
1322
 
1323
  <label for="<?php echo $this->field_id( array( 'support' => 'content' ) ); ?>"><input type="checkbox" name="<?php echo $this->field_name( array( 'support' => 'content' ) ); ?>" id="<?php echo $this->field_id( array( 'support' => 'content' ) ); ?>" <?php checked( $prefs['support']['content'], 1 ); ?> value="1" /> <?php _e( 'Content', 'mycred' ); ?></label><br />
1324
 
@@ -1562,16 +1577,16 @@ jQuery(function($){
1562
  $new_data['rank']['support']['page-attributes'] = ( isset( $data['rank']['support']['page-attributes'] ) ) ? true : false;
1563
  $new_data['rank']['support']['custom-fields'] = ( isset( $data['rank']['support']['custom-fields'] ) ) ? true : false;
1564
 
1565
- $new_data['rank']['base'] = sanitize_text_field( $data['rank']['base'] );
1566
- $new_data['rank']['public'] = ( isset( $data['rank']['public'] ) ) ? true : false;
1567
- $new_data['rank']['slug'] = sanitize_text_field( $data['rank']['slug'] );
1568
- $new_data['rank']['order'] = sanitize_text_field( $data['rank']['order'] );
1569
 
1570
  $allowed_tags = $this->core->allowed_html_tags();
1571
- $new_data['rank']['bb_location'] = sanitize_text_field( $data['rank']['bb_location'] );
1572
- $new_data['rank']['bb_template'] = wp_kses( $data['rank']['bb_template'], $allowed_tags );
1573
- $new_data['rank']['bp_location'] = sanitize_text_field( $data['rank']['bp_location'] );
1574
- $new_data['rank']['bp_template'] = wp_kses( $data['rank']['bp_template'], $allowed_tags );
1575
 
1576
  return $new_data;
1577
 
@@ -1598,7 +1613,6 @@ jQuery(function($){
1598
  $rank_meta_key .= $mycred->mycred_type;
1599
 
1600
  ?>
1601
-
1602
  <label class="subheader"><?php _e( 'Ranks', 'mycred' ); ?></label>
1603
  <ol id="myCRED-rank-actions" class="inline">
1604
  <li>
@@ -1624,4 +1638,5 @@ jQuery(function($){
1624
  $rank->load();
1625
 
1626
  endif;
 
1627
  ?>
361
  * @version 1.0
362
  */
363
  public function exclude_ranks( $excludes ) {
364
+
365
  $excludes[] = 'mycred_rank';
366
  return $excludes;
367
+
368
  }
369
 
370
  /**
373
  * @version 1.3
374
  */
375
  public function enqueue_scripts() {
376
+
377
  $adjust_header = false;
378
+ $screen = get_current_screen();
379
 
380
  // Ranks List Page
381
  if ( preg_match( '/(edit-mycred_rank)/', $screen->id, $matches ) ) {
436
  /**
437
  * Register Rank Post Type
438
  * @since 1.1
439
+ * @version 1.3.1
440
  */
441
  public function register_post_type() {
442
 
446
  $name = __( 'Ranks', 'mycred' );
447
 
448
  $labels = array(
449
+ 'name' => $name,
450
+ 'singular_name' => __( 'Rank', 'mycred' ),
451
+ 'add_new' => __( 'Add New', 'mycred' ),
452
+ 'add_new_item' => __( 'Add New Rank', 'mycred' ),
453
+ 'edit_item' => __( 'Edit Rank', 'mycred' ),
454
+ 'new_item' => __( 'New Rank', 'mycred' ),
455
+ 'all_items' => __( 'Ranks', 'mycred' ),
456
+ 'view_item' => __( 'View Rank', 'mycred' ),
457
+ 'search_items' => __( 'Search Ranks', 'mycred' ),
458
+ 'featured_image' => __( 'Rank Logo', 'mycred' ),
459
+ 'set_featured_image' => __( 'Set rank logo', 'mycred' ),
460
+ 'remove_featured_image' => __( 'Remove rank logo', 'mycred' ),
461
+ 'use_featured_image' => __( 'Use as Logo', 'mycred' ),
462
+ 'not_found' => __( 'No ranks found', 'mycred' ),
463
+ 'not_found_in_trash' => __( 'No ranks found in Trash', 'mycred' ),
464
+ 'parent_item_colon' => '',
465
+ 'menu_name' => __( 'Ranks', 'mycred' )
466
  );
467
 
468
  // Support
674
  */
675
  public function user_tags( $tags ) {
676
 
677
+ $tags = explode( '|', $tags );
678
  $tags[] = 'rank';
679
  $tags[] = 'rank_logo';
680
 
755
  */
756
  public function insert_rank_header() {
757
 
758
+ $output = '';
759
  $user_id = bp_displayed_user_id();
760
 
761
  foreach ( $this->point_types as $type_id => $label ) {
799
  */
800
  public function insert_rank_profile() {
801
 
802
+ $output = '';
803
  $user_id = bp_displayed_user_id();
804
 
805
  $count = 0;
857
  */
858
  public function insert_rank_bb_reply() {
859
 
860
+ $output = '';
861
  $user_id = bbp_get_reply_author_id();
862
  if ( $user_id == 0 ) return;
863
 
902
  */
903
  public function insert_rank_bb_profile() {
904
 
905
+ $output = '';
906
  $user_id = bbp_get_displayed_user_id();
907
 
908
  foreach ( $this->point_types as $type_id => $label ) {
954
 
955
  // If there are no ranks at all
956
  if ( ! mycred_have_ranks() ) {
957
+
958
  // Construct a new post
959
+ $rank = array();
960
  $rank['post_title'] = 'Newbie';
961
  $rank['post_type'] = 'mycred_rank';
962
  $rank['post_status'] = 'publish';
971
 
972
  $mycred_ranks = 1;
973
  mycred_assign_ranks();
974
+
975
  }
976
 
977
  }
984
  public function post_updated_messages( $messages ) {
985
 
986
  $messages['mycred_rank'] = array(
987
+ 0 => '',
988
  1 => __( 'Rank Updated.', 'mycred' ),
989
  2 => __( 'Rank Updated.', 'mycred' ),
990
  3 => __( 'Rank Updated.', 'mycred' ),
996
  9 => __( 'Rank Updated.', 'mycred' ),
997
  10 => ''
998
  );
999
+
1000
  return $messages;
1001
 
1002
  }
1043
  */
1044
  public function adjust_column_headers( $defaults ) {
1045
 
1046
+ $columns = array();
1047
  $columns['cb'] = $defaults['cb'];
1048
 
1049
  // Add / Adjust
1206
  <label for="mycred-rank-max"><?php echo $mycred->template_tags_general( __( 'Maximum %plural% to be included in this rank', 'mycred' ) ); ?>:</label>
1207
  <input type="text" name="mycred_rank[max]" id="mycred-rank-max" value="<?php echo $max; ?>" />
1208
  </p>
1209
+
1210
  <?php if ( count( $this->point_types ) > 1 ) : ?>
1211
+
1212
  <p>
1213
  <label for="mycred-rank-point-type"><?php _e( 'Point Type', 'mycred' ); ?></label>
1214
  <?php mycred_types_select_from_dropdown( 'mycred_rank[ctype]', 'mycred-rank-point-type', $type ); ?>
1215
  </p>
1216
+
1217
  <?php else : ?>
1218
+
1219
  <input type="hidden" name="mycred_rank[ctype]" value="mycred_default" />
1220
+
1221
  <?php endif; ?>
1222
 
1223
  <?php do_action( 'mycred_rank_after_req', $post, $this->core ); ?>
1300
  /**
1301
  * Add to General Settings
1302
  * @since 1.1
1303
+ * @version 1.3.1
1304
  */
1305
  public function after_general_settings( $mycred = NULL ) {
1306
 
1333
  <li>
1334
  <label><input type="checkbox" value="1" checked="checked" disabled="disabled" /> <?php _e( 'Title', 'mycred' ); ?></label><br />
1335
  <label><input type="checkbox" value="1" checked="checked" disabled="disabled" /> <?php echo $mycred->core->template_tags_general( __( '%plural% requirement', 'mycred' ) ); ?></label><br />
1336
+ <label><input type="checkbox" value="1" checked="checked" disabled="disabled" /> <?php _e( 'Rank Logo', 'mycred' ); ?></label><br />
1337
 
1338
  <label for="<?php echo $this->field_id( array( 'support' => 'content' ) ); ?>"><input type="checkbox" name="<?php echo $this->field_name( array( 'support' => 'content' ) ); ?>" id="<?php echo $this->field_id( array( 'support' => 'content' ) ); ?>" <?php checked( $prefs['support']['content'], 1 ); ?> value="1" /> <?php _e( 'Content', 'mycred' ); ?></label><br />
1339
 
1577
  $new_data['rank']['support']['page-attributes'] = ( isset( $data['rank']['support']['page-attributes'] ) ) ? true : false;
1578
  $new_data['rank']['support']['custom-fields'] = ( isset( $data['rank']['support']['custom-fields'] ) ) ? true : false;
1579
 
1580
+ $new_data['rank']['base'] = sanitize_text_field( $data['rank']['base'] );
1581
+ $new_data['rank']['public'] = ( isset( $data['rank']['public'] ) ) ? true : false;
1582
+ $new_data['rank']['slug'] = sanitize_text_field( $data['rank']['slug'] );
1583
+ $new_data['rank']['order'] = sanitize_text_field( $data['rank']['order'] );
1584
 
1585
  $allowed_tags = $this->core->allowed_html_tags();
1586
+ $new_data['rank']['bb_location'] = sanitize_text_field( $data['rank']['bb_location'] );
1587
+ $new_data['rank']['bb_template'] = wp_kses( $data['rank']['bb_template'], $allowed_tags );
1588
+ $new_data['rank']['bp_location'] = sanitize_text_field( $data['rank']['bp_location'] );
1589
+ $new_data['rank']['bp_template'] = wp_kses( $data['rank']['bp_template'], $allowed_tags );
1590
 
1591
  return $new_data;
1592
 
1613
  $rank_meta_key .= $mycred->mycred_type;
1614
 
1615
  ?>
 
1616
  <label class="subheader"><?php _e( 'Ranks', 'mycred' ); ?></label>
1617
  <ol id="myCRED-rank-actions" class="inline">
1618
  <li>
1638
  $rank->load();
1639
 
1640
  endif;
1641
+
1642
  ?>
addons/sell-content/myCRED-addon-sell-content.php CHANGED
@@ -2,12 +2,11 @@
2
  /**
3
  * Addon: Sell Content
4
  * Addon URI: http://mycred.me/add-ons/sell-content/
5
- * Version: 1.4
6
  * Description: This add-on allows you to sell posts, pages or any public post types on your website. You can either sell the entire content or using our shortcode, sell parts of your content allowing you to offer "teasers".
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
9
  */
10
-
11
  if ( ! defined( 'myCRED_VERSION' ) ) exit;
12
 
13
  define( 'myCRED_SELL', __FILE__ );
@@ -18,13 +17,14 @@ define( 'myCRED_SELL_VERSION', myCRED_VERSION . '.1' );
18
  * @since 0.1
19
  * @version 1.2
20
  */
21
- if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
22
  class myCRED_Sell_Content_Module extends myCRED_Module {
23
 
24
  /**
25
  * Construct
26
  */
27
  function __construct() {
 
28
  parent::__construct( 'myCRED_Sell_Content_Module', array(
29
  'module_name' => 'sell_content',
30
  'register' => false,
@@ -57,11 +57,12 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
57
  $this->mycred_type = 'mycred_default';
58
  if ( isset( $this->sell_content['type'] ) )
59
  $this->mycred_type = $this->sell_content['type'];
60
-
61
  $this->core = mycred( $this->mycred_type );
62
 
63
  add_filter( 'mycred_get_email_events', array( $this, 'email_notice_instance' ), 10, 2 );
64
  add_filter( 'mycred_email_before_send', array( $this, 'email_notices' ), 10, 2 );
 
65
  }
66
 
67
  /**
@@ -70,27 +71,29 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
70
  * @version 1.2
71
  */
72
  public function module_init() {
 
73
  $this->make_purchase();
74
  $this->exp_title = apply_filters( 'mycred_sell_exp_title', __( 'Hours', 'mycred' ) );
75
 
76
- add_filter( 'the_content', array( $this, 'the_content' ), 30 );
77
-
78
  add_shortcode( 'mycred_sell_this', array( $this, 'render_shortcode' ) );
79
  add_shortcode( 'mycred_sell_this_ajax', array( $this, 'render_ajax_shortcode' ) );
80
  add_shortcode( 'mycred_sales_history', array( $this, 'render_sales_history' ) );
81
  add_shortcode( 'mycred_content_sale_count', array( $this, 'render_no_of_sales' ) );
82
 
83
- add_action( 'add_meta_boxes', array( $this, 'add_metabox' ) );
84
- add_action( 'save_post', array( $this, 'save_metabox' ) );
85
-
86
- add_action( 'mycred_admin_enqueue', array( $this, 'admin_enqueue' ) );
87
- add_action( 'mycred_front_enqueue', array( $this, 'front_enqueue' ) );
88
- add_action( 'wp_footer', array( $this, 'footer' ) );
89
- add_action( 'wp_ajax_mycred-buy-content', array( $this, 'make_purchase_ajax' ) );
90
-
91
- add_action( 'mycred_edit_profile', array( $this, 'user_level_profit_shares' ), 20, 2 );
92
- add_action( 'mycred_edit_profile_action', array( $this, 'save_user_override' ) );
93
- add_action( 'mycred_admin_notices', array( $this, 'update_profile_notice' ) );
 
94
  }
95
 
96
  /**
@@ -99,12 +102,12 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
99
  * @version 1.0
100
  */
101
  function user_level_profit_shares( $user, $type ) {
 
102
  if ( $this->sell_content['pay'] != 'author' || $this->sell_content['type'] != $type ) return;
103
-
104
  $users_share = mycred_get_user_meta( $user->ID, 'mycred_sell_content_share_' . $type, '', true );
105
 
106
  ?>
107
-
108
  <h3>Sell Content</h3>
109
  <table class="form-table">
110
  <tr>
@@ -120,6 +123,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
120
  </tr>
121
  </table>
122
  <?php
 
123
  }
124
 
125
  /**
@@ -131,23 +135,29 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
131
 
132
  if ( isset( $_POST['mycred_adjust_users_profitshare_run'] ) && isset( $_POST['mycred_adjust_users_profitshare'] ) ) {
133
 
134
- $ctype = sanitize_key( $_GET['ctype'] );
135
  $user_id = absint( $_GET['user_id'] );
 
136
 
137
- $share = $_POST['mycred_adjust_users_profitshare']['share'];
138
  if ( $share != '' ) {
 
139
  if ( isfloat( $share ) )
140
  $share = (float) $share;
141
  else
142
  $share = (int) $share;
143
 
144
  mycred_update_user_meta( $user_id, 'mycred_sell_content_share_' . $ctype, '', $share );
 
145
  }
 
146
  else {
 
147
  mycred_delete_user_meta( $user_id, 'mycred_sell_content_share_' . $ctype );
 
148
  }
149
 
150
  wp_safe_redirect( add_query_arg( array( 'result' => 'sell_content_share' ) ) );
 
151
  exit;
152
 
153
  }
@@ -172,6 +182,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
172
  * @version 1.3.1
173
  */
174
  public function make_purchase() {
 
175
  global $mycred_content_purchase;
176
 
177
  $mycred_content_purchase = false;
@@ -179,19 +190,20 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
179
  if ( ! isset( $_POST['mycred_purchase_token'] ) || ! isset( $_POST['mycred_purchase'] ) || ! isset( $_POST['mycred_purchase']['mst_action'] ) || ! isset( $_POST['mycred_purchase']['mst_author'] ) || ! isset( $_POST['mycred_purchase']['mst_post_id'] ) || ! isset( $_POST['mycred_purchase']['mst_post_type'] ) || ! isset( $_POST['mycred_purchase']['mst_user_id'] ) ) return;
180
  if ( ! wp_verify_nonce( $_POST['mycred_purchase_token'], 'buy-content' ) ) return;
181
 
182
- $action = sanitize_key( $_POST['mycred_purchase']['mst_action'] );
183
- $post_id = absint( $_POST['mycred_purchase']['mst_post_id'] );
184
- $post_type = sanitize_key( $_POST['mycred_purchase']['mst_post_type'] );
185
- $user_id = absint( $_POST['mycred_purchase']['mst_user_id'] );
186
- $author = absint( $_POST['mycred_purchase']['mst_author'] );
187
 
188
  $sell_content = $this->sell_content;
189
- $prefs = $this->get_sale_prefs( $post_id );
190
 
191
  $request = compact( 'action', 'post_id', 'user_id', 'author', 'post_type', 'sell_content', 'prefs' );
192
  do_action( 'mycred_sell_content_purchase_request', $request );
193
 
194
  if ( is_user_logged_in() && ! $this->user_paid( $user_id, $post_id ) && $this->user_can_buy( $user_id, $prefs['price'] ) ) {
 
195
  // Charge
196
  $this->core->add_creds(
197
  'buy_content',
@@ -225,7 +237,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
225
  $payout = ( $users_share / 100 ) * $prefs['price'];
226
 
227
  $this->core->add_creds(
228
- 'buy_content',
229
  $author,
230
  $payout,
231
  $sell_content['logs']['sell'],
@@ -241,7 +253,9 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
241
 
242
  $mycred_content_purchase = true;
243
  do_action( 'mycred_sell_content_payment_complete', $request );
 
244
  }
 
245
  }
246
 
247
  /**
@@ -250,21 +264,22 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
250
  * @version 1.3
251
  */
252
  public function make_purchase_ajax() {
 
253
  // We must be logged in
254
- if ( ! is_user_logged_in() ) die();
255
 
256
  // Security
257
  check_ajax_referer( 'mycred-buy-content-ajax', 'token' );
258
 
259
  // Prep
260
- $post_id = $_POST['postid'];
261
- $user_id = get_current_user_id();
262
- $action = 'buy-content-ajax';
263
-
264
  $sell_content = $this->sell_content;
265
- $prefs = $this->get_sale_prefs( $post_id );
266
 
267
  if ( ! $this->user_paid( $user_id, $post_id ) && $this->user_can_buy( $user_id, $prefs['price'] ) ) {
 
268
  $post = get_post( $post_id );
269
 
270
  // Charge
@@ -287,6 +302,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
287
 
288
  // Pay
289
  if ( $sell_content['pay'] == 'author' ) {
 
290
  // Check if author has a custom share
291
  $users_share = mycred_get_user_meta( $post->post_author, 'mycred_sell_content_share_' . $this->mycred_type, '', true );
292
  if ( $users_share == '' )
@@ -300,7 +316,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
300
  $payout = ( $users_share / 100 ) * $prefs['price'];
301
 
302
  $this->core->add_creds(
303
- 'buy_content',
304
  $post->post_author,
305
  $payout,
306
  $sell_content['logs']['sell'],
@@ -312,6 +328,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
312
  ),
313
  $this->mycred_type
314
  );
 
315
  }
316
 
317
  // $match[1] = start tag, $match[2] = settings, $match[3] = content, $match[4] = end tag
@@ -321,13 +338,18 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
321
  $content = apply_filters( 'the_content', $match[3] );
322
  $content = str_replace( ']]>', ']]&gt;', $content );
323
  $content = do_shortcode( $content );
 
324
  }
 
325
  // Someone is trying to make a purchase but not allowed
326
  else {
 
327
  $content = '<p>' . __( 'You can not buy this content.', 'mycred' ) . '</p>';
 
328
  }
329
 
330
  die( $content );
 
331
  }
332
 
333
  /**
@@ -343,6 +365,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
343
  * @version 1.0
344
  */
345
  public function front_enqueue() {
 
346
  global $mycred_buy_content;
347
 
348
  wp_register_script(
@@ -352,6 +375,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
352
  myCRED_SELL_VERSION . '.1',
353
  true
354
  );
 
355
  }
356
 
357
  /**
@@ -360,9 +384,11 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
360
  * @version 1.0
361
  */
362
  public function footer() {
 
363
  global $mycred_buy_content;
364
 
365
  if ( $mycred_buy_content === true ) {
 
366
  wp_localize_script(
367
  'mycred-buy-content',
368
  'myCREDsell',
@@ -373,8 +399,11 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
373
  'token' => wp_create_nonce( 'mycred-buy-content-ajax' )
374
  )
375
  );
 
376
  wp_enqueue_script( 'mycred-buy-content' );
 
377
  }
 
378
  }
379
 
380
  /**
@@ -383,21 +412,21 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
383
  * @version 1.3
384
  */
385
  public function after_general_settings( $mycred = NULL ) {
 
386
  $sell_content = $this->sell_content;
387
  if ( ! isset( $sell_content['defaults']['expire'] ) )
388
  $sell_content['defaults']['expire'] = 0;
389
 
390
  $before = $this->core->before;
391
- $after = $this->core->after;
392
-
393
  $payees = array(
394
  'none' => __( 'No Payout. Just charge.' ),
395
  'author' => __( 'Pay Content Author.' )
396
  );
 
397
  $available_payees = apply_filters( 'mycred_sell_content_payees', $payees, $sell_content );
398
-
399
- ?>
400
 
 
401
  <h4><div class="icon icon-active"></div><?php _e( 'Sell Content', 'mycred' ); ?></h4>
402
  <div class="body" style="display:none;">
403
  <label class="subheader" for="<?php echo $this->field_id( 'post_types' ); ?>"><?php _e( 'Post Types', 'mycred' ); ?></label>
@@ -407,42 +436,54 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
407
  <span class="description"><?php _e( 'Comma separated list of post types that can be sold.', 'mycred' ); ?></span>
408
  </li>
409
  </ol>
 
410
  <?php if ( count( $this->point_types ) > 1 ) : ?>
 
411
  <label class="subheader" for="<?php echo $this->field_id( 'type' ); ?>"><?php _e( 'Point Type', 'mycred' ); ?></label>
412
  <ol id="myCRED-buy-point-type">
413
  <li>
 
414
  <?php mycred_types_select_from_dropdown( $this->field_name( 'type' ), $this->field_name( 'type' ), $sell_content['type'] ); ?>
415
 
416
  </li>
417
  </ol>
 
418
  <?php else : ?>
419
 
420
  <input type="hidden" name="<?php echo $this->field_name( 'type' ); ?>" id="<?php echo $this->field_name( 'type' ); ?>" value="mycred_default" />
 
421
  <?php endif; ?>
422
 
423
  <label class="subheader"><?php _e( 'Payments', 'mycred' ); ?></label>
424
  <ol id="myCRED-buy-payments">
425
  <?php
 
426
  if ( ! empty( $available_payees ) ) {
427
- foreach ( $available_payees as $key => $description ) { ?>
428
 
 
429
  <li>
430
  <input type="radio" name="<?php echo $this->field_name( 'pay' ); ?>" id="<?php echo $this->field_id( array( 'pay' => $key ) ); ?>" <?php checked( $sell_content['pay'], $key ); ?> value="<?php echo $key; ?>" />
431
  <label for="<?php echo $this->field_id( array( 'pay' => $key ) ); ?>"><?php echo $description; ?></label>
432
  </li>
433
  <?php
434
- if ( $key == 'author' ) { ?>
435
 
 
 
 
436
  <li>
437
  <label for="<?php echo $this->field_id( 'pay_percent' ); ?>"><?php _e( 'Percentage to pay Author', 'mycred' ); ?></label>
438
  <div class="h2"><input type="text" size="5" maxlength="3" name="<?php echo $this->field_name( 'pay_percent' ); ?>" id="<?php echo $this->field_id( 'pay_percent' ); ?>" value="<?php echo $sell_content['pay_percent']; ?>" /> %</div>
439
  <span class="description"><?php _e( 'Percentage of the price to pay the author. Can not be zero and is ignored if authors are not paid.', 'mycred' ); ?></span>
440
  </li>
441
  <?php
 
442
  }
 
443
  }
444
- } ?>
445
 
 
446
  </ol>
447
  <label class="subheader"><?php _e( 'Defaults', 'mycred' ); ?></label>
448
  <ol id="myCRED-buy-defaults">
@@ -476,7 +517,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
476
  <p><strong><?php _e( 'For Visitors', 'mycred' ); ?></strong></p>
477
  <?php
478
 
479
- $id = str_replace( '-', '', $this->field_id( array( 'templates' => 'visitors' ) ) );
480
  wp_editor( $sell_content['templates']['visitors'], $id, array(
481
  'textarea_name' => $this->field_name( array( 'templates' => 'visitors' ) ),
482
  'textarea_rows' => 6
@@ -484,14 +525,16 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
484
 
485
  ?>
486
  <span class="description"><?php _e( 'Do <strong>not</strong> use the %buy_button% in this template as a user must be logged in to buy content!', 'mycred' ); ?><br />
 
487
  <?php echo $this->core->available_template_tags( array( 'general', 'post' ), '%price%' ); ?></span>
 
488
  </li>
489
  <li class="empty">&nbsp;</li>
490
  <li>
491
  <p><strong><?php _e( 'For Members', 'mycred' ); ?></strong></p>
492
  <?php
493
 
494
- $id = str_replace( '-', '', $this->field_id( array( 'templates' => 'members' ) ) );
495
  wp_editor( $sell_content['templates']['members'], $id, array(
496
  'textarea_name' => $this->field_name( array( 'templates' => 'members' ) ),
497
  'textarea_rows' => 6
@@ -506,7 +549,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
506
  <p><strong><?php _e( 'For members that can not afford to buy', 'mycred' ); ?></strong></p>
507
  <?php
508
 
509
- $id = str_replace( '-', '', $this->field_id( array( 'templates' => 'cantafford' ) ) );
510
  wp_editor( $sell_content['templates']['cantafford'], $id, array(
511
  'textarea_name' => $this->field_name( array( 'templates' => 'cantafford' ) ),
512
  'textarea_rows' => 6
@@ -533,6 +576,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
533
  </ol>
534
  </div>
535
  <?php
 
536
  }
537
 
538
  /**
@@ -541,32 +585,34 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
541
  * @version 1.3
542
  */
543
  public function sanitize_extra_settings( $new_data, $data, $general ) {
 
544
  // Post Types
545
  $settings = $data['sell_content'];
546
 
547
- $new_data['sell_content']['post_types'] = sanitize_text_field( $settings['post_types'] );
548
- $new_data['sell_content']['type'] = sanitize_text_field( $settings['type'] );
549
- $new_data['sell_content']['pay'] = sanitize_text_field( $settings['pay'] );
550
- $new_data['sell_content']['pay_percent'] = abs( $settings['pay_percent'] );
 
551
  if ( $new_data['sell_content']['pay_percent'] == 0 || $new_data['sell_content']['pay_percent'] > 100 )
552
  $new_data['sell_content']['pay_percent'] = 100;
553
 
554
- $new_data['sell_content']['defaults']['price'] = $this->core->format_number( $settings['defaults']['price'] );
555
- $new_data['sell_content']['defaults']['overwrite_price'] = ( isset( $settings['defaults']['overwrite_price'] ) ) ? 1 : 0;
556
- $new_data['sell_content']['defaults']['button_label'] = sanitize_text_field( $settings['defaults']['button_label'] );
557
  $new_data['sell_content']['defaults']['overwrite_buttonlabel'] = ( isset( $settings['defaults']['overwrite_buttonlabel'] ) ) ? 1 : 0;
558
- $new_data['sell_content']['defaults']['expire'] = abs( $settings['defaults']['expire'] );
559
 
560
  $allowed_tags = $this->core->allowed_html_tags();
561
- $new_data['sell_content']['templates']['members'] = wp_kses( $settings['templates']['members'], $allowed_tags );
562
- $new_data['sell_content']['templates']['visitors'] = wp_kses( $settings['templates']['visitors'], $allowed_tags );
563
- $new_data['sell_content']['templates']['cantafford'] = wp_kses( $settings['templates']['cantafford'], $allowed_tags );
564
 
565
- $new_data['sell_content']['logs']['buy'] = sanitize_text_field( $settings['logs']['buy'] );
566
- $new_data['sell_content']['logs']['sell'] = sanitize_text_field( $settings['logs']['sell'] );
567
 
568
- unset( $settings );
569
  return $new_data;
 
570
  }
571
 
572
  /**
@@ -575,11 +621,14 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
575
  * @version 1.0.1
576
  */
577
  public function add_metabox() {
 
578
  $sell_content = $this->sell_content;
579
- $post_types = explode( ',', $sell_content['post_types'] );
580
- $name = sprintf( __( '%s Sell This', 'mycred' ), mycred_label() );
581
- $name = apply_filters( 'mycred_sell_this_label', $name, $this );
 
582
  foreach ( (array) $post_types as $post_type ) {
 
583
  $post_type = trim( $post_type );
584
  add_meta_box(
585
  'mycred_sell_content',
@@ -589,7 +638,9 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
589
  'side',
590
  'high'
591
  );
 
592
  }
 
593
  }
594
 
595
  /**
@@ -601,27 +652,33 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
601
  * @version 1.1
602
  */
603
  public function get_sale_prefs( $post_id ) {
 
604
  $sell_content = $this->sell_content;
605
  if ( ! isset( $sell_content['defaults']['expire'] ) )
606
  $sell_content['defaults']['expire'] = 0;
607
 
608
  $prefs = get_post_meta( $post_id, 'myCRED_sell_content', true );
609
  if ( $prefs == '' ) {
 
610
  $sales_data = array(
611
  'status' => 'disabled',
612
  'price' => $sell_content['defaults']['price'],
613
  'button_label' => $sell_content['defaults']['button_label'],
614
  'expire' => $sell_content['defaults']['expire']
615
  );
 
616
  }
617
  else {
 
618
  if ( ! isset( $prefs['expire'] ) )
619
  $prefs['expire'] = $sell_content['defaults']['expire'];
620
 
621
  $sales_data = $prefs;
 
622
  }
623
 
624
  return apply_filters( 'mycred_sell_content_post_prefs', $sales_data, $post_id, $this );
 
625
  }
626
 
627
  /**
@@ -630,22 +687,26 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
630
  * @version 1.2
631
  */
632
  public function metabox( $post ) {
 
633
  // Make sure add-on has been setup
634
  if ( ! $this->is_installed() ) {
 
635
  echo sprintf( __( '%s Sell Content needs to be setup before you can use this feature.', 'mycred' ), mycred_label() );
 
636
  // Settings Link
637
  if ( $this->core->can_edit_plugin( get_current_user_id() ) )
638
  echo ' <a href="' . $this->get_settings_url( 'sell_content_module' ) . '" title="' . __( 'Setup add-on', 'mycred' ) . '">' . __( 'Lets do it', 'mycred' ) . '</a>';
639
 
640
  return;
 
641
  }
642
- $admin = false;
643
- $post_id = $post->ID;
644
- $post_type = $post->post_type;
645
 
646
- $user_id = get_current_user_id();
 
 
 
647
  $sell_content = $this->sell_content;
648
- $sales_data = $this->get_sale_prefs( $post_id );
649
 
650
  // Mark admins
651
  if ( $this->core->can_edit_plugin( $user_id ) )
@@ -656,14 +717,16 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
656
  $style = 'display:none;';
657
  $status = 'disabled';
658
  }
 
659
  else {
660
  $style = 'display:block;';
661
  $status = 'enabled';
662
  }
663
 
664
  $op = (bool) $sell_content['defaults']['overwrite_price'];
665
- $ob = (bool) $sell_content['defaults']['overwrite_buttonlabel']; ?>
666
 
 
667
  <style type="text/css">
668
  #mycred_sell_content .inside { margin: 0; padding: 0; }
669
  #mycred_sell_content .inside p { padding: 0 12px; }
@@ -701,6 +764,7 @@ jQuery(function($) {
701
  });
702
  </script>
703
  <?php
 
704
  }
705
 
706
  /**
@@ -709,11 +773,12 @@ jQuery(function($) {
709
  * @version 1.0
710
  */
711
  public function save_metabox( $post_id ) {
 
712
  // Make sure sale is enabled
713
- if ( ! isset( $_POST['mycred-sell-this-status'] ) || ! isset( $_POST['mycred-sell-this-token'] ) ) return $post_id;
714
 
715
  // Verify token
716
- if ( wp_verify_nonce( $_POST['mycred-sell-this-token'], 'mycred-sell-this' ) === false ) return $post_id;
717
 
718
  // Status
719
  if ( ! isset( $_POST['mycred_sell_this'] ) )
@@ -723,25 +788,26 @@ jQuery(function($) {
723
 
724
  $prefs = get_post_meta( $post_id, 'myCRED_sell_content', true );
725
  // If sale has never been set and is not enabled bail
726
- if ( empty( $prefs ) && $status == 'disabled' ) return $post_id;
727
 
728
- $sell_content = $this->sell_content;
729
- $is_admin = $this->core->can_edit_plugin();
730
 
731
  // Status
732
- $prefs['status'] = $status;
733
 
734
  // Prefs
735
- $op = (bool) $sell_content['defaults']['overwrite_price'];
736
- $prefs['price'] = ( $op === true || $is_admin === true ) ? $_POST['myCRED_sell_content']['price'] : $sell_content['defaults']['price'];
737
 
738
- $ob = (bool) $sell_content['defaults']['overwrite_buttonlabel'];
739
  $prefs['button_label'] = ( $ob === true || $is_admin === true ) ? $_POST['myCRED_sell_content']['button_label'] : $sell_content['defaults']['button_label'];
740
 
741
  // Expiration
742
- $prefs['expire'] = ( $is_admin === true ) ? abs( $_POST['myCRED_sell_content']['expire'] ) : $sell_content['defaults']['expire'];
743
 
744
  update_post_meta( $post_id, 'myCRED_sell_content', $prefs );
 
745
  }
746
 
747
  /**
@@ -751,8 +817,11 @@ jQuery(function($) {
751
  * @version 1.0
752
  */
753
  public function get_post_ID() {
 
754
  $post_id = $bbp_topic_id = $bbp_reply_id = 0;
 
755
  if ( function_exists( 'bbpress' ) ) {
 
756
  global $wp_query;
757
 
758
  $bbp = bbpress();
@@ -806,31 +875,33 @@ jQuery(function($) {
806
  $post_id = $GLOBALS['post']->ID;
807
 
808
  return apply_filters( 'mycred_sell_this_get_post_ID', $post_id, $this );
 
809
  }
810
 
811
  /**
812
  * For Sale
813
  * Checks if a given post is for sale.
814
- *
815
  * @param $post_id (int) required post id
816
  * @returns (bool) true or false
817
  * @since 0.1
818
  * @version 1.1
819
  */
820
  public function for_sale( $post_id ) {
 
821
  $prefs = get_post_meta( $post_id, 'myCRED_sell_content', true );
822
  $reply = false;
 
823
  if ( ! empty( $prefs ) && isset( $prefs['status'] ) && $prefs['status'] == 'enabled' )
824
  $reply = true;
825
 
826
  return apply_filters( 'mycred_is_content_for_sale', $reply, $post_id );
 
827
  }
828
 
829
  /**
830
  * User Paid
831
  * Checks if a given user has paid for a specific post.
832
  * Will return true if the user can edit this plugin or creds.
833
- *
834
  * @param $user_id (int) required user id
835
  * @param $post_id (int) required post id
836
  * @returns (bool) true or false
@@ -838,29 +909,30 @@ jQuery(function($) {
838
  * @version 1.3.2
839
  */
840
  public function user_paid( $user_id, $post_id ) {
 
841
  // Admins can view
842
  if ( $this->core->can_edit_plugin( $user_id ) || $this->core->can_edit_creds( $user_id ) ) return true;
 
843
  // Authors can view
844
  $the_post = get_post( $post_id );
845
  if ( ! isset( $the_post->post_author ) || $the_post->post_author == $user_id ) return true;
846
 
847
  global $wpdb;
848
-
849
  $sell_content = $this->sell_content;
850
 
851
- // Search for the latest purchase of this item.
852
- $sql = "
853
  SELECT *
854
  FROM {$this->core->log_table}
855
  WHERE user_id = %d
856
  AND ref = %s
857
  AND ref_id = %d
858
  AND ctype = %s
859
- ORDER BY time DESC LIMIT 0,1;";
860
- $purchases = $wpdb->get_results( $wpdb->prepare( $sql, $user_id, 'buy_content', $post_id, $this->mycred_type ) );
861
 
862
  // We have found purchase records
863
  if ( ! empty( $purchases ) ) {
 
864
  // Since individual posts can override the default settings we need to check sales prefs
865
  $prefs = $this->get_sale_prefs( $post_id );
866
  if ( ! isset( $prefs['expire'] ) )
@@ -871,17 +943,18 @@ jQuery(function($) {
871
 
872
  // Check if purchase has expired
873
  if ( ! $this->purchase_has_expired( $purchases[0]->time, $prefs['expire'], $user_id, $post_id ) ) return true;
 
874
  }
875
 
876
  // All else there are no purchases
877
  return apply_filters( 'mycred_user_has_paid_for_content', false, $user_id, $post_id );
 
878
  }
879
 
880
  /**
881
  * Purchase Has Expired
882
  * Makes a time comparison to check if a given timestamp is in the future (not expired) or
883
  * in the past (expired).
884
- *
885
  * @param $timestamp (int) The UNIX timestamp to wich we apply the expiration check
886
  * @param $length (int) Length of expiration time to check by default this is the number of hours.
887
  * @filter 'mycred_sell_expire_calc'
@@ -890,20 +963,21 @@ jQuery(function($) {
890
  * @version 1.0
891
  */
892
  public function purchase_has_expired( $timestamp, $length = 0, $user_id, $post_id ) {
 
893
  if ( $length == 0 ) return false;
894
 
895
  $expiration = apply_filters( 'mycred_sell_expire_calc', abs( $length*3600 ), $length, $user_id, $post_id );
896
  $expiration = $expiration+$timestamp;
897
 
898
  if ( $expiration > date_i18n( 'U' ) ) return false;
899
-
900
  return true;
 
901
  }
902
 
903
  /**
904
  * User Can Buy
905
  * Checks if a given user can afford the given price.
906
- *
907
  * @param $user_id (int) required user id
908
  * @param $price (int|float) required price to check
909
  * @returns (bool) true or false
@@ -911,16 +985,19 @@ jQuery(function($) {
911
  * @version 1.0
912
  */
913
  public function user_can_buy( $user_id, $price ) {
 
914
  $balance = $this->core->get_users_cred( $user_id, $this->mycred_type );
 
915
  if ( $balance-$price < 0 ) return false;
 
916
  return true;
 
917
  }
918
 
919
  /**
920
  * Get Button
921
  * Replaces the %buy_button% template tag with the submit button along
922
  * with the set button label. If no template tag is found one is inserted in the end of the given string.
923
- *
924
  * @param $text (string) text to check for template tag.
925
  * @param $post (object) optional post object to allow post template tags.
926
  * @returns (string) formated string.
@@ -928,8 +1005,9 @@ jQuery(function($) {
928
  * @version 1.1
929
  */
930
  public function get_button( $text, $post ) {
 
931
  $sell_content = $this->sell_content;
932
- $prefs = $this->get_sale_prefs( $post->ID );
933
 
934
  // Button Label
935
  if ( isset( $prefs['button_label'] ) )
@@ -947,50 +1025,55 @@ jQuery(function($) {
947
  $content = str_replace( '%buy_button%', $button, $text );
948
 
949
  return apply_filters( 'mycred_sell_this_button', $content, $post );
 
950
  }
951
 
952
  /**
953
  * The Content Overwrite
954
  * If the current post is set for sale we apply the appropirate template.
955
  * Uses 3 different templates. a) Visitors Template b) Members Template and c) Cant Afford Template
956
- *
957
  * @returns (string) content
958
  * @since 0.1
959
  * @version 1.1.1
960
  */
961
  public function the_content( $content ) {
 
962
  global $mycred_content_purchase;
963
 
964
- $post_id = $this->get_post_ID();
965
  $the_post = get_post( $post_id );
966
 
967
  // If content is for sale
968
  if ( $this->for_sale( $post_id ) ) {
 
969
  // Prep
970
- $user_id = get_current_user_id();
971
  $sell_content = $this->sell_content;
972
- $prefs = $this->get_sale_prefs( $post_id );
973
 
974
  // Visitors
975
  if ( ! is_user_logged_in() ) {
 
976
  $template = $sell_content['templates']['visitors'];
977
-
978
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
979
  $template = $this->core->template_tags_general( $template );
980
  $template = $this->core->template_tags_post( $template, $the_post );
 
981
  return '<div class="mycred-content-forsale">' . $template . '</div>';
 
982
  }
983
 
984
  // We are logged in, have not purchased this item and can make a purchase
985
  elseif ( is_user_logged_in() && ! $this->user_paid( $user_id, $post_id ) && $this->user_can_buy( $user_id, $prefs['price'] ) ) {
986
- $template = $sell_content['templates']['members'];
987
 
 
988
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
989
  $template = $this->core->template_tags_general( $template );
990
  $template = $this->core->template_tags_post( $template, $the_post );
991
  $template = $this->get_button( $template, $the_post );
 
992
  return '
993
- <form action="" method="post">
994
  <input type="hidden" name="mycred_purchase[mst_post_id]" value="' . $post_id . '" />
995
  <input type="hidden" name="mycred_purchase[mst_post_type]" value="' . $the_post->post_type . '" />
996
  <input type="hidden" name="mycred_purchase[mst_user_id]" value="' . get_current_user_id() . '" />
@@ -999,44 +1082,52 @@ jQuery(function($) {
999
  <input type="hidden" name="mycred_purchase[mst_action]" value="buy" />
1000
  <div class="mycred-content-forsale">' . $template . '</div>
1001
  </form>';
 
1002
  }
 
1003
  // We are logged in, have not purchased this item and can not afford to buy this
1004
  elseif ( is_user_logged_in() && ! $this->user_paid( $user_id, $post_id ) && ! $this->user_can_buy( $user_id, $prefs['price'] ) ) {
1005
- $template = $sell_content['templates']['cantafford'];
1006
 
 
1007
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1008
  $template = $this->core->template_tags_general( $template );
1009
  $template = $this->core->template_tags_post( $template, $the_post );
 
1010
  return '<div class="mycred-content-forsale">' . $template . '</div>';
 
1011
  }
 
1012
  }
1013
 
1014
  // Mark purchases
1015
  if ( $mycred_content_purchase === true ) {
 
1016
  $thank_you = __( 'Thank you for your purchase!', 'mycred' );
1017
- $wrapper = '<div id="mycred-thank-you"><p>' . $thank_you . '</p></div>';
1018
- $content = $wrapper . $content;
 
1019
  }
1020
 
1021
  return do_shortcode( $content );
 
1022
  }
1023
 
1024
  /**
1025
  * Render Shortcode
1026
  * Just as protecting the entire content, the mycred_sell_this shortcode protects
1027
  * parts of the content.
1028
- *
1029
  * @returns (string) content
1030
  * @since 0.1
1031
  * @version 1.3.1
1032
  */
1033
  public function render_shortcode( $atts, $content ) {
 
1034
  // The Post
1035
- $post_id = $this->get_post_ID();
1036
  $the_post = get_post( $post_id );
1037
 
1038
  // The User
1039
- $user_id = get_current_user_id();
1040
  $sell_content = $this->sell_content;
1041
 
1042
  $prefs = shortcode_atts( array(
@@ -1044,40 +1135,44 @@ jQuery(function($) {
1044
  'button_label' => $sell_content['defaults']['button_label'],
1045
  'expire' => $sell_content['defaults']['expire']
1046
  ), $atts );
 
1047
  $sales_prefs = $this->get_sale_prefs( $post_id );
1048
 
1049
  // If we are not using defaults save these settings.
1050
  if ( ( $sales_prefs['price'] != $prefs['price'] ) || ( $sales_prefs['button_label'] != $prefs['button_label'] ) || ( $sales_prefs['expire'] != $prefs['expire'] ) ) {
 
1051
  update_post_meta( $post_id, 'myCRED_sell_content', array(
1052
  'price' => $prefs['price'],
1053
  'status' => $sales_prefs['status'],
1054
  'button_label' => $prefs['button_label'],
1055
  'expire' => $prefs['expire']
1056
  ) );
 
1057
  }
1058
 
1059
  // Not logged in
1060
  if ( ! is_user_logged_in() ) {
1061
- $template = $sell_content['templates']['visitors'];
1062
 
 
1063
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1064
  $template = $this->core->template_tags_general( $template );
1065
  $template = $this->core->template_tags_post( $template, $the_post );
1066
- unset( $content );
1067
  return '<div class="mycred-content-forsale">' . $template . '</div>';
 
1068
  }
1069
 
1070
  // Can buy
1071
  elseif ( is_user_logged_in() && ! $this->user_paid( $user_id, $post_id ) && $this->user_can_buy( $user_id, $prefs['price'] ) ) {
1072
- $template = $sell_content['templates']['members'];
1073
 
 
1074
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1075
  $template = $this->core->template_tags_general( $template );
1076
  $template = $this->core->template_tags_post( $template, $the_post );
1077
  $template = $this->get_button( $template, $the_post );
1078
- unset( $content );
1079
  return '
1080
- <form action="" method="post">
1081
  <input type="hidden" name="mycred_purchase[mst_post_id]" value="' . $post_id . '" />
1082
  <input type="hidden" name="mycred_purchase[mst_post_type]" value="' . $the_post->post_type . '" />
1083
  <input type="hidden" name="mycred_purchase[mst_user_id]" value="' . get_current_user_id() . '" />
@@ -1086,17 +1181,19 @@ jQuery(function($) {
1086
  <input type="hidden" name="mycred_purchase[mst_action]" value="buy" />
1087
  <div class="mycred-content-forsale">' . $template . '</div>
1088
  </form>';
 
1089
  }
1090
 
1091
  // We are logged in, have not purchased this item and can not afford to buy this
1092
  elseif ( is_user_logged_in() && ! $this->user_paid( $user_id, $post_id ) && ! $this->user_can_buy( $user_id, $prefs['price'] ) ) {
 
1093
  $template = $sell_content['templates']['cantafford'];
1094
-
1095
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1096
  $template = $this->core->template_tags_general( $template );
1097
  $template = $this->core->template_tags_post( $template, $the_post );
1098
- unset( $content );
1099
  return '<div class="mycred-content-forsale">' . $template . '</div>';
 
1100
  }
1101
 
1102
  // Admin and Author Wrapper for highlight of content set for sale
@@ -1104,25 +1201,25 @@ jQuery(function($) {
1104
  $content = '<div class="mycred-mark-title">' . __( 'The following content is set for sale:', 'mycred' ) . '</div><div class="mycred-mark-content">' . $content . '</div>';
1105
 
1106
  return do_shortcode( $content );
 
1107
  }
1108
-
1109
  /**
1110
  * Render Shortcode AJAX
1111
  * Just as protecting the entire content, the mycred_sell_this_ajax shortcode protects
1112
  * parts of the content and uses AJAX to make the purchase
1113
- *
1114
  * @returns (string) content
1115
  * @since 0.1
1116
  * @version 1.0.1
1117
  */
1118
  public function render_ajax_shortcode( $atts, $content ) {
 
1119
  global $mycred_buy_content;
1120
 
1121
  // The Post
1122
- $post_id = $this->get_post_ID();
1123
- $the_post = get_post( $post_id );
1124
-
1125
- $user_id = get_current_user_id();
1126
  $sell_content = $this->sell_content;
1127
 
1128
  $prefs = shortcode_atts( array(
@@ -1130,33 +1227,37 @@ jQuery(function($) {
1130
  'button_label' => $sell_content['defaults']['button_label'],
1131
  'expire' => $sell_content['defaults']['expire']
1132
  ), $atts );
 
1133
  $sales_prefs = $this->get_sale_prefs( $post_id );
1134
 
1135
  // If we are not using defaults save these settings.
1136
  if ( ( $sales_prefs['price'] != $prefs['price'] ) || ( $sales_prefs['button_label'] != $prefs['button_label'] ) || ( $sales_prefs['expire'] != $prefs['expire'] ) ) {
 
1137
  update_post_meta( $post_id, 'myCRED_sell_content', array(
1138
  'price' => $prefs['price'],
1139
  'status' => $sales_prefs['status'],
1140
  'button_label' => $prefs['button_label'],
1141
  'expire' => $prefs['expire']
1142
  ) );
 
1143
  }
1144
 
1145
  // Not logged in
1146
  if ( ! is_user_logged_in() ) {
1147
- $template = $sell_content['templates']['visitors'];
1148
 
 
1149
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1150
  $template = $this->core->template_tags_general( $template );
1151
  $template = $this->core->template_tags_post( $template, $the_post );
1152
- unset( $content );
1153
  return '<div class="mycred-content-forsale">' . $template . '</div>';
 
1154
  }
1155
 
1156
  // Can buy
1157
  elseif ( is_user_logged_in() && ! $this->user_paid( $user_id, $post_id ) && $this->user_can_buy( $user_id, $prefs['price'] ) ) {
1158
- $template = $sell_content['templates']['members'];
1159
 
 
1160
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1161
  $template = $this->core->template_tags_general( $template );
1162
  $template = $this->core->template_tags_post( $template, $the_post );
@@ -1168,21 +1269,23 @@ jQuery(function($) {
1168
 
1169
  $button = '<input type="button" data-id="' . $the_post->ID . '" name="mycred-buy-button" value="' . $this->core->template_tags_post( $button_text, $the_post ) . '" class="mycred-sell-this-button button large" />';
1170
  $template = str_replace( '%buy_button%', $button, $template );
1171
- unset( $content );
1172
 
1173
  $mycred_buy_content = true;
 
1174
  return '<div class="mycred-content-forsale">' . $template . '</div>';
 
1175
  }
1176
 
1177
  // We are logged in, have not purchased this item and can not afford to buy this
1178
  elseif ( is_user_logged_in() && ! $this->user_paid( $user_id, $post_id ) && ! $this->user_can_buy( $user_id, $prefs['price'] ) ) {
 
1179
  $template = $sell_content['templates']['cantafford'];
1180
-
1181
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1182
  $template = $this->core->template_tags_general( $template );
1183
  $template = $this->core->template_tags_post( $template, $the_post );
1184
- unset( $content );
1185
  return '<div class="mycred-content-forsale">' . $template . '</div>';
 
1186
  }
1187
 
1188
  // Admin and Author Wrapper for highlight of content set for sale
@@ -1190,8 +1293,9 @@ jQuery(function($) {
1190
  $content = '<div class="mycred-mark-title">' . __( 'The following content is set for sale:', 'mycred' ) . '</div><div class="mycred-mark-content">' . $content . '</div>';
1191
 
1192
  return do_shortcode( $content );
 
1193
  }
1194
-
1195
  /**
1196
  * Render Sales History Shortcode
1197
  * @see http://mycred.me/shortcodes/mycred_sales_history/
@@ -1199,6 +1303,7 @@ jQuery(function($) {
1199
  * @version 1.3
1200
  */
1201
  public function render_sales_history( $atts ) {
 
1202
  extract( shortcode_atts( array(
1203
  'login' => NULL,
1204
  'user_id' => NULL,
@@ -1208,13 +1313,15 @@ jQuery(function($) {
1208
  'include_date' => true,
1209
  'no_result' => __( 'No purchases found', 'mycred' )
1210
  ), $atts ) );
1211
-
1212
  // Not logged in
1213
  if ( $user_id === NULL && ! is_user_logged_in() ) {
 
1214
  if ( $login != NULL )
1215
  return '<div class="mycred-not-logged-in">' . $login . '</div>';
1216
 
1217
  return;
 
1218
  }
1219
 
1220
  // Prep
@@ -1227,11 +1334,14 @@ jQuery(function($) {
1227
 
1228
  // Title
1229
  if ( ! empty( $title ) ) {
 
1230
  if ( ! empty( $title_class ) )
1231
  $title_class = ' class="' . $title_class . '"';
 
1232
  $output .= '<' . $title_el . $title_class . '>' . $title . '</' . $title_el . '>';
 
1233
  }
1234
-
1235
  // Query
1236
  $results = $wpdb->get_results( $wpdb->prepare( "
1237
  SELECT *
@@ -1240,12 +1350,12 @@ jQuery(function($) {
1240
  AND ref = %s
1241
  AND ctype = %s
1242
  ORDER BY time;", $user_id, 'buy_content', $this->mycred_type ) );
1243
-
1244
  // Results
1245
  $rows = array();
1246
  if ( ! empty( $results ) ) {
1247
  foreach ( $results as $item ) {
1248
- // Row
1249
  $row = '<span class="item-link"><a href="' . get_permalink( $item->ref_id ) . '">' . get_the_title( $item->ref_id ) . '</a></span>';
1250
 
1251
  // Add Date to row
@@ -1254,22 +1364,27 @@ jQuery(function($) {
1254
 
1255
  // Construct row (and let others play)
1256
  $rows[] = apply_filters( 'mycred_sale_history_row', $row, $item );
 
1257
  }
 
1258
  }
1259
-
1260
  // Implode rows if there are any
1261
- if ( ! empty( $rows ) ) {
1262
  $output .= '<ul class="mycred-purchase-history"><li>' . implode( '</li><li>', $rows ) . '</li></ul>';
1263
- }
1264
  // No results
1265
  else {
 
1266
  if ( ! empty( $no_result ) )
1267
  $output .= '<p>' . $no_result . '</p>';
 
1268
  }
1269
 
1270
  $output .= '</div>';
1271
 
1272
  return $output;
 
1273
  }
1274
 
1275
  /**
@@ -1299,6 +1414,7 @@ jQuery(function($) {
1299
  $total = 0;
1300
 
1301
  return apply_filters( 'mycred_content_sales_count', $total, $post_id );
 
1302
  }
1303
 
1304
  /**
@@ -1325,14 +1441,21 @@ jQuery(function($) {
1325
  * @version 1.0
1326
  */
1327
  public function email_notices( $data ) {
 
1328
  if ( $data['request']['ref'] == 'buy_content' ) {
1329
  $message = $data['message'];
1330
  $data['message'] = $this->core->template_tags_post( $message, $data['request']['ref_id'] );
1331
  }
 
1332
  return $data;
 
1333
  }
 
1334
  }
 
1335
  $sell_content = new myCRED_Sell_Content_Module();
1336
  $sell_content->load();
1337
- }
 
 
1338
  ?>
2
  /**
3
  * Addon: Sell Content
4
  * Addon URI: http://mycred.me/add-ons/sell-content/
5
+ * Version: 1.4.1
6
  * Description: This add-on allows you to sell posts, pages or any public post types on your website. You can either sell the entire content or using our shortcode, sell parts of your content allowing you to offer "teasers".
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
9
  */
 
10
  if ( ! defined( 'myCRED_VERSION' ) ) exit;
11
 
12
  define( 'myCRED_SELL', __FILE__ );
17
  * @since 0.1
18
  * @version 1.2
19
  */
20
+ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) :
21
  class myCRED_Sell_Content_Module extends myCRED_Module {
22
 
23
  /**
24
  * Construct
25
  */
26
  function __construct() {
27
+
28
  parent::__construct( 'myCRED_Sell_Content_Module', array(
29
  'module_name' => 'sell_content',
30
  'register' => false,
57
  $this->mycred_type = 'mycred_default';
58
  if ( isset( $this->sell_content['type'] ) )
59
  $this->mycred_type = $this->sell_content['type'];
60
+
61
  $this->core = mycred( $this->mycred_type );
62
 
63
  add_filter( 'mycred_get_email_events', array( $this, 'email_notice_instance' ), 10, 2 );
64
  add_filter( 'mycred_email_before_send', array( $this, 'email_notices' ), 10, 2 );
65
+
66
  }
67
 
68
  /**
71
  * @version 1.2
72
  */
73
  public function module_init() {
74
+
75
  $this->make_purchase();
76
  $this->exp_title = apply_filters( 'mycred_sell_exp_title', __( 'Hours', 'mycred' ) );
77
 
78
+ add_filter( 'the_content', array( $this, 'the_content' ), 30 );
79
+
80
  add_shortcode( 'mycred_sell_this', array( $this, 'render_shortcode' ) );
81
  add_shortcode( 'mycred_sell_this_ajax', array( $this, 'render_ajax_shortcode' ) );
82
  add_shortcode( 'mycred_sales_history', array( $this, 'render_sales_history' ) );
83
  add_shortcode( 'mycred_content_sale_count', array( $this, 'render_no_of_sales' ) );
84
 
85
+ add_action( 'add_meta_boxes', array( $this, 'add_metabox' ) );
86
+ add_action( 'save_post', array( $this, 'save_metabox' ) );
87
+
88
+ add_action( 'mycred_admin_enqueue', array( $this, 'admin_enqueue' ) );
89
+ add_action( 'mycred_front_enqueue', array( $this, 'front_enqueue' ) );
90
+ add_action( 'wp_footer', array( $this, 'footer' ) );
91
+ add_action( 'wp_ajax_mycred-buy-content', array( $this, 'make_purchase_ajax' ) );
92
+
93
+ add_action( 'mycred_edit_profile', array( $this, 'user_level_profit_shares' ), 20, 2 );
94
+ add_action( 'mycred_edit_profile_action', array( $this, 'save_user_override' ) );
95
+ add_action( 'mycred_admin_notices', array( $this, 'update_profile_notice' ) );
96
+
97
  }
98
 
99
  /**
102
  * @version 1.0
103
  */
104
  function user_level_profit_shares( $user, $type ) {
105
+
106
  if ( $this->sell_content['pay'] != 'author' || $this->sell_content['type'] != $type ) return;
107
+
108
  $users_share = mycred_get_user_meta( $user->ID, 'mycred_sell_content_share_' . $type, '', true );
109
 
110
  ?>
 
111
  <h3>Sell Content</h3>
112
  <table class="form-table">
113
  <tr>
123
  </tr>
124
  </table>
125
  <?php
126
+
127
  }
128
 
129
  /**
135
 
136
  if ( isset( $_POST['mycred_adjust_users_profitshare_run'] ) && isset( $_POST['mycred_adjust_users_profitshare'] ) ) {
137
 
138
+ $ctype = sanitize_key( $_GET['ctype'] );
139
  $user_id = absint( $_GET['user_id'] );
140
+ $share = $_POST['mycred_adjust_users_profitshare']['share'];
141
 
 
142
  if ( $share != '' ) {
143
+
144
  if ( isfloat( $share ) )
145
  $share = (float) $share;
146
  else
147
  $share = (int) $share;
148
 
149
  mycred_update_user_meta( $user_id, 'mycred_sell_content_share_' . $ctype, '', $share );
150
+
151
  }
152
+
153
  else {
154
+
155
  mycred_delete_user_meta( $user_id, 'mycred_sell_content_share_' . $ctype );
156
+
157
  }
158
 
159
  wp_safe_redirect( add_query_arg( array( 'result' => 'sell_content_share' ) ) );
160
+
161
  exit;
162
 
163
  }
182
  * @version 1.3.1
183
  */
184
  public function make_purchase() {
185
+
186
  global $mycred_content_purchase;
187
 
188
  $mycred_content_purchase = false;
190
  if ( ! isset( $_POST['mycred_purchase_token'] ) || ! isset( $_POST['mycred_purchase'] ) || ! isset( $_POST['mycred_purchase']['mst_action'] ) || ! isset( $_POST['mycred_purchase']['mst_author'] ) || ! isset( $_POST['mycred_purchase']['mst_post_id'] ) || ! isset( $_POST['mycred_purchase']['mst_post_type'] ) || ! isset( $_POST['mycred_purchase']['mst_user_id'] ) ) return;
191
  if ( ! wp_verify_nonce( $_POST['mycred_purchase_token'], 'buy-content' ) ) return;
192
 
193
+ $action = sanitize_key( $_POST['mycred_purchase']['mst_action'] );
194
+ $post_id = absint( $_POST['mycred_purchase']['mst_post_id'] );
195
+ $post_type = sanitize_key( $_POST['mycred_purchase']['mst_post_type'] );
196
+ $user_id = absint( $_POST['mycred_purchase']['mst_user_id'] );
197
+ $author = absint( $_POST['mycred_purchase']['mst_author'] );
198
 
199
  $sell_content = $this->sell_content;
200
+ $prefs = $this->get_sale_prefs( $post_id );
201
 
202
  $request = compact( 'action', 'post_id', 'user_id', 'author', 'post_type', 'sell_content', 'prefs' );
203
  do_action( 'mycred_sell_content_purchase_request', $request );
204
 
205
  if ( is_user_logged_in() && ! $this->user_paid( $user_id, $post_id ) && $this->user_can_buy( $user_id, $prefs['price'] ) ) {
206
+
207
  // Charge
208
  $this->core->add_creds(
209
  'buy_content',
237
  $payout = ( $users_share / 100 ) * $prefs['price'];
238
 
239
  $this->core->add_creds(
240
+ 'sell_content',
241
  $author,
242
  $payout,
243
  $sell_content['logs']['sell'],
253
 
254
  $mycred_content_purchase = true;
255
  do_action( 'mycred_sell_content_payment_complete', $request );
256
+
257
  }
258
+
259
  }
260
 
261
  /**
264
  * @version 1.3
265
  */
266
  public function make_purchase_ajax() {
267
+
268
  // We must be logged in
269
+ if ( ! is_user_logged_in() ) die;
270
 
271
  // Security
272
  check_ajax_referer( 'mycred-buy-content-ajax', 'token' );
273
 
274
  // Prep
275
+ $post_id = $_POST['postid'];
276
+ $user_id = get_current_user_id();
277
+ $action = 'buy-content-ajax';
 
278
  $sell_content = $this->sell_content;
279
+ $prefs = $this->get_sale_prefs( $post_id );
280
 
281
  if ( ! $this->user_paid( $user_id, $post_id ) && $this->user_can_buy( $user_id, $prefs['price'] ) ) {
282
+
283
  $post = get_post( $post_id );
284
 
285
  // Charge
302
 
303
  // Pay
304
  if ( $sell_content['pay'] == 'author' ) {
305
+
306
  // Check if author has a custom share
307
  $users_share = mycred_get_user_meta( $post->post_author, 'mycred_sell_content_share_' . $this->mycred_type, '', true );
308
  if ( $users_share == '' )
316
  $payout = ( $users_share / 100 ) * $prefs['price'];
317
 
318
  $this->core->add_creds(
319
+ 'sell_content',
320
  $post->post_author,
321
  $payout,
322
  $sell_content['logs']['sell'],
328
  ),
329
  $this->mycred_type
330
  );
331
+
332
  }
333
 
334
  // $match[1] = start tag, $match[2] = settings, $match[3] = content, $match[4] = end tag
338
  $content = apply_filters( 'the_content', $match[3] );
339
  $content = str_replace( ']]>', ']]&gt;', $content );
340
  $content = do_shortcode( $content );
341
+
342
  }
343
+
344
  // Someone is trying to make a purchase but not allowed
345
  else {
346
+
347
  $content = '<p>' . __( 'You can not buy this content.', 'mycred' ) . '</p>';
348
+
349
  }
350
 
351
  die( $content );
352
+
353
  }
354
 
355
  /**
365
  * @version 1.0
366
  */
367
  public function front_enqueue() {
368
+
369
  global $mycred_buy_content;
370
 
371
  wp_register_script(
375
  myCRED_SELL_VERSION . '.1',
376
  true
377
  );
378
+
379
  }
380
 
381
  /**
384
  * @version 1.0
385
  */
386
  public function footer() {
387
+
388
  global $mycred_buy_content;
389
 
390
  if ( $mycred_buy_content === true ) {
391
+
392
  wp_localize_script(
393
  'mycred-buy-content',
394
  'myCREDsell',
399
  'token' => wp_create_nonce( 'mycred-buy-content-ajax' )
400
  )
401
  );
402
+
403
  wp_enqueue_script( 'mycred-buy-content' );
404
+
405
  }
406
+
407
  }
408
 
409
  /**
412
  * @version 1.3
413
  */
414
  public function after_general_settings( $mycred = NULL ) {
415
+
416
  $sell_content = $this->sell_content;
417
  if ( ! isset( $sell_content['defaults']['expire'] ) )
418
  $sell_content['defaults']['expire'] = 0;
419
 
420
  $before = $this->core->before;
421
+ $after = $this->core->after;
 
422
  $payees = array(
423
  'none' => __( 'No Payout. Just charge.' ),
424
  'author' => __( 'Pay Content Author.' )
425
  );
426
+
427
  $available_payees = apply_filters( 'mycred_sell_content_payees', $payees, $sell_content );
 
 
428
 
429
+ ?>
430
  <h4><div class="icon icon-active"></div><?php _e( 'Sell Content', 'mycred' ); ?></h4>
431
  <div class="body" style="display:none;">
432
  <label class="subheader" for="<?php echo $this->field_id( 'post_types' ); ?>"><?php _e( 'Post Types', 'mycred' ); ?></label>
436
  <span class="description"><?php _e( 'Comma separated list of post types that can be sold.', 'mycred' ); ?></span>
437
  </li>
438
  </ol>
439
+
440
  <?php if ( count( $this->point_types ) > 1 ) : ?>
441
+
442
  <label class="subheader" for="<?php echo $this->field_id( 'type' ); ?>"><?php _e( 'Point Type', 'mycred' ); ?></label>
443
  <ol id="myCRED-buy-point-type">
444
  <li>
445
+
446
  <?php mycred_types_select_from_dropdown( $this->field_name( 'type' ), $this->field_name( 'type' ), $sell_content['type'] ); ?>
447
 
448
  </li>
449
  </ol>
450
+
451
  <?php else : ?>
452
 
453
  <input type="hidden" name="<?php echo $this->field_name( 'type' ); ?>" id="<?php echo $this->field_name( 'type' ); ?>" value="mycred_default" />
454
+
455
  <?php endif; ?>
456
 
457
  <label class="subheader"><?php _e( 'Payments', 'mycred' ); ?></label>
458
  <ol id="myCRED-buy-payments">
459
  <?php
460
+
461
  if ( ! empty( $available_payees ) ) {
462
+ foreach ( $available_payees as $key => $description ) {
463
 
464
+ ?>
465
  <li>
466
  <input type="radio" name="<?php echo $this->field_name( 'pay' ); ?>" id="<?php echo $this->field_id( array( 'pay' => $key ) ); ?>" <?php checked( $sell_content['pay'], $key ); ?> value="<?php echo $key; ?>" />
467
  <label for="<?php echo $this->field_id( array( 'pay' => $key ) ); ?>"><?php echo $description; ?></label>
468
  </li>
469
  <?php
 
470
 
471
+ if ( $key == 'author' ) {
472
+
473
+ ?>
474
  <li>
475
  <label for="<?php echo $this->field_id( 'pay_percent' ); ?>"><?php _e( 'Percentage to pay Author', 'mycred' ); ?></label>
476
  <div class="h2"><input type="text" size="5" maxlength="3" name="<?php echo $this->field_name( 'pay_percent' ); ?>" id="<?php echo $this->field_id( 'pay_percent' ); ?>" value="<?php echo $sell_content['pay_percent']; ?>" /> %</div>
477
  <span class="description"><?php _e( 'Percentage of the price to pay the author. Can not be zero and is ignored if authors are not paid.', 'mycred' ); ?></span>
478
  </li>
479
  <?php
480
+
481
  }
482
+
483
  }
484
+ }
485
 
486
+ ?>
487
  </ol>
488
  <label class="subheader"><?php _e( 'Defaults', 'mycred' ); ?></label>
489
  <ol id="myCRED-buy-defaults">
517
  <p><strong><?php _e( 'For Visitors', 'mycred' ); ?></strong></p>
518
  <?php
519
 
520
+ $id = str_replace( array( '-', '_' ), '', $this->field_id( array( 'templates' => 'visitors' ) ) );
521
  wp_editor( $sell_content['templates']['visitors'], $id, array(
522
  'textarea_name' => $this->field_name( array( 'templates' => 'visitors' ) ),
523
  'textarea_rows' => 6
525
 
526
  ?>
527
  <span class="description"><?php _e( 'Do <strong>not</strong> use the %buy_button% in this template as a user must be logged in to buy content!', 'mycred' ); ?><br />
528
+
529
  <?php echo $this->core->available_template_tags( array( 'general', 'post' ), '%price%' ); ?></span>
530
+
531
  </li>
532
  <li class="empty">&nbsp;</li>
533
  <li>
534
  <p><strong><?php _e( 'For Members', 'mycred' ); ?></strong></p>
535
  <?php
536
 
537
+ $id = str_replace( array( '-', '_' ), '', $this->field_id( array( 'templates' => 'members' ) ) );
538
  wp_editor( $sell_content['templates']['members'], $id, array(
539
  'textarea_name' => $this->field_name( array( 'templates' => 'members' ) ),
540
  'textarea_rows' => 6
549
  <p><strong><?php _e( 'For members that can not afford to buy', 'mycred' ); ?></strong></p>
550
  <?php
551
 
552
+ $id = str_replace( array( '-', '_' ), '', $this->field_id( array( 'templates' => 'cantafford' ) ) );
553
  wp_editor( $sell_content['templates']['cantafford'], $id, array(
554
  'textarea_name' => $this->field_name( array( 'templates' => 'cantafford' ) ),
555
  'textarea_rows' => 6
576
  </ol>
577
  </div>
578
  <?php
579
+
580
  }
581
 
582
  /**
585
  * @version 1.3
586
  */
587
  public function sanitize_extra_settings( $new_data, $data, $general ) {
588
+
589
  // Post Types
590
  $settings = $data['sell_content'];
591
 
592
+ $new_data['sell_content']['post_types'] = sanitize_text_field( $settings['post_types'] );
593
+ $new_data['sell_content']['type'] = sanitize_text_field( $settings['type'] );
594
+ $new_data['sell_content']['pay'] = sanitize_text_field( $settings['pay'] );
595
+ $new_data['sell_content']['pay_percent'] = abs( $settings['pay_percent'] );
596
+
597
  if ( $new_data['sell_content']['pay_percent'] == 0 || $new_data['sell_content']['pay_percent'] > 100 )
598
  $new_data['sell_content']['pay_percent'] = 100;
599
 
600
+ $new_data['sell_content']['defaults']['price'] = $this->core->format_number( $settings['defaults']['price'] );
601
+ $new_data['sell_content']['defaults']['overwrite_price'] = ( isset( $settings['defaults']['overwrite_price'] ) ) ? 1 : 0;
602
+ $new_data['sell_content']['defaults']['button_label'] = sanitize_text_field( $settings['defaults']['button_label'] );
603
  $new_data['sell_content']['defaults']['overwrite_buttonlabel'] = ( isset( $settings['defaults']['overwrite_buttonlabel'] ) ) ? 1 : 0;
604
+ $new_data['sell_content']['defaults']['expire'] = abs( $settings['defaults']['expire'] );
605
 
606
  $allowed_tags = $this->core->allowed_html_tags();
607
+ $new_data['sell_content']['templates']['members'] = wp_kses( $settings['templates']['members'], $allowed_tags );
608
+ $new_data['sell_content']['templates']['visitors'] = wp_kses( $settings['templates']['visitors'], $allowed_tags );
609
+ $new_data['sell_content']['templates']['cantafford'] = wp_kses( $settings['templates']['cantafford'], $allowed_tags );
610
 
611
+ $new_data['sell_content']['logs']['buy'] = sanitize_text_field( $settings['logs']['buy'] );
612
+ $new_data['sell_content']['logs']['sell'] = sanitize_text_field( $settings['logs']['sell'] );
613
 
 
614
  return $new_data;
615
+
616
  }
617
 
618
  /**
621
  * @version 1.0.1
622
  */
623
  public function add_metabox() {
624
+
625
  $sell_content = $this->sell_content;
626
+ $post_types = explode( ',', $sell_content['post_types'] );
627
+ $name = sprintf( __( '%s Sell This', 'mycred' ), mycred_label() );
628
+ $name = apply_filters( 'mycred_sell_this_label', $name, $this );
629
+
630
  foreach ( (array) $post_types as $post_type ) {
631
+
632
  $post_type = trim( $post_type );
633
  add_meta_box(
634
  'mycred_sell_content',
638
  'side',
639
  'high'
640
  );
641
+
642
  }
643
+
644
  }
645
 
646
  /**
652
  * @version 1.1
653
  */
654
  public function get_sale_prefs( $post_id ) {
655
+
656
  $sell_content = $this->sell_content;
657
  if ( ! isset( $sell_content['defaults']['expire'] ) )
658
  $sell_content['defaults']['expire'] = 0;
659
 
660
  $prefs = get_post_meta( $post_id, 'myCRED_sell_content', true );
661
  if ( $prefs == '' ) {
662
+
663
  $sales_data = array(
664
  'status' => 'disabled',
665
  'price' => $sell_content['defaults']['price'],
666
  'button_label' => $sell_content['defaults']['button_label'],
667
  'expire' => $sell_content['defaults']['expire']
668
  );
669
+
670
  }
671
  else {
672
+
673
  if ( ! isset( $prefs['expire'] ) )
674
  $prefs['expire'] = $sell_content['defaults']['expire'];
675
 
676
  $sales_data = $prefs;
677
+
678
  }
679
 
680
  return apply_filters( 'mycred_sell_content_post_prefs', $sales_data, $post_id, $this );
681
+
682
  }
683
 
684
  /**
687
  * @version 1.2
688
  */
689
  public function metabox( $post ) {
690
+
691
  // Make sure add-on has been setup
692
  if ( ! $this->is_installed() ) {
693
+
694
  echo sprintf( __( '%s Sell Content needs to be setup before you can use this feature.', 'mycred' ), mycred_label() );
695
+
696
  // Settings Link
697
  if ( $this->core->can_edit_plugin( get_current_user_id() ) )
698
  echo ' <a href="' . $this->get_settings_url( 'sell_content_module' ) . '" title="' . __( 'Setup add-on', 'mycred' ) . '">' . __( 'Lets do it', 'mycred' ) . '</a>';
699
 
700
  return;
701
+
702
  }
 
 
 
703
 
704
+ $admin = false;
705
+ $post_id = $post->ID;
706
+ $post_type = $post->post_type;
707
+ $user_id = get_current_user_id();
708
  $sell_content = $this->sell_content;
709
+ $sales_data = $this->get_sale_prefs( $post_id );
710
 
711
  // Mark admins
712
  if ( $this->core->can_edit_plugin( $user_id ) )
717
  $style = 'display:none;';
718
  $status = 'disabled';
719
  }
720
+
721
  else {
722
  $style = 'display:block;';
723
  $status = 'enabled';
724
  }
725
 
726
  $op = (bool) $sell_content['defaults']['overwrite_price'];
727
+ $ob = (bool) $sell_content['defaults']['overwrite_buttonlabel'];
728
 
729
+ ?>
730
  <style type="text/css">
731
  #mycred_sell_content .inside { margin: 0; padding: 0; }
732
  #mycred_sell_content .inside p { padding: 0 12px; }
764
  });
765
  </script>
766
  <?php
767
+
768
  }
769
 
770
  /**
773
  * @version 1.0
774
  */
775
  public function save_metabox( $post_id ) {
776
+
777
  // Make sure sale is enabled
778
+ if ( ! isset( $_POST['mycred-sell-this-status'] ) || ! isset( $_POST['mycred-sell-this-token'] ) ) return;
779
 
780
  // Verify token
781
+ if ( wp_verify_nonce( $_POST['mycred-sell-this-token'], 'mycred-sell-this' ) === false ) return;
782
 
783
  // Status
784
  if ( ! isset( $_POST['mycred_sell_this'] ) )
788
 
789
  $prefs = get_post_meta( $post_id, 'myCRED_sell_content', true );
790
  // If sale has never been set and is not enabled bail
791
+ if ( empty( $prefs ) && $status == 'disabled' ) return;
792
 
793
+ $sell_content = $this->sell_content;
794
+ $is_admin = $this->core->can_edit_plugin();
795
 
796
  // Status
797
+ $prefs['status'] = $status;
798
 
799
  // Prefs
800
+ $op = (bool) $sell_content['defaults']['overwrite_price'];
801
+ $prefs['price'] = ( $op === true || $is_admin === true ) ? $_POST['myCRED_sell_content']['price'] : $sell_content['defaults']['price'];
802
 
803
+ $ob = (bool) $sell_content['defaults']['overwrite_buttonlabel'];
804
  $prefs['button_label'] = ( $ob === true || $is_admin === true ) ? $_POST['myCRED_sell_content']['button_label'] : $sell_content['defaults']['button_label'];
805
 
806
  // Expiration
807
+ $prefs['expire'] = ( $is_admin === true ) ? abs( $_POST['myCRED_sell_content']['expire'] ) : $sell_content['defaults']['expire'];
808
 
809
  update_post_meta( $post_id, 'myCRED_sell_content', $prefs );
810
+
811
  }
812
 
813
  /**
817
  * @version 1.0
818
  */
819
  public function get_post_ID() {
820
+
821
  $post_id = $bbp_topic_id = $bbp_reply_id = 0;
822
+
823
  if ( function_exists( 'bbpress' ) ) {
824
+
825
  global $wp_query;
826
 
827
  $bbp = bbpress();
875
  $post_id = $GLOBALS['post']->ID;
876
 
877
  return apply_filters( 'mycred_sell_this_get_post_ID', $post_id, $this );
878
+
879
  }
880
 
881
  /**
882
  * For Sale
883
  * Checks if a given post is for sale.
 
884
  * @param $post_id (int) required post id
885
  * @returns (bool) true or false
886
  * @since 0.1
887
  * @version 1.1
888
  */
889
  public function for_sale( $post_id ) {
890
+
891
  $prefs = get_post_meta( $post_id, 'myCRED_sell_content', true );
892
  $reply = false;
893
+
894
  if ( ! empty( $prefs ) && isset( $prefs['status'] ) && $prefs['status'] == 'enabled' )
895
  $reply = true;
896
 
897
  return apply_filters( 'mycred_is_content_for_sale', $reply, $post_id );
898
+
899
  }
900
 
901
  /**
902
  * User Paid
903
  * Checks if a given user has paid for a specific post.
904
  * Will return true if the user can edit this plugin or creds.
 
905
  * @param $user_id (int) required user id
906
  * @param $post_id (int) required post id
907
  * @returns (bool) true or false
909
  * @version 1.3.2
910
  */
911
  public function user_paid( $user_id, $post_id ) {
912
+
913
  // Admins can view
914
  if ( $this->core->can_edit_plugin( $user_id ) || $this->core->can_edit_creds( $user_id ) ) return true;
915
+
916
  // Authors can view
917
  $the_post = get_post( $post_id );
918
  if ( ! isset( $the_post->post_author ) || $the_post->post_author == $user_id ) return true;
919
 
920
  global $wpdb;
921
+
922
  $sell_content = $this->sell_content;
923
 
924
+ $purchases = $wpdb->get_results( $wpdb->prepare( "
 
925
  SELECT *
926
  FROM {$this->core->log_table}
927
  WHERE user_id = %d
928
  AND ref = %s
929
  AND ref_id = %d
930
  AND ctype = %s
931
+ ORDER BY time DESC LIMIT 0,1;", $user_id, 'buy_content', $post_id, $this->mycred_type ) );
 
932
 
933
  // We have found purchase records
934
  if ( ! empty( $purchases ) ) {
935
+
936
  // Since individual posts can override the default settings we need to check sales prefs
937
  $prefs = $this->get_sale_prefs( $post_id );
938
  if ( ! isset( $prefs['expire'] ) )
943
 
944
  // Check if purchase has expired
945
  if ( ! $this->purchase_has_expired( $purchases[0]->time, $prefs['expire'], $user_id, $post_id ) ) return true;
946
+
947
  }
948
 
949
  // All else there are no purchases
950
  return apply_filters( 'mycred_user_has_paid_for_content', false, $user_id, $post_id );
951
+
952
  }
953
 
954
  /**
955
  * Purchase Has Expired
956
  * Makes a time comparison to check if a given timestamp is in the future (not expired) or
957
  * in the past (expired).
 
958
  * @param $timestamp (int) The UNIX timestamp to wich we apply the expiration check
959
  * @param $length (int) Length of expiration time to check by default this is the number of hours.
960
  * @filter 'mycred_sell_expire_calc'
963
  * @version 1.0
964
  */
965
  public function purchase_has_expired( $timestamp, $length = 0, $user_id, $post_id ) {
966
+
967
  if ( $length == 0 ) return false;
968
 
969
  $expiration = apply_filters( 'mycred_sell_expire_calc', abs( $length*3600 ), $length, $user_id, $post_id );
970
  $expiration = $expiration+$timestamp;
971
 
972
  if ( $expiration > date_i18n( 'U' ) ) return false;
973
+
974
  return true;
975
+
976
  }
977
 
978
  /**
979
  * User Can Buy
980
  * Checks if a given user can afford the given price.
 
981
  * @param $user_id (int) required user id
982
  * @param $price (int|float) required price to check
983
  * @returns (bool) true or false
985
  * @version 1.0
986
  */
987
  public function user_can_buy( $user_id, $price ) {
988
+
989
  $balance = $this->core->get_users_cred( $user_id, $this->mycred_type );
990
+
991
  if ( $balance-$price < 0 ) return false;
992
+
993
  return true;
994
+
995
  }
996
 
997
  /**
998
  * Get Button
999
  * Replaces the %buy_button% template tag with the submit button along
1000
  * with the set button label. If no template tag is found one is inserted in the end of the given string.
 
1001
  * @param $text (string) text to check for template tag.
1002
  * @param $post (object) optional post object to allow post template tags.
1003
  * @returns (string) formated string.
1005
  * @version 1.1
1006
  */
1007
  public function get_button( $text, $post ) {
1008
+
1009
  $sell_content = $this->sell_content;
1010
+ $prefs = $this->get_sale_prefs( $post->ID );
1011
 
1012
  // Button Label
1013
  if ( isset( $prefs['button_label'] ) )
1025
  $content = str_replace( '%buy_button%', $button, $text );
1026
 
1027
  return apply_filters( 'mycred_sell_this_button', $content, $post );
1028
+
1029
  }
1030
 
1031
  /**
1032
  * The Content Overwrite
1033
  * If the current post is set for sale we apply the appropirate template.
1034
  * Uses 3 different templates. a) Visitors Template b) Members Template and c) Cant Afford Template
 
1035
  * @returns (string) content
1036
  * @since 0.1
1037
  * @version 1.1.1
1038
  */
1039
  public function the_content( $content ) {
1040
+
1041
  global $mycred_content_purchase;
1042
 
1043
+ $post_id = $this->get_post_ID();
1044
  $the_post = get_post( $post_id );
1045
 
1046
  // If content is for sale
1047
  if ( $this->for_sale( $post_id ) ) {
1048
+
1049
  // Prep
1050
+ $user_id = get_current_user_id();
1051
  $sell_content = $this->sell_content;
1052
+ $prefs = $this->get_sale_prefs( $post_id );
1053
 
1054
  // Visitors
1055
  if ( ! is_user_logged_in() ) {
1056
+
1057
  $template = $sell_content['templates']['visitors'];
 
1058
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1059
  $template = $this->core->template_tags_general( $template );
1060
  $template = $this->core->template_tags_post( $template, $the_post );
1061
+
1062
  return '<div class="mycred-content-forsale">' . $template . '</div>';
1063
+
1064
  }
1065
 
1066
  // We are logged in, have not purchased this item and can make a purchase
1067
  elseif ( is_user_logged_in() && ! $this->user_paid( $user_id, $post_id ) && $this->user_can_buy( $user_id, $prefs['price'] ) ) {
 
1068
 
1069
+ $template = $sell_content['templates']['members'];
1070
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1071
  $template = $this->core->template_tags_general( $template );
1072
  $template = $this->core->template_tags_post( $template, $the_post );
1073
  $template = $this->get_button( $template, $the_post );
1074
+
1075
  return '
1076
+ <form action="" method="post" class="mycred-buy-content-form">
1077
  <input type="hidden" name="mycred_purchase[mst_post_id]" value="' . $post_id . '" />
1078
  <input type="hidden" name="mycred_purchase[mst_post_type]" value="' . $the_post->post_type . '" />
1079
  <input type="hidden" name="mycred_purchase[mst_user_id]" value="' . get_current_user_id() . '" />
1082
  <input type="hidden" name="mycred_purchase[mst_action]" value="buy" />
1083
  <div class="mycred-content-forsale">' . $template . '</div>
1084
  </form>';
1085
+
1086
  }
1087
+
1088
  // We are logged in, have not purchased this item and can not afford to buy this
1089
  elseif ( is_user_logged_in() && ! $this->user_paid( $user_id, $post_id ) && ! $this->user_can_buy( $user_id, $prefs['price'] ) ) {
 
1090
 
1091
+ $template = $sell_content['templates']['cantafford'];
1092
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1093
  $template = $this->core->template_tags_general( $template );
1094
  $template = $this->core->template_tags_post( $template, $the_post );
1095
+
1096
  return '<div class="mycred-content-forsale">' . $template . '</div>';
1097
+
1098
  }
1099
+
1100
  }
1101
 
1102
  // Mark purchases
1103
  if ( $mycred_content_purchase === true ) {
1104
+
1105
  $thank_you = __( 'Thank you for your purchase!', 'mycred' );
1106
+ $wrapper = '<div id="mycred-thank-you"><p>' . $thank_you . '</p></div>';
1107
+ $content = $wrapper . $content;
1108
+
1109
  }
1110
 
1111
  return do_shortcode( $content );
1112
+
1113
  }
1114
 
1115
  /**
1116
  * Render Shortcode
1117
  * Just as protecting the entire content, the mycred_sell_this shortcode protects
1118
  * parts of the content.
 
1119
  * @returns (string) content
1120
  * @since 0.1
1121
  * @version 1.3.1
1122
  */
1123
  public function render_shortcode( $atts, $content ) {
1124
+
1125
  // The Post
1126
+ $post_id = $this->get_post_ID();
1127
  $the_post = get_post( $post_id );
1128
 
1129
  // The User
1130
+ $user_id = get_current_user_id();
1131
  $sell_content = $this->sell_content;
1132
 
1133
  $prefs = shortcode_atts( array(
1135
  'button_label' => $sell_content['defaults']['button_label'],
1136
  'expire' => $sell_content['defaults']['expire']
1137
  ), $atts );
1138
+
1139
  $sales_prefs = $this->get_sale_prefs( $post_id );
1140
 
1141
  // If we are not using defaults save these settings.
1142
  if ( ( $sales_prefs['price'] != $prefs['price'] ) || ( $sales_prefs['button_label'] != $prefs['button_label'] ) || ( $sales_prefs['expire'] != $prefs['expire'] ) ) {
1143
+
1144
  update_post_meta( $post_id, 'myCRED_sell_content', array(
1145
  'price' => $prefs['price'],
1146
  'status' => $sales_prefs['status'],
1147
  'button_label' => $prefs['button_label'],
1148
  'expire' => $prefs['expire']
1149
  ) );
1150
+
1151
  }
1152
 
1153
  // Not logged in
1154
  if ( ! is_user_logged_in() ) {
 
1155
 
1156
+ $template = $sell_content['templates']['visitors'];
1157
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1158
  $template = $this->core->template_tags_general( $template );
1159
  $template = $this->core->template_tags_post( $template, $the_post );
1160
+
1161
  return '<div class="mycred-content-forsale">' . $template . '</div>';
1162
+
1163
  }
1164
 
1165
  // Can buy
1166
  elseif ( is_user_logged_in() && ! $this->user_paid( $user_id, $post_id ) && $this->user_can_buy( $user_id, $prefs['price'] ) ) {
 
1167
 
1168
+ $template = $sell_content['templates']['members'];
1169
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1170
  $template = $this->core->template_tags_general( $template );
1171
  $template = $this->core->template_tags_post( $template, $the_post );
1172
  $template = $this->get_button( $template, $the_post );
1173
+
1174
  return '
1175
+ <form action="" method="post" class="mycred-buy-content-form">
1176
  <input type="hidden" name="mycred_purchase[mst_post_id]" value="' . $post_id . '" />
1177
  <input type="hidden" name="mycred_purchase[mst_post_type]" value="' . $the_post->post_type . '" />
1178
  <input type="hidden" name="mycred_purchase[mst_user_id]" value="' . get_current_user_id() . '" />
1181
  <input type="hidden" name="mycred_purchase[mst_action]" value="buy" />
1182
  <div class="mycred-content-forsale">' . $template . '</div>
1183
  </form>';
1184
+
1185
  }
1186
 
1187
  // We are logged in, have not purchased this item and can not afford to buy this
1188
  elseif ( is_user_logged_in() && ! $this->user_paid( $user_id, $post_id ) && ! $this->user_can_buy( $user_id, $prefs['price'] ) ) {
1189
+
1190
  $template = $sell_content['templates']['cantafford'];
 
1191
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1192
  $template = $this->core->template_tags_general( $template );
1193
  $template = $this->core->template_tags_post( $template, $the_post );
1194
+
1195
  return '<div class="mycred-content-forsale">' . $template . '</div>';
1196
+
1197
  }
1198
 
1199
  // Admin and Author Wrapper for highlight of content set for sale
1201
  $content = '<div class="mycred-mark-title">' . __( 'The following content is set for sale:', 'mycred' ) . '</div><div class="mycred-mark-content">' . $content . '</div>';
1202
 
1203
  return do_shortcode( $content );
1204
+
1205
  }
1206
+
1207
  /**
1208
  * Render Shortcode AJAX
1209
  * Just as protecting the entire content, the mycred_sell_this_ajax shortcode protects
1210
  * parts of the content and uses AJAX to make the purchase
 
1211
  * @returns (string) content
1212
  * @since 0.1
1213
  * @version 1.0.1
1214
  */
1215
  public function render_ajax_shortcode( $atts, $content ) {
1216
+
1217
  global $mycred_buy_content;
1218
 
1219
  // The Post
1220
+ $post_id = $this->get_post_ID();
1221
+ $the_post = get_post( $post_id );
1222
+ $user_id = get_current_user_id();
 
1223
  $sell_content = $this->sell_content;
1224
 
1225
  $prefs = shortcode_atts( array(
1227
  'button_label' => $sell_content['defaults']['button_label'],
1228
  'expire' => $sell_content['defaults']['expire']
1229
  ), $atts );
1230
+
1231
  $sales_prefs = $this->get_sale_prefs( $post_id );
1232
 
1233
  // If we are not using defaults save these settings.
1234
  if ( ( $sales_prefs['price'] != $prefs['price'] ) || ( $sales_prefs['button_label'] != $prefs['button_label'] ) || ( $sales_prefs['expire'] != $prefs['expire'] ) ) {
1235
+
1236
  update_post_meta( $post_id, 'myCRED_sell_content', array(
1237
  'price' => $prefs['price'],
1238
  'status' => $sales_prefs['status'],
1239
  'button_label' => $prefs['button_label'],
1240
  'expire' => $prefs['expire']
1241
  ) );
1242
+
1243
  }
1244
 
1245
  // Not logged in
1246
  if ( ! is_user_logged_in() ) {
 
1247
 
1248
+ $template = $sell_content['templates']['visitors'];
1249
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1250
  $template = $this->core->template_tags_general( $template );
1251
  $template = $this->core->template_tags_post( $template, $the_post );
1252
+
1253
  return '<div class="mycred-content-forsale">' . $template . '</div>';
1254
+
1255
  }
1256
 
1257
  // Can buy
1258
  elseif ( is_user_logged_in() && ! $this->user_paid( $user_id, $post_id ) && $this->user_can_buy( $user_id, $prefs['price'] ) ) {
 
1259
 
1260
+ $template = $sell_content['templates']['members'];
1261
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1262
  $template = $this->core->template_tags_general( $template );
1263
  $template = $this->core->template_tags_post( $template, $the_post );
1269
 
1270
  $button = '<input type="button" data-id="' . $the_post->ID . '" name="mycred-buy-button" value="' . $this->core->template_tags_post( $button_text, $the_post ) . '" class="mycred-sell-this-button button large" />';
1271
  $template = str_replace( '%buy_button%', $button, $template );
 
1272
 
1273
  $mycred_buy_content = true;
1274
+
1275
  return '<div class="mycred-content-forsale">' . $template . '</div>';
1276
+
1277
  }
1278
 
1279
  // We are logged in, have not purchased this item and can not afford to buy this
1280
  elseif ( is_user_logged_in() && ! $this->user_paid( $user_id, $post_id ) && ! $this->user_can_buy( $user_id, $prefs['price'] ) ) {
1281
+
1282
  $template = $sell_content['templates']['cantafford'];
 
1283
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1284
  $template = $this->core->template_tags_general( $template );
1285
  $template = $this->core->template_tags_post( $template, $the_post );
1286
+
1287
  return '<div class="mycred-content-forsale">' . $template . '</div>';
1288
+
1289
  }
1290
 
1291
  // Admin and Author Wrapper for highlight of content set for sale
1293
  $content = '<div class="mycred-mark-title">' . __( 'The following content is set for sale:', 'mycred' ) . '</div><div class="mycred-mark-content">' . $content . '</div>';
1294
 
1295
  return do_shortcode( $content );
1296
+
1297
  }
1298
+
1299
  /**
1300
  * Render Sales History Shortcode
1301
  * @see http://mycred.me/shortcodes/mycred_sales_history/
1303
  * @version 1.3
1304
  */
1305
  public function render_sales_history( $atts ) {
1306
+
1307
  extract( shortcode_atts( array(
1308
  'login' => NULL,
1309
  'user_id' => NULL,
1313
  'include_date' => true,
1314
  'no_result' => __( 'No purchases found', 'mycred' )
1315
  ), $atts ) );
1316
+
1317
  // Not logged in
1318
  if ( $user_id === NULL && ! is_user_logged_in() ) {
1319
+
1320
  if ( $login != NULL )
1321
  return '<div class="mycred-not-logged-in">' . $login . '</div>';
1322
 
1323
  return;
1324
+
1325
  }
1326
 
1327
  // Prep
1334
 
1335
  // Title
1336
  if ( ! empty( $title ) ) {
1337
+
1338
  if ( ! empty( $title_class ) )
1339
  $title_class = ' class="' . $title_class . '"';
1340
+
1341
  $output .= '<' . $title_el . $title_class . '>' . $title . '</' . $title_el . '>';
1342
+
1343
  }
1344
+
1345
  // Query
1346
  $results = $wpdb->get_results( $wpdb->prepare( "
1347
  SELECT *
1350
  AND ref = %s
1351
  AND ctype = %s
1352
  ORDER BY time;", $user_id, 'buy_content', $this->mycred_type ) );
1353
+
1354
  // Results
1355
  $rows = array();
1356
  if ( ! empty( $results ) ) {
1357
  foreach ( $results as $item ) {
1358
+
1359
  $row = '<span class="item-link"><a href="' . get_permalink( $item->ref_id ) . '">' . get_the_title( $item->ref_id ) . '</a></span>';
1360
 
1361
  // Add Date to row
1364
 
1365
  // Construct row (and let others play)
1366
  $rows[] = apply_filters( 'mycred_sale_history_row', $row, $item );
1367
+
1368
  }
1369
+
1370
  }
1371
+
1372
  // Implode rows if there are any
1373
+ if ( ! empty( $rows ) )
1374
  $output .= '<ul class="mycred-purchase-history"><li>' . implode( '</li><li>', $rows ) . '</li></ul>';
1375
+
1376
  // No results
1377
  else {
1378
+
1379
  if ( ! empty( $no_result ) )
1380
  $output .= '<p>' . $no_result . '</p>';
1381
+
1382
  }
1383
 
1384
  $output .= '</div>';
1385
 
1386
  return $output;
1387
+
1388
  }
1389
 
1390
  /**
1414
  $total = 0;
1415
 
1416
  return apply_filters( 'mycred_content_sales_count', $total, $post_id );
1417
+
1418
  }
1419
 
1420
  /**
1441
  * @version 1.0
1442
  */
1443
  public function email_notices( $data ) {
1444
+
1445
  if ( $data['request']['ref'] == 'buy_content' ) {
1446
  $message = $data['message'];
1447
  $data['message'] = $this->core->template_tags_post( $message, $data['request']['ref_id'] );
1448
  }
1449
+
1450
  return $data;
1451
+
1452
  }
1453
+
1454
  }
1455
+
1456
  $sell_content = new myCRED_Sell_Content_Module();
1457
  $sell_content->load();
1458
+
1459
+ endif;
1460
+
1461
  ?>
addons/stats/assets/css/mycred-statistics.css ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .mycred-stat-widget {
2
+
3
+ }
4
+ .mycred-stat-widget canvas {
5
+ margin-top: 12px;
6
+ }
7
+ .mycred-stat-widget h1 {
8
+ margin: 0 0 24px 0;
9
+ }
10
+ .mycred-stat-widget ul {
11
+ margin: 0 0 24px 0;
12
+ padding: 0 0 0 0;
13
+ }
14
+ .mycred-stat-widget ul li {
15
+ display: inline;
16
+ margin: 0 12px 0 0;
17
+ padding: 0 0 0 0;
18
+ list-style-type: none;
19
+ }
20
+ .mycred-stats-table table {
21
+ background-color: transparent;
22
+ }
addons/stats/includes/mycred-stats-shortcodes.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if ( ! defined( 'myCRED_STATS_VERSION' ) ) exit;
3
+
4
+ /**
5
+ * Shortcode: myCRED Statistics
6
+ * @since 1.6.8
7
+ * @version 1.0
8
+ */
9
+ if ( ! function_exists( 'mycred_statistics_shortcode_render' ) ) :
10
+ function mycred_statistics_shortcode_render( $atts ) {
11
+
12
+ extract( shortcode_atts( array(
13
+ 'id' => 'overallcirculation'
14
+ ), $atts ) );
15
+
16
+ global $mycred_load_stats;
17
+
18
+ $mycred_load_stats = true;
19
+
20
+ $args = array( 'ctypes' => 'mycred_deed' );
21
+
22
+ ob_start();
23
+
24
+ if ( class_exists( 'myCRED_Stats_Widget_Circulation' ) ) {
25
+
26
+ $w = new myCRED_Stats_Widget_Circulation( $id, $args );
27
+
28
+ echo '<div class="mycred-stat-widget">';
29
+
30
+ $w->front_widget();
31
+
32
+ echo '</div>';
33
+
34
+ }
35
+
36
+ $content = ob_get_contents();
37
+ ob_end_clean();
38
+
39
+ return $content;
40
+
41
+ }
42
+ endif;
43
+
44
+ ?>
addons/stats/myCRED-addon-stats.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Addon: Stats
4
  * Addon URI: http://mycred.me/add-ons/stats/
5
- * Version: 1.0
6
  * Description: Gives you access to your myCRED Staticstics based on your users gains and loses.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
@@ -18,6 +18,7 @@ define( 'myCRED_STATS_WIDGETS_DIR', myCRED_STATS_DIR . 'widgets/' );
18
  * Required Files
19
  */
20
  require_once myCRED_STATS_DIR . 'includes/mycred-stats-functions.php';
 
21
  require_once myCRED_STATS_DIR . 'abstracts/mycred-abstract-stat-widget.php';
22
 
23
  /**
@@ -32,9 +33,9 @@ do_action( 'mycred_stats_load_widgets' );
32
  /**
33
  * myCRED_Stats_Module class
34
  * @since 1.6
35
- * @version 1.0
36
  */
37
- if ( ! class_exists( 'myCRED_Stats_Module' ) ) {
38
  class myCRED_Stats_Module extends myCRED_Module {
39
 
40
  public $user;
@@ -46,14 +47,15 @@ if ( ! class_exists( 'myCRED_Stats_Module' ) ) {
46
  * Construct
47
  */
48
  function __construct( $type = 'mycred_default' ) {
 
49
  parent::__construct( 'myCRED_Stats_Module', array(
50
  'module_name' => 'stats',
51
  'register' => false,
52
  ), $type );
53
 
54
- $this->label = sprintf( '%s %s', mycred_label(), __( 'Statistics', 'mycred' ) );
55
-
56
  $this->colors = mycred_get_type_color();
 
57
  }
58
 
59
  /**
@@ -62,17 +64,63 @@ if ( ! class_exists( 'myCRED_Stats_Module' ) ) {
62
  * @version 1.0
63
  */
64
  public function module_init() {
 
 
 
 
 
 
 
 
 
65
  add_action( 'admin_menu', array( $this, 'add_menu' ) );
66
- add_action( 'admin_enqueue_scripts', array( $this, 'register_scripts' ) );
 
67
  }
68
 
69
  /**
70
- * Admin Init
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  * @since 1.6
72
  * @version 1.0
73
  */
74
- public function module_admin_init() {
75
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  }
77
 
78
  /**
@@ -95,11 +143,11 @@ if ( ! class_exists( 'myCRED_Stats_Module' ) ) {
95
  }
96
 
97
  /**
98
- * Register Scripts
99
  * @since 1.6
100
  * @version 1.0
101
  */
102
- public function register_scripts() {
103
 
104
  // Scripts
105
  wp_register_script(
@@ -332,5 +380,7 @@ if ( ! class_exists( 'myCRED_Stats_Module' ) ) {
332
 
333
  $mycred_stats = new myCRED_Stats_Module();
334
  $mycred_stats->load();
335
- }
 
 
336
  ?>
2
  /**
3
  * Addon: Stats
4
  * Addon URI: http://mycred.me/add-ons/stats/
5
+ * Version: 1.1
6
  * Description: Gives you access to your myCRED Staticstics based on your users gains and loses.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
18
  * Required Files
19
  */
20
  require_once myCRED_STATS_DIR . 'includes/mycred-stats-functions.php';
21
+ require_once myCRED_STATS_DIR . 'includes/mycred-stats-shortcodes.php';
22
  require_once myCRED_STATS_DIR . 'abstracts/mycred-abstract-stat-widget.php';
23
 
24
  /**
33
  /**
34
  * myCRED_Stats_Module class
35
  * @since 1.6
36
+ * @version 1.1
37
  */
38
+ if ( ! class_exists( 'myCRED_Stats_Module' ) ) :
39
  class myCRED_Stats_Module extends myCRED_Module {
40
 
41
  public $user;
47
  * Construct
48
  */
49
  function __construct( $type = 'mycred_default' ) {
50
+
51
  parent::__construct( 'myCRED_Stats_Module', array(
52
  'module_name' => 'stats',
53
  'register' => false,
54
  ), $type );
55
 
56
+ $this->label = sprintf( '%s %s', mycred_label(), __( 'Statistics', 'mycred' ) );
 
57
  $this->colors = mycred_get_type_color();
58
+
59
  }
60
 
61
  /**
64
  * @version 1.0
65
  */
66
  public function module_init() {
67
+
68
+ global $mycred_load_stats;
69
+
70
+ add_action( 'mycred_front_enqueue', array( $this, 'register_scripts' ) );
71
+
72
+ add_shortcode( 'mycred_statistics', 'mycred_statistics_shortcode_render' );
73
+
74
+ add_action( 'wp_footer', array( $this, 'load_front_scripts' ), 5 );
75
+
76
  add_action( 'admin_menu', array( $this, 'add_menu' ) );
77
+ add_action( 'admin_enqueue_scripts', array( $this, 'register_scripts_admin' ) );
78
+
79
  }
80
 
81
  /**
82
+ * Add Menu
83
+ * @since 1.6.8
84
+ * @version 1.0
85
+ */
86
+ public function load_front_scripts() {
87
+
88
+ global $mycred_load_stats;
89
+
90
+ if ( $mycred_load_stats !== true ) {
91
+ wp_dequeue_script( 'chart-js' );
92
+ }
93
+ else {
94
+ wp_enqueue_style( 'mycred-stats' );
95
+ }
96
+
97
+ }
98
+
99
+ /**
100
+ * Register Front Scripts
101
  * @since 1.6
102
  * @version 1.0
103
  */
104
+ public function register_scripts() {
105
+
106
+ // Scripts
107
+ wp_enqueue_script(
108
+ 'chart-js',
109
+ plugins_url( 'assets/js/Chart.js', myCRED_STATS ),
110
+ array( 'jquery' ),
111
+ '1.1',
112
+ true
113
+ );
114
+
115
+ // Stylesheets
116
+ wp_register_style(
117
+ 'mycred-stats',
118
+ plugins_url( 'assets/css/mycred-statistics.css', myCRED_STATS ),
119
+ array(),
120
+ myCRED_VERSION,
121
+ 'all'
122
+ );
123
+
124
  }
125
 
126
  /**
143
  }
144
 
145
  /**
146
+ * Register Admin Scripts
147
  * @since 1.6
148
  * @version 1.0
149
  */
150
+ public function register_scripts_admin() {
151
 
152
  // Scripts
153
  wp_register_script(
380
 
381
  $mycred_stats = new myCRED_Stats_Module();
382
  $mycred_stats->load();
383
+
384
+ endif;
385
+
386
  ?>
addons/stats/widgets/mycred-stats-widget-circulation.php CHANGED
@@ -126,6 +126,135 @@ if ( ! class_exists( 'myCRED_Stats_Widget_Circulation' ) ) :
126
 
127
  }
128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
  /**
130
  * Display
131
  * @version 1.0.1
@@ -206,28 +335,28 @@ if ( ! class_exists( 'myCRED_Stats_Widget_Circulation' ) ) :
206
  <tbody>
207
  <?php
208
 
209
- foreach ( $gains_loses as $type_id => $dates ) {
210
 
211
- $mycred = mycred( $type_id );
212
 
213
  ?>
214
  <tr style="color: <?php echo $this->colors[ $type_id ]; ?>;">
215
  <td class="rowtitle"><?php echo $this->ctypes[ $type_id ]; ?></td>
216
  <?php
217
 
218
- $page_id = 'myCRED';
219
- if ( $type_id != 'mycred_default' )
220
- $page_id .= '_' . $type_id;
221
 
222
- $base_url = add_query_arg( array( 'page' => $page_id ), admin_url( 'admin.php' ) );
223
- foreach ( $dates as $key => $item ) {
224
- $url = add_query_arg( array( 'show' => $key ), $base_url );
225
- echo '<td class="cell"><a href="' . esc_url( $url ) . '">' . $mycred->format_number( $item['gains'] ) . '</a></td>';
226
- $url = add_query_arg( array( 'show' => $key, 'num' => 0, 'compare' => urlencode( '<' ) ), $base_url );
227
- echo '<td class="cell"><a href="' . esc_url( $url ) . '">' . $mycred->format_number( $item['loses'] ) . '</a></td>';
228
- }
229
 
230
- }
231
 
232
  ?>
233
  </tbody>
126
 
127
  }
128
 
129
+ /**
130
+ * Front Widget
131
+ * @version 1.0
132
+ */
133
+ function front_widget() {
134
+
135
+ if ( $this->args['ctypes'] == 'all' )
136
+ $label = __( 'Total amount in circulation', 'mycred' );
137
+ else
138
+ $label = sprintf( __( 'Total amount of %s in circulation', 'mycred' ), $this->ctypes[ $this->args['ctypes'] ] );
139
+
140
+ $circulation = $this->get_data();
141
+ $gains_loses = $this->gains_and_loses();
142
+
143
+ ?>
144
+ <div id="mycred-stats-overview" class="row">
145
+ <div id="mycred-stats-<?php echo $this->id; ?>" class="col-lg-3 col-md-3 col-sm-12 col-xs-12">
146
+ <canvas id="total-circulation-<?php echo $this->id; ?>-chart"></canvas>
147
+ </div>
148
+ <div class="col-lg-9 col-md-9 col-sm-12 col-xs-12">
149
+ <h1><?php echo $label; ?>: <?php echo $this->format_number( $circulation['total'] ); ?></h1>
150
+ <?php
151
+
152
+ if ( $this->args['ctypes'] == 'all' ) :
153
+
154
+ ?>
155
+ <ul id="total-per-point-type"><li><?php echo implode( '</li><li>', $circulation['totals'] ); ?></li></ul>
156
+ <?php
157
+
158
+ else :
159
+
160
+ $circulation = array( 'series' => array() );
161
+ $mycred = mycred( $this->args['ctypes'] );
162
+
163
+ $gains = $this->get_total( $this->args['ctypes'] );
164
+ $loses = $this->get_total( $this->args['ctypes'], false );
165
+
166
+ $total = $gains + abs( $loses );
167
+ $gains_p = number_format( ( ( $gains / $total ) * 100 ), 0 );
168
+ $gains_l = number_format( ( 100 - $gains_p ), 0 );
169
+
170
+ $color = $gain_color = $this->colors[ $this->args['ctypes'] ];
171
+ $circulation['series'][] = "{ value: {$gains_p}, color: '" . $color . "', highlight: '" . $color . "', label: '" . esc_attr__( 'Total gains (%)', 'mycred' ) . "' }";
172
+
173
+
174
+ $color = $lose_color = mycred_inverse_rgb_color( $this->colors[ $this->args['ctypes'] ] );
175
+ $circulation['series'][] = "{ value: {$gains_l}, color: '" . $color . "', highlight: '" . $color . "', label: '" . esc_attr__( 'Total loses (%)', 'mycred' ) . "' }";
176
+
177
+ //
178
+ ?>
179
+ <ul id="total-per-point-type"><li><?php printf( __( 'Total Gained: %s', 'mycred' ), '<span style="color:' . $gain_color . '">' . $mycred->format_creds( $gains ) . '</span>' ); ?></li><li><?php printf( __( 'Total Spent: %s', 'mycred' ), '<span style="color:' . $lose_color . '">' . $mycred->format_creds( $loses ) . '</span>' ); ?></li></ul>
180
+ <?php
181
+
182
+ endif;
183
+
184
+ ?>
185
+ <div class="table-responsive mycred-stats-table">
186
+ <table class="table table-condensed" cellpadding="0" cellspacing="0">
187
+ <thead>
188
+ <tr>
189
+ <th class="rowtitle"></th>
190
+ <th class="doublecell" colspan="2"><?php _e( 'Today', 'mycred' ); ?></th>
191
+ <th class="doublecell" colspan="2"><?php _e( 'This Week', 'mycred' ); ?></th>
192
+ <th class="doublecell" colspan="2"><?php _e( 'This Month', 'mycred' ); ?></th>
193
+ <th class="doublecell" colspan="2"><?php _e( 'This Year', 'mycred' ); ?></th>
194
+ </tr>
195
+ <tr class="subheader">
196
+ <th class="rowtitle"></th>
197
+ <th class="cell"><?php _e( 'Gained', 'mycred' ); ?></th>
198
+ <th class="cell"><?php _e( 'Lost', 'mycred' ); ?></th>
199
+ <th class="cell"><?php _e( 'Gained', 'mycred' ); ?></th>
200
+ <th class="cell"><?php _e( 'Lost', 'mycred' ); ?></th>
201
+ <th class="cell"><?php _e( 'Gained', 'mycred' ); ?></th>
202
+ <th class="cell"><?php _e( 'Lost', 'mycred' ); ?></th>
203
+ <th class="cell"><?php _e( 'Gained', 'mycred' ); ?></th>
204
+ <th class="cell last"><?php _e( 'Lost', 'mycred' ); ?></th>
205
+ </tr>
206
+ </thead>
207
+ <tbody>
208
+ <?php
209
+
210
+ foreach ( $gains_loses as $type_id => $dates ) {
211
+
212
+ $mycred = mycred( $type_id );
213
+
214
+ ?>
215
+ <tr style="color: <?php echo $this->colors[ $type_id ]; ?>;">
216
+ <td class="rowtitle"><?php echo $this->ctypes[ $type_id ]; ?></td>
217
+ <?php
218
+
219
+ $page_id = 'myCRED';
220
+ if ( $type_id != 'mycred_default' )
221
+ $page_id .= '_' . $type_id;
222
+
223
+ $base_url = add_query_arg( array( 'page' => $page_id ), admin_url( 'admin.php' ) );
224
+ foreach ( $dates as $key => $item ) {
225
+ echo '<td class="cell">' . $mycred->format_number( $item['gains'] ) . '</td>';
226
+ echo '<td class="cell">' . $mycred->format_number( $item['loses'] ) . '</td>';
227
+ }
228
+
229
+ }
230
+
231
+ ?>
232
+ </tbody>
233
+ </table>
234
+ </div>
235
+ </div>
236
+ </div>
237
+ <script type="text/javascript">
238
+ jQuery(function($) {
239
+
240
+ var <?php echo $this->id; ?> = $( '#total-circulation-<?php echo $this->id; ?>-chart' ).get(0).getContext( '2d' );
241
+ <?php echo $this->id; ?>.canvas.width = 240;
242
+ <?php echo $this->id; ?>.canvas.height = 240;
243
+
244
+ var <?php echo $this->id; ?>chart = new Chart( <?php echo $this->id; ?> ).Doughnut([
245
+ <?php echo implode( ',', $circulation['series'] ); ?>
246
+ ],{
247
+ segmentStrokeColor : '#F1F1F1',
248
+ segmentStrokeWidth : 3,
249
+ percentageInnerCutout : 60
250
+ });
251
+
252
+ });
253
+ </script>
254
+ <?php
255
+
256
+ }
257
+
258
  /**
259
  * Display
260
  * @version 1.0.1
335
  <tbody>
336
  <?php
337
 
338
+ foreach ( $gains_loses as $type_id => $dates ) {
339
 
340
+ $mycred = mycred( $type_id );
341
 
342
  ?>
343
  <tr style="color: <?php echo $this->colors[ $type_id ]; ?>;">
344
  <td class="rowtitle"><?php echo $this->ctypes[ $type_id ]; ?></td>
345
  <?php
346
 
347
+ $page_id = 'myCRED';
348
+ if ( $type_id != 'mycred_default' )
349
+ $page_id .= '_' . $type_id;
350
 
351
+ $base_url = add_query_arg( array( 'page' => $page_id ), admin_url( 'admin.php' ) );
352
+ foreach ( $dates as $key => $item ) {
353
+ $url = add_query_arg( array( 'show' => $key ), $base_url );
354
+ echo '<td class="cell"><a href="' . esc_url( $url ) . '">' . $mycred->format_number( $item['gains'] ) . '</a></td>';
355
+ $url = add_query_arg( array( 'show' => $key, 'num' => 0, 'compare' => urlencode( '<' ) ), $base_url );
356
+ echo '<td class="cell"><a href="' . esc_url( $url ) . '">' . $mycred->format_number( $item['loses'] ) . '</a></td>';
357
+ }
358
 
359
+ }
360
 
361
  ?>
362
  </tbody>
addons/transfer/includes/mycred-transfer-shortcodes.php CHANGED
@@ -9,7 +9,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
9
  * @attribute $show_balance (bool) set to true to show current users balance, defaults to true
10
  * @attribute $show_limit (bool) set to true to show current users limit. If limit is set to 'none' and $show_limit is set to true nothing will be returned
11
  * @since 0.1
12
- * @version 1.5
13
  */
14
  if ( ! function_exists( 'mycred_transfer_render' ) ) :
15
  function mycred_transfer_render( $atts, $content = NULL ) {
@@ -17,17 +17,18 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
17
  global $mycred_load_transfer;
18
 
19
  // Settings
20
- $mycred = mycred();
21
- $pref = $mycred->transfers;
 
22
 
23
  // Get Attributes
24
  extract( shortcode_atts( array(
25
  'button' => '',
26
- 'charge_from' => '',
27
  'pay_to' => '',
28
  'show_balance' => 0,
29
  'show_limit' => 0,
30
- 'ref' => '',
31
  'placeholder' => '',
32
  'types' => $pref['types'],
33
  'excluded' => ''
@@ -46,14 +47,14 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
46
 
47
  }
48
 
49
- if ( $ref == '' )
50
- $ref = 'transfer';
51
-
52
  // Who to charge
53
  $charge_other = false;
54
- if ( $charge_from == '' ) {
55
  $charge_other = true;
56
- $charge_from = get_current_user_id();
 
 
 
57
  }
58
 
59
  // Point Types
@@ -64,8 +65,13 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
64
 
65
  $clean = array();
66
  foreach ( $raw as $id ) {
67
- $clean[] = sanitize_text_field( $id );
 
 
 
 
68
  }
 
69
  $available_types = array();
70
 
71
  // Default
@@ -74,29 +80,35 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
74
  // Make sure user is not excluded
75
  if ( $mycred->exclude_user( $charge_from ) ) return '';
76
 
77
- $status = mycred_user_can_transfer( $charge_from, NULL, 'mycred_default', $ref );
78
  $my_balance = $mycred->get_users_cred( $charge_from );
79
 
80
  // Error. Not enough creds
81
  if ( $status === 'low' ) {
 
82
  if ( isset( $pref['errors']['low'] ) && ! empty( $pref['errors']['low'] ) ) {
83
  $no_cred = str_replace( '%limit%', $pref['limit']['limit'], $pref['errors']['low'] );
84
  $no_cred = str_replace( '%Limit%', ucwords( $pref['limit']['limit'] ), $no_cred );
85
  $no_cred = str_replace( '%left%', $mycred->format_creds( $status ), $no_cred );
86
  $output .= '<p class="mycred-transfer-low">' . $mycred->template_tags_general( $no_cred ) . '</p>';
87
  }
 
88
  return $output;
 
89
  }
90
 
91
  // Error. Over limit
92
  if ( $status === 'limit' ) {
 
93
  if ( isset( $pref['errors']['over'] ) && ! empty( $pref['errors']['over'] ) ) {
94
  $no_cred = str_replace( '%limit%', $pref['limit']['limit'], $pref['errors']['over'] );
95
  $no_cred = str_replace( '%Limit%', ucwords( $pref['limit']['limit'] ), $no_cred );
96
  $no_cred = str_replace( '%left%', $mycred->format_creds( $status ), $no_cred );
97
  $output .= '<p class="mycred-transfer-over">' . $mycred->template_tags_general( $no_cred ) . '</p>';
98
  }
 
99
  return $output;
 
100
  }
101
 
102
  $available_types['mycred_default'] = $mycred->plural();
@@ -115,11 +127,13 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
115
  if ( $status === 'low' || $status === 'limit' ) continue;
116
 
117
  $available_types[ $point_type ] = $points->plural();
 
118
  }
119
 
120
  // User does not have access
121
  if ( count( $available_types ) == 0 )
122
  return $excluded;
 
123
  }
124
 
125
  // Flag for scripts & styles
@@ -143,11 +157,13 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
143
 
144
  $user = get_user_by( 'id', $pay_to );
145
  if ( $user !== false ) {
 
146
  $value = $user->display_name;
147
  if ( isset( $user->$pref['autofill'] ) )
148
  $value = $user->$pref['autofill'];
149
 
150
  $to_input = '<input type="text" name="mycred-transfer-to" value="' . $value . '" readonly="readonly" />';
 
151
  }
152
 
153
  }
@@ -174,9 +190,7 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
174
 
175
  }
176
 
177
- else {
178
- $before = $after = '';
179
- }
180
 
181
  // Select Point type
182
  if ( count( $available_types ) == 1 )
@@ -196,16 +210,20 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
196
 
197
  // Show Balance
198
  if ( (bool) $show_balance === true && ! empty( $pref['templates']['balance'] ) && count( $available_types ) == 1 ) {
 
199
  $balance_text = str_replace( '%balance%', $mycred->format_creds( $my_balance ), $pref['templates']['balance'] );
200
- $extras[] = $mycred->template_tags_general( $balance_text );
 
201
  }
202
 
203
  // Show Limits
204
  if ( (bool) $show_limit === true && ! empty( $pref['templates']['limit'] ) && $pref['limit']['limit'] != 'none' && count( $available_types ) == 1 ) {
 
205
  $limit_text = str_replace( '%_limit%', $pref['limit']['limit'], $pref['templates']['limit'] );
206
  $limit_text = str_replace( '%limit%', ucwords( $pref['limit']['limit'] ), $limit_text );
207
  $limit_text = str_replace( '%left%', $mycred->format_creds( $status ), $limit_text );
208
- $extras[] = $mycred->template_tags_general( $limit_text );
 
209
  }
210
 
211
  if ( $button == '' )
@@ -230,7 +248,7 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
230
  <li class="mycred-send-amount">
231
  <label><?php _e( 'Amount:', 'mycred' ); ?></label>
232
  <div class="transfer-amount"><?php echo $before; ?><input type="text" class="short" name="mycred-transfer-amount" value="<?php echo $mycred->zero(); ?>" size="8" aria-required="true" /><?php echo $after . ' ' . $type_input; ?></div>
233
- <?php if ( $charge_other ) : ?><input type="hidden" name="mycred-charge-other" value="<?php absint( $charge_from ); ?>" /><?php endif; ?>
234
  <?php if ( $ref != '' ) : ?><input type="hidden" name="mycred-transfer-ref" value="<?php echo esc_attr( $ref ); ?>" /><?php endif; ?>
235
  <input type="submit" class="button button-primary button-large mycred-click btn btn-primary btn-lg"<?php if ( $pay_to == get_current_user_id() ) echo ' disabled="disabled"'; ?> value="<?php echo esc_attr( $button ); ?>" />
236
 
9
  * @attribute $show_balance (bool) set to true to show current users balance, defaults to true
10
  * @attribute $show_limit (bool) set to true to show current users limit. If limit is set to 'none' and $show_limit is set to true nothing will be returned
11
  * @since 0.1
12
+ * @version 1.5.1
13
  */
14
  if ( ! function_exists( 'mycred_transfer_render' ) ) :
15
  function mycred_transfer_render( $atts, $content = NULL ) {
17
  global $mycred_load_transfer;
18
 
19
  // Settings
20
+ $mycred = mycred();
21
+ $pref = $mycred->transfers;
22
+ $user_id = get_current_user_id();
23
 
24
  // Get Attributes
25
  extract( shortcode_atts( array(
26
  'button' => '',
27
+ 'charge_from' => $user_id,
28
  'pay_to' => '',
29
  'show_balance' => 0,
30
  'show_limit' => 0,
31
+ 'ref' => 'transfer',
32
  'placeholder' => '',
33
  'types' => $pref['types'],
34
  'excluded' => ''
47
 
48
  }
49
 
 
 
 
50
  // Who to charge
51
  $charge_other = false;
52
+ if ( $charge_from != $user_id ) {
53
  $charge_other = true;
54
+ $charge_from = apply_filters( 'mycred_transfer_charge_from', $charge_from, $prefs, $atts );
55
+ }
56
+ else {
57
+ $charge_from = $user_id;
58
  }
59
 
60
  // Point Types
65
 
66
  $clean = array();
67
  foreach ( $raw as $id ) {
68
+
69
+ $id = sanitize_key( $id );
70
+ if ( $id != '' )
71
+ $clean[] = sanitize_key( $id );
72
+
73
  }
74
+
75
  $available_types = array();
76
 
77
  // Default
80
  // Make sure user is not excluded
81
  if ( $mycred->exclude_user( $charge_from ) ) return '';
82
 
83
+ $status = mycred_user_can_transfer( $charge_from, NULL, 'mycred_default', $ref );
84
  $my_balance = $mycred->get_users_cred( $charge_from );
85
 
86
  // Error. Not enough creds
87
  if ( $status === 'low' ) {
88
+
89
  if ( isset( $pref['errors']['low'] ) && ! empty( $pref['errors']['low'] ) ) {
90
  $no_cred = str_replace( '%limit%', $pref['limit']['limit'], $pref['errors']['low'] );
91
  $no_cred = str_replace( '%Limit%', ucwords( $pref['limit']['limit'] ), $no_cred );
92
  $no_cred = str_replace( '%left%', $mycred->format_creds( $status ), $no_cred );
93
  $output .= '<p class="mycred-transfer-low">' . $mycred->template_tags_general( $no_cred ) . '</p>';
94
  }
95
+
96
  return $output;
97
+
98
  }
99
 
100
  // Error. Over limit
101
  if ( $status === 'limit' ) {
102
+
103
  if ( isset( $pref['errors']['over'] ) && ! empty( $pref['errors']['over'] ) ) {
104
  $no_cred = str_replace( '%limit%', $pref['limit']['limit'], $pref['errors']['over'] );
105
  $no_cred = str_replace( '%Limit%', ucwords( $pref['limit']['limit'] ), $no_cred );
106
  $no_cred = str_replace( '%left%', $mycred->format_creds( $status ), $no_cred );
107
  $output .= '<p class="mycred-transfer-over">' . $mycred->template_tags_general( $no_cred ) . '</p>';
108
  }
109
+
110
  return $output;
111
+
112
  }
113
 
114
  $available_types['mycred_default'] = $mycred->plural();
127
  if ( $status === 'low' || $status === 'limit' ) continue;
128
 
129
  $available_types[ $point_type ] = $points->plural();
130
+
131
  }
132
 
133
  // User does not have access
134
  if ( count( $available_types ) == 0 )
135
  return $excluded;
136
+
137
  }
138
 
139
  // Flag for scripts & styles
157
 
158
  $user = get_user_by( 'id', $pay_to );
159
  if ( $user !== false ) {
160
+
161
  $value = $user->display_name;
162
  if ( isset( $user->$pref['autofill'] ) )
163
  $value = $user->$pref['autofill'];
164
 
165
  $to_input = '<input type="text" name="mycred-transfer-to" value="' . $value . '" readonly="readonly" />';
166
+
167
  }
168
 
169
  }
190
 
191
  }
192
 
193
+ else $before = $after = '';
 
 
194
 
195
  // Select Point type
196
  if ( count( $available_types ) == 1 )
210
 
211
  // Show Balance
212
  if ( (bool) $show_balance === true && ! empty( $pref['templates']['balance'] ) && count( $available_types ) == 1 ) {
213
+
214
  $balance_text = str_replace( '%balance%', $mycred->format_creds( $my_balance ), $pref['templates']['balance'] );
215
+ $extras[] = $mycred->template_tags_general( $balance_text );
216
+
217
  }
218
 
219
  // Show Limits
220
  if ( (bool) $show_limit === true && ! empty( $pref['templates']['limit'] ) && $pref['limit']['limit'] != 'none' && count( $available_types ) == 1 ) {
221
+
222
  $limit_text = str_replace( '%_limit%', $pref['limit']['limit'], $pref['templates']['limit'] );
223
  $limit_text = str_replace( '%limit%', ucwords( $pref['limit']['limit'] ), $limit_text );
224
  $limit_text = str_replace( '%left%', $mycred->format_creds( $status ), $limit_text );
225
+ $extras[] = $mycred->template_tags_general( $limit_text );
226
+
227
  }
228
 
229
  if ( $button == '' )
248
  <li class="mycred-send-amount">
249
  <label><?php _e( 'Amount:', 'mycred' ); ?></label>
250
  <div class="transfer-amount"><?php echo $before; ?><input type="text" class="short" name="mycred-transfer-amount" value="<?php echo $mycred->zero(); ?>" size="8" aria-required="true" /><?php echo $after . ' ' . $type_input; ?></div>
251
+ <?php if ( $charge_other ) : ?><input type="hidden" name="mycred-sender" value="<?php echo absint( $charge_from ); ?>" /><?php endif; ?>
252
  <?php if ( $ref != '' ) : ?><input type="hidden" name="mycred-transfer-ref" value="<?php echo esc_attr( $ref ); ?>" /><?php endif; ?>
253
  <input type="submit" class="button button-primary button-large mycred-click btn btn-primary btn-lg"<?php if ( $pay_to == get_current_user_id() ) echo ' disabled="disabled"'; ?> value="<?php echo esc_attr( $button ); ?>" />
254
 
addons/transfer/includes/mycred-transfer-widgets.php CHANGED
@@ -35,7 +35,7 @@ if ( ! class_exists( 'myCRED_Widget_Transfer' ) ) :
35
  extract( $args, EXTR_SKIP );
36
 
37
  // Prep
38
- $title = $instance['title'];
39
  $mycred = mycred();
40
 
41
  if ( ! isset( $mycred->transfers ) )
35
  extract( $args, EXTR_SKIP );
36
 
37
  // Prep
38
+ $title = $instance['title'];
39
  $mycred = mycred();
40
 
41
  if ( ! isset( $mycred->transfers ) )
addons/transfer/myCRED-addon-transfer.php CHANGED
@@ -180,12 +180,12 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
180
  // Settings
181
  $settings = $this->transfers;
182
 
183
- $before = $this->core->before;
184
- $after = $this->core->after;
185
 
186
  // Limits
187
- $limit = $settings['limit']['limit'];
188
- $limits = array(
189
  'none' => __( 'No limits.', 'mycred' ),
190
  'daily' => __( 'Impose daily limit.', 'mycred' ),
191
  'weekly' => __( 'Impose weekly limit.', 'mycred' )
@@ -193,7 +193,7 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
193
  $available_limits = apply_filters( 'mycred_transfer_limits', $limits, $settings );
194
 
195
  // Autofill by
196
- $autofill = $settings['autofill'];
197
  $autofills = array(
198
  'user_login' => __( 'User Login (user_login)', 'mycred' ),
199
  'user_email' => __( 'User Email (user_email)', 'mycred' )
@@ -206,6 +206,7 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
206
  ?>
207
  <h4><div class="icon icon-active"></div><?php _e( 'Transfers', 'mycred' ); ?></h4>
208
  <div class="body" style="display:none;">
 
209
  <?php if ( count( $this->point_types ) > 1 ) : ?>
210
 
211
  <label class="subheader"><?php _e( 'Point Types', 'mycred' ); ?></label>
@@ -216,9 +217,11 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
216
  <span class="description"><?php _e( 'Select the point types that users can transfer.', 'mycred' ); ?></span>
217
  </li>
218
  </ol>
 
219
  <?php else : ?>
220
 
221
  <input type="hidden" name="mycred_pref_core[transfers][types][]" value="mycred_default" />
 
222
  <?php endif; ?>
223
 
224
  <label class="subheader"><?php _e( 'Log template for sending', 'mycred' ); ?></label>
@@ -240,12 +243,14 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
240
  <li>
241
  <select name="mycred_pref_core[transfers][autofill]" id="myCRED-transfer-autofill">
242
  <?php
 
243
  foreach ( $available_autofill as $key => $label ) {
244
  echo '<option value="' . $key . '"';
245
  if ( $settings['autofill'] == $key ) echo ' selected="selected"';
246
  echo '>' . $label . '</option>';
247
- } ?>
248
 
 
249
  </select><br />
250
  <span class="description"><?php _e( 'Select what user details recipients should be autofilled by.', 'mycred' ); ?></span>
251
  </li>
@@ -259,18 +264,22 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
259
  <label class="subheader"><?php _e( 'Limits', 'mycred' ); ?></label>
260
  <ol id="myCRED-transfer-limits">
261
  <?php
 
262
  // Loop though limits
263
  if ( ! empty( $limits ) ) {
264
- foreach ( $limits as $key => $description ) { ?>
265
 
 
266
  <li>
267
  <input type="radio" name="mycred_pref_core[transfers][limit][limit]" id="myCRED-limit-<?php echo $key; ?>" <?php checked( $limit, $key ); ?> value="<?php echo $key; ?>" />
268
  <label for="myCRED-limit-<?php echo $key; ?>"><?php echo $description; ?></label>
269
  </li>
270
  <?php
 
271
  }
272
- } ?>
273
 
 
274
  <li class="empty">&nbsp;</li>
275
  <li>
276
  <label for="<?php echo $this->field_id( array( 'limit' => 'amount' ) ); ?>"><?php _e( 'Limit Amount', 'mycred' ); ?></label>
@@ -352,7 +361,7 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
352
  /**
353
  * AJAX Transfer Creds
354
  * @since 0.1
355
- * @version 1.5
356
  */
357
  public function ajax_call_transfer() {
358
 
@@ -361,22 +370,19 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
361
  die( json_encode( 'error_1' ) );
362
 
363
  parse_str( $_POST['form'], $post );
364
- unset( $_POST );
365
 
366
  // Required
367
  if ( ! isset( $post['mycred-transfer-to'] ) || ! isset( $post['mycred-transfer-amount'] ) )
368
  die( json_encode( $post ) );
369
 
370
  // Prep
371
- $to = $post['mycred-transfer-to'];
372
-
373
- if ( ! isset( $post['mycred-sender'] ) )
374
- $from = get_current_user_id();
375
 
376
- else {
377
- $from = absint( $post['mycred-sender'] );
 
378
  $from_user = get_userdata( $from );
379
- if ( $from_user === false ) die( -1 );
380
  }
381
 
382
  $ref = 'transfer';
180
  // Settings
181
  $settings = $this->transfers;
182
 
183
+ $before = $this->core->before;
184
+ $after = $this->core->after;
185
 
186
  // Limits
187
+ $limit = $settings['limit']['limit'];
188
+ $limits = array(
189
  'none' => __( 'No limits.', 'mycred' ),
190
  'daily' => __( 'Impose daily limit.', 'mycred' ),
191
  'weekly' => __( 'Impose weekly limit.', 'mycred' )
193
  $available_limits = apply_filters( 'mycred_transfer_limits', $limits, $settings );
194
 
195
  // Autofill by
196
+ $autofill = $settings['autofill'];
197
  $autofills = array(
198
  'user_login' => __( 'User Login (user_login)', 'mycred' ),
199
  'user_email' => __( 'User Email (user_email)', 'mycred' )
206
  ?>
207
  <h4><div class="icon icon-active"></div><?php _e( 'Transfers', 'mycred' ); ?></h4>
208
  <div class="body" style="display:none;">
209
+
210
  <?php if ( count( $this->point_types ) > 1 ) : ?>
211
 
212
  <label class="subheader"><?php _e( 'Point Types', 'mycred' ); ?></label>
217
  <span class="description"><?php _e( 'Select the point types that users can transfer.', 'mycred' ); ?></span>
218
  </li>
219
  </ol>
220
+
221
  <?php else : ?>
222
 
223
  <input type="hidden" name="mycred_pref_core[transfers][types][]" value="mycred_default" />
224
+
225
  <?php endif; ?>
226
 
227
  <label class="subheader"><?php _e( 'Log template for sending', 'mycred' ); ?></label>
243
  <li>
244
  <select name="mycred_pref_core[transfers][autofill]" id="myCRED-transfer-autofill">
245
  <?php
246
+
247
  foreach ( $available_autofill as $key => $label ) {
248
  echo '<option value="' . $key . '"';
249
  if ( $settings['autofill'] == $key ) echo ' selected="selected"';
250
  echo '>' . $label . '</option>';
251
+ }
252
 
253
+ ?>
254
  </select><br />
255
  <span class="description"><?php _e( 'Select what user details recipients should be autofilled by.', 'mycred' ); ?></span>
256
  </li>
264
  <label class="subheader"><?php _e( 'Limits', 'mycred' ); ?></label>
265
  <ol id="myCRED-transfer-limits">
266
  <?php
267
+
268
  // Loop though limits
269
  if ( ! empty( $limits ) ) {
270
+ foreach ( $limits as $key => $description ) {
271
 
272
+ ?>
273
  <li>
274
  <input type="radio" name="mycred_pref_core[transfers][limit][limit]" id="myCRED-limit-<?php echo $key; ?>" <?php checked( $limit, $key ); ?> value="<?php echo $key; ?>" />
275
  <label for="myCRED-limit-<?php echo $key; ?>"><?php echo $description; ?></label>
276
  </li>
277
  <?php
278
+
279
  }
280
+ }
281
 
282
+ ?>
283
  <li class="empty">&nbsp;</li>
284
  <li>
285
  <label for="<?php echo $this->field_id( array( 'limit' => 'amount' ) ); ?>"><?php _e( 'Limit Amount', 'mycred' ); ?></label>
361
  /**
362
  * AJAX Transfer Creds
363
  * @since 0.1
364
+ * @version 1.5.1
365
  */
366
  public function ajax_call_transfer() {
367
 
370
  die( json_encode( 'error_1' ) );
371
 
372
  parse_str( $_POST['form'], $post );
 
373
 
374
  // Required
375
  if ( ! isset( $post['mycred-transfer-to'] ) || ! isset( $post['mycred-transfer-amount'] ) )
376
  die( json_encode( $post ) );
377
 
378
  // Prep
379
+ $to = $post['mycred-transfer-to'];
 
 
 
380
 
381
+ $from = get_current_user_id();
382
+ if ( isset( $post['mycred-sender'] ) ) {
383
+ $from = absint( $post['mycred-sender'] );
384
  $from_user = get_userdata( $from );
385
+ if ( ! isset( $from_user->ID ) ) die( -1 );
386
  }
387
 
388
  $ref = 'transfer';
includes/importers/mycred-balances.php CHANGED
@@ -1,7 +1,12 @@
1
  <?php
2
  if ( ! defined( 'myCRED_VERSION' ) ) exit;
3
 
4
- if ( class_exists( 'WP_Importer' ) ) {
 
 
 
 
 
5
  class myCRED_Importer_Balances extends WP_Importer {
6
 
7
  var $id;
@@ -16,7 +21,9 @@ if ( class_exists( 'WP_Importer' ) ) {
16
  * Construct
17
  */
18
  public function __construct() {
 
19
  $this->import_page = 'mycred_import_balance';
 
20
  }
21
 
22
  /**
@@ -24,6 +31,7 @@ if ( class_exists( 'WP_Importer' ) ) {
24
  * Manages the three separate stages of the CSV import process
25
  */
26
  function load() {
 
27
  $this->header();
28
 
29
  if ( ! empty( $_POST['delimiter'] ) )
@@ -34,11 +42,17 @@ if ( class_exists( 'WP_Importer' ) ) {
34
 
35
  $step = empty( $_GET['step'] ) ? 0 : (int) $_GET['step'];
36
  switch ( $step ) {
37
- case 0:
 
 
38
  $this->greet();
39
- break;
40
- case 1:
 
 
 
41
  check_admin_referer( 'import-upload' );
 
42
  if ( $this->handle_upload() ) {
43
 
44
  if ( $this->id )
@@ -56,39 +70,51 @@ if ( class_exists( 'WP_Importer' ) ) {
56
  @flush();
57
 
58
  $this->import( $file );
 
59
  }
60
- break;
 
 
61
  }
 
62
  $this->footer();
 
63
  }
64
 
65
  /**
66
  * format_data_from_csv function.
67
  */
68
  function format_data_from_csv( $data, $enc ) {
 
69
  return ( $enc == 'UTF-8' ) ? $data : utf8_encode( $data );
 
70
  }
71
 
72
  /**
73
  * import function.
74
  */
75
  function import( $file ) {
 
76
  global $wpdb, $mycred;
77
 
78
  $this->imported = $this->skipped = 0;
79
 
80
  if ( ! is_file( $file ) ) {
 
81
  echo '<p><strong>' . __( 'Sorry, there has been an error.', 'mycred' ) . '</strong><br />';
82
  echo __( 'The file does not exist, please try again.', 'mycred' ) . '</p>';
 
83
  $this->footer();
84
- die();
 
 
85
  }
86
 
87
  ini_set( 'auto_detect_line_endings', '1' );
88
 
89
  if ( ( $handle = fopen( $file, "r" ) ) !== FALSE ) {
90
 
91
- $header = fgetcsv( $handle, 0, $this->delimiter );
92
  $no_of_columns = sizeof( $header );
93
  if ( $no_of_columns == 3 || $no_of_columns == 4 ) {
94
 
@@ -109,10 +135,10 @@ if ( class_exists( 'WP_Importer' ) ) {
109
 
110
  if ( $user === false )
111
  $user = get_user_by( 'email', $id );
112
-
113
  if ( $user === false )
114
  $user = get_user_by( 'login', $id );
115
-
116
  if ( $user === false ) {
117
  $this->skipped ++;
118
  continue;
@@ -131,9 +157,9 @@ if ( class_exists( 'WP_Importer' ) ) {
131
  $current_balance = mycred_get_user_meta( $user->ID, $point_type, '', true );
132
  $balance = $current_balance+$balance;
133
  }
134
-
135
  mycred_update_user_meta( $user->ID, $point_type, '', $balance );
136
-
137
  if ( ! empty( $log_entry ) ) {
138
  $wpdb->insert(
139
  $mycred->log_table,
@@ -152,7 +178,8 @@ if ( class_exists( 'WP_Importer' ) ) {
152
 
153
  $loop ++;
154
  $this->imported++;
155
- }
 
156
 
157
  } else {
158
 
@@ -163,7 +190,8 @@ if ( class_exists( 'WP_Importer' ) ) {
163
 
164
  }
165
 
166
- fclose( $handle );
 
167
  }
168
 
169
  // Show Result
@@ -172,15 +200,18 @@ if ( class_exists( 'WP_Importer' ) ) {
172
  </p></div>';
173
 
174
  $this->import_end();
 
175
  }
176
 
177
  /**
178
  * Performs post-import cleanup of files and the cache
179
  */
180
  function import_end() {
 
181
  echo '<p><a href="' . admin_url( 'admin.php?page=myCRED' ) . '" class="button button-large button-primary">' . __( 'View Log', 'mycred' ) . '</a> <a href="' . admin_url( 'import.php' ) . '" class="button button-large button-primary">' . __( 'Import More', 'mycred' ) . '</a></p>';
182
 
183
  do_action( 'import_end' );
 
184
  }
185
 
186
  /**
@@ -218,26 +249,32 @@ if ( class_exists( 'WP_Importer' ) ) {
218
  }
219
 
220
  return true;
 
221
  }
222
 
223
  /**
224
  * header function.
225
  */
226
  function header() {
 
227
  echo '<div class="wrap"><h2>' . __( 'Import Balances', 'mycred' ) . '</h2>';
 
228
  }
229
 
230
  /**
231
  * footer function.
232
  */
233
  function footer() {
 
234
  echo '</div>';
 
235
  }
236
 
237
  /**
238
  * greet function.
239
  */
240
  function greet() {
 
241
  global $mycred;
242
 
243
  echo '<div class="narrow">';
@@ -245,57 +282,65 @@ if ( class_exists( 'WP_Importer' ) ) {
245
 
246
  $action = 'admin.php?import=mycred_import_balance&step=1';
247
 
248
- $bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() );
249
- $size = size_format( $bytes );
250
  $upload_dir = wp_upload_dir();
 
251
  if ( ! empty( $upload_dir['error'] ) ) :
252
- ?><div class="error"><p><?php _e( 'Before you can upload your import file, you will need to fix the following error:', 'mycred' ); ?></p>
253
- <p><strong><?php echo $upload_dir['error']; ?></strong></p></div><?php
 
 
 
 
254
  else :
255
- ?>
256
- <form enctype="multipart/form-data" id="import-upload-form" method="post" action="<?php echo esc_attr( wp_nonce_url( $action, 'import-upload' ) ); ?>">
257
- <table class="form-table">
258
- <tbody>
259
- <tr>
260
- <th>
261
- <label for="upload"><?php _e( 'Choose a file from your computer:', 'mycred' ); ?></label>
262
- </th>
263
- <td>
264
- <input type="file" id="upload" name="import" size="25" />
265
- <input type="hidden" name="action" value="save" />
266
- <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
267
- <small><?php printf( __( 'Maximum size: %s', 'mycred' ), $size ); ?></small>
268
- </td>
269
- </tr>
270
- <tr>
271
- <th>
272
- <label for="file_url"><?php _e( 'OR enter path to file:', 'mycred' ); ?></label>
273
- </th>
274
- <td>
275
- <?php echo ' ' . ABSPATH . ' '; ?><input type="text" id="file_url" name="file_url" size="25" />
276
- </td>
277
- </tr>
278
- <tr>
279
- <th><label><?php _e( 'Delimiter', 'mycred' ); ?></label><br/></th>
280
- <td><input type="text" name="delimiter" placeholder="," size="2" /></td>
281
- </tr>
282
- <tr>
283
- <th><label><?php _e( 'Method', 'mycred' ); ?></label><br/></th>
284
- <td><select name="method">
285
- <option value=""><?php _e( 'Replace current balances with the amount in this CSV file', 'mycred' ); ?></option>
286
- <option value="add"><?php _e( 'Adjust current balances according to the amount in this CSV file', 'mycred' ); ?></option>
287
- </select></td>
288
- </tr>
289
- </tbody>
290
- </table>
291
- <p class="submit">
292
- <input type="submit" class="button" value="<?php esc_attr_e( 'Upload file and import' ); ?>" />
293
- </p>
294
- </form>
295
- <?php
 
 
296
  endif;
297
 
298
  echo '</div>';
 
299
  }
300
 
301
  /**
@@ -303,7 +348,12 @@ if ( class_exists( 'WP_Importer' ) ) {
303
  * @return int 60
304
  */
305
  function bump_request_timeout( $val ) {
 
306
  return 60;
 
307
  }
 
308
  }
309
- }
 
 
1
  <?php
2
  if ( ! defined( 'myCRED_VERSION' ) ) exit;
3
 
4
+ /**
5
+ * Import: Balances
6
+ * @since 1.2
7
+ * @version 1.2
8
+ */
9
+ if ( class_exists( 'WP_Importer' ) ) :
10
  class myCRED_Importer_Balances extends WP_Importer {
11
 
12
  var $id;
21
  * Construct
22
  */
23
  public function __construct() {
24
+
25
  $this->import_page = 'mycred_import_balance';
26
+
27
  }
28
 
29
  /**
31
  * Manages the three separate stages of the CSV import process
32
  */
33
  function load() {
34
+
35
  $this->header();
36
 
37
  if ( ! empty( $_POST['delimiter'] ) )
42
 
43
  $step = empty( $_GET['step'] ) ? 0 : (int) $_GET['step'];
44
  switch ( $step ) {
45
+
46
+ case 0 :
47
+
48
  $this->greet();
49
+
50
+ break;
51
+
52
+ case 1 :
53
+
54
  check_admin_referer( 'import-upload' );
55
+
56
  if ( $this->handle_upload() ) {
57
 
58
  if ( $this->id )
70
  @flush();
71
 
72
  $this->import( $file );
73
+
74
  }
75
+
76
+ break;
77
+
78
  }
79
+
80
  $this->footer();
81
+
82
  }
83
 
84
  /**
85
  * format_data_from_csv function.
86
  */
87
  function format_data_from_csv( $data, $enc ) {
88
+
89
  return ( $enc == 'UTF-8' ) ? $data : utf8_encode( $data );
90
+
91
  }
92
 
93
  /**
94
  * import function.
95
  */
96
  function import( $file ) {
97
+
98
  global $wpdb, $mycred;
99
 
100
  $this->imported = $this->skipped = 0;
101
 
102
  if ( ! is_file( $file ) ) {
103
+
104
  echo '<p><strong>' . __( 'Sorry, there has been an error.', 'mycred' ) . '</strong><br />';
105
  echo __( 'The file does not exist, please try again.', 'mycred' ) . '</p>';
106
+
107
  $this->footer();
108
+
109
+ die;
110
+
111
  }
112
 
113
  ini_set( 'auto_detect_line_endings', '1' );
114
 
115
  if ( ( $handle = fopen( $file, "r" ) ) !== FALSE ) {
116
 
117
+ $header = fgetcsv( $handle, 0, $this->delimiter );
118
  $no_of_columns = sizeof( $header );
119
  if ( $no_of_columns == 3 || $no_of_columns == 4 ) {
120
 
135
 
136
  if ( $user === false )
137
  $user = get_user_by( 'email', $id );
138
+
139
  if ( $user === false )
140
  $user = get_user_by( 'login', $id );
141
+
142
  if ( $user === false ) {
143
  $this->skipped ++;
144
  continue;
157
  $current_balance = mycred_get_user_meta( $user->ID, $point_type, '', true );
158
  $balance = $current_balance+$balance;
159
  }
160
+
161
  mycred_update_user_meta( $user->ID, $point_type, '', $balance );
162
+
163
  if ( ! empty( $log_entry ) ) {
164
  $wpdb->insert(
165
  $mycred->log_table,
178
 
179
  $loop ++;
180
  $this->imported++;
181
+
182
+ }
183
 
184
  } else {
185
 
190
 
191
  }
192
 
193
+ fclose( $handle );
194
+
195
  }
196
 
197
  // Show Result
200
  </p></div>';
201
 
202
  $this->import_end();
203
+
204
  }
205
 
206
  /**
207
  * Performs post-import cleanup of files and the cache
208
  */
209
  function import_end() {
210
+
211
  echo '<p><a href="' . admin_url( 'admin.php?page=myCRED' ) . '" class="button button-large button-primary">' . __( 'View Log', 'mycred' ) . '</a> <a href="' . admin_url( 'import.php' ) . '" class="button button-large button-primary">' . __( 'Import More', 'mycred' ) . '</a></p>';
212
 
213
  do_action( 'import_end' );
214
+
215
  }
216
 
217
  /**
249
  }
250
 
251
  return true;
252
+
253
  }
254
 
255
  /**
256
  * header function.
257
  */
258
  function header() {
259
+
260
  echo '<div class="wrap"><h2>' . __( 'Import Balances', 'mycred' ) . '</h2>';
261
+
262
  }
263
 
264
  /**
265
  * footer function.
266
  */
267
  function footer() {
268
+
269
  echo '</div>';
270
+
271
  }
272
 
273
  /**
274
  * greet function.
275
  */
276
  function greet() {
277
+
278
  global $mycred;
279
 
280
  echo '<div class="narrow">';
282
 
283
  $action = 'admin.php?import=mycred_import_balance&step=1';
284
 
285
+ $bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() );
286
+ $size = size_format( $bytes );
287
  $upload_dir = wp_upload_dir();
288
+
289
  if ( ! empty( $upload_dir['error'] ) ) :
290
+
291
+ ?>
292
+ <div class="error"><p><?php _e( 'Before you can upload your import file, you will need to fix the following error:', 'mycred' ); ?></p>
293
+ <p><strong><?php echo $upload_dir['error']; ?></strong></p></div>
294
+ <?php
295
+
296
  else :
297
+
298
+ ?>
299
+ <form enctype="multipart/form-data" id="import-upload-form" method="post" action="<?php echo esc_attr( wp_nonce_url( $action, 'import-upload' ) ); ?>">
300
+ <table class="form-table">
301
+ <tbody>
302
+ <tr>
303
+ <th>
304
+ <label for="upload"><?php _e( 'Choose a file from your computer:', 'mycred' ); ?></label>
305
+ </th>
306
+ <td>
307
+ <input type="file" id="upload" name="import" size="25" />
308
+ <input type="hidden" name="action" value="save" />
309
+ <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
310
+ <small><?php printf( __( 'Maximum size: %s', 'mycred' ), $size ); ?></small>
311
+ </td>
312
+ </tr>
313
+ <tr>
314
+ <th>
315
+ <label for="file_url"><?php _e( 'OR enter path to file:', 'mycred' ); ?></label>
316
+ </th>
317
+ <td>
318
+ <?php echo ' ' . ABSPATH . ' '; ?><input type="text" id="file_url" name="file_url" size="25" />
319
+ </td>
320
+ </tr>
321
+ <tr>
322
+ <th><label><?php _e( 'Delimiter', 'mycred' ); ?></label><br/></th>
323
+ <td><input type="text" name="delimiter" placeholder="," size="2" /></td>
324
+ </tr>
325
+ <tr>
326
+ <th><label><?php _e( 'Method', 'mycred' ); ?></label><br/></th>
327
+ <td><select name="method">
328
+ <option value=""><?php _e( 'Replace current balances with the amount in this CSV file', 'mycred' ); ?></option>
329
+ <option value="add"><?php _e( 'Adjust current balances according to the amount in this CSV file', 'mycred' ); ?></option>
330
+ </select></td>
331
+ </tr>
332
+ </tbody>
333
+ </table>
334
+ <p class="submit">
335
+ <input type="submit" class="button" value="<?php esc_attr_e( 'Upload file and import' ); ?>" />
336
+ </p>
337
+ </form>
338
+ <?php
339
+
340
  endif;
341
 
342
  echo '</div>';
343
+
344
  }
345
 
346
  /**
348
  * @return int 60
349
  */
350
  function bump_request_timeout( $val ) {
351
+
352
  return 60;
353
+
354
  }
355
+
356
  }
357
+ endif;
358
+
359
+ ?>
includes/importers/mycred-cubepoints.php CHANGED
@@ -1,7 +1,12 @@
1
  <?php
2
  if ( ! defined( 'myCRED_VERSION' ) ) exit;
3
 
4
- if ( class_exists( 'WP_Importer' ) ) {
 
 
 
 
 
5
  class myCRED_Importer_CubePoints extends WP_Importer {
6
 
7
  var $id;
@@ -16,21 +21,29 @@ if ( class_exists( 'WP_Importer' ) ) {
16
  * Construct
17
  */
18
  public function __construct() {
 
19
  $this->import_page = 'mycred_import_cp';
 
20
  }
21
 
22
  /**
23
  * Run the importer based on current step
24
  */
25
  function load() {
 
26
  $this->header();
27
 
28
  $step = empty( $_GET['step'] ) ? 0 : (int) $_GET['step'];
29
  switch ( $step ) {
30
- case 0:
 
 
31
  $this->greet();
32
- break;
33
- case 1:
 
 
 
34
  if ( $this->check_cubepoints() ) {
35
 
36
  @set_time_limit(0);
@@ -39,22 +52,26 @@ if ( class_exists( 'WP_Importer' ) ) {
39
 
40
  $this->import();
41
  }
42
- break;
 
 
43
  }
 
44
  $this->footer();
 
45
  }
46
 
47
  /**
48
  * import function.
49
  */
50
  function import() {
 
51
  global $wpdb, $mycred;
52
 
53
  $this->imported = $this->skipped = 0;
54
 
55
  $action = $_POST['action'];
56
- $type = $_POST['type'];
57
-
58
  $cp_log = $wpdb->prefix . 'cp';
59
 
60
  if ( $type != 'mycred_default' )
@@ -120,7 +137,7 @@ if ( class_exists( 'WP_Importer' ) ) {
120
  elseif ( $entry->type == 'donate_from' ) {
121
 
122
  $ref = 'transfer';
123
-
124
  $data = maybe_unserialize( $entry->data );
125
  if ( isset( $data['to'] ) )
126
  $ref_id = absint( $data['to'] );
@@ -247,8 +264,11 @@ if ( class_exists( 'WP_Importer' ) ) {
247
  );
248
 
249
  $this->imported++;
 
250
  }
 
251
  }
 
252
  }
253
 
254
  if ( $action == 'balance' || $action == 'both' ) {
@@ -258,6 +278,7 @@ if ( class_exists( 'WP_Importer' ) ) {
258
  array( 'meta_key' => $type ),
259
  array( '%s' )
260
  );
 
261
  $rows = $wpdb->query( $wpdb->prepare( "
262
  INSERT INTO {$wpdb->usermeta} ( user_id, meta_key, meta_value )
263
  SELECT um.user_id, %s, um.meta_value
@@ -271,34 +292,42 @@ if ( class_exists( 'WP_Importer' ) ) {
271
 
272
  // Show Result
273
  if ( $this->imported == 0 ) {
 
274
  echo '
275
  <div class="updated below-h2">
276
  <p>' . ( $action == 'balance' ) ? __( 'No balances were imported.', 'mycred' ) : __( 'No log entries were imported!', 'mycred' ) . '</p>
277
  </div>';
 
278
  }
279
  else {
 
280
  echo '
281
  <div class="updated below-h2">
282
  <p>' . sprintf( __( 'Import complete - A total of <strong>%d</strong> entries were successfully imported. <strong>%d</strong> was skipped.', 'mycred' ), $this->imported, $this->skipped ) . '</p>
283
  </div>';
 
284
  }
285
 
286
  $this->import_end();
 
287
  }
288
 
289
  /**
290
  * Adds link to the log after completed import
291
  */
292
  function import_end() {
 
293
  echo '<p><a href="' . admin_url( 'admin.php?page=myCRED' ) . '" class="button button-large button-primary">' . __( 'View Log', 'mycred' ) . '</a> <a href="' . admin_url( 'import.php' ) . '" class="button button-large button-primary">' . __( 'Import More', 'mycred' ) . '</a></p>';
294
 
295
  do_action( 'import_end' );
 
296
  }
297
 
298
  /**
299
  * Checks CubePoints Installation
300
  */
301
  function check_cubepoints() {
 
302
  global $wpdb;
303
 
304
  $cp_log = $wpdb->prefix . 'cp';
@@ -308,26 +337,32 @@ if ( class_exists( 'WP_Importer' ) ) {
308
  }
309
 
310
  return true;
 
311
  }
312
 
313
  /**
314
  * header function.
315
  */
316
  function header() {
 
317
  echo '<div class="wrap"><h2>' . __( 'Import CubePoints Log', 'mycred' ) . '</h2>';
 
318
  }
319
 
320
  /**
321
  * footer function.
322
  */
323
  function footer() {
 
324
  echo '</div>';
 
325
  }
326
 
327
  /**
328
  * greet function.
329
  */
330
  function greet() {
 
331
  global $wpdb, $mycred;
332
 
333
  $actions = array(
@@ -341,8 +376,9 @@ if ( class_exists( 'WP_Importer' ) ) {
341
  $mycred_types = mycred_get_types();
342
 
343
  echo '<div class="narrow">';
344
- echo '<p>' . __( 'Import CubePoints log entries and / or balances.', 'mycred' ).'</p>'; ?>
345
 
 
346
  <form id="import-setup" method="post" action="<?php echo esc_attr( wp_nonce_url( $action, 'import-upload' ) ); ?>">
347
  <table class="form-table">
348
  <tbody>
@@ -365,11 +401,17 @@ if ( class_exists( 'WP_Importer' ) ) {
365
  <label for="import-action"><?php _e( 'Point Type', 'mycred' ); ?></label>
366
  </th>
367
  <td>
 
368
  <?php if ( count( $mycred_types ) == 1 ) : ?>
 
369
  <strong><?php echo $mycred->plural(); ?></strong><input type="hidden" name="type" value="mycred_default" />
 
370
  <?php else : ?>
 
371
  <?php mycred_types_select_from_dropdown( 'type', 'mycred-type', 'mycred_default' ); ?>
 
372
  <?php endif; ?>
 
373
  </td>
374
  </tr>
375
  </tbody>
@@ -379,7 +421,12 @@ if ( class_exists( 'WP_Importer' ) ) {
379
  </p>
380
  </form>
381
  <?php
 
382
  echo '</div>';
 
383
  }
 
384
  }
385
- }
 
 
1
  <?php
2
  if ( ! defined( 'myCRED_VERSION' ) ) exit;
3
 
4
+ /**
5
+ * Import: CubePoint Balances
6
+ * @since 1.2
7
+ * @version 1.2
8
+ */
9
+ if ( class_exists( 'WP_Importer' ) ) :
10
  class myCRED_Importer_CubePoints extends WP_Importer {
11
 
12
  var $id;
21
  * Construct
22
  */
23
  public function __construct() {
24
+
25
  $this->import_page = 'mycred_import_cp';
26
+
27
  }
28
 
29
  /**
30
  * Run the importer based on current step
31
  */
32
  function load() {
33
+
34
  $this->header();
35
 
36
  $step = empty( $_GET['step'] ) ? 0 : (int) $_GET['step'];
37
  switch ( $step ) {
38
+
39
+ case 0 :
40
+
41
  $this->greet();
42
+
43
+ break;
44
+
45
+ case 1 :
46
+
47
  if ( $this->check_cubepoints() ) {
48
 
49
  @set_time_limit(0);
52
 
53
  $this->import();
54
  }
55
+
56
+ break;
57
+
58
  }
59
+
60
  $this->footer();
61
+
62
  }
63
 
64
  /**
65
  * import function.
66
  */
67
  function import() {
68
+
69
  global $wpdb, $mycred;
70
 
71
  $this->imported = $this->skipped = 0;
72
 
73
  $action = $_POST['action'];
74
+ $type = $_POST['type'];
 
75
  $cp_log = $wpdb->prefix . 'cp';
76
 
77
  if ( $type != 'mycred_default' )
137
  elseif ( $entry->type == 'donate_from' ) {
138
 
139
  $ref = 'transfer';
140
+
141
  $data = maybe_unserialize( $entry->data );
142
  if ( isset( $data['to'] ) )
143
  $ref_id = absint( $data['to'] );
264
  );
265
 
266
  $this->imported++;
267
+
268
  }
269
+
270
  }
271
+
272
  }
273
 
274
  if ( $action == 'balance' || $action == 'both' ) {
278
  array( 'meta_key' => $type ),
279
  array( '%s' )
280
  );
281
+
282
  $rows = $wpdb->query( $wpdb->prepare( "
283
  INSERT INTO {$wpdb->usermeta} ( user_id, meta_key, meta_value )
284
  SELECT um.user_id, %s, um.meta_value
292
 
293
  // Show Result
294
  if ( $this->imported == 0 ) {
295
+
296
  echo '
297
  <div class="updated below-h2">
298
  <p>' . ( $action == 'balance' ) ? __( 'No balances were imported.', 'mycred' ) : __( 'No log entries were imported!', 'mycred' ) . '</p>
299
  </div>';
300
+
301
  }
302
  else {
303
+
304
  echo '
305
  <div class="updated below-h2">
306
  <p>' . sprintf( __( 'Import complete - A total of <strong>%d</strong> entries were successfully imported. <strong>%d</strong> was skipped.', 'mycred' ), $this->imported, $this->skipped ) . '</p>
307
  </div>';
308
+
309
  }
310
 
311
  $this->import_end();
312
+
313
  }
314
 
315
  /**
316
  * Adds link to the log after completed import
317
  */
318
  function import_end() {
319
+
320
  echo '<p><a href="' . admin_url( 'admin.php?page=myCRED' ) . '" class="button button-large button-primary">' . __( 'View Log', 'mycred' ) . '</a> <a href="' . admin_url( 'import.php' ) . '" class="button button-large button-primary">' . __( 'Import More', 'mycred' ) . '</a></p>';
321
 
322
  do_action( 'import_end' );
323
+
324
  }
325
 
326
  /**
327
  * Checks CubePoints Installation
328
  */
329
  function check_cubepoints() {
330
+
331
  global $wpdb;
332
 
333
  $cp_log = $wpdb->prefix . 'cp';
337
  }
338
 
339
  return true;
340
+
341
  }
342
 
343
  /**
344
  * header function.
345
  */
346
  function header() {
347
+
348
  echo '<div class="wrap"><h2>' . __( 'Import CubePoints Log', 'mycred' ) . '</h2>';
349
+
350
  }
351
 
352
  /**
353
  * footer function.
354
  */
355
  function footer() {
356
+
357
  echo '</div>';
358
+
359
  }
360
 
361
  /**
362
  * greet function.
363
  */
364
  function greet() {
365
+
366
  global $wpdb, $mycred;
367
 
368
  $actions = array(
376
  $mycred_types = mycred_get_types();
377
 
378
  echo '<div class="narrow">';
379
+ echo '<p>' . __( 'Import CubePoints log entries and / or balances.', 'mycred' ).'</p>';
380
 
381
+ ?>
382
  <form id="import-setup" method="post" action="<?php echo esc_attr( wp_nonce_url( $action, 'import-upload' ) ); ?>">
383
  <table class="form-table">
384
  <tbody>
401
  <label for="import-action"><?php _e( 'Point Type', 'mycred' ); ?></label>
402
  </th>
403
  <td>
404
+
405
  <?php if ( count( $mycred_types ) == 1 ) : ?>
406
+
407
  <strong><?php echo $mycred->plural(); ?></strong><input type="hidden" name="type" value="mycred_default" />
408
+
409
  <?php else : ?>
410
+
411
  <?php mycred_types_select_from_dropdown( 'type', 'mycred-type', 'mycred_default' ); ?>
412
+
413
  <?php endif; ?>
414
+
415
  </td>
416
  </tr>
417
  </tbody>
421
  </p>
422
  </form>
423
  <?php
424
+
425
  echo '</div>';
426
+
427
  }
428
+
429
  }
430
+ endif;
431
+
432
+ ?>
includes/importers/mycred-log-entries.php CHANGED
@@ -1,7 +1,12 @@
1
  <?php
2
  if ( ! defined( 'myCRED_VERSION' ) ) exit;
3
 
4
- if ( class_exists( 'WP_Importer' ) ) {
 
 
 
 
 
5
  class myCRED_Importer_Log_Entires extends WP_Importer {
6
 
7
  var $id;
@@ -16,7 +21,9 @@ if ( class_exists( 'WP_Importer' ) ) {
16
  * Construct
17
  */
18
  public function __construct() {
 
19
  $this->import_page = 'mycred_import_log';
 
20
  }
21
 
22
  /**
@@ -24,6 +31,7 @@ if ( class_exists( 'WP_Importer' ) ) {
24
  * Manages the three separate stages of the CSV import process
25
  */
26
  function load() {
 
27
  $this->header();
28
 
29
  if ( ! empty( $_POST['delimiter'] ) )
@@ -34,11 +42,17 @@ if ( class_exists( 'WP_Importer' ) ) {
34
 
35
  $step = empty( $_GET['step'] ) ? 0 : (int) $_GET['step'];
36
  switch ( $step ) {
37
- case 0:
 
 
38
  $this->greet();
39
- break;
40
- case 1:
 
 
 
41
  check_admin_referer( 'import-upload' );
 
42
  if ( $this->handle_upload() ) {
43
 
44
  if ( $this->id )
@@ -56,32 +70,44 @@ if ( class_exists( 'WP_Importer' ) ) {
56
  @flush();
57
 
58
  $this->import( $file );
 
59
  }
60
- break;
 
 
61
  }
 
62
  $this->footer();
 
63
  }
64
 
65
  /**
66
  * format_data_from_csv function.
67
  */
68
  function format_data_from_csv( $data, $enc ) {
 
69
  return ( $enc == 'UTF-8' ) ? $data : utf8_encode( $data );
 
70
  }
71
 
72
  /**
73
  * import function.
74
  */
75
  function import( $file ) {
 
76
  global $wpdb, $mycred;
77
 
78
  $this->imported = $this->skipped = 0;
79
 
80
  if ( ! is_file( $file ) ) {
 
81
  echo '<p><strong>' . __( 'Sorry, there has been an error.', 'mycred' ) . '</strong><br />';
82
  echo __( 'The file does not exist, please try again.', 'mycred' ) . '</p>';
 
83
  $this->footer();
84
- die();
 
 
85
  }
86
 
87
  ini_set( 'auto_detect_line_endings', '1' );
@@ -119,18 +145,22 @@ if ( class_exists( 'WP_Importer' ) ) {
119
 
120
  $loop ++;
121
  $this->imported++;
122
- }
 
123
 
124
  } else {
125
 
126
  echo '<p><strong>' . __( 'Sorry, there has been an error.', 'mycred' ) . '</strong><br />';
127
  echo __( 'The CSV is invalid.', 'mycred' ) . '</p>';
 
128
  $this->footer();
129
- die();
 
130
 
131
  }
132
 
133
- fclose( $handle );
 
134
  }
135
 
136
  // Show Result
@@ -139,15 +169,18 @@ if ( class_exists( 'WP_Importer' ) ) {
139
  </p></div>';
140
 
141
  $this->import_end();
 
142
  }
143
 
144
  /**
145
  * Performs post-import cleanup of files and the cache
146
  */
147
  function import_end() {
 
148
  echo '<p><a href="' . admin_url( 'admin.php?page=myCRED' ) . '" class="button button-large button-primary">' . __( 'View Log', 'mycred' ) . '</a> <a href="' . admin_url( 'import.php' ) . '" class="button button-large button-primary">' . __( 'Import More', 'mycred' ) . '</a></p>';
149
 
150
  do_action( 'import_end' );
 
151
  }
152
 
153
  /**
@@ -162,9 +195,12 @@ if ( class_exists( 'WP_Importer' ) ) {
162
  $file = wp_import_handle_upload();
163
 
164
  if ( isset( $file['error'] ) ) {
 
165
  echo '<p><strong>' . __( 'Sorry, there has been an error.', 'mycred' ) . '</strong><br />';
166
  echo esc_html( $file['error'] ) . '</p>';
 
167
  return false;
 
168
  }
169
 
170
  $this->id = (int) $file['id'];
@@ -185,26 +221,32 @@ if ( class_exists( 'WP_Importer' ) ) {
185
  }
186
 
187
  return true;
 
188
  }
189
 
190
  /**
191
  * header function.
192
  */
193
  function header() {
 
194
  echo '<div class="wrap"><h2>' . __( 'Import Log Entries', 'mycred' ) . '</h2>';
 
195
  }
196
 
197
  /**
198
  * footer function.
199
  */
200
  function footer() {
 
201
  echo '</div>';
 
202
  }
203
 
204
  /**
205
  * greet function.
206
  */
207
  function greet() {
 
208
  global $mycred;
209
 
210
  echo '<div class="narrow">';
@@ -212,50 +254,57 @@ if ( class_exists( 'WP_Importer' ) ) {
212
 
213
  $action = 'admin.php?import=mycred_import_log&step=1';
214
 
215
- $bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() );
216
- $size = size_format( $bytes );
217
  $upload_dir = wp_upload_dir();
218
  if ( ! empty( $upload_dir['error'] ) ) :
219
- ?><div class="error"><p><?php _e( 'Before you can upload your import file, you will need to fix the following error:', 'mycred' ); ?></p>
220
- <p><strong><?php echo $upload_dir['error']; ?></strong></p></div><?php
 
 
 
 
221
  else :
222
- ?>
223
- <form enctype="multipart/form-data" id="import-upload-form" method="post" action="<?php echo esc_attr( wp_nonce_url( $action, 'import-upload' ) ); ?>">
224
- <table class="form-table">
225
- <tbody>
226
- <tr>
227
- <th>
228
- <label for="upload"><?php _e( 'Choose a file from your computer:', 'mycred' ); ?></label>
229
- </th>
230
- <td>
231
- <input type="file" id="upload" name="import" size="25" />
232
- <input type="hidden" name="action" value="save" />
233
- <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
234
- <small><?php printf( __( 'Maximum size: %s', 'mycred' ), $size ); ?></small>
235
- </td>
236
- </tr>
237
- <tr>
238
- <th>
239
- <label for="file_url"><?php _e( 'OR enter path to file:', 'mycred' ); ?></label>
240
- </th>
241
- <td>
242
- <?php echo ' ' . ABSPATH . ' '; ?><input type="text" id="file_url" name="file_url" size="25" />
243
- </td>
244
- </tr>
245
- <tr>
246
- <th><label><?php _e( 'Delimiter', 'mycred' ); ?></label><br/></th>
247
- <td><input type="text" name="delimiter" placeholder="," size="2" /></td>
248
- </tr>
249
- </tbody>
250
- </table>
251
- <p class="submit">
252
- <input type="submit" class="button" value="<?php esc_attr_e( 'Upload file and import' ); ?>" />
253
- </p>
254
- </form>
255
- <?php
 
 
256
  endif;
257
 
258
  echo '</div>';
 
259
  }
260
 
261
  /**
@@ -263,7 +312,12 @@ if ( class_exists( 'WP_Importer' ) ) {
263
  * @return int 60
264
  */
265
  function bump_request_timeout( $val ) {
 
266
  return 60;
 
267
  }
 
268
  }
269
- }
 
 
1
  <?php
2
  if ( ! defined( 'myCRED_VERSION' ) ) exit;
3
 
4
+ /**
5
+ * Import: Log Entries
6
+ * @since 1.2
7
+ * @version 1.2
8
+ */
9
+ if ( class_exists( 'WP_Importer' ) ) :
10
  class myCRED_Importer_Log_Entires extends WP_Importer {
11
 
12
  var $id;
21
  * Construct
22
  */
23
  public function __construct() {
24
+
25
  $this->import_page = 'mycred_import_log';
26
+
27
  }
28
 
29
  /**
31
  * Manages the three separate stages of the CSV import process
32
  */
33
  function load() {
34
+
35
  $this->header();
36
 
37
  if ( ! empty( $_POST['delimiter'] ) )
42
 
43
  $step = empty( $_GET['step'] ) ? 0 : (int) $_GET['step'];
44
  switch ( $step ) {
45
+
46
+ case 0 :
47
+
48
  $this->greet();
49
+
50
+ break;
51
+
52
+ case 1 :
53
+
54
  check_admin_referer( 'import-upload' );
55
+
56
  if ( $this->handle_upload() ) {
57
 
58
  if ( $this->id )
70
  @flush();
71
 
72
  $this->import( $file );
73
+
74
  }
75
+
76
+ break;
77
+
78
  }
79
+
80
  $this->footer();
81
+
82
  }
83
 
84
  /**
85
  * format_data_from_csv function.
86
  */
87
  function format_data_from_csv( $data, $enc ) {
88
+
89
  return ( $enc == 'UTF-8' ) ? $data : utf8_encode( $data );
90
+
91
  }
92
 
93
  /**
94
  * import function.
95
  */
96
  function import( $file ) {
97
+
98
  global $wpdb, $mycred;
99
 
100
  $this->imported = $this->skipped = 0;
101
 
102
  if ( ! is_file( $file ) ) {
103
+
104
  echo '<p><strong>' . __( 'Sorry, there has been an error.', 'mycred' ) . '</strong><br />';
105
  echo __( 'The file does not exist, please try again.', 'mycred' ) . '</p>';
106
+
107
  $this->footer();
108
+
109
+ die;
110
+
111
  }
112
 
113
  ini_set( 'auto_detect_line_endings', '1' );
145
 
146
  $loop ++;
147
  $this->imported++;
148
+
149
+ }
150
 
151
  } else {
152
 
153
  echo '<p><strong>' . __( 'Sorry, there has been an error.', 'mycred' ) . '</strong><br />';
154
  echo __( 'The CSV is invalid.', 'mycred' ) . '</p>';
155
+
156
  $this->footer();
157
+
158
+ die;
159
 
160
  }
161
 
162
+ fclose( $handle );
163
+
164
  }
165
 
166
  // Show Result
169
  </p></div>';
170
 
171
  $this->import_end();
172
+
173
  }
174
 
175
  /**
176
  * Performs post-import cleanup of files and the cache
177
  */
178
  function import_end() {
179
+
180
  echo '<p><a href="' . admin_url( 'admin.php?page=myCRED' ) . '" class="button button-large button-primary">' . __( 'View Log', 'mycred' ) . '</a> <a href="' . admin_url( 'import.php' ) . '" class="button button-large button-primary">' . __( 'Import More', 'mycred' ) . '</a></p>';
181
 
182
  do_action( 'import_end' );
183
+
184
  }
185
 
186
  /**
195
  $file = wp_import_handle_upload();
196
 
197
  if ( isset( $file['error'] ) ) {
198
+
199
  echo '<p><strong>' . __( 'Sorry, there has been an error.', 'mycred' ) . '</strong><br />';
200
  echo esc_html( $file['error'] ) . '</p>';
201
+
202
  return false;
203
+
204
  }
205
 
206
  $this->id = (int) $file['id'];
221
  }
222
 
223
  return true;
224
+
225
  }
226
 
227
  /**
228
  * header function.
229
  */
230
  function header() {
231
+
232
  echo '<div class="wrap"><h2>' . __( 'Import Log Entries', 'mycred' ) . '</h2>';
233
+
234
  }
235
 
236
  /**
237
  * footer function.
238
  */
239
  function footer() {
240
+
241
  echo '</div>';
242
+
243
  }
244
 
245
  /**
246
  * greet function.
247
  */
248
  function greet() {
249
+
250
  global $mycred;
251
 
252
  echo '<div class="narrow">';
254
 
255
  $action = 'admin.php?import=mycred_import_log&step=1';
256
 
257
+ $bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() );
258
+ $size = size_format( $bytes );
259
  $upload_dir = wp_upload_dir();
260
  if ( ! empty( $upload_dir['error'] ) ) :
261
+
262
+ ?>
263
+ <div class="error"><p><?php _e( 'Before you can upload your import file, you will need to fix the following error:', 'mycred' ); ?></p>
264
+ <p><strong><?php echo $upload_dir['error']; ?></strong></p></div>
265
+ <?php
266
+
267
  else :
268
+
269
+ ?>
270
+ <form enctype="multipart/form-data" id="import-upload-form" method="post" action="<?php echo esc_attr( wp_nonce_url( $action, 'import-upload' ) ); ?>">
271
+ <table class="form-table">
272
+ <tbody>
273
+ <tr>
274
+ <th>
275
+ <label for="upload"><?php _e( 'Choose a file from your computer:', 'mycred' ); ?></label>
276
+ </th>
277
+ <td>
278
+ <input type="file" id="upload" name="import" size="25" />
279
+ <input type="hidden" name="action" value="save" />
280
+ <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
281
+ <small><?php printf( __( 'Maximum size: %s', 'mycred' ), $size ); ?></small>
282
+ </td>
283
+ </tr>
284
+ <tr>
285
+ <th>
286
+ <label for="file_url"><?php _e( 'OR enter path to file:', 'mycred' ); ?></label>
287
+ </th>
288
+ <td>
289
+ <?php echo ' ' . ABSPATH . ' '; ?><input type="text" id="file_url" name="file_url" size="25" />
290
+ </td>
291
+ </tr>
292
+ <tr>
293
+ <th><label><?php _e( 'Delimiter', 'mycred' ); ?></label><br/></th>
294
+ <td><input type="text" name="delimiter" placeholder="," size="2" /></td>
295
+ </tr>
296
+ </tbody>
297
+ </table>
298
+ <p class="submit">
299
+ <input type="submit" class="button" value="<?php esc_attr_e( 'Upload file and import' ); ?>" />
300
+ </p>
301
+ </form>
302
+ <?php
303
+
304
  endif;
305
 
306
  echo '</div>';
307
+
308
  }
309
 
310
  /**
312
  * @return int 60
313
  */
314
  function bump_request_timeout( $val ) {
315
+
316
  return 60;
317
+
318
  }
319
+
320
  }
321
+ endif;
322
+
323
+ ?>
includes/mycred-about.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- if ( !defined( 'myCRED_VERSION' ) ) exit;
3
 
4
  /**
5
  * myCRED About Page Header
@@ -7,22 +7,24 @@ if ( !defined( 'myCRED_VERSION' ) ) exit;
7
  * @version 1.1
8
  */
9
  function mycred_about_header( $name ) {
 
10
  $new = $credit = '';
11
  if ( isset( $_GET['page'] ) && $_GET['page'] == 'mycred-credit' )
12
  $credit = ' nav-tab-active';
13
  else
14
  $new = ' nav-tab-active';
15
-
16
- $index_php = admin_url( 'index.php' );
17
- $about_page = esc_url( add_query_arg( array( 'page' => 'mycred' ), $index_php ) );
18
- $credit_page = esc_url( add_query_arg( array( 'page' => 'mycred-credit' ), $index_php ) );
19
-
20
- $admin_php = admin_url( 'admin.php' );
21
- $log_url = esc_url( add_query_arg( array( 'page' => 'myCRED' ), $admin_php ) );
22
- $hook_url = esc_url( add_query_arg( array( 'page' => 'myCRED_page_hooks' ), $admin_php ) );
23
- $addons_url = esc_url( add_query_arg( array( 'page' => 'myCRED_page_addons' ), $admin_php ) );
24
- $settings_url = esc_url( add_query_arg( array( 'page' => 'myCRED_page_settings' ), $admin_php ) ); ?>
25
 
 
 
 
 
 
 
 
 
 
 
 
26
  <div class="about-text"><?php printf( 'Thank you for choosing %s as your points management tool!<br />I hope you have as much fun using it as I had developing it.', $name ); ?></div>
27
  <p class="mycred-actions">
28
  <a href="<?php echo $log_url; ?>" class="button">Log</a>
@@ -31,11 +33,17 @@ function mycred_about_header( $name ) {
31
  <a href="<?php echo $settings_url; ?>" class="button button-primary">Settings</a>
32
  </p>
33
  <div class="mycred-badge">&nbsp;</div>
34
-
35
  <h2 class="nav-tab-wrapper">
36
- <a class="nav-tab<?php echo $new; ?>" href="<?php echo $about_page; ?>">What&#8217;s New</a><a class="nav-tab<?php echo $credit; ?>" href="<?php echo $credit_page; ?>">Credits</a><a class="nav-tab" href="http://codex.mycred.me" target="_blank">Documentation</a><a class="nav-tab" href="http://mycred.me/support/forums/" target="_blank">Support Forum</a><a class="nav-tab" href="http://mycred.me/store/" target="_blank">Store</a>
 
 
 
 
 
37
  </h2>
38
  <?php
 
39
  }
40
 
41
  /**
@@ -43,8 +51,9 @@ function mycred_about_header( $name ) {
43
  * @since 1.3.2
44
  * @version 1.0
45
  */
46
- function mycred_about_footer() { ?>
47
 
 
48
  <p>&nbsp;</p>
49
  <div id="social-media">
50
  <a href="//plus.google.com/102981932999764129220?prsrc=3" rel="publisher" style="text-decoration:none;float: left; margin-right: 12px;">
@@ -61,20 +70,24 @@ function mycred_about_footer() { ?>
61
  }(document, 'script', 'facebook-jssdk'));
62
  </script>
63
  <?php
 
64
  }
65
 
66
  /**
67
  * About myCRED Page
68
  * @since 1.3.2
69
- * @version 1.1
70
  */
71
  function mycred_about_page() {
72
- $name = mycred_label();
73
- $mycred = mycred();
74
- $settings_url = esc_url( add_query_arg( array( 'page' => 'myCRED_page_settings' ), admin_url( 'admin.php' ) ) ); ?>
75
 
 
 
 
 
 
76
  <div class="wrap about-wrap" id="mycred-about-wrap">
77
  <h1><?php printf( __( 'Welcome to %s %s', 'mycred' ), $name, myCRED_VERSION ); ?></h1>
 
78
  <?php mycred_about_header( $name ); ?>
79
 
80
  <div class="changelog">
@@ -110,10 +123,12 @@ function mycred_about_page() {
110
  </div>
111
  <p style="text-align:right;">Want to help further development of <strong>my</strong>CRED? <a href="http://mycred.me/about/support-mycred/" target="_blank">Here is a list</a> of things you can do to help!</p>
112
  </div>
 
113
  <?php mycred_about_footer(); ?>
114
 
115
  </div>
116
  <?php
 
117
  }
118
 
119
  /**
@@ -122,10 +137,13 @@ function mycred_about_page() {
122
  * @version 1.6.3
123
  */
124
  function mycred_about_credit_page() {
125
- $name = mycred_label(); ?>
126
 
 
 
 
127
  <div class="wrap about-wrap" id="mycred-credit-wrap">
128
  <h1>Awesome People</h1>
 
129
  <?php mycred_about_header( $name ); ?>
130
 
131
  <div class="changelog">
@@ -148,13 +166,14 @@ function mycred_about_credit_page() {
148
  <h4>Plugin Translators</h4>
149
  <p>Users who have helped with translating this plugin.</p>
150
  <ul>
151
- <li><a href="http://bp-fr.net/">Dan</a> <em>( French )</em></li>
152
- <li><a href="http://mycred.me/members/maniv-a/">Mani Akhtar</a> <em>( Persian )</em></li>
153
  <li><a href="http://www.merovingi.com/">Gabriel S Merovingi</a> <em>( Swedish )</em></li>
 
 
154
  <li><a href="http://robertrowshan.com/">Robert Rowshan</a> <em>( Spanish )</em></li>
155
  <li>Skladchik <em>( Russian )</em></li>
156
- <li>Guilherme <em>( Portuguese - Brazil )</em></li>
157
  <li><a href="http://coolwp.com">suifengtec</a> <em>( Chinese )</em></li>
 
 
158
  </ul>
159
  <p>Remember that translators are rewarded with <strong>my</strong>CRED tokens for their help. Tokens can be used in the myCRED store to pay for premium add-ons.</p>
160
  </div>
@@ -162,9 +181,12 @@ function mycred_about_credit_page() {
162
  <h3>Find out more</h3>
163
  <p>You can always find more information about this plugin on the <strong>my</strong>CRED <a href="http://mycred.me/">website</a>.</p>
164
  </div>
 
165
  <?php mycred_about_footer(); ?>
166
 
167
  </div>
168
  <?php
 
169
  }
 
170
  ?>
1
  <?php
2
+ if ( ! defined( 'myCRED_VERSION' ) ) exit;
3
 
4
  /**
5
  * myCRED About Page Header
7
  * @version 1.1
8
  */
9
  function mycred_about_header( $name ) {
10
+
11
  $new = $credit = '';
12
  if ( isset( $_GET['page'] ) && $_GET['page'] == 'mycred-credit' )
13
  $credit = ' nav-tab-active';
14
  else
15
  $new = ' nav-tab-active';
 
 
 
 
 
 
 
 
 
 
16
 
17
+ $index_php = admin_url( 'index.php' );
18
+ $about_page = esc_url( add_query_arg( array( 'page' => 'mycred' ), $index_php ) );
19
+ $credit_page = esc_url( add_query_arg( array( 'page' => 'mycred-credit' ), $index_php ) );
20
+
21
+ $admin_php = admin_url( 'admin.php' );
22
+ $log_url = esc_url( add_query_arg( array( 'page' => 'myCRED' ), $admin_php ) );
23
+ $hook_url = esc_url( add_query_arg( array( 'page' => 'myCRED_page_hooks' ), $admin_php ) );
24
+ $addons_url = esc_url( add_query_arg( array( 'page' => 'myCRED_page_addons' ), $admin_php ) );
25
+ $settings_url = esc_url( add_query_arg( array( 'page' => 'myCRED_page_settings' ), $admin_php ) );
26
+
27
+ ?>
28
  <div class="about-text"><?php printf( 'Thank you for choosing %s as your points management tool!<br />I hope you have as much fun using it as I had developing it.', $name ); ?></div>
29
  <p class="mycred-actions">
30
  <a href="<?php echo $log_url; ?>" class="button">Log</a>
33
  <a href="<?php echo $settings_url; ?>" class="button button-primary">Settings</a>
34
  </p>
35
  <div class="mycred-badge">&nbsp;</div>
36
+
37
  <h2 class="nav-tab-wrapper">
38
+ <a class="nav-tab<?php echo $new; ?>" href="<?php echo $about_page; ?>">What&#8217;s New</a>
39
+ <a class="nav-tab<?php echo $credit; ?>" href="<?php echo $credit_page; ?>">Credits</a>
40
+ <a class="nav-tab" href="http://mycred.me/documentation/" target="_blank">Documentation</a>
41
+ <a class="nav-tab" href="http://codex.mycred.me" target="_blank">Codex</a>
42
+ <a class="nav-tab" href="http://mycred.me/support/forums/" target="_blank">Support Forum</a>
43
+ <a class="nav-tab" href="http://mycred.me/store/" target="_blank">Store</a>
44
  </h2>
45
  <?php
46
+
47
  }
48
 
49
  /**
51
  * @since 1.3.2
52
  * @version 1.0
53
  */
54
+ function mycred_about_footer() {
55
 
56
+ ?>
57
  <p>&nbsp;</p>
58
  <div id="social-media">
59
  <a href="//plus.google.com/102981932999764129220?prsrc=3" rel="publisher" style="text-decoration:none;float: left; margin-right: 12px;">
70
  }(document, 'script', 'facebook-jssdk'));
71
  </script>
72
  <?php
73
+
74
  }
75
 
76
  /**
77
  * About myCRED Page
78
  * @since 1.3.2
79
+ * @version 1.2
80
  */
81
  function mycred_about_page() {
 
 
 
82
 
83
+ $name = mycred_label();
84
+ $mycred = mycred();
85
+ $settings_url = esc_url( add_query_arg( array( 'page' => 'myCRED_page_settings' ), admin_url( 'admin.php' ) ) );
86
+
87
+ ?>
88
  <div class="wrap about-wrap" id="mycred-about-wrap">
89
  <h1><?php printf( __( 'Welcome to %s %s', 'mycred' ), $name, myCRED_VERSION ); ?></h1>
90
+
91
  <?php mycred_about_header( $name ); ?>
92
 
93
  <div class="changelog">
123
  </div>
124
  <p style="text-align:right;">Want to help further development of <strong>my</strong>CRED? <a href="http://mycred.me/about/support-mycred/" target="_blank">Here is a list</a> of things you can do to help!</p>
125
  </div>
126
+
127
  <?php mycred_about_footer(); ?>
128
 
129
  </div>
130
  <?php
131
+
132
  }
133
 
134
  /**
137
  * @version 1.6.3
138
  */
139
  function mycred_about_credit_page() {
 
140
 
141
+ $name = mycred_label();
142
+
143
+ ?>
144
  <div class="wrap about-wrap" id="mycred-credit-wrap">
145
  <h1>Awesome People</h1>
146
+
147
  <?php mycred_about_header( $name ); ?>
148
 
149
  <div class="changelog">
166
  <h4>Plugin Translators</h4>
167
  <p>Users who have helped with translating this plugin.</p>
168
  <ul>
 
 
169
  <li><a href="http://www.merovingi.com/">Gabriel S Merovingi</a> <em>( Swedish )</em></li>
170
+ <li><a href="http://bp-fr.net/">Dan</a> <em>( French )</em></li>
171
+ <li>Mani Akhtar <em>( Persian )</em></li>
172
  <li><a href="http://robertrowshan.com/">Robert Rowshan</a> <em>( Spanish )</em></li>
173
  <li>Skladchik <em>( Russian )</em></li>
 
174
  <li><a href="http://coolwp.com">suifengtec</a> <em>( Chinese )</em></li>
175
+ <li>Guilherme <em>( Portuguese - Brazil )</em></li>
176
+ <li>Mochizuki Hiroshi <em>( Japanese )</em></li>
177
  </ul>
178
  <p>Remember that translators are rewarded with <strong>my</strong>CRED tokens for their help. Tokens can be used in the myCRED store to pay for premium add-ons.</p>
179
  </div>
181
  <h3>Find out more</h3>
182
  <p>You can always find more information about this plugin on the <strong>my</strong>CRED <a href="http://mycred.me/">website</a>.</p>
183
  </div>
184
+
185
  <?php mycred_about_footer(); ?>
186
 
187
  </div>
188
  <?php
189
+
190
  }
191
+
192
  ?>
includes/mycred-admin.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED_Admin class
6
  * Manages everything concerning the WordPress admin area.
7
  * @since 0.1
8
- * @version 1.3
9
  */
10
  if ( ! class_exists( 'myCRED_Admin' ) ) :
11
  class myCRED_Admin {
@@ -31,13 +31,12 @@ if ( ! class_exists( 'myCRED_Admin' ) ) :
31
  */
32
  public function load() {
33
 
34
- // Admin Styling
35
- add_action( 'admin_head', array( $this, 'admin_header' ) );
36
- add_action( 'admin_notices', array( $this, 'admin_notices' ) );
37
 
38
- // Custom Columns
39
- add_filter( 'manage_users_columns', array( $this, 'custom_user_column' ) );
40
- add_action( 'manage_users_custom_column', array( $this, 'custom_user_column_content' ), 10, 3 );
41
 
42
  // User Edit
43
  global $bp;
@@ -52,7 +51,14 @@ if ( ! class_exists( 'myCRED_Admin' ) ) :
52
 
53
  add_action( 'personal_options', array( $this, 'show_my_balance' ) );
54
  add_filter( 'mycred_admin_pages', array( $this, 'edit_profile_menu' ), 10, 2 );
55
- add_action( 'mycred_init', array( $this, 'edit_profile_actions' ) );
 
 
 
 
 
 
 
56
 
57
  // Sortable Column
58
  add_filter( 'manage_users_sortable_columns', array( $this, 'sortable_points_column' ) );
@@ -389,7 +395,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) :
389
  * Customize User Columns Content
390
  * @filter 'mycred_user_row_actions'
391
  * @since 0.1
392
- * @version 1.3.2
393
  */
394
  public function custom_user_column_content( $value, $column_name, $user_id ) {
395
 
@@ -406,13 +412,13 @@ if ( ! class_exists( 'myCRED_Admin' ) ) :
406
 
407
  // Show balance
408
  $ubalance = $mycred->get_users_cred( $user_id, $column_name );
409
- $balance = '<div id="mycred-user-' . $user_id . '-balance-' . $column_name . '">' . $mycred->before . ' <span>' . $mycred->format_number( $ubalance ) . '</span> ' . $mycred->after . '</div>';
410
 
411
  // Show total
412
- $total = mycred_query_users_total( $user_id, $column_name );
413
  $balance .= '<small style="display:block;">' . sprintf( '<strong>%s</strong>: %s', __( 'Total', 'mycred' ), $mycred->format_number( $total ) ) . '</small>';
414
 
415
- $balance = apply_filters( 'mycred_users_balance_column', $balance, $user_id, $column_name );
416
 
417
  $page = 'myCRED';
418
  if ( $column_name != 'mycred_default' )
@@ -420,7 +426,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) :
420
 
421
  // Row actions
422
  $row = array();
423
- $row['history'] = '<a href="' . esc_url( admin_url( 'admin.php?page=' . $page . '&user_id=' . $user_id ) ) . '">' . __( 'History', 'mycred' ) . '</a>';
424
  $row['adjust'] = '<a href="javascript:void(0)" class="mycred-open-points-editor" data-userid="' . $user_id . '" data-current="' . $ubalance . '" data-type="' . $column_name . '" data-username="' . $user->display_name . '">' . __( 'Adjust', 'mycred' ) . '</a>';
425
 
426
  $rows = apply_filters( 'mycred_user_row_actions', $row, $user_id, $mycred );
@@ -564,7 +570,7 @@ ul#profile-nav li a:hover, ul#profile-nav li.nav-tab-active a {text-decoration:
564
  /**
565
  * Edit Profile Screen
566
  * @since 1.5
567
- * @version 1.0.2
568
  */
569
  public function edit_profile_screen() {
570
 
@@ -595,7 +601,7 @@ ul#profile-nav li a:hover, ul#profile-nav li.nav-tab-active a {text-decoration:
595
  else
596
  $log_slug = 'myCRED_' . $type;
597
 
598
- $history_url = add_query_arg( array( 'page' => $log_slug, 'user_id' => $user->ID ), admin_url( 'admin.php' ) );
599
  $exclude_url = add_query_arg( array( 'action' => 'exclude' ) );
600
 
601
  ?>
5
  * myCRED_Admin class
6
  * Manages everything concerning the WordPress admin area.
7
  * @since 0.1
8
+ * @version 1.3.1
9
  */
10
  if ( ! class_exists( 'myCRED_Admin' ) ) :
11
  class myCRED_Admin {
31
  */
32
  public function load() {
33
 
34
+ add_action( 'mycred_init', array( $this, 'module_init' ) );
35
+ add_action( 'mycred_admin_init', array( $this, 'edit_profile_actions' ) );
 
36
 
37
+ }
38
+
39
+ public function module_init() {
40
 
41
  // User Edit
42
  global $bp;
51
 
52
  add_action( 'personal_options', array( $this, 'show_my_balance' ) );
53
  add_filter( 'mycred_admin_pages', array( $this, 'edit_profile_menu' ), 10, 2 );
54
+
55
+ // Admin Styling
56
+ add_action( 'admin_head', array( $this, 'admin_header' ) );
57
+ add_action( 'admin_notices', array( $this, 'admin_notices' ) );
58
+
59
+ // Custom Columns
60
+ add_filter( 'manage_users_columns', array( $this, 'custom_user_column' ) );
61
+ add_action( 'manage_users_custom_column', array( $this, 'custom_user_column_content' ), 10, 3 );
62
 
63
  // Sortable Column
64
  add_filter( 'manage_users_sortable_columns', array( $this, 'sortable_points_column' ) );
395
  * Customize User Columns Content
396
  * @filter 'mycred_user_row_actions'
397
  * @since 0.1
398
+ * @version 1.3.3
399
  */
400
  public function custom_user_column_content( $value, $column_name, $user_id ) {
401
 
412
 
413
  // Show balance
414
  $ubalance = $mycred->get_users_cred( $user_id, $column_name );
415
+ $balance = '<div id="mycred-user-' . $user_id . '-balance-' . $column_name . '">' . $mycred->before . ' <span>' . $mycred->format_number( $ubalance ) . '</span> ' . $mycred->after . '</div>';
416
 
417
  // Show total
418
+ $total = mycred_query_users_total( $user_id, $column_name );
419
  $balance .= '<small style="display:block;">' . sprintf( '<strong>%s</strong>: %s', __( 'Total', 'mycred' ), $mycred->format_number( $total ) ) . '</small>';
420
 
421
+ $balance = apply_filters( 'mycred_users_balance_column', $balance, $user_id, $column_name );
422
 
423
  $page = 'myCRED';
424
  if ( $column_name != 'mycred_default' )
426
 
427
  // Row actions
428
  $row = array();
429
+ $row['history'] = '<a href="' . esc_url( admin_url( 'admin.php?page=' . $page . '&user=' . $user_id ) ) . '">' . __( 'History', 'mycred' ) . '</a>';
430
  $row['adjust'] = '<a href="javascript:void(0)" class="mycred-open-points-editor" data-userid="' . $user_id . '" data-current="' . $ubalance . '" data-type="' . $column_name . '" data-username="' . $user->display_name . '">' . __( 'Adjust', 'mycred' ) . '</a>';
431
 
432
  $rows = apply_filters( 'mycred_user_row_actions', $row, $user_id, $mycred );
570
  /**
571
  * Edit Profile Screen
572
  * @since 1.5
573
+ * @version 1.0.3
574
  */
575
  public function edit_profile_screen() {
576
 
601
  else
602
  $log_slug = 'myCRED_' . $type;
603
 
604
+ $history_url = add_query_arg( array( 'page' => $log_slug, 'user' => $user->ID ), admin_url( 'admin.php' ) );
605
  $exclude_url = add_query_arg( array( 'action' => 'exclude' ) );
606
 
607
  ?>
includes/mycred-functions.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED_Settings class
6
  * @see http://codex.mycred.me/classes/mycred_settings/
7
  * @since 0.1
8
- * @version 1.5
9
  */
10
  if ( ! class_exists( 'myCRED_Settings' ) ) :
11
  class myCRED_Settings {
@@ -28,7 +28,8 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
28
  $this->use_master_template = mycred_override_settings();
29
  $this->use_central_logging = mycred_centralize_log();
30
 
31
- if ( $type == '' || $type === NULL ) $type = 'mycred_default';
 
32
 
33
  // Load Settings
34
  $option_id = 'mycred_pref_core';
@@ -349,7 +350,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
349
 
350
  elseif ( $type == 'comment' )
351
  $content = $this->template_tags_comment( $content, $ref_id, $data );
352
-
353
  $content = apply_filters( "mycred_parse_tags_{$type}", $content, $log_entry );
354
 
355
  }
@@ -852,7 +853,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
852
  // Check if user can
853
  if ( user_can( $user_id, $this->edit_plugin_cap() ) )
854
  $result = true;
855
-
856
  return apply_filters( 'mycred_can_edit_plugin', $result, $user_id );
857
 
858
  }
@@ -1290,9 +1291,10 @@ endif;
1290
  * @version 1.0
1291
  */
1292
  if ( ! function_exists( 'mycred_label' ) ) :
1293
- function mycred_label( $trim = false )
1294
- {
1295
  global $mycred_label;
 
1296
  if ( ! isset( $mycred_label ) || empty( $mycred_label ) )
1297
  $name = apply_filters( 'mycred_label', myCRED_NAME );
1298
 
@@ -1300,6 +1302,7 @@ if ( ! function_exists( 'mycred_label' ) ) :
1300
  $name = strip_tags( $name );
1301
 
1302
  return $name;
 
1303
  }
1304
  endif;
1305
 
@@ -1311,8 +1314,8 @@ endif;
1311
  * @version 1.0
1312
  */
1313
  if ( ! function_exists( 'mycred' ) ) :
1314
- function mycred( $type = 'mycred_default' )
1315
- {
1316
  if ( $type != 'mycred_default' )
1317
  return new myCRED_Settings( $type );
1318
 
@@ -1322,18 +1325,51 @@ if ( ! function_exists( 'mycred' ) ) :
1322
  $mycred = new myCRED_Settings();
1323
 
1324
  return $mycred;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1325
  }
1326
  endif;
1327
 
 
 
 
 
 
 
 
 
 
 
 
1328
  /**
1329
  * Get Cred Types
1330
  * Returns an associative array of registered point types.
 
1331
  * @since 1.4
1332
  * @version 1.1
1333
  */
1334
  if ( ! function_exists( 'mycred_get_types' ) ) :
1335
- function mycred_get_types()
1336
- {
1337
  $types = array();
1338
 
1339
  $available_types = mycred_get_option( 'mycred_types', array( 'mycred_default' => mycred_label() ) );
@@ -1341,10 +1377,8 @@ if ( ! function_exists( 'mycred_get_types' ) ) :
1341
 
1342
  foreach ( $available_types as $type => $label ) {
1343
 
1344
- if ( $type == 'mycred_default' ) {
1345
- $_mycred = mycred( $type );
1346
- $label = $_mycred->plural();
1347
- }
1348
 
1349
  $types[ $type ] = $label;
1350
 
@@ -1353,11 +1387,44 @@ if ( ! function_exists( 'mycred_get_types' ) ) :
1353
  }
1354
  else {
1355
 
 
 
 
1356
  $types = $available_types;
1357
 
1358
  }
1359
 
1360
  return apply_filters( 'mycred_types', $types );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1361
  }
1362
  endif;
1363
 
@@ -1367,8 +1434,8 @@ endif;
1367
  * @version 1.0
1368
  */
1369
  if ( ! function_exists( 'mycred_types_select_from_dropdown' ) ) :
1370
- function mycred_types_select_from_dropdown( $name = '', $id = '', $selected = '', $return = false, $extra = '' )
1371
- {
1372
  $types = mycred_get_types();
1373
  $output = '';
1374
 
@@ -1400,6 +1467,7 @@ if ( ! function_exists( 'mycred_types_select_from_dropdown' ) ) :
1400
  return $output;
1401
 
1402
  echo $output;
 
1403
  }
1404
  endif;
1405
 
@@ -1409,8 +1477,8 @@ endif;
1409
  * @version 1.0
1410
  */
1411
  if ( ! function_exists( 'mycred_types_select_from_checkboxes' ) ) :
1412
- function mycred_types_select_from_checkboxes( $name = '', $id = '', $selected_values = array(), $return = false )
1413
- {
1414
  $types = mycred_get_types();
1415
 
1416
  $output = '';
@@ -1430,6 +1498,7 @@ if ( ! function_exists( 'mycred_types_select_from_checkboxes' ) ) :
1430
  return $output;
1431
 
1432
  echo $output;
 
1433
  }
1434
  endif;
1435
 
@@ -1440,8 +1509,8 @@ endif;
1440
  * @version 1.0
1441
  */
1442
  if ( ! function_exists( 'mycred_get_settings_network' ) ) :
1443
- function mycred_get_settings_network()
1444
- {
1445
  if ( ! is_multisite() ) return false;
1446
 
1447
  $defaults = array(
@@ -1452,6 +1521,7 @@ if ( ! function_exists( 'mycred_get_settings_network' ) ) :
1452
  $settings = get_blog_option( 1, 'mycred_network', $defaults );
1453
 
1454
  return $settings;
 
1455
  }
1456
  endif;
1457
 
@@ -1461,8 +1531,8 @@ endif;
1461
  * @version 1.0
1462
  */
1463
  if ( ! function_exists( 'mycred_override_settings' ) ) :
1464
- function mycred_override_settings()
1465
- {
1466
  // Not a multisite
1467
  if ( ! is_multisite() ) return false;
1468
 
@@ -1470,6 +1540,7 @@ if ( ! function_exists( 'mycred_override_settings' ) ) :
1470
  if ( $mycred_network['master'] ) return true;
1471
 
1472
  return false;
 
1473
  }
1474
  endif;
1475
 
@@ -1479,8 +1550,8 @@ endif;
1479
  * @version 1.0
1480
  */
1481
  if ( ! function_exists( 'mycred_centralize_log' ) ) :
1482
- function mycred_centralize_log()
1483
- {
1484
  // Not a multisite
1485
  if ( ! is_multisite() ) return true;
1486
 
@@ -1488,6 +1559,7 @@ if ( ! function_exists( 'mycred_centralize_log' ) ) :
1488
  if ( $mycred_network['central'] ) return true;
1489
 
1490
  return false;
 
1491
  }
1492
  endif;
1493
 
@@ -1497,8 +1569,8 @@ endif;
1497
  * @version 1.0
1498
  */
1499
  if ( ! function_exists( 'mycred_get_option' ) ) :
1500
- function mycred_get_option( $option_id, $default = array() )
1501
- {
1502
  if ( is_multisite() ) {
1503
 
1504
  if ( mycred_override_settings() )
@@ -1515,6 +1587,7 @@ if ( ! function_exists( 'mycred_get_option' ) ) :
1515
  }
1516
 
1517
  return $settings;
 
1518
  }
1519
  endif;
1520
 
@@ -1524,8 +1597,8 @@ endif;
1524
  * @version 1.0
1525
  */
1526
  if ( ! function_exists( 'mycred_update_option' ) ) :
1527
- function mycred_update_option( $option_id, $value = '' )
1528
- {
1529
  if ( is_multisite() ) {
1530
 
1531
  if ( mycred_override_settings() )
@@ -1540,6 +1613,7 @@ if ( ! function_exists( 'mycred_update_option' ) ) :
1540
  return update_option( $option_id, $value );
1541
 
1542
  }
 
1543
  }
1544
  endif;
1545
 
@@ -1549,8 +1623,8 @@ endif;
1549
  * @version 1.0
1550
  */
1551
  if ( ! function_exists( 'mycred_delete_option' ) ) :
1552
- function mycred_delete_option( $option_id )
1553
- {
1554
  if ( is_multisite() ) {
1555
 
1556
  if ( mycred_override_settings() )
@@ -1565,6 +1639,7 @@ if ( ! function_exists( 'mycred_delete_option' ) ) :
1565
  delete_option( $option_id );
1566
 
1567
  }
 
1568
  }
1569
  endif;
1570
 
@@ -1574,17 +1649,12 @@ endif;
1574
  * @version 1.1
1575
  */
1576
  if ( ! function_exists( 'mycred_get_user_meta' ) ) :
1577
- function mycred_get_user_meta( $user_id, $key, $end = '', $unique = true )
1578
- {
1579
- if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_centralize_log() && $key != 'mycred_rank' )
1580
- $key .= '_' . $GLOBALS['blog_id'];
1581
-
1582
- elseif ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_override_settings() && $key == 'mycred_rank' )
1583
- $key .= '_' . $GLOBALS['blog_id'];
1584
 
1585
- $key .= $end;
1586
 
1587
  return get_user_meta( $user_id, $key, $unique );
 
1588
  }
1589
  endif;
1590
 
@@ -1594,17 +1664,12 @@ endif;
1594
  * @version 1.1
1595
  */
1596
  if ( ! function_exists( 'mycred_add_user_meta' ) ) :
1597
- function mycred_add_user_meta( $user_id, $key, $end = '', $value = '', $unique = true )
1598
- {
1599
- if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_centralize_log() && $key != 'mycred_rank' )
1600
- $key .= '_' . $GLOBALS['blog_id'];
1601
 
1602
- elseif ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_override_settings() && $key == 'mycred_rank' )
1603
- $key .= '_' . $GLOBALS['blog_id'];
1604
-
1605
- $key .= $end;
1606
 
1607
  return add_user_meta( $user_id, $key, $value, $unique );
 
1608
  }
1609
  endif;
1610
 
@@ -1614,57 +1679,58 @@ endif;
1614
  * @version 1.1
1615
  */
1616
  if ( ! function_exists( 'mycred_update_user_meta' ) ) :
1617
- function mycred_update_user_meta( $user_id, $key, $end = '', $value = '' )
1618
- {
1619
- if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_centralize_log() && $key != 'mycred_rank' )
1620
- $key .= '_' . $GLOBALS['blog_id'];
1621
 
1622
- elseif ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_override_settings() && $key == 'mycred_rank' )
1623
- $key .= '_' . $GLOBALS['blog_id'];
1624
-
1625
- $key .= $end;
1626
 
1627
  return update_user_meta( $user_id, $key, $value );
 
1628
  }
1629
  endif;
1630
 
1631
  /**
1632
  * Delete User Meta
1633
  * @since 1.5
1634
- * @version 1.1
1635
  */
1636
  if ( ! function_exists( 'mycred_delete_user_meta' ) ) :
1637
- function mycred_delete_user_meta( $user_id, $key, $end = '' )
1638
- {
1639
- if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_centralize_log() && $key != 'mycred_rank' )
1640
- $key .= '_' . $GLOBALS['blog_id'];
1641
 
1642
- elseif ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_override_settings() && $key == 'mycred_rank' )
1643
- $key .= '_' . $GLOBALS['blog_id'];
1644
 
1645
- $key .= $end;
1646
 
1647
- return delete_user_meta( $user_id, $key );
1648
  }
1649
  endif;
1650
 
1651
  /**
1652
- * Get myCRED Name
1653
- * Returns the name given to creds.
1654
- * @param $signular (boolean) option to return the plural version, returns singular by default
1655
- * @since 0.1
1656
- * @version 1.1
1657
  */
1658
- if ( ! function_exists( 'mycred_name' ) ) :
1659
- function mycred_name( $singular = true, $type = 'mycred_default' )
1660
- {
1661
- $mycred = mycred( $type );
1662
 
1663
- if ( $singular )
1664
- return $mycred->singular();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1665
 
1666
- else
1667
- return $mycred->plural();
1668
  }
1669
  endif;
1670
 
@@ -1677,11 +1743,12 @@ endif;
1677
  * @version 1.0
1678
  */
1679
  if ( ! function_exists( 'mycred_strip_tags' ) ) :
1680
- function mycred_strip_tags( $string = '', $overwride = '' )
1681
- {
1682
  $mycred = mycred();
1683
 
1684
  return $mycred->allowed_tags( $string, $overwrite );
 
1685
  }
1686
  endif;
1687
 
@@ -1692,17 +1759,23 @@ endif;
1692
  * @param $user_id (int), optional user id to check, defaults to current user
1693
  * @returns true or false
1694
  * @since 0.1
1695
- * @version 1.1
1696
  */
1697
  if ( ! function_exists( 'mycred_is_admin' ) ) :
1698
- function mycred_is_admin( $user_id = NULL, $type = 'mycred_default' )
1699
- {
 
 
 
 
 
1700
  $mycred = mycred( $type );
1701
- if ( $user_id === NULL ) $user_id = get_current_user_id();
1702
 
1703
- if ( $mycred->can_edit_creds( $user_id ) || $mycred->can_edit_plugin( $user_id ) ) return true;
 
1704
 
1705
  return false;
 
1706
  }
1707
  endif;
1708
 
@@ -1712,15 +1785,20 @@ endif;
1712
  * @see http://codex.mycred.me/functions/mycred_exclude_user/
1713
  * @param $user_id (int), optional user to check, defaults to current user
1714
  * @since 0.1
1715
- * @version 1.1
1716
  */
1717
  if ( ! function_exists( 'mycred_exclude_user' ) ) :
1718
- function mycred_exclude_user( $user_id = NULL, $type = 'mycred_default' )
1719
- {
 
 
 
 
 
1720
  $mycred = mycred( $type );
1721
- if ( $user_id === NULL ) $user_id = get_current_user_id();
1722
 
1723
  return $mycred->exclude_user( $user_id );
 
1724
  }
1725
  endif;
1726
 
@@ -1731,19 +1809,20 @@ endif;
1731
  * @param $user_id (int) user id
1732
  * @return users balance (int|float)
1733
  * @since 0.1
1734
- * @version 1.1
1735
  */
1736
  if ( ! function_exists( 'mycred_get_users_cred' ) ) :
1737
- function mycred_get_users_cred( $user_id = NULL, $type = 'mycred_default' )
1738
- {
1739
- if ( $user_id === NULL ) $user_id = get_current_user_id();
 
1740
 
1741
- if ( $type == '' )
1742
- $type = 'mycred_default';
1743
 
1744
  $mycred = mycred( $type );
1745
 
1746
  return $mycred->get_users_cred( $user_id, $type );
 
1747
  }
1748
  endif;
1749
 
@@ -1754,17 +1833,18 @@ endif;
1754
  * @param $user_id (int), required user id
1755
  * @return users balance (string) or false if no user id is given
1756
  * @since 0.1
1757
- * @version 1.1
1758
  */
1759
  if ( ! function_exists( 'mycred_get_users_fcred' ) ) :
1760
- function mycred_get_users_fcred( $user_id = NULL, $type = 'mycred_default' )
1761
- {
1762
  if ( $user_id === NULL ) return false;
1763
 
1764
  $mycred = mycred( $type );
1765
- $cred = $mycred->get_users_cred( $user_id, $type );
1766
 
1767
  return $mycred->format_creds( $cred );
 
1768
  }
1769
  endif;
1770
 
@@ -1774,41 +1854,44 @@ endif;
1774
  * @version 1.0
1775
  */
1776
  if ( ! function_exists( 'mycred_flush_widget_cache' ) ) :
1777
- function mycred_flush_widget_cache( $id = NULL )
1778
- {
1779
  if ( $id === NULL ) return;
1780
  wp_cache_delete( $id, 'widget' );
 
1781
  }
1782
  endif;
1783
 
1784
  /**
1785
  * Format Number
1786
  * @since 1.3.3
1787
- * @version 1.1
1788
  */
1789
  if ( ! function_exists( 'mycred_format_number' ) ) :
1790
- function mycred_format_number( $value = NULL, $type = 'mycred_default' )
1791
- {
1792
  $mycred = mycred( $type );
1793
  if ( $value === NULL )
1794
  return $mycred->zero();
1795
 
1796
  return $mycred->format_number( $value );
 
1797
  }
1798
  endif;
1799
 
1800
  /**
1801
  * Format Creds
1802
  * @since 1.3.3
1803
- * @version 1.0
1804
  */
1805
  if ( ! function_exists( 'mycred_format_creds' ) ) :
1806
- function mycred_format_creds( $value = NULL, $type = 'mycred_default' )
1807
- {
1808
  $mycred = mycred( $type );
1809
  if ( $value === NULL ) $mycred->zero();
1810
 
1811
  return $mycred->format_creds( $value );
 
1812
  }
1813
  endif;
1814
 
@@ -1826,11 +1909,11 @@ endif;
1826
  * @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
1827
  * @returns boolean true on success or false on fail
1828
  * @since 0.1
1829
- * @version 1.2
1830
  */
1831
  if ( ! function_exists( 'mycred_add' ) ) :
1832
- function mycred_add( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' )
1833
- {
1834
  // $ref, $user_id and $cred is required
1835
  if ( $ref == '' || $user_id == '' || $amount == '' ) return false;
1836
 
@@ -1839,6 +1922,7 @@ if ( ! function_exists( 'mycred_add' ) ) :
1839
 
1840
  // Add creds
1841
  return $mycred->add_creds( $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
 
1842
  }
1843
  endif;
1844
 
@@ -1848,15 +1932,16 @@ endif;
1848
  * @see http://codex.mycred.me/functions/mycred_subtract/
1849
  * @uses mycred_add()
1850
  * @since 0.1
1851
- * @version 1.1
1852
  */
1853
  if ( ! function_exists( 'mycred_subtract' ) ) :
1854
- function mycred_subtract( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' )
1855
- {
1856
  if ( $ref == '' || $user_id == '' || $amount == '' ) return false;
1857
  if ( $amount > 0 ) $amount = 0 - $amount;
1858
 
1859
  return mycred_add( $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
 
1860
  }
1861
  endif;
1862
 
@@ -1867,8 +1952,8 @@ endif;
1867
  * @version 1.1
1868
  */
1869
  if ( ! function_exists( 'mycred_get_log_exports' ) ) :
1870
- function mycred_get_log_exports()
1871
- {
1872
  $defaults = array(
1873
  'all' => array(
1874
  'label' => __( 'Entire Log', 'mycred' ),
@@ -1890,6 +1975,7 @@ if ( ! function_exists( 'mycred_get_log_exports' ) ) :
1890
  );
1891
 
1892
  return apply_filters( 'mycred_log_exports', $defaults );
 
1893
  }
1894
  endif;
1895
 
@@ -1901,11 +1987,11 @@ endif;
1901
  * @param $user_id (int) option to check references for a specific user
1902
  * @uses get_var()
1903
  * @since 1.1
1904
- * @version 1.0.1
1905
  */
1906
  if ( ! function_exists( 'mycred_count_ref_instances' ) ) :
1907
- function mycred_count_ref_instances( $reference = '', $user_id = NULL, $type = 'mycred_default' )
1908
- {
1909
  if ( empty( $reference ) ) return 0;
1910
 
1911
  $mycred = mycred( $type );
@@ -1913,20 +1999,16 @@ if ( ! function_exists( 'mycred_count_ref_instances' ) ) :
1913
  global $wpdb;
1914
 
1915
  if ( $user_id !== NULL )
1916
- $count = $wpdb->get_var( $wpdb->prepare( "
1917
- SELECT COUNT(*)
1918
- FROM {$mycred->log_table}
1919
- WHERE ref = %s
1920
- AND user_id = %d
1921
- AND ctype = %s;", $reference, $user_id, $type ) );
1922
 
1923
  else
1924
- $count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$mycred->log_table} WHERE ref = %s;", $reference ) );
1925
 
1926
  if ( $count === NULL )
1927
  $count = 0;
1928
 
1929
  return $count;
 
1930
  }
1931
  endif;
1932
 
@@ -1938,11 +2020,11 @@ endif;
1938
  * @param $user_id (int) option to check references for a specific user
1939
  * @uses get_var()
1940
  * @since 1.5.3
1941
- * @version 1.0
1942
  */
1943
  if ( ! function_exists( 'mycred_count_ref_id_instances' ) ) :
1944
- function mycred_count_ref_id_instances( $reference = '', $ref_id = NULL, $user_id = NULL, $type = 'mycred_default' )
1945
- {
1946
  if ( $reference == '' || $ref_id == '' ) return 0;
1947
 
1948
  $mycred = mycred( $type );
@@ -1956,7 +2038,7 @@ if ( ! function_exists( 'mycred_count_ref_id_instances' ) ) :
1956
  WHERE ref = %s
1957
  AND ref_id = %d
1958
  AND user_id = %d
1959
- AND ctype = %s;", $reference, $ref_id, $user_id, $type ) );
1960
  }
1961
  else {
1962
  $count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$mycred->log_table} WHERE ref = %s AND ref_id = %d;", $reference, $ref_id ) );
@@ -1979,31 +2061,31 @@ endif;
1979
  * @param $order (string) order to return ASC or DESC
1980
  * @filter mycred_count_all_refs
1981
  * @since 1.3.3
1982
- * @version 1.1
1983
  */
1984
  if ( ! function_exists( 'mycred_count_all_ref_instances' ) ) :
1985
- function mycred_count_all_ref_instances( $number = 5, $order = 'DESC', $type = 'mycred_default' )
1986
- {
1987
  global $wpdb;
1988
- $mycred = mycred( $type );
1989
 
1990
- if ( $number == '-1' )
1991
- $limit = '';
1992
- else
1993
- $limit = ' LIMIT 0,' . abs( $number );
 
 
1994
 
1995
  if ( ! in_array( $order, array( 'ASC', 'DESC' ) ) )
1996
  $order = 'DESC';
1997
 
1998
  if ( $type != 'all' )
1999
- $type = " WHERE ctype = '{$type}'";
 
2000
  else
2001
  $type = '';
2002
 
2003
  $query = $wpdb->get_results( "SELECT ref, COUNT(*) AS count FROM {$mycred->log_table} {$type} GROUP BY ref ORDER BY count {$order} {$limit};" );
2004
 
2005
- $results = array();
2006
-
2007
  if ( $wpdb->num_rows > 0 ) {
2008
 
2009
  foreach ( $query as $num => $reference ) {
@@ -2021,6 +2103,7 @@ if ( ! function_exists( 'mycred_count_all_ref_instances' ) ) :
2021
  }
2022
 
2023
  return apply_filters( 'mycred_count_all_refs', $results );
 
2024
  }
2025
  endif;
2026
 
@@ -2043,77 +2126,63 @@ endif;
2043
  * @param $type (string) point type to filer by.
2044
  * @returns total points (int|float) or error message (string)
2045
  * @since 1.1.1
2046
- * @version 1.2.1
2047
  */
2048
  if ( ! function_exists( 'mycred_get_total_by_time' ) ) :
2049
- function mycred_get_total_by_time( $from = 'today', $to = 'now', $ref = NULL, $user_id = NULL, $type = 'mycred_default' )
2050
- {
2051
- // Get myCRED
2052
- $mycred = mycred( $type );
2053
 
2054
  // Prep
 
2055
  $wheres = array();
2056
- $prep = array();
2057
 
2058
  // Reference
2059
- if ( $ref !== NULL ) {
2060
- if ( empty( $ref ) ) return 'ref empty';
2061
-
2062
- $wheres[] = 'ref = %s';
2063
- $prep[] = $ref;
2064
- }
2065
 
2066
  // User
2067
- if ( $user_id !== NULL ) {
2068
- if ( ! is_int( $user_id ) ) return 'incorrect user id format';
 
 
 
 
2069
 
2070
- $wheres[] = 'user_id = %d';
2071
- $prep[] = $user_id;
2072
  }
2073
 
2074
  // Default from start of today
2075
- if ( $from == 'today' ) {
2076
- $today = date_i18n( 'Y/m/d 00:00:00' );
2077
- $from = strtotime( $today );
2078
- }
2079
 
2080
  // From
2081
  if ( ! is_numeric( $from ) ) return 'incorrect unix timestamp (from):' . ' ' . $from;
2082
- $wheres[] = 'time >= %d';
2083
- $prep[] = $from;
2084
 
2085
- // Default to is now
2086
  if ( $to == 'now' )
2087
- $to = date_i18n( 'U' );
2088
-
2089
- // To
2090
- if ( ! is_numeric( $to ) ) return 'incorrect unix timestamp (until):' . ' ' . $to;
2091
- $wheres[] = 'time <= %d';
2092
- $prep[] = $to;
2093
 
2094
- // Type
2095
- if ( empty( $type ) )
2096
- $type = $mycred->get_cred_id();
2097
 
2098
- $wheres[] = 'ctype = %s';
2099
- $prep[] = $type;
2100
-
2101
- global $wpdb;
2102
 
2103
  // Construct
2104
  $where = implode( ' AND ', $wheres );
2105
 
2106
  // Query
2107
- $query = $wpdb->get_var( $wpdb->prepare( "
2108
  SELECT SUM( creds )
2109
  FROM {$mycred->log_table}
2110
  WHERE {$where}
2111
- ORDER BY time;", $prep ) );
2112
 
2113
  if ( $query === NULL || $query == 0 )
2114
  return $mycred->zero();
2115
 
2116
  return $mycred->number( $query );
 
2117
  }
2118
  endif;
2119
 
@@ -2126,14 +2195,12 @@ endif;
2126
  * @param $type (string), optional cred type to check for
2127
  * @returns zero if user id is not set or if no total were found, else returns creds
2128
  * @since 1.2
2129
- * @version 1.3
2130
  */
2131
  if ( ! function_exists( 'mycred_get_users_total' ) ) :
2132
- function mycred_get_users_total( $user_id = '', $type = 'mycred_default' )
2133
- {
2134
- if ( $user_id == '' ) return 0;
2135
 
2136
- if ( $type == '' ) $type = 'mycred_default';
2137
 
2138
  $mycred = mycred( $type );
2139
  $total = mycred_get_user_meta( $user_id, $type, '_total' );
@@ -2145,6 +2212,7 @@ if ( ! function_exists( 'mycred_get_users_total' ) ) :
2145
 
2146
  $total = apply_filters( 'mycred_get_users_total', $total, $user_id, $type );
2147
  return $mycred->number( $total );
 
2148
  }
2149
  endif;
2150
 
@@ -2155,11 +2223,11 @@ endif;
2155
  * @param $user_id (int), required user id
2156
  * @param $type (string), required point type
2157
  * @since 1.4.7
2158
- * @version 1.1
2159
  */
2160
  if ( ! function_exists( 'mycred_query_users_total' ) ) :
2161
- function mycred_query_users_total( $user_id, $type = 'mycred_default' )
2162
- {
2163
  global $wpdb;
2164
 
2165
  $mycred = mycred( $type );
@@ -2169,18 +2237,15 @@ if ( ! function_exists( 'mycred_query_users_total' ) ) :
2169
  FROM {$mycred->log_table}
2170
  WHERE user_id = %d
2171
  AND ( ( creds > 0 ) OR ( creds < 0 AND ref = 'manual' ) )
2172
- AND ctype = %s;", $user_id, $type ) );
2173
 
2174
  if ( $total === NULL ) {
2175
 
2176
- if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_centralize_log() )
2177
- $type .= '_' . $GLOBALS['blog_id'];
2178
-
2179
  $total = $wpdb->get_var( $wpdb->prepare( "
2180
  SELECT meta_value
2181
  FROM {$wpdb->usermeta}
2182
  WHERE user_id = %d
2183
- AND meta_key = %s;", $user_id, $type ) );
2184
 
2185
  if ( $total === NULL )
2186
  $total = 0;
@@ -2188,6 +2253,7 @@ if ( ! function_exists( 'mycred_query_users_total' ) ) :
2188
  }
2189
 
2190
  return apply_filters( 'mycred_query_users_total', $total, $user_id, $type, $mycred );
 
2191
  }
2192
  endif;
2193
 
@@ -2200,14 +2266,14 @@ endif;
2200
  * @param $mycred (myCRED_Settings object), required myCRED settings object
2201
  * @returns zero if user id is not set or if no total were found, else returns total
2202
  * @since 1.2
2203
- * @version 1.3
2204
  */
2205
  if ( ! function_exists( 'mycred_update_users_total' ) ) :
2206
- function mycred_update_users_total( $type = 'mycred_default', $request = NULL, $mycred = NULL )
2207
- {
2208
  if ( $request === NULL || ! is_object( $mycred ) || ! isset( $request['user_id'] ) || ! isset( $request['amount'] ) ) return false;
2209
 
2210
- if ( $type == '' )
2211
  $type = $mycred->get_cred_id();
2212
 
2213
  $amount = $mycred->number( $request['amount'] );
@@ -2221,6 +2287,7 @@ if ( ! function_exists( 'mycred_update_users_total' ) ) :
2221
  mycred_update_user_meta( $user_id, $type, '_total', $new_total );
2222
 
2223
  return apply_filters( 'mycred_update_users_total', $new_total, $type, $request, $mycred );
 
2224
  }
2225
  endif;
2226
 
@@ -2232,8 +2299,8 @@ endif;
2232
  * @version 1.0
2233
  */
2234
  if ( ! function_exists( 'mycred_apply_defaults' ) ) :
2235
- function mycred_apply_defaults( &$pref, $set )
2236
- {
2237
  $set = (array) $set;
2238
  $return = array();
2239
 
@@ -2264,8 +2331,8 @@ endif;
2264
  * @version 1.0
2265
  */
2266
  if ( ! function_exists( 'mycred_get_remote' ) ) :
2267
- function mycred_get_remote()
2268
- {
2269
  $defaults = apply_filters( 'mycred_remote_defaults', array(
2270
  'enabled' => 0,
2271
  'key' => '',
@@ -2274,17 +2341,18 @@ if ( ! function_exists( 'mycred_get_remote' ) ) :
2274
  ) );
2275
 
2276
  return mycred_apply_defaults( $defaults, get_option( 'mycred_pref_remote', array() ) );
 
2277
  }
2278
  endif;
2279
 
2280
  /**
2281
  * Check if site is blocked
2282
  * @since 1.5.4
2283
- * @version 1.0.1
2284
  */
2285
  if ( ! function_exists( 'mycred_is_site_blocked' ) ) :
2286
- function mycred_is_site_blocked( $blog_id = NULL )
2287
- {
2288
  // Only applicable for multisites
2289
  if ( ! is_multisite() ) return false;
2290
 
@@ -2297,13 +2365,18 @@ if ( ! function_exists( 'mycred_is_site_blocked' ) ) :
2297
  $blocked = false;
2298
 
2299
  // Only applicable if the block is set and this is not the main blog
2300
- if ( ! empty( $network['block'] ) && $blog_id > 1 ) {
2301
 
2302
  // Clean up list to make sure no white spaces are used
2303
  $list = explode( ',', $network['block'] );
2304
  $clean = array();
2305
  foreach ( $list as $blog_id ) {
 
 
 
 
2306
  $clean[] = absint( $blog_id );
 
2307
  }
2308
 
2309
  // Check if blog is blocked from using myCRED.
@@ -2323,10 +2396,9 @@ endif;
2323
  * @version 1.0
2324
  */
2325
  if ( ! function_exists( 'is_mycred_ready' ) ) :
2326
- function is_mycred_ready()
2327
- {
2328
- global $mycred;
2329
- $mycred = new myCRED_Settings();
2330
 
2331
  // By default we start with the main sites setup. If it is not a multisite installation
2332
  // get_blog_option() will default to get_option() for us.
@@ -2349,9 +2421,11 @@ if ( ! function_exists( 'is_mycred_ready' ) ) :
2349
  if ( $setup !== false ) return true;
2350
 
2351
  // If we have come this far we need to load the setup
2352
- require_once( myCRED_INCLUDES_DIR . 'mycred-install.php' );
2353
  $setup = new myCRED_Setup();
 
2354
  return $setup->status();
 
2355
  }
2356
  endif;
2357
 
@@ -2363,8 +2437,8 @@ endif;
2363
  * @version 1.2.1
2364
  */
2365
  if ( ! function_exists( 'mycred_install_log' ) ) :
2366
- function mycred_install_log( $decimals = 0, $table = NULL )
2367
- {
2368
  if ( is_multisite() && get_blog_option( $GLOBALS['blog_id'], 'mycred_version_db', false ) !== false ) return true;
2369
  elseif ( ! is_multisite() && get_option( 'mycred_version_db', false ) !== false ) return true;
2370
 
@@ -2424,6 +2498,7 @@ if ( ! function_exists( 'mycred_install_log' ) ) :
2424
  add_option( 'mycred_version_db', '1.0' );
2425
 
2426
  return true;
 
2427
  }
2428
  endif;
2429
 
@@ -2434,8 +2509,8 @@ endif;
2434
  * @version 1.0
2435
  */
2436
  if ( ! function_exists( 'mycred_get_exchange_rates' ) ) :
2437
- function mycred_get_exchange_rates( $point_type = '' )
2438
- {
2439
  $types = mycred_get_types();
2440
 
2441
  $default = array();
@@ -2459,8 +2534,8 @@ endif;
2459
  * @version 1.1
2460
  */
2461
  if ( ! function_exists( 'mycred_create_token' ) ) :
2462
- function mycred_create_token( $string = '' )
2463
- {
2464
  if ( is_array( $string ) )
2465
  $string = implode( ':', $string );
2466
 
@@ -2483,19 +2558,23 @@ endif;
2483
  * @version 1.1
2484
  */
2485
  if ( ! function_exists( 'mycred_verify_token' ) ) :
2486
- function mycred_verify_token( $string = '', $length = 1 )
2487
- {
2488
  $reply = false;
2489
 
2490
  $protect = mycred_protect();
2491
  if ( $protect !== false ) {
 
2492
  $decoded = $protect->do_decode( $string );
2493
- $array = explode( ':', $decoded );
2494
  if ( count( $array ) == $length )
2495
  $reply = $array;
 
2496
  }
2497
  else {
 
2498
  $reply = $string;
 
2499
  }
2500
 
2501
  return apply_filters( 'mycred_verify_token', $reply, $string, $length );
@@ -2511,8 +2590,8 @@ endif;
2511
  * @version 1.2.1
2512
  */
2513
  if ( ! function_exists( 'mycred_get_all_references' ) ) :
2514
- function mycred_get_all_references()
2515
- {
2516
  // Hooks
2517
  $hooks = array(
2518
  'registration' => __( 'Website Registration', 'mycred' ),
@@ -2558,7 +2637,7 @@ if ( ! function_exists( 'mycred_get_all_references' ) ) :
2558
  $hooks['video_upload'] = __( 'Video Upload', 'mycred' );
2559
  $hooks['music_upload'] = __( 'Music Upload', 'mycred' );
2560
  }
2561
-
2562
  if ( function_exists( 'bp_links_setup_root_component' ) ) {
2563
  $hooks['new_link'] = __( 'New Link', 'mycred' );
2564
  $hooks['link_voting'] = __( 'Link Voting', 'mycred' );
@@ -2571,7 +2650,7 @@ if ( ! function_exists( 'mycred_get_all_references' ) ) :
2571
  $hooks['topic_favorited'] = __( 'Favorited Topic (bbPress)', 'mycred' );
2572
  $hooks['new_forum_reply'] = __( 'New Topic Reply (bbPress)', 'mycred' );
2573
  }
2574
-
2575
  if ( function_exists( 'wpcf7' ) )
2576
  $hooks['contact_form_submission'] = __( 'Form Submission (Contact Form 7)', 'mycred' );
2577
 
@@ -2645,14 +2724,16 @@ if ( ! function_exists( 'mycred_get_all_references' ) ) :
2645
  $addons['event_payment'] = __( 'Event Payment (Event Espresso)', 'mycred' );
2646
  $addons['event_sale'] = __( 'Event Sale (Event Espresso)', 'mycred' );
2647
  }
2648
-
2649
  if ( defined( 'EM_VERSION' ) ) {
2650
  $addons['ticket_purchase'] = __( 'Event Payment (Events Manager)', 'mycred' );
2651
  $addons['ticket_sale'] = __( 'Event Sale (Events Manager)', 'mycred' );
2652
  }
2653
 
2654
- if ( class_exists( 'myCRED_Sell_Content_Module' ) )
2655
- $addons['buy_content'] = __( 'Content Purchase / Sale', 'mycred' );
 
 
2656
 
2657
  if ( class_exists( 'myCRED_Transfer_Module' ) )
2658
  $addons['transfer'] = __( 'Transfer', 'mycred' );
@@ -2662,6 +2743,7 @@ if ( ! function_exists( 'mycred_get_all_references' ) ) :
2662
  $references['manual'] = __( 'Manual Adjustment by Admin', 'mycred' );
2663
 
2664
  return apply_filters( 'mycred_all_references', $references );
 
2665
  }
2666
  endif;
2667
 
@@ -2673,11 +2755,12 @@ endif;
2673
  * @version 1.0
2674
  */
2675
  if ( ! function_exists( 'mycred_get_used_references' ) ) :
2676
- function mycred_get_used_references( $type = 'mycred_default' )
2677
- {
2678
  $references = wp_cache_get( 'mycred_references' );
2679
 
2680
  if ( false === $references ) {
 
2681
  global $wpdb;
2682
 
2683
  $mycred = mycred( $type );
@@ -2688,9 +2771,11 @@ if ( ! function_exists( 'mycred_get_used_references' ) ) :
2688
  AND ctype = %s;", $type ) );
2689
 
2690
  if ( $references ) wp_cache_set( 'mycred_references', $references );
 
2691
  }
2692
 
2693
  return apply_filters( 'mycred_used_references', $references );
 
2694
  }
2695
  endif;
2696
 
@@ -2700,9 +2785,10 @@ endif;
2700
  * @version 1.0
2701
  */
2702
  if ( ! function_exists( 'isfloat' ) ) :
2703
- function isfloat( $f )
2704
- {
2705
  return ( $f == (string)(float) $f );
 
2706
  }
2707
  endif;
2708
 
@@ -2713,8 +2799,8 @@ endif;
2713
  * @version 1.1
2714
  */
2715
  if ( ! function_exists( 'mycred_catch_exchange_requests' ) ) :
2716
- function mycred_catch_exchange_requests()
2717
- {
2718
  if ( ! isset( $_POST['mycred_exchange']['nonce'] ) || ! wp_verify_nonce( $_POST['mycred_exchange']['nonce'], 'mycred-exchange' ) ) return;
2719
 
2720
  // Decode token
5
  * myCRED_Settings class
6
  * @see http://codex.mycred.me/classes/mycred_settings/
7
  * @since 0.1
8
+ * @version 1.5.1
9
  */
10
  if ( ! class_exists( 'myCRED_Settings' ) ) :
11
  class myCRED_Settings {
28
  $this->use_master_template = mycred_override_settings();
29
  $this->use_central_logging = mycred_centralize_log();
30
 
31
+ if ( $type == '' || $type === NULL )
32
+ $type = 'mycred_default';
33
 
34
  // Load Settings
35
  $option_id = 'mycred_pref_core';
350
 
351
  elseif ( $type == 'comment' )
352
  $content = $this->template_tags_comment( $content, $ref_id, $data );
353
+
354
  $content = apply_filters( "mycred_parse_tags_{$type}", $content, $log_entry );
355
 
356
  }
853
  // Check if user can
854
  if ( user_can( $user_id, $this->edit_plugin_cap() ) )
855
  $result = true;
856
+
857
  return apply_filters( 'mycred_can_edit_plugin', $result, $user_id );
858
 
859
  }
1291
  * @version 1.0
1292
  */
1293
  if ( ! function_exists( 'mycred_label' ) ) :
1294
+ function mycred_label( $trim = false ) {
1295
+
1296
  global $mycred_label;
1297
+
1298
  if ( ! isset( $mycred_label ) || empty( $mycred_label ) )
1299
  $name = apply_filters( 'mycred_label', myCRED_NAME );
1300
 
1302
  $name = strip_tags( $name );
1303
 
1304
  return $name;
1305
+
1306
  }
1307
  endif;
1308
 
1314
  * @version 1.0
1315
  */
1316
  if ( ! function_exists( 'mycred' ) ) :
1317
+ function mycred( $type = 'mycred_default' ) {
1318
+
1319
  if ( $type != 'mycred_default' )
1320
  return new myCRED_Settings( $type );
1321
 
1325
  $mycred = new myCRED_Settings();
1326
 
1327
  return $mycred;
1328
+
1329
+ }
1330
+ endif;
1331
+
1332
+ /**
1333
+ * Get Point Type Name
1334
+ * Returns the name given to a particular point type.
1335
+ * @param $signular (boolean) option to return the plural version, returns singular by default
1336
+ * @since 0.1
1337
+ * @version 1.1
1338
+ */
1339
+ if ( ! function_exists( 'mycred_get_point_type_name' ) ) :
1340
+ function mycred_get_point_type_name( $type = 'mycred_default', $singular = true ) {
1341
+
1342
+ $mycred = mycred( $type );
1343
+
1344
+ if ( $singular )
1345
+ return $mycred->singular();
1346
+
1347
+ return $mycred->plural();
1348
+
1349
  }
1350
  endif;
1351
 
1352
+ // Deprecated
1353
+ if ( ! function_exists( 'mycred_name' ) ) :
1354
+ function mycred_name( $singular = true, $type = 'mycred_default' ) {
1355
+
1356
+ _deprecated_function( 'mycred_name', '1.6.8', 'mycred_get_point_type_name()' );
1357
+
1358
+ return mycred_get_point_type_name( $type, $singular );
1359
+
1360
+ }
1361
+ endif;
1362
+
1363
  /**
1364
  * Get Cred Types
1365
  * Returns an associative array of registered point types.
1366
+ * @param $name_first (bool) option to replace "myCRED" with the point type name set.
1367
  * @since 1.4
1368
  * @version 1.1
1369
  */
1370
  if ( ! function_exists( 'mycred_get_types' ) ) :
1371
+ function mycred_get_types( $name_first = false ) {
1372
+
1373
  $types = array();
1374
 
1375
  $available_types = mycred_get_option( 'mycred_types', array( 'mycred_default' => mycred_label() ) );
1377
 
1378
  foreach ( $available_types as $type => $label ) {
1379
 
1380
+ if ( $type == 'mycred_default' )
1381
+ $label = mycred_get_point_type_name( false );
 
 
1382
 
1383
  $types[ $type ] = $label;
1384
 
1387
  }
1388
  else {
1389
 
1390
+ if ( $name_first )
1391
+ $available_types['mycred_default'] = mycred_get_point_type_name( false );
1392
+
1393
  $types = $available_types;
1394
 
1395
  }
1396
 
1397
  return apply_filters( 'mycred_types', $types );
1398
+
1399
+ }
1400
+ endif;
1401
+
1402
+ /**
1403
+ * Point Type Exists
1404
+ * @since 1.6.8
1405
+ * @version 1.0.1
1406
+ */
1407
+ if ( ! function_exists( 'mycred_point_type_exists' ) ) :
1408
+ function mycred_point_type_exists( $type = NULL ) {
1409
+
1410
+ $result = false;
1411
+ $types = mycred_get_types();
1412
+ $type = sanitize_key( $type );
1413
+
1414
+ // Remove _total from total balances to get the underlaying id
1415
+ $type = str_replace( '_total', '', $type );
1416
+
1417
+ // Need to remove blog id suffix on multisites
1418
+ // This function should not be used to check for point type ids with
1419
+ // blog ID suffixes but in case it is used incorrectly, we need to fix this.
1420
+ if ( is_multisite() )
1421
+ $type = str_replace( '_' . get_current_blog_id(), '', $type );
1422
+
1423
+ if ( strlen( $type ) > 0 && array_key_exists( $type, $types ) )
1424
+ $result = true;
1425
+
1426
+ return $result;
1427
+
1428
  }
1429
  endif;
1430
 
1434
  * @version 1.0
1435
  */
1436
  if ( ! function_exists( 'mycred_types_select_from_dropdown' ) ) :
1437
+ function mycred_types_select_from_dropdown( $name = '', $id = '', $selected = '', $return = false, $extra = '' ) {
1438
+
1439
  $types = mycred_get_types();
1440
  $output = '';
1441
 
1467
  return $output;
1468
 
1469
  echo $output;
1470
+
1471
  }
1472
  endif;
1473
 
1477
  * @version 1.0
1478
  */
1479
  if ( ! function_exists( 'mycred_types_select_from_checkboxes' ) ) :
1480
+ function mycred_types_select_from_checkboxes( $name = '', $id = '', $selected_values = array(), $return = false ) {
1481
+
1482
  $types = mycred_get_types();
1483
 
1484
  $output = '';
1498
  return $output;
1499
 
1500
  echo $output;
1501
+
1502
  }
1503
  endif;
1504
 
1509
  * @version 1.0
1510
  */
1511
  if ( ! function_exists( 'mycred_get_settings_network' ) ) :
1512
+ function mycred_get_settings_network() {
1513
+
1514
  if ( ! is_multisite() ) return false;
1515
 
1516
  $defaults = array(
1521
  $settings = get_blog_option( 1, 'mycred_network', $defaults );
1522
 
1523
  return $settings;
1524
+
1525
  }
1526
  endif;
1527
 
1531
  * @version 1.0
1532
  */
1533
  if ( ! function_exists( 'mycred_override_settings' ) ) :
1534
+ function mycred_override_settings() {
1535
+
1536
  // Not a multisite
1537
  if ( ! is_multisite() ) return false;
1538
 
1540
  if ( $mycred_network['master'] ) return true;
1541
 
1542
  return false;
1543
+
1544
  }
1545
  endif;
1546
 
1550
  * @version 1.0
1551
  */
1552
  if ( ! function_exists( 'mycred_centralize_log' ) ) :
1553
+ function mycred_centralize_log() {
1554
+
1555
  // Not a multisite
1556
  if ( ! is_multisite() ) return true;
1557
 
1559
  if ( $mycred_network['central'] ) return true;
1560
 
1561
  return false;
1562
+
1563
  }
1564
  endif;
1565
 
1569
  * @version 1.0
1570
  */
1571
  if ( ! function_exists( 'mycred_get_option' ) ) :
1572
+ function mycred_get_option( $option_id, $default = array() ) {
1573
+
1574
  if ( is_multisite() ) {
1575
 
1576
  if ( mycred_override_settings() )
1587
  }
1588
 
1589
  return $settings;
1590
+
1591
  }
1592
  endif;
1593
 
1597
  * @version 1.0
1598
  */
1599
  if ( ! function_exists( 'mycred_update_option' ) ) :
1600
+ function mycred_update_option( $option_id, $value = '' ) {
1601
+
1602
  if ( is_multisite() ) {
1603
 
1604
  if ( mycred_override_settings() )
1613
  return update_option( $option_id, $value );
1614
 
1615
  }
1616
+
1617
  }
1618
  endif;
1619
 
1623
  * @version 1.0
1624
  */
1625
  if ( ! function_exists( 'mycred_delete_option' ) ) :
1626
+ function mycred_delete_option( $option_id ) {
1627
+
1628
  if ( is_multisite() ) {
1629
 
1630
  if ( mycred_override_settings() )
1639
  delete_option( $option_id );
1640
 
1641
  }
1642
+
1643
  }
1644
  endif;
1645
 
1649
  * @version 1.1
1650
  */
1651
  if ( ! function_exists( 'mycred_get_user_meta' ) ) :
1652
+ function mycred_get_user_meta( $user_id, $key, $end = '', $unique = true ) {
 
 
 
 
 
 
1653
 
1654
+ $key = mycred_get_meta_key( $key, $end );
1655
 
1656
  return get_user_meta( $user_id, $key, $unique );
1657
+
1658
  }
1659
  endif;
1660
 
1664
  * @version 1.1
1665
  */
1666
  if ( ! function_exists( 'mycred_add_user_meta' ) ) :
1667
+ function mycred_add_user_meta( $user_id, $key, $end = '', $value = '', $unique = true ) {
 
 
 
1668
 
1669
+ $key = mycred_get_meta_key( $key, $end );
 
 
 
1670
 
1671
  return add_user_meta( $user_id, $key, $value, $unique );
1672
+
1673
  }
1674
  endif;
1675
 
1679
  * @version 1.1
1680
  */
1681
  if ( ! function_exists( 'mycred_update_user_meta' ) ) :
1682
+ function mycred_update_user_meta( $user_id, $key, $end = '', $value = '' ) {
 
 
 
1683
 
1684
+ $key = mycred_get_meta_key( $key, $end );
 
 
 
1685
 
1686
  return update_user_meta( $user_id, $key, $value );
1687
+
1688
  }
1689
  endif;
1690
 
1691
  /**
1692
  * Delete User Meta
1693
  * @since 1.5
1694
+ * @version 1.1.1
1695
  */
1696
  if ( ! function_exists( 'mycred_delete_user_meta' ) ) :
1697
+ function mycred_delete_user_meta( $user_id, $key, $end = '', $value = NULL ) {
1698
+
1699
+ $key = mycred_get_meta_key( $key, $end );
 
1700
 
1701
+ if ( $value === NULL )
1702
+ return delete_user_meta( $user_id, $key );
1703
 
1704
+ return delete_user_meta( $user_id, $key, $value );
1705
 
 
1706
  }
1707
  endif;
1708
 
1709
  /**
1710
+ * Get Meta Key
1711
+ * @since 1.6.8
1712
+ * @version 1.0
 
 
1713
  */
1714
+ if ( ! function_exists( 'mycred_get_meta_key' ) ) :
1715
+ function mycred_get_meta_key( $key, $end = '' ) {
 
 
1716
 
1717
+ if ( is_multisite() ) {
1718
+
1719
+ $blog_id = get_current_blog_id();
1720
+
1721
+ if ( $blog_id > 1 && ! mycred_centralize_log() && $key != 'mycred_rank' )
1722
+ $key .= '_' . $blog_id;
1723
+
1724
+ elseif ( $blog_id > 1 && ! mycred_override_settings() && $key == 'mycred_rank' )
1725
+ $key .= '_' . $blog_id;
1726
+
1727
+ }
1728
+
1729
+ if ( strlen( $end ) > 0 )
1730
+ $key .= $end;
1731
+
1732
+ return $key;
1733
 
 
 
1734
  }
1735
  endif;
1736
 
1743
  * @version 1.0
1744
  */
1745
  if ( ! function_exists( 'mycred_strip_tags' ) ) :
1746
+ function mycred_strip_tags( $string = '', $overwride = '' ) {
1747
+
1748
  $mycred = mycred();
1749
 
1750
  return $mycred->allowed_tags( $string, $overwrite );
1751
+
1752
  }
1753
  endif;
1754
 
1759
  * @param $user_id (int), optional user id to check, defaults to current user
1760
  * @returns true or false
1761
  * @since 0.1
1762
+ * @version 1.1.1
1763
  */
1764
  if ( ! function_exists( 'mycred_is_admin' ) ) :
1765
+ function mycred_is_admin( $user_id = NULL, $type = 'mycred_default' ) {
1766
+
1767
+ if ( $user_id === NULL )
1768
+ $user_id = get_current_user_id();
1769
+
1770
+ if ( $user_id === 0 ) return false;
1771
+
1772
  $mycred = mycred( $type );
 
1773
 
1774
+ if ( $mycred->can_edit_creds( $user_id ) || $mycred->can_edit_plugin( $user_id ) )
1775
+ return true;
1776
 
1777
  return false;
1778
+
1779
  }
1780
  endif;
1781
 
1785
  * @see http://codex.mycred.me/functions/mycred_exclude_user/
1786
  * @param $user_id (int), optional user to check, defaults to current user
1787
  * @since 0.1
1788
+ * @version 1.1.1
1789
  */
1790
  if ( ! function_exists( 'mycred_exclude_user' ) ) :
1791
+ function mycred_exclude_user( $user_id = NULL, $type = 'mycred_default' ) {
1792
+
1793
+ if ( $user_id === NULL )
1794
+ $user_id = get_current_user_id();
1795
+
1796
+ if ( $user_id === 0 ) return false;
1797
+
1798
  $mycred = mycred( $type );
 
1799
 
1800
  return $mycred->exclude_user( $user_id );
1801
+
1802
  }
1803
  endif;
1804
 
1809
  * @param $user_id (int) user id
1810
  * @return users balance (int|float)
1811
  * @since 0.1
1812
+ * @version 1.1.1
1813
  */
1814
  if ( ! function_exists( 'mycred_get_users_cred' ) ) :
1815
+ function mycred_get_users_cred( $user_id = NULL, $type = 'mycred_default' ) {
1816
+
1817
+ if ( $user_id === NULL )
1818
+ $user_id = get_current_user_id();
1819
 
1820
+ if ( $user_id === 0 ) return 0;
 
1821
 
1822
  $mycred = mycred( $type );
1823
 
1824
  return $mycred->get_users_cred( $user_id, $type );
1825
+
1826
  }
1827
  endif;
1828
 
1833
  * @param $user_id (int), required user id
1834
  * @return users balance (string) or false if no user id is given
1835
  * @since 0.1
1836
+ * @version 1.1.1
1837
  */
1838
  if ( ! function_exists( 'mycred_get_users_fcred' ) ) :
1839
+ function mycred_get_users_fcred( $user_id = NULL, $type = 'mycred_default' ) {
1840
+
1841
  if ( $user_id === NULL ) return false;
1842
 
1843
  $mycred = mycred( $type );
1844
+ $cred = $mycred->get_users_cred( $user_id, $type );
1845
 
1846
  return $mycred->format_creds( $cred );
1847
+
1848
  }
1849
  endif;
1850
 
1854
  * @version 1.0
1855
  */
1856
  if ( ! function_exists( 'mycred_flush_widget_cache' ) ) :
1857
+ function mycred_flush_widget_cache( $id = NULL ) {
1858
+
1859
  if ( $id === NULL ) return;
1860
  wp_cache_delete( $id, 'widget' );
1861
+
1862
  }
1863
  endif;
1864
 
1865
  /**
1866
  * Format Number
1867
  * @since 1.3.3
1868
+ * @version 1.1.1
1869
  */
1870
  if ( ! function_exists( 'mycred_format_number' ) ) :
1871
+ function mycred_format_number( $value = NULL, $type = 'mycred_default' ) {
1872
+
1873
  $mycred = mycred( $type );
1874
  if ( $value === NULL )
1875
  return $mycred->zero();
1876
 
1877
  return $mycred->format_number( $value );
1878
+
1879
  }
1880
  endif;
1881
 
1882
  /**
1883
  * Format Creds
1884
  * @since 1.3.3
1885
+ * @version 1.0.1
1886
  */
1887
  if ( ! function_exists( 'mycred_format_creds' ) ) :
1888
+ function mycred_format_creds( $value = NULL, $type = 'mycred_default' ) {
1889
+
1890
  $mycred = mycred( $type );
1891
  if ( $value === NULL ) $mycred->zero();
1892
 
1893
  return $mycred->format_creds( $value );
1894
+
1895
  }
1896
  endif;
1897
 
1909
  * @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
1910
  * @returns boolean true on success or false on fail
1911
  * @since 0.1
1912
+ * @version 1.2.1
1913
  */
1914
  if ( ! function_exists( 'mycred_add' ) ) :
1915
+ function mycred_add( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' ) {
1916
+
1917
  // $ref, $user_id and $cred is required
1918
  if ( $ref == '' || $user_id == '' || $amount == '' ) return false;
1919
 
1922
 
1923
  // Add creds
1924
  return $mycred->add_creds( $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
1925
+
1926
  }
1927
  endif;
1928
 
1932
  * @see http://codex.mycred.me/functions/mycred_subtract/
1933
  * @uses mycred_add()
1934
  * @since 0.1
1935
+ * @version 1.1.1
1936
  */
1937
  if ( ! function_exists( 'mycred_subtract' ) ) :
1938
+ function mycred_subtract( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' ) {
1939
+
1940
  if ( $ref == '' || $user_id == '' || $amount == '' ) return false;
1941
  if ( $amount > 0 ) $amount = 0 - $amount;
1942
 
1943
  return mycred_add( $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
1944
+
1945
  }
1946
  endif;
1947
 
1952
  * @version 1.1
1953
  */
1954
  if ( ! function_exists( 'mycred_get_log_exports' ) ) :
1955
+ function mycred_get_log_exports() {
1956
+
1957
  $defaults = array(
1958
  'all' => array(
1959
  'label' => __( 'Entire Log', 'mycred' ),
1975
  );
1976
 
1977
  return apply_filters( 'mycred_log_exports', $defaults );
1978
+
1979
  }
1980
  endif;
1981
 
1987
  * @param $user_id (int) option to check references for a specific user
1988
  * @uses get_var()
1989
  * @since 1.1
1990
+ * @version 1.0.2
1991
  */
1992
  if ( ! function_exists( 'mycred_count_ref_instances' ) ) :
1993
+ function mycred_count_ref_instances( $reference = '', $user_id = NULL, $type = 'mycred_default' ) {
1994
+
1995
  if ( empty( $reference ) ) return 0;
1996
 
1997
  $mycred = mycred( $type );
1999
  global $wpdb;
2000
 
2001
  if ( $user_id !== NULL )
2002
+ $count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$mycred->log_table} WHERE ref = %s AND user_id = %d AND ctype = %s;", $reference, $user_id, $mycred->cred_id ) );
 
 
 
 
 
2003
 
2004
  else
2005
+ $count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$mycred->log_table} WHERE ref = %s AND ctype = %s;", $reference, $mycred->cred_id ) );
2006
 
2007
  if ( $count === NULL )
2008
  $count = 0;
2009
 
2010
  return $count;
2011
+
2012
  }
2013
  endif;
2014
 
2020
  * @param $user_id (int) option to check references for a specific user
2021
  * @uses get_var()
2022
  * @since 1.5.3
2023
+ * @version 1.0.1
2024
  */
2025
  if ( ! function_exists( 'mycred_count_ref_id_instances' ) ) :
2026
+ function mycred_count_ref_id_instances( $reference = '', $ref_id = NULL, $user_id = NULL, $type = 'mycred_default' ) {
2027
+
2028
  if ( $reference == '' || $ref_id == '' ) return 0;
2029
 
2030
  $mycred = mycred( $type );
2038
  WHERE ref = %s
2039
  AND ref_id = %d
2040
  AND user_id = %d
2041
+ AND ctype = %s;", $reference, $ref_id, $user_id, $mycred->cred_id ) );
2042
  }
2043
  else {
2044
  $count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$mycred->log_table} WHERE ref = %s AND ref_id = %d;", $reference, $ref_id ) );
2061
  * @param $order (string) order to return ASC or DESC
2062
  * @filter mycred_count_all_refs
2063
  * @since 1.3.3
2064
+ * @version 1.1.1
2065
  */
2066
  if ( ! function_exists( 'mycred_count_all_ref_instances' ) ) :
2067
+ function mycred_count_all_ref_instances( $number = 5, $order = 'DESC', $type = 'mycred_default' ) {
2068
+
2069
  global $wpdb;
 
2070
 
2071
+ $results = array();
2072
+ $mycred = mycred( $type );
2073
+
2074
+ $limit = '';
2075
+ if ( $number > 0 )
2076
+ $limit = ' LIMIT 0,' . absint( $number );
2077
 
2078
  if ( ! in_array( $order, array( 'ASC', 'DESC' ) ) )
2079
  $order = 'DESC';
2080
 
2081
  if ( $type != 'all' )
2082
+ $type = $wpdb->prepare( 'WHERE ctype = %s', $mycred->cred_id );
2083
+
2084
  else
2085
  $type = '';
2086
 
2087
  $query = $wpdb->get_results( "SELECT ref, COUNT(*) AS count FROM {$mycred->log_table} {$type} GROUP BY ref ORDER BY count {$order} {$limit};" );
2088
 
 
 
2089
  if ( $wpdb->num_rows > 0 ) {
2090
 
2091
  foreach ( $query as $num => $reference ) {
2103
  }
2104
 
2105
  return apply_filters( 'mycred_count_all_refs', $results );
2106
+
2107
  }
2108
  endif;
2109
 
2126
  * @param $type (string) point type to filer by.
2127
  * @returns total points (int|float) or error message (string)
2128
  * @since 1.1.1
2129
+ * @version 1.3
2130
  */
2131
  if ( ! function_exists( 'mycred_get_total_by_time' ) ) :
2132
+ function mycred_get_total_by_time( $from = 'today', $to = 'now', $ref = NULL, $user_id = NULL, $type = 'mycred_default' ) {
2133
+
2134
+ global $wpdb;
 
2135
 
2136
  // Prep
2137
+ $mycred = mycred( $type );
2138
  $wheres = array();
 
2139
 
2140
  // Reference
2141
+ if ( $ref !== NULL && strlen( $ref ) > 0 )
2142
+ $wheres[] = $wpdb->prepare( 'ref = %s', $ref );
 
 
 
 
2143
 
2144
  // User
2145
+ if ( $user_id !== NULL && strlen( $user_id ) > 0 ) {
2146
+
2147
+ // No use to run a calculation if the user is excluded
2148
+ if ( $mycred->exclude_user( $user_id ) ) return 0;
2149
+
2150
+ $wheres[] = $wpdb->prepare( 'user_id = %d', $user_id );
2151
 
 
 
2152
  }
2153
 
2154
  // Default from start of today
2155
+ if ( $from == 'today' )
2156
+ $from = strtotime( date_i18n( 'Y/m/d 00:00:00' ) );
 
 
2157
 
2158
  // From
2159
  if ( ! is_numeric( $from ) ) return 'incorrect unix timestamp (from):' . ' ' . $from;
2160
+ $wheres[] = $wpdb->prepare( 'time >= %d', $from );
 
2161
 
2162
+ // Until
2163
  if ( $to == 'now' )
2164
+ $to = current_time( 'timestamp' );
 
 
 
 
 
2165
 
2166
+ if ( is_numeric( $to ) )
2167
+ $wheres[] = $wpdb->prepare( 'time <= %d', $to );
 
2168
 
2169
+ $wheres[] = $wpdb->prepare( 'ctype = %s', $type );
 
 
 
2170
 
2171
  // Construct
2172
  $where = implode( ' AND ', $wheres );
2173
 
2174
  // Query
2175
+ $query = $wpdb->get_var( "
2176
  SELECT SUM( creds )
2177
  FROM {$mycred->log_table}
2178
  WHERE {$where}
2179
+ ORDER BY time;" );
2180
 
2181
  if ( $query === NULL || $query == 0 )
2182
  return $mycred->zero();
2183
 
2184
  return $mycred->number( $query );
2185
+
2186
  }
2187
  endif;
2188
 
2195
  * @param $type (string), optional cred type to check for
2196
  * @returns zero if user id is not set or if no total were found, else returns creds
2197
  * @since 1.2
2198
+ * @version 1.3.1
2199
  */
2200
  if ( ! function_exists( 'mycred_get_users_total' ) ) :
2201
+ function mycred_get_users_total( $user_id = '', $type = 'mycred_default' ) {
 
 
2202
 
2203
+ if ( $user_id == '' ) return 0;
2204
 
2205
  $mycred = mycred( $type );
2206
  $total = mycred_get_user_meta( $user_id, $type, '_total' );
2212
 
2213
  $total = apply_filters( 'mycred_get_users_total', $total, $user_id, $type );
2214
  return $mycred->number( $total );
2215
+
2216
  }
2217
  endif;
2218
 
2223
  * @param $user_id (int), required user id
2224
  * @param $type (string), required point type
2225
  * @since 1.4.7
2226
+ * @version 1.1.1
2227
  */
2228
  if ( ! function_exists( 'mycred_query_users_total' ) ) :
2229
+ function mycred_query_users_total( $user_id, $type = 'mycred_default' ) {
2230
+
2231
  global $wpdb;
2232
 
2233
  $mycred = mycred( $type );
2237
  FROM {$mycred->log_table}
2238
  WHERE user_id = %d
2239
  AND ( ( creds > 0 ) OR ( creds < 0 AND ref = 'manual' ) )
2240
+ AND ctype = %s;", $user_id, mycred_get_meta_key( $type ) ) );
2241
 
2242
  if ( $total === NULL ) {
2243
 
 
 
 
2244
  $total = $wpdb->get_var( $wpdb->prepare( "
2245
  SELECT meta_value
2246
  FROM {$wpdb->usermeta}
2247
  WHERE user_id = %d
2248
+ AND meta_key = %s;", $user_id, mycred_get_meta_key( $type ) ) );
2249
 
2250
  if ( $total === NULL )
2251
  $total = 0;
2253
  }
2254
 
2255
  return apply_filters( 'mycred_query_users_total', $total, $user_id, $type, $mycred );
2256
+
2257
  }
2258
  endif;
2259
 
2266
  * @param $mycred (myCRED_Settings object), required myCRED settings object
2267
  * @returns zero if user id is not set or if no total were found, else returns total
2268
  * @since 1.2
2269
+ * @version 1.3.1
2270
  */
2271
  if ( ! function_exists( 'mycred_update_users_total' ) ) :
2272
+ function mycred_update_users_total( $type = 'mycred_default', $request = NULL, $mycred = NULL ) {
2273
+
2274
  if ( $request === NULL || ! is_object( $mycred ) || ! isset( $request['user_id'] ) || ! isset( $request['amount'] ) ) return false;
2275
 
2276
+ if ( ! mycred_point_type_exists( $type ) )
2277
  $type = $mycred->get_cred_id();
2278
 
2279
  $amount = $mycred->number( $request['amount'] );
2287
  mycred_update_user_meta( $user_id, $type, '_total', $new_total );
2288
 
2289
  return apply_filters( 'mycred_update_users_total', $new_total, $type, $request, $mycred );
2290
+
2291
  }
2292
  endif;
2293
 
2299
  * @version 1.0
2300
  */
2301
  if ( ! function_exists( 'mycred_apply_defaults' ) ) :
2302
+ function mycred_apply_defaults( &$pref, $set ) {
2303
+
2304
  $set = (array) $set;
2305
  $return = array();
2306
 
2331
  * @version 1.0
2332
  */
2333
  if ( ! function_exists( 'mycred_get_remote' ) ) :
2334
+ function mycred_get_remote() {
2335
+
2336
  $defaults = apply_filters( 'mycred_remote_defaults', array(
2337
  'enabled' => 0,
2338
  'key' => '',
2341
  ) );
2342
 
2343
  return mycred_apply_defaults( $defaults, get_option( 'mycred_pref_remote', array() ) );
2344
+
2345
  }
2346
  endif;
2347
 
2348
  /**
2349
  * Check if site is blocked
2350
  * @since 1.5.4
2351
+ * @version 1.0.2
2352
  */
2353
  if ( ! function_exists( 'mycred_is_site_blocked' ) ) :
2354
+ function mycred_is_site_blocked( $blog_id = NULL ) {
2355
+
2356
  // Only applicable for multisites
2357
  if ( ! is_multisite() ) return false;
2358
 
2365
  $blocked = false;
2366
 
2367
  // Only applicable if the block is set and this is not the main blog
2368
+ if ( strlen( $network['block'] ) > 0 && $blog_id > 1 ) {
2369
 
2370
  // Clean up list to make sure no white spaces are used
2371
  $list = explode( ',', $network['block'] );
2372
  $clean = array();
2373
  foreach ( $list as $blog_id ) {
2374
+
2375
+ $blog_id = sanitize_key( $blog_id );
2376
+
2377
+ if ( $blog_id == '' || $blog_id == 0 || $blog_id == 1 ) continue;
2378
  $clean[] = absint( $blog_id );
2379
+
2380
  }
2381
 
2382
  // Check if blog is blocked from using myCRED.
2396
  * @version 1.0
2397
  */
2398
  if ( ! function_exists( 'is_mycred_ready' ) ) :
2399
+ function is_mycred_ready() {
2400
+
2401
+ $mycred = mycred();
 
2402
 
2403
  // By default we start with the main sites setup. If it is not a multisite installation
2404
  // get_blog_option() will default to get_option() for us.
2421
  if ( $setup !== false ) return true;
2422
 
2423
  // If we have come this far we need to load the setup
2424
+ require_once myCRED_INCLUDES_DIR . 'mycred-install.php';
2425
  $setup = new myCRED_Setup();
2426
+
2427
  return $setup->status();
2428
+
2429
  }
2430
  endif;
2431
 
2437
  * @version 1.2.1
2438
  */
2439
  if ( ! function_exists( 'mycred_install_log' ) ) :
2440
+ function mycred_install_log( $decimals = 0, $table = NULL ) {
2441
+
2442
  if ( is_multisite() && get_blog_option( $GLOBALS['blog_id'], 'mycred_version_db', false ) !== false ) return true;
2443
  elseif ( ! is_multisite() && get_option( 'mycred_version_db', false ) !== false ) return true;
2444
 
2498
  add_option( 'mycred_version_db', '1.0' );
2499
 
2500
  return true;
2501
+
2502
  }
2503
  endif;
2504
 
2509
  * @version 1.0
2510
  */
2511
  if ( ! function_exists( 'mycred_get_exchange_rates' ) ) :
2512
+ function mycred_get_exchange_rates( $point_type = '' ) {
2513
+
2514
  $types = mycred_get_types();
2515
 
2516
  $default = array();
2534
  * @version 1.1
2535
  */
2536
  if ( ! function_exists( 'mycred_create_token' ) ) :
2537
+ function mycred_create_token( $string = '' ) {
2538
+
2539
  if ( is_array( $string ) )
2540
  $string = implode( ':', $string );
2541
 
2558
  * @version 1.1
2559
  */
2560
  if ( ! function_exists( 'mycred_verify_token' ) ) :
2561
+ function mycred_verify_token( $string = '', $length = 1 ) {
2562
+
2563
  $reply = false;
2564
 
2565
  $protect = mycred_protect();
2566
  if ( $protect !== false ) {
2567
+
2568
  $decoded = $protect->do_decode( $string );
2569
+ $array = explode( ':', $decoded );
2570
  if ( count( $array ) == $length )
2571
  $reply = $array;
2572
+
2573
  }
2574
  else {
2575
+
2576
  $reply = $string;
2577
+
2578
  }
2579
 
2580
  return apply_filters( 'mycred_verify_token', $reply, $string, $length );
2590
  * @version 1.2.1
2591
  */
2592
  if ( ! function_exists( 'mycred_get_all_references' ) ) :
2593
+ function mycred_get_all_references() {
2594
+
2595
  // Hooks
2596
  $hooks = array(
2597
  'registration' => __( 'Website Registration', 'mycred' ),
2637
  $hooks['video_upload'] = __( 'Video Upload', 'mycred' );
2638
  $hooks['music_upload'] = __( 'Music Upload', 'mycred' );
2639
  }
2640
+
2641
  if ( function_exists( 'bp_links_setup_root_component' ) ) {
2642
  $hooks['new_link'] = __( 'New Link', 'mycred' );
2643
  $hooks['link_voting'] = __( 'Link Voting', 'mycred' );
2650
  $hooks['topic_favorited'] = __( 'Favorited Topic (bbPress)', 'mycred' );
2651
  $hooks['new_forum_reply'] = __( 'New Topic Reply (bbPress)', 'mycred' );
2652
  }
2653
+
2654
  if ( function_exists( 'wpcf7' ) )
2655
  $hooks['contact_form_submission'] = __( 'Form Submission (Contact Form 7)', 'mycred' );
2656
 
2724
  $addons['event_payment'] = __( 'Event Payment (Event Espresso)', 'mycred' );
2725
  $addons['event_sale'] = __( 'Event Sale (Event Espresso)', 'mycred' );
2726
  }
2727
+
2728
  if ( defined( 'EM_VERSION' ) ) {
2729
  $addons['ticket_purchase'] = __( 'Event Payment (Events Manager)', 'mycred' );
2730
  $addons['ticket_sale'] = __( 'Event Sale (Events Manager)', 'mycred' );
2731
  }
2732
 
2733
+ if ( class_exists( 'myCRED_Sell_Content_Module' ) ) {
2734
+ $addons['buy_content'] = __( 'Content Purchase', 'mycred' );
2735
+ $addons['sell_content'] = __( 'Content Sale', 'mycred' );
2736
+ }
2737
 
2738
  if ( class_exists( 'myCRED_Transfer_Module' ) )
2739
  $addons['transfer'] = __( 'Transfer', 'mycred' );
2743
  $references['manual'] = __( 'Manual Adjustment by Admin', 'mycred' );
2744
 
2745
  return apply_filters( 'mycred_all_references', $references );
2746
+
2747
  }
2748
  endif;
2749
 
2755
  * @version 1.0
2756
  */
2757
  if ( ! function_exists( 'mycred_get_used_references' ) ) :
2758
+ function mycred_get_used_references( $type = 'mycred_default' ) {
2759
+
2760
  $references = wp_cache_get( 'mycred_references' );
2761
 
2762
  if ( false === $references ) {
2763
+
2764
  global $wpdb;
2765
 
2766
  $mycred = mycred( $type );
2771
  AND ctype = %s;", $type ) );
2772
 
2773
  if ( $references ) wp_cache_set( 'mycred_references', $references );
2774
+
2775
  }
2776
 
2777
  return apply_filters( 'mycred_used_references', $references );
2778
+
2779
  }
2780
  endif;
2781
 
2785
  * @version 1.0
2786
  */
2787
  if ( ! function_exists( 'isfloat' ) ) :
2788
+ function isfloat( $f ) {
2789
+
2790
  return ( $f == (string)(float) $f );
2791
+
2792
  }
2793
  endif;
2794
 
2799
  * @version 1.1
2800
  */
2801
  if ( ! function_exists( 'mycred_catch_exchange_requests' ) ) :
2802
+ function mycred_catch_exchange_requests() {
2803
+
2804
  if ( ! isset( $_POST['mycred_exchange']['nonce'] ) || ! wp_verify_nonce( $_POST['mycred_exchange']['nonce'], 'mycred-exchange' ) ) return;
2805
 
2806
  // Decode token
includes/mycred-log.php CHANGED
@@ -742,7 +742,6 @@ jQuery(function($) {
742
  /**
743
  * Table Headers
744
  * Returns all table column headers.
745
- *
746
  * @filter mycred_log_column_headers
747
  * @since 0.1
748
  * @version 1.1
@@ -774,14 +773,13 @@ jQuery(function($) {
774
  /**
775
  * Get Display
776
  * Generates a table for our results.
777
- *
778
  * @since 0.1
779
- * @version 1.0
780
  */
781
  public function get_display() {
782
 
783
  $output = '
784
- <table class="table mycred-table widefat log-entries table-striped" cellspacing="0">
785
  <thead>
786
  <tr>';
787
 
742
  /**
743
  * Table Headers
744
  * Returns all table column headers.
 
745
  * @filter mycred_log_column_headers
746
  * @since 0.1
747
  * @version 1.1
773
  /**
774
  * Get Display
775
  * Generates a table for our results.
 
776
  * @since 0.1
777
+ * @version 1.0.1
778
  */
779
  public function get_display() {
780
 
781
  $output = '
782
+ <table class="table table-condensed mycred-table wp-list-table widefat fixed striped users" cellspacing="0" cellspacing="0">
783
  <thead>
784
  <tr>';
785
 
includes/mycred-shortcodes.php CHANGED
@@ -7,7 +7,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
7
  * @see http://codex.mycred.me/shortcodes/mycred_my_balance/
8
  * @contributor Ian Tasker
9
  * @since 1.0.9
10
- * @version 1.2.2
11
  */
12
  if ( ! function_exists( 'mycred_render_shortcode_my_balance' ) ) :
13
  function mycred_render_shortcode_my_balance( $atts, $content = '' ) {
@@ -30,14 +30,14 @@ if ( ! function_exists( 'mycred_render_shortcode_my_balance' ) ) :
30
  if ( $user_id == '' )
31
  $user_id = get_current_user_id();
32
 
 
 
 
33
  $mycred = mycred( $type );
34
 
35
  // Check for exclusion
36
  if ( $mycred->exclude_user( $user_id ) ) return;
37
 
38
- if ( ! empty( $type ) )
39
- $mycred->cred_id = $type;
40
-
41
  if ( $wrapper )
42
  $output .= '<div class="mycred-my-balance-wrapper">';
43
 
@@ -75,7 +75,7 @@ endif;
75
  * Returns the points history.
76
  * @see http://codex.mycred.me/shortcodes/mycred_history/
77
  * @since 1.0.9
78
- * @version 1.2.2
79
  */
80
  if ( ! function_exists( 'mycred_render_shortcode_history' ) ) :
81
  function mycred_render_shortcode_history( $atts, $content = '' ) {
@@ -99,6 +99,9 @@ if ( ! function_exists( 'mycred_render_shortcode_history' ) ) :
99
  if ( $user_id == 'current' )
100
  $user_id = get_current_user_id();
101
 
 
 
 
102
  $args = array( 'ctype' => $type );
103
 
104
  if ( $user_id != '' )
@@ -159,7 +162,7 @@ endif;
159
  * myCRED Shortcode: mycred_leaderboard
160
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
161
  * @since 0.1
162
- * @version 1.4.3
163
  */
164
  if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
165
  function mycred_render_shortcode_leaderboard( $atts, $content = '' ) {
@@ -177,6 +180,9 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
177
  'exclude_zero' => 1
178
  ), $atts ) );
179
 
 
 
 
180
  if ( ! in_array( $order, array( 'ASC', 'DESC' ) ) )
181
  $order = 'DESC';
182
 
@@ -211,7 +217,7 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
211
  ON ( u.ID = um.user_id )
212
  WHERE um.meta_key = %s
213
  {$excludes}
214
- ORDER BY um.meta_value+0 {$order} {$limit};", $type );
215
 
216
  // Leaderboard based on reference
217
  else
@@ -307,7 +313,7 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
307
  ON ( u.ID = um.user_id )
308
  WHERE um.meta_key = %s
309
  {$excludes}
310
- ORDER BY um.meta_value+0 {$order};", $type );
311
  else
312
  $full_SQL = $wpdb->prepare( "
313
  SELECT DISTINCT user_id AS ID, SUM( creds ) AS cred
@@ -341,8 +347,9 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
341
  $layout = apply_filters( 'mycred_ranking_row', $layout, $template, $current_user, $current_position+1 );
342
 
343
  $output .= $layout . "\n";
344
-
345
  }
 
346
  }
347
 
348
  }
@@ -368,7 +375,7 @@ endif;
368
  * myCRED Shortcode: mycred_my_ranking
369
  * @see http://codex.mycred.me/shortcodes/mycred_my_ranking/
370
  * @since 0.1
371
- * @version 1.4.3
372
  */
373
  if ( ! function_exists( 'mycred_render_shortcode_my_ranking' ) ) :
374
  function mycred_render_shortcode_my_ranking( $atts, $content = '' ) {
@@ -388,7 +395,7 @@ if ( ! function_exists( 'mycred_render_shortcode_my_ranking' ) ) :
388
  $user_id = get_current_user_id();
389
 
390
  // If no type is given
391
- if ( $ctype == '' )
392
  $ctype = 'mycred_default';
393
 
394
  $mycred = mycred( $ctype );
@@ -405,7 +412,7 @@ if ( ! function_exists( 'mycred_render_shortcode_my_ranking' ) ) :
405
  INNER JOIN {$wpdb->usermeta} um
406
  ON ( u.ID = um.user_id )
407
  WHERE um.meta_key = %s
408
- ORDER BY um.meta_value+0 DESC;", $ctype );
409
  else
410
  $full_SQL = $wpdb->prepare( "
411
  SELECT DISTINCT user_id AS ID, SUM( creds ) AS cred
@@ -421,7 +428,7 @@ if ( ! function_exists( 'mycred_render_shortcode_my_ranking' ) ) :
421
 
422
  // Get current users position
423
  $current_position = array_search( array( 'ID' => $user_id ), $full_leaderboard );
424
- $position = ( $current_position === false ) ? $missing : $current_position+1;
425
 
426
  }
427
  else $position = $missing;
@@ -458,6 +465,8 @@ if ( ! function_exists( 'mycred_render_shortcode_give' ) ) :
458
  if ( ! is_user_logged_in() && $user_id == '' )
459
  return $content;
460
 
 
 
461
  $mycred = mycred( $type );
462
 
463
  if ( $user_id == '' )
@@ -497,7 +506,7 @@ endif;
497
  *
498
  * @see http://codex.mycred.me/shortcodes/mycred_link/
499
  * @since 1.1
500
- * @version 1.1
501
  */
502
  if ( ! function_exists( 'mycred_render_shortcode_link' ) ) :
503
  function mycred_render_shortcode_link( $atts, $content = '' ) {
@@ -520,9 +529,11 @@ if ( ! function_exists( 'mycred_render_shortcode_link' ) ) :
520
  'onclick' => ''
521
  ), $atts );
522
 
 
 
523
  // HREF is required
524
  if ( empty( $atts['href'] ) )
525
- return '<strong>' . __( 'error', 'mycred' ) . '</strong> ' . __( 'Anchor missing URL!', 'mycred' );
526
 
527
  // All links must contain the 'mycred-points-link' class
528
  if ( empty( $atts['class'] ) )
@@ -564,7 +575,7 @@ endif;
564
  * to a pre-set user. A simpler version of the mycred_transfer shortcode.
565
  * @see http://codex.mycred.me/shortcodes/mycred_send/
566
  * @since 1.1
567
- * @version 1.2
568
  */
569
  if ( ! function_exists( 'mycred_render_shortcode_send' ) ) :
570
  function mycred_render_shortcode_send( $atts, $content = '' ) {
@@ -577,9 +588,11 @@ if ( ! function_exists( 'mycred_render_shortcode_send' ) ) :
577
  'log' => '',
578
  'ref' => 'gift',
579
  'type' => 'mycred_default',
580
- 'class' => ''
581
  ), $atts ) );
582
 
 
 
583
  if ( $to == 'author' ) {
584
  // You can not use this outside the loop
585
  $author = get_the_author_meta( 'ID' );
@@ -601,8 +614,8 @@ if ( ! function_exists( 'mycred_render_shortcode_send' ) ) :
601
  if ( $mycred->exclude_user( $to ) || $mycred->exclude_user( $user_id ) ) return;
602
 
603
  $account_limit = $mycred->number( apply_filters( 'mycred_transfer_acc_limit', 0 ) );
604
- $balance = $mycred->get_users_cred( $user_id, $type );
605
- $amount = $mycred->number( $amount );
606
 
607
  // Insufficient Funds
608
  if ( $balance-$amount < $account_limit ) return;
@@ -613,7 +626,7 @@ if ( ! function_exists( 'mycred_render_shortcode_send' ) ) :
613
  if ( $class != '' )
614
  $class = ' ' . sanitize_text_field( $class );
615
 
616
- $render = '<button type="button" class="mycred-send-points-button button button-primary btn btn-primary' . $class . '" data-to="' . $to . '" data-ref="' . $ref . '" data-log="' . $log . '" data-amount="' . $amount . '" data-type="' . $type . '">' . $mycred->template_tags_general( $content ) . '</button>';
617
  return apply_filters( 'mycred_send', $render, $atts, $content );
618
 
619
  }
@@ -674,7 +687,7 @@ if ( ! function_exists( 'mycred_shortcode_send_points_ajax' ) ) :
674
  if ( ! array_key_exists( $type, $mycred_types ) ) die();
675
 
676
  // Prep
677
- $user_id = get_current_user_id();
678
  $recipient = (int) sanitize_text_field( $_POST['recipient'] );
679
  $reference = sanitize_text_field( $_POST['reference'] );
680
  $log_entry = strip_tags( trim( $_POST['log'] ), '<a>' );
@@ -690,8 +703,8 @@ if ( ! function_exists( 'mycred_shortcode_send_points_ajax' ) ) :
690
 
691
  // Check solvency
692
  $account_limit = $mycred->number( apply_filters( 'mycred_transfer_acc_limit', $mycred->zero() ) );
693
- $balance = $mycred->get_users_balance( $user_id, $type );
694
- $new_balance = $balance-$amount;
695
 
696
  // Insufficient Funds
697
  if ( $new_balance < $account_limit )
@@ -921,7 +934,7 @@ endif;
921
  * exchange one point type for another.
922
  * @see http://codex.mycred.me/shortcodes/mycred_exchange/
923
  * @since 1.5
924
- * @version 1.0
925
  */
926
  if ( ! function_exists( 'mycred_render_shortcode_exchange' ) ) :
927
  function mycred_render_shortcode_exchange( $atts, $content = '' ) {
@@ -937,8 +950,7 @@ if ( ! function_exists( 'mycred_render_shortcode_exchange' ) ) :
937
 
938
  if ( $from == '' || $to == '' ) return '';
939
 
940
- $types = mycred_get_types();
941
- if ( ! array_key_exists( $from, $types ) || ! array_key_exists( $to, $types ) ) return __( 'Point types not found.', 'mycred' );
942
 
943
  $user_id = get_current_user_id();
944
 
@@ -1050,7 +1062,7 @@ endif;
1050
  * Renders a table of all the active hooks and how much a user can
1051
  * earn / lose from each hook.
1052
  * @since 1.6
1053
- * @version 1.0.1
1054
  */
1055
  if ( ! function_exists( 'mycred_render_shortcode_hook_table' ) ) :
1056
  function mycred_render_shortcode_hook_table( $atts ) {
@@ -1065,8 +1077,7 @@ if ( ! function_exists( 'mycred_render_shortcode_hook_table' ) ) :
1065
  'nothing' => __( 'No instances found for this point type', 'mycred' )
1066
  ), $atts ) );
1067
 
1068
- $types = mycred_get_types();
1069
- if ( ! array_key_exists( $type, $types ) ) return __( 'Invalid point type', 'mycred' );
1070
 
1071
  $mycred = mycred( $type );
1072
 
@@ -1185,7 +1196,7 @@ endif;
1185
  * Allows to show total points of a specific point type or add up
1186
  * points from the log based on reference, reference id or user id.
1187
  * @since 1.6.6
1188
- * @version 1.0.1
1189
  */
1190
  if ( ! function_exists( 'mycred_render_shortcode_total_points' ) ) :
1191
  function mycred_render_shortcode_total_points( $atts ) {
@@ -1194,23 +1205,21 @@ if ( ! function_exists( 'mycred_render_shortcode_total_points' ) ) :
1194
  'type' => 'mycred_default',
1195
  'ref' => '',
1196
  'ref_id' => '',
1197
- 'user_id' => '',
1198
  'formatted' => 1
1199
  ), $atts ) );
1200
 
1201
- $types = mycred_get_types();
1202
- if ( ! array_key_exists( $type, $types ) )
1203
  $type = 'mycred_default';
1204
 
1205
- // First we construct the meta_key
1206
- $point_type = $type;
1207
- if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_centralize_log() )
1208
- $type .= '_' . $GLOBALS['blog_id'];
1209
 
1210
- elseif ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_override_settings() )
1211
- $type .= '_' . $GLOBALS['blog_id'];
 
 
1212
 
1213
- $mycred = mycred( $point_type );
1214
 
1215
  global $wpdb;
1216
 
@@ -1218,7 +1227,7 @@ if ( ! function_exists( 'mycred_render_shortcode_total_points' ) ) :
1218
  if ( $ref == '' && $ref_id == '' && $user_id == '' ) {
1219
 
1220
  // Add up all balances
1221
- $total = $wpdb->get_var( $wpdb->prepare( "SELECT SUM( meta_value ) FROM {$wpdb->usermeta} WHERE meta_key = %s", $type ) );
1222
 
1223
  }
1224
 
@@ -1226,7 +1235,7 @@ if ( ! function_exists( 'mycred_render_shortcode_total_points' ) ) :
1226
  else {
1227
 
1228
  $wheres = array();
1229
- $wheres[] = $wpdb->prepare( "ctype = %s", $point_type );
1230
 
1231
  $ref = sanitize_key( $ref );
1232
  if ( strlen( $ref ) > 0 ) {
@@ -1238,6 +1247,7 @@ if ( ! function_exists( 'mycred_render_shortcode_total_points' ) ) :
1238
 
1239
  // Or a comma seperated list of references
1240
  else {
 
1241
  $_clean = array();
1242
  foreach ( $multiple as $ref ) {
1243
  $ref = sanitize_key( $ref );
@@ -1252,12 +1262,12 @@ if ( ! function_exists( 'mycred_render_shortcode_total_points' ) ) :
1252
 
1253
  }
1254
 
1255
- $ref_id = sanitize_text_field( $ref );
1256
- if ( strlen( $ref_id ) > 0 )
1257
  $wheres[] = $wpdb->prepare( "ref_id = %d", $ref_id );
1258
 
1259
- $user_id = sanitize_text_field( $ref );
1260
- if ( strlen( $user_id ) > 0 )
1261
  $wheres[] = $wpdb->prepare( "user_id = %d", $user_id );
1262
 
1263
  $wheres = implode( " AND ", $wheres );
@@ -1281,7 +1291,7 @@ endif;
1281
  * Allows database queries in the history table to determen the
1282
  * "best user" based on references, time and point types.
1283
  * @since 1.6.7
1284
- * @version 1.0
1285
  */
1286
  if ( ! function_exists( 'mycred_render_shortcode_best_user' ) ) :
1287
  function mycred_render_shortcode_best_user( $attr, $content = '' ) {
@@ -1368,7 +1378,7 @@ if ( ! function_exists( 'mycred_render_shortcode_best_user' ) ) :
1368
  if ( ! in_array( $order, array( 'DESC', 'ASC' ) ) )
1369
  $order = 'DESC';
1370
 
1371
- $result = $wpdb->get_row( "SELECT user_id, SUM( creds ) AS total, COUNT(*) AS count FROM {$table} {$where} ORDER BY SUM( creds ) {$order} LIMIT 0,1;" );
1372
  if ( ! isset( $result->user_id ) )
1373
  return '<p class="mycred-best-user-no-results text-center">' . $nothing . '</p>';
1374
 
@@ -1388,13 +1398,11 @@ if ( ! function_exists( 'mycred_render_shortcode_best_user' ) ) :
1388
  $content = str_replace( '%user_login%', $user->user_login, $content );
1389
 
1390
  $content = str_replace( '%avatar%', get_avatar( $result->user_id, $avatar ), $content );
1391
- $content = str_replace( '%total%', $user->total, $content );
1392
- $content = str_replace( '%total_abs%', abs( $user->total ), $content );
1393
- $content = str_replace( '%count%', $user->count, $content );
1394
-
1395
- $content = str_replace( '%debug%', print_r( $sql, true ), $content );
1396
 
1397
- return apply_filters( 'mycred_render_best_user', $content, $result, $atts, $table );
1398
 
1399
  }
1400
  endif;
7
  * @see http://codex.mycred.me/shortcodes/mycred_my_balance/
8
  * @contributor Ian Tasker
9
  * @since 1.0.9
10
+ * @version 1.2.3
11
  */
12
  if ( ! function_exists( 'mycred_render_shortcode_my_balance' ) ) :
13
  function mycred_render_shortcode_my_balance( $atts, $content = '' ) {
30
  if ( $user_id == '' )
31
  $user_id = get_current_user_id();
32
 
33
+ if ( ! mycred_point_type_exists( $type ) )
34
+ $type = 'mycred_default';
35
+
36
  $mycred = mycred( $type );
37
 
38
  // Check for exclusion
39
  if ( $mycred->exclude_user( $user_id ) ) return;
40
 
 
 
 
41
  if ( $wrapper )
42
  $output .= '<div class="mycred-my-balance-wrapper">';
43
 
75
  * Returns the points history.
76
  * @see http://codex.mycred.me/shortcodes/mycred_history/
77
  * @since 1.0.9
78
+ * @version 1.2.3
79
  */
80
  if ( ! function_exists( 'mycred_render_shortcode_history' ) ) :
81
  function mycred_render_shortcode_history( $atts, $content = '' ) {
99
  if ( $user_id == 'current' )
100
  $user_id = get_current_user_id();
101
 
102
+ if ( ! mycred_point_type_exists( $type ) )
103
+ $type = 'mycred_default';
104
+
105
  $args = array( 'ctype' => $type );
106
 
107
  if ( $user_id != '' )
162
  * myCRED Shortcode: mycred_leaderboard
163
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
164
  * @since 0.1
165
+ * @version 1.4.4
166
  */
167
  if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
168
  function mycred_render_shortcode_leaderboard( $atts, $content = '' ) {
180
  'exclude_zero' => 1
181
  ), $atts ) );
182
 
183
+ if ( ! mycred_point_type_exists( $type ) )
184
+ $type = 'mycred_default';
185
+
186
  if ( ! in_array( $order, array( 'ASC', 'DESC' ) ) )
187
  $order = 'DESC';
188
 
217
  ON ( u.ID = um.user_id )
218
  WHERE um.meta_key = %s
219
  {$excludes}
220
+ ORDER BY um.meta_value+0 {$order} {$limit};", mycred_get_meta_key( $type ) );
221
 
222
  // Leaderboard based on reference
223
  else
313
  ON ( u.ID = um.user_id )
314
  WHERE um.meta_key = %s
315
  {$excludes}
316
+ ORDER BY um.meta_value+0 {$order};", mycred_get_meta_key( $type ) );
317
  else
318
  $full_SQL = $wpdb->prepare( "
319
  SELECT DISTINCT user_id AS ID, SUM( creds ) AS cred
347
  $layout = apply_filters( 'mycred_ranking_row', $layout, $template, $current_user, $current_position+1 );
348
 
349
  $output .= $layout . "\n";
350
+
351
  }
352
+
353
  }
354
 
355
  }
375
  * myCRED Shortcode: mycred_my_ranking
376
  * @see http://codex.mycred.me/shortcodes/mycred_my_ranking/
377
  * @since 0.1
378
+ * @version 1.4.4
379
  */
380
  if ( ! function_exists( 'mycred_render_shortcode_my_ranking' ) ) :
381
  function mycred_render_shortcode_my_ranking( $atts, $content = '' ) {
395
  $user_id = get_current_user_id();
396
 
397
  // If no type is given
398
+ if ( ! mycred_point_type_exists( $ctype ) )
399
  $ctype = 'mycred_default';
400
 
401
  $mycred = mycred( $ctype );
412
  INNER JOIN {$wpdb->usermeta} um
413
  ON ( u.ID = um.user_id )
414
  WHERE um.meta_key = %s
415
+ ORDER BY um.meta_value+0 DESC;", mycred_get_meta_key( $ctype ) );
416
  else
417
  $full_SQL = $wpdb->prepare( "
418
  SELECT DISTINCT user_id AS ID, SUM( creds ) AS cred
428
 
429
  // Get current users position
430
  $current_position = array_search( array( 'ID' => $user_id ), $full_leaderboard );
431
+ $position = ( $current_position === false ) ? $missing : $current_position+1;
432
 
433
  }
434
  else $position = $missing;
465
  if ( ! is_user_logged_in() && $user_id == '' )
466
  return $content;
467
 
468
+ if ( ! mycred_point_type_exists( $type ) ) return __( 'Point type not found.', 'mycred' );
469
+
470
  $mycred = mycred( $type );
471
 
472
  if ( $user_id == '' )
506
  *
507
  * @see http://codex.mycred.me/shortcodes/mycred_link/
508
  * @since 1.1
509
+ * @version 1.1.1
510
  */
511
  if ( ! function_exists( 'mycred_render_shortcode_link' ) ) :
512
  function mycred_render_shortcode_link( $atts, $content = '' ) {
529
  'onclick' => ''
530
  ), $atts );
531
 
532
+ if ( ! mycred_point_type_exists( $atts['ctype'] ) ) return __( 'Point type not found.', 'mycred' );
533
+
534
  // HREF is required
535
  if ( empty( $atts['href'] ) )
536
+ return __( 'Anchor missing URL!', 'mycred' );
537
 
538
  // All links must contain the 'mycred-points-link' class
539
  if ( empty( $atts['class'] ) )
575
  * to a pre-set user. A simpler version of the mycred_transfer shortcode.
576
  * @see http://codex.mycred.me/shortcodes/mycred_send/
577
  * @since 1.1
578
+ * @version 1.2.2
579
  */
580
  if ( ! function_exists( 'mycred_render_shortcode_send' ) ) :
581
  function mycred_render_shortcode_send( $atts, $content = '' ) {
588
  'log' => '',
589
  'ref' => 'gift',
590
  'type' => 'mycred_default',
591
+ 'class' => 'button button-primary btn btn-primary'
592
  ), $atts ) );
593
 
594
+ if ( ! mycred_point_type_exists( $type ) ) return __( 'Point type not found.', 'mycred' );
595
+
596
  if ( $to == 'author' ) {
597
  // You can not use this outside the loop
598
  $author = get_the_author_meta( 'ID' );
614
  if ( $mycred->exclude_user( $to ) || $mycred->exclude_user( $user_id ) ) return;
615
 
616
  $account_limit = $mycred->number( apply_filters( 'mycred_transfer_acc_limit', 0 ) );
617
+ $balance = $mycred->get_users_cred( $user_id, $type );
618
+ $amount = $mycred->number( $amount );
619
 
620
  // Insufficient Funds
621
  if ( $balance-$amount < $account_limit ) return;
626
  if ( $class != '' )
627
  $class = ' ' . sanitize_text_field( $class );
628
 
629
+ $render = '<button type="button" class="mycred-send-points-button' . $class . '" data-to="' . $to . '" data-ref="' . $ref . '" data-log="' . $log . '" data-amount="' . $amount . '" data-type="' . $type . '">' . $mycred->template_tags_general( $content ) . '</button>';
630
  return apply_filters( 'mycred_send', $render, $atts, $content );
631
 
632
  }
687
  if ( ! array_key_exists( $type, $mycred_types ) ) die();
688
 
689
  // Prep
690
+ $user_id = get_current_user_id();
691
  $recipient = (int) sanitize_text_field( $_POST['recipient'] );
692
  $reference = sanitize_text_field( $_POST['reference'] );
693
  $log_entry = strip_tags( trim( $_POST['log'] ), '<a>' );
703
 
704
  // Check solvency
705
  $account_limit = $mycred->number( apply_filters( 'mycred_transfer_acc_limit', $mycred->zero() ) );
706
+ $balance = $mycred->get_users_balance( $user_id, $type );
707
+ $new_balance = $balance-$amount;
708
 
709
  // Insufficient Funds
710
  if ( $new_balance < $account_limit )
934
  * exchange one point type for another.
935
  * @see http://codex.mycred.me/shortcodes/mycred_exchange/
936
  * @since 1.5
937
+ * @version 1.0.1
938
  */
939
  if ( ! function_exists( 'mycred_render_shortcode_exchange' ) ) :
940
  function mycred_render_shortcode_exchange( $atts, $content = '' ) {
950
 
951
  if ( $from == '' || $to == '' ) return '';
952
 
953
+ if ( ! mycred_point_type_exists( $from ) || ! mycred_point_type_exists( $to ) ) return __( 'Point type not found.', 'mycred' );
 
954
 
955
  $user_id = get_current_user_id();
956
 
1062
  * Renders a table of all the active hooks and how much a user can
1063
  * earn / lose from each hook.
1064
  * @since 1.6
1065
+ * @version 1.0.2
1066
  */
1067
  if ( ! function_exists( 'mycred_render_shortcode_hook_table' ) ) :
1068
  function mycred_render_shortcode_hook_table( $atts ) {
1077
  'nothing' => __( 'No instances found for this point type', 'mycred' )
1078
  ), $atts ) );
1079
 
1080
+ if ( ! mycred_point_type_exists( $type ) ) return __( 'Point type not found.', 'mycred' );
 
1081
 
1082
  $mycred = mycred( $type );
1083
 
1196
  * Allows to show total points of a specific point type or add up
1197
  * points from the log based on reference, reference id or user id.
1198
  * @since 1.6.6
1199
+ * @version 1.0.3
1200
  */
1201
  if ( ! function_exists( 'mycred_render_shortcode_total_points' ) ) :
1202
  function mycred_render_shortcode_total_points( $atts ) {
1205
  'type' => 'mycred_default',
1206
  'ref' => '',
1207
  'ref_id' => '',
1208
+ 'user_id' => 'current',
1209
  'formatted' => 1
1210
  ), $atts ) );
1211
 
1212
+ if ( ! mycred_point_type_exists( $type ) )
 
1213
  $type = 'mycred_default';
1214
 
1215
+ if ( $user_id == 'current' ) {
 
 
 
1216
 
1217
+ if ( ! is_user_logged_in() ) return;
1218
+ $user_id = get_current_user_id();
1219
+
1220
+ }
1221
 
1222
+ $mycred = mycred( $type );
1223
 
1224
  global $wpdb;
1225
 
1227
  if ( $ref == '' && $ref_id == '' && $user_id == '' ) {
1228
 
1229
  // Add up all balances
1230
+ $total = $wpdb->get_var( $wpdb->prepare( "SELECT SUM( meta_value ) FROM {$wpdb->usermeta} WHERE meta_key = %s", mycred_get_meta_key( $type ) ) );
1231
 
1232
  }
1233
 
1235
  else {
1236
 
1237
  $wheres = array();
1238
+ $wheres[] = $wpdb->prepare( "ctype = %s", mycred_get_meta_key( $type ) );
1239
 
1240
  $ref = sanitize_key( $ref );
1241
  if ( strlen( $ref ) > 0 ) {
1247
 
1248
  // Or a comma seperated list of references
1249
  else {
1250
+
1251
  $_clean = array();
1252
  foreach ( $multiple as $ref ) {
1253
  $ref = sanitize_key( $ref );
1262
 
1263
  }
1264
 
1265
+ $ref_id = absint( $ref_id );
1266
+ if ( $ref_id > 0 )
1267
  $wheres[] = $wpdb->prepare( "ref_id = %d", $ref_id );
1268
 
1269
+ $user_id = absint( $user_id );
1270
+ if ( $user_id > 0 )
1271
  $wheres[] = $wpdb->prepare( "user_id = %d", $user_id );
1272
 
1273
  $wheres = implode( " AND ", $wheres );
1291
  * Allows database queries in the history table to determen the
1292
  * "best user" based on references, time and point types.
1293
  * @since 1.6.7
1294
+ * @version 1.0.3
1295
  */
1296
  if ( ! function_exists( 'mycred_render_shortcode_best_user' ) ) :
1297
  function mycred_render_shortcode_best_user( $attr, $content = '' ) {
1378
  if ( ! in_array( $order, array( 'DESC', 'ASC' ) ) )
1379
  $order = 'DESC';
1380
 
1381
+ $result = $wpdb->get_row( "SELECT user_id, SUM( creds ) AS total, COUNT(*) AS count FROM {$table} {$where} GROUP BY user_id ORDER BY SUM( creds ) {$order} LIMIT 1;" );
1382
  if ( ! isset( $result->user_id ) )
1383
  return '<p class="mycred-best-user-no-results text-center">' . $nothing . '</p>';
1384
 
1398
  $content = str_replace( '%user_login%', $user->user_login, $content );
1399
 
1400
  $content = str_replace( '%avatar%', get_avatar( $result->user_id, $avatar ), $content );
1401
+ $content = str_replace( '%total%', $result->total, $content );
1402
+ $content = str_replace( '%total_abs%', abs( $result->total ), $content );
1403
+ $content = str_replace( '%count%', $result->count, $content );
 
 
1404
 
1405
+ return apply_filters( 'mycred_render_best_user', $content, $result, $attr, $table );
1406
 
1407
  }
1408
  endif;
lang/mycred-en_US.mo CHANGED
Binary file
lang/mycred-en_US.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Mon Nov 23 2015 17:47:41 GMT+0100 (CET)\n"
7
  "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
@@ -33,10 +33,7 @@ msgid "http://mycred.me"
33
  msgstr ""
34
 
35
  #. Description of the plugin
36
- msgid ""
37
- "<strong>my</strong>CRED is an adaptive points management system for "
38
- "WordPress powered websites, giving you full control on how points are gained,"
39
- " used, traded, managed, logged or presented."
40
  msgstr ""
41
 
42
  #. Author of the plugin
@@ -47,98 +44,98 @@ msgstr ""
47
  msgid "http://www.merovingi.com"
48
  msgstr ""
49
 
50
- #: ../mycred.php:462
51
  msgid "Balance"
52
  msgstr ""
53
 
54
- #: ../mycred.php:487
55
  msgid "%label% History"
56
  msgstr ""
57
 
58
- #: ../mycred.php:581
59
  #, php-format
60
  msgid "About %s"
61
  msgstr ""
62
 
63
- #: ../mycred.php:590
64
  msgid "Awesome People"
65
  msgstr ""
66
 
67
- #: ../mycred.php:678 ../mycred.php:703 ../mycred.php:721 ../includes/mycred-
68
- #: shortcodes.php:640 ../addons/gateway/event-booking/mycred-eventsmanager.php:
69
  #: 478 ../addons/transfer/myCRED-addon-transfer.php:146 ../addons/ranks/myCRED-
70
- #: addon-ranks.php:423 ../addons/ranks/myCRED-addon-ranks.php:1523 ..
71
- #: addons/badges/myCRED-addon-badges.php:605 ../addons/sell-content/myCRED-addon-
72
- #: sell-content.php:371
73
  msgid "Processing..."
74
  msgstr ""
75
 
76
- #: ../mycred.php:679
77
  msgid ""
78
  "Warning! All entries in your log will be permanently removed! This can not "
79
  "be undone!"
80
  msgstr ""
81
 
82
- #: ../mycred.php:680
83
  msgid ""
84
  "All log entries belonging to deleted users will be permanently deleted! This "
85
  "can not be undone!"
86
  msgstr ""
87
 
88
- #: ../mycred.php:681
89
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
90
  msgstr ""
91
 
92
- #: ../mycred.php:682
93
  msgid "Done!"
94
  msgstr ""
95
 
96
- #: ../mycred.php:683 ../mycred.php:702 ../mycred.php:720
97
  msgid "Close"
98
  msgstr ""
99
 
100
- #: ../mycred.php:684
101
  #, php-format
102
  msgid "Export users %plural%"
103
  msgstr ""
104
 
105
- #: ../mycred.php:685
106
  msgid ""
107
  "In order to adjust the number of decimal places you want to use we must "
108
  "update your log. It is highly recommended that you backup your current log "
109
  "before continuing!"
110
  msgstr ""
111
 
112
- #: ../mycred.php:701
113
  msgid "Edit Users Balance"
114
  msgstr ""
115
 
116
- #: ../mycred.php:719
117
  msgid "Edit Log Entry"
118
  msgstr ""
119
 
120
- #: ../mycred.php:723
121
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
122
  msgstr ""
123
 
124
- #: ../mycred.php:724
125
  msgid "Log entry updated"
126
  msgstr ""
127
 
128
- #: ../mycred.php:781 ../mycred.php:803 ../addons/gateway/event-booking/mycred-
129
  #: eventsmanager.php:537 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
130
- #: php:499 ../addons/email-notices/myCRED-addon-email-notices.php:811
131
  msgid "Setup"
132
  msgstr ""
133
 
134
- #: ../mycred.php:783 ../modules/mycred-module-settings.php:21 ../modules/mycred-
135
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23 ..
136
  #: includes/mycred-network.php:170 ../addons/gateway/carts/mycred-marketpress.
137
  #: php:371 ../addons/stats/abstracts/mycred-abstract-stat-widget.php:108
138
  msgid "Settings"
139
  msgstr ""
140
 
141
- #: ../mycred.php:826
142
  msgid ""
143
  "Make sure to backup your database and files before updating, in case "
144
  "anything goes wrong!"
@@ -149,8 +146,8 @@ msgid "This Hook has no settings"
149
  msgstr ""
150
 
151
  #: ../abstracts/mycred-abstract-hook.php:283 ../abstracts/mycred-abstract-hook.
152
- #: php:354 ../modules/mycred-module-hooks.php:1816 ../includes/mycred-functions.
153
- #: php:2845
154
  msgid "No limit"
155
  msgstr ""
156
 
@@ -184,29 +181,29 @@ msgstr ""
184
 
185
  #: ../abstracts/mycred-abstract-hook.php:364 ../addons/banking/abstracts/mycred-
186
  #: abstract-service.php:498 ../addons/email-notices/myCRED-addon-email-notices.
187
- #: php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992 ..
188
- #: addons/buy-creds/myCRED-addon-buy-creds.php:696 ../addons/buy-creds/myCRED-
189
- #: addon-buy-creds.php:719 ../addons/buy-creds/abstracts/mycred-abstract-payment-
190
  #: gateway.php:1023 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
191
  #: php:1046 ../addons/buy-creds/gateways/zombaio.php:356
192
  msgid "Select"
193
  msgstr ""
194
 
195
- #: ../abstracts/mycred-abstract-module.php:400 ../abstracts/mycred-abstract-
196
- #: module.php:410
197
  msgid "Surprise"
198
  msgstr ""
199
 
200
- #: ../abstracts/mycred-abstract-module.php:511 ../includes/mycred-network.php:93
201
  msgid "click to close"
202
  msgstr ""
203
 
204
- #: ../abstracts/mycred-abstract-module.php:512 ../includes/mycred-network.php:94
205
  msgid "click to open"
206
  msgstr ""
207
 
208
- #: ../abstracts/mycred-abstract-module.php:545 ../addons/buy-creds/myCRED-addon-
209
- #: buy-creds.php:927
210
  msgid "Settings Updated"
211
  msgstr ""
212
 
@@ -266,11 +263,11 @@ msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
266
  msgstr ""
267
 
268
  #: ../modules/mycred-module-settings.php:484 ../modules/mycred-module-addons.php:
269
- #: 303 ../modules/mycred-module-log.php:358 ../modules/mycred-module-log.php:647 .
270
- #: ./modules/mycred-module-hooks.php:193 ../includes/mycred-network.php:141 ..
271
- #: includes/mycred-admin.php:584 ../addons/banking/myCRED-addon-banking.php:219 .
272
- #: ./addons/stats/myCRED-addon-stats.php:182 ../addons/buy-creds/myCRED-addon-buy-
273
- #: creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
274
  msgid "Access Denied"
275
  msgstr ""
276
 
@@ -415,7 +412,7 @@ msgstr ""
415
 
416
  #: ../modules/mycred-module-settings.php:625 ../modules/mycred-module-settings.
417
  #: php:640 ../modules/mycred-module-log.php:407 ../addons/ranks/myCRED-addon-
418
- #: ranks.php:1613 ../addons/buy-creds/myCRED-addon-buy-creds.php:1715
419
  msgid "Actions"
420
  msgstr ""
421
 
@@ -424,12 +421,12 @@ msgid "Empty Log"
424
  msgstr ""
425
 
426
  #: ../modules/mycred-module-settings.php:632 ../addons/ranks/myCRED-addon-ranks.
427
- #: php:1605
428
  msgid "User Meta Key"
429
  msgstr ""
430
 
431
  #: ../modules/mycred-module-settings.php:636 ../addons/ranks/myCRED-addon-ranks.
432
- #: php:1043 ../addons/badges/myCRED-addon-badges.php:442
433
  msgid "Users"
434
  msgstr ""
435
 
@@ -442,8 +439,8 @@ msgid "CSV Export"
442
  msgstr ""
443
 
444
  #: ../modules/mycred-module-settings.php:656 ../includes/mycred-widgets.php:600 ..
445
- #: addons/transfer/myCRED-addon-transfer.php:211 ../addons/buy-creds/myCRED-
446
- #: addon-buy-creds.php:652
447
  msgid "Point Types"
448
  msgstr ""
449
 
@@ -459,7 +456,7 @@ msgstr ""
459
  #: ../modules/mycred-module-settings.php:674 ../modules/mycred-module-settings.
460
  #: php:695 ../modules/mycred-module-settings.php:720 ..
461
  #: addons/gateway/carts/mycred-woocommerce.php:160 ../addons/email-
462
- #: notices/myCRED-addon-email-notices.php:1025
463
  msgid "Label"
464
  msgstr ""
465
 
@@ -489,7 +486,7 @@ msgstr ""
489
 
490
  #: ../modules/mycred-module-settings.php:739 ../addons/gateway/event-
491
  #: booking/mycred-eventespresso3.php:502 ../addons/buy-creds/myCRED-addon-buy-
492
- #: creds.php:986
493
  msgid "Update Settings"
494
  msgstr ""
495
 
@@ -535,130 +532,130 @@ msgstr ""
535
  msgid "Add-ons"
536
  msgstr ""
537
 
538
- #: ../modules/mycred-module-addons.php:160
539
  msgid "Give your users badges based on their interaction with your website."
540
  msgstr ""
541
 
542
- #: ../modules/mycred-module-addons.php:171
543
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
544
  msgstr ""
545
 
546
- #: ../modules/mycred-module-addons.php:182
547
  msgid ""
548
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
549
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
550
  "also let your users buy points for other members."
551
  msgstr ""
552
 
553
- #: ../modules/mycred-module-addons.php:193
554
  msgid ""
555
  "The coupons add-on allows you to create coupons that users can use to add "
556
  "points to their accounts."
557
  msgstr ""
558
 
559
- #: ../modules/mycred-module-addons.php:204
560
  msgid "Create email notices for any type of myCRED instance."
561
  msgstr ""
562
 
563
- #: ../modules/mycred-module-addons.php:215
564
  msgid ""
565
  "Let your users pay using their <strong>my</strong>CRED points balance. "
566
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
567
  "Bookings: Event Espresso and Events Manager (free & pro)."
568
  msgstr ""
569
 
570
- #: ../modules/mycred-module-addons.php:226
571
  msgid "Create pop-up notifications for when users gain or loose points."
572
  msgstr ""
573
 
574
- #: ../modules/mycred-module-addons.php:238
575
  msgid ""
576
  "Create ranks for users reaching a certain number of %_plural% with the "
577
  "option to add logos for each rank."
578
  msgstr ""
579
 
580
- #: ../modules/mycred-module-addons.php:249
581
  msgid ""
582
  "This add-on allows you to sell posts, pages or any public post types on your "
583
  "website. You can either sell the entire content or using our shortcode, sell "
584
  "parts of your content allowing you to offer \"teasers\"."
585
  msgstr ""
586
 
587
- #: ../modules/mycred-module-addons.php:260
588
  msgid ""
589
  "Gives you access to your myCRED Staticstics based on your users gains and "
590
  "loses."
591
  msgstr ""
592
 
593
- #: ../modules/mycred-module-addons.php:271
594
  msgid ""
595
  "Allow your users to send or \"donate\" points to other members by either using "
596
  "the mycred_transfer shortcode or the myCRED Transfer widget."
597
  msgstr ""
598
 
599
- #: ../modules/mycred-module-addons.php:313
600
  #, php-format
601
  msgid "%s Add-ons"
602
  msgstr ""
603
 
604
- #: ../modules/mycred-module-addons.php:320
605
  msgid "Add-on Activated"
606
  msgstr ""
607
 
608
- #: ../modules/mycred-module-addons.php:323
609
  msgid "Add-on Deactivated"
610
  msgstr ""
611
 
612
- #: ../modules/mycred-module-addons.php:328
613
  msgid "Add-ons Reloaded"
614
  msgstr ""
615
 
616
- #: ../modules/mycred-module-addons.php:331
617
  msgid "Add-ons can expand your current installation with further features."
618
  msgstr ""
619
 
620
- #: ../modules/mycred-module-addons.php:358
621
  msgid "Reload Add-ons"
622
  msgstr ""
623
 
624
- #: ../modules/mycred-module-addons.php:359
625
  #, php-format
626
  msgid "You can find more add-ons in our %s."
627
  msgstr ""
628
 
629
- #: ../modules/mycred-module-addons.php:359
630
  msgid "online store"
631
  msgstr ""
632
 
633
- #: ../modules/mycred-module-addons.php:382
634
  msgid "Deactivate Add-on"
635
  msgstr ""
636
 
637
- #: ../modules/mycred-module-addons.php:383
638
  msgid "Deactivate"
639
  msgstr ""
640
 
641
- #: ../modules/mycred-module-addons.php:390
642
  msgid "Activate Add-on"
643
  msgstr ""
644
 
645
- #: ../modules/mycred-module-addons.php:391
646
  msgid "Activate"
647
  msgstr ""
648
 
649
- #: ../modules/mycred-module-addons.php:409
650
  msgid "Version"
651
  msgstr ""
652
 
653
- #: ../modules/mycred-module-addons.php:413
654
  msgid "By"
655
  msgstr ""
656
 
657
- #: ../modules/mycred-module-addons.php:417
658
  msgid "About"
659
  msgstr ""
660
 
661
- #: ../modules/mycred-module-addons.php:421
662
  msgid "Get Pro"
663
  msgstr ""
664
 
@@ -680,7 +677,7 @@ msgid "Entry Updated"
680
  msgstr ""
681
 
682
  #: ../modules/mycred-module-log.php:276 ../modules/mycred-module-log.php:277 ..
683
- #: includes/mycred-admin.php:423 ../addons/banking/services/mycred-bank-service-
684
  #: payouts.php:246
685
  msgid "History"
686
  msgstr ""
@@ -700,7 +697,7 @@ msgid ""
700
  "Certain hooks and shortcodes will not work correctly!"
701
  msgstr ""
702
 
703
- #: ../modules/mycred-module-log.php:525 ../includes/mycred-log.php:874
704
  msgid "User Missing"
705
  msgstr ""
706
 
@@ -708,9 +705,9 @@ msgstr ""
708
  msgid "Edit"
709
  msgstr ""
710
 
711
- #: ../modules/mycred-module-log.php:609 ../includes/mycred-log.php:755 ..
712
- #: includes/mycred-admin.php:796 ../addons/email-notices/myCRED-addon-email-
713
- #: notices.php:866 ../addons/email-notices/myCRED-addon-email-notices.php:1019
714
  msgid "User"
715
  msgstr ""
716
 
@@ -749,353 +746,353 @@ msgstr ""
749
  msgid "Hooks"
750
  msgstr ""
751
 
752
- #: ../modules/mycred-module-hooks.php:107
753
  #, php-format
754
  msgid "%plural% for registrations"
755
  msgstr ""
756
 
757
- #: ../modules/mycred-module-hooks.php:108
758
  #, php-format
759
  msgid "Award %_plural% for users joining your website."
760
  msgstr ""
761
 
762
- #: ../modules/mycred-module-hooks.php:114
763
  #, php-format
764
  msgid "%plural% for daily visits"
765
  msgstr ""
766
 
767
- #: ../modules/mycred-module-hooks.php:115
768
  #, php-format
769
  msgid "Award %_plural% for users visiting your website on a daily basis."
770
  msgstr ""
771
 
772
- #: ../modules/mycred-module-hooks.php:121
773
  #, php-format
774
  msgid "%plural% for viewing content"
775
  msgstr ""
776
 
777
- #: ../modules/mycred-module-hooks.php:122
778
  #, php-format
779
  msgid ""
780
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
781
  "authors for members viewing their content."
782
  msgstr ""
783
 
784
- #: ../modules/mycred-module-hooks.php:128
785
  #, php-format
786
  msgid "%plural% for logins"
787
  msgstr ""
788
 
789
- #: ../modules/mycred-module-hooks.php:129
790
  #, php-format
791
  msgid ""
792
  "Award %_plural% for logging in to your website. You can also set an optional "
793
  "limit."
794
  msgstr ""
795
 
796
- #: ../modules/mycred-module-hooks.php:135
797
  #, php-format
798
  msgid "%plural% for publishing content"
799
  msgstr ""
800
 
801
- #: ../modules/mycred-module-hooks.php:136
802
  #, php-format
803
  msgid ""
804
  "Award %_plural% for publishing content on your website. If your custom post "
805
  "type is not shown bellow, make sure it is set to \"Public\"."
806
  msgstr ""
807
 
808
- #: ../modules/mycred-module-hooks.php:142
809
  #, php-format
810
  msgid "%plural% for comments"
811
  msgstr ""
812
 
813
- #: ../modules/mycred-module-hooks.php:142
814
  #, php-format
815
  msgid "%plural% for Disqus comments"
816
  msgstr ""
817
 
818
- #: ../modules/mycred-module-hooks.php:143
819
  #, php-format
820
  msgid "Award %_plural% for making comments."
821
  msgstr ""
822
 
823
- #: ../modules/mycred-module-hooks.php:149
824
  #, php-format
825
  msgid "%plural% for clicking on links"
826
  msgstr ""
827
 
828
- #: ../modules/mycred-module-hooks.php:150
829
  msgid ""
830
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
831
  "shortcode."
832
  msgstr ""
833
 
834
- #: ../modules/mycred-module-hooks.php:156
835
  #, php-format
836
  msgid "%plural% for viewing Videos"
837
  msgstr ""
838
 
839
- #: ../modules/mycred-module-hooks.php:157
840
  msgid ""
841
  "Award %_plural% to users who watches videos embedded using the "
842
  "[mycred_video] shortcode."
843
  msgstr ""
844
 
845
- #: ../modules/mycred-module-hooks.php:163
846
  #, php-format
847
  msgid "%plural% for referrals"
848
  msgstr ""
849
 
850
- #: ../modules/mycred-module-hooks.php:164
851
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
852
  msgstr ""
853
 
854
- #: ../modules/mycred-module-hooks.php:199
855
  #, php-format
856
  msgid "%s Hooks"
857
  msgstr ""
858
 
859
- #: ../modules/mycred-module-hooks.php:203
860
  #, php-format
861
  msgid ""
862
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
863
  "depending on their actions around your website."
864
  msgstr ""
865
 
866
- #: ../modules/mycred-module-hooks.php:222 ../addons/banking/myCRED-addon-banking.
867
- #: php:248 ../addons/buy-creds/myCRED-addon-buy-creds.php:954
868
  msgid "Enable"
869
  msgstr ""
870
 
871
- #: ../modules/mycred-module-hooks.php:240 ../addons/banking/myCRED-addon-banking.
872
- #: php:261
873
  msgid "Update Changes"
874
  msgstr ""
875
 
876
- #: ../modules/mycred-module-hooks.php:417 ../modules/mycred-module-hooks.php:523 .
877
- #: ./modules/mycred-module-hooks.php:690 ../modules/mycred-module-hooks.php:721 ..
878
- #: modules/mycred-module-hooks.php:798 ../modules/mycred-module-hooks.php:1164 ..
879
- #: modules/mycred-module-hooks.php:1181 ../modules/mycred-module-hooks.php:1230 .
880
- #: ./modules/mycred-module-hooks.php:1682 ../modules/mycred-module-hooks.php:1699
881
- #: ../modules/mycred-module-hooks.php:1716 ../modules/mycred-module-hooks.php:
882
- #: 3007 ../modules/mycred-module-hooks.php:3027 ../plugins/mycred-hook-invite-
883
- #: anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ../plugins/mycred-
884
- #: hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-postratings.php:183 ..
885
- #: plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-hook-simplepress.
886
- #: php:289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
887
- #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
888
- #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
889
- #: buddypress.php:513 ../plugins/mycred-hook-buddypress.php:530 ../plugins/mycred-
890
- #: hook-buddypress.php:547 ../plugins/mycred-hook-buddypress.php:567 ..
891
- #: plugins/mycred-hook-buddypress.php:580 ../plugins/mycred-hook-buddypress.php:
892
- #: 597 ../plugins/mycred-hook-buddypress.php:610 ../plugins/mycred-hook-
893
- #: buddypress.php:627 ../plugins/mycred-hook-buddypress.php:644 ../plugins/mycred-
894
- #: hook-buddypress.php:1218 ../plugins/mycred-hook-buddypress.php:1231 ..
895
- #: plugins/mycred-hook-buddypress.php:1248 ../plugins/mycred-hook-buddypress.php:
896
- #: 1265 ../plugins/mycred-hook-buddypress.php:1282 ../plugins/mycred-hook-
897
- #: buddypress.php:1299 ../plugins/mycred-hook-buddypress.php:1317 ..
898
- #: plugins/mycred-hook-buddypress.php:1330 ../plugins/mycred-hook-buddypress.php:
899
- #: 1347 ../plugins/mycred-hook-buddypress.php:1364 ../plugins/mycred-hook-
900
- #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
901
- #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
902
- #: buddypress-links.php:308 ../plugins/mycred-hook-buddypress-links.php:325 ..
903
- #: plugins/mycred-hook-buddypress-links.php:338 ../plugins/mycred-hook-
904
- #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
905
  #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-buddypress-media.
906
- #: php:213 ../plugins/mycred-hook-buddypress-media.php:227 ../plugins/mycred-hook-
907
- #: buddypress-media.php:241 ../plugins/mycred-hook-buddypress-media.php:254 ..
908
- #: plugins/mycred-hook-buddypress-media.php:264 ../plugins/mycred-hook-
909
- #: buddypress-media.php:274 ../plugins/mycred-hook-contact-form7.php:152 ..
910
- #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
911
- #: plugins/mycred-hook-bbPress.php:415 ../plugins/mycred-hook-bbPress.php:428 ..
912
- #: plugins/mycred-hook-bbPress.php:445 ../plugins/mycred-hook-bbPress.php:463 ..
913
- #: plugins/mycred-hook-bbPress.php:480 ../plugins/mycred-hook-bbPress.php:497 ..
914
- #: plugins/mycred-hook-bbPress.php:519 ../plugins/mycred-hook-badgeOS.php:298
915
  msgid "Log template"
916
  msgstr ""
917
 
918
- #: ../modules/mycred-module-hooks.php:673
919
  #, php-format
920
  msgid "%plural% for viewing Posts"
921
  msgstr ""
922
 
923
- #: ../modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:693 .
924
- #: ./modules/mycred-module-hooks.php:707 ../modules/mycred-module-hooks.php:724 ..
925
- #: modules/mycred-module-hooks.php:784 ../modules/mycred-module-hooks.php:801
926
  msgid "Member"
927
  msgstr ""
928
 
929
- #: ../modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:686 .
930
- #: ./modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:717 ..
931
- #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:794 ..
932
- #: modules/mycred-module-hooks.php:1018 ../modules/mycred-module-hooks.php:1160 .
933
- #: ./modules/mycred-module-hooks.php:1177 ../modules/mycred-module-hooks.php:1226
934
- #: ../modules/mycred-module-hooks.php:3015 ../modules/mycred-module-hooks.php:
935
- #: 3035 ../plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-
936
- #: invite-anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ..
937
- #: plugins/mycred-hook-invite-anyone.php:226 ../plugins/mycred-hook-wp-
938
- #: postratings.php:156 ../plugins/mycred-hook-wp-postratings.php:175 ..
939
- #: plugins/mycred-hook-gravityforms.php:148 ../plugins/mycred-hook-simplepress.
940
- #: php:284 ../plugins/mycred-hook-simplepress.php:314 ../plugins/mycred-hook-
941
- #: buddypress-gallery.php:102 ../plugins/mycred-hook-buddypress.php:508 ..
942
- #: plugins/mycred-hook-buddypress.php:525 ../plugins/mycred-hook-buddypress.php:
943
- #: 542 ../plugins/mycred-hook-buddypress.php:559 ../plugins/mycred-hook-
944
- #: buddypress.php:592 ../plugins/mycred-hook-buddypress.php:622 ../plugins/mycred-
945
- #: hook-buddypress.php:639 ../plugins/mycred-hook-buddypress.php:1243 ..
946
- #: plugins/mycred-hook-buddypress.php:1260 ../plugins/mycred-hook-buddypress.php:
947
- #: 1277 ../plugins/mycred-hook-buddypress.php:1294 ../plugins/mycred-hook-
948
- #: buddypress.php:1312 ../plugins/mycred-hook-buddypress.php:1342 ..
949
- #: plugins/mycred-hook-buddypress.php:1359 ../plugins/mycred-hook-buddypress-
950
- #: links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
951
- #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
952
- #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
953
- #: plugins/mycred-hook-buddypress-links.php:320 ../plugins/mycred-hook-
954
- #: affiliatewp.php:237 ../plugins/mycred-hook-events-manager-light.php:192 ..
955
  #: plugins/mycred-hook-sharethis.php:302 ../plugins/mycred-hook-buddypress-media.
956
- #: php:209 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
957
- #: buddypress-media.php:237 ../plugins/mycred-hook-wp-favorite-posts.php:213 ..
958
- #: plugins/mycred-hook-wp-favorite-posts.php:231 ../plugins/mycred-hook-contact-
959
- #: form7.php:147 ../plugins/mycred-hook-bbPress.php:410 ../plugins/mycred-hook-
960
- #: bbPress.php:440 ../plugins/mycred-hook-bbPress.php:475 ../plugins/mycred-hook-
961
- #: bbPress.php:492 ../plugins/mycred-hook-woocommerce.php:317 ../includes/mycred-
962
- #: shortcodes.php:1132
963
  msgid "Limit"
964
  msgstr ""
965
 
966
- #: ../modules/mycred-module-hooks.php:683 ../modules/mycred-module-hooks.php:699 .
967
- #: ./modules/mycred-module-hooks.php:714 ../modules/mycred-module-hooks.php:730 ..
968
- #: modules/mycred-module-hooks.php:791 ../modules/mycred-module-hooks.php:807 ..
969
- #: modules/mycred-module-hooks.php:1677 ../modules/mycred-module-hooks.php:1694 .
970
- #: ./modules/mycred-module-hooks.php:1711
971
  msgid "Content Author"
972
  msgstr ""
973
 
974
- #: ../modules/mycred-module-hooks.php:704
975
  #, php-format
976
  msgid "%plural% for viewing Pages"
977
  msgstr ""
978
 
979
- #: ../modules/mycred-module-hooks.php:781
980
  #, php-format
981
  msgid "%plural% for viewing %s"
982
  msgstr ""
983
 
984
- #: ../modules/mycred-module-hooks.php:1011 ../modules/mycred-module-hooks.php:
985
- #: 2032 ../modules/mycred-module-hooks.php:2402 ../plugins/mycred-hook-wp-polls.
986
- #: php:136 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
987
- #: gd-star-rating.php:122 ../plugins/mycred-hook-events-manager-light.php:196 ..
988
- #: plugins/mycred-hook-events-manager-light.php:209 ../plugins/mycred-hook-wp-
989
- #: favorite-posts.php:217 ../plugins/mycred-hook-wp-favorite-posts.php:235 ..
990
- #: plugins/mycred-hook-wp-favorite-posts.php:249 ../plugins/mycred-hook-wp-
991
- #: favorite-posts.php:262 ../plugins/mycred-hook-woocommerce.php:321 ..
992
- #: plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-hook-badgeOS.php:126 ..
993
- #: plugins/mycred-hook-badgeOS.php:135 ../addons/banking/services/mycred-bank-
994
  #: service-payouts.php:283 ../addons/banking/services/mycred-bank-service-
995
  #: interest.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:371 ..
996
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
997
  #: addons/gateway/carts/mycred-woocommerce.php:176 ..
998
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
999
  #: addons/gateway/carts/mycred-marketpress.php:428 ../addons/coupons/myCRED-
1000
- #: addon-coupons.php:557 ../addons/buy-creds/myCRED-addon-buy-creds.php:673 ..
1001
- #: addons/buy-creds/myCRED-addon-buy-creds.php:736
1002
  msgid "Log Template"
1003
  msgstr ""
1004
 
1005
- #: ../modules/mycred-module-hooks.php:1154
1006
  #, php-format
1007
  msgid "%plural% for Posts"
1008
  msgstr ""
1009
 
1010
- #: ../modules/mycred-module-hooks.php:1171
1011
  #, php-format
1012
  msgid "%plural% for Pages"
1013
  msgstr ""
1014
 
1015
- #: ../modules/mycred-module-hooks.php:1220
1016
  #, php-format
1017
  msgid "%plural% for %s"
1018
  msgstr ""
1019
 
1020
- #: ../modules/mycred-module-hooks.php:1667
1021
  #, php-format
1022
  msgid ""
1023
  "%plural% are only awarded when your website has been synced with the Disqus "
1024
  "server!"
1025
  msgstr ""
1026
 
1027
- #: ../modules/mycred-module-hooks.php:1670 ../includes/mycred-functions.php:2524
1028
  msgid "Approved Comment"
1029
  msgstr ""
1030
 
1031
- #: ../modules/mycred-module-hooks.php:1673 ../modules/mycred-module-hooks.php:
1032
- #: 1690 ../modules/mycred-module-hooks.php:1707
1033
  msgid "Comment Author"
1034
  msgstr ""
1035
 
1036
- #: ../modules/mycred-module-hooks.php:1687
1037
  msgid "Comment Marked SPAM"
1038
  msgstr ""
1039
 
1040
- #: ../modules/mycred-module-hooks.php:1704
1041
  msgid "Trashed / Unapproved Comments"
1042
  msgstr ""
1043
 
1044
- #: ../modules/mycred-module-hooks.php:1721 ../modules/mycred-module-hooks.php:
1045
- #: 2039 ../addons/transfer/myCRED-addon-transfer.php:259 ../addons/coupons/myCRED-
1046
  #: addon-coupons.php:175
1047
  msgid "Limits"
1048
  msgstr ""
1049
 
1050
- #: ../modules/mycred-module-hooks.php:1724
1051
  msgid "Limit per post"
1052
  msgstr ""
1053
 
1054
- #: ../modules/mycred-module-hooks.php:1726
1055
  msgid ""
1056
  "The number of comments per post that grants %_plural% to the comment author. "
1057
  "Use zero for unlimited."
1058
  msgstr ""
1059
 
1060
- #: ../modules/mycred-module-hooks.php:1730
1061
  msgid "Limit per day"
1062
  msgstr ""
1063
 
1064
- #: ../modules/mycred-module-hooks.php:1732
1065
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
1066
  msgstr ""
1067
 
1068
- #: ../modules/mycred-module-hooks.php:1737
1069
  #, php-format
1070
  msgid ""
1071
  "%plural% is to be awarded even when comment authors reply to their own "
1072
  "comment."
1073
  msgstr ""
1074
 
1075
- #: ../modules/mycred-module-hooks.php:1817
1076
  msgid "Once for each unique URL"
1077
  msgstr ""
1078
 
1079
- #: ../modules/mycred-module-hooks.php:1818
1080
  msgid "Once for each unique link id"
1081
  msgstr ""
1082
 
1083
- #: ../modules/mycred-module-hooks.php:2029
1084
  msgid ""
1085
  "The default amount to award for clicking on links. You can override this in "
1086
  "the shortcode."
1087
  msgstr ""
1088
 
1089
- #: ../modules/mycred-module-hooks.php:2036
1090
  #, php-format
1091
  msgid "Custom tags: %url%, %title% or %id%."
1092
  msgstr ""
1093
 
1094
- #: ../modules/mycred-module-hooks.php:2049 ../modules/mycred-module-hooks.php:3103
1095
  msgid "Note!"
1096
  msgstr ""
1097
 
1098
- #: ../modules/mycred-module-hooks.php:2049
1099
  msgid ""
1100
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
1101
  "generate one automatically based on the value set under href. If you are "
@@ -1103,182 +1100,182 @@ msgid ""
1103
  "by ID."
1104
  msgstr ""
1105
 
1106
- #: ../modules/mycred-module-hooks.php:2051 ../modules/mycred-module-hooks.php:2435
1107
  msgid "Available Shortcode"
1108
  msgstr ""
1109
 
1110
- #: ../modules/mycred-module-hooks.php:2399
1111
  msgid "Amount to award for viewing videos."
1112
  msgstr ""
1113
 
1114
- #: ../modules/mycred-module-hooks.php:2409
1115
  msgid "Award Logic"
1116
  msgstr ""
1117
 
1118
- #: ../modules/mycred-module-hooks.php:2411
1119
  #, php-format
1120
  msgid "Select when %_plural% should be awarded or deducted."
1121
  msgstr ""
1122
 
1123
- #: ../modules/mycred-module-hooks.php:2412
1124
  msgid "Play - As soon as video starts playing."
1125
  msgstr ""
1126
 
1127
- #: ../modules/mycred-module-hooks.php:2413
1128
  msgid "Full - First when the entire video has played."
1129
  msgstr ""
1130
 
1131
- #: ../modules/mycred-module-hooks.php:2414
1132
  msgid "Interval - For each x number of seconds watched."
1133
  msgstr ""
1134
 
1135
- #: ../modules/mycred-module-hooks.php:2417 ../addons/banking/services/mycred-bank-
1136
  #: service-payouts.php:271
1137
  msgid "Interval"
1138
  msgstr ""
1139
 
1140
- #: ../modules/mycred-module-hooks.php:2419
1141
  msgid "Number of seconds"
1142
  msgstr ""
1143
 
1144
- #: ../modules/mycred-module-hooks.php:2426
1145
  msgid "Leniency"
1146
  msgstr ""
1147
 
1148
- #: ../modules/mycred-module-hooks.php:2428
1149
  msgid ""
1150
  "The maximum percentage a users view of a movie can differ from the actual "
1151
  "length."
1152
  msgstr ""
1153
 
1154
- #: ../modules/mycred-module-hooks.php:2431
1155
  msgid ""
1156
  "Do not set this value to zero! A lot of thing can happen while a user "
1157
  "watches a movie and sometimes a few seconds can drop of the counter due to "
1158
  "buffering or play back errors."
1159
  msgstr ""
1160
 
1161
- #: ../modules/mycred-module-hooks.php:2506
1162
  msgid "Affiliate Program"
1163
  msgstr ""
1164
 
1165
- #: ../modules/mycred-module-hooks.php:2514 ../includes/mycred-admin.php:413 ..
1166
  #: addons/coupons/myCRED-addon-coupons.php:232
1167
  msgid "Total"
1168
  msgstr ""
1169
 
1170
- #: ../modules/mycred-module-hooks.php:2515
1171
  msgid "Per Day"
1172
  msgstr ""
1173
 
1174
- #: ../modules/mycred-module-hooks.php:2674
1175
  msgid "Link"
1176
  msgstr ""
1177
 
1178
- #: ../modules/mycred-module-hooks.php:2678
1179
  msgid "Visitors Referred"
1180
  msgstr ""
1181
 
1182
- #: ../modules/mycred-module-hooks.php:2682
1183
  msgid "Signups Referred"
1184
  msgstr ""
1185
 
1186
- #: ../modules/mycred-module-hooks.php:3001 ../plugins/mycred-hook-affiliatewp.php:
1187
- #: 231
1188
  msgid "Referring Visitors"
1189
  msgstr ""
1190
 
1191
- #: ../modules/mycred-module-hooks.php:3020 ../modules/mycred-module-hooks.php:3040
1192
  msgid "Referring Signups"
1193
  msgstr ""
1194
 
1195
- #: ../modules/mycred-module-hooks.php:3024
1196
  msgid "Visitors who have Cookies disabled will not award %_plural%."
1197
  msgstr ""
1198
 
1199
- #: ../modules/mycred-module-hooks.php:3042
1200
  msgid "Registrations are disabled."
1201
  msgstr ""
1202
 
1203
- #: ../modules/mycred-module-hooks.php:3050
1204
  msgid "Referral Links"
1205
  msgstr ""
1206
 
1207
- #: ../modules/mycred-module-hooks.php:3054
1208
  msgid "Assign numeric referral IDs to each user."
1209
  msgstr ""
1210
 
1211
- #: ../modules/mycred-module-hooks.php:3055 ../modules/mycred-module-hooks.php:3061
1212
  msgid "Example"
1213
  msgstr ""
1214
 
1215
- #: ../modules/mycred-module-hooks.php:3060
1216
  msgid "Assign usernames as IDs for each user."
1217
  msgstr ""
1218
 
1219
- #: ../modules/mycred-module-hooks.php:3064
1220
  msgid "IP Limit"
1221
  msgstr ""
1222
 
1223
- #: ../modules/mycred-module-hooks.php:3068
1224
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
1225
  msgstr ""
1226
 
1227
- #: ../modules/mycred-module-hooks.php:3072 ../modules/mycred-module-hooks.php:3107
1228
  msgid "BuddyPress Profile"
1229
  msgstr ""
1230
 
1231
- #: ../modules/mycred-module-hooks.php:3075
1232
  msgid "Insert Link in users Profile"
1233
  msgstr ""
1234
 
1235
- #: ../modules/mycred-module-hooks.php:3076
1236
  msgid ""
1237
  "Option to inser the referral link in users profiles. Links will only be "
1238
  "visible to users viewing their own profiles or administrators."
1239
  msgstr ""
1240
 
1241
- #: ../modules/mycred-module-hooks.php:3080 ../includes/mycred-widgets.php:196 ..
1242
  #: includes/mycred-widgets.php:385 ../includes/mycred-widgets.php:594 ..
1243
  #: addons/gateway/carts/mycred-woocommerce.php:92 ..
1244
  #: addons/transfer/includes/mycred-transfer-widgets.php:120 ..
1245
- #: addons/ranks/myCRED-addon-ranks.php:1319 ../addons/buy-creds/gateways/skrill.
1246
  #: php:339
1247
  msgid "Title"
1248
  msgstr ""
1249
 
1250
- #: ../modules/mycred-module-hooks.php:3082
1251
  msgid "Leave empty to hide."
1252
  msgstr ""
1253
 
1254
- #: ../modules/mycred-module-hooks.php:3085
1255
  msgid "Description"
1256
  msgstr ""
1257
 
1258
- #: ../modules/mycred-module-hooks.php:3086
1259
  msgid "Optional description to insert under the link."
1260
  msgstr ""
1261
 
1262
- #: ../modules/mycred-module-hooks.php:3100
1263
  msgid "Profile Positioning"
1264
  msgstr ""
1265
 
1266
- #: ../modules/mycred-module-hooks.php:3102
1267
  msgid ""
1268
  "You can move around the referral link on your users profile by changing the "
1269
  "position. Increase to move up, decrease to move down."
1270
  msgstr ""
1271
 
1272
- #: ../modules/mycred-module-hooks.php:3103
1273
  msgid "You can not move the referral link above the users \"Base\" profile details!"
1274
  msgstr ""
1275
 
1276
- #: ../modules/mycred-module-hooks.php:3109
1277
  msgid "Requires BuddyPress Extended Profiles to be enabled."
1278
  msgstr ""
1279
 
1280
- #: ../modules/mycred-module-hooks.php:3117 ../addons/buy-creds/myCRED-addon-buy-
1281
- #: creds.php:741
1282
  msgid "Available Shortcodes"
1283
  msgstr ""
1284
 
@@ -1296,26 +1293,29 @@ msgid "Current balance"
1296
  msgstr ""
1297
 
1298
  #: ../modules/mycred-module-buddypress.php:236 ../modules/mycred-module-
1299
- #: buddypress.php:249 ../includes/mycred-log.php:992
1300
  msgid "All"
1301
  msgstr ""
1302
 
1303
- #: ../modules/mycred-module-buddypress.php:237 ../includes/mycred-log.php:993 ..
1304
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:189
 
1305
  msgid "Today"
1306
  msgstr ""
1307
 
1308
- #: ../modules/mycred-module-buddypress.php:238 ../includes/mycred-log.php:994
1309
  msgid "Yesterday"
1310
  msgstr ""
1311
 
1312
- #: ../modules/mycred-module-buddypress.php:239 ../includes/mycred-log.php:995 ..
1313
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:190
 
1314
  msgid "This Week"
1315
  msgstr ""
1316
 
1317
- #: ../modules/mycred-module-buddypress.php:240 ../includes/mycred-log.php:996 ..
1318
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:191
 
1319
  msgid "This Month"
1320
  msgstr ""
1321
 
@@ -1323,508 +1323,508 @@ msgstr ""
1323
  msgid "Go"
1324
  msgstr ""
1325
 
1326
- #: ../modules/mycred-module-buddypress.php:417 ../addons/gateway/carts/mycred-
1327
- #: woocommerce.php:152 ../addons/badges/myCRED-addon-badges.php:970 ..
1328
- #: addons/badges/myCRED-addon-badges.php:1001
1329
  msgid "Do not show"
1330
  msgstr ""
1331
 
1332
- #: ../modules/mycred-module-buddypress.php:418 ../addons/badges/myCRED-addon-
1333
- #: badges.php:971
1334
  msgid "Include in Profile Header"
1335
  msgstr ""
1336
 
1337
- #: ../modules/mycred-module-buddypress.php:419 ../addons/ranks/myCRED-addon-ranks.
1338
- #: php:1408 ../addons/badges/myCRED-addon-badges.php:972
1339
  msgid "Include under the \"Profile\" tab"
1340
  msgstr ""
1341
 
1342
- #: ../modules/mycred-module-buddypress.php:420 ../addons/badges/myCRED-addon-
1343
- #: badges.php:973
1344
  msgid "Include under the \"Profile\" tab and Profile Header"
1345
  msgstr ""
1346
 
1347
- #: ../modules/mycred-module-buddypress.php:424 ../addons/ranks/myCRED-addon-ranks.
1348
- #: php:1406 ../addons/ranks/myCRED-addon-ranks.php:1451
1349
  msgid "Do not show."
1350
  msgstr ""
1351
 
1352
- #: ../modules/mycred-module-buddypress.php:425
1353
  msgid "Show in Profile"
1354
  msgstr ""
1355
 
1356
- #: ../modules/mycred-module-buddypress.php:442
1357
  #, php-format
1358
  msgid "%singular% Balance"
1359
  msgstr ""
1360
 
1361
- #: ../modules/mycred-module-buddypress.php:459
1362
  #, php-format
1363
  msgid "Members and visitors can other members %_singular% balance."
1364
  msgstr ""
1365
 
1366
- #: ../modules/mycred-module-buddypress.php:464 ../addons/ranks/myCRED-addon-ranks.
1367
- #: php:1428 ../addons/ranks/myCRED-addon-ranks.php:1473 ..
1368
- #: addons/notifications/myCRED-addon-notifications.php:201
1369
  msgid "Template"
1370
  msgstr ""
1371
 
1372
- #: ../modules/mycred-module-buddypress.php:469
1373
  #, php-format
1374
  msgid "%plural% History"
1375
  msgstr ""
1376
 
1377
- #: ../modules/mycred-module-buddypress.php:486
1378
  msgid "Members can view each others %_plural% history."
1379
  msgstr ""
1380
 
1381
- #: ../modules/mycred-module-buddypress.php:491
1382
  msgid "Menu Title"
1383
  msgstr ""
1384
 
1385
- #: ../modules/mycred-module-buddypress.php:493
1386
  msgid "Title shown to me"
1387
  msgstr ""
1388
 
1389
- #: ../modules/mycred-module-buddypress.php:498
1390
  #, php-format
1391
  msgid "Title shown to others. Use %s to show the first name."
1392
  msgstr ""
1393
 
1394
- #: ../modules/mycred-module-buddypress.php:503
1395
  msgid "Menu Position"
1396
  msgstr ""
1397
 
1398
- #: ../modules/mycred-module-buddypress.php:505
1399
  msgid "Current menu positions:"
1400
  msgstr ""
1401
 
1402
- #: ../modules/mycred-module-buddypress.php:510
1403
  msgid "History URL slug"
1404
  msgstr ""
1405
 
1406
- #: ../modules/mycred-module-buddypress.php:512
1407
  msgid "Do not use empty spaces!"
1408
  msgstr ""
1409
 
1410
- #: ../modules/mycred-module-buddypress.php:517
1411
  msgid "Number of history entries to show"
1412
  msgstr ""
1413
 
1414
- #: ../plugins/mycred-hook-invite-anyone.php:18
1415
  msgid "Invite Anyone Plugin"
1416
  msgstr ""
1417
 
1418
- #: ../plugins/mycred-hook-invite-anyone.php:19
1419
  #, php-format
1420
  msgid ""
1421
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
1422
  "accepted."
1423
  msgstr ""
1424
 
1425
- #: ../plugins/mycred-hook-invite-anyone.php:190
1426
  #, php-format
1427
  msgid "%plural% for Sending An Invite"
1428
  msgstr ""
1429
 
1430
- #: ../plugins/mycred-hook-invite-anyone.php:210
1431
  #, php-format
1432
  msgid "%plural% for Accepting An Invite"
1433
  msgstr ""
1434
 
1435
- #: ../plugins/mycred-hook-invite-anyone.php:214
1436
  #, php-format
1437
  msgid "%plural% for each invited user that accepts an invitation."
1438
  msgstr ""
1439
 
1440
- #: ../plugins/mycred-hook-wp-polls.php:18
1441
  msgid "WP-Polls"
1442
  msgstr ""
1443
 
1444
- #: ../plugins/mycred-hook-wp-polls.php:19
1445
  #, php-format
1446
  msgid "Awards %_plural% for users voting in polls."
1447
  msgstr ""
1448
 
1449
- #: ../plugins/mycred-hook-wp-postratings.php:18
1450
  msgid "Post Ratings"
1451
  msgstr ""
1452
 
1453
- #: ../plugins/mycred-hook-wp-postratings.php:19
1454
  #, php-format
1455
  msgid ""
1456
  "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
1457
  "author and the user rating."
1458
  msgstr ""
1459
 
1460
- #: ../plugins/mycred-hook-wp-postratings.php:76
1461
  msgid "Based on rating"
1462
  msgstr ""
1463
 
1464
- #: ../plugins/mycred-hook-wp-postratings.php:150 ../includes/mycred-functions.php:
1465
- #: 2599
1466
  msgid "Adding a Rating"
1467
  msgstr ""
1468
 
1469
- #: ../plugins/mycred-hook-wp-postratings.php:160 ../plugins/mycred-hook-wp-
1470
- #: postratings.php:179
1471
  msgid "Use the Rating Value instead of the amount set here."
1472
  msgstr ""
1473
 
1474
- #: ../plugins/mycred-hook-wp-postratings.php:169 ../includes/mycred-functions.php:
1475
- #: 2600
1476
  msgid "Receiving a Rating"
1477
  msgstr ""
1478
 
1479
- #: ../plugins/mycred-hook-gravityforms.php:18
1480
  msgid "Gravityform Submissions"
1481
  msgstr ""
1482
 
1483
- #: ../plugins/mycred-hook-gravityforms.php:19
1484
  #, php-format
1485
  msgid "Awards %_plural% for successful form submissions."
1486
  msgstr ""
1487
 
1488
- #: ../plugins/mycred-hook-gravityforms.php:118 ../plugins/mycred-hook-contact-
1489
- #: form7.php:117
1490
  msgid "No forms found."
1491
  msgstr ""
1492
 
1493
- #: ../plugins/mycred-hook-gd-star-rating.php:18
1494
  msgid "GD Star Rating"
1495
  msgstr ""
1496
 
1497
- #: ../plugins/mycred-hook-gd-star-rating.php:19
1498
  #, php-format
1499
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
1500
  msgstr ""
1501
 
1502
- #: ../plugins/mycred-hook-gd-star-rating.php:103
1503
  msgid "Rating"
1504
  msgstr ""
1505
 
1506
- #: ../plugins/mycred-hook-gd-star-rating.php:116
1507
  msgid "Up / Down Vote"
1508
  msgstr ""
1509
 
1510
- #: ../plugins/mycred-hook-simplepress.php:19
1511
  #, php-format
1512
  msgid "Awards %_plural% for Simple:Press actions."
1513
  msgstr ""
1514
 
1515
- #: ../plugins/mycred-hook-simplepress.php:278 ../plugins/mycred-hook-bbPress.php:
1516
- #: 434
1517
  #, php-format
1518
  msgid "%plural% for New Topic"
1519
  msgstr ""
1520
 
1521
- #: ../plugins/mycred-hook-simplepress.php:295 ../plugins/mycred-hook-bbPress.php:
1522
- #: 456
1523
  #, php-format
1524
  msgid "%plural% for Topic Deletion"
1525
  msgstr ""
1526
 
1527
- #: ../plugins/mycred-hook-simplepress.php:308
1528
  #, php-format
1529
  msgid "%plural% for New Topic Post"
1530
  msgstr ""
1531
 
1532
- #: ../plugins/mycred-hook-simplepress.php:326
1533
  #, php-format
1534
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
1535
  msgstr ""
1536
 
1537
- #: ../plugins/mycred-hook-simplepress.php:330
1538
  #, php-format
1539
  msgid "%plural% for Topic Post Deletion"
1540
  msgstr ""
1541
 
1542
- #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
1543
- #: php:80
1544
  #, php-format
1545
  msgid "Reward with %plural%"
1546
  msgstr ""
1547
 
1548
- #: ../plugins/mycred-hook-buddypress-gallery.php:19
1549
  msgid "BuddyPress: Gallery Actions"
1550
  msgstr ""
1551
 
1552
- #: ../plugins/mycred-hook-buddypress-gallery.php:20
1553
  #, php-format
1554
  msgid ""
1555
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
1556
  "Gallery."
1557
  msgstr ""
1558
 
1559
- #: ../plugins/mycred-hook-buddypress-gallery.php:96
1560
  #, php-format
1561
  msgid "%plural% for New Gallery"
1562
  msgstr ""
1563
 
1564
- #: ../plugins/mycred-hook-buddypress.php:14
1565
  msgid "BuddyPress: Members"
1566
  msgstr ""
1567
 
1568
- #: ../plugins/mycred-hook-buddypress.php:15
1569
  #, php-format
1570
  msgid "Awards %_plural% for profile related actions."
1571
  msgstr ""
1572
 
1573
- #: ../plugins/mycred-hook-buddypress.php:22
1574
  msgid "BuddyPress: Groups"
1575
  msgstr ""
1576
 
1577
- #: ../plugins/mycred-hook-buddypress.php:23
1578
  #, php-format
1579
  msgid ""
1580
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
1581
  "zero to disable a specific hook."
1582
  msgstr ""
1583
 
1584
- #: ../plugins/mycred-hook-buddypress.php:252 ../addons/gateway/event-
1585
  #: booking/mycred-eventsmanager.php:636 ../addons/gateway/event-booking/mycred-
1586
  #: eventsmanager-pro.php:617 ../addons/gateway/carts/mycred-wpecommerce.php:386 ..
1587
  #: addons/gateway/carts/mycred-marketpress.php:438
1588
  msgid "Insufficient Funds"
1589
  msgstr ""
1590
 
1591
- #: ../plugins/mycred-hook-buddypress.php:502
1592
  #, php-format
1593
  msgid "%plural% for Profile Updates"
1594
  msgstr ""
1595
 
1596
- #: ../plugins/mycred-hook-buddypress.php:519
1597
  #, php-format
1598
  msgid "%plural% for Removing Profile Update"
1599
  msgstr ""
1600
 
1601
- #: ../plugins/mycred-hook-buddypress.php:536
1602
  #, php-format
1603
  msgid "%plural% for New Avatar"
1604
  msgstr ""
1605
 
1606
- #: ../plugins/mycred-hook-buddypress.php:553
1607
  #, php-format
1608
  msgid "%plural% for New Friendships"
1609
  msgstr ""
1610
 
1611
- #: ../plugins/mycred-hook-buddypress.php:563
1612
  #, php-format
1613
  msgid ""
1614
  "Users with zero balance can not add friends. Requires that you deduct "
1615
  "%_plural% for adding a new friend."
1616
  msgstr ""
1617
 
1618
- #: ../plugins/mycred-hook-buddypress.php:573
1619
  #, php-format
1620
  msgid "%plural% for Leaving Friendship"
1621
  msgstr ""
1622
 
1623
- #: ../plugins/mycred-hook-buddypress.php:586
1624
  #, php-format
1625
  msgid "%plural% for New Comment"
1626
  msgstr ""
1627
 
1628
- #: ../plugins/mycred-hook-buddypress.php:603
1629
  #, php-format
1630
  msgid "%plural% for Deleting Comment"
1631
  msgstr ""
1632
 
1633
- #: ../plugins/mycred-hook-buddypress.php:616
1634
  #, php-format
1635
  msgid "%plural% for New Messages"
1636
  msgstr ""
1637
 
1638
- #: ../plugins/mycred-hook-buddypress.php:633
1639
  #, php-format
1640
  msgid "%plural% for Sending Gift"
1641
  msgstr ""
1642
 
1643
- #: ../plugins/mycred-hook-buddypress.php:1204
1644
  #, php-format
1645
  msgid "%plural% for Creating Groups"
1646
  msgstr ""
1647
 
1648
- #: ../plugins/mycred-hook-buddypress.php:1208
1649
  msgid ""
1650
  "If you use a negative value and the user does not have enough %_plural% the "
1651
  "\"Create Group\" button will be disabled."
1652
  msgstr ""
1653
 
1654
- #: ../plugins/mycred-hook-buddypress.php:1212
1655
  msgid "Number of members before awarding %_plural%"
1656
  msgstr ""
1657
 
1658
- #: ../plugins/mycred-hook-buddypress.php:1214
1659
  msgid "Use zero to award %_plural% when group is created."
1660
  msgstr ""
1661
 
1662
- #: ../plugins/mycred-hook-buddypress.php:1224
1663
  #, php-format
1664
  msgid "%plural% for Deleting Groups"
1665
  msgstr ""
1666
 
1667
- #: ../plugins/mycred-hook-buddypress.php:1237
1668
  #, php-format
1669
  msgid "%plural% for New Forum Topic"
1670
  msgstr ""
1671
 
1672
- #: ../plugins/mycred-hook-buddypress.php:1254
1673
  #, php-format
1674
  msgid "%plural% for Editing Forum Topic"
1675
  msgstr ""
1676
 
1677
- #: ../plugins/mycred-hook-buddypress.php:1271
1678
  #, php-format
1679
  msgid "%plural% for New Forum Post"
1680
  msgstr ""
1681
 
1682
- #: ../plugins/mycred-hook-buddypress.php:1288
1683
  #, php-format
1684
  msgid "%plural% for Editing Forum Post"
1685
  msgstr ""
1686
 
1687
- #: ../plugins/mycred-hook-buddypress.php:1305
1688
  #, php-format
1689
  msgid "%plural% for Joining Groups"
1690
  msgstr ""
1691
 
1692
- #: ../plugins/mycred-hook-buddypress.php:1309
1693
  msgid ""
1694
  "If you use a negative value and the user does not have enough %_plural% the "
1695
  "\"Join Group\" button will be disabled."
1696
  msgstr ""
1697
 
1698
- #: ../plugins/mycred-hook-buddypress.php:1323
1699
  #, php-format
1700
  msgid "%plural% for Leaving Groups"
1701
  msgstr ""
1702
 
1703
- #: ../plugins/mycred-hook-buddypress.php:1336
1704
  #, php-format
1705
  msgid "%plural% for New Group Avatar"
1706
  msgstr ""
1707
 
1708
- #: ../plugins/mycred-hook-buddypress.php:1353
1709
  #, php-format
1710
  msgid "%plural% for New Group Comment"
1711
  msgstr ""
1712
 
1713
- #: ../plugins/mycred-hook-buddypress-links.php:19
1714
  msgid "BuddyPress: Links"
1715
  msgstr ""
1716
 
1717
- #: ../plugins/mycred-hook-buddypress-links.php:20
1718
  #, php-format
1719
  msgid "Awards %_plural% for link related actions."
1720
  msgstr ""
1721
 
1722
- #: ../plugins/mycred-hook-buddypress-links.php:244
1723
  #, php-format
1724
  msgid "%plural% for New Links"
1725
  msgstr ""
1726
 
1727
- #: ../plugins/mycred-hook-buddypress-links.php:261
1728
  #, php-format
1729
  msgid "%plural% for Vote on Link"
1730
  msgstr ""
1731
 
1732
- #: ../plugins/mycred-hook-buddypress-links.php:277
1733
  #, php-format
1734
  msgid "%plural% per received Vote"
1735
  msgstr ""
1736
 
1737
- #: ../plugins/mycred-hook-buddypress-links.php:280
1738
  msgid "Vote Up"
1739
  msgstr ""
1740
 
1741
- #: ../plugins/mycred-hook-buddypress-links.php:299
1742
  msgid "Vote Down"
1743
  msgstr ""
1744
 
1745
- #: ../plugins/mycred-hook-buddypress-links.php:314
1746
  #, php-format
1747
  msgid "%plural% for Updating Links"
1748
  msgstr ""
1749
 
1750
- #: ../plugins/mycred-hook-buddypress-links.php:331
1751
  #, php-format
1752
  msgid "%plural% for Deleting Links"
1753
  msgstr ""
1754
 
1755
- #: ../plugins/mycred-hook-affiliatewp.php:18
1756
  msgid "AffiliateWP"
1757
  msgstr ""
1758
 
1759
- #: ../plugins/mycred-hook-affiliatewp.php:19
1760
  #, php-format
1761
  msgid ""
1762
  "Awards %_plural% for affiliate signups, referring visitors and store sale "
1763
  "referrals."
1764
  msgstr ""
1765
 
1766
- #: ../plugins/mycred-hook-affiliatewp.php:218
1767
  msgid "Affiliate Signup"
1768
  msgstr ""
1769
 
1770
- #: ../plugins/mycred-hook-affiliatewp.php:248
1771
  msgid "Referring Sales"
1772
  msgstr ""
1773
 
1774
- #: ../plugins/mycred-hook-affiliatewp.php:251
1775
  msgid "Pay a set amount for all referrals."
1776
  msgstr ""
1777
 
1778
- #: ../plugins/mycred-hook-affiliatewp.php:252
1779
  #, php-format
1780
  msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
1781
  msgstr ""
1782
 
1783
- #: ../plugins/mycred-hook-affiliatewp.php:253
1784
  msgid "Apply an exchange rate against the referral amount."
1785
  msgstr ""
1786
 
1787
- #: ../plugins/mycred-hook-affiliatewp.php:256 ../includes/mycred-shortcodes.php:
1788
- #: 988 ../includes/mycred-shortcodes.php:1131 ../includes/mycred-admin.php:749 ..
1789
- #: includes/mycred-admin.php:801 ../addons/banking/services/mycred-bank-service-
1790
- #: payouts.php:266 ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ..
1791
- #: addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/buy-creds/myCRED-
1792
- #: addon-buy-creds.php:1713 ../addons/buy-creds/abstracts/mycred-abstract-payment-
1793
  #: gateway.php:593
1794
  msgid "Amount"
1795
  msgstr ""
1796
 
1797
- #: ../plugins/mycred-hook-affiliatewp.php:261
1798
  msgid "Log template - Payout"
1799
  msgstr ""
1800
 
1801
- #: ../plugins/mycred-hook-affiliatewp.php:266
1802
  msgid "Log template - Refund"
1803
  msgstr ""
1804
 
1805
- #: ../plugins/mycred-hook-events-manager-light.php:18
1806
  msgid "Events Manager"
1807
  msgstr ""
1808
 
1809
- #: ../plugins/mycred-hook-events-manager-light.php:19
1810
  #, php-format
1811
  msgid "Awards %_plural% for users attending events."
1812
  msgstr ""
1813
 
1814
- #: ../plugins/mycred-hook-events-manager-light.php:186
1815
  msgid "Attending Event"
1816
  msgstr ""
1817
 
1818
- #: ../plugins/mycred-hook-events-manager-light.php:203
1819
  msgid "Cancelling Attendance"
1820
  msgstr ""
1821
 
1822
- #: ../plugins/mycred-hook-sharethis.php:19
1823
  #, php-format
1824
  msgid "%plural% for Sharing"
1825
  msgstr ""
1826
 
1827
- #: ../plugins/mycred-hook-sharethis.php:20
1828
  #, php-format
1829
  msgid ""
1830
  "Awards %_plural% for users sharing / liking your website content to popular "
@@ -1839,201 +1839,206 @@ msgstr ""
1839
  msgid "No ShareThis services detected. Please check your installation."
1840
  msgstr ""
1841
 
1842
- #: ../plugins/mycred-hook-buddypress-media.php:18
1843
  msgid "rtMedia Galleries"
1844
  msgstr ""
1845
 
1846
- #: ../plugins/mycred-hook-buddypress-media.php:19
1847
  #, php-format
1848
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
1849
  msgstr ""
1850
 
1851
- #: ../plugins/mycred-hook-buddypress-media.php:202
1852
  msgid "New Media Upload"
1853
  msgstr ""
1854
 
1855
- #: ../plugins/mycred-hook-buddypress-media.php:205 ../includes/mycred-functions.
1856
- #: php:2557
1857
  msgid "Photo Upload"
1858
  msgstr ""
1859
 
1860
- #: ../plugins/mycred-hook-buddypress-media.php:219 ../includes/mycred-functions.
1861
- #: php:2558
1862
  msgid "Video Upload"
1863
  msgstr ""
1864
 
1865
- #: ../plugins/mycred-hook-buddypress-media.php:233 ../includes/mycred-functions.
1866
- #: php:2559
1867
  msgid "Music Upload"
1868
  msgstr ""
1869
 
1870
- #: ../plugins/mycred-hook-buddypress-media.php:247
1871
  msgid "Delete Media"
1872
  msgstr ""
1873
 
1874
- #: ../plugins/mycred-hook-buddypress-media.php:250
1875
  msgid "Delete Photo"
1876
  msgstr ""
1877
 
1878
- #: ../plugins/mycred-hook-buddypress-media.php:260
1879
  msgid "Delete Video"
1880
  msgstr ""
1881
 
1882
- #: ../plugins/mycred-hook-buddypress-media.php:270
1883
  msgid "Delete Music"
1884
  msgstr ""
1885
 
1886
- #: ../plugins/mycred-hook-wp-favorite-posts.php:18
1887
  msgid "WP Favorite Posts"
1888
  msgstr ""
1889
 
1890
- #: ../plugins/mycred-hook-wp-favorite-posts.php:19
1891
  #, php-format
1892
  msgid "Awards %_plural% for users adding posts to their favorites."
1893
  msgstr ""
1894
 
1895
- #: ../plugins/mycred-hook-wp-favorite-posts.php:207
1896
  msgid "Adding Content to Favorites"
1897
  msgstr ""
1898
 
1899
- #: ../plugins/mycred-hook-wp-favorite-posts.php:225
1900
  msgid "Authors Content added to favorites"
1901
  msgstr ""
1902
 
1903
- #: ../plugins/mycred-hook-wp-favorite-posts.php:243
1904
  msgid "Removing Content from Favorites"
1905
  msgstr ""
1906
 
1907
- #: ../plugins/mycred-hook-wp-favorite-posts.php:256
1908
  msgid "Removing Content from Favorites (Author)"
1909
  msgstr ""
1910
 
1911
- #: ../plugins/mycred-hook-contact-form7.php:18
1912
  msgid "Contact Form 7 Form Submissions"
1913
  msgstr ""
1914
 
1915
- #: ../plugins/mycred-hook-contact-form7.php:19
1916
  #, php-format
1917
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
1918
  msgstr ""
1919
 
1920
- #: ../plugins/mycred-hook-jetpack.php:18
1921
  msgid "Jetpack Subscriptions"
1922
  msgstr ""
1923
 
1924
- #: ../plugins/mycred-hook-jetpack.php:19
1925
  #, php-format
1926
  msgid ""
1927
  "Awards %_plural% for users signing up for site or comment updates using "
1928
  "Jetpack."
1929
  msgstr ""
1930
 
1931
- #: ../plugins/mycred-hook-jetpack.php:499
1932
  msgid "Site Subscriptions"
1933
  msgstr ""
1934
 
1935
- #: ../plugins/mycred-hook-jetpack.php:512
1936
  msgid "Comment Subscriptions"
1937
  msgstr ""
1938
 
1939
- #: ../plugins/mycred-hook-bbPress.php:18
1940
  msgid "bbPress"
1941
  msgstr ""
1942
 
1943
- #: ../plugins/mycred-hook-bbPress.php:19
1944
  #, php-format
1945
  msgid "Awards %_plural% for bbPress actions."
1946
  msgstr ""
1947
 
1948
- #: ../plugins/mycred-hook-bbPress.php:404
1949
  #, php-format
1950
  msgid "%plural% for New Forum"
1951
  msgstr ""
1952
 
1953
- #: ../plugins/mycred-hook-bbPress.php:421
1954
  #, php-format
1955
  msgid "%plural% for Forum Deletion"
1956
  msgstr ""
1957
 
1958
- #: ../plugins/mycred-hook-bbPress.php:452
1959
  #, php-format
1960
  msgid "Forum authors can receive %_plural% for creating new topics."
1961
  msgstr ""
1962
 
1963
- #: ../plugins/mycred-hook-bbPress.php:469
1964
  #, php-format
1965
  msgid "%plural% for Favorited Topic"
1966
  msgstr ""
1967
 
1968
- #: ../plugins/mycred-hook-bbPress.php:486
1969
  #, php-format
1970
  msgid "%plural% for New Reply"
1971
  msgstr ""
1972
 
1973
- #: ../plugins/mycred-hook-bbPress.php:504
1974
  #, php-format
1975
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
1976
  msgstr ""
1977
 
1978
- #: ../plugins/mycred-hook-bbPress.php:508
1979
  #, php-format
1980
  msgid "Show users %_plural% balance in replies"
1981
  msgstr ""
1982
 
1983
- #: ../plugins/mycred-hook-bbPress.php:512
 
 
 
 
 
1984
  #, php-format
1985
  msgid "%plural% for Reply Deletion"
1986
  msgstr ""
1987
 
1988
- #: ../plugins/mycred-hook-woocommerce.php:210
1989
  msgid "WooCommerce Product Reviews"
1990
  msgstr ""
1991
 
1992
- #: ../plugins/mycred-hook-woocommerce.php:211
1993
  #, php-format
1994
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
1995
  msgstr ""
1996
 
1997
- #: ../plugins/mycred-hook-badgeOS.php:18
1998
  msgid "BadgeOS"
1999
  msgstr ""
2000
 
2001
- #: ../plugins/mycred-hook-badgeOS.php:19
2002
  msgid ""
2003
  "Default settings for each BadgeOS Achievement type. These settings may be "
2004
  "overridden for individual achievement type."
2005
  msgstr ""
2006
 
2007
- #: ../plugins/mycred-hook-badgeOS.php:105
2008
  #, php-format
2009
  msgid ""
2010
  "Please setup your <a href=\"%s\">default settings</a> before using this "
2011
  "feature."
2012
  msgstr ""
2013
 
2014
- #: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
2015
  #, php-format
2016
  msgid "%plural% to Award"
2017
  msgstr ""
2018
 
2019
- #: ../plugins/mycred-hook-badgeOS.php:122
2020
  msgid "Use zero to disable"
2021
  msgstr ""
2022
 
2023
- #: ../plugins/mycred-hook-badgeOS.php:133
2024
  msgid "Deduction Log Template"
2025
  msgstr ""
2026
 
2027
- #: ../plugins/mycred-hook-badgeOS.php:278
2028
  #, php-format
2029
  msgid "Default %s for %s"
2030
  msgstr ""
2031
 
2032
- #: ../plugins/mycred-hook-badgeOS.php:284
2033
  msgid "Use zero to disable users gaining %_plural%"
2034
  msgstr ""
2035
 
2036
- #: ../plugins/mycred-hook-badgeOS.php:288
2037
  msgid "Default Log template"
2038
  msgstr ""
2039
 
@@ -2061,7 +2066,7 @@ msgid "%s CubePoints Import"
2061
  msgstr ""
2062
 
2063
  #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
2064
- #: 344
2065
  msgid "Import CubePoints log entries and / or balances."
2066
  msgstr ""
2067
 
@@ -2140,24 +2145,24 @@ msgstr ""
2140
  msgid "No export options available."
2141
  msgstr ""
2142
 
2143
- #: ../includes/mycred-log.php:756 ../addons/buy-creds/myCRED-addon-buy-creds.php:
2144
- #: 1075
2145
  msgid "Date"
2146
  msgstr ""
2147
 
2148
- #: ../includes/mycred-log.php:758
2149
  msgid "Entry"
2150
  msgstr ""
2151
 
2152
- #: ../includes/mycred-log.php:958
2153
  msgid "No log entries found"
2154
  msgstr ""
2155
 
2156
- #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
2157
  msgid "Search Log"
2158
  msgstr ""
2159
 
2160
- #: ../includes/mycred-log.php:977
2161
  msgid "search log entries"
2162
  msgstr ""
2163
 
@@ -2298,65 +2303,63 @@ msgstr ""
2298
  msgid "Save Network Settings"
2299
  msgstr ""
2300
 
2301
- #: ../includes/mycred-about.php:77
2302
  #, php-format
2303
  msgid "Welcome to %s %s"
2304
  msgstr ""
2305
 
2306
- #: ../includes/mycred-shortcodes.php:175
2307
  msgid "Leaderboard is empty."
2308
  msgstr ""
2309
 
2310
- #: ../includes/mycred-shortcodes.php:525
2311
- msgid "error"
 
 
2312
  msgstr ""
2313
 
2314
- #: ../includes/mycred-shortcodes.php:525
2315
  msgid "Anchor missing URL!"
2316
  msgstr ""
2317
 
2318
- #: ../includes/mycred-shortcodes.php:641
2319
  msgid "Sent"
2320
  msgstr ""
2321
 
2322
- #: ../includes/mycred-shortcodes.php:642
2323
  msgid "Error - Try Again"
2324
  msgstr ""
2325
 
2326
- #: ../includes/mycred-shortcodes.php:780
2327
  msgid "A video ID is required for this shortcode"
2328
  msgstr ""
2329
 
2330
- #: ../includes/mycred-shortcodes.php:941 ../includes/mycred-functions.php:2732
2331
- msgid "Point types not found."
2332
- msgstr ""
2333
-
2334
- #: ../includes/mycred-shortcodes.php:947 ../includes/mycred-shortcodes.php:955 ..
2335
- #: includes/mycred-functions.php:2744 ../includes/mycred-functions.php:2764
2336
  #, php-format
2337
  msgid "You are excluded from using %s."
2338
  msgstr ""
2339
 
2340
- #: ../includes/mycred-shortcodes.php:951 ../includes/mycred-functions.php:2754
2341
  msgid "Your balance is too low to use this feature."
2342
  msgstr ""
2343
 
2344
- #: ../includes/mycred-shortcodes.php:973
2345
  #, php-format
2346
  msgid "Convert <span>%s</span> to <span>%s</span>"
2347
  msgstr ""
2348
 
2349
- #: ../includes/mycred-shortcodes.php:982
2350
  #, php-format
2351
  msgid "Your current %s balance"
2352
  msgstr ""
2353
 
2354
- #: ../includes/mycred-shortcodes.php:990
2355
  #, php-format
2356
  msgid "Minimum %s"
2357
  msgstr ""
2358
 
2359
- #: ../includes/mycred-shortcodes.php:993 ../addons/gateway/event-booking/mycred-
2360
  #: eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager.
2361
  #: php:578 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:540 ..
2362
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ..
@@ -2365,24 +2368,20 @@ msgstr ""
2365
  msgid "Exchange Rate"
2366
  msgstr ""
2367
 
2368
- #: ../includes/mycred-shortcodes.php:994
2369
  #, php-format
2370
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
2371
  msgstr ""
2372
 
2373
- #: ../includes/mycred-shortcodes.php:1000
2374
  msgid "Exchange"
2375
  msgstr ""
2376
 
2377
- #: ../includes/mycred-shortcodes.php:1065
2378
  msgid "No instances found for this point type"
2379
  msgstr ""
2380
 
2381
- #: ../includes/mycred-shortcodes.php:1069
2382
- msgid "Invalid point type"
2383
- msgstr ""
2384
-
2385
- #: ../includes/mycred-shortcodes.php:1130
2386
  msgid "Instance"
2387
  msgstr ""
2388
 
@@ -2392,7 +2391,8 @@ msgid "%s Overview"
2392
  msgstr ""
2393
 
2394
  #: ../includes/mycred-overview.php:78 ../addons/stats/widgets/mycred-stats-widget-
2395
- #: circulation.php:136
 
2396
  msgid "Total amount in circulation"
2397
  msgstr ""
2398
 
@@ -2410,13 +2410,13 @@ msgid "Transfers"
2410
  msgstr ""
2411
 
2412
  #: ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ..
2413
- #: addons/sell-content/myCRED-addon-sell-content.php:401
2414
  msgid "Sell Content"
2415
  msgstr ""
2416
 
2417
  #: ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ..
2418
- #: addons/buy-creds/myCRED-addon-buy-creds.php:346 ../addons/buy-creds/myCRED-
2419
- #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712
2420
  msgid "Gateway"
2421
  msgstr ""
2422
 
@@ -2507,7 +2507,7 @@ msgid "Cancel Setup"
2507
  msgstr ""
2508
 
2509
  #: ../includes/mycred-install.php:536 ../addons/buy-creds/myCRED-addon-buy-creds.
2510
- #: php:1687
2511
  msgid "Cancel"
2512
  msgstr ""
2513
 
@@ -2536,80 +2536,80 @@ msgstr ""
2536
  msgid "Install & Run"
2537
  msgstr ""
2538
 
2539
- #: ../includes/mycred-admin.php:195
2540
  msgid "A log entry is required in order to adjust this users balance"
2541
  msgstr ""
2542
 
2543
- #: ../includes/mycred-admin.php:197
2544
  msgid "Users balance saved"
2545
  msgstr ""
2546
 
2547
- #: ../includes/mycred-admin.php:205
2548
  msgid "Users excluded"
2549
  msgstr ""
2550
 
2551
- #: ../includes/mycred-admin.php:210
2552
  msgid ""
2553
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
2554
  "rate settings and update all premium payment gateways!"
2555
  msgstr ""
2556
 
2557
- #: ../includes/mycred-admin.php:239
2558
  msgid "User is excluded"
2559
  msgstr ""
2560
 
2561
- #: ../includes/mycred-admin.php:244
2562
  msgid "Log Entry can not be empty"
2563
  msgstr ""
2564
 
2565
- #: ../includes/mycred-admin.php:248
2566
  msgid "Amount can not be zero"
2567
  msgstr ""
2568
 
2569
- #: ../includes/mycred-admin.php:269
2570
  msgid "Failed to update this uses balance."
2571
  msgstr ""
2572
 
2573
- #: ../includes/mycred-admin.php:403
2574
  msgid "Excluded"
2575
  msgstr ""
2576
 
2577
- #: ../includes/mycred-admin.php:424
2578
  msgid "Adjust"
2579
  msgstr ""
2580
 
2581
- #: ../includes/mycred-admin.php:466 ../includes/mycred-admin.php:467
2582
  msgid "Edit Balance"
2583
  msgstr ""
2584
 
2585
- #: ../includes/mycred-admin.php:487
2586
  msgid "Profile"
2587
  msgstr ""
2588
 
2589
- #: ../includes/mycred-admin.php:494
2590
  msgid "Extended Profile"
2591
  msgstr ""
2592
 
2593
- #: ../includes/mycred-admin.php:588
2594
  #, php-format
2595
  msgid "This user is excluded from using %s"
2596
  msgstr ""
2597
 
2598
- #: ../includes/mycred-admin.php:612
2599
  msgid "Edit User"
2600
  msgstr ""
2601
 
2602
- #: ../includes/mycred-admin.php:614
2603
  msgctxt "user"
2604
  msgid "Add New"
2605
  msgstr ""
2606
 
2607
- #: ../includes/mycred-admin.php:616
2608
  msgctxt "user"
2609
  msgid "Add Existing"
2610
  msgstr ""
2611
 
2612
- #: ../includes/mycred-admin.php:626 ../includes/mycred-admin.php:797 ..
2613
  #: addons/gateway/event-booking/mycred-eventespresso3.php:277 ..
2614
  #: addons/gateway/event-booking/mycred-eventespresso3.php:301 ..
2615
  #: addons/gateway/event-booking/mycred-eventsmanager.php:412 ..
@@ -2617,63 +2617,63 @@ msgstr ""
2617
  msgid "Current Balance"
2618
  msgstr ""
2619
 
2620
- #: ../includes/mycred-admin.php:627
2621
  #, php-format
2622
  msgid "Total %s Accumulated"
2623
  msgstr ""
2624
 
2625
- #: ../includes/mycred-admin.php:628
2626
  #, php-format
2627
  msgid "Total %s Spent"
2628
  msgstr ""
2629
 
2630
- #: ../includes/mycred-admin.php:639
2631
  msgid "View History"
2632
  msgstr ""
2633
 
2634
- #: ../includes/mycred-admin.php:640
2635
  msgid "Exclude User"
2636
  msgstr ""
2637
 
2638
- #: ../includes/mycred-admin.php:644
2639
  msgid "Adjust Balance"
2640
  msgstr ""
2641
 
2642
- #: ../includes/mycred-admin.php:653
2643
  msgid ""
2644
  "Warning! Excluding this user will result in their balance being deleted "
2645
  "along with any entries currently in your log! This can not be undone!"
2646
  msgstr ""
2647
 
2648
- #: ../includes/mycred-admin.php:718
2649
  #, php-format
2650
  msgid "%singular% balance"
2651
  msgstr ""
2652
 
2653
- #: ../includes/mycred-admin.php:742 ../includes/mycred-admin.php:786 ..
2654
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503
2655
  msgid "required"
2656
  msgstr ""
2657
 
2658
- #: ../includes/mycred-admin.php:744 ../includes/mycred-admin.php:788 ..
2659
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504
2660
  msgid "optional"
2661
  msgstr ""
2662
 
2663
- #: ../includes/mycred-admin.php:758 ../includes/mycred-admin.php:802 ..
2664
  #: addons/gateway/event-booking/mycred-eventespresso3.php:470
2665
  msgid "Log Entry"
2666
  msgstr ""
2667
 
2668
- #: ../includes/mycred-admin.php:762 ../includes/mycred-admin.php:803
2669
  msgid "Update Balance"
2670
  msgstr ""
2671
 
2672
- #: ../includes/mycred-admin.php:795
2673
  msgid "ID"
2674
  msgstr ""
2675
 
2676
- #: ../includes/mycred-admin.php:801
2677
  msgid "A positive or negative value"
2678
  msgstr ""
2679
 
@@ -2688,17 +2688,17 @@ msgid "Show the current users %s balance"
2688
  msgstr ""
2689
 
2690
  #: ../includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:391 ..
2691
- #: includes/importers/mycred-cubepoints.php:365 ../addons/gateway/event-
2692
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
2693
  #: eventsmanager.php:550 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
2694
  #: php:504 ../addons/gateway/carts/mycred-wpecommerce.php:354 ..
2695
  #: addons/gateway/carts/mycred-woocommerce.php:120 ..
2696
  #: addons/gateway/carts/mycred-marketpress.php:389 ../addons/ranks/myCRED-addon-
2697
- #: ranks.php:1046 ../addons/ranks/myCRED-addon-ranks.php:1201 ../addons/email-
2698
- #: notices/myCRED-addon-email-notices.php:814 ../addons/email-notices/myCRED-
2699
- #: addon-email-notices.php:1031 ../addons/coupons/myCRED-addon-coupons.php:179 ..
2700
  #: addons/coupons/myCRED-addon-coupons.php:388 ../addons/sell-content/myCRED-
2701
- #: addon-sell-content.php:411
2702
  msgid "Point Type"
2703
  msgstr ""
2704
 
@@ -2797,566 +2797,574 @@ msgstr ""
2797
  msgid "Row Layout"
2798
  msgstr ""
2799
 
2800
- #: ../includes/mycred-functions.php:85
2801
  msgid "Point"
2802
  msgstr ""
2803
 
2804
- #: ../includes/mycred-functions.php:86
2805
  msgid "Points"
2806
  msgstr ""
2807
 
2808
- #: ../includes/mycred-functions.php:447
2809
  msgid "Deleted"
2810
  msgstr ""
2811
 
2812
- #: ../includes/mycred-functions.php:594
2813
  msgid "Deleted Item"
2814
  msgstr ""
2815
 
2816
- #: ../includes/mycred-functions.php:658 ../addons/gateway/carts/mycred-
2817
- #: wpecommerce.php:341 ../addons/email-notices/myCRED-addon-email-notices.php:200
2818
  msgid "General"
2819
  msgstr ""
2820
 
2821
- #: ../includes/mycred-functions.php:665
2822
  msgid "User Related"
2823
  msgstr ""
2824
 
2825
- #: ../includes/mycred-functions.php:672
2826
  msgid "Post Related"
2827
  msgstr ""
2828
 
2829
- #: ../includes/mycred-functions.php:679
2830
  msgid "Comment Related"
2831
  msgstr ""
2832
 
2833
- #: ../includes/mycred-functions.php:686
2834
  msgid "Widget Related"
2835
  msgstr ""
2836
 
2837
- #: ../includes/mycred-functions.php:693
2838
  msgid "Amount Related"
2839
  msgstr ""
2840
 
2841
- #: ../includes/mycred-functions.php:700
2842
  msgid "Video Related"
2843
  msgstr ""
2844
 
2845
- #: ../includes/mycred-functions.php:711
2846
  msgid "and"
2847
  msgstr ""
2848
 
2849
- #: ../includes/mycred-functions.php:713
2850
  msgid "Available Template Tags:"
2851
  msgstr ""
2852
 
2853
- #: ../includes/mycred-functions.php:1874
2854
  msgid "Entire Log"
2855
  msgstr ""
2856
 
2857
- #: ../includes/mycred-functions.php:1879 ../includes/mycred-functions.php:1880
2858
  msgid "Displayed Rows"
2859
  msgstr ""
2860
 
2861
- #: ../includes/mycred-functions.php:1887
2862
  msgid "Search Results"
2863
  msgstr ""
2864
 
2865
- #: ../includes/mycred-functions.php:1888
2866
  msgid "My Entire Log"
2867
  msgstr ""
2868
 
2869
- #: ../includes/mycred-functions.php:2518
2870
  msgid "Website Registration"
2871
  msgstr ""
2872
 
2873
- #: ../includes/mycred-functions.php:2519
2874
  msgid "Website Visit"
2875
  msgstr ""
2876
 
2877
- #: ../includes/mycred-functions.php:2520
2878
  msgid "Viewing Content (Member)"
2879
  msgstr ""
2880
 
2881
- #: ../includes/mycred-functions.php:2521
2882
  msgid "Viewing Content (Author)"
2883
  msgstr ""
2884
 
2885
- #: ../includes/mycred-functions.php:2522
2886
  msgid "Logging in"
2887
  msgstr ""
2888
 
2889
- #: ../includes/mycred-functions.php:2523
2890
  msgid "Publishing Content"
2891
  msgstr ""
2892
 
2893
- #: ../includes/mycred-functions.php:2525
2894
  msgid "Unapproved Comment"
2895
  msgstr ""
2896
 
2897
- #: ../includes/mycred-functions.php:2526
2898
  msgid "SPAM Comment"
2899
  msgstr ""
2900
 
2901
- #: ../includes/mycred-functions.php:2527
2902
  msgid "Deleted Comment"
2903
  msgstr ""
2904
 
2905
- #: ../includes/mycred-functions.php:2528
2906
  msgid "Link Click"
2907
  msgstr ""
2908
 
2909
- #: ../includes/mycred-functions.php:2529
2910
  msgid "Watching Video"
2911
  msgstr ""
2912
 
2913
- #: ../includes/mycred-functions.php:2530
2914
  msgid "Visitor Referral"
2915
  msgstr ""
2916
 
2917
- #: ../includes/mycred-functions.php:2531
2918
  msgid "Signup Referral"
2919
  msgstr ""
2920
 
2921
- #: ../includes/mycred-functions.php:2535
2922
  msgid "New Profile Update"
2923
  msgstr ""
2924
 
2925
- #: ../includes/mycred-functions.php:2536
2926
  msgid "Profile Update Removal"
2927
  msgstr ""
2928
 
2929
- #: ../includes/mycred-functions.php:2537
2930
  msgid "Avatar Upload"
2931
  msgstr ""
2932
 
2933
- #: ../includes/mycred-functions.php:2538
2934
  msgid "New Friendship"
2935
  msgstr ""
2936
 
2937
- #: ../includes/mycred-functions.php:2539
2938
  msgid "Ended Friendship"
2939
  msgstr ""
2940
 
2941
- #: ../includes/mycred-functions.php:2540
2942
  msgid "New Profile Comment"
2943
  msgstr ""
2944
 
2945
- #: ../includes/mycred-functions.php:2541
2946
  msgid "Profile Comment Deletion"
2947
  msgstr ""
2948
 
2949
- #: ../includes/mycred-functions.php:2542
2950
  msgid "New Message"
2951
  msgstr ""
2952
 
2953
- #: ../includes/mycred-functions.php:2543
2954
  msgid "Sending Gift"
2955
  msgstr ""
2956
 
2957
- #: ../includes/mycred-functions.php:2544
2958
  msgid "New Group"
2959
  msgstr ""
2960
 
2961
- #: ../includes/mycred-functions.php:2545
2962
  msgid "Deleted Group"
2963
  msgstr ""
2964
 
2965
- #: ../includes/mycred-functions.php:2546
2966
  msgid "New Group Forum Topic"
2967
  msgstr ""
2968
 
2969
- #: ../includes/mycred-functions.php:2547
2970
  msgid "Edit Group Forum Topic"
2971
  msgstr ""
2972
 
2973
- #: ../includes/mycred-functions.php:2548
2974
  msgid "New Group Forum Post"
2975
  msgstr ""
2976
 
2977
- #: ../includes/mycred-functions.php:2549
2978
  msgid "Edit Group Forum Post"
2979
  msgstr ""
2980
 
2981
- #: ../includes/mycred-functions.php:2550
2982
  msgid "Joining Group"
2983
  msgstr ""
2984
 
2985
- #: ../includes/mycred-functions.php:2551
2986
  msgid "Leaving Group"
2987
  msgstr ""
2988
 
2989
- #: ../includes/mycred-functions.php:2552
2990
  msgid "New Group Avatar"
2991
  msgstr ""
2992
 
2993
- #: ../includes/mycred-functions.php:2553
2994
  msgid "New Group Comment"
2995
  msgstr ""
2996
 
2997
- #: ../includes/mycred-functions.php:2563
2998
  msgid "New Link"
2999
  msgstr ""
3000
 
3001
- #: ../includes/mycred-functions.php:2564
3002
  msgid "Link Voting"
3003
  msgstr ""
3004
 
3005
- #: ../includes/mycred-functions.php:2565
3006
  msgid "Link Update"
3007
  msgstr ""
3008
 
3009
- #: ../includes/mycred-functions.php:2569
3010
  msgid "New Forum (bbPress)"
3011
  msgstr ""
3012
 
3013
- #: ../includes/mycred-functions.php:2570
3014
  msgid "New Forum Topic (bbPress)"
3015
  msgstr ""
3016
 
3017
- #: ../includes/mycred-functions.php:2571
3018
  msgid "Favorited Topic (bbPress)"
3019
  msgstr ""
3020
 
3021
- #: ../includes/mycred-functions.php:2572
3022
  msgid "New Topic Reply (bbPress)"
3023
  msgstr ""
3024
 
3025
- #: ../includes/mycred-functions.php:2576
3026
  msgid "Form Submission (Contact Form 7)"
3027
  msgstr ""
3028
 
3029
- #: ../includes/mycred-functions.php:2579
3030
  msgid "Form Submission (Gravity Form)"
3031
  msgstr ""
3032
 
3033
- #: ../includes/mycred-functions.php:2582
3034
  msgid "New Forum Topic (SimplePress)"
3035
  msgstr ""
3036
 
3037
- #: ../includes/mycred-functions.php:2583
3038
  msgid "New Forum Post (SimplePress)"
3039
  msgstr ""
3040
 
3041
- #: ../includes/mycred-functions.php:2592
3042
  msgid "Affiliate Signup (AffiliateWP)"
3043
  msgstr ""
3044
 
3045
- #: ../includes/mycred-functions.php:2593
3046
  msgid "Referred Visit (AffiliateWP)"
3047
  msgstr ""
3048
 
3049
- #: ../includes/mycred-functions.php:2594
3050
  msgid "Affiliate Referral (AffiliateWP)"
3051
  msgstr ""
3052
 
3053
- #: ../includes/mycred-functions.php:2595
3054
  msgid "Referral Refund (AffiliateWP)"
3055
  msgstr ""
3056
 
3057
- #: ../includes/mycred-functions.php:2604
3058
  msgid "Poll Voting"
3059
  msgstr ""
3060
 
3061
- #: ../includes/mycred-functions.php:2607
3062
  msgid "Sending an Invite"
3063
  msgstr ""
3064
 
3065
- #: ../includes/mycred-functions.php:2608
3066
  msgid "Accepting an Invite"
3067
  msgstr ""
3068
 
3069
- #: ../includes/mycred-functions.php:2614
3070
  msgid "Banking Payout"
3071
  msgstr ""
3072
 
3073
- #: ../includes/mycred-functions.php:2617
3074
  msgid "buyCRED Purchase (PayPal Standard)"
3075
  msgstr ""
3076
 
3077
- #: ../includes/mycred-functions.php:2618
3078
  msgid "buyCRED Purchase (Skrill)"
3079
  msgstr ""
3080
 
3081
- #: ../includes/mycred-functions.php:2619
3082
  msgid "buyCRED Purchase (Zombaio)"
3083
  msgstr ""
3084
 
3085
- #: ../includes/mycred-functions.php:2620
3086
  msgid "buyCRED Purchase (NETBilling)"
3087
  msgstr ""
3088
 
3089
- #: ../includes/mycred-functions.php:2621
3090
  msgid "buyCRED Purchase (BitPay)"
3091
  msgstr ""
3092
 
3093
- #: ../includes/mycred-functions.php:2626
3094
  msgid "Coupon Purchase"
3095
  msgstr ""
3096
 
3097
- #: ../includes/mycred-functions.php:2630
3098
  msgid "Store Purchase (WooCommerce)"
3099
  msgstr ""
3100
 
3101
- #: ../includes/mycred-functions.php:2631
3102
  msgid "Store Reward (WooCommerce)"
3103
  msgstr ""
3104
 
3105
- #: ../includes/mycred-functions.php:2632
3106
  msgid "Product Review (WooCommerce)"
3107
  msgstr ""
3108
 
3109
- #: ../includes/mycred-functions.php:2635
3110
  msgid "Store Purchase (MarketPress)"
3111
  msgstr ""
3112
 
3113
- #: ../includes/mycred-functions.php:2636
3114
  msgid "Store Reward (MarketPress)"
3115
  msgstr ""
3116
 
3117
- #: ../includes/mycred-functions.php:2639
3118
  msgid "Store Purchase (WP E-Commerce)"
3119
  msgstr ""
3120
 
3121
- #: ../includes/mycred-functions.php:2645
3122
  msgid "Event Payment (Event Espresso)"
3123
  msgstr ""
3124
 
3125
- #: ../includes/mycred-functions.php:2646
3126
  msgid "Event Sale (Event Espresso)"
3127
  msgstr ""
3128
 
3129
- #: ../includes/mycred-functions.php:2650
3130
  msgid "Event Payment (Events Manager)"
3131
  msgstr ""
3132
 
3133
- #: ../includes/mycred-functions.php:2651
3134
  msgid "Event Sale (Events Manager)"
3135
  msgstr ""
3136
 
3137
- #: ../includes/mycred-functions.php:2655
3138
- msgid "Content Purchase / Sale"
3139
  msgstr ""
3140
 
3141
- #: ../includes/mycred-functions.php:2658 ../addons/transfer/myCRED-addon-transfer.
 
 
 
 
3142
  #: php:51
3143
  msgid "Transfer"
3144
  msgstr ""
3145
 
3146
- #: ../includes/mycred-functions.php:2662
3147
  msgid "Manual Adjustment by Admin"
3148
  msgstr ""
3149
 
3150
- #: ../includes/mycred-functions.php:2777
 
 
 
 
3151
  #, php-format
3152
  msgid "You must exchange at least %s!"
3153
  msgstr ""
3154
 
3155
- #: ../includes/mycred-functions.php:2786 ../addons/transfer/myCRED-addon-transfer.
3156
  #: php:161
3157
  msgid "Insufficient Funds. Please try a lower amount."
3158
  msgstr ""
3159
 
3160
- #: ../includes/mycred-functions.php:2799
3161
  #, php-format
3162
  msgid "Exchange from %s"
3163
  msgstr ""
3164
 
3165
- #: ../includes/mycred-functions.php:2811
3166
  #, php-format
3167
  msgid "Exchange to %s"
3168
  msgstr ""
3169
 
3170
- #: ../includes/mycred-functions.php:2819
3171
  #, php-format
3172
  msgid "You have successfully exchanged %s into %s."
3173
  msgstr ""
3174
 
3175
- #: ../includes/mycred-functions.php:2851
3176
  msgid "per day"
3177
  msgstr ""
3178
 
3179
- #: ../includes/mycred-functions.php:2853
3180
  msgid "per week"
3181
  msgstr ""
3182
 
3183
- #: ../includes/mycred-functions.php:2855
3184
  msgid "per month"
3185
  msgstr ""
3186
 
3187
- #: ../includes/mycred-functions.php:2857
3188
  msgid "in total"
3189
  msgstr ""
3190
 
3191
- #: ../includes/mycred-functions.php:2859 ../includes/mycred-functions.php:2863
3192
  #, php-format
3193
  msgid "Maximum once"
3194
  msgid_plural "Maximum %d times"
3195
  msgstr[0] ""
3196
  msgstr[1] ""
3197
 
3198
- #: ../includes/importers/mycred-cubepoints.php:276
3199
  msgid "No balances were imported."
3200
  msgstr ""
3201
 
3202
- #: ../includes/importers/mycred-cubepoints.php:276
3203
  msgid "No log entries were imported!"
3204
  msgstr ""
3205
 
3206
- #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-
3207
- #: log-entries.php:138
3208
  #, php-format
3209
  msgid ""
3210
  "Import complete - A total of <strong>%d</strong> entries were successfully "
3211
  "imported. <strong>%d</strong> was skipped."
3212
  msgstr ""
3213
 
3214
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-
3215
- #: balances.php:181 ../includes/importers/mycred-log-entries.php:148 ..
3216
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:102
3217
  msgid "View Log"
3218
  msgstr ""
3219
 
3220
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-
3221
- #: balances.php:181 ../includes/importers/mycred-log-entries.php:148
3222
  msgid "Import More"
3223
  msgstr ""
3224
 
3225
- #: ../includes/importers/mycred-cubepoints.php:306
3226
  msgid "No CubePoints log."
3227
  msgstr ""
3228
 
3229
- #: ../includes/importers/mycred-cubepoints.php:317
3230
  msgid "Import CubePoints Log"
3231
  msgstr ""
3232
 
3233
- #: ../includes/importers/mycred-cubepoints.php:334
3234
  msgid "Select what to import"
3235
  msgstr ""
3236
 
3237
- #: ../includes/importers/mycred-cubepoints.php:335
3238
  msgid "Log Entries Only"
3239
  msgstr ""
3240
 
3241
- #: ../includes/importers/mycred-cubepoints.php:336
3242
  msgid "CubePoints Balances Only"
3243
  msgstr ""
3244
 
3245
- #: ../includes/importers/mycred-cubepoints.php:337
3246
  msgid "Log Entries and Balances"
3247
  msgstr ""
3248
 
3249
- #: ../includes/importers/mycred-cubepoints.php:351
3250
  msgid "Import"
3251
  msgstr ""
3252
 
3253
- #: ../includes/importers/mycred-cubepoints.php:360
3254
  msgid ""
3255
  "Warning! Importing CubePoints balances will replace your users myCRED "
3256
  "balance!"
3257
  msgstr ""
3258
 
3259
- #: ../includes/importers/mycred-cubepoints.php:378
3260
  msgid "Import Log"
3261
  msgstr ""
3262
 
3263
- #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-
3264
- #: balances.php:159 ../includes/importers/mycred-balances.php:198 ..
3265
- #: includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-
3266
- #: entries.php:81 ../includes/importers/mycred-log-entries.php:126 ..
3267
- #: includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-
3268
- #: log-entries.php:180
3269
  msgid "Sorry, there has been an error."
3270
  msgstr ""
3271
 
3272
- #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-
3273
- #: entries.php:82
3274
  msgid "The file does not exist, please try again."
3275
  msgstr ""
3276
 
3277
- #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-
3278
- #: entries.php:127
3279
  msgid "The CSV is invalid."
3280
  msgstr ""
3281
 
3282
- #: ../includes/importers/mycred-balances.php:171
3283
  #, php-format
3284
  msgid ""
3285
  "Import complete - A total of <strong>%d</strong> balances were successfully "
3286
  "imported. <strong>%d</strong> was skipped."
3287
  msgstr ""
3288
 
3289
- #: ../includes/importers/mycred-balances.php:227
3290
  msgid "Import Balances"
3291
  msgstr ""
3292
 
3293
- #: ../includes/importers/mycred-balances.php:244
3294
  msgid "Import balances from a CSV file."
3295
  msgstr ""
3296
 
3297
- #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-
3298
- #: entries.php:219
3299
  msgid ""
3300
  "Before you can upload your import file, you will need to fix the following "
3301
  "error:"
3302
  msgstr ""
3303
 
3304
- #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-
3305
- #: entries.php:228
3306
  msgid "Choose a file from your computer:"
3307
  msgstr ""
3308
 
3309
- #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-
3310
- #: entries.php:234
3311
  #, php-format
3312
  msgid "Maximum size: %s"
3313
  msgstr ""
3314
 
3315
- #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-
3316
- #: entries.php:239
3317
  msgid "OR enter path to file:"
3318
  msgstr ""
3319
 
3320
- #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-
3321
- #: entries.php:246
3322
  msgid "Delimiter"
3323
  msgstr ""
3324
 
3325
- #: ../includes/importers/mycred-balances.php:283
3326
  msgid "Method"
3327
  msgstr ""
3328
 
3329
- #: ../includes/importers/mycred-balances.php:285
3330
  msgid "Replace current balances with the amount in this CSV file"
3331
  msgstr ""
3332
 
3333
- #: ../includes/importers/mycred-balances.php:286
3334
  msgid "Adjust current balances according to the amount in this CSV file"
3335
  msgstr ""
3336
 
3337
- #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
3338
- #: entries.php:252
3339
  msgid "Upload file and import"
3340
  msgstr ""
3341
 
3342
- #: ../includes/importers/mycred-log-entries.php:194
3343
  msgid "Import Log Entries"
3344
  msgstr ""
3345
 
3346
- #: ../includes/importers/mycred-log-entries.php:211
3347
  msgid "Import log entries from a CSV file."
3348
  msgstr ""
3349
 
3350
- #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
3351
- #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
3352
  msgid "Banking"
3353
  msgstr ""
3354
 
3355
- #: ../addons/banking/myCRED-addon-banking.php:158
3356
  msgid "Central Banking"
3357
  msgstr ""
3358
 
3359
- #: ../addons/banking/myCRED-addon-banking.php:159
3360
  #, php-format
3361
  msgid ""
3362
  "Instead of creating %_plural% out of thin-air, all payouts are made from a "
@@ -3364,40 +3372,40 @@ msgid ""
3364
  "deposited back into this account."
3365
  msgstr ""
3366
 
3367
- #: ../addons/banking/myCRED-addon-banking.php:165 ..
3368
  #: addons/banking/services/mycred-bank-service-interest.php:512
3369
  msgid "Compound Interest"
3370
  msgstr ""
3371
 
3372
- #: ../addons/banking/myCRED-addon-banking.php:166
3373
  #, php-format
3374
  msgid "Apply a positive or negative interest rate on your users %_plural% balances."
3375
  msgstr ""
3376
 
3377
- #: ../addons/banking/myCRED-addon-banking.php:172
3378
  msgid "Recurring Payouts"
3379
  msgstr ""
3380
 
3381
- #: ../addons/banking/myCRED-addon-banking.php:173
3382
  #, php-format
3383
  msgid "Setup mass %_singular% payouts for your users."
3384
  msgstr ""
3385
 
3386
- #: ../addons/banking/myCRED-addon-banking.php:225
3387
  #, php-format
3388
  msgid "%s Banking"
3389
  msgstr ""
3390
 
3391
- #: ../addons/banking/myCRED-addon-banking.php:228
3392
  #, php-format
3393
  msgid "Your banking setup for %plural%."
3394
  msgstr ""
3395
 
3396
- #: ../addons/banking/myCRED-addon-banking.php:231
3397
  msgid "WP-Cron deactivation detected!"
3398
  msgstr ""
3399
 
3400
- #: ../addons/banking/myCRED-addon-banking.php:232
3401
  msgid "Warning! This add-on requires WP - Cron to work."
3402
  msgstr ""
3403
 
@@ -3587,8 +3595,8 @@ msgid "This user role is excluded from receiving interest on this balance."
3587
  msgstr ""
3588
 
3589
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/sell-
3590
- #: content/myCRED-addon-sell-content.php:114 ../addons/buy-creds/myCRED-addon-buy-
3591
- #: creds.php:837
3592
  msgid "Leave empty to use the default value."
3593
  msgstr ""
3594
 
@@ -3622,15 +3630,15 @@ msgstr ""
3622
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ..
3623
  #: addons/gateway/event-booking/mycred-eventsmanager.php:540 ..
3624
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/sell-
3625
- #: content/myCRED-addon-sell-content.php:423 ../addons/buy-creds/myCRED-addon-buy-
3626
- #: creds.php:579
3627
  msgid "Payments"
3628
  msgstr ""
3629
 
3630
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
3631
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35 ..
3632
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/buy-
3633
- #: creds/myCRED-addon-buy-creds.php:1686
3634
  msgid "Pay Now"
3635
  msgstr ""
3636
 
@@ -3663,7 +3671,7 @@ msgid "Deactivate %s"
3663
  msgstr ""
3664
 
3665
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:367 ../addons/buy-
3666
- #: creds/myCRED-addon-buy-creds.php:1085
3667
  msgid "Gateway Settings"
3668
  msgstr ""
3669
 
@@ -3704,8 +3712,8 @@ msgstr ""
3704
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ..
3705
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
3706
  #: addons/transfer/includes/mycred-transfer-widgets.php:132 ../addons/sell-
3707
- #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
3708
- #: sell-content.php:686
3709
  msgid "Button Label"
3710
  msgstr ""
3711
 
@@ -3718,8 +3726,8 @@ msgstr ""
3718
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ..
3719
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:139 ..
3720
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ../addons/sell-
3721
- #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
3722
- #: sell-content.php:682
3723
  msgid "Price"
3724
  msgstr ""
3725
 
@@ -3756,7 +3764,7 @@ msgid "Option to share sales with the product owner. Use zero to disable."
3756
  msgstr ""
3757
 
3758
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
3759
- #: content/myCRED-addon-sell-content.php:473
3760
  msgid "Templates"
3761
  msgstr ""
3762
 
@@ -4321,97 +4329,97 @@ msgstr ""
4321
  msgid "User Email (user_email)"
4322
  msgstr ""
4323
 
4324
- #: ../addons/transfer/myCRED-addon-transfer.php:216
4325
  msgid "Select the point types that users can transfer."
4326
  msgstr ""
4327
 
4328
- #: ../addons/transfer/myCRED-addon-transfer.php:224
4329
  msgid "Log template for sending"
4330
  msgstr ""
4331
 
4332
- #: ../addons/transfer/myCRED-addon-transfer.php:231
4333
  msgid "Log template for receiving"
4334
  msgstr ""
4335
 
4336
- #: ../addons/transfer/myCRED-addon-transfer.php:238
4337
  msgid "Autofill Recipient"
4338
  msgstr ""
4339
 
4340
- #: ../addons/transfer/myCRED-addon-transfer.php:250
4341
  msgid "Select what user details recipients should be autofilled by."
4342
  msgstr ""
4343
 
4344
- #: ../addons/transfer/myCRED-addon-transfer.php:253
4345
  msgid "Reload"
4346
  msgstr ""
4347
 
4348
- #: ../addons/transfer/myCRED-addon-transfer.php:256
4349
  msgid "Reload page on successful transfers."
4350
  msgstr ""
4351
 
4352
- #: ../addons/transfer/myCRED-addon-transfer.php:276
4353
  msgid "Limit Amount"
4354
  msgstr ""
4355
 
4356
- #: ../addons/transfer/myCRED-addon-transfer.php:280
4357
  msgid "Form Templates"
4358
  msgstr ""
4359
 
4360
- #: ../addons/transfer/myCRED-addon-transfer.php:283
4361
  msgid "Not logged in Template"
4362
  msgstr ""
4363
 
4364
- #: ../addons/transfer/myCRED-addon-transfer.php:285
4365
  msgid ""
4366
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
4367
  "elements allowed!"
4368
  msgstr ""
4369
 
4370
- #: ../addons/transfer/myCRED-addon-transfer.php:289
4371
  msgid "Balance Template"
4372
  msgstr ""
4373
 
4374
- #: ../addons/transfer/myCRED-addon-transfer.php:291
4375
  msgid ""
4376
  "Template to use when displaying the users balance (if included). No HTML "
4377
  "elements allowed!"
4378
  msgstr ""
4379
 
4380
- #: ../addons/transfer/myCRED-addon-transfer.php:295
4381
  msgid "Limit Template"
4382
  msgstr ""
4383
 
4384
- #: ../addons/transfer/myCRED-addon-transfer.php:297
4385
  msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
4386
  msgstr ""
4387
 
4388
- #: ../addons/transfer/myCRED-addon-transfer.php:301
4389
  msgid "Button Template"
4390
  msgstr ""
4391
 
4392
- #: ../addons/transfer/myCRED-addon-transfer.php:303
4393
  msgid "Send Transfer button template. No HTML elements allowed!"
4394
  msgstr ""
4395
 
4396
- #: ../addons/transfer/myCRED-addon-transfer.php:306
4397
  msgid "Error Messages"
4398
  msgstr ""
4399
 
4400
- #: ../addons/transfer/myCRED-addon-transfer.php:309
4401
  msgid "Balance to low to send."
4402
  msgstr ""
4403
 
4404
- #: ../addons/transfer/myCRED-addon-transfer.php:311
4405
  msgid ""
4406
  "Text to show when a users balance is to low for transfers. Leave empty to "
4407
  "hide. No HTML elements allowed!"
4408
  msgstr ""
4409
 
4410
- #: ../addons/transfer/myCRED-addon-transfer.php:315
4411
  msgid "Transfer Limit Reached."
4412
  msgstr ""
4413
 
4414
- #: ../addons/transfer/myCRED-addon-transfer.php:317
4415
  msgid ""
4416
  "Text to show when a user has reached their transfer limit (if used). Leave "
4417
  "empty to hide. No HTML elements allowed!"
@@ -4438,24 +4446,24 @@ msgstr ""
4438
  msgid "Show users limit"
4439
  msgstr ""
4440
 
4441
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:130
4442
  msgid "username"
4443
  msgstr ""
4444
 
4445
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:133
4446
  msgid "email"
4447
  msgstr ""
4448
 
4449
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:135
4450
  #, php-format
4451
  msgid "recipients %s"
4452
  msgstr ""
4453
 
4454
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
4455
  msgid "To:"
4456
  msgstr ""
4457
 
4458
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:231
4459
  msgid "Amount:"
4460
  msgstr ""
4461
 
@@ -4466,331 +4474,331 @@ msgid ""
4466
  msgstr ""
4467
 
4468
  #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
4469
- #: php:213 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-
4470
- #: addon-ranks.php:452 ../addons/ranks/myCRED-addon-ranks.php:458 ..
4471
- #: addons/ranks/myCRED-addon-ranks.php:834 ../addons/ranks/myCRED-addon-ranks.
4472
- #: php:1311 ../addons/ranks/myCRED-addon-ranks.php:1602
4473
  msgid "Ranks"
4474
  msgstr ""
4475
 
4476
- #: ../addons/ranks/myCRED-addon-ranks.php:424
4477
  msgid "Warning! All ranks will be deleted! This can not be undone!"
4478
  msgstr ""
4479
 
4480
- #: ../addons/ranks/myCRED-addon-ranks.php:425
4481
  msgid "Are you sure you want to re-assign user ranks?"
4482
  msgstr ""
4483
 
4484
- #: ../addons/ranks/myCRED-addon-ranks.php:441
4485
  #, php-format
4486
  msgid "Ranks for %s"
4487
  msgstr ""
4488
 
4489
- #: ../addons/ranks/myCRED-addon-ranks.php:447 ../addons/ranks/myCRED-addon-ranks.
4490
- #: php:834
4491
  msgid "Rank"
4492
  msgstr ""
4493
 
4494
- #: ../addons/ranks/myCRED-addon-ranks.php:448 ../addons/email-notices/myCRED-
4495
- #: addon-email-notices.php:167 ../addons/badges/myCRED-addon-badges.php:385 ..
4496
  #: addons/buy-creds/myCRED-addon-buy-creds.php:279 ../addons/buy-creds/myCRED-
4497
  #: addon-buy-creds.php:280
4498
  msgid "Add New"
4499
  msgstr ""
4500
 
4501
- #: ../addons/ranks/myCRED-addon-ranks.php:449
4502
  msgid "Add New Rank"
4503
  msgstr ""
4504
 
4505
- #: ../addons/ranks/myCRED-addon-ranks.php:450
4506
  msgid "Edit Rank"
4507
  msgstr ""
4508
 
4509
- #: ../addons/ranks/myCRED-addon-ranks.php:451
4510
  msgid "New Rank"
4511
  msgstr ""
4512
 
4513
- #: ../addons/ranks/myCRED-addon-ranks.php:453
4514
  msgid "View Rank"
4515
  msgstr ""
4516
 
4517
- #: ../addons/ranks/myCRED-addon-ranks.php:454
4518
  msgid "Search Ranks"
4519
  msgstr ""
4520
 
4521
- #: ../addons/ranks/myCRED-addon-ranks.php:455
4522
  msgid "No ranks found"
4523
  msgstr ""
4524
 
4525
- #: ../addons/ranks/myCRED-addon-ranks.php:456
4526
  msgid "No ranks found in Trash"
4527
  msgstr ""
4528
 
4529
- #: ../addons/ranks/myCRED-addon-ranks.php:541
4530
  #, php-format
4531
  msgid "Completed - Total of %d users effected"
4532
  msgstr ""
4533
 
4534
- #: ../addons/ranks/myCRED-addon-ranks.php:978 ../addons/ranks/myCRED-addon-ranks.
4535
- #: php:979 ../addons/ranks/myCRED-addon-ranks.php:980 ../addons/ranks/myCRED-
4536
- #: addon-ranks.php:981 ../addons/ranks/myCRED-addon-ranks.php:982 ..
4537
- #: addons/ranks/myCRED-addon-ranks.php:983 ../addons/ranks/myCRED-addon-ranks.
4538
- #: php:986 ../addons/ranks/myCRED-addon-ranks.php:987
4539
  msgid "Rank Updated."
4540
  msgstr ""
4541
 
4542
- #: ../addons/ranks/myCRED-addon-ranks.php:984
4543
  msgid "Rank Enabled"
4544
  msgstr ""
4545
 
4546
- #: ../addons/ranks/myCRED-addon-ranks.php:985
4547
  msgid "Rank Saved"
4548
  msgstr ""
4549
 
4550
- #: ../addons/ranks/myCRED-addon-ranks.php:1024
4551
  #, php-format
4552
  msgid "<strong>Rank:</strong> %s"
4553
  msgstr ""
4554
 
4555
- #: ../addons/ranks/myCRED-addon-ranks.php:1040 ../addons/ranks/myCRED-addon-ranks.
4556
- #: php:1123
4557
  msgid "Rank Title"
4558
  msgstr ""
4559
 
4560
- #: ../addons/ranks/myCRED-addon-ranks.php:1041
4561
  msgid "Logo"
4562
  msgstr ""
4563
 
4564
- #: ../addons/ranks/myCRED-addon-ranks.php:1042
4565
  msgid "Requirement"
4566
  msgstr ""
4567
 
4568
- #: ../addons/ranks/myCRED-addon-ranks.php:1068
4569
  msgid "No Logo Set"
4570
  msgstr ""
4571
 
4572
- #: ../addons/ranks/myCRED-addon-ranks.php:1083 ../addons/ranks/myCRED-addon-ranks.
4573
- #: php:1088
4574
  msgid "Any Value"
4575
  msgstr ""
4576
 
4577
- #: ../addons/ranks/myCRED-addon-ranks.php:1085 ../addons/buy-creds/myCRED-addon-
4578
- #: buy-creds.php:643
4579
  #, php-format
4580
  msgid "Minimum %plural%"
4581
  msgstr ""
4582
 
4583
- #: ../addons/ranks/myCRED-addon-ranks.php:1090
4584
  #, php-format
4585
  msgid "Maximum %plural%"
4586
  msgstr ""
4587
 
4588
- #: ../addons/ranks/myCRED-addon-ranks.php:1138
4589
  msgid "Rank Settings"
4590
  msgstr ""
4591
 
4592
- #: ../addons/ranks/myCRED-addon-ranks.php:1192
4593
  #, php-format
4594
  msgid "Minimum %plural% to reach this rank"
4595
  msgstr ""
4596
 
4597
- #: ../addons/ranks/myCRED-addon-ranks.php:1196
4598
  #, php-format
4599
  msgid "Maximum %plural% to be included in this rank"
4600
  msgstr ""
4601
 
4602
- #: ../addons/ranks/myCRED-addon-ranks.php:1214
4603
  msgid "All Published Ranks"
4604
  msgstr ""
4605
 
4606
- #: ../addons/ranks/myCRED-addon-ranks.php:1224 ../addons/ranks/myCRED-addon-ranks.
4607
- #: php:1226
4608
  msgid "Not Set"
4609
  msgstr ""
4610
 
4611
- #: ../addons/ranks/myCRED-addon-ranks.php:1232
4612
  msgid "No Ranks found"
4613
  msgstr ""
4614
 
4615
- #: ../addons/ranks/myCRED-addon-ranks.php:1316
4616
  msgid "Rank Features"
4617
  msgstr ""
4618
 
4619
- #: ../addons/ranks/myCRED-addon-ranks.php:1320
4620
  #, php-format
4621
  msgid "%plural% requirement"
4622
  msgstr ""
4623
 
4624
- #: ../addons/ranks/myCRED-addon-ranks.php:1321
4625
  msgid "Featured Image (Logo)"
4626
  msgstr ""
4627
 
4628
- #: ../addons/ranks/myCRED-addon-ranks.php:1323
4629
  msgid "Content"
4630
  msgstr ""
4631
 
4632
- #: ../addons/ranks/myCRED-addon-ranks.php:1325
4633
  msgid "Excerpt"
4634
  msgstr ""
4635
 
4636
- #: ../addons/ranks/myCRED-addon-ranks.php:1327
4637
  msgid "Comments"
4638
  msgstr ""
4639
 
4640
- #: ../addons/ranks/myCRED-addon-ranks.php:1329
4641
  msgid "Page Attributes"
4642
  msgstr ""
4643
 
4644
- #: ../addons/ranks/myCRED-addon-ranks.php:1331
4645
  msgid "Custom Fields"
4646
  msgstr ""
4647
 
4648
- #: ../addons/ranks/myCRED-addon-ranks.php:1335
4649
  msgid "Public"
4650
  msgstr ""
4651
 
4652
- #: ../addons/ranks/myCRED-addon-ranks.php:1339
4653
  msgid ""
4654
  "If you want to create a template archive for each rank, you must select to "
4655
  "have ranks public. Defaults to disabled."
4656
  msgstr ""
4657
 
4658
- #: ../addons/ranks/myCRED-addon-ranks.php:1342
4659
  msgid "Archive URL"
4660
  msgstr ""
4661
 
4662
- #: ../addons/ranks/myCRED-addon-ranks.php:1346
4663
  msgid "Ignored if Ranks are not public"
4664
  msgstr ""
4665
 
4666
- #: ../addons/ranks/myCRED-addon-ranks.php:1349
4667
  msgid "Display Order"
4668
  msgstr ""
4669
 
4670
- #: ../addons/ranks/myCRED-addon-ranks.php:1357
4671
  msgid "Ascending - Lowest rank to highest"
4672
  msgstr ""
4673
 
4674
- #: ../addons/ranks/myCRED-addon-ranks.php:1358
4675
  msgid "Descending - Highest rank to lowest"
4676
  msgstr ""
4677
 
4678
- #: ../addons/ranks/myCRED-addon-ranks.php:1369
4679
  msgid ""
4680
  "Select in what order ranks should be displayed in your admin area and/or "
4681
  "front if ranks are \"Public\""
4682
  msgstr ""
4683
 
4684
- #: ../addons/ranks/myCRED-addon-ranks.php:1375
4685
  msgid "Rank Basis"
4686
  msgstr ""
4687
 
4688
- #: ../addons/ranks/myCRED-addon-ranks.php:1378
4689
  msgid "Users are ranked according to their current balance."
4690
  msgstr ""
4691
 
4692
- #: ../addons/ranks/myCRED-addon-ranks.php:1381
4693
  msgid ""
4694
  "Users are ranked according to the total amount of %_plural% they have "
4695
  "accumulated."
4696
  msgstr ""
4697
 
4698
- #: ../addons/ranks/myCRED-addon-ranks.php:1385 ../addons/ranks/myCRED-addon-ranks.
4699
- #: php:1390
4700
  msgid "Calculate Totals"
4701
  msgstr ""
4702
 
4703
- #: ../addons/ranks/myCRED-addon-ranks.php:1388
4704
  msgid ""
4705
  "Use this button to calculate or recalculate your users totals. If not used, "
4706
  "the users current balance will be used as a starting point."
4707
  msgstr ""
4708
 
4709
- #: ../addons/ranks/myCRED-addon-ranks.php:1388
4710
  msgid ""
4711
  "Once a users total has been calculated, they will be assigned to their "
4712
  "appropriate roles. For this reason, it is highly recommended that you first "
4713
  "setup your ranks!"
4714
  msgstr ""
4715
 
4716
- #: ../addons/ranks/myCRED-addon-ranks.php:1389
4717
  msgid ""
4718
  "Depending on your log size and number of users this process may take a while."
4719
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
4720
  "this is completed!"
4721
  msgstr ""
4722
 
4723
- #: ../addons/ranks/myCRED-addon-ranks.php:1407
4724
  msgid "Include in Profile Header."
4725
  msgstr ""
4726
 
4727
- #: ../addons/ranks/myCRED-addon-ranks.php:1409
4728
  msgid "Include under the \"Profile\" tab and Profile Header."
4729
  msgstr ""
4730
 
4731
- #: ../addons/ranks/myCRED-addon-ranks.php:1413
4732
  msgid "Rank in BuddyPress"
4733
  msgstr ""
4734
 
4735
- #: ../addons/ranks/myCRED-addon-ranks.php:1430 ../addons/ranks/myCRED-addon-ranks.
4736
- #: php:1475
4737
  #, php-format
4738
  msgid ""
4739
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
4740
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
4741
  msgstr ""
4742
 
4743
- #: ../addons/ranks/myCRED-addon-ranks.php:1452
4744
  msgid "Include in Topic Replies"
4745
  msgstr ""
4746
 
4747
- #: ../addons/ranks/myCRED-addon-ranks.php:1453 ../addons/badges/myCRED-addon-
4748
- #: badges.php:1002
4749
  msgid "Include in Profile"
4750
  msgstr ""
4751
 
4752
- #: ../addons/ranks/myCRED-addon-ranks.php:1454
4753
  msgid "Include in Topic Replies and Profile"
4754
  msgstr ""
4755
 
4756
- #: ../addons/ranks/myCRED-addon-ranks.php:1458
4757
  msgid "Rank in bbPress"
4758
  msgstr ""
4759
 
4760
- #: ../addons/ranks/myCRED-addon-ranks.php:1537
4761
  msgid "Script Communication Error"
4762
  msgstr ""
4763
 
4764
- #: ../addons/ranks/myCRED-addon-ranks.php:1609
4765
  msgid "No. of ranks"
4766
  msgstr ""
4767
 
4768
- #: ../addons/ranks/myCRED-addon-ranks.php:1614
4769
  msgid "Remove All Ranks"
4770
  msgstr ""
4771
 
4772
- #: ../addons/ranks/myCRED-addon-ranks.php:1614
4773
  msgid "Assign Ranks to Users"
4774
  msgstr ""
4775
 
4776
- #: ../addons/ranks/includes/mycred-rank-functions.php:257
4777
  msgid "mycred_get_users_rank() : Missing required user id"
4778
  msgstr ""
4779
 
4780
- #: ../addons/ranks/includes/mycred-rank-functions.php:270
4781
  msgid "no rank"
4782
  msgstr ""
4783
 
4784
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:115 ..
4785
- #: addons/ranks/includes/mycred-rank-shortcodes.php:210
4786
  msgid "No users found with this rank"
4787
  msgstr ""
4788
 
4789
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122
4790
  msgid "Rank ID is required!"
4791
  msgstr ""
4792
 
4793
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:145
4794
  msgid "Rank not found. Please check the id and try again."
4795
  msgstr ""
4796
 
@@ -4798,469 +4806,469 @@ msgstr ""
4798
  msgid "Notify your users when their balances changes."
4799
  msgstr ""
4800
 
4801
- #: ../addons/notifications/myCRED-addon-notifications.php:193
4802
  msgid "Notifications"
4803
  msgstr ""
4804
 
4805
- #: ../addons/notifications/myCRED-addon-notifications.php:195
4806
  msgid "Styling"
4807
  msgstr ""
4808
 
4809
- #: ../addons/notifications/myCRED-addon-notifications.php:198
4810
  msgid "Use the included CSS Styling for notifications."
4811
  msgstr ""
4812
 
4813
- #: ../addons/notifications/myCRED-addon-notifications.php:205
4814
  #, php-format
4815
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
4816
  msgstr ""
4817
 
4818
- #: ../addons/notifications/myCRED-addon-notifications.php:205
4819
  msgid "Restore to default"
4820
  msgstr ""
4821
 
4822
- #: ../addons/notifications/myCRED-addon-notifications.php:208
4823
  msgid "Transient Lifespan"
4824
  msgstr ""
4825
 
4826
- #: ../addons/notifications/myCRED-addon-notifications.php:212
4827
  msgid ""
4828
  "The number of days a users notification is saved before being automatically "
4829
  "deleted."
4830
  msgstr ""
4831
 
4832
- #: ../addons/notifications/myCRED-addon-notifications.php:215
4833
  msgid "Duration"
4834
  msgstr ""
4835
 
4836
- #: ../addons/notifications/myCRED-addon-notifications.php:219
4837
  msgid ""
4838
  "Number of seconds before a notice is automatically removed after being shown "
4839
  "to user. Use zero to disable."
4840
  msgstr ""
4841
 
4842
- #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ../addons/email-
4843
- #: notices/myCRED-addon-email-notices.php:171 ../addons/email-notices/myCRED-
4844
- #: addon-email-notices.php:177 ../addons/email-notices/myCRED-addon-email-notices.
4845
- #: php:283 ../addons/coupons/myCRED-addon-coupons.php:105
4846
  msgid "Email Notices"
4847
  msgstr ""
4848
 
4849
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
4850
- #: notices/myCRED-addon-email-notices.php:1270
4851
  msgid "Email Notice"
4852
  msgstr ""
4853
 
4854
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
4855
  msgid "Add New Notice"
4856
  msgstr ""
4857
 
4858
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
4859
  msgid "Edit Notice"
4860
  msgstr ""
4861
 
4862
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
4863
  msgid "New Notice"
4864
  msgstr ""
4865
 
4866
- #: ../addons/email-notices/myCRED-addon-email-notices.php:172
4867
  msgid "View Notice"
4868
  msgstr ""
4869
 
4870
- #: ../addons/email-notices/myCRED-addon-email-notices.php:173
4871
  msgid "Search Email Notices"
4872
  msgstr ""
4873
 
4874
- #: ../addons/email-notices/myCRED-addon-email-notices.php:174
4875
  msgid "No email notices found"
4876
  msgstr ""
4877
 
4878
- #: ../addons/email-notices/myCRED-addon-email-notices.php:175
4879
  msgid "No email notices found in Trash"
4880
  msgstr ""
4881
 
4882
- #: ../addons/email-notices/myCRED-addon-email-notices.php:201
4883
  msgid "users balance changes"
4884
  msgstr ""
4885
 
4886
- #: ../addons/email-notices/myCRED-addon-email-notices.php:202
4887
  msgid "user gains %_plural%"
4888
  msgstr ""
4889
 
4890
- #: ../addons/email-notices/myCRED-addon-email-notices.php:203
4891
  msgid "user lose %_plural%"
4892
  msgstr ""
4893
 
4894
- #: ../addons/email-notices/myCRED-addon-email-notices.php:204
4895
  msgid "users balance reaches zero"
4896
  msgstr ""
4897
 
4898
- #: ../addons/email-notices/myCRED-addon-email-notices.php:205
4899
  msgid "users balance goes minus"
4900
  msgstr ""
4901
 
4902
- #: ../addons/email-notices/myCRED-addon-email-notices.php:211
4903
  msgid "Badge Add-on"
4904
  msgstr ""
4905
 
4906
- #: ../addons/email-notices/myCRED-addon-email-notices.php:212
4907
  msgid "user gains a badge"
4908
  msgstr ""
4909
 
4910
- #: ../addons/email-notices/myCRED-addon-email-notices.php:219
4911
  msgid "Sell Content Add-on"
4912
  msgstr ""
4913
 
4914
- #: ../addons/email-notices/myCRED-addon-email-notices.php:220
4915
  msgid "user buys content"
4916
  msgstr ""
4917
 
4918
- #: ../addons/email-notices/myCRED-addon-email-notices.php:221
4919
  msgid "authors content gets sold"
4920
  msgstr ""
4921
 
4922
- #: ../addons/email-notices/myCRED-addon-email-notices.php:228
4923
  msgid "buyCREDs Add-on"
4924
  msgstr ""
4925
 
4926
- #: ../addons/email-notices/myCRED-addon-email-notices.php:229
4927
  msgid "user buys %_plural%"
4928
  msgstr ""
4929
 
4930
- #: ../addons/email-notices/myCRED-addon-email-notices.php:236
4931
  msgid "Transfer Add-on"
4932
  msgstr ""
4933
 
4934
- #: ../addons/email-notices/myCRED-addon-email-notices.php:237
4935
  msgid "user sends %_plural%"
4936
  msgstr ""
4937
 
4938
- #: ../addons/email-notices/myCRED-addon-email-notices.php:238
4939
  msgid "user receives %_plural%"
4940
  msgstr ""
4941
 
4942
- #: ../addons/email-notices/myCRED-addon-email-notices.php:245
4943
  msgid "Ranks Add-on"
4944
  msgstr ""
4945
 
4946
- #: ../addons/email-notices/myCRED-addon-email-notices.php:246
4947
  msgid "user is demoted"
4948
  msgstr ""
4949
 
4950
- #: ../addons/email-notices/myCRED-addon-email-notices.php:247
4951
  msgid "user is promoted"
4952
  msgstr ""
4953
 
4954
- #: ../addons/email-notices/myCRED-addon-email-notices.php:285
4955
  msgid ""
4956
  "Settings that apply to all email notices and can not be overridden for "
4957
  "individual emails."
4958
  msgstr ""
4959
 
4960
- #: ../addons/email-notices/myCRED-addon-email-notices.php:286
4961
  msgid "Email Format"
4962
  msgstr ""
4963
 
4964
- #: ../addons/email-notices/myCRED-addon-email-notices.php:290
4965
  msgid "Plain text emails only."
4966
  msgstr ""
4967
 
4968
- #: ../addons/email-notices/myCRED-addon-email-notices.php:294
4969
  msgid "HTML or Plain text emails."
4970
  msgstr ""
4971
 
4972
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297
4973
  msgid "Filters"
4974
  msgstr ""
4975
 
4976
- #: ../addons/email-notices/myCRED-addon-email-notices.php:301
4977
  msgid ""
4978
  "Allow WordPress and Third Party Plugins to filter the email subject before "
4979
  "an email is sent."
4980
  msgstr ""
4981
 
4982
- #: ../addons/email-notices/myCRED-addon-email-notices.php:305
4983
  msgid ""
4984
  "Allow WordPress and Third Party Plugins to filter the email content before "
4985
  "an email is sent."
4986
  msgstr ""
4987
 
4988
- #: ../addons/email-notices/myCRED-addon-email-notices.php:310 ../addons/email-
4989
- #: notices/myCRED-addon-email-notices.php:316
4990
  msgid "Email Schedule"
4991
  msgstr ""
4992
 
4993
- #: ../addons/email-notices/myCRED-addon-email-notices.php:312
4994
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
4995
  msgstr ""
4996
 
4997
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
4998
  msgid "Send emails immediately"
4999
  msgstr ""
5000
 
5001
- #: ../addons/email-notices/myCRED-addon-email-notices.php:324
5002
  msgid "Send emails once an hour"
5003
  msgstr ""
5004
 
5005
- #: ../addons/email-notices/myCRED-addon-email-notices.php:328
5006
  msgid "Send emails once a day"
5007
  msgstr ""
5008
 
5009
- #: ../addons/email-notices/myCRED-addon-email-notices.php:331
5010
  msgid "Subscriptions"
5011
  msgstr ""
5012
 
5013
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333
5014
  #, php-format
5015
  msgid ""
5016
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
5017
  "updates."
5018
  msgstr ""
5019
 
5020
- #: ../addons/email-notices/myCRED-addon-email-notices.php:338
5021
  msgid "SMTP Override"
5022
  msgstr ""
5023
 
5024
- #: ../addons/email-notices/myCRED-addon-email-notices.php:342
5025
  msgid ""
5026
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
5027
  "use a SMTP plugin for emails."
5028
  msgstr ""
5029
 
5030
- #: ../addons/email-notices/myCRED-addon-email-notices.php:345
5031
  msgid ""
5032
  "Default email settings. These settings can be individually overridden when "
5033
  "editing emails."
5034
  msgstr ""
5035
 
5036
- #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
5037
- #: notices/myCRED-addon-email-notices.php:900
5038
  msgid "Email Settings"
5039
  msgstr ""
5040
 
5041
- #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
5042
- #: notices/myCRED-addon-email-notices.php:1053
5043
  msgid "Senders Name:"
5044
  msgstr ""
5045
 
5046
- #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
5047
- #: notices/myCRED-addon-email-notices.php:1055
5048
  msgid "Senders Email:"
5049
  msgstr ""
5050
 
5051
- #: ../addons/email-notices/myCRED-addon-email-notices.php:357
5052
  msgid "Reply-To:"
5053
  msgstr ""
5054
 
5055
- #: ../addons/email-notices/myCRED-addon-email-notices.php:361
5056
  msgid "Default Email Content"
5057
  msgstr ""
5058
 
5059
- #: ../addons/email-notices/myCRED-addon-email-notices.php:365
5060
  msgid "Default email content."
5061
  msgstr ""
5062
 
5063
- #: ../addons/email-notices/myCRED-addon-email-notices.php:368
5064
  msgid "Default Email Styling"
5065
  msgstr ""
5066
 
5067
- #: ../addons/email-notices/myCRED-addon-email-notices.php:372
5068
  msgid "Ignored if HTML is not allowed in emails."
5069
  msgstr ""
5070
 
5071
- #: ../addons/email-notices/myCRED-addon-email-notices.php:719
5072
  #, php-format
5073
  msgctxt "Badge Title - Level 1,2,3.."
5074
  msgid "%s - Level %d"
5075
  msgstr ""
5076
 
5077
- #: ../addons/email-notices/myCRED-addon-email-notices.php:809 ../addons/email-
5078
- #: notices/myCRED-addon-email-notices.php:949
5079
  msgid "Email Subject"
5080
  msgstr ""
5081
 
5082
- #: ../addons/email-notices/myCRED-addon-email-notices.php:810 ..
5083
- #: addons/badges/myCRED-addon-badges.php:1165
5084
  msgid "Status"
5085
  msgstr ""
5086
 
5087
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
5088
  msgid "Not Active"
5089
  msgstr ""
5090
 
5091
- #: ../addons/email-notices/myCRED-addon-email-notices.php:838
5092
  #, php-format
5093
  msgid "Scheduled:<br /><strong>%1$s</strong>"
5094
  msgstr ""
5095
 
5096
- #: ../addons/email-notices/myCRED-addon-email-notices.php:843
5097
  msgid "Active"
5098
  msgstr ""
5099
 
5100
- #: ../addons/email-notices/myCRED-addon-email-notices.php:845
5101
  #, php-format
5102
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
5103
  msgstr ""
5104
 
5105
- #: ../addons/email-notices/myCRED-addon-email-notices.php:855
5106
  msgid "Email is sent when"
5107
  msgstr ""
5108
 
5109
- #: ../addons/email-notices/myCRED-addon-email-notices.php:857
5110
  msgid "Missing instance for this notice!"
5111
  msgstr ""
5112
 
5113
- #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
5114
- #: notices/myCRED-addon-email-notices.php:868 ../addons/email-notices/myCRED-
5115
- #: addon-email-notices.php:870
5116
  msgid "Sent To"
5117
  msgstr ""
5118
 
5119
- #: ../addons/email-notices/myCRED-addon-email-notices.php:868 ../addons/email-
5120
- #: notices/myCRED-addon-email-notices.php:1020
5121
  msgid "Administrator"
5122
  msgstr ""
5123
 
5124
- #: ../addons/email-notices/myCRED-addon-email-notices.php:870
5125
  msgid "Both Administrator and User"
5126
  msgstr ""
5127
 
5128
- #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
5129
- #: notices/myCRED-addon-email-notices.php:1037
5130
  msgid "All types"
5131
  msgstr ""
5132
 
5133
- #: ../addons/email-notices/myCRED-addon-email-notices.php:909
5134
  msgid "Available Template Tags"
5135
  msgstr ""
5136
 
5137
- #: ../addons/email-notices/myCRED-addon-email-notices.php:920
5138
  msgid "Email Header"
5139
  msgstr ""
5140
 
5141
- #: ../addons/email-notices/myCRED-addon-email-notices.php:986
5142
  msgid "Send this email notice when..."
5143
  msgstr ""
5144
 
5145
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
5146
  msgid "Recipient:"
5147
  msgstr ""
5148
 
5149
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
5150
  msgid "Both"
5151
  msgstr ""
5152
 
5153
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
5154
  msgid "Reply-To Email:"
5155
  msgstr ""
5156
 
5157
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
5158
  msgid "Save"
5159
  msgstr ""
5160
 
5161
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
5162
  msgid "CSS Styling"
5163
  msgstr ""
5164
 
5165
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
5166
  msgid "Site Related"
5167
  msgstr ""
5168
 
5169
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
5170
  msgid "Your websites title"
5171
  msgstr ""
5172
 
5173
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
5174
  msgid "Your websites address"
5175
  msgstr ""
5176
 
5177
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
5178
  msgid "Your websites tagline (description)"
5179
  msgstr ""
5180
 
5181
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1095
5182
  msgid "Your websites admin email"
5183
  msgstr ""
5184
 
5185
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1096
5186
  msgid "Total number of blog members"
5187
  msgstr ""
5188
 
5189
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
5190
  msgid "The users new balance"
5191
  msgstr ""
5192
 
5193
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
5194
  msgid "The users old balance"
5195
  msgstr ""
5196
 
5197
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
5198
  msgid "The amount of points gained or lost in this instance"
5199
  msgstr ""
5200
 
5201
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
5202
  msgid "The log entry"
5203
  msgstr ""
5204
 
5205
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
5206
- #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
5207
- #: addon-email-notices.php:1187
5208
  msgid "Email Notice Updated."
5209
  msgstr ""
5210
 
5211
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1183
5212
  msgid "Email Notice Activated"
5213
  msgstr ""
5214
 
5215
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1184
5216
  msgid "Email Notice Saved"
5217
  msgstr ""
5218
 
5219
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1203
5220
  msgid ""
5221
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
5222
  "are not yet ready to use this email notice!"
5223
  msgstr ""
5224
 
5225
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1205
5226
  #, php-format
5227
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
5228
  msgstr ""
5229
 
5230
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1207
5231
  msgid "This email notice is active."
5232
  msgstr ""
5233
 
5234
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
5235
  msgid "Settings saved."
5236
  msgstr ""
5237
 
5238
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
5239
  msgid "Unsubscribe"
5240
  msgstr ""
5241
 
5242
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
5243
  msgid "There are no email notifications yet."
5244
  msgstr ""
5245
 
5246
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1296 ..
5247
- #: addons/badges/myCRED-addon-badges.php:1182
5248
  msgid "Save Changes"
5249
  msgstr ""
5250
 
5251
- #: ../addons/stats/myCRED-addon-stats.php:54
5252
  msgid "Statistics"
5253
  msgstr ""
5254
 
5255
- #: ../addons/stats/myCRED-addon-stats.php:126
5256
  msgid "Overview"
5257
  msgstr ""
5258
 
5259
- #: ../addons/stats/myCRED-addon-stats.php:192
5260
  msgid "Refresh"
5261
  msgstr ""
5262
 
5263
- #: ../addons/stats/myCRED-addon-stats.php:248
5264
  msgid "Your log is empty. No statistics can be shown."
5265
  msgstr ""
5266
 
@@ -5269,44 +5277,58 @@ msgstr ""
5269
  msgid "Total %s:"
5270
  msgstr ""
5271
 
5272
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138
 
5273
  #, php-format
5274
  msgid "Total amount of %s in circulation"
5275
  msgstr ""
5276
 
5277
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:170
 
5278
  msgid "Total gains (%)"
5279
  msgstr ""
5280
 
5281
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:174
 
5282
  msgid "Total loses (%)"
5283
  msgstr ""
5284
 
5285
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
 
5286
  #, php-format
5287
  msgid "Total Gained: %s"
5288
  msgstr ""
5289
 
5290
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
 
5291
  #, php-format
5292
  msgid "Total Spent: %s"
5293
  msgstr ""
5294
 
5295
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:192
 
5296
  msgid "This Year"
5297
  msgstr ""
5298
 
5299
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:196 ..
5300
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
5301
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
5302
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
5303
- msgid "Gained"
5304
- msgstr ""
5305
-
5306
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
5307
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
5308
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
5309
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5310
  msgid "Lost"
5311
  msgstr ""
5312
 
@@ -5346,243 +5368,243 @@ msgstr ""
5346
  msgid "Gains in the last 10 days"
5347
  msgstr ""
5348
 
5349
- #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
5350
- #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
5351
- #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
5352
- #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
5353
- #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
5354
- #: badges.php:395
5355
  msgid "Badges"
5356
  msgstr ""
5357
 
5358
- #: ../addons/badges/myCRED-addon-badges.php:169
5359
  #, php-format
5360
  msgid "Badges (%d)"
5361
  msgstr ""
5362
 
5363
- #: ../addons/badges/myCRED-addon-badges.php:260
5364
  #, php-format
5365
  msgid "%d Users earned this badge."
5366
  msgstr ""
5367
 
5368
- #: ../addons/badges/myCRED-addon-badges.php:264
5369
  msgid "No users has yet earned this badge."
5370
  msgstr ""
5371
 
5372
- #: ../addons/badges/myCRED-addon-badges.php:287
5373
  msgid "No connections where removed."
5374
  msgstr ""
5375
 
5376
- #: ../addons/badges/myCRED-addon-badges.php:289
5377
  #, php-format
5378
  msgid "%s connections where removed."
5379
  msgstr ""
5380
 
5381
- #: ../addons/badges/myCRED-addon-badges.php:384
5382
  msgid "Badge"
5383
  msgstr ""
5384
 
5385
- #: ../addons/badges/myCRED-addon-badges.php:386
5386
  msgid "Add New Badge"
5387
  msgstr ""
5388
 
5389
- #: ../addons/badges/myCRED-addon-badges.php:387
5390
  msgid "Edit Badge"
5391
  msgstr ""
5392
 
5393
- #: ../addons/badges/myCRED-addon-badges.php:388
5394
  msgid "New Badge"
5395
  msgstr ""
5396
 
5397
- #: ../addons/badges/myCRED-addon-badges.php:390
5398
  msgid "View Badge"
5399
  msgstr ""
5400
 
5401
- #: ../addons/badges/myCRED-addon-badges.php:391
5402
  msgid "Search Badge"
5403
  msgstr ""
5404
 
5405
- #: ../addons/badges/myCRED-addon-badges.php:392
5406
  msgid "No badges found"
5407
  msgstr ""
5408
 
5409
- #: ../addons/badges/myCRED-addon-badges.php:393
5410
  msgid "No badges found in Trash"
5411
  msgstr ""
5412
 
5413
- #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
5414
- #: badges.php:541
5415
  msgid "Badge Name"
5416
  msgstr ""
5417
 
5418
- #: ../addons/badges/myCRED-addon-badges.php:440
5419
  msgid "Badge Images"
5420
  msgstr ""
5421
 
5422
- #: ../addons/badges/myCRED-addon-badges.php:441
5423
  msgid "Requirements"
5424
  msgstr ""
5425
 
5426
- #: ../addons/badges/myCRED-addon-badges.php:481
5427
  msgid "A user must have gained or lost:"
5428
  msgstr ""
5429
 
5430
- #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
5431
- #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
5432
- #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
5433
- #: badges.php:526
5434
  msgid "Badge Updated."
5435
  msgstr ""
5436
 
5437
- #: ../addons/badges/myCRED-addon-badges.php:522
5438
  msgid "Badge Enabled"
5439
  msgstr ""
5440
 
5441
- #: ../addons/badges/myCRED-addon-badges.php:523
5442
  msgid "Badge Saved"
5443
  msgstr ""
5444
 
5445
- #: ../addons/badges/myCRED-addon-badges.php:555
5446
  msgid "Badge Setup"
5447
  msgstr ""
5448
 
5449
- #: ../addons/badges/myCRED-addon-badges.php:582
5450
  msgid "Assign Badge"
5451
  msgstr ""
5452
 
5453
- #: ../addons/badges/myCRED-addon-badges.php:583
5454
  msgid "Remove Connections"
5455
  msgstr ""
5456
 
5457
- #: ../addons/badges/myCRED-addon-badges.php:638
5458
  msgid "Time(s)"
5459
  msgstr ""
5460
 
5461
- #: ../addons/badges/myCRED-addon-badges.php:639
5462
  msgid "In total"
5463
  msgstr ""
5464
 
5465
- #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
5466
- #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
5467
- #: addons/badges/myCRED-addon-badges.php:846
5468
  msgid "Badge Image"
5469
  msgstr ""
5470
 
5471
- #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
5472
- #: badges.php:672
5473
  msgid "Set badge image"
5474
  msgstr ""
5475
 
5476
- #: ../addons/badges/myCRED-addon-badges.php:682
5477
  msgid "Default Image"
5478
  msgstr ""
5479
 
5480
- #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
5481
- #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
5482
- #: addons/badges/myCRED-addon-badges.php:831
5483
  msgid "image url"
5484
  msgstr ""
5485
 
5486
- #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
5487
- #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
5488
- #: addons/badges/myCRED-addon-badges.php:831
5489
  msgid "Add Image"
5490
  msgstr ""
5491
 
5492
- #: ../addons/badges/myCRED-addon-badges.php:685
5493
  msgid "Optional image to show when a user has not yet earned this badge."
5494
  msgstr ""
5495
 
5496
- #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
5497
- #: badges.php:756
5498
  #, php-format
5499
  msgid "Level %d"
5500
  msgstr ""
5501
 
5502
- #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
5503
- #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
5504
  msgid "for"
5505
  msgstr ""
5506
 
5507
- #: ../addons/badges/myCRED-addon-badges.php:740
5508
  msgid "Main Image"
5509
  msgstr ""
5510
 
5511
- #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
5512
- #: badges.php:831
5513
  msgid "Leave empty if you do not want to assign a custom image for this level."
5514
  msgstr ""
5515
 
5516
- #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
5517
- #: badges.php:831
5518
  msgid "Remove this level"
5519
  msgstr ""
5520
 
5521
- #: ../addons/badges/myCRED-addon-badges.php:788
5522
  msgid "Add Level"
5523
  msgstr ""
5524
 
5525
- #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
5526
- #: badges.php:1154
5527
  msgid "Level"
5528
  msgstr ""
5529
 
5530
- #: ../addons/badges/myCRED-addon-badges.php:848
5531
  msgid "Use as Badge"
5532
  msgstr ""
5533
 
5534
- #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
5535
- #: badges.php:1017
5536
  msgid "Show all badges, including badges users have not yet earned."
5537
  msgstr ""
5538
 
5539
- #: ../addons/badges/myCRED-addon-badges.php:1003
5540
  msgid "Include in Forum Replies"
5541
  msgstr ""
5542
 
5543
- #: ../addons/badges/myCRED-addon-badges.php:1004
5544
  msgid "Include in Profile and Forum Replies"
5545
  msgstr ""
5546
 
5547
- #: ../addons/badges/myCRED-addon-badges.php:1111
5548
  msgid "User Badges"
5549
  msgstr ""
5550
 
5551
- #: ../addons/badges/myCRED-addon-badges.php:1116
5552
  msgid ""
5553
  "Here you can view the badges this user has earned and if needed, manually "
5554
  "give or take away a badge from a user."
5555
  msgstr ""
5556
 
5557
- #: ../addons/badges/myCRED-addon-badges.php:1125
5558
  msgid "Not earned"
5559
  msgstr ""
5560
 
5561
- #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
5562
- #: badges.php:1168
5563
  msgid "Earned"
5564
  msgstr ""
5565
 
5566
- #: ../addons/badges/myCRED-addon-badges.php:1143
5567
  msgid "No image"
5568
  msgstr ""
5569
 
5570
- #: ../addons/badges/myCRED-addon-badges.php:1150
5571
  msgid "Select a level"
5572
  msgstr ""
5573
 
5574
- #: ../addons/badges/includes/mycred-badge-functions.php:68
5575
  #, php-format
5576
  msgid "Level %s"
5577
  msgstr ""
5578
 
5579
- #: ../addons/badges/includes/mycred-badge-functions.php:71
5580
  #, php-format
5581
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
5582
  msgid "%s for %s %s - %s"
5583
  msgstr ""
5584
 
5585
- #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
5586
  #: addons/coupons/myCRED-addon-coupons.php:221 ../addons/coupons/myCRED-addon-
5587
  #: coupons.php:516
5588
  #, php-format
@@ -5591,7 +5613,7 @@ msgid_plural "%d times"
5591
  msgstr[0] ""
5592
  msgstr[1] ""
5593
 
5594
- #: ../addons/badges/includes/mycred-badge-functions.php:73
5595
  #, php-format
5596
  msgctxt "\"x points\" for \"reference\" in total"
5597
  msgid "%s for %s in total"
@@ -5826,155 +5848,155 @@ msgid "Apply Coupon"
5826
  msgstr ""
5827
 
5828
  #: ../addons/sell-content/myCRED-addon-sell-content.php:44 ../addons/buy-
5829
- #: creds/myCRED-addon-buy-creds.php:1539
5830
  msgid "Buy Now"
5831
  msgstr ""
5832
 
5833
- #: ../addons/sell-content/myCRED-addon-sell-content.php:74
5834
  msgid "Hours"
5835
  msgstr ""
5836
 
5837
- #: ../addons/sell-content/myCRED-addon-sell-content.php:111
5838
  msgid "Profit Share"
5839
  msgstr ""
5840
 
5841
- #: ../addons/sell-content/myCRED-addon-sell-content.php:119
5842
  msgid "Save Profit Share"
5843
  msgstr ""
5844
 
5845
- #: ../addons/sell-content/myCRED-addon-sell-content.php:165
5846
  msgid "Profit Share override saved"
5847
  msgstr ""
5848
 
5849
- #: ../addons/sell-content/myCRED-addon-sell-content.php:327
5850
  msgid "You can not buy this content."
5851
  msgstr ""
5852
 
5853
- #: ../addons/sell-content/myCRED-addon-sell-content.php:372
5854
  msgid "Error. Try Again"
5855
  msgstr ""
5856
 
5857
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394
5858
  msgid "No Payout. Just charge."
5859
  msgstr ""
5860
 
5861
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
5862
  msgid "Pay Content Author."
5863
  msgstr ""
5864
 
5865
- #: ../addons/sell-content/myCRED-addon-sell-content.php:403
5866
  msgid "Post Types"
5867
  msgstr ""
5868
 
5869
- #: ../addons/sell-content/myCRED-addon-sell-content.php:407
5870
  msgid "Comma separated list of post types that can be sold."
5871
  msgstr ""
5872
 
5873
- #: ../addons/sell-content/myCRED-addon-sell-content.php:437
5874
  msgid "Percentage to pay Author"
5875
  msgstr ""
5876
 
5877
- #: ../addons/sell-content/myCRED-addon-sell-content.php:439
5878
  msgid ""
5879
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
5880
  "authors are not paid."
5881
  msgstr ""
5882
 
5883
- #: ../addons/sell-content/myCRED-addon-sell-content.php:447
5884
  msgid "Defaults"
5885
  msgstr ""
5886
 
5887
- #: ../addons/sell-content/myCRED-addon-sell-content.php:455
5888
  msgid "Allow authors to change price."
5889
  msgstr ""
5890
 
5891
- #: ../addons/sell-content/myCRED-addon-sell-content.php:464
5892
  msgid "Allow authors to change button label."
5893
  msgstr ""
5894
 
5895
- #: ../addons/sell-content/myCRED-addon-sell-content.php:468
5896
  msgid "Purchases expire after"
5897
  msgstr ""
5898
 
5899
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
5900
  msgid "Use zero for permanent sales."
5901
  msgstr ""
5902
 
5903
- #: ../addons/sell-content/myCRED-addon-sell-content.php:476
5904
  msgid "For Visitors"
5905
  msgstr ""
5906
 
5907
- #: ../addons/sell-content/myCRED-addon-sell-content.php:486
5908
  #, php-format
5909
  msgid ""
5910
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
5911
  "be logged in to buy content!"
5912
  msgstr ""
5913
 
5914
- #: ../addons/sell-content/myCRED-addon-sell-content.php:491
5915
  msgid "For Members"
5916
  msgstr ""
5917
 
5918
- #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
5919
- #: content/myCRED-addon-sell-content.php:516
5920
  #, php-format
5921
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
5922
  msgstr ""
5923
 
5924
- #: ../addons/sell-content/myCRED-addon-sell-content.php:506
5925
  msgid "For members that can not afford to buy"
5926
  msgstr ""
5927
 
5928
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
5929
  msgid "Log template for Purchases"
5930
  msgstr ""
5931
 
5932
- #: ../addons/sell-content/myCRED-addon-sell-content.php:527
5933
  msgid "Log template for Sales"
5934
  msgstr ""
5935
 
5936
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
5937
  #, php-format
5938
  msgid "%s Sell This"
5939
  msgstr ""
5940
 
5941
- #: ../addons/sell-content/myCRED-addon-sell-content.php:635
5942
  #, php-format
5943
  msgid "%s Sell Content needs to be setup before you can use this feature."
5944
  msgstr ""
5945
 
5946
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
5947
  msgid "Setup add-on"
5948
  msgstr ""
5949
 
5950
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
5951
  msgid "Lets do it"
5952
  msgstr ""
5953
 
5954
- #: ../addons/sell-content/myCRED-addon-sell-content.php:676
5955
  #, php-format
5956
  msgid "Enable sale of this %s"
5957
  msgstr ""
5958
 
5959
- #: ../addons/sell-content/myCRED-addon-sell-content.php:690
5960
  msgid "Purchase expires after"
5961
  msgstr ""
5962
 
5963
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
5964
  msgid "Thank you for your purchase!"
5965
  msgstr ""
5966
 
5967
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
5968
- #: content/myCRED-addon-sell-content.php:1190
5969
  msgid "The following content is set for sale:"
5970
  msgstr ""
5971
 
5972
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1209 ../addons/buy-
5973
- #: creds/myCRED-addon-buy-creds.php:1270
5974
  msgid "No purchases found"
5975
  msgstr ""
5976
 
5977
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
5978
  msgid "Purchased"
5979
  msgstr ""
5980
 
@@ -6011,7 +6033,7 @@ msgid "Edit Pending Payment"
6011
  msgstr ""
6012
 
6013
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:284 ../addons/buy-creds/myCRED-
6014
- #: addon-buy-creds.php:1752
6015
  msgid "No pending payments found"
6016
  msgstr ""
6017
 
@@ -6019,210 +6041,210 @@ msgstr ""
6019
  msgid "Not found in Trash"
6020
  msgstr ""
6021
 
6022
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:341 ../addons/buy-creds/myCRED-
6023
- #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
6024
  msgid "Transaction ID"
6025
  msgstr ""
6026
 
6027
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-
6028
- #: addon-buy-creds.php:1074
6029
  msgid "Buyer"
6030
  msgstr ""
6031
 
6032
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
6033
- #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
6034
  #: gateway.php:594
6035
  msgid "Cost"
6036
  msgstr ""
6037
 
6038
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:347
6039
  msgid "Type"
6040
  msgstr ""
6041
 
6042
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:440
6043
  msgid "Pay Out"
6044
  msgstr ""
6045
 
6046
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474
6047
  msgid "buyCRED Purchase Log"
6048
  msgstr ""
6049
 
6050
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:475 ../addons/buy-creds/myCRED-
6051
- #: addon-buy-creds.php:726 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
6052
  msgid "Purchase Log"
6053
  msgstr ""
6054
 
6055
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:613
6056
  msgid "Please login to purchase %_plural%"
6057
  msgstr ""
6058
 
6059
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:628
6060
  #, php-format
6061
  msgid "Gift purchase from %display_name%."
6062
  msgstr ""
6063
 
6064
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:647
6065
  #, php-format
6066
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
6067
  msgstr ""
6068
 
6069
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655
6070
  msgid "Select the point types that users can buy. You must select at least one!"
6071
  msgstr ""
6072
 
6073
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:666
6074
  msgid "Login Template"
6075
  msgstr ""
6076
 
6077
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:670
6078
  msgid "Content to show when a user is not logged in."
6079
  msgstr ""
6080
 
6081
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:680
6082
  msgid "Thank You Page"
6083
  msgstr ""
6084
 
6085
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:683 ../addons/buy-creds/myCRED-
6086
- #: addon-buy-creds.php:706
6087
  msgid "Custom URL"
6088
  msgstr ""
6089
 
6090
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:688 ../addons/buy-creds/myCRED-
6091
- #: addon-buy-creds.php:711
6092
  msgid "Page"
6093
  msgstr ""
6094
 
6095
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703
6096
  msgid "Cancellation Page"
6097
  msgstr ""
6098
 
6099
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:728
6100
  #, php-format
6101
  msgid "Show seperate log for %_plural% purchases."
6102
  msgstr ""
6103
 
6104
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:730
6105
  msgid "Gifting"
6106
  msgstr ""
6107
 
6108
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
6109
  #, php-format
6110
  msgid "Allow users to buy %_plural% for other users."
6111
  msgstr ""
6112
 
6113
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:733
6114
  #, php-format
6115
  msgid "Allow users to buy %_plural% for content authors."
6116
  msgstr ""
6117
 
6118
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:831
6119
  #, php-format
6120
  msgid "%s Exchange Rate"
6121
  msgstr ""
6122
 
6123
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
6124
  msgid "Save Exchange Rates"
6125
  msgstr ""
6126
 
6127
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
6128
  msgid "Exchange rate override saved"
6129
  msgstr ""
6130
 
6131
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
6132
  msgid "Payment completed"
6133
  msgstr ""
6134
 
6135
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
6136
  #, php-format
6137
  msgid "%s Payment Gateways"
6138
  msgstr ""
6139
 
6140
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
6141
- #: addon-buy-creds.php:1085
6142
  msgid "buyCRED Settings"
6143
  msgstr ""
6144
 
6145
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
6146
  msgid "Test Mode"
6147
  msgstr ""
6148
 
6149
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
6150
  msgid "Enabled"
6151
  msgstr ""
6152
 
6153
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
6154
  msgid "Disabled"
6155
  msgstr ""
6156
 
6157
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
6158
  msgid "Sandbox Mode"
6159
  msgstr ""
6160
 
6161
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
6162
  msgid "Enable for test purchases."
6163
  msgstr ""
6164
 
6165
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
6166
  msgid "More Gateways"
6167
  msgstr ""
6168
 
6169
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
6170
  msgid "Payed"
6171
  msgstr ""
6172
 
6173
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
6174
  msgid "<strong>buy</strong>CRED Purchase Log"
6175
  msgstr ""
6176
 
6177
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
6178
- #: addon-buy-creds.php:1464
6179
  msgid "This Add-on needs to setup before you can use this shortcode."
6180
  msgstr ""
6181
 
6182
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
6183
- #: addon-buy-creds.php:1483
6184
  msgid "No gateways installed."
6185
  msgstr ""
6186
 
6187
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
6188
- #: addon-buy-creds.php:1484
6189
  msgid "Gateway does not exist."
6190
  msgstr ""
6191
 
6192
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
6193
  msgid "Yourself"
6194
  msgstr ""
6195
 
6196
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
6197
  msgid "No active gateways found."
6198
  msgstr ""
6199
 
6200
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
6201
  msgid "The selected gateway is not active."
6202
  msgstr ""
6203
 
6204
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
6205
  #, php-format
6206
  msgid "Buy with %gateway%"
6207
  msgstr ""
6208
 
6209
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
6210
  msgid "No users found"
6211
  msgstr ""
6212
 
6213
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
6214
  msgid "To"
6215
  msgstr ""
6216
 
6217
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
6218
  msgid "Select Amount"
6219
  msgstr ""
6220
 
6221
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
6222
  msgid "min."
6223
  msgstr ""
6224
 
6225
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
6226
  msgid "Select Gateway"
6227
  msgstr ""
6228
 
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Mon Jan 11 2016 22:11:07 GMT+0100 (CET)\n"
7
  "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
33
  msgstr ""
34
 
35
  #. Description of the plugin
36
+ msgid "An adaptive points management system for WordPress powered websites."
 
 
 
37
  msgstr ""
38
 
39
  #. Author of the plugin
44
  msgid "http://www.merovingi.com"
45
  msgstr ""
46
 
47
+ #: ../mycred.php:443
48
  msgid "Balance"
49
  msgstr ""
50
 
51
+ #: ../mycred.php:468
52
  msgid "%label% History"
53
  msgstr ""
54
 
55
+ #: ../mycred.php:562
56
  #, php-format
57
  msgid "About %s"
58
  msgstr ""
59
 
60
+ #: ../mycred.php:571
61
  msgid "Awesome People"
62
  msgstr ""
63
 
64
+ #: ../mycred.php:659 ../mycred.php:684 ../mycred.php:702 ../includes/mycred-
65
+ #: shortcodes.php:653 ../addons/gateway/event-booking/mycred-eventsmanager.php:
66
  #: 478 ../addons/transfer/myCRED-addon-transfer.php:146 ../addons/ranks/myCRED-
67
+ #: addon-ranks.php:426 ../addons/ranks/myCRED-addon-ranks.php:1534 ..
68
+ #: addons/badges/myCRED-addon-badges.php:635 ../addons/sell-content/myCRED-addon-
69
+ #: sell-content.php:397
70
  msgid "Processing..."
71
  msgstr ""
72
 
73
+ #: ../mycred.php:660
74
  msgid ""
75
  "Warning! All entries in your log will be permanently removed! This can not "
76
  "be undone!"
77
  msgstr ""
78
 
79
+ #: ../mycred.php:661
80
  msgid ""
81
  "All log entries belonging to deleted users will be permanently deleted! This "
82
  "can not be undone!"
83
  msgstr ""
84
 
85
+ #: ../mycred.php:662
86
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
87
  msgstr ""
88
 
89
+ #: ../mycred.php:663
90
  msgid "Done!"
91
  msgstr ""
92
 
93
+ #: ../mycred.php:664 ../mycred.php:683 ../mycred.php:701
94
  msgid "Close"
95
  msgstr ""
96
 
97
+ #: ../mycred.php:665
98
  #, php-format
99
  msgid "Export users %plural%"
100
  msgstr ""
101
 
102
+ #: ../mycred.php:666
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
+ #: ../mycred.php:682
110
  msgid "Edit Users Balance"
111
  msgstr ""
112
 
113
+ #: ../mycred.php:700
114
  msgid "Edit Log Entry"
115
  msgstr ""
116
 
117
+ #: ../mycred.php:704
118
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
119
  msgstr ""
120
 
121
+ #: ../mycred.php:705
122
  msgid "Log entry updated"
123
  msgstr ""
124
 
125
+ #: ../mycred.php:762 ../mycred.php:784 ../addons/gateway/event-booking/mycred-
126
  #: eventsmanager.php:537 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
127
+ #: php:499 ../addons/email-notices/myCRED-addon-email-notices.php:841
128
  msgid "Setup"
129
  msgstr ""
130
 
131
+ #: ../mycred.php:764 ../modules/mycred-module-settings.php:21 ../modules/mycred-
132
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23 ..
133
  #: includes/mycred-network.php:170 ../addons/gateway/carts/mycred-marketpress.
134
  #: php:371 ../addons/stats/abstracts/mycred-abstract-stat-widget.php:108
135
  msgid "Settings"
136
  msgstr ""
137
 
138
+ #: ../mycred.php:807
139
  msgid ""
140
  "Make sure to backup your database and files before updating, in case "
141
  "anything goes wrong!"
146
  msgstr ""
147
 
148
  #: ../abstracts/mycred-abstract-hook.php:283 ../abstracts/mycred-abstract-hook.
149
+ #: php:354 ../modules/mycred-module-hooks.php:1819 ../includes/mycred-functions.
150
+ #: php:2928
151
  msgid "No limit"
152
  msgstr ""
153
 
181
 
182
  #: ../abstracts/mycred-abstract-hook.php:364 ../addons/banking/abstracts/mycred-
183
  #: abstract-service.php:498 ../addons/email-notices/myCRED-addon-email-notices.
184
+ #: php:208 ../addons/email-notices/myCRED-addon-email-notices.php:1040 ..
185
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:695 ../addons/buy-creds/myCRED-
186
+ #: addon-buy-creds.php:718 ../addons/buy-creds/abstracts/mycred-abstract-payment-
187
  #: gateway.php:1023 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
188
  #: php:1046 ../addons/buy-creds/gateways/zombaio.php:356
189
  msgid "Select"
190
  msgstr ""
191
 
192
+ #: ../abstracts/mycred-abstract-module.php:401 ../abstracts/mycred-abstract-
193
+ #: module.php:411
194
  msgid "Surprise"
195
  msgstr ""
196
 
197
+ #: ../abstracts/mycred-abstract-module.php:512 ../includes/mycred-network.php:93
198
  msgid "click to close"
199
  msgstr ""
200
 
201
+ #: ../abstracts/mycred-abstract-module.php:513 ../includes/mycred-network.php:94
202
  msgid "click to open"
203
  msgstr ""
204
 
205
+ #: ../abstracts/mycred-abstract-module.php:546 ../addons/buy-creds/myCRED-addon-
206
+ #: buy-creds.php:926
207
  msgid "Settings Updated"
208
  msgstr ""
209
 
263
  msgstr ""
264
 
265
  #: ../modules/mycred-module-settings.php:484 ../modules/mycred-module-addons.php:
266
+ #: 311 ../modules/mycred-module-log.php:358 ../modules/mycred-module-log.php:647 .
267
+ #: ./modules/mycred-module-hooks.php:196 ../includes/mycred-network.php:141 ..
268
+ #: includes/mycred-admin.php:590 ../addons/banking/myCRED-addon-banking.php:238 .
269
+ #: ./addons/stats/myCRED-addon-stats.php:230 ../addons/buy-creds/myCRED-addon-buy-
270
+ #: creds.php:915 ../addons/buy-creds/myCRED-addon-buy-creds.php:1021
271
  msgid "Access Denied"
272
  msgstr ""
273
 
412
 
413
  #: ../modules/mycred-module-settings.php:625 ../modules/mycred-module-settings.
414
  #: php:640 ../modules/mycred-module-log.php:407 ../addons/ranks/myCRED-addon-
415
+ #: ranks.php:1623 ../addons/buy-creds/myCRED-addon-buy-creds.php:1717
416
  msgid "Actions"
417
  msgstr ""
418
 
421
  msgstr ""
422
 
423
  #: ../modules/mycred-module-settings.php:632 ../addons/ranks/myCRED-addon-ranks.
424
+ #: php:1615
425
  msgid "User Meta Key"
426
  msgstr ""
427
 
428
  #: ../modules/mycred-module-settings.php:636 ../addons/ranks/myCRED-addon-ranks.
429
+ #: php:1049 ../addons/badges/myCRED-addon-badges.php:463
430
  msgid "Users"
431
  msgstr ""
432
 
439
  msgstr ""
440
 
441
  #: ../modules/mycred-module-settings.php:656 ../includes/mycred-widgets.php:600 ..
442
+ #: addons/transfer/myCRED-addon-transfer.php:212 ../addons/buy-creds/myCRED-
443
+ #: addon-buy-creds.php:651
444
  msgid "Point Types"
445
  msgstr ""
446
 
456
  #: ../modules/mycred-module-settings.php:674 ../modules/mycred-module-settings.
457
  #: php:695 ../modules/mycred-module-settings.php:720 ..
458
  #: addons/gateway/carts/mycred-woocommerce.php:160 ../addons/email-
459
+ #: notices/myCRED-addon-email-notices.php:1082
460
  msgid "Label"
461
  msgstr ""
462
 
486
 
487
  #: ../modules/mycred-module-settings.php:739 ../addons/gateway/event-
488
  #: booking/mycred-eventespresso3.php:502 ../addons/buy-creds/myCRED-addon-buy-
489
+ #: creds.php:985
490
  msgid "Update Settings"
491
  msgstr ""
492
 
532
  msgid "Add-ons"
533
  msgstr ""
534
 
535
+ #: ../modules/mycred-module-addons.php:167
536
  msgid "Give your users badges based on their interaction with your website."
537
  msgstr ""
538
 
539
+ #: ../modules/mycred-module-addons.php:178
540
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
541
  msgstr ""
542
 
543
+ #: ../modules/mycred-module-addons.php:189
544
  msgid ""
545
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
546
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
547
  "also let your users buy points for other members."
548
  msgstr ""
549
 
550
+ #: ../modules/mycred-module-addons.php:200
551
  msgid ""
552
  "The coupons add-on allows you to create coupons that users can use to add "
553
  "points to their accounts."
554
  msgstr ""
555
 
556
+ #: ../modules/mycred-module-addons.php:211
557
  msgid "Create email notices for any type of myCRED instance."
558
  msgstr ""
559
 
560
+ #: ../modules/mycred-module-addons.php:222
561
  msgid ""
562
  "Let your users pay using their <strong>my</strong>CRED points balance. "
563
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
564
  "Bookings: Event Espresso and Events Manager (free & pro)."
565
  msgstr ""
566
 
567
+ #: ../modules/mycred-module-addons.php:233
568
  msgid "Create pop-up notifications for when users gain or loose points."
569
  msgstr ""
570
 
571
+ #: ../modules/mycred-module-addons.php:245
572
  msgid ""
573
  "Create ranks for users reaching a certain number of %_plural% with the "
574
  "option to add logos for each rank."
575
  msgstr ""
576
 
577
+ #: ../modules/mycred-module-addons.php:256
578
  msgid ""
579
  "This add-on allows you to sell posts, pages or any public post types on your "
580
  "website. You can either sell the entire content or using our shortcode, sell "
581
  "parts of your content allowing you to offer \"teasers\"."
582
  msgstr ""
583
 
584
+ #: ../modules/mycred-module-addons.php:267
585
  msgid ""
586
  "Gives you access to your myCRED Staticstics based on your users gains and "
587
  "loses."
588
  msgstr ""
589
 
590
+ #: ../modules/mycred-module-addons.php:278
591
  msgid ""
592
  "Allow your users to send or \"donate\" points to other members by either using "
593
  "the mycred_transfer shortcode or the myCRED Transfer widget."
594
  msgstr ""
595
 
596
+ #: ../modules/mycred-module-addons.php:321
597
  #, php-format
598
  msgid "%s Add-ons"
599
  msgstr ""
600
 
601
+ #: ../modules/mycred-module-addons.php:328
602
  msgid "Add-on Activated"
603
  msgstr ""
604
 
605
+ #: ../modules/mycred-module-addons.php:331
606
  msgid "Add-on Deactivated"
607
  msgstr ""
608
 
609
+ #: ../modules/mycred-module-addons.php:336
610
  msgid "Add-ons Reloaded"
611
  msgstr ""
612
 
613
+ #: ../modules/mycred-module-addons.php:339
614
  msgid "Add-ons can expand your current installation with further features."
615
  msgstr ""
616
 
617
+ #: ../modules/mycred-module-addons.php:366
618
  msgid "Reload Add-ons"
619
  msgstr ""
620
 
621
+ #: ../modules/mycred-module-addons.php:367
622
  #, php-format
623
  msgid "You can find more add-ons in our %s."
624
  msgstr ""
625
 
626
+ #: ../modules/mycred-module-addons.php:367
627
  msgid "online store"
628
  msgstr ""
629
 
630
+ #: ../modules/mycred-module-addons.php:390
631
  msgid "Deactivate Add-on"
632
  msgstr ""
633
 
634
+ #: ../modules/mycred-module-addons.php:391
635
  msgid "Deactivate"
636
  msgstr ""
637
 
638
+ #: ../modules/mycred-module-addons.php:398
639
  msgid "Activate Add-on"
640
  msgstr ""
641
 
642
+ #: ../modules/mycred-module-addons.php:399
643
  msgid "Activate"
644
  msgstr ""
645
 
646
+ #: ../modules/mycred-module-addons.php:417
647
  msgid "Version"
648
  msgstr ""
649
 
650
+ #: ../modules/mycred-module-addons.php:421
651
  msgid "By"
652
  msgstr ""
653
 
654
+ #: ../modules/mycred-module-addons.php:425
655
  msgid "About"
656
  msgstr ""
657
 
658
+ #: ../modules/mycred-module-addons.php:429
659
  msgid "Get Pro"
660
  msgstr ""
661
 
677
  msgstr ""
678
 
679
  #: ../modules/mycred-module-log.php:276 ../modules/mycred-module-log.php:277 ..
680
+ #: includes/mycred-admin.php:429 ../addons/banking/services/mycred-bank-service-
681
  #: payouts.php:246
682
  msgid "History"
683
  msgstr ""
697
  "Certain hooks and shortcodes will not work correctly!"
698
  msgstr ""
699
 
700
+ #: ../modules/mycred-module-log.php:525 ../includes/mycred-log.php:872
701
  msgid "User Missing"
702
  msgstr ""
703
 
705
  msgid "Edit"
706
  msgstr ""
707
 
708
+ #: ../modules/mycred-module-log.php:609 ../includes/mycred-log.php:754 ..
709
+ #: includes/mycred-admin.php:802 ../addons/email-notices/myCRED-addon-email-
710
+ #: notices.php:900 ../addons/email-notices/myCRED-addon-email-notices.php:1076
711
  msgid "User"
712
  msgstr ""
713
 
746
  msgid "Hooks"
747
  msgstr ""
748
 
749
+ #: ../modules/mycred-module-hooks.php:110
750
  #, php-format
751
  msgid "%plural% for registrations"
752
  msgstr ""
753
 
754
+ #: ../modules/mycred-module-hooks.php:111
755
  #, php-format
756
  msgid "Award %_plural% for users joining your website."
757
  msgstr ""
758
 
759
+ #: ../modules/mycred-module-hooks.php:117
760
  #, php-format
761
  msgid "%plural% for daily visits"
762
  msgstr ""
763
 
764
+ #: ../modules/mycred-module-hooks.php:118
765
  #, php-format
766
  msgid "Award %_plural% for users visiting your website on a daily basis."
767
  msgstr ""
768
 
769
+ #: ../modules/mycred-module-hooks.php:124
770
  #, php-format
771
  msgid "%plural% for viewing content"
772
  msgstr ""
773
 
774
+ #: ../modules/mycred-module-hooks.php:125
775
  #, php-format
776
  msgid ""
777
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
778
  "authors for members viewing their content."
779
  msgstr ""
780
 
781
+ #: ../modules/mycred-module-hooks.php:131
782
  #, php-format
783
  msgid "%plural% for logins"
784
  msgstr ""
785
 
786
+ #: ../modules/mycred-module-hooks.php:132
787
  #, php-format
788
  msgid ""
789
  "Award %_plural% for logging in to your website. You can also set an optional "
790
  "limit."
791
  msgstr ""
792
 
793
+ #: ../modules/mycred-module-hooks.php:138
794
  #, php-format
795
  msgid "%plural% for publishing content"
796
  msgstr ""
797
 
798
+ #: ../modules/mycred-module-hooks.php:139
799
  #, php-format
800
  msgid ""
801
  "Award %_plural% for publishing content on your website. If your custom post "
802
  "type is not shown bellow, make sure it is set to \"Public\"."
803
  msgstr ""
804
 
805
+ #: ../modules/mycred-module-hooks.php:145
806
  #, php-format
807
  msgid "%plural% for comments"
808
  msgstr ""
809
 
810
+ #: ../modules/mycred-module-hooks.php:145
811
  #, php-format
812
  msgid "%plural% for Disqus comments"
813
  msgstr ""
814
 
815
+ #: ../modules/mycred-module-hooks.php:146
816
  #, php-format
817
  msgid "Award %_plural% for making comments."
818
  msgstr ""
819
 
820
+ #: ../modules/mycred-module-hooks.php:152
821
  #, php-format
822
  msgid "%plural% for clicking on links"
823
  msgstr ""
824
 
825
+ #: ../modules/mycred-module-hooks.php:153
826
  msgid ""
827
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
828
  "shortcode."
829
  msgstr ""
830
 
831
+ #: ../modules/mycred-module-hooks.php:159
832
  #, php-format
833
  msgid "%plural% for viewing Videos"
834
  msgstr ""
835
 
836
+ #: ../modules/mycred-module-hooks.php:160
837
  msgid ""
838
  "Award %_plural% to users who watches videos embedded using the "
839
  "[mycred_video] shortcode."
840
  msgstr ""
841
 
842
+ #: ../modules/mycred-module-hooks.php:166
843
  #, php-format
844
  msgid "%plural% for referrals"
845
  msgstr ""
846
 
847
+ #: ../modules/mycred-module-hooks.php:167
848
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
849
  msgstr ""
850
 
851
+ #: ../modules/mycred-module-hooks.php:202
852
  #, php-format
853
  msgid "%s Hooks"
854
  msgstr ""
855
 
856
+ #: ../modules/mycred-module-hooks.php:206
857
  #, php-format
858
  msgid ""
859
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
860
  "depending on their actions around your website."
861
  msgstr ""
862
 
863
+ #: ../modules/mycred-module-hooks.php:225 ../addons/banking/myCRED-addon-banking.
864
+ #: php:274 ../addons/buy-creds/myCRED-addon-buy-creds.php:953
865
  msgid "Enable"
866
  msgstr ""
867
 
868
+ #: ../modules/mycred-module-hooks.php:243 ../addons/banking/myCRED-addon-banking.
869
+ #: php:293
870
  msgid "Update Changes"
871
  msgstr ""
872
 
873
+ #: ../modules/mycred-module-hooks.php:420 ../modules/mycred-module-hooks.php:526 .
874
+ #: ./modules/mycred-module-hooks.php:693 ../modules/mycred-module-hooks.php:724 ..
875
+ #: modules/mycred-module-hooks.php:801 ../modules/mycred-module-hooks.php:1167 ..
876
+ #: modules/mycred-module-hooks.php:1184 ../modules/mycred-module-hooks.php:1233 .
877
+ #: ./modules/mycred-module-hooks.php:1685 ../modules/mycred-module-hooks.php:1702
878
+ #: ../modules/mycred-module-hooks.php:1719 ../modules/mycred-module-hooks.php:
879
+ #: 3010 ../modules/mycred-module-hooks.php:3030 ../plugins/mycred-hook-invite-
880
+ #: anyone.php:211 ../plugins/mycred-hook-invite-anyone.php:232 ../plugins/mycred-
881
+ #: hook-wp-postratings.php:173 ../plugins/mycred-hook-wp-postratings.php:192 ..
882
+ #: plugins/mycred-hook-gravityforms.php:165 ../plugins/mycred-hook-simplepress.
883
+ #: php:309 ../plugins/mycred-hook-simplepress.php:322 ../plugins/mycred-hook-
884
+ #: simplepress.php:339 ../plugins/mycred-hook-simplepress.php:357 ..
885
+ #: plugins/mycred-hook-buddypress-gallery.php:116 ../plugins/mycred-hook-
886
+ #: buddypress.php:520 ../plugins/mycred-hook-buddypress.php:537 ../plugins/mycred-
887
+ #: hook-buddypress.php:554 ../plugins/mycred-hook-buddypress.php:574 ..
888
+ #: plugins/mycred-hook-buddypress.php:587 ../plugins/mycred-hook-buddypress.php:
889
+ #: 604 ../plugins/mycred-hook-buddypress.php:617 ../plugins/mycred-hook-
890
+ #: buddypress.php:634 ../plugins/mycred-hook-buddypress.php:651 ../plugins/mycred-
891
+ #: hook-buddypress.php:1231 ../plugins/mycred-hook-buddypress.php:1244 ..
892
+ #: plugins/mycred-hook-buddypress.php:1261 ../plugins/mycred-hook-buddypress.php:
893
+ #: 1278 ../plugins/mycred-hook-buddypress.php:1295 ../plugins/mycred-hook-
894
+ #: buddypress.php:1312 ../plugins/mycred-hook-buddypress.php:1330 ..
895
+ #: plugins/mycred-hook-buddypress.php:1343 ../plugins/mycred-hook-buddypress.php:
896
+ #: 1360 ../plugins/mycred-hook-buddypress.php:1377 ../plugins/mycred-hook-
897
+ #: buddypress-links.php:271 ../plugins/mycred-hook-buddypress-links.php:288 ..
898
+ #: plugins/mycred-hook-buddypress-links.php:305 ../plugins/mycred-hook-
899
+ #: buddypress-links.php:324 ../plugins/mycred-hook-buddypress-links.php:341 ..
900
+ #: plugins/mycred-hook-buddypress-links.php:354 ../plugins/mycred-hook-
901
+ #: affiliatewp.php:229 ../plugins/mycred-hook-affiliatewp.php:246 ..
902
  #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-buddypress-media.
903
+ #: php:224 ../plugins/mycred-hook-buddypress-media.php:238 ../plugins/mycred-hook-
904
+ #: buddypress-media.php:252 ../plugins/mycred-hook-buddypress-media.php:265 ..
905
+ #: plugins/mycred-hook-buddypress-media.php:275 ../plugins/mycred-hook-
906
+ #: buddypress-media.php:285 ../plugins/mycred-hook-contact-form7.php:168 ..
907
+ #: plugins/mycred-hook-jetpack.php:545 ../plugins/mycred-hook-jetpack.php:558 ..
908
+ #: plugins/mycred-hook-bbPress.php:443 ../plugins/mycred-hook-bbPress.php:456 ..
909
+ #: plugins/mycred-hook-bbPress.php:473 ../plugins/mycred-hook-bbPress.php:491 ..
910
+ #: plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:525 ..
911
+ #: plugins/mycred-hook-bbPress.php:551 ../plugins/mycred-hook-badgeOS.php:336
912
  msgid "Log template"
913
  msgstr ""
914
 
915
+ #: ../modules/mycred-module-hooks.php:676
916
  #, php-format
917
  msgid "%plural% for viewing Posts"
918
  msgstr ""
919
 
920
+ #: ../modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:696 .
921
+ #: ./modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:727 ..
922
+ #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:804
923
  msgid "Member"
924
  msgstr ""
925
 
926
+ #: ../modules/mycred-module-hooks.php:682 ../modules/mycred-module-hooks.php:689 .
927
+ #: ./modules/mycred-module-hooks.php:713 ../modules/mycred-module-hooks.php:720 ..
928
+ #: modules/mycred-module-hooks.php:790 ../modules/mycred-module-hooks.php:797 ..
929
+ #: modules/mycred-module-hooks.php:1021 ../modules/mycred-module-hooks.php:1163 .
930
+ #: ./modules/mycred-module-hooks.php:1180 ../modules/mycred-module-hooks.php:1229
931
+ #: ../modules/mycred-module-hooks.php:3018 ../modules/mycred-module-hooks.php:
932
+ #: 3038 ../plugins/mycred-hook-invite-anyone.php:216 ../plugins/mycred-hook-
933
+ #: invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:237 ..
934
+ #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-wp-
935
+ #: postratings.php:165 ../plugins/mycred-hook-wp-postratings.php:184 ..
936
+ #: plugins/mycred-hook-gravityforms.php:160 ../plugins/mycred-hook-simplepress.
937
+ #: php:304 ../plugins/mycred-hook-simplepress.php:334 ../plugins/mycred-hook-
938
+ #: buddypress-gallery.php:111 ../plugins/mycred-hook-buddypress.php:515 ..
939
+ #: plugins/mycred-hook-buddypress.php:532 ../plugins/mycred-hook-buddypress.php:
940
+ #: 549 ../plugins/mycred-hook-buddypress.php:566 ../plugins/mycred-hook-
941
+ #: buddypress.php:599 ../plugins/mycred-hook-buddypress.php:629 ../plugins/mycred-
942
+ #: hook-buddypress.php:646 ../plugins/mycred-hook-buddypress.php:1256 ..
943
+ #: plugins/mycred-hook-buddypress.php:1273 ../plugins/mycred-hook-buddypress.php:
944
+ #: 1290 ../plugins/mycred-hook-buddypress.php:1307 ../plugins/mycred-hook-
945
+ #: buddypress.php:1325 ../plugins/mycred-hook-buddypress.php:1355 ..
946
+ #: plugins/mycred-hook-buddypress.php:1372 ../plugins/mycred-hook-buddypress-
947
+ #: links.php:266 ../plugins/mycred-hook-buddypress-links.php:283 ..
948
+ #: plugins/mycred-hook-buddypress-links.php:300 ../plugins/mycred-hook-
949
+ #: buddypress-links.php:310 ../plugins/mycred-hook-buddypress-links.php:319 ..
950
+ #: plugins/mycred-hook-buddypress-links.php:336 ../plugins/mycred-hook-
951
+ #: affiliatewp.php:241 ../plugins/mycred-hook-events-manager-light.php:205 ..
952
  #: plugins/mycred-hook-sharethis.php:302 ../plugins/mycred-hook-buddypress-media.
953
+ #: php:220 ../plugins/mycred-hook-buddypress-media.php:234 ../plugins/mycred-hook-
954
+ #: buddypress-media.php:248 ../plugins/mycred-hook-wp-favorite-posts.php:222 ..
955
+ #: plugins/mycred-hook-wp-favorite-posts.php:240 ../plugins/mycred-hook-contact-
956
+ #: form7.php:163 ../plugins/mycred-hook-bbPress.php:438 ../plugins/mycred-hook-
957
+ #: bbPress.php:468 ../plugins/mycred-hook-bbPress.php:503 ../plugins/mycred-hook-
958
+ #: bbPress.php:520 ../plugins/mycred-hook-woocommerce.php:336 ../includes/mycred-
959
+ #: shortcodes.php:1143
960
  msgid "Limit"
961
  msgstr ""
962
 
963
+ #: ../modules/mycred-module-hooks.php:686 ../modules/mycred-module-hooks.php:702 .
964
+ #: ./modules/mycred-module-hooks.php:717 ../modules/mycred-module-hooks.php:733 ..
965
+ #: modules/mycred-module-hooks.php:794 ../modules/mycred-module-hooks.php:810 ..
966
+ #: modules/mycred-module-hooks.php:1680 ../modules/mycred-module-hooks.php:1697 .
967
+ #: ./modules/mycred-module-hooks.php:1714
968
  msgid "Content Author"
969
  msgstr ""
970
 
971
+ #: ../modules/mycred-module-hooks.php:707
972
  #, php-format
973
  msgid "%plural% for viewing Pages"
974
  msgstr ""
975
 
976
+ #: ../modules/mycred-module-hooks.php:784
977
  #, php-format
978
  msgid "%plural% for viewing %s"
979
  msgstr ""
980
 
981
+ #: ../modules/mycred-module-hooks.php:1014 ../modules/mycred-module-hooks.php:
982
+ #: 2035 ../modules/mycred-module-hooks.php:2405 ../plugins/mycred-hook-wp-polls.
983
+ #: php:154 ../plugins/mycred-hook-gd-star-rating.php:121 ../plugins/mycred-hook-
984
+ #: gd-star-rating.php:134 ../plugins/mycred-hook-events-manager-light.php:209 ..
985
+ #: plugins/mycred-hook-events-manager-light.php:222 ../plugins/mycred-hook-wp-
986
+ #: favorite-posts.php:226 ../plugins/mycred-hook-wp-favorite-posts.php:244 ..
987
+ #: plugins/mycred-hook-wp-favorite-posts.php:258 ../plugins/mycred-hook-wp-
988
+ #: favorite-posts.php:271 ../plugins/mycred-hook-woocommerce.php:340 ..
989
+ #: plugins/mycred-hook-badgeOS.php:143 ../plugins/mycred-hook-badgeOS.php:145 ..
990
+ #: plugins/mycred-hook-badgeOS.php:156 ../addons/banking/services/mycred-bank-
991
  #: service-payouts.php:283 ../addons/banking/services/mycred-bank-service-
992
  #: interest.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:371 ..
993
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
994
  #: addons/gateway/carts/mycred-woocommerce.php:176 ..
995
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
996
  #: addons/gateway/carts/mycred-marketpress.php:428 ../addons/coupons/myCRED-
997
+ #: addon-coupons.php:557 ../addons/buy-creds/myCRED-addon-buy-creds.php:672 ..
998
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:735
999
  msgid "Log Template"
1000
  msgstr ""
1001
 
1002
+ #: ../modules/mycred-module-hooks.php:1157
1003
  #, php-format
1004
  msgid "%plural% for Posts"
1005
  msgstr ""
1006
 
1007
+ #: ../modules/mycred-module-hooks.php:1174
1008
  #, php-format
1009
  msgid "%plural% for Pages"
1010
  msgstr ""
1011
 
1012
+ #: ../modules/mycred-module-hooks.php:1223
1013
  #, php-format
1014
  msgid "%plural% for %s"
1015
  msgstr ""
1016
 
1017
+ #: ../modules/mycred-module-hooks.php:1670
1018
  #, php-format
1019
  msgid ""
1020
  "%plural% are only awarded when your website has been synced with the Disqus "
1021
  "server!"
1022
  msgstr ""
1023
 
1024
+ #: ../modules/mycred-module-hooks.php:1673 ../includes/mycred-functions.php:2600
1025
  msgid "Approved Comment"
1026
  msgstr ""
1027
 
1028
+ #: ../modules/mycred-module-hooks.php:1676 ../modules/mycred-module-hooks.php:
1029
+ #: 1693 ../modules/mycred-module-hooks.php:1710
1030
  msgid "Comment Author"
1031
  msgstr ""
1032
 
1033
+ #: ../modules/mycred-module-hooks.php:1690
1034
  msgid "Comment Marked SPAM"
1035
  msgstr ""
1036
 
1037
+ #: ../modules/mycred-module-hooks.php:1707
1038
  msgid "Trashed / Unapproved Comments"
1039
  msgstr ""
1040
 
1041
+ #: ../modules/mycred-module-hooks.php:1724 ../modules/mycred-module-hooks.php:
1042
+ #: 2042 ../addons/transfer/myCRED-addon-transfer.php:264 ../addons/coupons/myCRED-
1043
  #: addon-coupons.php:175
1044
  msgid "Limits"
1045
  msgstr ""
1046
 
1047
+ #: ../modules/mycred-module-hooks.php:1727
1048
  msgid "Limit per post"
1049
  msgstr ""
1050
 
1051
+ #: ../modules/mycred-module-hooks.php:1729
1052
  msgid ""
1053
  "The number of comments per post that grants %_plural% to the comment author. "
1054
  "Use zero for unlimited."
1055
  msgstr ""
1056
 
1057
+ #: ../modules/mycred-module-hooks.php:1733
1058
  msgid "Limit per day"
1059
  msgstr ""
1060
 
1061
+ #: ../modules/mycred-module-hooks.php:1735
1062
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
1063
  msgstr ""
1064
 
1065
+ #: ../modules/mycred-module-hooks.php:1740
1066
  #, php-format
1067
  msgid ""
1068
  "%plural% is to be awarded even when comment authors reply to their own "
1069
  "comment."
1070
  msgstr ""
1071
 
1072
+ #: ../modules/mycred-module-hooks.php:1820
1073
  msgid "Once for each unique URL"
1074
  msgstr ""
1075
 
1076
+ #: ../modules/mycred-module-hooks.php:1821
1077
  msgid "Once for each unique link id"
1078
  msgstr ""
1079
 
1080
+ #: ../modules/mycred-module-hooks.php:2032
1081
  msgid ""
1082
  "The default amount to award for clicking on links. You can override this in "
1083
  "the shortcode."
1084
  msgstr ""
1085
 
1086
+ #: ../modules/mycred-module-hooks.php:2039
1087
  #, php-format
1088
  msgid "Custom tags: %url%, %title% or %id%."
1089
  msgstr ""
1090
 
1091
+ #: ../modules/mycred-module-hooks.php:2052 ../modules/mycred-module-hooks.php:3106
1092
  msgid "Note!"
1093
  msgstr ""
1094
 
1095
+ #: ../modules/mycred-module-hooks.php:2052
1096
  msgid ""
1097
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
1098
  "generate one automatically based on the value set under href. If you are "
1100
  "by ID."
1101
  msgstr ""
1102
 
1103
+ #: ../modules/mycred-module-hooks.php:2054 ../modules/mycred-module-hooks.php:2438
1104
  msgid "Available Shortcode"
1105
  msgstr ""
1106
 
1107
+ #: ../modules/mycred-module-hooks.php:2402
1108
  msgid "Amount to award for viewing videos."
1109
  msgstr ""
1110
 
1111
+ #: ../modules/mycred-module-hooks.php:2412
1112
  msgid "Award Logic"
1113
  msgstr ""
1114
 
1115
+ #: ../modules/mycred-module-hooks.php:2414
1116
  #, php-format
1117
  msgid "Select when %_plural% should be awarded or deducted."
1118
  msgstr ""
1119
 
1120
+ #: ../modules/mycred-module-hooks.php:2415
1121
  msgid "Play - As soon as video starts playing."
1122
  msgstr ""
1123
 
1124
+ #: ../modules/mycred-module-hooks.php:2416
1125
  msgid "Full - First when the entire video has played."
1126
  msgstr ""
1127
 
1128
+ #: ../modules/mycred-module-hooks.php:2417
1129
  msgid "Interval - For each x number of seconds watched."
1130
  msgstr ""
1131
 
1132
+ #: ../modules/mycred-module-hooks.php:2420 ../addons/banking/services/mycred-bank-
1133
  #: service-payouts.php:271
1134
  msgid "Interval"
1135
  msgstr ""
1136
 
1137
+ #: ../modules/mycred-module-hooks.php:2422
1138
  msgid "Number of seconds"
1139
  msgstr ""
1140
 
1141
+ #: ../modules/mycred-module-hooks.php:2429
1142
  msgid "Leniency"
1143
  msgstr ""
1144
 
1145
+ #: ../modules/mycred-module-hooks.php:2431
1146
  msgid ""
1147
  "The maximum percentage a users view of a movie can differ from the actual "
1148
  "length."
1149
  msgstr ""
1150
 
1151
+ #: ../modules/mycred-module-hooks.php:2434
1152
  msgid ""
1153
  "Do not set this value to zero! A lot of thing can happen while a user "
1154
  "watches a movie and sometimes a few seconds can drop of the counter due to "
1155
  "buffering or play back errors."
1156
  msgstr ""
1157
 
1158
+ #: ../modules/mycred-module-hooks.php:2509
1159
  msgid "Affiliate Program"
1160
  msgstr ""
1161
 
1162
+ #: ../modules/mycred-module-hooks.php:2517 ../includes/mycred-admin.php:419 ..
1163
  #: addons/coupons/myCRED-addon-coupons.php:232
1164
  msgid "Total"
1165
  msgstr ""
1166
 
1167
+ #: ../modules/mycred-module-hooks.php:2518
1168
  msgid "Per Day"
1169
  msgstr ""
1170
 
1171
+ #: ../modules/mycred-module-hooks.php:2677
1172
  msgid "Link"
1173
  msgstr ""
1174
 
1175
+ #: ../modules/mycred-module-hooks.php:2681
1176
  msgid "Visitors Referred"
1177
  msgstr ""
1178
 
1179
+ #: ../modules/mycred-module-hooks.php:2685
1180
  msgid "Signups Referred"
1181
  msgstr ""
1182
 
1183
+ #: ../modules/mycred-module-hooks.php:3004 ../plugins/mycred-hook-affiliatewp.php:
1184
+ #: 235
1185
  msgid "Referring Visitors"
1186
  msgstr ""
1187
 
1188
+ #: ../modules/mycred-module-hooks.php:3023 ../modules/mycred-module-hooks.php:3043
1189
  msgid "Referring Signups"
1190
  msgstr ""
1191
 
1192
+ #: ../modules/mycred-module-hooks.php:3027
1193
  msgid "Visitors who have Cookies disabled will not award %_plural%."
1194
  msgstr ""
1195
 
1196
+ #: ../modules/mycred-module-hooks.php:3045
1197
  msgid "Registrations are disabled."
1198
  msgstr ""
1199
 
1200
+ #: ../modules/mycred-module-hooks.php:3053
1201
  msgid "Referral Links"
1202
  msgstr ""
1203
 
1204
+ #: ../modules/mycred-module-hooks.php:3057
1205
  msgid "Assign numeric referral IDs to each user."
1206
  msgstr ""
1207
 
1208
+ #: ../modules/mycred-module-hooks.php:3058 ../modules/mycred-module-hooks.php:3064
1209
  msgid "Example"
1210
  msgstr ""
1211
 
1212
+ #: ../modules/mycred-module-hooks.php:3063
1213
  msgid "Assign usernames as IDs for each user."
1214
  msgstr ""
1215
 
1216
+ #: ../modules/mycred-module-hooks.php:3067
1217
  msgid "IP Limit"
1218
  msgstr ""
1219
 
1220
+ #: ../modules/mycred-module-hooks.php:3071
1221
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
1222
  msgstr ""
1223
 
1224
+ #: ../modules/mycred-module-hooks.php:3075 ../modules/mycred-module-hooks.php:3110
1225
  msgid "BuddyPress Profile"
1226
  msgstr ""
1227
 
1228
+ #: ../modules/mycred-module-hooks.php:3078
1229
  msgid "Insert Link in users Profile"
1230
  msgstr ""
1231
 
1232
+ #: ../modules/mycred-module-hooks.php:3079
1233
  msgid ""
1234
  "Option to inser the referral link in users profiles. Links will only be "
1235
  "visible to users viewing their own profiles or administrators."
1236
  msgstr ""
1237
 
1238
+ #: ../modules/mycred-module-hooks.php:3083 ../includes/mycred-widgets.php:196 ..
1239
  #: includes/mycred-widgets.php:385 ../includes/mycred-widgets.php:594 ..
1240
  #: addons/gateway/carts/mycred-woocommerce.php:92 ..
1241
  #: addons/transfer/includes/mycred-transfer-widgets.php:120 ..
1242
+ #: addons/ranks/myCRED-addon-ranks.php:1330 ../addons/buy-creds/gateways/skrill.
1243
  #: php:339
1244
  msgid "Title"
1245
  msgstr ""
1246
 
1247
+ #: ../modules/mycred-module-hooks.php:3085
1248
  msgid "Leave empty to hide."
1249
  msgstr ""
1250
 
1251
+ #: ../modules/mycred-module-hooks.php:3088
1252
  msgid "Description"
1253
  msgstr ""
1254
 
1255
+ #: ../modules/mycred-module-hooks.php:3089
1256
  msgid "Optional description to insert under the link."
1257
  msgstr ""
1258
 
1259
+ #: ../modules/mycred-module-hooks.php:3103
1260
  msgid "Profile Positioning"
1261
  msgstr ""
1262
 
1263
+ #: ../modules/mycred-module-hooks.php:3105
1264
  msgid ""
1265
  "You can move around the referral link on your users profile by changing the "
1266
  "position. Increase to move up, decrease to move down."
1267
  msgstr ""
1268
 
1269
+ #: ../modules/mycred-module-hooks.php:3106
1270
  msgid "You can not move the referral link above the users \"Base\" profile details!"
1271
  msgstr ""
1272
 
1273
+ #: ../modules/mycred-module-hooks.php:3112
1274
  msgid "Requires BuddyPress Extended Profiles to be enabled."
1275
  msgstr ""
1276
 
1277
+ #: ../modules/mycred-module-hooks.php:3120 ../addons/buy-creds/myCRED-addon-buy-
1278
+ #: creds.php:740
1279
  msgid "Available Shortcodes"
1280
  msgstr ""
1281
 
1293
  msgstr ""
1294
 
1295
  #: ../modules/mycred-module-buddypress.php:236 ../modules/mycred-module-
1296
+ #: buddypress.php:249 ../includes/mycred-log.php:990
1297
  msgid "All"
1298
  msgstr ""
1299
 
1300
+ #: ../modules/mycred-module-buddypress.php:237 ../includes/mycred-log.php:991 ..
1301
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
1302
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:318
1303
  msgid "Today"
1304
  msgstr ""
1305
 
1306
+ #: ../modules/mycred-module-buddypress.php:238 ../includes/mycred-log.php:992
1307
  msgid "Yesterday"
1308
  msgstr ""
1309
 
1310
+ #: ../modules/mycred-module-buddypress.php:239 ../includes/mycred-log.php:993 ..
1311
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
1312
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:319
1313
  msgid "This Week"
1314
  msgstr ""
1315
 
1316
+ #: ../modules/mycred-module-buddypress.php:240 ../includes/mycred-log.php:994 ..
1317
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:192 ..
1318
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:320
1319
  msgid "This Month"
1320
  msgstr ""
1321
 
1323
  msgid "Go"
1324
  msgstr ""
1325
 
1326
+ #: ../modules/mycred-module-buddypress.php:423 ../addons/gateway/carts/mycred-
1327
+ #: woocommerce.php:152 ../addons/badges/myCRED-addon-badges.php:1010 ..
1328
+ #: addons/badges/myCRED-addon-badges.php:1046
1329
  msgid "Do not show"
1330
  msgstr ""
1331
 
1332
+ #: ../modules/mycred-module-buddypress.php:424 ../addons/badges/myCRED-addon-
1333
+ #: badges.php:1011
1334
  msgid "Include in Profile Header"
1335
  msgstr ""
1336
 
1337
+ #: ../modules/mycred-module-buddypress.php:425 ../addons/ranks/myCRED-addon-ranks.
1338
+ #: php:1419 ../addons/badges/myCRED-addon-badges.php:1012
1339
  msgid "Include under the \"Profile\" tab"
1340
  msgstr ""
1341
 
1342
+ #: ../modules/mycred-module-buddypress.php:426 ../addons/badges/myCRED-addon-
1343
+ #: badges.php:1013
1344
  msgid "Include under the \"Profile\" tab and Profile Header"
1345
  msgstr ""
1346
 
1347
+ #: ../modules/mycred-module-buddypress.php:430 ../addons/ranks/myCRED-addon-ranks.
1348
+ #: php:1417 ../addons/ranks/myCRED-addon-ranks.php:1462
1349
  msgid "Do not show."
1350
  msgstr ""
1351
 
1352
+ #: ../modules/mycred-module-buddypress.php:431
1353
  msgid "Show in Profile"
1354
  msgstr ""
1355
 
1356
+ #: ../modules/mycred-module-buddypress.php:448
1357
  #, php-format
1358
  msgid "%singular% Balance"
1359
  msgstr ""
1360
 
1361
+ #: ../modules/mycred-module-buddypress.php:465
1362
  #, php-format
1363
  msgid "Members and visitors can other members %_singular% balance."
1364
  msgstr ""
1365
 
1366
+ #: ../modules/mycred-module-buddypress.php:470 ../addons/ranks/myCRED-addon-ranks.
1367
+ #: php:1439 ../addons/ranks/myCRED-addon-ranks.php:1484 ..
1368
+ #: addons/notifications/myCRED-addon-notifications.php:202
1369
  msgid "Template"
1370
  msgstr ""
1371
 
1372
+ #: ../modules/mycred-module-buddypress.php:475
1373
  #, php-format
1374
  msgid "%plural% History"
1375
  msgstr ""
1376
 
1377
+ #: ../modules/mycred-module-buddypress.php:492
1378
  msgid "Members can view each others %_plural% history."
1379
  msgstr ""
1380
 
1381
+ #: ../modules/mycred-module-buddypress.php:497
1382
  msgid "Menu Title"
1383
  msgstr ""
1384
 
1385
+ #: ../modules/mycred-module-buddypress.php:499
1386
  msgid "Title shown to me"
1387
  msgstr ""
1388
 
1389
+ #: ../modules/mycred-module-buddypress.php:504
1390
  #, php-format
1391
  msgid "Title shown to others. Use %s to show the first name."
1392
  msgstr ""
1393
 
1394
+ #: ../modules/mycred-module-buddypress.php:509
1395
  msgid "Menu Position"
1396
  msgstr ""
1397
 
1398
+ #: ../modules/mycred-module-buddypress.php:511
1399
  msgid "Current menu positions:"
1400
  msgstr ""
1401
 
1402
+ #: ../modules/mycred-module-buddypress.php:516
1403
  msgid "History URL slug"
1404
  msgstr ""
1405
 
1406
+ #: ../modules/mycred-module-buddypress.php:518
1407
  msgid "Do not use empty spaces!"
1408
  msgstr ""
1409
 
1410
+ #: ../modules/mycred-module-buddypress.php:523
1411
  msgid "Number of history entries to show"
1412
  msgstr ""
1413
 
1414
+ #: ../plugins/mycred-hook-invite-anyone.php:15
1415
  msgid "Invite Anyone Plugin"
1416
  msgstr ""
1417
 
1418
+ #: ../plugins/mycred-hook-invite-anyone.php:16
1419
  #, php-format
1420
  msgid ""
1421
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
1422
  "accepted."
1423
  msgstr ""
1424
 
1425
+ #: ../plugins/mycred-hook-invite-anyone.php:204
1426
  #, php-format
1427
  msgid "%plural% for Sending An Invite"
1428
  msgstr ""
1429
 
1430
+ #: ../plugins/mycred-hook-invite-anyone.php:224
1431
  #, php-format
1432
  msgid "%plural% for Accepting An Invite"
1433
  msgstr ""
1434
 
1435
+ #: ../plugins/mycred-hook-invite-anyone.php:228
1436
  #, php-format
1437
  msgid "%plural% for each invited user that accepts an invitation."
1438
  msgstr ""
1439
 
1440
+ #: ../plugins/mycred-hook-wp-polls.php:15
1441
  msgid "WP-Polls"
1442
  msgstr ""
1443
 
1444
+ #: ../plugins/mycred-hook-wp-polls.php:16
1445
  #, php-format
1446
  msgid "Awards %_plural% for users voting in polls."
1447
  msgstr ""
1448
 
1449
+ #: ../plugins/mycred-hook-wp-postratings.php:15
1450
  msgid "Post Ratings"
1451
  msgstr ""
1452
 
1453
+ #: ../plugins/mycred-hook-wp-postratings.php:16
1454
  #, php-format
1455
  msgid ""
1456
  "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
1457
  "author and the user rating."
1458
  msgstr ""
1459
 
1460
+ #: ../plugins/mycred-hook-wp-postratings.php:84
1461
  msgid "Based on rating"
1462
  msgstr ""
1463
 
1464
+ #: ../plugins/mycred-hook-wp-postratings.php:159 ../includes/mycred-functions.php:
1465
+ #: 2675
1466
  msgid "Adding a Rating"
1467
  msgstr ""
1468
 
1469
+ #: ../plugins/mycred-hook-wp-postratings.php:169 ../plugins/mycred-hook-wp-
1470
+ #: postratings.php:188
1471
  msgid "Use the Rating Value instead of the amount set here."
1472
  msgstr ""
1473
 
1474
+ #: ../plugins/mycred-hook-wp-postratings.php:178 ../includes/mycred-functions.php:
1475
+ #: 2676
1476
  msgid "Receiving a Rating"
1477
  msgstr ""
1478
 
1479
+ #: ../plugins/mycred-hook-gravityforms.php:15
1480
  msgid "Gravityform Submissions"
1481
  msgstr ""
1482
 
1483
+ #: ../plugins/mycred-hook-gravityforms.php:16
1484
  #, php-format
1485
  msgid "Awards %_plural% for successful form submissions."
1486
  msgstr ""
1487
 
1488
+ #: ../plugins/mycred-hook-gravityforms.php:129 ../plugins/mycred-hook-contact-
1489
+ #: form7.php:130
1490
  msgid "No forms found."
1491
  msgstr ""
1492
 
1493
+ #: ../plugins/mycred-hook-gd-star-rating.php:15
1494
  msgid "GD Star Rating"
1495
  msgstr ""
1496
 
1497
+ #: ../plugins/mycred-hook-gd-star-rating.php:16
1498
  #, php-format
1499
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
1500
  msgstr ""
1501
 
1502
+ #: ../plugins/mycred-hook-gd-star-rating.php:115
1503
  msgid "Rating"
1504
  msgstr ""
1505
 
1506
+ #: ../plugins/mycred-hook-gd-star-rating.php:128
1507
  msgid "Up / Down Vote"
1508
  msgstr ""
1509
 
1510
+ #: ../plugins/mycred-hook-simplepress.php:16
1511
  #, php-format
1512
  msgid "Awards %_plural% for Simple:Press actions."
1513
  msgstr ""
1514
 
1515
+ #: ../plugins/mycred-hook-simplepress.php:298 ../plugins/mycred-hook-bbPress.php:
1516
+ #: 462
1517
  #, php-format
1518
  msgid "%plural% for New Topic"
1519
  msgstr ""
1520
 
1521
+ #: ../plugins/mycred-hook-simplepress.php:315 ../plugins/mycred-hook-bbPress.php:
1522
+ #: 484
1523
  #, php-format
1524
  msgid "%plural% for Topic Deletion"
1525
  msgstr ""
1526
 
1527
+ #: ../plugins/mycred-hook-simplepress.php:328
1528
  #, php-format
1529
  msgid "%plural% for New Topic Post"
1530
  msgstr ""
1531
 
1532
+ #: ../plugins/mycred-hook-simplepress.php:346
1533
  #, php-format
1534
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
1535
  msgstr ""
1536
 
1537
+ #: ../plugins/mycred-hook-simplepress.php:350
1538
  #, php-format
1539
  msgid "%plural% for Topic Post Deletion"
1540
  msgstr ""
1541
 
1542
+ #: ../plugins/mycred-hook-marketpress.php:70 ../plugins/mycred-hook-woocommerce.
1543
+ #: php:87
1544
  #, php-format
1545
  msgid "Reward with %plural%"
1546
  msgstr ""
1547
 
1548
+ #: ../plugins/mycred-hook-buddypress-gallery.php:15
1549
  msgid "BuddyPress: Gallery Actions"
1550
  msgstr ""
1551
 
1552
+ #: ../plugins/mycred-hook-buddypress-gallery.php:16
1553
  #, php-format
1554
  msgid ""
1555
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
1556
  "Gallery."
1557
  msgstr ""
1558
 
1559
+ #: ../plugins/mycred-hook-buddypress-gallery.php:105
1560
  #, php-format
1561
  msgid "%plural% for New Gallery"
1562
  msgstr ""
1563
 
1564
+ #: ../plugins/mycred-hook-buddypress.php:16
1565
  msgid "BuddyPress: Members"
1566
  msgstr ""
1567
 
1568
+ #: ../plugins/mycred-hook-buddypress.php:17
1569
  #, php-format
1570
  msgid "Awards %_plural% for profile related actions."
1571
  msgstr ""
1572
 
1573
+ #: ../plugins/mycred-hook-buddypress.php:24
1574
  msgid "BuddyPress: Groups"
1575
  msgstr ""
1576
 
1577
+ #: ../plugins/mycred-hook-buddypress.php:25
1578
  #, php-format
1579
  msgid ""
1580
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
1581
  "zero to disable a specific hook."
1582
  msgstr ""
1583
 
1584
+ #: ../plugins/mycred-hook-buddypress.php:259 ../addons/gateway/event-
1585
  #: booking/mycred-eventsmanager.php:636 ../addons/gateway/event-booking/mycred-
1586
  #: eventsmanager-pro.php:617 ../addons/gateway/carts/mycred-wpecommerce.php:386 ..
1587
  #: addons/gateway/carts/mycred-marketpress.php:438
1588
  msgid "Insufficient Funds"
1589
  msgstr ""
1590
 
1591
+ #: ../plugins/mycred-hook-buddypress.php:509
1592
  #, php-format
1593
  msgid "%plural% for Profile Updates"
1594
  msgstr ""
1595
 
1596
+ #: ../plugins/mycred-hook-buddypress.php:526
1597
  #, php-format
1598
  msgid "%plural% for Removing Profile Update"
1599
  msgstr ""
1600
 
1601
+ #: ../plugins/mycred-hook-buddypress.php:543
1602
  #, php-format
1603
  msgid "%plural% for New Avatar"
1604
  msgstr ""
1605
 
1606
+ #: ../plugins/mycred-hook-buddypress.php:560
1607
  #, php-format
1608
  msgid "%plural% for New Friendships"
1609
  msgstr ""
1610
 
1611
+ #: ../plugins/mycred-hook-buddypress.php:570
1612
  #, php-format
1613
  msgid ""
1614
  "Users with zero balance can not add friends. Requires that you deduct "
1615
  "%_plural% for adding a new friend."
1616
  msgstr ""
1617
 
1618
+ #: ../plugins/mycred-hook-buddypress.php:580
1619
  #, php-format
1620
  msgid "%plural% for Leaving Friendship"
1621
  msgstr ""
1622
 
1623
+ #: ../plugins/mycred-hook-buddypress.php:593
1624
  #, php-format
1625
  msgid "%plural% for New Comment"
1626
  msgstr ""
1627
 
1628
+ #: ../plugins/mycred-hook-buddypress.php:610
1629
  #, php-format
1630
  msgid "%plural% for Deleting Comment"
1631
  msgstr ""
1632
 
1633
+ #: ../plugins/mycred-hook-buddypress.php:623
1634
  #, php-format
1635
  msgid "%plural% for New Messages"
1636
  msgstr ""
1637
 
1638
+ #: ../plugins/mycred-hook-buddypress.php:640
1639
  #, php-format
1640
  msgid "%plural% for Sending Gift"
1641
  msgstr ""
1642
 
1643
+ #: ../plugins/mycred-hook-buddypress.php:1217
1644
  #, php-format
1645
  msgid "%plural% for Creating Groups"
1646
  msgstr ""
1647
 
1648
+ #: ../plugins/mycred-hook-buddypress.php:1221
1649
  msgid ""
1650
  "If you use a negative value and the user does not have enough %_plural% the "
1651
  "\"Create Group\" button will be disabled."
1652
  msgstr ""
1653
 
1654
+ #: ../plugins/mycred-hook-buddypress.php:1225
1655
  msgid "Number of members before awarding %_plural%"
1656
  msgstr ""
1657
 
1658
+ #: ../plugins/mycred-hook-buddypress.php:1227
1659
  msgid "Use zero to award %_plural% when group is created."
1660
  msgstr ""
1661
 
1662
+ #: ../plugins/mycred-hook-buddypress.php:1237
1663
  #, php-format
1664
  msgid "%plural% for Deleting Groups"
1665
  msgstr ""
1666
 
1667
+ #: ../plugins/mycred-hook-buddypress.php:1250
1668
  #, php-format
1669
  msgid "%plural% for New Forum Topic"
1670
  msgstr ""
1671
 
1672
+ #: ../plugins/mycred-hook-buddypress.php:1267
1673
  #, php-format
1674
  msgid "%plural% for Editing Forum Topic"
1675
  msgstr ""
1676
 
1677
+ #: ../plugins/mycred-hook-buddypress.php:1284
1678
  #, php-format
1679
  msgid "%plural% for New Forum Post"
1680
  msgstr ""
1681
 
1682
+ #: ../plugins/mycred-hook-buddypress.php:1301
1683
  #, php-format
1684
  msgid "%plural% for Editing Forum Post"
1685
  msgstr ""
1686
 
1687
+ #: ../plugins/mycred-hook-buddypress.php:1318
1688
  #, php-format
1689
  msgid "%plural% for Joining Groups"
1690
  msgstr ""
1691
 
1692
+ #: ../plugins/mycred-hook-buddypress.php:1322
1693
  msgid ""
1694
  "If you use a negative value and the user does not have enough %_plural% the "
1695
  "\"Join Group\" button will be disabled."
1696
  msgstr ""
1697
 
1698
+ #: ../plugins/mycred-hook-buddypress.php:1336
1699
  #, php-format
1700
  msgid "%plural% for Leaving Groups"
1701
  msgstr ""
1702
 
1703
+ #: ../plugins/mycred-hook-buddypress.php:1349
1704
  #, php-format
1705
  msgid "%plural% for New Group Avatar"
1706
  msgstr ""
1707
 
1708
+ #: ../plugins/mycred-hook-buddypress.php:1366
1709
  #, php-format
1710
  msgid "%plural% for New Group Comment"
1711
  msgstr ""
1712
 
1713
+ #: ../plugins/mycred-hook-buddypress-links.php:15
1714
  msgid "BuddyPress: Links"
1715
  msgstr ""
1716
 
1717
+ #: ../plugins/mycred-hook-buddypress-links.php:16
1718
  #, php-format
1719
  msgid "Awards %_plural% for link related actions."
1720
  msgstr ""
1721
 
1722
+ #: ../plugins/mycred-hook-buddypress-links.php:260
1723
  #, php-format
1724
  msgid "%plural% for New Links"
1725
  msgstr ""
1726
 
1727
+ #: ../plugins/mycred-hook-buddypress-links.php:277
1728
  #, php-format
1729
  msgid "%plural% for Vote on Link"
1730
  msgstr ""
1731
 
1732
+ #: ../plugins/mycred-hook-buddypress-links.php:293
1733
  #, php-format
1734
  msgid "%plural% per received Vote"
1735
  msgstr ""
1736
 
1737
+ #: ../plugins/mycred-hook-buddypress-links.php:296
1738
  msgid "Vote Up"
1739
  msgstr ""
1740
 
1741
+ #: ../plugins/mycred-hook-buddypress-links.php:315
1742
  msgid "Vote Down"
1743
  msgstr ""
1744
 
1745
+ #: ../plugins/mycred-hook-buddypress-links.php:330
1746
  #, php-format
1747
  msgid "%plural% for Updating Links"
1748
  msgstr ""
1749
 
1750
+ #: ../plugins/mycred-hook-buddypress-links.php:347
1751
  #, php-format
1752
  msgid "%plural% for Deleting Links"
1753
  msgstr ""
1754
 
1755
+ #: ../plugins/mycred-hook-affiliatewp.php:15
1756
  msgid "AffiliateWP"
1757
  msgstr ""
1758
 
1759
+ #: ../plugins/mycred-hook-affiliatewp.php:16
1760
  #, php-format
1761
  msgid ""
1762
  "Awards %_plural% for affiliate signups, referring visitors and store sale "
1763
  "referrals."
1764
  msgstr ""
1765
 
1766
+ #: ../plugins/mycred-hook-affiliatewp.php:222
1767
  msgid "Affiliate Signup"
1768
  msgstr ""
1769
 
1770
+ #: ../plugins/mycred-hook-affiliatewp.php:252
1771
  msgid "Referring Sales"
1772
  msgstr ""
1773
 
1774
+ #: ../plugins/mycred-hook-affiliatewp.php:255
1775
  msgid "Pay a set amount for all referrals."
1776
  msgstr ""
1777
 
1778
+ #: ../plugins/mycred-hook-affiliatewp.php:256
1779
  #, php-format
1780
  msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
1781
  msgstr ""
1782
 
1783
+ #: ../plugins/mycred-hook-affiliatewp.php:257
1784
  msgid "Apply an exchange rate against the referral amount."
1785
  msgstr ""
1786
 
1787
+ #: ../plugins/mycred-hook-affiliatewp.php:260 ../includes/mycred-shortcodes.php:
1788
+ #: 1000 ../includes/mycred-shortcodes.php:1142 ../includes/mycred-admin.php:755 ..
1789
+ #: includes/mycred-admin.php:807 ../addons/banking/services/mycred-bank-service-
1790
+ #: payouts.php:266 ../addons/buy-creds/myCRED-addon-buy-creds.php:343 ..
1791
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:1635 ../addons/buy-creds/myCRED-
1792
+ #: addon-buy-creds.php:1715 ../addons/buy-creds/abstracts/mycred-abstract-payment-
1793
  #: gateway.php:593
1794
  msgid "Amount"
1795
  msgstr ""
1796
 
1797
+ #: ../plugins/mycred-hook-affiliatewp.php:265
1798
  msgid "Log template - Payout"
1799
  msgstr ""
1800
 
1801
+ #: ../plugins/mycred-hook-affiliatewp.php:270
1802
  msgid "Log template - Refund"
1803
  msgstr ""
1804
 
1805
+ #: ../plugins/mycred-hook-events-manager-light.php:15
1806
  msgid "Events Manager"
1807
  msgstr ""
1808
 
1809
+ #: ../plugins/mycred-hook-events-manager-light.php:16
1810
  #, php-format
1811
  msgid "Awards %_plural% for users attending events."
1812
  msgstr ""
1813
 
1814
+ #: ../plugins/mycred-hook-events-manager-light.php:199
1815
  msgid "Attending Event"
1816
  msgstr ""
1817
 
1818
+ #: ../plugins/mycred-hook-events-manager-light.php:216
1819
  msgid "Cancelling Attendance"
1820
  msgstr ""
1821
 
1822
+ #: ../plugins/mycred-hook-sharethis.php:15
1823
  #, php-format
1824
  msgid "%plural% for Sharing"
1825
  msgstr ""
1826
 
1827
+ #: ../plugins/mycred-hook-sharethis.php:16
1828
  #, php-format
1829
  msgid ""
1830
  "Awards %_plural% for users sharing / liking your website content to popular "
1839
  msgid "No ShareThis services detected. Please check your installation."
1840
  msgstr ""
1841
 
1842
+ #: ../plugins/mycred-hook-buddypress-media.php:15
1843
  msgid "rtMedia Galleries"
1844
  msgstr ""
1845
 
1846
+ #: ../plugins/mycred-hook-buddypress-media.php:16
1847
  #, php-format
1848
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
1849
  msgstr ""
1850
 
1851
+ #: ../plugins/mycred-hook-buddypress-media.php:213
1852
  msgid "New Media Upload"
1853
  msgstr ""
1854
 
1855
+ #: ../plugins/mycred-hook-buddypress-media.php:216 ../includes/mycred-functions.
1856
+ #: php:2633
1857
  msgid "Photo Upload"
1858
  msgstr ""
1859
 
1860
+ #: ../plugins/mycred-hook-buddypress-media.php:230 ../includes/mycred-functions.
1861
+ #: php:2634
1862
  msgid "Video Upload"
1863
  msgstr ""
1864
 
1865
+ #: ../plugins/mycred-hook-buddypress-media.php:244 ../includes/mycred-functions.
1866
+ #: php:2635
1867
  msgid "Music Upload"
1868
  msgstr ""
1869
 
1870
+ #: ../plugins/mycred-hook-buddypress-media.php:258
1871
  msgid "Delete Media"
1872
  msgstr ""
1873
 
1874
+ #: ../plugins/mycred-hook-buddypress-media.php:261
1875
  msgid "Delete Photo"
1876
  msgstr ""
1877
 
1878
+ #: ../plugins/mycred-hook-buddypress-media.php:271
1879
  msgid "Delete Video"
1880
  msgstr ""
1881
 
1882
+ #: ../plugins/mycred-hook-buddypress-media.php:281
1883
  msgid "Delete Music"
1884
  msgstr ""
1885
 
1886
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:15
1887
  msgid "WP Favorite Posts"
1888
  msgstr ""
1889
 
1890
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:16
1891
  #, php-format
1892
  msgid "Awards %_plural% for users adding posts to their favorites."
1893
  msgstr ""
1894
 
1895
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:216
1896
  msgid "Adding Content to Favorites"
1897
  msgstr ""
1898
 
1899
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:234
1900
  msgid "Authors Content added to favorites"
1901
  msgstr ""
1902
 
1903
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:252
1904
  msgid "Removing Content from Favorites"
1905
  msgstr ""
1906
 
1907
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:265
1908
  msgid "Removing Content from Favorites (Author)"
1909
  msgstr ""
1910
 
1911
+ #: ../plugins/mycred-hook-contact-form7.php:15
1912
  msgid "Contact Form 7 Form Submissions"
1913
  msgstr ""
1914
 
1915
+ #: ../plugins/mycred-hook-contact-form7.php:16
1916
  #, php-format
1917
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
1918
  msgstr ""
1919
 
1920
+ #: ../plugins/mycred-hook-jetpack.php:15
1921
  msgid "Jetpack Subscriptions"
1922
  msgstr ""
1923
 
1924
+ #: ../plugins/mycred-hook-jetpack.php:16
1925
  #, php-format
1926
  msgid ""
1927
  "Awards %_plural% for users signing up for site or comment updates using "
1928
  "Jetpack."
1929
  msgstr ""
1930
 
1931
+ #: ../plugins/mycred-hook-jetpack.php:538
1932
  msgid "Site Subscriptions"
1933
  msgstr ""
1934
 
1935
+ #: ../plugins/mycred-hook-jetpack.php:551
1936
  msgid "Comment Subscriptions"
1937
  msgstr ""
1938
 
1939
+ #: ../plugins/mycred-hook-bbPress.php:15
1940
  msgid "bbPress"
1941
  msgstr ""
1942
 
1943
+ #: ../plugins/mycred-hook-bbPress.php:16
1944
  #, php-format
1945
  msgid "Awards %_plural% for bbPress actions."
1946
  msgstr ""
1947
 
1948
+ #: ../plugins/mycred-hook-bbPress.php:432
1949
  #, php-format
1950
  msgid "%plural% for New Forum"
1951
  msgstr ""
1952
 
1953
+ #: ../plugins/mycred-hook-bbPress.php:449
1954
  #, php-format
1955
  msgid "%plural% for Forum Deletion"
1956
  msgstr ""
1957
 
1958
+ #: ../plugins/mycred-hook-bbPress.php:480
1959
  #, php-format
1960
  msgid "Forum authors can receive %_plural% for creating new topics."
1961
  msgstr ""
1962
 
1963
+ #: ../plugins/mycred-hook-bbPress.php:497
1964
  #, php-format
1965
  msgid "%plural% for Favorited Topic"
1966
  msgstr ""
1967
 
1968
+ #: ../plugins/mycred-hook-bbPress.php:514
1969
  #, php-format
1970
  msgid "%plural% for New Reply"
1971
  msgstr ""
1972
 
1973
+ #: ../plugins/mycred-hook-bbPress.php:532
1974
  #, php-format
1975
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
1976
  msgstr ""
1977
 
1978
+ #: ../plugins/mycred-hook-bbPress.php:536
1979
  #, php-format
1980
  msgid "Show users %_plural% balance in replies"
1981
  msgstr ""
1982
 
1983
+ #: ../plugins/mycred-hook-bbPress.php:540
1984
+ #, php-format
1985
+ msgid "Show users %_plural% balance in their bbPress profiles."
1986
+ msgstr ""
1987
+
1988
+ #: ../plugins/mycred-hook-bbPress.php:544
1989
  #, php-format
1990
  msgid "%plural% for Reply Deletion"
1991
  msgstr ""
1992
 
1993
+ #: ../plugins/mycred-hook-woocommerce.php:216
1994
  msgid "WooCommerce Product Reviews"
1995
  msgstr ""
1996
 
1997
+ #: ../plugins/mycred-hook-woocommerce.php:217
1998
  #, php-format
1999
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
2000
  msgstr ""
2001
 
2002
+ #: ../plugins/mycred-hook-badgeOS.php:15
2003
  msgid "BadgeOS"
2004
  msgstr ""
2005
 
2006
+ #: ../plugins/mycred-hook-badgeOS.php:16
2007
  msgid ""
2008
  "Default settings for each BadgeOS Achievement type. These settings may be "
2009
  "overridden for individual achievement type."
2010
  msgstr ""
2011
 
2012
+ #: ../plugins/mycred-hook-badgeOS.php:121
2013
  #, php-format
2014
  msgid ""
2015
  "Please setup your <a href=\"%s\">default settings</a> before using this "
2016
  "feature."
2017
  msgstr ""
2018
 
2019
+ #: ../plugins/mycred-hook-badgeOS.php:137 ../plugins/mycred-hook-badgeOS.php:139
2020
  #, php-format
2021
  msgid "%plural% to Award"
2022
  msgstr ""
2023
 
2024
+ #: ../plugins/mycred-hook-badgeOS.php:141
2025
  msgid "Use zero to disable"
2026
  msgstr ""
2027
 
2028
+ #: ../plugins/mycred-hook-badgeOS.php:154
2029
  msgid "Deduction Log Template"
2030
  msgstr ""
2031
 
2032
+ #: ../plugins/mycred-hook-badgeOS.php:315
2033
  #, php-format
2034
  msgid "Default %s for %s"
2035
  msgstr ""
2036
 
2037
+ #: ../plugins/mycred-hook-badgeOS.php:322
2038
  msgid "Use zero to disable users gaining %_plural%"
2039
  msgstr ""
2040
 
2041
+ #: ../plugins/mycred-hook-badgeOS.php:326
2042
  msgid "Default Log template"
2043
  msgstr ""
2044
 
2066
  msgstr ""
2067
 
2068
  #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
2069
+ #: 379
2070
  msgid "Import CubePoints log entries and / or balances."
2071
  msgstr ""
2072
 
2145
  msgid "No export options available."
2146
  msgstr ""
2147
 
2148
+ #: ../includes/mycred-log.php:755 ../addons/buy-creds/myCRED-addon-buy-creds.php:
2149
+ #: 1074
2150
  msgid "Date"
2151
  msgstr ""
2152
 
2153
+ #: ../includes/mycred-log.php:757
2154
  msgid "Entry"
2155
  msgstr ""
2156
 
2157
+ #: ../includes/mycred-log.php:956
2158
  msgid "No log entries found"
2159
  msgstr ""
2160
 
2161
+ #: ../includes/mycred-log.php:974 ../includes/mycred-log.php:976
2162
  msgid "Search Log"
2163
  msgstr ""
2164
 
2165
+ #: ../includes/mycred-log.php:975
2166
  msgid "search log entries"
2167
  msgstr ""
2168
 
2303
  msgid "Save Network Settings"
2304
  msgstr ""
2305
 
2306
+ #: ../includes/mycred-about.php:89
2307
  #, php-format
2308
  msgid "Welcome to %s %s"
2309
  msgstr ""
2310
 
2311
+ #: ../includes/mycred-shortcodes.php:178
2312
  msgid "Leaderboard is empty."
2313
  msgstr ""
2314
 
2315
+ #: ../includes/mycred-shortcodes.php:468 ../includes/mycred-shortcodes.php:532 ..
2316
+ #: includes/mycred-shortcodes.php:594 ../includes/mycred-shortcodes.php:953 ..
2317
+ #: includes/mycred-shortcodes.php:1080
2318
+ msgid "Point type not found."
2319
  msgstr ""
2320
 
2321
+ #: ../includes/mycred-shortcodes.php:536
2322
  msgid "Anchor missing URL!"
2323
  msgstr ""
2324
 
2325
+ #: ../includes/mycred-shortcodes.php:654
2326
  msgid "Sent"
2327
  msgstr ""
2328
 
2329
+ #: ../includes/mycred-shortcodes.php:655
2330
  msgid "Error - Try Again"
2331
  msgstr ""
2332
 
2333
+ #: ../includes/mycred-shortcodes.php:793
2334
  msgid "A video ID is required for this shortcode"
2335
  msgstr ""
2336
 
2337
+ #: ../includes/mycred-shortcodes.php:959 ../includes/mycred-shortcodes.php:967 ..
2338
+ #: includes/mycred-functions.php:2827 ../includes/mycred-functions.php:2847
 
 
 
 
2339
  #, php-format
2340
  msgid "You are excluded from using %s."
2341
  msgstr ""
2342
 
2343
+ #: ../includes/mycred-shortcodes.php:963 ../includes/mycred-functions.php:2837
2344
  msgid "Your balance is too low to use this feature."
2345
  msgstr ""
2346
 
2347
+ #: ../includes/mycred-shortcodes.php:985
2348
  #, php-format
2349
  msgid "Convert <span>%s</span> to <span>%s</span>"
2350
  msgstr ""
2351
 
2352
+ #: ../includes/mycred-shortcodes.php:994
2353
  #, php-format
2354
  msgid "Your current %s balance"
2355
  msgstr ""
2356
 
2357
+ #: ../includes/mycred-shortcodes.php:1002
2358
  #, php-format
2359
  msgid "Minimum %s"
2360
  msgstr ""
2361
 
2362
+ #: ../includes/mycred-shortcodes.php:1005 ../addons/gateway/event-booking/mycred-
2363
  #: eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager.
2364
  #: php:578 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:540 ..
2365
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ..
2368
  msgid "Exchange Rate"
2369
  msgstr ""
2370
 
2371
+ #: ../includes/mycred-shortcodes.php:1006
2372
  #, php-format
2373
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
2374
  msgstr ""
2375
 
2376
+ #: ../includes/mycred-shortcodes.php:1012
2377
  msgid "Exchange"
2378
  msgstr ""
2379
 
2380
+ #: ../includes/mycred-shortcodes.php:1077
2381
  msgid "No instances found for this point type"
2382
  msgstr ""
2383
 
2384
+ #: ../includes/mycred-shortcodes.php:1141
 
 
 
 
2385
  msgid "Instance"
2386
  msgstr ""
2387
 
2391
  msgstr ""
2392
 
2393
  #: ../includes/mycred-overview.php:78 ../addons/stats/widgets/mycred-stats-widget-
2394
+ #: circulation.php:136 ../addons/stats/widgets/mycred-stats-widget-circulation.
2395
+ #: php:265
2396
  msgid "Total amount in circulation"
2397
  msgstr ""
2398
 
2410
  msgstr ""
2411
 
2412
  #: ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ..
2413
+ #: addons/sell-content/myCRED-addon-sell-content.php:430
2414
  msgid "Sell Content"
2415
  msgstr ""
2416
 
2417
  #: ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ..
2418
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
2419
+ #: addon-buy-creds.php:1072 ../addons/buy-creds/myCRED-addon-buy-creds.php:1714
2420
  msgid "Gateway"
2421
  msgstr ""
2422
 
2507
  msgstr ""
2508
 
2509
  #: ../includes/mycred-install.php:536 ../addons/buy-creds/myCRED-addon-buy-creds.
2510
+ #: php:1689
2511
  msgid "Cancel"
2512
  msgstr ""
2513
 
2536
  msgid "Install & Run"
2537
  msgstr ""
2538
 
2539
+ #: ../includes/mycred-admin.php:201
2540
  msgid "A log entry is required in order to adjust this users balance"
2541
  msgstr ""
2542
 
2543
+ #: ../includes/mycred-admin.php:203
2544
  msgid "Users balance saved"
2545
  msgstr ""
2546
 
2547
+ #: ../includes/mycred-admin.php:211
2548
  msgid "Users excluded"
2549
  msgstr ""
2550
 
2551
+ #: ../includes/mycred-admin.php:216
2552
  msgid ""
2553
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
2554
  "rate settings and update all premium payment gateways!"
2555
  msgstr ""
2556
 
2557
+ #: ../includes/mycred-admin.php:245
2558
  msgid "User is excluded"
2559
  msgstr ""
2560
 
2561
+ #: ../includes/mycred-admin.php:250
2562
  msgid "Log Entry can not be empty"
2563
  msgstr ""
2564
 
2565
+ #: ../includes/mycred-admin.php:254
2566
  msgid "Amount can not be zero"
2567
  msgstr ""
2568
 
2569
+ #: ../includes/mycred-admin.php:275
2570
  msgid "Failed to update this uses balance."
2571
  msgstr ""
2572
 
2573
+ #: ../includes/mycred-admin.php:409
2574
  msgid "Excluded"
2575
  msgstr ""
2576
 
2577
+ #: ../includes/mycred-admin.php:430
2578
  msgid "Adjust"
2579
  msgstr ""
2580
 
2581
+ #: ../includes/mycred-admin.php:472 ../includes/mycred-admin.php:473
2582
  msgid "Edit Balance"
2583
  msgstr ""
2584
 
2585
+ #: ../includes/mycred-admin.php:493
2586
  msgid "Profile"
2587
  msgstr ""
2588
 
2589
+ #: ../includes/mycred-admin.php:500
2590
  msgid "Extended Profile"
2591
  msgstr ""
2592
 
2593
+ #: ../includes/mycred-admin.php:594
2594
  #, php-format
2595
  msgid "This user is excluded from using %s"
2596
  msgstr ""
2597
 
2598
+ #: ../includes/mycred-admin.php:618
2599
  msgid "Edit User"
2600
  msgstr ""
2601
 
2602
+ #: ../includes/mycred-admin.php:620
2603
  msgctxt "user"
2604
  msgid "Add New"
2605
  msgstr ""
2606
 
2607
+ #: ../includes/mycred-admin.php:622
2608
  msgctxt "user"
2609
  msgid "Add Existing"
2610
  msgstr ""
2611
 
2612
+ #: ../includes/mycred-admin.php:632 ../includes/mycred-admin.php:803 ..
2613
  #: addons/gateway/event-booking/mycred-eventespresso3.php:277 ..
2614
  #: addons/gateway/event-booking/mycred-eventespresso3.php:301 ..
2615
  #: addons/gateway/event-booking/mycred-eventsmanager.php:412 ..
2617
  msgid "Current Balance"
2618
  msgstr ""
2619
 
2620
+ #: ../includes/mycred-admin.php:633
2621
  #, php-format
2622
  msgid "Total %s Accumulated"
2623
  msgstr ""
2624
 
2625
+ #: ../includes/mycred-admin.php:634
2626
  #, php-format
2627
  msgid "Total %s Spent"
2628
  msgstr ""
2629
 
2630
+ #: ../includes/mycred-admin.php:645
2631
  msgid "View History"
2632
  msgstr ""
2633
 
2634
+ #: ../includes/mycred-admin.php:646
2635
  msgid "Exclude User"
2636
  msgstr ""
2637
 
2638
+ #: ../includes/mycred-admin.php:650
2639
  msgid "Adjust Balance"
2640
  msgstr ""
2641
 
2642
+ #: ../includes/mycred-admin.php:659
2643
  msgid ""
2644
  "Warning! Excluding this user will result in their balance being deleted "
2645
  "along with any entries currently in your log! This can not be undone!"
2646
  msgstr ""
2647
 
2648
+ #: ../includes/mycred-admin.php:724
2649
  #, php-format
2650
  msgid "%singular% balance"
2651
  msgstr ""
2652
 
2653
+ #: ../includes/mycred-admin.php:748 ../includes/mycred-admin.php:792 ..
2654
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503
2655
  msgid "required"
2656
  msgstr ""
2657
 
2658
+ #: ../includes/mycred-admin.php:750 ../includes/mycred-admin.php:794 ..
2659
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504
2660
  msgid "optional"
2661
  msgstr ""
2662
 
2663
+ #: ../includes/mycred-admin.php:764 ../includes/mycred-admin.php:808 ..
2664
  #: addons/gateway/event-booking/mycred-eventespresso3.php:470
2665
  msgid "Log Entry"
2666
  msgstr ""
2667
 
2668
+ #: ../includes/mycred-admin.php:768 ../includes/mycred-admin.php:809
2669
  msgid "Update Balance"
2670
  msgstr ""
2671
 
2672
+ #: ../includes/mycred-admin.php:801
2673
  msgid "ID"
2674
  msgstr ""
2675
 
2676
+ #: ../includes/mycred-admin.php:807
2677
  msgid "A positive or negative value"
2678
  msgstr ""
2679
 
2688
  msgstr ""
2689
 
2690
  #: ../includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:391 ..
2691
+ #: includes/importers/mycred-cubepoints.php:401 ../addons/gateway/event-
2692
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
2693
  #: eventsmanager.php:550 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
2694
  #: php:504 ../addons/gateway/carts/mycred-wpecommerce.php:354 ..
2695
  #: addons/gateway/carts/mycred-woocommerce.php:120 ..
2696
  #: addons/gateway/carts/mycred-marketpress.php:389 ../addons/ranks/myCRED-addon-
2697
+ #: ranks.php:1052 ../addons/ranks/myCRED-addon-ranks.php:1209 ../addons/email-
2698
+ #: notices/myCRED-addon-email-notices.php:844 ../addons/email-notices/myCRED-
2699
+ #: addon-email-notices.php:1089 ../addons/coupons/myCRED-addon-coupons.php:179 ..
2700
  #: addons/coupons/myCRED-addon-coupons.php:388 ../addons/sell-content/myCRED-
2701
+ #: addon-sell-content.php:442
2702
  msgid "Point Type"
2703
  msgstr ""
2704
 
2797
  msgid "Row Layout"
2798
  msgstr ""
2799
 
2800
+ #: ../includes/mycred-functions.php:86
2801
  msgid "Point"
2802
  msgstr ""
2803
 
2804
+ #: ../includes/mycred-functions.php:87
2805
  msgid "Points"
2806
  msgstr ""
2807
 
2808
+ #: ../includes/mycred-functions.php:448
2809
  msgid "Deleted"
2810
  msgstr ""
2811
 
2812
+ #: ../includes/mycred-functions.php:595
2813
  msgid "Deleted Item"
2814
  msgstr ""
2815
 
2816
+ #: ../includes/mycred-functions.php:659 ../addons/gateway/carts/mycred-
2817
+ #: wpecommerce.php:341 ../addons/email-notices/myCRED-addon-email-notices.php:210
2818
  msgid "General"
2819
  msgstr ""
2820
 
2821
+ #: ../includes/mycred-functions.php:666
2822
  msgid "User Related"
2823
  msgstr ""
2824
 
2825
+ #: ../includes/mycred-functions.php:673
2826
  msgid "Post Related"
2827
  msgstr ""
2828
 
2829
+ #: ../includes/mycred-functions.php:680
2830
  msgid "Comment Related"
2831
  msgstr ""
2832
 
2833
+ #: ../includes/mycred-functions.php:687
2834
  msgid "Widget Related"
2835
  msgstr ""
2836
 
2837
+ #: ../includes/mycred-functions.php:694
2838
  msgid "Amount Related"
2839
  msgstr ""
2840
 
2841
+ #: ../includes/mycred-functions.php:701
2842
  msgid "Video Related"
2843
  msgstr ""
2844
 
2845
+ #: ../includes/mycred-functions.php:712
2846
  msgid "and"
2847
  msgstr ""
2848
 
2849
+ #: ../includes/mycred-functions.php:714
2850
  msgid "Available Template Tags:"
2851
  msgstr ""
2852
 
2853
+ #: ../includes/mycred-functions.php:1956
2854
  msgid "Entire Log"
2855
  msgstr ""
2856
 
2857
+ #: ../includes/mycred-functions.php:1961 ../includes/mycred-functions.php:1962
2858
  msgid "Displayed Rows"
2859
  msgstr ""
2860
 
2861
+ #: ../includes/mycred-functions.php:1969
2862
  msgid "Search Results"
2863
  msgstr ""
2864
 
2865
+ #: ../includes/mycred-functions.php:1970
2866
  msgid "My Entire Log"
2867
  msgstr ""
2868
 
2869
+ #: ../includes/mycred-functions.php:2594
2870
  msgid "Website Registration"
2871
  msgstr ""
2872
 
2873
+ #: ../includes/mycred-functions.php:2595
2874
  msgid "Website Visit"
2875
  msgstr ""
2876
 
2877
+ #: ../includes/mycred-functions.php:2596
2878
  msgid "Viewing Content (Member)"
2879
  msgstr ""
2880
 
2881
+ #: ../includes/mycred-functions.php:2597
2882
  msgid "Viewing Content (Author)"
2883
  msgstr ""
2884
 
2885
+ #: ../includes/mycred-functions.php:2598
2886
  msgid "Logging in"
2887
  msgstr ""
2888
 
2889
+ #: ../includes/mycred-functions.php:2599
2890
  msgid "Publishing Content"
2891
  msgstr ""
2892
 
2893
+ #: ../includes/mycred-functions.php:2601
2894
  msgid "Unapproved Comment"
2895
  msgstr ""
2896
 
2897
+ #: ../includes/mycred-functions.php:2602
2898
  msgid "SPAM Comment"
2899
  msgstr ""
2900
 
2901
+ #: ../includes/mycred-functions.php:2603
2902
  msgid "Deleted Comment"
2903
  msgstr ""
2904
 
2905
+ #: ../includes/mycred-functions.php:2604
2906
  msgid "Link Click"
2907
  msgstr ""
2908
 
2909
+ #: ../includes/mycred-functions.php:2605
2910
  msgid "Watching Video"
2911
  msgstr ""
2912
 
2913
+ #: ../includes/mycred-functions.php:2606
2914
  msgid "Visitor Referral"
2915
  msgstr ""
2916
 
2917
+ #: ../includes/mycred-functions.php:2607
2918
  msgid "Signup Referral"
2919
  msgstr ""
2920
 
2921
+ #: ../includes/mycred-functions.php:2611
2922
  msgid "New Profile Update"
2923
  msgstr ""
2924
 
2925
+ #: ../includes/mycred-functions.php:2612
2926
  msgid "Profile Update Removal"
2927
  msgstr ""
2928
 
2929
+ #: ../includes/mycred-functions.php:2613
2930
  msgid "Avatar Upload"
2931
  msgstr ""
2932
 
2933
+ #: ../includes/mycred-functions.php:2614
2934
  msgid "New Friendship"
2935
  msgstr ""
2936
 
2937
+ #: ../includes/mycred-functions.php:2615
2938
  msgid "Ended Friendship"
2939
  msgstr ""
2940
 
2941
+ #: ../includes/mycred-functions.php:2616
2942
  msgid "New Profile Comment"
2943
  msgstr ""
2944
 
2945
+ #: ../includes/mycred-functions.php:2617
2946
  msgid "Profile Comment Deletion"
2947
  msgstr ""
2948
 
2949
+ #: ../includes/mycred-functions.php:2618
2950
  msgid "New Message"
2951
  msgstr ""
2952
 
2953
+ #: ../includes/mycred-functions.php:2619
2954
  msgid "Sending Gift"
2955
  msgstr ""
2956
 
2957
+ #: ../includes/mycred-functions.php:2620
2958
  msgid "New Group"
2959
  msgstr ""
2960
 
2961
+ #: ../includes/mycred-functions.php:2621
2962
  msgid "Deleted Group"
2963
  msgstr ""
2964
 
2965
+ #: ../includes/mycred-functions.php:2622
2966
  msgid "New Group Forum Topic"
2967
  msgstr ""
2968
 
2969
+ #: ../includes/mycred-functions.php:2623
2970
  msgid "Edit Group Forum Topic"
2971
  msgstr ""
2972
 
2973
+ #: ../includes/mycred-functions.php:2624
2974
  msgid "New Group Forum Post"
2975
  msgstr ""
2976
 
2977
+ #: ../includes/mycred-functions.php:2625
2978
  msgid "Edit Group Forum Post"
2979
  msgstr ""
2980
 
2981
+ #: ../includes/mycred-functions.php:2626
2982
  msgid "Joining Group"
2983
  msgstr ""
2984
 
2985
+ #: ../includes/mycred-functions.php:2627
2986
  msgid "Leaving Group"
2987
  msgstr ""
2988
 
2989
+ #: ../includes/mycred-functions.php:2628
2990
  msgid "New Group Avatar"
2991
  msgstr ""
2992
 
2993
+ #: ../includes/mycred-functions.php:2629
2994
  msgid "New Group Comment"
2995
  msgstr ""
2996
 
2997
+ #: ../includes/mycred-functions.php:2639
2998
  msgid "New Link"
2999
  msgstr ""
3000
 
3001
+ #: ../includes/mycred-functions.php:2640
3002
  msgid "Link Voting"
3003
  msgstr ""
3004
 
3005
+ #: ../includes/mycred-functions.php:2641
3006
  msgid "Link Update"
3007
  msgstr ""
3008
 
3009
+ #: ../includes/mycred-functions.php:2645
3010
  msgid "New Forum (bbPress)"
3011
  msgstr ""
3012
 
3013
+ #: ../includes/mycred-functions.php:2646
3014
  msgid "New Forum Topic (bbPress)"
3015
  msgstr ""
3016
 
3017
+ #: ../includes/mycred-functions.php:2647
3018
  msgid "Favorited Topic (bbPress)"
3019
  msgstr ""
3020
 
3021
+ #: ../includes/mycred-functions.php:2648
3022
  msgid "New Topic Reply (bbPress)"
3023
  msgstr ""
3024
 
3025
+ #: ../includes/mycred-functions.php:2652
3026
  msgid "Form Submission (Contact Form 7)"
3027
  msgstr ""
3028
 
3029
+ #: ../includes/mycred-functions.php:2655
3030
  msgid "Form Submission (Gravity Form)"
3031
  msgstr ""
3032
 
3033
+ #: ../includes/mycred-functions.php:2658
3034
  msgid "New Forum Topic (SimplePress)"
3035
  msgstr ""
3036
 
3037
+ #: ../includes/mycred-functions.php:2659
3038
  msgid "New Forum Post (SimplePress)"
3039
  msgstr ""
3040
 
3041
+ #: ../includes/mycred-functions.php:2668
3042
  msgid "Affiliate Signup (AffiliateWP)"
3043
  msgstr ""
3044
 
3045
+ #: ../includes/mycred-functions.php:2669
3046
  msgid "Referred Visit (AffiliateWP)"
3047
  msgstr ""
3048
 
3049
+ #: ../includes/mycred-functions.php:2670
3050
  msgid "Affiliate Referral (AffiliateWP)"
3051
  msgstr ""
3052
 
3053
+ #: ../includes/mycred-functions.php:2671
3054
  msgid "Referral Refund (AffiliateWP)"
3055
  msgstr ""
3056
 
3057
+ #: ../includes/mycred-functions.php:2680
3058
  msgid "Poll Voting"
3059
  msgstr ""
3060
 
3061
+ #: ../includes/mycred-functions.php:2683
3062
  msgid "Sending an Invite"
3063
  msgstr ""
3064
 
3065
+ #: ../includes/mycred-functions.php:2684
3066
  msgid "Accepting an Invite"
3067
  msgstr ""
3068
 
3069
+ #: ../includes/mycred-functions.php:2690
3070
  msgid "Banking Payout"
3071
  msgstr ""
3072
 
3073
+ #: ../includes/mycred-functions.php:2693
3074
  msgid "buyCRED Purchase (PayPal Standard)"
3075
  msgstr ""
3076
 
3077
+ #: ../includes/mycred-functions.php:2694
3078
  msgid "buyCRED Purchase (Skrill)"
3079
  msgstr ""
3080
 
3081
+ #: ../includes/mycred-functions.php:2695
3082
  msgid "buyCRED Purchase (Zombaio)"
3083
  msgstr ""
3084
 
3085
+ #: ../includes/mycred-functions.php:2696
3086
  msgid "buyCRED Purchase (NETBilling)"
3087
  msgstr ""
3088
 
3089
+ #: ../includes/mycred-functions.php:2697
3090
  msgid "buyCRED Purchase (BitPay)"
3091
  msgstr ""
3092
 
3093
+ #: ../includes/mycred-functions.php:2702
3094
  msgid "Coupon Purchase"
3095
  msgstr ""
3096
 
3097
+ #: ../includes/mycred-functions.php:2706
3098
  msgid "Store Purchase (WooCommerce)"
3099
  msgstr ""
3100
 
3101
+ #: ../includes/mycred-functions.php:2707
3102
  msgid "Store Reward (WooCommerce)"
3103
  msgstr ""
3104
 
3105
+ #: ../includes/mycred-functions.php:2708
3106
  msgid "Product Review (WooCommerce)"
3107
  msgstr ""
3108
 
3109
+ #: ../includes/mycred-functions.php:2711
3110
  msgid "Store Purchase (MarketPress)"
3111
  msgstr ""
3112
 
3113
+ #: ../includes/mycred-functions.php:2712
3114
  msgid "Store Reward (MarketPress)"
3115
  msgstr ""
3116
 
3117
+ #: ../includes/mycred-functions.php:2715
3118
  msgid "Store Purchase (WP E-Commerce)"
3119
  msgstr ""
3120
 
3121
+ #: ../includes/mycred-functions.php:2721
3122
  msgid "Event Payment (Event Espresso)"
3123
  msgstr ""
3124
 
3125
+ #: ../includes/mycred-functions.php:2722
3126
  msgid "Event Sale (Event Espresso)"
3127
  msgstr ""
3128
 
3129
+ #: ../includes/mycred-functions.php:2726
3130
  msgid "Event Payment (Events Manager)"
3131
  msgstr ""
3132
 
3133
+ #: ../includes/mycred-functions.php:2727
3134
  msgid "Event Sale (Events Manager)"
3135
  msgstr ""
3136
 
3137
+ #: ../includes/mycred-functions.php:2731
3138
+ msgid "Content Purchase"
3139
  msgstr ""
3140
 
3141
+ #: ../includes/mycred-functions.php:2732
3142
+ msgid "Content Sale"
3143
+ msgstr ""
3144
+
3145
+ #: ../includes/mycred-functions.php:2736 ../addons/transfer/myCRED-addon-transfer.
3146
  #: php:51
3147
  msgid "Transfer"
3148
  msgstr ""
3149
 
3150
+ #: ../includes/mycred-functions.php:2740
3151
  msgid "Manual Adjustment by Admin"
3152
  msgstr ""
3153
 
3154
+ #: ../includes/mycred-functions.php:2815
3155
+ msgid "Point types not found."
3156
+ msgstr ""
3157
+
3158
+ #: ../includes/mycred-functions.php:2860
3159
  #, php-format
3160
  msgid "You must exchange at least %s!"
3161
  msgstr ""
3162
 
3163
+ #: ../includes/mycred-functions.php:2869 ../addons/transfer/myCRED-addon-transfer.
3164
  #: php:161
3165
  msgid "Insufficient Funds. Please try a lower amount."
3166
  msgstr ""
3167
 
3168
+ #: ../includes/mycred-functions.php:2882
3169
  #, php-format
3170
  msgid "Exchange from %s"
3171
  msgstr ""
3172
 
3173
+ #: ../includes/mycred-functions.php:2894
3174
  #, php-format
3175
  msgid "Exchange to %s"
3176
  msgstr ""
3177
 
3178
+ #: ../includes/mycred-functions.php:2902
3179
  #, php-format
3180
  msgid "You have successfully exchanged %s into %s."
3181
  msgstr ""
3182
 
3183
+ #: ../includes/mycred-functions.php:2934
3184
  msgid "per day"
3185
  msgstr ""
3186
 
3187
+ #: ../includes/mycred-functions.php:2936
3188
  msgid "per week"
3189
  msgstr ""
3190
 
3191
+ #: ../includes/mycred-functions.php:2938
3192
  msgid "per month"
3193
  msgstr ""
3194
 
3195
+ #: ../includes/mycred-functions.php:2940
3196
  msgid "in total"
3197
  msgstr ""
3198
 
3199
+ #: ../includes/mycred-functions.php:2942 ../includes/mycred-functions.php:2946
3200
  #, php-format
3201
  msgid "Maximum once"
3202
  msgid_plural "Maximum %d times"
3203
  msgstr[0] ""
3204
  msgstr[1] ""
3205
 
3206
+ #: ../includes/importers/mycred-cubepoints.php:298
3207
  msgid "No balances were imported."
3208
  msgstr ""
3209
 
3210
+ #: ../includes/importers/mycred-cubepoints.php:298
3211
  msgid "No log entries were imported!"
3212
  msgstr ""
3213
 
3214
+ #: ../includes/importers/mycred-cubepoints.php:306 ../includes/importers/mycred-
3215
+ #: log-entries.php:168
3216
  #, php-format
3217
  msgid ""
3218
  "Import complete - A total of <strong>%d</strong> entries were successfully "
3219
  "imported. <strong>%d</strong> was skipped."
3220
  msgstr ""
3221
 
3222
+ #: ../includes/importers/mycred-cubepoints.php:320 ../includes/importers/mycred-
3223
+ #: balances.php:211 ../includes/importers/mycred-log-entries.php:180 ..
3224
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:102
3225
  msgid "View Log"
3226
  msgstr ""
3227
 
3228
+ #: ../includes/importers/mycred-cubepoints.php:320 ../includes/importers/mycred-
3229
+ #: balances.php:211 ../includes/importers/mycred-log-entries.php:180
3230
  msgid "Import More"
3231
  msgstr ""
3232
 
3233
+ #: ../includes/importers/mycred-cubepoints.php:335
3234
  msgid "No CubePoints log."
3235
  msgstr ""
3236
 
3237
+ #: ../includes/importers/mycred-cubepoints.php:348
3238
  msgid "Import CubePoints Log"
3239
  msgstr ""
3240
 
3241
+ #: ../includes/importers/mycred-cubepoints.php:369
3242
  msgid "Select what to import"
3243
  msgstr ""
3244
 
3245
+ #: ../includes/importers/mycred-cubepoints.php:370
3246
  msgid "Log Entries Only"
3247
  msgstr ""
3248
 
3249
+ #: ../includes/importers/mycred-cubepoints.php:371
3250
  msgid "CubePoints Balances Only"
3251
  msgstr ""
3252
 
3253
+ #: ../includes/importers/mycred-cubepoints.php:372
3254
  msgid "Log Entries and Balances"
3255
  msgstr ""
3256
 
3257
+ #: ../includes/importers/mycred-cubepoints.php:387
3258
  msgid "Import"
3259
  msgstr ""
3260
 
3261
+ #: ../includes/importers/mycred-cubepoints.php:396
3262
  msgid ""
3263
  "Warning! Importing CubePoints balances will replace your users myCRED "
3264
  "balance!"
3265
  msgstr ""
3266
 
3267
+ #: ../includes/importers/mycred-cubepoints.php:420
3268
  msgid "Import Log"
3269
  msgstr ""
3270
 
3271
+ #: ../includes/importers/mycred-balances.php:104 ../includes/importers/mycred-
3272
+ #: balances.php:186 ../includes/importers/mycred-balances.php:229 ..
3273
+ #: includes/importers/mycred-balances.php:244 ../includes/importers/mycred-log-
3274
+ #: entries.php:104 ../includes/importers/mycred-log-entries.php:153 ..
3275
+ #: includes/importers/mycred-log-entries.php:199 ../includes/importers/mycred-
3276
+ #: log-entries.php:216
3277
  msgid "Sorry, there has been an error."
3278
  msgstr ""
3279
 
3280
+ #: ../includes/importers/mycred-balances.php:105 ../includes/importers/mycred-log-
3281
+ #: entries.php:105
3282
  msgid "The file does not exist, please try again."
3283
  msgstr ""
3284
 
3285
+ #: ../includes/importers/mycred-balances.php:187 ../includes/importers/mycred-log-
3286
+ #: entries.php:154
3287
  msgid "The CSV is invalid."
3288
  msgstr ""
3289
 
3290
+ #: ../includes/importers/mycred-balances.php:199
3291
  #, php-format
3292
  msgid ""
3293
  "Import complete - A total of <strong>%d</strong> balances were successfully "
3294
  "imported. <strong>%d</strong> was skipped."
3295
  msgstr ""
3296
 
3297
+ #: ../includes/importers/mycred-balances.php:260
3298
  msgid "Import Balances"
3299
  msgstr ""
3300
 
3301
+ #: ../includes/importers/mycred-balances.php:281
3302
  msgid "Import balances from a CSV file."
3303
  msgstr ""
3304
 
3305
+ #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
3306
+ #: entries.php:263
3307
  msgid ""
3308
  "Before you can upload your import file, you will need to fix the following "
3309
  "error:"
3310
  msgstr ""
3311
 
3312
+ #: ../includes/importers/mycred-balances.php:304 ../includes/importers/mycred-log-
3313
+ #: entries.php:275
3314
  msgid "Choose a file from your computer:"
3315
  msgstr ""
3316
 
3317
+ #: ../includes/importers/mycred-balances.php:310 ../includes/importers/mycred-log-
3318
+ #: entries.php:281
3319
  #, php-format
3320
  msgid "Maximum size: %s"
3321
  msgstr ""
3322
 
3323
+ #: ../includes/importers/mycred-balances.php:315 ../includes/importers/mycred-log-
3324
+ #: entries.php:286
3325
  msgid "OR enter path to file:"
3326
  msgstr ""
3327
 
3328
+ #: ../includes/importers/mycred-balances.php:322 ../includes/importers/mycred-log-
3329
+ #: entries.php:293
3330
  msgid "Delimiter"
3331
  msgstr ""
3332
 
3333
+ #: ../includes/importers/mycred-balances.php:326
3334
  msgid "Method"
3335
  msgstr ""
3336
 
3337
+ #: ../includes/importers/mycred-balances.php:328
3338
  msgid "Replace current balances with the amount in this CSV file"
3339
  msgstr ""
3340
 
3341
+ #: ../includes/importers/mycred-balances.php:329
3342
  msgid "Adjust current balances according to the amount in this CSV file"
3343
  msgstr ""
3344
 
3345
+ #: ../includes/importers/mycred-balances.php:335 ../includes/importers/mycred-log-
3346
+ #: entries.php:299
3347
  msgid "Upload file and import"
3348
  msgstr ""
3349
 
3350
+ #: ../includes/importers/mycred-log-entries.php:232
3351
  msgid "Import Log Entries"
3352
  msgstr ""
3353
 
3354
+ #: ../includes/importers/mycred-log-entries.php:253
3355
  msgid "Import log entries from a CSV file."
3356
  msgstr ""
3357
 
3358
+ #: ../addons/banking/myCRED-addon-banking.php:45 ../addons/banking/myCRED-addon-
3359
+ #: banking.php:46 ../addons/banking/myCRED-addon-banking.php:47
3360
  msgid "Banking"
3361
  msgstr ""
3362
 
3363
+ #: ../addons/banking/myCRED-addon-banking.php:172
3364
  msgid "Central Banking"
3365
  msgstr ""
3366
 
3367
+ #: ../addons/banking/myCRED-addon-banking.php:173
3368
  #, php-format
3369
  msgid ""
3370
  "Instead of creating %_plural% out of thin-air, all payouts are made from a "
3372
  "deposited back into this account."
3373
  msgstr ""
3374
 
3375
+ #: ../addons/banking/myCRED-addon-banking.php:179 ..
3376
  #: addons/banking/services/mycred-bank-service-interest.php:512
3377
  msgid "Compound Interest"
3378
  msgstr ""
3379
 
3380
+ #: ../addons/banking/myCRED-addon-banking.php:180
3381
  #, php-format
3382
  msgid "Apply a positive or negative interest rate on your users %_plural% balances."
3383
  msgstr ""
3384
 
3385
+ #: ../addons/banking/myCRED-addon-banking.php:186
3386
  msgid "Recurring Payouts"
3387
  msgstr ""
3388
 
3389
+ #: ../addons/banking/myCRED-addon-banking.php:187
3390
  #, php-format
3391
  msgid "Setup mass %_singular% payouts for your users."
3392
  msgstr ""
3393
 
3394
+ #: ../addons/banking/myCRED-addon-banking.php:245
3395
  #, php-format
3396
  msgid "%s Banking"
3397
  msgstr ""
3398
 
3399
+ #: ../addons/banking/myCRED-addon-banking.php:249
3400
  #, php-format
3401
  msgid "Your banking setup for %plural%."
3402
  msgstr ""
3403
 
3404
+ #: ../addons/banking/myCRED-addon-banking.php:253
3405
  msgid "WP-Cron deactivation detected!"
3406
  msgstr ""
3407
 
3408
+ #: ../addons/banking/myCRED-addon-banking.php:254
3409
  msgid "Warning! This add-on requires WP - Cron to work."
3410
  msgstr ""
3411
 
3595
  msgstr ""
3596
 
3597
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/sell-
3598
+ #: content/myCRED-addon-sell-content.php:117 ../addons/buy-creds/myCRED-addon-buy-
3599
+ #: creds.php:836
3600
  msgid "Leave empty to use the default value."
3601
  msgstr ""
3602
 
3630
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ..
3631
  #: addons/gateway/event-booking/mycred-eventsmanager.php:540 ..
3632
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/sell-
3633
+ #: content/myCRED-addon-sell-content.php:457 ../addons/buy-creds/myCRED-addon-buy-
3634
+ #: creds.php:578
3635
  msgid "Payments"
3636
  msgstr ""
3637
 
3638
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
3639
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35 ..
3640
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/buy-
3641
+ #: creds/myCRED-addon-buy-creds.php:1688
3642
  msgid "Pay Now"
3643
  msgstr ""
3644
 
3671
  msgstr ""
3672
 
3673
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:367 ../addons/buy-
3674
+ #: creds/myCRED-addon-buy-creds.php:1084
3675
  msgid "Gateway Settings"
3676
  msgstr ""
3677
 
3712
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ..
3713
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
3714
  #: addons/transfer/includes/mycred-transfer-widgets.php:132 ../addons/sell-
3715
+ #: content/myCRED-addon-sell-content.php:500 ../addons/sell-content/myCRED-addon-
3716
+ #: sell-content.php:749
3717
  msgid "Button Label"
3718
  msgstr ""
3719
 
3726
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ..
3727
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:139 ..
3728
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ../addons/sell-
3729
+ #: content/myCRED-addon-sell-content.php:491 ../addons/sell-content/myCRED-addon-
3730
+ #: sell-content.php:745
3731
  msgid "Price"
3732
  msgstr ""
3733
 
3764
  msgstr ""
3765
 
3766
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
3767
+ #: content/myCRED-addon-sell-content.php:514
3768
  msgid "Templates"
3769
  msgstr ""
3770
 
4329
  msgid "User Email (user_email)"
4330
  msgstr ""
4331
 
4332
+ #: ../addons/transfer/myCRED-addon-transfer.php:217
4333
  msgid "Select the point types that users can transfer."
4334
  msgstr ""
4335
 
4336
+ #: ../addons/transfer/myCRED-addon-transfer.php:227
4337
  msgid "Log template for sending"
4338
  msgstr ""
4339
 
4340
+ #: ../addons/transfer/myCRED-addon-transfer.php:234
4341
  msgid "Log template for receiving"
4342
  msgstr ""
4343
 
4344
+ #: ../addons/transfer/myCRED-addon-transfer.php:241
4345
  msgid "Autofill Recipient"
4346
  msgstr ""
4347
 
4348
+ #: ../addons/transfer/myCRED-addon-transfer.php:255
4349
  msgid "Select what user details recipients should be autofilled by."
4350
  msgstr ""
4351
 
4352
+ #: ../addons/transfer/myCRED-addon-transfer.php:258
4353
  msgid "Reload"
4354
  msgstr ""
4355
 
4356
+ #: ../addons/transfer/myCRED-addon-transfer.php:261
4357
  msgid "Reload page on successful transfers."
4358
  msgstr ""
4359
 
4360
+ #: ../addons/transfer/myCRED-addon-transfer.php:285
4361
  msgid "Limit Amount"
4362
  msgstr ""
4363
 
4364
+ #: ../addons/transfer/myCRED-addon-transfer.php:289
4365
  msgid "Form Templates"
4366
  msgstr ""
4367
 
4368
+ #: ../addons/transfer/myCRED-addon-transfer.php:292
4369
  msgid "Not logged in Template"
4370
  msgstr ""
4371
 
4372
+ #: ../addons/transfer/myCRED-addon-transfer.php:294
4373
  msgid ""
4374
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
4375
  "elements allowed!"
4376
  msgstr ""
4377
 
4378
+ #: ../addons/transfer/myCRED-addon-transfer.php:298
4379
  msgid "Balance Template"
4380
  msgstr ""
4381
 
4382
+ #: ../addons/transfer/myCRED-addon-transfer.php:300
4383
  msgid ""
4384
  "Template to use when displaying the users balance (if included). No HTML "
4385
  "elements allowed!"
4386
  msgstr ""
4387
 
4388
+ #: ../addons/transfer/myCRED-addon-transfer.php:304
4389
  msgid "Limit Template"
4390
  msgstr ""
4391
 
4392
+ #: ../addons/transfer/myCRED-addon-transfer.php:306
4393
  msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
4394
  msgstr ""
4395
 
4396
+ #: ../addons/transfer/myCRED-addon-transfer.php:310
4397
  msgid "Button Template"
4398
  msgstr ""
4399
 
4400
+ #: ../addons/transfer/myCRED-addon-transfer.php:312
4401
  msgid "Send Transfer button template. No HTML elements allowed!"
4402
  msgstr ""
4403
 
4404
+ #: ../addons/transfer/myCRED-addon-transfer.php:315
4405
  msgid "Error Messages"
4406
  msgstr ""
4407
 
4408
+ #: ../addons/transfer/myCRED-addon-transfer.php:318
4409
  msgid "Balance to low to send."
4410
  msgstr ""
4411
 
4412
+ #: ../addons/transfer/myCRED-addon-transfer.php:320
4413
  msgid ""
4414
  "Text to show when a users balance is to low for transfers. Leave empty to "
4415
  "hide. No HTML elements allowed!"
4416
  msgstr ""
4417
 
4418
+ #: ../addons/transfer/myCRED-addon-transfer.php:324
4419
  msgid "Transfer Limit Reached."
4420
  msgstr ""
4421
 
4422
+ #: ../addons/transfer/myCRED-addon-transfer.php:326
4423
  msgid ""
4424
  "Text to show when a user has reached their transfer limit (if used). Leave "
4425
  "empty to hide. No HTML elements allowed!"
4446
  msgid "Show users limit"
4447
  msgstr ""
4448
 
4449
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:144
4450
  msgid "username"
4451
  msgstr ""
4452
 
4453
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:147
4454
  msgid "email"
4455
  msgstr ""
4456
 
4457
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:149
4458
  #, php-format
4459
  msgid "recipients %s"
4460
  msgstr ""
4461
 
4462
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:243
4463
  msgid "To:"
4464
  msgstr ""
4465
 
4466
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:249
4467
  msgid "Amount:"
4468
  msgstr ""
4469
 
4474
  msgstr ""
4475
 
4476
  #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
4477
+ #: php:213 ../addons/ranks/myCRED-addon-ranks.php:446 ../addons/ranks/myCRED-
4478
+ #: addon-ranks.php:455 ../addons/ranks/myCRED-addon-ranks.php:461 ..
4479
+ #: addons/ranks/myCRED-addon-ranks.php:837 ../addons/ranks/myCRED-addon-ranks.
4480
+ #: php:1322 ../addons/ranks/myCRED-addon-ranks.php:1612
4481
  msgid "Ranks"
4482
  msgstr ""
4483
 
4484
+ #: ../addons/ranks/myCRED-addon-ranks.php:427
4485
  msgid "Warning! All ranks will be deleted! This can not be undone!"
4486
  msgstr ""
4487
 
4488
+ #: ../addons/ranks/myCRED-addon-ranks.php:428
4489
  msgid "Are you sure you want to re-assign user ranks?"
4490
  msgstr ""
4491
 
4492
+ #: ../addons/ranks/myCRED-addon-ranks.php:444
4493
  #, php-format
4494
  msgid "Ranks for %s"
4495
  msgstr ""
4496
 
4497
+ #: ../addons/ranks/myCRED-addon-ranks.php:450 ../addons/ranks/myCRED-addon-ranks.
4498
+ #: php:837
4499
  msgid "Rank"
4500
  msgstr ""
4501
 
4502
+ #: ../addons/ranks/myCRED-addon-ranks.php:451 ../addons/email-notices/myCRED-
4503
+ #: addon-email-notices.php:175 ../addons/badges/myCRED-addon-badges.php:406 ..
4504
  #: addons/buy-creds/myCRED-addon-buy-creds.php:279 ../addons/buy-creds/myCRED-
4505
  #: addon-buy-creds.php:280
4506
  msgid "Add New"
4507
  msgstr ""
4508
 
4509
+ #: ../addons/ranks/myCRED-addon-ranks.php:452
4510
  msgid "Add New Rank"
4511
  msgstr ""
4512
 
4513
+ #: ../addons/ranks/myCRED-addon-ranks.php:453
4514
  msgid "Edit Rank"
4515
  msgstr ""
4516
 
4517
+ #: ../addons/ranks/myCRED-addon-ranks.php:454
4518
  msgid "New Rank"
4519
  msgstr ""
4520
 
4521
+ #: ../addons/ranks/myCRED-addon-ranks.php:456
4522
  msgid "View Rank"
4523
  msgstr ""
4524
 
4525
+ #: ../addons/ranks/myCRED-addon-ranks.php:457
4526
  msgid "Search Ranks"
4527
  msgstr ""
4528
 
4529
+ #: ../addons/ranks/myCRED-addon-ranks.php:458
4530
  msgid "No ranks found"
4531
  msgstr ""
4532
 
4533
+ #: ../addons/ranks/myCRED-addon-ranks.php:459
4534
  msgid "No ranks found in Trash"
4535
  msgstr ""
4536
 
4537
+ #: ../addons/ranks/myCRED-addon-ranks.php:544
4538
  #, php-format
4539
  msgid "Completed - Total of %d users effected"
4540
  msgstr ""
4541
 
4542
+ #: ../addons/ranks/myCRED-addon-ranks.php:984 ../addons/ranks/myCRED-addon-ranks.
4543
+ #: php:985 ../addons/ranks/myCRED-addon-ranks.php:986 ../addons/ranks/myCRED-
4544
+ #: addon-ranks.php:987 ../addons/ranks/myCRED-addon-ranks.php:988 ..
4545
+ #: addons/ranks/myCRED-addon-ranks.php:991 ../addons/ranks/myCRED-addon-ranks.
4546
+ #: php:992
4547
  msgid "Rank Updated."
4548
  msgstr ""
4549
 
4550
+ #: ../addons/ranks/myCRED-addon-ranks.php:989
4551
  msgid "Rank Enabled"
4552
  msgstr ""
4553
 
4554
+ #: ../addons/ranks/myCRED-addon-ranks.php:990
4555
  msgid "Rank Saved"
4556
  msgstr ""
4557
 
4558
+ #: ../addons/ranks/myCRED-addon-ranks.php:1030
4559
  #, php-format
4560
  msgid "<strong>Rank:</strong> %s"
4561
  msgstr ""
4562
 
4563
+ #: ../addons/ranks/myCRED-addon-ranks.php:1046 ../addons/ranks/myCRED-addon-ranks.
4564
+ #: php:1129
4565
  msgid "Rank Title"
4566
  msgstr ""
4567
 
4568
+ #: ../addons/ranks/myCRED-addon-ranks.php:1047
4569
  msgid "Logo"
4570
  msgstr ""
4571
 
4572
+ #: ../addons/ranks/myCRED-addon-ranks.php:1048
4573
  msgid "Requirement"
4574
  msgstr ""
4575
 
4576
+ #: ../addons/ranks/myCRED-addon-ranks.php:1074
4577
  msgid "No Logo Set"
4578
  msgstr ""
4579
 
4580
+ #: ../addons/ranks/myCRED-addon-ranks.php:1089 ../addons/ranks/myCRED-addon-ranks.
4581
+ #: php:1094
4582
  msgid "Any Value"
4583
  msgstr ""
4584
 
4585
+ #: ../addons/ranks/myCRED-addon-ranks.php:1091 ../addons/buy-creds/myCRED-addon-
4586
+ #: buy-creds.php:642
4587
  #, php-format
4588
  msgid "Minimum %plural%"
4589
  msgstr ""
4590
 
4591
+ #: ../addons/ranks/myCRED-addon-ranks.php:1096
4592
  #, php-format
4593
  msgid "Maximum %plural%"
4594
  msgstr ""
4595
 
4596
+ #: ../addons/ranks/myCRED-addon-ranks.php:1144
4597
  msgid "Rank Settings"
4598
  msgstr ""
4599
 
4600
+ #: ../addons/ranks/myCRED-addon-ranks.php:1198
4601
  #, php-format
4602
  msgid "Minimum %plural% to reach this rank"
4603
  msgstr ""
4604
 
4605
+ #: ../addons/ranks/myCRED-addon-ranks.php:1202
4606
  #, php-format
4607
  msgid "Maximum %plural% to be included in this rank"
4608
  msgstr ""
4609
 
4610
+ #: ../addons/ranks/myCRED-addon-ranks.php:1225
4611
  msgid "All Published Ranks"
4612
  msgstr ""
4613
 
4614
+ #: ../addons/ranks/myCRED-addon-ranks.php:1235 ../addons/ranks/myCRED-addon-ranks.
4615
+ #: php:1237
4616
  msgid "Not Set"
4617
  msgstr ""
4618
 
4619
+ #: ../addons/ranks/myCRED-addon-ranks.php:1243
4620
  msgid "No Ranks found"
4621
  msgstr ""
4622
 
4623
+ #: ../addons/ranks/myCRED-addon-ranks.php:1327
4624
  msgid "Rank Features"
4625
  msgstr ""
4626
 
4627
+ #: ../addons/ranks/myCRED-addon-ranks.php:1331
4628
  #, php-format
4629
  msgid "%plural% requirement"
4630
  msgstr ""
4631
 
4632
+ #: ../addons/ranks/myCRED-addon-ranks.php:1332
4633
  msgid "Featured Image (Logo)"
4634
  msgstr ""
4635
 
4636
+ #: ../addons/ranks/myCRED-addon-ranks.php:1334
4637
  msgid "Content"
4638
  msgstr ""
4639
 
4640
+ #: ../addons/ranks/myCRED-addon-ranks.php:1336
4641
  msgid "Excerpt"
4642
  msgstr ""
4643
 
4644
+ #: ../addons/ranks/myCRED-addon-ranks.php:1338
4645
  msgid "Comments"
4646
  msgstr ""
4647
 
4648
+ #: ../addons/ranks/myCRED-addon-ranks.php:1340
4649
  msgid "Page Attributes"
4650
  msgstr ""
4651
 
4652
+ #: ../addons/ranks/myCRED-addon-ranks.php:1342
4653
  msgid "Custom Fields"
4654
  msgstr ""
4655
 
4656
+ #: ../addons/ranks/myCRED-addon-ranks.php:1346
4657
  msgid "Public"
4658
  msgstr ""
4659
 
4660
+ #: ../addons/ranks/myCRED-addon-ranks.php:1350
4661
  msgid ""
4662
  "If you want to create a template archive for each rank, you must select to "
4663
  "have ranks public. Defaults to disabled."
4664
  msgstr ""
4665
 
4666
+ #: ../addons/ranks/myCRED-addon-ranks.php:1353
4667
  msgid "Archive URL"
4668
  msgstr ""
4669
 
4670
+ #: ../addons/ranks/myCRED-addon-ranks.php:1357
4671
  msgid "Ignored if Ranks are not public"
4672
  msgstr ""
4673
 
4674
+ #: ../addons/ranks/myCRED-addon-ranks.php:1360
4675
  msgid "Display Order"
4676
  msgstr ""
4677
 
4678
+ #: ../addons/ranks/myCRED-addon-ranks.php:1368
4679
  msgid "Ascending - Lowest rank to highest"
4680
  msgstr ""
4681
 
4682
+ #: ../addons/ranks/myCRED-addon-ranks.php:1369
4683
  msgid "Descending - Highest rank to lowest"
4684
  msgstr ""
4685
 
4686
+ #: ../addons/ranks/myCRED-addon-ranks.php:1380
4687
  msgid ""
4688
  "Select in what order ranks should be displayed in your admin area and/or "
4689
  "front if ranks are \"Public\""
4690
  msgstr ""
4691
 
4692
+ #: ../addons/ranks/myCRED-addon-ranks.php:1386
4693
  msgid "Rank Basis"
4694
  msgstr ""
4695
 
4696
+ #: ../addons/ranks/myCRED-addon-ranks.php:1389
4697
  msgid "Users are ranked according to their current balance."
4698
  msgstr ""
4699
 
4700
+ #: ../addons/ranks/myCRED-addon-ranks.php:1392
4701
  msgid ""
4702
  "Users are ranked according to the total amount of %_plural% they have "
4703
  "accumulated."
4704
  msgstr ""
4705
 
4706
+ #: ../addons/ranks/myCRED-addon-ranks.php:1396 ../addons/ranks/myCRED-addon-ranks.
4707
+ #: php:1401
4708
  msgid "Calculate Totals"
4709
  msgstr ""
4710
 
4711
+ #: ../addons/ranks/myCRED-addon-ranks.php:1399
4712
  msgid ""
4713
  "Use this button to calculate or recalculate your users totals. If not used, "
4714
  "the users current balance will be used as a starting point."
4715
  msgstr ""
4716
 
4717
+ #: ../addons/ranks/myCRED-addon-ranks.php:1399
4718
  msgid ""
4719
  "Once a users total has been calculated, they will be assigned to their "
4720
  "appropriate roles. For this reason, it is highly recommended that you first "
4721
  "setup your ranks!"
4722
  msgstr ""
4723
 
4724
+ #: ../addons/ranks/myCRED-addon-ranks.php:1400
4725
  msgid ""
4726
  "Depending on your log size and number of users this process may take a while."
4727
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
4728
  "this is completed!"
4729
  msgstr ""
4730
 
4731
+ #: ../addons/ranks/myCRED-addon-ranks.php:1418
4732
  msgid "Include in Profile Header."
4733
  msgstr ""
4734
 
4735
+ #: ../addons/ranks/myCRED-addon-ranks.php:1420
4736
  msgid "Include under the \"Profile\" tab and Profile Header."
4737
  msgstr ""
4738
 
4739
+ #: ../addons/ranks/myCRED-addon-ranks.php:1424
4740
  msgid "Rank in BuddyPress"
4741
  msgstr ""
4742
 
4743
+ #: ../addons/ranks/myCRED-addon-ranks.php:1441 ../addons/ranks/myCRED-addon-ranks.
4744
+ #: php:1486
4745
  #, php-format
4746
  msgid ""
4747
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
4748
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
4749
  msgstr ""
4750
 
4751
+ #: ../addons/ranks/myCRED-addon-ranks.php:1463
4752
  msgid "Include in Topic Replies"
4753
  msgstr ""
4754
 
4755
+ #: ../addons/ranks/myCRED-addon-ranks.php:1464 ../addons/badges/myCRED-addon-
4756
+ #: badges.php:1047
4757
  msgid "Include in Profile"
4758
  msgstr ""
4759
 
4760
+ #: ../addons/ranks/myCRED-addon-ranks.php:1465
4761
  msgid "Include in Topic Replies and Profile"
4762
  msgstr ""
4763
 
4764
+ #: ../addons/ranks/myCRED-addon-ranks.php:1469
4765
  msgid "Rank in bbPress"
4766
  msgstr ""
4767
 
4768
+ #: ../addons/ranks/myCRED-addon-ranks.php:1548
4769
  msgid "Script Communication Error"
4770
  msgstr ""
4771
 
4772
+ #: ../addons/ranks/myCRED-addon-ranks.php:1619
4773
  msgid "No. of ranks"
4774
  msgstr ""
4775
 
4776
+ #: ../addons/ranks/myCRED-addon-ranks.php:1624
4777
  msgid "Remove All Ranks"
4778
  msgstr ""
4779
 
4780
+ #: ../addons/ranks/myCRED-addon-ranks.php:1624
4781
  msgid "Assign Ranks to Users"
4782
  msgstr ""
4783
 
4784
+ #: ../addons/ranks/includes/mycred-rank-functions.php:260
4785
  msgid "mycred_get_users_rank() : Missing required user id"
4786
  msgstr ""
4787
 
4788
+ #: ../addons/ranks/includes/mycred-rank-functions.php:273
4789
  msgid "no rank"
4790
  msgstr ""
4791
 
4792
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:118 ..
4793
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:213
4794
  msgid "No users found with this rank"
4795
  msgstr ""
4796
 
4797
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:125
4798
  msgid "Rank ID is required!"
4799
  msgstr ""
4800
 
4801
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:148
4802
  msgid "Rank not found. Please check the id and try again."
4803
  msgstr ""
4804
 
4806
  msgid "Notify your users when their balances changes."
4807
  msgstr ""
4808
 
4809
+ #: ../addons/notifications/myCRED-addon-notifications.php:194
4810
  msgid "Notifications"
4811
  msgstr ""
4812
 
4813
+ #: ../addons/notifications/myCRED-addon-notifications.php:196
4814
  msgid "Styling"
4815
  msgstr ""
4816
 
4817
+ #: ../addons/notifications/myCRED-addon-notifications.php:199
4818
  msgid "Use the included CSS Styling for notifications."
4819
  msgstr ""
4820
 
4821
+ #: ../addons/notifications/myCRED-addon-notifications.php:206
4822
  #, php-format
4823
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
4824
  msgstr ""
4825
 
4826
+ #: ../addons/notifications/myCRED-addon-notifications.php:206
4827
  msgid "Restore to default"
4828
  msgstr ""
4829
 
4830
+ #: ../addons/notifications/myCRED-addon-notifications.php:209
4831
  msgid "Transient Lifespan"
4832
  msgstr ""
4833
 
4834
+ #: ../addons/notifications/myCRED-addon-notifications.php:213
4835
  msgid ""
4836
  "The number of days a users notification is saved before being automatically "
4837
  "deleted."
4838
  msgstr ""
4839
 
4840
+ #: ../addons/notifications/myCRED-addon-notifications.php:216
4841
  msgid "Duration"
4842
  msgstr ""
4843
 
4844
+ #: ../addons/notifications/myCRED-addon-notifications.php:220
4845
  msgid ""
4846
  "Number of seconds before a notice is automatically removed after being shown "
4847
  "to user. Use zero to disable."
4848
  msgstr ""
4849
 
4850
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173 ../addons/email-
4851
+ #: notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-
4852
+ #: addon-email-notices.php:185 ../addons/email-notices/myCRED-addon-email-notices.
4853
+ #: php:297 ../addons/coupons/myCRED-addon-coupons.php:105
4854
  msgid "Email Notices"
4855
  msgstr ""
4856
 
4857
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:174 ../addons/email-
4858
+ #: notices/myCRED-addon-email-notices.php:1344
4859
  msgid "Email Notice"
4860
  msgstr ""
4861
 
4862
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:176
4863
  msgid "Add New Notice"
4864
  msgstr ""
4865
 
4866
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:177
4867
  msgid "Edit Notice"
4868
  msgstr ""
4869
 
4870
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:178
4871
  msgid "New Notice"
4872
  msgstr ""
4873
 
4874
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:180
4875
  msgid "View Notice"
4876
  msgstr ""
4877
 
4878
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:181
4879
  msgid "Search Email Notices"
4880
  msgstr ""
4881
 
4882
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:182
4883
  msgid "No email notices found"
4884
  msgstr ""
4885
 
4886
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:183
4887
  msgid "No email notices found in Trash"
4888
  msgstr ""
4889
 
4890
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:211
4891
  msgid "users balance changes"
4892
  msgstr ""
4893
 
4894
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:212
4895
  msgid "user gains %_plural%"
4896
  msgstr ""
4897
 
4898
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:213
4899
  msgid "user lose %_plural%"
4900
  msgstr ""
4901
 
4902
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:214
4903
  msgid "users balance reaches zero"
4904
  msgstr ""
4905
 
4906
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:215
4907
  msgid "users balance goes minus"
4908
  msgstr ""
4909
 
4910
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:221
4911
  msgid "Badge Add-on"
4912
  msgstr ""
4913
 
4914
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:222
4915
  msgid "user gains a badge"
4916
  msgstr ""
4917
 
4918
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:229
4919
  msgid "Sell Content Add-on"
4920
  msgstr ""
4921
 
4922
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:230
4923
  msgid "user buys content"
4924
  msgstr ""
4925
 
4926
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:231
4927
  msgid "authors content gets sold"
4928
  msgstr ""
4929
 
4930
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:238
4931
  msgid "buyCREDs Add-on"
4932
  msgstr ""
4933
 
4934
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:239
4935
  msgid "user buys %_plural%"
4936
  msgstr ""
4937
 
4938
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:246
4939
  msgid "Transfer Add-on"
4940
  msgstr ""
4941
 
4942
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:247
4943
  msgid "user sends %_plural%"
4944
  msgstr ""
4945
 
4946
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:248
4947
  msgid "user receives %_plural%"
4948
  msgstr ""
4949
 
4950
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:255
4951
  msgid "Ranks Add-on"
4952
  msgstr ""
4953
 
4954
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:256
4955
  msgid "user is demoted"
4956
  msgstr ""
4957
 
4958
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:257
4959
  msgid "user is promoted"
4960
  msgstr ""
4961
 
4962
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299
4963
  msgid ""
4964
  "Settings that apply to all email notices and can not be overridden for "
4965
  "individual emails."
4966
  msgstr ""
4967
 
4968
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:300
4969
  msgid "Email Format"
4970
  msgstr ""
4971
 
4972
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:304
4973
  msgid "Plain text emails only."
4974
  msgstr ""
4975
 
4976
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:308
4977
  msgid "HTML or Plain text emails."
4978
  msgstr ""
4979
 
4980
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:311
4981
  msgid "Filters"
4982
  msgstr ""
4983
 
4984
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:315
4985
  msgid ""
4986
  "Allow WordPress and Third Party Plugins to filter the email subject before "
4987
  "an email is sent."
4988
  msgstr ""
4989
 
4990
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:319
4991
  msgid ""
4992
  "Allow WordPress and Third Party Plugins to filter the email content before "
4993
  "an email is sent."
4994
  msgstr ""
4995
 
4996
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:325 ../addons/email-
4997
+ #: notices/myCRED-addon-email-notices.php:331
4998
  msgid "Email Schedule"
4999
  msgstr ""
5000
 
5001
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:327
5002
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
5003
  msgstr ""
5004
 
5005
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:335
5006
  msgid "Send emails immediately"
5007
  msgstr ""
5008
 
5009
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:339
5010
  msgid "Send emails once an hour"
5011
  msgstr ""
5012
 
5013
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:343
5014
  msgid "Send emails once a day"
5015
  msgstr ""
5016
 
5017
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346
5018
  msgid "Subscriptions"
5019
  msgstr ""
5020
 
5021
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:348
5022
  #, php-format
5023
  msgid ""
5024
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
5025
  "updates."
5026
  msgstr ""
5027
 
5028
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:353
5029
  msgid "SMTP Override"
5030
  msgstr ""
5031
 
5032
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
5033
  msgid ""
5034
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
5035
  "use a SMTP plugin for emails."
5036
  msgstr ""
5037
 
5038
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:360
5039
  msgid ""
5040
  "Default email settings. These settings can be individually overridden when "
5041
  "editing emails."
5042
  msgstr ""
5043
 
5044
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361 ../addons/email-
5045
+ #: notices/myCRED-addon-email-notices.php:936
5046
  msgid "Email Settings"
5047
  msgstr ""
5048
 
5049
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:364 ../addons/email-
5050
+ #: notices/myCRED-addon-email-notices.php:1114
5051
  msgid "Senders Name:"
5052
  msgstr ""
5053
 
5054
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:368 ../addons/email-
5055
+ #: notices/myCRED-addon-email-notices.php:1116
5056
  msgid "Senders Email:"
5057
  msgstr ""
5058
 
5059
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:372
5060
  msgid "Reply-To:"
5061
  msgstr ""
5062
 
5063
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:376
5064
  msgid "Default Email Content"
5065
  msgstr ""
5066
 
5067
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:380
5068
  msgid "Default email content."
5069
  msgstr ""
5070
 
5071
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:383
5072
  msgid "Default Email Styling"
5073
  msgstr ""
5074
 
5075
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:387
5076
  msgid "Ignored if HTML is not allowed in emails."
5077
  msgstr ""
5078
 
5079
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:741
5080
  #, php-format
5081
  msgctxt "Badge Title - Level 1,2,3.."
5082
  msgid "%s - Level %d"
5083
  msgstr ""
5084
 
5085
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:839 ../addons/email-
5086
+ #: notices/myCRED-addon-email-notices.php:991
5087
  msgid "Email Subject"
5088
  msgstr ""
5089
 
5090
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:840 ..
5091
+ #: addons/badges/myCRED-addon-badges.php:1229
5092
  msgid "Status"
5093
  msgstr ""
5094
 
5095
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866
5096
  msgid "Not Active"
5097
  msgstr ""
5098
 
5099
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:869
5100
  #, php-format
5101
  msgid "Scheduled:<br /><strong>%1$s</strong>"
5102
  msgstr ""
5103
 
5104
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:874
5105
  msgid "Active"
5106
  msgstr ""
5107
 
5108
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:876
5109
  #, php-format
5110
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
5111
  msgstr ""
5112
 
5113
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:889
5114
  msgid "Email is sent when"
5115
  msgstr ""
5116
 
5117
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:891
5118
  msgid "Missing instance for this notice!"
5119
  msgstr ""
5120
 
5121
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:900 ../addons/email-
5122
+ #: notices/myCRED-addon-email-notices.php:902 ../addons/email-notices/myCRED-
5123
+ #: addon-email-notices.php:904
5124
  msgid "Sent To"
5125
  msgstr ""
5126
 
5127
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:902 ../addons/email-
5128
+ #: notices/myCRED-addon-email-notices.php:1077
5129
  msgid "Administrator"
5130
  msgstr ""
5131
 
5132
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
5133
  msgid "Both Administrator and User"
5134
  msgstr ""
5135
 
5136
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:915 ../addons/email-
5137
+ #: notices/myCRED-addon-email-notices.php:1095
5138
  msgid "All types"
5139
  msgstr ""
5140
 
5141
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:945
5142
  msgid "Available Template Tags"
5143
  msgstr ""
5144
 
5145
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:956
5146
  msgid "Email Header"
5147
  msgstr ""
5148
 
5149
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1033
5150
  msgid "Send this email notice when..."
5151
  msgstr ""
5152
 
5153
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
5154
  msgid "Recipient:"
5155
  msgstr ""
5156
 
5157
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
5158
  msgid "Both"
5159
  msgstr ""
5160
 
5161
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1118
5162
  msgid "Reply-To Email:"
5163
  msgstr ""
5164
 
5165
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1125
5166
  msgid "Save"
5167
  msgstr ""
5168
 
5169
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1139
5170
  msgid "CSS Styling"
5171
  msgstr ""
5172
 
5173
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1157
5174
  msgid "Site Related"
5175
  msgstr ""
5176
 
5177
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
5178
  msgid "Your websites title"
5179
  msgstr ""
5180
 
5181
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1159
5182
  msgid "Your websites address"
5183
  msgstr ""
5184
 
5185
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1160
5186
  msgid "Your websites tagline (description)"
5187
  msgstr ""
5188
 
5189
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1161
5190
  msgid "Your websites admin email"
5191
  msgstr ""
5192
 
5193
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1162
5194
  msgid "Total number of blog members"
5195
  msgstr ""
5196
 
5197
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1166
5198
  msgid "The users new balance"
5199
  msgstr ""
5200
 
5201
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1167
5202
  msgid "The users old balance"
5203
  msgstr ""
5204
 
5205
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1168
5206
  msgid "The amount of points gained or lost in this instance"
5207
  msgstr ""
5208
 
5209
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1169
5210
  msgid "The log entry"
5211
  msgstr ""
5212
 
5213
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1248 ../addons/email-
5214
+ #: notices/myCRED-addon-email-notices.php:1251 ../addons/email-notices/myCRED-
5215
+ #: addon-email-notices.php:1257
5216
  msgid "Email Notice Updated."
5217
  msgstr ""
5218
 
5219
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1253
5220
  msgid "Email Notice Activated"
5221
  msgstr ""
5222
 
5223
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1254
5224
  msgid "Email Notice Saved"
5225
  msgstr ""
5226
 
5227
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1276
5228
  msgid ""
5229
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
5230
  "are not yet ready to use this email notice!"
5231
  msgstr ""
5232
 
5233
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1278
5234
  #, php-format
5235
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
5236
  msgstr ""
5237
 
5238
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1280
5239
  msgid "This email notice is active."
5240
  msgstr ""
5241
 
5242
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1292
5243
  msgid "Settings saved."
5244
  msgstr ""
5245
 
5246
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1343
5247
  msgid "Unsubscribe"
5248
  msgstr ""
5249
 
5250
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1365
5251
  msgid "There are no email notifications yet."
5252
  msgstr ""
5253
 
5254
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1372 ..
5255
+ #: addons/badges/myCRED-addon-badges.php:1248
5256
  msgid "Save Changes"
5257
  msgstr ""
5258
 
5259
+ #: ../addons/stats/myCRED-addon-stats.php:56
5260
  msgid "Statistics"
5261
  msgstr ""
5262
 
5263
+ #: ../addons/stats/myCRED-addon-stats.php:174
5264
  msgid "Overview"
5265
  msgstr ""
5266
 
5267
+ #: ../addons/stats/myCRED-addon-stats.php:240
5268
  msgid "Refresh"
5269
  msgstr ""
5270
 
5271
+ #: ../addons/stats/myCRED-addon-stats.php:296
5272
  msgid "Your log is empty. No statistics can be shown."
5273
  msgstr ""
5274
 
5277
  msgid "Total %s:"
5278
  msgstr ""
5279
 
5280
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138 ..
5281
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:267
5282
  #, php-format
5283
  msgid "Total amount of %s in circulation"
5284
  msgstr ""
5285
 
5286
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:171 ..
5287
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:299
5288
  msgid "Total gains (%)"
5289
  msgstr ""
5290
 
5291
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:175 ..
5292
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:303
5293
  msgid "Total loses (%)"
5294
  msgstr ""
5295
 
5296
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
5297
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:307
5298
  #, php-format
5299
  msgid "Total Gained: %s"
5300
  msgstr ""
5301
 
5302
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
5303
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:307
5304
  #, php-format
5305
  msgid "Total Spent: %s"
5306
  msgstr ""
5307
 
5308
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:193 ..
5309
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:321
5310
  msgid "This Year"
5311
  msgstr ""
5312
 
 
 
 
 
 
 
 
5313
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
5314
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
5315
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
5316
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:203 ..
5317
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:325 ..
5318
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:327 ..
5319
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:329 ..
5320
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:331
5321
+ msgid "Gained"
5322
+ msgstr ""
5323
+
5324
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
5325
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
5326
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:202 ..
5327
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:204 ..
5328
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:326 ..
5329
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:328 ..
5330
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:330 ..
5331
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:332
5332
  msgid "Lost"
5333
  msgstr ""
5334
 
5368
  msgid "Gains in the last 10 days"
5369
  msgstr ""
5370
 
5371
+ #: ../addons/badges/myCRED-addon-badges.php:49 ../addons/badges/myCRED-addon-
5372
+ #: badges.php:50 ../addons/badges/myCRED-addon-badges.php:51 ..
5373
+ #: addons/badges/myCRED-addon-badges.php:157 ../addons/badges/myCRED-addon-
5374
+ #: badges.php:158 ../addons/badges/myCRED-addon-badges.php:404 ..
5375
+ #: addons/badges/myCRED-addon-badges.php:410 ../addons/badges/myCRED-addon-
5376
+ #: badges.php:416
5377
  msgid "Badges"
5378
  msgstr ""
5379
 
5380
+ #: ../addons/badges/myCRED-addon-badges.php:183
5381
  #, php-format
5382
  msgid "Badges (%d)"
5383
  msgstr ""
5384
 
5385
+ #: ../addons/badges/myCRED-addon-badges.php:277
5386
  #, php-format
5387
  msgid "%d Users earned this badge."
5388
  msgstr ""
5389
 
5390
+ #: ../addons/badges/myCRED-addon-badges.php:281
5391
  msgid "No users has yet earned this badge."
5392
  msgstr ""
5393
 
5394
+ #: ../addons/badges/myCRED-addon-badges.php:305
5395
  msgid "No connections where removed."
5396
  msgstr ""
5397
 
5398
+ #: ../addons/badges/myCRED-addon-badges.php:307
5399
  #, php-format
5400
  msgid "%s connections where removed."
5401
  msgstr ""
5402
 
5403
+ #: ../addons/badges/myCRED-addon-badges.php:405
5404
  msgid "Badge"
5405
  msgstr ""
5406
 
5407
+ #: ../addons/badges/myCRED-addon-badges.php:407
5408
  msgid "Add New Badge"
5409
  msgstr ""
5410
 
5411
+ #: ../addons/badges/myCRED-addon-badges.php:408
5412
  msgid "Edit Badge"
5413
  msgstr ""
5414
 
5415
+ #: ../addons/badges/myCRED-addon-badges.php:409
5416
  msgid "New Badge"
5417
  msgstr ""
5418
 
5419
+ #: ../addons/badges/myCRED-addon-badges.php:411
5420
  msgid "View Badge"
5421
  msgstr ""
5422
 
5423
+ #: ../addons/badges/myCRED-addon-badges.php:412
5424
  msgid "Search Badge"
5425
  msgstr ""
5426
 
5427
+ #: ../addons/badges/myCRED-addon-badges.php:413
5428
  msgid "No badges found"
5429
  msgstr ""
5430
 
5431
+ #: ../addons/badges/myCRED-addon-badges.php:414
5432
  msgid "No badges found in Trash"
5433
  msgstr ""
5434
 
5435
+ #: ../addons/badges/myCRED-addon-badges.php:460 ../addons/badges/myCRED-addon-
5436
+ #: badges.php:568
5437
  msgid "Badge Name"
5438
  msgstr ""
5439
 
5440
+ #: ../addons/badges/myCRED-addon-badges.php:461
5441
  msgid "Badge Images"
5442
  msgstr ""
5443
 
5444
+ #: ../addons/badges/myCRED-addon-badges.php:462
5445
  msgid "Requirements"
5446
  msgstr ""
5447
 
5448
+ #: ../addons/badges/myCRED-addon-badges.php:504
5449
  msgid "A user must have gained or lost:"
5450
  msgstr ""
5451
 
5452
+ #: ../addons/badges/myCRED-addon-badges.php:543 ../addons/badges/myCRED-addon-
5453
+ #: badges.php:546 ../addons/badges/myCRED-addon-badges.php:550 ..
5454
+ #: addons/badges/myCRED-addon-badges.php:551 ../addons/badges/myCRED-addon-
5455
+ #: badges.php:552
5456
  msgid "Badge Updated."
5457
  msgstr ""
5458
 
5459
+ #: ../addons/badges/myCRED-addon-badges.php:548
5460
  msgid "Badge Enabled"
5461
  msgstr ""
5462
 
5463
+ #: ../addons/badges/myCRED-addon-badges.php:549
5464
  msgid "Badge Saved"
5465
  msgstr ""
5466
 
5467
+ #: ../addons/badges/myCRED-addon-badges.php:582
5468
  msgid "Badge Setup"
5469
  msgstr ""
5470
 
5471
+ #: ../addons/badges/myCRED-addon-badges.php:611
5472
  msgid "Assign Badge"
5473
  msgstr ""
5474
 
5475
+ #: ../addons/badges/myCRED-addon-badges.php:612
5476
  msgid "Remove Connections"
5477
  msgstr ""
5478
 
5479
+ #: ../addons/badges/myCRED-addon-badges.php:671
5480
  msgid "Time(s)"
5481
  msgstr ""
5482
 
5483
+ #: ../addons/badges/myCRED-addon-badges.php:672
5484
  msgid "In total"
5485
  msgstr ""
5486
 
5487
+ #: ../addons/badges/myCRED-addon-badges.php:706 ../addons/badges/myCRED-addon-
5488
+ #: badges.php:809 ../addons/badges/myCRED-addon-badges.php:869 ..
5489
+ #: addons/badges/myCRED-addon-badges.php:884
5490
  msgid "Badge Image"
5491
  msgstr ""
5492
 
5493
+ #: ../addons/badges/myCRED-addon-badges.php:707 ../addons/badges/myCRED-addon-
5494
+ #: badges.php:707
5495
  msgid "Set badge image"
5496
  msgstr ""
5497
 
5498
+ #: ../addons/badges/myCRED-addon-badges.php:718
5499
  msgid "Default Image"
5500
  msgstr ""
5501
 
5502
+ #: ../addons/badges/myCRED-addon-badges.php:719 ../addons/badges/myCRED-addon-
5503
+ #: badges.php:779 ../addons/badges/myCRED-addon-badges.php:810 ..
5504
+ #: addons/badges/myCRED-addon-badges.php:869
5505
  msgid "image url"
5506
  msgstr ""
5507
 
5508
+ #: ../addons/badges/myCRED-addon-badges.php:720 ../addons/badges/myCRED-addon-
5509
+ #: badges.php:780 ../addons/badges/myCRED-addon-badges.php:811 ..
5510
+ #: addons/badges/myCRED-addon-badges.php:869
5511
  msgid "Add Image"
5512
  msgstr ""
5513
 
5514
+ #: ../addons/badges/myCRED-addon-badges.php:721
5515
  msgid "Optional image to show when a user has not yet earned this badge."
5516
  msgstr ""
5517
 
5518
+ #: ../addons/badges/myCRED-addon-badges.php:741 ../addons/badges/myCRED-addon-
5519
+ #: badges.php:794
5520
  #, php-format
5521
  msgid "Level %d"
5522
  msgstr ""
5523
 
5524
+ #: ../addons/badges/myCRED-addon-badges.php:746 ../addons/badges/myCRED-addon-
5525
+ #: badges.php:799 ../addons/badges/myCRED-addon-badges.php:869
5526
  msgid "for"
5527
  msgstr ""
5528
 
5529
+ #: ../addons/badges/myCRED-addon-badges.php:778
5530
  msgid "Main Image"
5531
  msgstr ""
5532
 
5533
+ #: ../addons/badges/myCRED-addon-badges.php:812 ../addons/badges/myCRED-addon-
5534
+ #: badges.php:869
5535
  msgid "Leave empty if you do not want to assign a custom image for this level."
5536
  msgstr ""
5537
 
5538
+ #: ../addons/badges/myCRED-addon-badges.php:812 ../addons/badges/myCRED-addon-
5539
+ #: badges.php:869
5540
  msgid "Remove this level"
5541
  msgstr ""
5542
 
5543
+ #: ../addons/badges/myCRED-addon-badges.php:826
5544
  msgid "Add Level"
5545
  msgstr ""
5546
 
5547
+ #: ../addons/badges/myCRED-addon-badges.php:869 ../addons/badges/myCRED-addon-
5548
+ #: badges.php:1214
5549
  msgid "Level"
5550
  msgstr ""
5551
 
5552
+ #: ../addons/badges/myCRED-addon-badges.php:886
5553
  msgid "Use as Badge"
5554
  msgstr ""
5555
 
5556
+ #: ../addons/badges/myCRED-addon-badges.php:1027 ../addons/badges/myCRED-addon-
5557
+ #: badges.php:1063
5558
  msgid "Show all badges, including badges users have not yet earned."
5559
  msgstr ""
5560
 
5561
+ #: ../addons/badges/myCRED-addon-badges.php:1048
5562
  msgid "Include in Forum Replies"
5563
  msgstr ""
5564
 
5565
+ #: ../addons/badges/myCRED-addon-badges.php:1049
5566
  msgid "Include in Profile and Forum Replies"
5567
  msgstr ""
5568
 
5569
+ #: ../addons/badges/myCRED-addon-badges.php:1164
5570
  msgid "User Badges"
5571
  msgstr ""
5572
 
5573
+ #: ../addons/badges/myCRED-addon-badges.php:1173
5574
  msgid ""
5575
  "Here you can view the badges this user has earned and if needed, manually "
5576
  "give or take away a badge from a user."
5577
  msgstr ""
5578
 
5579
+ #: ../addons/badges/myCRED-addon-badges.php:1182
5580
  msgid "Not earned"
5581
  msgstr ""
5582
 
5583
+ #: ../addons/badges/myCRED-addon-badges.php:1189 ../addons/badges/myCRED-addon-
5584
+ #: badges.php:1232
5585
  msgid "Earned"
5586
  msgstr ""
5587
 
5588
+ #: ../addons/badges/myCRED-addon-badges.php:1201
5589
  msgid "No image"
5590
  msgstr ""
5591
 
5592
+ #: ../addons/badges/myCRED-addon-badges.php:1209
5593
  msgid "Select a level"
5594
  msgstr ""
5595
 
5596
+ #: ../addons/badges/includes/mycred-badge-functions.php:69
5597
  #, php-format
5598
  msgid "Level %s"
5599
  msgstr ""
5600
 
5601
+ #: ../addons/badges/includes/mycred-badge-functions.php:72
5602
  #, php-format
5603
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
5604
  msgid "%s for %s %s - %s"
5605
  msgstr ""
5606
 
5607
+ #: ../addons/badges/includes/mycred-badge-functions.php:72 ..
5608
  #: addons/coupons/myCRED-addon-coupons.php:221 ../addons/coupons/myCRED-addon-
5609
  #: coupons.php:516
5610
  #, php-format
5613
  msgstr[0] ""
5614
  msgstr[1] ""
5615
 
5616
+ #: ../addons/badges/includes/mycred-badge-functions.php:74
5617
  #, php-format
5618
  msgctxt "\"x points\" for \"reference\" in total"
5619
  msgid "%s for %s in total"
5848
  msgstr ""
5849
 
5850
  #: ../addons/sell-content/myCRED-addon-sell-content.php:44 ../addons/buy-
5851
+ #: creds/myCRED-addon-buy-creds.php:1541
5852
  msgid "Buy Now"
5853
  msgstr ""
5854
 
5855
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:76
5856
  msgid "Hours"
5857
  msgstr ""
5858
 
5859
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:114
5860
  msgid "Profit Share"
5861
  msgstr ""
5862
 
5863
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:122
5864
  msgid "Save Profit Share"
5865
  msgstr ""
5866
 
5867
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:175
5868
  msgid "Profit Share override saved"
5869
  msgstr ""
5870
 
5871
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:347
5872
  msgid "You can not buy this content."
5873
  msgstr ""
5874
 
5875
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:398
5876
  msgid "Error. Try Again"
5877
  msgstr ""
5878
 
5879
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:423
5880
  msgid "No Payout. Just charge."
5881
  msgstr ""
5882
 
5883
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:424
5884
  msgid "Pay Content Author."
5885
  msgstr ""
5886
 
5887
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:432
5888
  msgid "Post Types"
5889
  msgstr ""
5890
 
5891
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:436
5892
  msgid "Comma separated list of post types that can be sold."
5893
  msgstr ""
5894
 
5895
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:475
5896
  msgid "Percentage to pay Author"
5897
  msgstr ""
5898
 
5899
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:477
5900
  msgid ""
5901
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
5902
  "authors are not paid."
5903
  msgstr ""
5904
 
5905
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:488
5906
  msgid "Defaults"
5907
  msgstr ""
5908
 
5909
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:496
5910
  msgid "Allow authors to change price."
5911
  msgstr ""
5912
 
5913
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:505
5914
  msgid "Allow authors to change button label."
5915
  msgstr ""
5916
 
5917
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:509
5918
  msgid "Purchases expire after"
5919
  msgstr ""
5920
 
5921
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:511
5922
  msgid "Use zero for permanent sales."
5923
  msgstr ""
5924
 
5925
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:517
5926
  msgid "For Visitors"
5927
  msgstr ""
5928
 
5929
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:527
5930
  #, php-format
5931
  msgid ""
5932
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
5933
  "be logged in to buy content!"
5934
  msgstr ""
5935
 
5936
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:534
5937
  msgid "For Members"
5938
  msgstr ""
5939
 
5940
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:544 ../addons/sell-
5941
+ #: content/myCRED-addon-sell-content.php:559
5942
  #, php-format
5943
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
5944
  msgstr ""
5945
 
5946
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:549
5947
  msgid "For members that can not afford to buy"
5948
  msgstr ""
5949
 
5950
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:563
5951
  msgid "Log template for Purchases"
5952
  msgstr ""
5953
 
5954
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:570
5955
  msgid "Log template for Sales"
5956
  msgstr ""
5957
 
5958
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:627
5959
  #, php-format
5960
  msgid "%s Sell This"
5961
  msgstr ""
5962
 
5963
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:694
5964
  #, php-format
5965
  msgid "%s Sell Content needs to be setup before you can use this feature."
5966
  msgstr ""
5967
 
5968
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:698
5969
  msgid "Setup add-on"
5970
  msgstr ""
5971
 
5972
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:698
5973
  msgid "Lets do it"
5974
  msgstr ""
5975
 
5976
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:739
5977
  #, php-format
5978
  msgid "Enable sale of this %s"
5979
  msgstr ""
5980
 
5981
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:753
5982
  msgid "Purchase expires after"
5983
  msgstr ""
5984
 
5985
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1105
5986
  msgid "Thank you for your purchase!"
5987
  msgstr ""
5988
 
5989
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1201 ../addons/sell-
5990
+ #: content/myCRED-addon-sell-content.php:1293
5991
  msgid "The following content is set for sale:"
5992
  msgstr ""
5993
 
5994
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1314 ../addons/buy-
5995
+ #: creds/myCRED-addon-buy-creds.php:1271
5996
  msgid "No purchases found"
5997
  msgstr ""
5998
 
5999
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1363
6000
  msgid "Purchased"
6001
  msgstr ""
6002
 
6033
  msgstr ""
6034
 
6035
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:284 ../addons/buy-creds/myCRED-
6036
+ #: addon-buy-creds.php:1754
6037
  msgid "No pending payments found"
6038
  msgstr ""
6039
 
6041
  msgid "Not found in Trash"
6042
  msgstr ""
6043
 
6044
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
6045
+ #: addon-buy-creds.php:1077 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713
6046
  msgid "Transaction ID"
6047
  msgstr ""
6048
 
6049
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
6050
+ #: addon-buy-creds.php:1073
6051
  msgid "Buyer"
6052
  msgstr ""
6053
 
6054
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
6055
+ #: addon-buy-creds.php:1716 ../addons/buy-creds/abstracts/mycred-abstract-payment-
6056
  #: gateway.php:594
6057
  msgid "Cost"
6058
  msgstr ""
6059
 
6060
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
6061
  msgid "Type"
6062
  msgstr ""
6063
 
6064
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
6065
  msgid "Pay Out"
6066
  msgstr ""
6067
 
6068
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
6069
  msgid "buyCRED Purchase Log"
6070
  msgstr ""
6071
 
6072
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
6073
+ #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:921
6074
  msgid "Purchase Log"
6075
  msgstr ""
6076
 
6077
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
6078
  msgid "Please login to purchase %_plural%"
6079
  msgstr ""
6080
 
6081
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
6082
  #, php-format
6083
  msgid "Gift purchase from %display_name%."
6084
  msgstr ""
6085
 
6086
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
6087
  #, php-format
6088
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
6089
  msgstr ""
6090
 
6091
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
6092
  msgid "Select the point types that users can buy. You must select at least one!"
6093
  msgstr ""
6094
 
6095
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
6096
  msgid "Login Template"
6097
  msgstr ""
6098
 
6099
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
6100
  msgid "Content to show when a user is not logged in."
6101
  msgstr ""
6102
 
6103
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
6104
  msgid "Thank You Page"
6105
  msgstr ""
6106
 
6107
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
6108
+ #: addon-buy-creds.php:705
6109
  msgid "Custom URL"
6110
  msgstr ""
6111
 
6112
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
6113
+ #: addon-buy-creds.php:710
6114
  msgid "Page"
6115
  msgstr ""
6116
 
6117
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
6118
  msgid "Cancellation Page"
6119
  msgstr ""
6120
 
6121
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
6122
  #, php-format
6123
  msgid "Show seperate log for %_plural% purchases."
6124
  msgstr ""
6125
 
6126
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
6127
  msgid "Gifting"
6128
  msgstr ""
6129
 
6130
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
6131
  #, php-format
6132
  msgid "Allow users to buy %_plural% for other users."
6133
  msgstr ""
6134
 
6135
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
6136
  #, php-format
6137
  msgid "Allow users to buy %_plural% for content authors."
6138
  msgstr ""
6139
 
6140
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
6141
  #, php-format
6142
  msgid "%s Exchange Rate"
6143
  msgstr ""
6144
 
6145
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
6146
  msgid "Save Exchange Rates"
6147
  msgstr ""
6148
 
6149
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899
6150
  msgid "Exchange rate override saved"
6151
  msgstr ""
6152
 
6153
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
6154
  msgid "Payment completed"
6155
  msgstr ""
6156
 
6157
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:921
6158
  #, php-format
6159
  msgid "%s Payment Gateways"
6160
  msgstr ""
6161
 
6162
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:921 ../addons/buy-creds/myCRED-
6163
+ #: addon-buy-creds.php:1084
6164
  msgid "buyCRED Settings"
6165
  msgstr ""
6166
 
6167
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:946
6168
  msgid "Test Mode"
6169
  msgstr ""
6170
 
6171
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:948
6172
  msgid "Enabled"
6173
  msgstr ""
6174
 
6175
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:951
6176
  msgid "Disabled"
6177
  msgstr ""
6178
 
6179
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:961
6180
  msgid "Sandbox Mode"
6181
  msgstr ""
6182
 
6183
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:964
6184
  msgid "Enable for test purchases."
6185
  msgstr ""
6186
 
6187
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986
6188
  msgid "More Gateways"
6189
  msgstr ""
6190
 
6191
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1076
6192
  msgid "Payed"
6193
  msgstr ""
6194
 
6195
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1084
6196
  msgid "<strong>buy</strong>CRED Purchase Log"
6197
  msgstr ""
6198
 
6199
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1349 ../addons/buy-creds/myCRED-
6200
+ #: addon-buy-creds.php:1466
6201
  msgid "This Add-on needs to setup before you can use this shortcode."
6202
  msgstr ""
6203
 
6204
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1368 ../addons/buy-creds/myCRED-
6205
+ #: addon-buy-creds.php:1485
6206
  msgid "No gateways installed."
6207
  msgstr ""
6208
 
6209
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1369 ../addons/buy-creds/myCRED-
6210
+ #: addon-buy-creds.php:1486
6211
  msgid "Gateway does not exist."
6212
  msgstr ""
6213
 
6214
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1417
6215
  msgid "Yourself"
6216
  msgstr ""
6217
 
6218
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1487
6219
  msgid "No active gateways found."
6220
  msgstr ""
6221
 
6222
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1488
6223
  msgid "The selected gateway is not active."
6224
  msgstr ""
6225
 
6226
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1535
6227
  #, php-format
6228
  msgid "Buy with %gateway%"
6229
  msgstr ""
6230
 
6231
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1586
6232
  msgid "No users found"
6233
  msgstr ""
6234
 
6235
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1596
6236
  msgid "To"
6237
  msgstr ""
6238
 
6239
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1613
6240
  msgid "Select Amount"
6241
  msgstr ""
6242
 
6243
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1637
6244
  msgid "min."
6245
  msgstr ""
6246
 
6247
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1645
6248
  msgid "Select Gateway"
6249
  msgstr ""
6250
 
lang/mycred-es_ES.mo CHANGED
Binary file
lang/mycred-es_ES.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Mon Nov 23 2015 17:48:51 GMT+0100 (CET)\n"
7
  "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
@@ -30,10 +30,7 @@ msgid "http://mycred.me"
30
  msgstr ""
31
 
32
  #. Description of the plugin
33
- msgid ""
34
- "<strong>my</strong>CRED is an adaptive points management system for "
35
- "WordPress powered websites, giving you full control on how points are gained,"
36
- " used, traded, managed, logged or presented."
37
  msgstr ""
38
 
39
  #. Author of the plugin
@@ -44,7 +41,7 @@ msgstr ""
44
  msgid "http://www.merovingi.com"
45
  msgstr ""
46
 
47
- #: ../mycred.php:685
48
  msgid ""
49
  "In order to adjust the number of decimal places you want to use we must "
50
  "update your log. It is highly recommended that you backup your current log "
@@ -105,17 +102,17 @@ msgid ""
105
  "other characters will be deleted!"
106
  msgstr ""
107
 
108
- #: ../modules/mycred-module-addons.php:260
109
  msgid ""
110
  "Gives you access to your myCRED Staticstics based on your users gains and "
111
  "loses."
112
  msgstr ""
113
 
114
- #: ../modules/mycred-module-addons.php:328
115
  msgid "Add-ons Reloaded"
116
  msgstr ""
117
 
118
- #: ../modules/mycred-module-addons.php:358
119
  msgid "Reload Add-ons"
120
  msgstr ""
121
 
@@ -125,96 +122,101 @@ msgid ""
125
  "Certain hooks and shortcodes will not work correctly!"
126
  msgstr ""
127
 
128
- #: ../plugins/mycred-hook-wp-postratings.php:18
129
  msgid "Post Ratings"
130
  msgstr ""
131
 
132
- #: ../plugins/mycred-hook-wp-postratings.php:19
133
  #, php-format
134
  msgid ""
135
  "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
136
  "author and the user rating."
137
  msgstr ""
138
 
139
- #: ../plugins/mycred-hook-wp-postratings.php:76
140
  msgid "Based on rating"
141
  msgstr ""
142
 
143
- #: ../plugins/mycred-hook-wp-postratings.php:150 ../includes/mycred-functions.php:
144
- #: 2599
145
  msgid "Adding a Rating"
146
  msgstr ""
147
 
148
- #: ../plugins/mycred-hook-wp-postratings.php:160 ../plugins/mycred-hook-wp-
149
- #: postratings.php:179
150
  msgid "Use the Rating Value instead of the amount set here."
151
  msgstr ""
152
 
153
- #: ../plugins/mycred-hook-wp-postratings.php:169 ../includes/mycred-functions.php:
154
- #: 2600
155
  msgid "Receiving a Rating"
156
  msgstr ""
157
 
158
- #: ../plugins/mycred-hook-buddypress.php:519
159
  #, php-format
160
  msgid "%plural% for Removing Profile Update"
161
  msgstr ""
162
 
163
- #: ../plugins/mycred-hook-buddypress.php:563
164
  #, php-format
165
  msgid ""
166
  "Users with zero balance can not add friends. Requires that you deduct "
167
  "%_plural% for adding a new friend."
168
  msgstr ""
169
 
170
- #: ../plugins/mycred-hook-affiliatewp.php:18
171
  msgid "AffiliateWP"
172
  msgstr ""
173
 
174
- #: ../plugins/mycred-hook-affiliatewp.php:19
175
  #, php-format
176
  msgid ""
177
  "Awards %_plural% for affiliate signups, referring visitors and store sale "
178
  "referrals."
179
  msgstr ""
180
 
181
- #: ../plugins/mycred-hook-affiliatewp.php:218
182
  msgid "Affiliate Signup"
183
  msgstr ""
184
 
185
- #: ../plugins/mycred-hook-affiliatewp.php:248
186
  msgid "Referring Sales"
187
  msgstr ""
188
 
189
- #: ../plugins/mycred-hook-affiliatewp.php:251
190
  msgid "Pay a set amount for all referrals."
191
  msgstr ""
192
 
193
- #: ../plugins/mycred-hook-affiliatewp.php:252
194
  #, php-format
195
  msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
196
  msgstr ""
197
 
198
- #: ../plugins/mycred-hook-affiliatewp.php:253
199
  msgid "Apply an exchange rate against the referral amount."
200
  msgstr ""
201
 
202
- #: ../plugins/mycred-hook-affiliatewp.php:261
203
  msgid "Log template - Payout"
204
  msgstr ""
205
 
206
- #: ../plugins/mycred-hook-affiliatewp.php:266
207
  msgid "Log template - Refund"
208
  msgstr ""
209
 
210
- #: ../plugins/mycred-hook-wp-favorite-posts.php:225
211
  msgid "Authors Content added to favorites"
212
  msgstr ""
213
 
214
- #: ../plugins/mycred-hook-wp-favorite-posts.php:256
215
  msgid "Removing Content from Favorites (Author)"
216
  msgstr ""
217
 
 
 
 
 
 
218
  #: ../includes/mycred-log.php:628
219
  msgid "User ID, Username, Email or Nicename"
220
  msgstr ""
@@ -223,15 +225,17 @@ msgstr ""
223
  msgid "16, 24 or 32 characters"
224
  msgstr ""
225
 
226
- #: ../includes/mycred-shortcodes.php:1065
227
- msgid "No instances found for this point type"
 
 
228
  msgstr ""
229
 
230
- #: ../includes/mycred-shortcodes.php:1069
231
- msgid "Invalid point type"
232
  msgstr ""
233
 
234
- #: ../includes/mycred-shortcodes.php:1130
235
  msgid "Instance"
236
  msgstr ""
237
 
@@ -239,55 +243,63 @@ msgstr ""
239
  msgid "Use zero for no decimals or maximum 20."
240
  msgstr ""
241
 
242
- #: ../includes/mycred-functions.php:2536
243
  msgid "Profile Update Removal"
244
  msgstr ""
245
 
246
- #: ../includes/mycred-functions.php:2592
247
  msgid "Affiliate Signup (AffiliateWP)"
248
  msgstr ""
249
 
250
- #: ../includes/mycred-functions.php:2593
251
  msgid "Referred Visit (AffiliateWP)"
252
  msgstr ""
253
 
254
- #: ../includes/mycred-functions.php:2594
255
  msgid "Affiliate Referral (AffiliateWP)"
256
  msgstr ""
257
 
258
- #: ../includes/mycred-functions.php:2595
259
  msgid "Referral Refund (AffiliateWP)"
260
  msgstr ""
261
 
262
- #: ../includes/mycred-functions.php:2631
263
  msgid "Store Reward (WooCommerce)"
264
  msgstr ""
265
 
266
- #: ../includes/mycred-functions.php:2632
267
  msgid "Product Review (WooCommerce)"
268
  msgstr ""
269
 
270
- #: ../includes/mycred-functions.php:2636
271
  msgid "Store Reward (MarketPress)"
272
  msgstr ""
273
 
274
- #: ../includes/mycred-functions.php:2851
 
 
 
 
 
 
 
 
275
  msgid "per day"
276
  msgstr ""
277
 
278
- #: ../includes/mycred-functions.php:2853
279
  msgid "per week"
280
  msgstr ""
281
 
282
- #: ../includes/mycred-functions.php:2855
283
  msgid "per month"
284
  msgstr ""
285
 
286
- #: ../includes/mycred-functions.php:2857
287
  msgid "in total"
288
  msgstr ""
289
 
290
- #: ../includes/mycred-functions.php:2859 ../includes/mycred-functions.php:2863
291
  #, php-format
292
  msgid "Maximum once"
293
  msgid_plural "Maximum %d times"
@@ -313,43 +325,43 @@ msgid ""
313
  "multiple point types."
314
  msgstr ""
315
 
316
- #: ../addons/ranks/myCRED-addon-ranks.php:441
317
  #, php-format
318
  msgid "Ranks for %s"
319
  msgstr ""
320
 
321
- #: ../addons/ranks/myCRED-addon-ranks.php:1024
322
  #, php-format
323
  msgid "<strong>Rank:</strong> %s"
324
  msgstr ""
325
 
326
- #: ../addons/ranks/myCRED-addon-ranks.php:1388
327
  msgid ""
328
  "Use this button to calculate or recalculate your users totals. If not used, "
329
  "the users current balance will be used as a starting point."
330
  msgstr ""
331
 
332
- #: ../addons/ranks/myCRED-addon-ranks.php:1430 ../addons/ranks/myCRED-addon-ranks.
333
- #: php:1475
334
  #, php-format
335
  msgid ""
336
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
337
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
338
  msgstr ""
339
 
340
- #: ../addons/ranks/myCRED-addon-ranks.php:1452
341
  msgid "Include in Topic Replies"
342
  msgstr ""
343
 
344
- #: ../addons/ranks/myCRED-addon-ranks.php:1454
345
  msgid "Include in Topic Replies and Profile"
346
  msgstr ""
347
 
348
- #: ../addons/ranks/myCRED-addon-ranks.php:1458
349
  msgid "Rank in bbPress"
350
  msgstr ""
351
 
352
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:145
353
  msgid "Rank not found. Please check the id and try again."
354
  msgstr ""
355
 
@@ -357,64 +369,64 @@ msgstr ""
357
  msgid "Notify your users when their balances changes."
358
  msgstr ""
359
 
360
- #: ../addons/notifications/myCRED-addon-notifications.php:205
361
  msgid "Restore to default"
362
  msgstr ""
363
 
364
- #: ../addons/notifications/myCRED-addon-notifications.php:219
365
  msgid ""
366
  "Number of seconds before a notice is automatically removed after being shown "
367
  "to user. Use zero to disable."
368
  msgstr ""
369
 
370
- #: ../addons/email-notices/myCRED-addon-email-notices.php:211
371
  msgid "Badge Add-on"
372
  msgstr ""
373
 
374
- #: ../addons/email-notices/myCRED-addon-email-notices.php:212
375
  msgid "user gains a badge"
376
  msgstr ""
377
 
378
- #: ../addons/email-notices/myCRED-addon-email-notices.php:719
379
  #, php-format
380
  msgctxt "Badge Title - Level 1,2,3.."
381
  msgid "%s - Level %d"
382
  msgstr ""
383
 
384
- #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
385
- #: notices/myCRED-addon-email-notices.php:1037
386
  msgid "All types"
387
  msgstr ""
388
 
389
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
390
  msgid "The users new balance"
391
  msgstr ""
392
 
393
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
394
  msgid "The users old balance"
395
  msgstr ""
396
 
397
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
398
  msgid "The amount of points gained or lost in this instance"
399
  msgstr ""
400
 
401
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
402
  msgid "The log entry"
403
  msgstr ""
404
 
405
- #: ../addons/stats/myCRED-addon-stats.php:54
406
  msgid "Statistics"
407
  msgstr ""
408
 
409
- #: ../addons/stats/myCRED-addon-stats.php:126
410
  msgid "Overview"
411
  msgstr ""
412
 
413
- #: ../addons/stats/myCRED-addon-stats.php:192
414
  msgid "Refresh"
415
  msgstr ""
416
 
417
- #: ../addons/stats/myCRED-addon-stats.php:248
418
  msgid "Your log is empty. No statistics can be shown."
419
  msgstr ""
420
 
@@ -423,44 +435,58 @@ msgstr ""
423
  msgid "Total %s:"
424
  msgstr ""
425
 
426
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138
 
427
  #, php-format
428
  msgid "Total amount of %s in circulation"
429
  msgstr ""
430
 
431
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:170
 
432
  msgid "Total gains (%)"
433
  msgstr ""
434
 
435
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:174
 
436
  msgid "Total loses (%)"
437
  msgstr ""
438
 
439
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
 
440
  #, php-format
441
  msgid "Total Gained: %s"
442
  msgstr ""
443
 
444
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
 
445
  #, php-format
446
  msgid "Total Spent: %s"
447
  msgstr ""
448
 
449
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:192
 
450
  msgid "This Year"
451
  msgstr ""
452
 
453
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:196 ..
454
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
455
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
456
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
457
- msgid "Gained"
458
- msgstr ""
459
-
460
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
461
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
462
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
463
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
  msgid "Lost"
465
  msgstr ""
466
 
@@ -500,103 +526,103 @@ msgstr ""
500
  msgid "Gains in the last 10 days"
501
  msgstr ""
502
 
503
- #: ../addons/badges/myCRED-addon-badges.php:169
504
  #, php-format
505
  msgid "Badges (%d)"
506
  msgstr ""
507
 
508
- #: ../addons/badges/myCRED-addon-badges.php:287
509
  msgid "No connections where removed."
510
  msgstr ""
511
 
512
- #: ../addons/badges/myCRED-addon-badges.php:555
513
  msgid "Badge Setup"
514
  msgstr ""
515
 
516
- #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
517
- #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
518
- #: addons/badges/myCRED-addon-badges.php:831
519
  msgid "Add Image"
520
  msgstr ""
521
 
522
- #: ../addons/badges/myCRED-addon-badges.php:685
523
  msgid "Optional image to show when a user has not yet earned this badge."
524
  msgstr ""
525
 
526
- #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
527
- #: badges.php:756
528
  #, php-format
529
  msgid "Level %d"
530
  msgstr ""
531
 
532
- #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
533
- #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
534
  msgid "for"
535
  msgstr ""
536
 
537
- #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
538
- #: badges.php:831
539
  msgid "Leave empty if you do not want to assign a custom image for this level."
540
  msgstr ""
541
 
542
- #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
543
- #: badges.php:831
544
  msgid "Remove this level"
545
  msgstr ""
546
 
547
- #: ../addons/badges/myCRED-addon-badges.php:788
548
  msgid "Add Level"
549
  msgstr ""
550
 
551
- #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
552
- #: badges.php:1154
553
  msgid "Level"
554
  msgstr ""
555
 
556
- #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
557
- #: badges.php:1017
558
  msgid "Show all badges, including badges users have not yet earned."
559
  msgstr ""
560
 
561
- #: ../addons/badges/myCRED-addon-badges.php:1111
562
  msgid "User Badges"
563
  msgstr ""
564
 
565
- #: ../addons/badges/myCRED-addon-badges.php:1116
566
  msgid ""
567
  "Here you can view the badges this user has earned and if needed, manually "
568
  "give or take away a badge from a user."
569
  msgstr ""
570
 
571
- #: ../addons/badges/myCRED-addon-badges.php:1125
572
  msgid "Not earned"
573
  msgstr ""
574
 
575
- #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
576
- #: badges.php:1168
577
  msgid "Earned"
578
  msgstr ""
579
 
580
- #: ../addons/badges/myCRED-addon-badges.php:1143
581
  msgid "No image"
582
  msgstr ""
583
 
584
- #: ../addons/badges/myCRED-addon-badges.php:1150
585
  msgid "Select a level"
586
  msgstr ""
587
 
588
- #: ../addons/badges/includes/mycred-badge-functions.php:68
589
  #, php-format
590
  msgid "Level %s"
591
  msgstr ""
592
 
593
- #: ../addons/badges/includes/mycred-badge-functions.php:71
594
  #, php-format
595
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
596
  msgid "%s for %s %s - %s"
597
  msgstr ""
598
 
599
- #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
600
  #: addons/coupons/myCRED-addon-coupons.php:221 ../addons/coupons/myCRED-addon-
601
  #: coupons.php:516
602
  #, php-format
@@ -630,33 +656,33 @@ msgstr ""
630
  msgid "myCRED"
631
  msgstr "myCRED"
632
 
633
- #: ../mycred.php:462
634
  msgid "Balance"
635
  msgstr "Saldo"
636
 
637
- #: ../mycred.php:487
638
  msgid "%label% History"
639
  msgstr "%label% Historial"
640
 
641
- #: ../mycred.php:581
642
  #, php-format
643
  msgid "About %s"
644
  msgstr "Sobre"
645
 
646
- #: ../mycred.php:590
647
  msgid "Awesome People"
648
  msgstr "Gente genial"
649
 
650
- #: ../mycred.php:678 ../mycred.php:703 ../mycred.php:721 ../includes/mycred-
651
- #: shortcodes.php:640 ../addons/gateway/event-booking/mycred-eventsmanager.php:
652
  #: 478 ../addons/transfer/myCRED-addon-transfer.php:146 ../addons/ranks/myCRED-
653
- #: addon-ranks.php:423 ../addons/ranks/myCRED-addon-ranks.php:1523 ..
654
- #: addons/badges/myCRED-addon-badges.php:605 ../addons/sell-content/myCRED-addon-
655
- #: sell-content.php:371
656
  msgid "Processing..."
657
  msgstr "Procesando..."
658
 
659
- #: ../mycred.php:679
660
  msgid ""
661
  "Warning! All entries in your log will be permanently removed! This can not "
662
  "be undone!"
@@ -664,7 +690,7 @@ msgstr ""
664
  "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
665
  "¡Esto no se puede deshacer!"
666
 
667
- #: ../mycred.php:680
668
  msgid ""
669
  "All log entries belonging to deleted users will be permanently deleted! This "
670
  "can not be undone!"
@@ -672,57 +698,57 @@ msgstr ""
672
  "¡Todas las entradas de registro perteneciendo al usuario seran "
673
  "permanentemente borradas! ¡Esto no se puede deshacer!"
674
 
675
- #: ../mycred.php:681
676
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
677
  msgstr ""
678
  "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
679
  "deshacer!"
680
 
681
- #: ../mycred.php:682
682
  msgid "Done!"
683
  msgstr "¡Realizado!"
684
 
685
- #: ../mycred.php:683 ../mycred.php:702 ../mycred.php:720
686
  msgid "Close"
687
  msgstr "Cerrar"
688
 
689
- #: ../mycred.php:684
690
  #, php-format
691
  msgid "Export users %plural%"
692
  msgstr "Exportar usuarios %plural%"
693
 
694
- #: ../mycred.php:701
695
  msgid "Edit Users Balance"
696
  msgstr "Editar saldo del usuario"
697
 
698
- #: ../mycred.php:719
699
  msgid "Edit Log Entry"
700
  msgstr "Edidar entrada de registro"
701
 
702
- #: ../mycred.php:723
703
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
704
  msgstr ""
705
  "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
706
  "deshacer!"
707
 
708
- #: ../mycred.php:724
709
  msgid "Log entry updated"
710
  msgstr "Entrada de registro actualizado"
711
 
712
- #: ../mycred.php:781 ../mycred.php:803 ../addons/gateway/event-booking/mycred-
713
  #: eventsmanager.php:537 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
714
- #: php:499 ../addons/email-notices/myCRED-addon-email-notices.php:811
715
  msgid "Setup"
716
  msgstr "Configurar"
717
 
718
- #: ../mycred.php:783 ../modules/mycred-module-settings.php:21 ../modules/mycred-
719
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23 ..
720
  #: includes/mycred-network.php:170 ../addons/gateway/carts/mycred-marketpress.
721
  #: php:371 ../addons/stats/abstracts/mycred-abstract-stat-widget.php:108
722
  msgid "Settings"
723
  msgstr "Configuraciones"
724
 
725
- #: ../mycred.php:826
726
  msgid ""
727
  "Make sure to backup your database and files before updating, in case "
728
  "anything goes wrong!"
@@ -735,8 +761,8 @@ msgid "This Hook has no settings"
735
  msgstr "Este gancho no ha sido configurado"
736
 
737
  #: ../abstracts/mycred-abstract-hook.php:283 ../abstracts/mycred-abstract-hook.
738
- #: php:354 ../modules/mycred-module-hooks.php:1816 ../includes/mycred-functions.
739
- #: php:2845
740
  msgid "No limit"
741
  msgstr "Sin Limite"
742
 
@@ -754,29 +780,29 @@ msgstr "Una vez al dia (reinicializado al medianoche)"
754
 
755
  #: ../abstracts/mycred-abstract-hook.php:364 ../addons/banking/abstracts/mycred-
756
  #: abstract-service.php:498 ../addons/email-notices/myCRED-addon-email-notices.
757
- #: php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992 ..
758
- #: addons/buy-creds/myCRED-addon-buy-creds.php:696 ../addons/buy-creds/myCRED-
759
- #: addon-buy-creds.php:719 ../addons/buy-creds/abstracts/mycred-abstract-payment-
760
  #: gateway.php:1023 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
761
  #: php:1046 ../addons/buy-creds/gateways/zombaio.php:356
762
  msgid "Select"
763
  msgstr "Seleccionar"
764
 
765
- #: ../abstracts/mycred-abstract-module.php:400 ../abstracts/mycred-abstract-
766
- #: module.php:410
767
  msgid "Surprise"
768
  msgstr "Sorpresa"
769
 
770
- #: ../abstracts/mycred-abstract-module.php:511 ../includes/mycred-network.php:93
771
  msgid "click to close"
772
  msgstr "haga clic para cerrar"
773
 
774
- #: ../abstracts/mycred-abstract-module.php:512 ../includes/mycred-network.php:94
775
  msgid "click to open"
776
  msgstr "haga clic para abrir"
777
 
778
- #: ../abstracts/mycred-abstract-module.php:545 ../addons/buy-creds/myCRED-addon-
779
- #: buy-creds.php:927
780
  msgid "Settings Updated"
781
  msgstr "Configuraciones Actualizadas"
782
 
@@ -804,11 +830,11 @@ msgid "Tip"
804
  msgstr "Pista"
805
 
806
  #: ../modules/mycred-module-settings.php:484 ../modules/mycred-module-addons.php:
807
- #: 303 ../modules/mycred-module-log.php:358 ../modules/mycred-module-log.php:647 .
808
- #: ./modules/mycred-module-hooks.php:193 ../includes/mycred-network.php:141 ..
809
- #: includes/mycred-admin.php:584 ../addons/banking/myCRED-addon-banking.php:219 .
810
- #: ./addons/stats/myCRED-addon-stats.php:182 ../addons/buy-creds/myCRED-addon-buy-
811
- #: creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
812
  msgid "Access Denied"
813
  msgstr "Acceso Denegado"
814
 
@@ -960,7 +986,7 @@ msgstr "Entradas"
960
 
961
  #: ../modules/mycred-module-settings.php:625 ../modules/mycred-module-settings.
962
  #: php:640 ../modules/mycred-module-log.php:407 ../addons/ranks/myCRED-addon-
963
- #: ranks.php:1613 ../addons/buy-creds/myCRED-addon-buy-creds.php:1715
964
  msgid "Actions"
965
  msgstr "Acciones"
966
 
@@ -969,12 +995,12 @@ msgid "Empty Log"
969
  msgstr "Registro Vacío"
970
 
971
  #: ../modules/mycred-module-settings.php:632 ../addons/ranks/myCRED-addon-ranks.
972
- #: php:1605
973
  msgid "User Meta Key"
974
  msgstr "Clave Meta del Usuario"
975
 
976
  #: ../modules/mycred-module-settings.php:636 ../addons/ranks/myCRED-addon-ranks.
977
- #: php:1043 ../addons/badges/myCRED-addon-badges.php:442
978
  msgid "Users"
979
  msgstr "Usuarios"
980
 
@@ -987,8 +1013,8 @@ msgid "CSV Export"
987
  msgstr "Exportar CSV"
988
 
989
  #: ../modules/mycred-module-settings.php:656 ../includes/mycred-widgets.php:600 ..
990
- #: addons/transfer/myCRED-addon-transfer.php:211 ../addons/buy-creds/myCRED-
991
- #: addon-buy-creds.php:652
992
  msgid "Point Types"
993
  msgstr "Clase de Puntos"
994
 
@@ -1004,7 +1030,7 @@ msgstr "Clave Meta"
1004
  #: ../modules/mycred-module-settings.php:674 ../modules/mycred-module-settings.
1005
  #: php:695 ../modules/mycred-module-settings.php:720 ..
1006
  #: addons/gateway/carts/mycred-woocommerce.php:160 ../addons/email-
1007
- #: notices/myCRED-addon-email-notices.php:1025
1008
  msgid "Label"
1009
  msgstr "Etiqueta"
1010
 
@@ -1028,7 +1054,7 @@ msgstr "Título del Menú y de la Página\n"
1028
 
1029
  #: ../modules/mycred-module-settings.php:739 ../addons/gateway/event-
1030
  #: booking/mycred-eventespresso3.php:502 ../addons/buy-creds/myCRED-addon-buy-
1031
- #: creds.php:986
1032
  msgid "Update Settings"
1033
  msgstr "Actualizar Configuraciones"
1034
 
@@ -1078,17 +1104,17 @@ msgstr "Exportar"
1078
  msgid "Add-ons"
1079
  msgstr "Extensiones"
1080
 
1081
- #: ../modules/mycred-module-addons.php:160
1082
  msgid "Give your users badges based on their interaction with your website."
1083
  msgstr "Dar insignias a tus usuarios basado en sus interacciones con tu sitio web."
1084
 
1085
- #: ../modules/mycred-module-addons.php:171
1086
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
1087
  msgstr ""
1088
  "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
1089
  "de las cuentas de usuarios."
1090
 
1091
- #: ../modules/mycred-module-addons.php:182
1092
  msgid ""
1093
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
1094
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
@@ -1099,7 +1125,7 @@ msgstr ""
1099
  "<strong>compra</strong>CRED tambien permite que tus usuarios compren puntos "
1100
  "para otros miembros."
1101
 
1102
- #: ../modules/mycred-module-addons.php:193
1103
  msgid ""
1104
  "The coupons add-on allows you to create coupons that users can use to add "
1105
  "points to their accounts."
@@ -1107,13 +1133,13 @@ msgstr ""
1107
  "Los cupones de add-on le permite crear cupones que los usuarios pueden "
1108
  "utilizar para agregar puntos a sus cuentas."
1109
 
1110
- #: ../modules/mycred-module-addons.php:204
1111
  msgid "Create email notices for any type of myCRED instance."
1112
  msgstr ""
1113
  "Crea avisos por correo electrónico para cualquier tipo de instancias de "
1114
  "myCRED."
1115
 
1116
- #: ../modules/mycred-module-addons.php:215
1117
  msgid ""
1118
  "Let your users pay using their <strong>my</strong>CRED points balance. "
1119
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
@@ -1124,11 +1150,11 @@ msgstr ""
1124
  "WP E-Commerce. Reservas de Eventos soportados: Event Espresso and Events "
1125
  "Manager (gratis y pro)."
1126
 
1127
- #: ../modules/mycred-module-addons.php:226
1128
  msgid "Create pop-up notifications for when users gain or loose points."
1129
  msgstr "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
1130
 
1131
- #: ../modules/mycred-module-addons.php:238
1132
  msgid ""
1133
  "Create ranks for users reaching a certain number of %_plural% with the "
1134
  "option to add logos for each rank."
@@ -1136,7 +1162,7 @@ msgstr ""
1136
  "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
1137
  "con la opción de añadir logotipos para cada rango."
1138
 
1139
- #: ../modules/mycred-module-addons.php:249
1140
  msgid ""
1141
  "This add-on allows you to sell posts, pages or any public post types on your "
1142
  "website. You can either sell the entire content or using our shortcode, sell "
@@ -1147,7 +1173,7 @@ msgstr ""
1147
  "el código corto (shortcode), vender partes de tu contenido permitiendote "
1148
  "ofrecer \"avances\"."
1149
 
1150
- #: ../modules/mycred-module-addons.php:271
1151
  msgid ""
1152
  "Allow your users to send or \"donate\" points to other members by either using "
1153
  "the mycred_transfer shortcode or the myCRED Transfer widget."
@@ -1156,63 +1182,63 @@ msgstr ""
1156
  "el código corto (shortcode) de mycred_transfer o el widget de Transferencia "
1157
  "myCRED."
1158
 
1159
- #: ../modules/mycred-module-addons.php:313
1160
  #, php-format
1161
  msgid "%s Add-ons"
1162
  msgstr "%s Extensiones (addons)"
1163
 
1164
- #: ../modules/mycred-module-addons.php:320
1165
  msgid "Add-on Activated"
1166
  msgstr "Extensión Activado"
1167
 
1168
- #: ../modules/mycred-module-addons.php:323
1169
  msgid "Add-on Deactivated"
1170
  msgstr "Extensión Desactivado"
1171
 
1172
- #: ../modules/mycred-module-addons.php:331
1173
  msgid "Add-ons can expand your current installation with further features."
1174
  msgstr ""
1175
  "Extensiones pueden ampliar tu instalación actual con más características "
1176
  "técnicas."
1177
 
1178
- #: ../modules/mycred-module-addons.php:359
1179
  #, php-format
1180
  msgid "You can find more add-ons in our %s."
1181
  msgstr "Puedes encontrar más extensiones (add-ons) en nuestro %s."
1182
 
1183
- #: ../modules/mycred-module-addons.php:359
1184
  msgid "online store"
1185
  msgstr "tienda online"
1186
 
1187
- #: ../modules/mycred-module-addons.php:382
1188
  msgid "Deactivate Add-on"
1189
  msgstr "Desactivar Extensión"
1190
 
1191
- #: ../modules/mycred-module-addons.php:383
1192
  msgid "Deactivate"
1193
  msgstr "Desactivar"
1194
 
1195
- #: ../modules/mycred-module-addons.php:390
1196
  msgid "Activate Add-on"
1197
  msgstr "Activar Extensión"
1198
 
1199
- #: ../modules/mycred-module-addons.php:391
1200
  msgid "Activate"
1201
  msgstr "Activar"
1202
 
1203
- #: ../modules/mycred-module-addons.php:409
1204
  msgid "Version"
1205
  msgstr "Version"
1206
 
1207
- #: ../modules/mycred-module-addons.php:413
1208
  msgid "By"
1209
  msgstr "Por"
1210
 
1211
- #: ../modules/mycred-module-addons.php:417
1212
  msgid "About"
1213
  msgstr "Acerca de"
1214
 
1215
- #: ../modules/mycred-module-addons.php:421
1216
  msgid "Get Pro"
1217
  msgstr "Obtenga la versión Pro"
1218
 
@@ -1234,7 +1260,7 @@ msgid "Entry Updated"
1234
  msgstr "Entrada Actualizada"
1235
 
1236
  #: ../modules/mycred-module-log.php:276 ../modules/mycred-module-log.php:277 ..
1237
- #: includes/mycred-admin.php:423 ../addons/banking/services/mycred-bank-service-
1238
  #: payouts.php:246
1239
  msgid "History"
1240
  msgstr "Historial"
@@ -1248,7 +1274,7 @@ msgstr "Buscar entre resultados por"
1248
  msgid "%s Log"
1249
  msgstr "Registro de %s"
1250
 
1251
- #: ../modules/mycred-module-log.php:525 ../includes/mycred-log.php:874
1252
  msgid "User Missing"
1253
  msgstr "Usuario Ausente"
1254
 
@@ -1256,9 +1282,9 @@ msgstr "Usuario Ausente"
1256
  msgid "Edit"
1257
  msgstr "Editar"
1258
 
1259
- #: ../modules/mycred-module-log.php:609 ../includes/mycred-log.php:755 ..
1260
- #: includes/mycred-admin.php:796 ../addons/email-notices/myCRED-addon-email-
1261
- #: notices.php:866 ../addons/email-notices/myCRED-addon-email-notices.php:1019
1262
  msgid "User"
1263
  msgstr "Usuario"
1264
 
@@ -1297,32 +1323,32 @@ msgstr "Mi Historial de %s"
1297
  msgid "Hooks"
1298
  msgstr "Ganchos"
1299
 
1300
- #: ../modules/mycred-module-hooks.php:107
1301
  #, php-format
1302
  msgid "%plural% for registrations"
1303
  msgstr "%plural% por inscripciones"
1304
 
1305
- #: ../modules/mycred-module-hooks.php:108
1306
  #, php-format
1307
  msgid "Award %_plural% for users joining your website."
1308
  msgstr "Concede %_plural% a usuarios por unirse a tu sitio de web."
1309
 
1310
- #: ../modules/mycred-module-hooks.php:114
1311
  #, php-format
1312
  msgid "%plural% for daily visits"
1313
  msgstr "%plural% para visitas diarias"
1314
 
1315
- #: ../modules/mycred-module-hooks.php:115
1316
  #, php-format
1317
  msgid "Award %_plural% for users visiting your website on a daily basis."
1318
  msgstr "Concede %_plural% a usuarios por visitar tu sitio web diariamente."
1319
 
1320
- #: ../modules/mycred-module-hooks.php:121
1321
  #, php-format
1322
  msgid "%plural% for viewing content"
1323
  msgstr "%plural% para ver contenido"
1324
 
1325
- #: ../modules/mycred-module-hooks.php:122
1326
  #, php-format
1327
  msgid ""
1328
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
@@ -1331,12 +1357,12 @@ msgstr ""
1331
  "Concede %_plural% a usuarios por ver entradas y / o %plural% a tus autores "
1332
  "cuando miembros ven su contenido."
1333
 
1334
- #: ../modules/mycred-module-hooks.php:128
1335
  #, php-format
1336
  msgid "%plural% for logins"
1337
  msgstr "%plural% para ingresos"
1338
 
1339
- #: ../modules/mycred-module-hooks.php:129
1340
  #, php-format
1341
  msgid ""
1342
  "Award %_plural% for logging in to your website. You can also set an optional "
@@ -1345,39 +1371,39 @@ msgstr ""
1345
  "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
1346
  "ajustar un limíte opcional."
1347
 
1348
- #: ../modules/mycred-module-hooks.php:135
1349
  #, php-format
1350
  msgid "%plural% for publishing content"
1351
  msgstr "%plural% por publicar contenido"
1352
 
1353
- #: ../modules/mycred-module-hooks.php:136
1354
  #, php-format
1355
  msgid ""
1356
  "Award %_plural% for publishing content on your website. If your custom post "
1357
  "type is not shown bellow, make sure it is set to \"Public\"."
1358
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
1359
 
1360
- #: ../modules/mycred-module-hooks.php:142
1361
  #, php-format
1362
  msgid "%plural% for comments"
1363
  msgstr "%plural% por comentarios"
1364
 
1365
- #: ../modules/mycred-module-hooks.php:142
1366
  #, php-format
1367
  msgid "%plural% for Disqus comments"
1368
  msgstr "%plural% por comentarios Disqus"
1369
 
1370
- #: ../modules/mycred-module-hooks.php:143
1371
  #, php-format
1372
  msgid "Award %_plural% for making comments."
1373
  msgstr "Concede %_plural% por hacer comentarios."
1374
 
1375
- #: ../modules/mycred-module-hooks.php:149
1376
  #, php-format
1377
  msgid "%plural% for clicking on links"
1378
  msgstr "%plural% por hacer clic sobre enlaces"
1379
 
1380
- #: ../modules/mycred-module-hooks.php:150
1381
  msgid ""
1382
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
1383
  "shortcode."
@@ -1385,12 +1411,12 @@ msgstr ""
1385
  "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
1386
  "por el [mycred_link] código corto (shortcode)."
1387
 
1388
- #: ../modules/mycred-module-hooks.php:156
1389
  #, php-format
1390
  msgid "%plural% for viewing Videos"
1391
  msgstr "%plural% por ver videos"
1392
 
1393
- #: ../modules/mycred-module-hooks.php:157
1394
  msgid ""
1395
  "Award %_plural% to users who watches videos embedded using the "
1396
  "[mycred_video] shortcode."
@@ -1398,23 +1424,23 @@ msgstr ""
1398
  "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
1399
  "el [mycred_link] código corto (shortcode)."
1400
 
1401
- #: ../modules/mycred-module-hooks.php:163
1402
  #, php-format
1403
  msgid "%plural% for referrals"
1404
  msgstr "%plural% por referencias (o recomendaciones)"
1405
 
1406
- #: ../modules/mycred-module-hooks.php:164
1407
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
1408
  msgstr ""
1409
  "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
1410
  "miembros inscritos."
1411
 
1412
- #: ../modules/mycred-module-hooks.php:199
1413
  #, php-format
1414
  msgid "%s Hooks"
1415
  msgstr "Ganchos de %s"
1416
 
1417
- #: ../modules/mycred-module-hooks.php:203
1418
  #, php-format
1419
  msgid ""
1420
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
@@ -1423,162 +1449,162 @@ msgstr ""
1423
  "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
1424
  "usuario, dependiendo de sus acciones en tu sitio web."
1425
 
1426
- #: ../modules/mycred-module-hooks.php:222 ../addons/banking/myCRED-addon-banking.
1427
- #: php:248 ../addons/buy-creds/myCRED-addon-buy-creds.php:954
1428
  msgid "Enable"
1429
  msgstr "Habilitar"
1430
 
1431
- #: ../modules/mycred-module-hooks.php:240 ../addons/banking/myCRED-addon-banking.
1432
- #: php:261
1433
  msgid "Update Changes"
1434
  msgstr "Actualizar Cambios"
1435
 
1436
- #: ../modules/mycred-module-hooks.php:417 ../modules/mycred-module-hooks.php:523 .
1437
- #: ./modules/mycred-module-hooks.php:690 ../modules/mycred-module-hooks.php:721 ..
1438
- #: modules/mycred-module-hooks.php:798 ../modules/mycred-module-hooks.php:1164 ..
1439
- #: modules/mycred-module-hooks.php:1181 ../modules/mycred-module-hooks.php:1230 .
1440
- #: ./modules/mycred-module-hooks.php:1682 ../modules/mycred-module-hooks.php:1699
1441
- #: ../modules/mycred-module-hooks.php:1716 ../modules/mycred-module-hooks.php:
1442
- #: 3007 ../modules/mycred-module-hooks.php:3027 ../plugins/mycred-hook-invite-
1443
- #: anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ../plugins/mycred-
1444
- #: hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-postratings.php:183 ..
1445
- #: plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-hook-simplepress.
1446
- #: php:289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
1447
- #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
1448
- #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
1449
- #: buddypress.php:513 ../plugins/mycred-hook-buddypress.php:530 ../plugins/mycred-
1450
- #: hook-buddypress.php:547 ../plugins/mycred-hook-buddypress.php:567 ..
1451
- #: plugins/mycred-hook-buddypress.php:580 ../plugins/mycred-hook-buddypress.php:
1452
- #: 597 ../plugins/mycred-hook-buddypress.php:610 ../plugins/mycred-hook-
1453
- #: buddypress.php:627 ../plugins/mycred-hook-buddypress.php:644 ../plugins/mycred-
1454
- #: hook-buddypress.php:1218 ../plugins/mycred-hook-buddypress.php:1231 ..
1455
- #: plugins/mycred-hook-buddypress.php:1248 ../plugins/mycred-hook-buddypress.php:
1456
- #: 1265 ../plugins/mycred-hook-buddypress.php:1282 ../plugins/mycred-hook-
1457
- #: buddypress.php:1299 ../plugins/mycred-hook-buddypress.php:1317 ..
1458
- #: plugins/mycred-hook-buddypress.php:1330 ../plugins/mycred-hook-buddypress.php:
1459
- #: 1347 ../plugins/mycred-hook-buddypress.php:1364 ../plugins/mycred-hook-
1460
- #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
1461
- #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
1462
- #: buddypress-links.php:308 ../plugins/mycred-hook-buddypress-links.php:325 ..
1463
- #: plugins/mycred-hook-buddypress-links.php:338 ../plugins/mycred-hook-
1464
- #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
1465
  #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-buddypress-media.
1466
- #: php:213 ../plugins/mycred-hook-buddypress-media.php:227 ../plugins/mycred-hook-
1467
- #: buddypress-media.php:241 ../plugins/mycred-hook-buddypress-media.php:254 ..
1468
- #: plugins/mycred-hook-buddypress-media.php:264 ../plugins/mycred-hook-
1469
- #: buddypress-media.php:274 ../plugins/mycred-hook-contact-form7.php:152 ..
1470
- #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
1471
- #: plugins/mycred-hook-bbPress.php:415 ../plugins/mycred-hook-bbPress.php:428 ..
1472
- #: plugins/mycred-hook-bbPress.php:445 ../plugins/mycred-hook-bbPress.php:463 ..
1473
- #: plugins/mycred-hook-bbPress.php:480 ../plugins/mycred-hook-bbPress.php:497 ..
1474
- #: plugins/mycred-hook-bbPress.php:519 ../plugins/mycred-hook-badgeOS.php:298
1475
  msgid "Log template"
1476
  msgstr "Plantilla de Registro"
1477
 
1478
- #: ../modules/mycred-module-hooks.php:673
1479
  #, php-format
1480
  msgid "%plural% for viewing Posts"
1481
  msgstr "%plural% para ver Entradas"
1482
 
1483
- #: ../modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:693 .
1484
- #: ./modules/mycred-module-hooks.php:707 ../modules/mycred-module-hooks.php:724 ..
1485
- #: modules/mycred-module-hooks.php:784 ../modules/mycred-module-hooks.php:801
1486
  msgid "Member"
1487
  msgstr "Miembro"
1488
 
1489
- #: ../modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:686 .
1490
- #: ./modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:717 ..
1491
- #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:794 ..
1492
- #: modules/mycred-module-hooks.php:1018 ../modules/mycred-module-hooks.php:1160 .
1493
- #: ./modules/mycred-module-hooks.php:1177 ../modules/mycred-module-hooks.php:1226
1494
- #: ../modules/mycred-module-hooks.php:3015 ../modules/mycred-module-hooks.php:
1495
- #: 3035 ../plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-
1496
- #: invite-anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ..
1497
- #: plugins/mycred-hook-invite-anyone.php:226 ../plugins/mycred-hook-wp-
1498
- #: postratings.php:156 ../plugins/mycred-hook-wp-postratings.php:175 ..
1499
- #: plugins/mycred-hook-gravityforms.php:148 ../plugins/mycred-hook-simplepress.
1500
- #: php:284 ../plugins/mycred-hook-simplepress.php:314 ../plugins/mycred-hook-
1501
- #: buddypress-gallery.php:102 ../plugins/mycred-hook-buddypress.php:508 ..
1502
- #: plugins/mycred-hook-buddypress.php:525 ../plugins/mycred-hook-buddypress.php:
1503
- #: 542 ../plugins/mycred-hook-buddypress.php:559 ../plugins/mycred-hook-
1504
- #: buddypress.php:592 ../plugins/mycred-hook-buddypress.php:622 ../plugins/mycred-
1505
- #: hook-buddypress.php:639 ../plugins/mycred-hook-buddypress.php:1243 ..
1506
- #: plugins/mycred-hook-buddypress.php:1260 ../plugins/mycred-hook-buddypress.php:
1507
- #: 1277 ../plugins/mycred-hook-buddypress.php:1294 ../plugins/mycred-hook-
1508
- #: buddypress.php:1312 ../plugins/mycred-hook-buddypress.php:1342 ..
1509
- #: plugins/mycred-hook-buddypress.php:1359 ../plugins/mycred-hook-buddypress-
1510
- #: links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
1511
- #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
1512
- #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
1513
- #: plugins/mycred-hook-buddypress-links.php:320 ../plugins/mycred-hook-
1514
- #: affiliatewp.php:237 ../plugins/mycred-hook-events-manager-light.php:192 ..
1515
  #: plugins/mycred-hook-sharethis.php:302 ../plugins/mycred-hook-buddypress-media.
1516
- #: php:209 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
1517
- #: buddypress-media.php:237 ../plugins/mycred-hook-wp-favorite-posts.php:213 ..
1518
- #: plugins/mycred-hook-wp-favorite-posts.php:231 ../plugins/mycred-hook-contact-
1519
- #: form7.php:147 ../plugins/mycred-hook-bbPress.php:410 ../plugins/mycred-hook-
1520
- #: bbPress.php:440 ../plugins/mycred-hook-bbPress.php:475 ../plugins/mycred-hook-
1521
- #: bbPress.php:492 ../plugins/mycred-hook-woocommerce.php:317 ../includes/mycred-
1522
- #: shortcodes.php:1132
1523
  msgid "Limit"
1524
  msgstr "Límite"
1525
 
1526
- #: ../modules/mycred-module-hooks.php:683 ../modules/mycred-module-hooks.php:699 .
1527
- #: ./modules/mycred-module-hooks.php:714 ../modules/mycred-module-hooks.php:730 ..
1528
- #: modules/mycred-module-hooks.php:791 ../modules/mycred-module-hooks.php:807 ..
1529
- #: modules/mycred-module-hooks.php:1677 ../modules/mycred-module-hooks.php:1694 .
1530
- #: ./modules/mycred-module-hooks.php:1711
1531
  msgid "Content Author"
1532
  msgstr "Autor del Contenido"
1533
 
1534
- #: ../modules/mycred-module-hooks.php:704
1535
  #, php-format
1536
  msgid "%plural% for viewing Pages"
1537
  msgstr "%plural% para ver Paginas"
1538
 
1539
- #: ../modules/mycred-module-hooks.php:781
1540
  #, php-format
1541
  msgid "%plural% for viewing %s"
1542
  msgstr "%plural% para Ver %s"
1543
 
1544
  #. can also be "Plantilla de Bitácora"
1545
- #: ../modules/mycred-module-hooks.php:1011 ../modules/mycred-module-hooks.php:
1546
- #: 2032 ../modules/mycred-module-hooks.php:2402 ../plugins/mycred-hook-wp-polls.
1547
- #: php:136 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
1548
- #: gd-star-rating.php:122 ../plugins/mycred-hook-events-manager-light.php:196 ..
1549
- #: plugins/mycred-hook-events-manager-light.php:209 ../plugins/mycred-hook-wp-
1550
- #: favorite-posts.php:217 ../plugins/mycred-hook-wp-favorite-posts.php:235 ..
1551
- #: plugins/mycred-hook-wp-favorite-posts.php:249 ../plugins/mycred-hook-wp-
1552
- #: favorite-posts.php:262 ../plugins/mycred-hook-woocommerce.php:321 ..
1553
- #: plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-hook-badgeOS.php:126 ..
1554
- #: plugins/mycred-hook-badgeOS.php:135 ../addons/banking/services/mycred-bank-
1555
  #: service-payouts.php:283 ../addons/banking/services/mycred-bank-service-
1556
  #: interest.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:371 ..
1557
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
1558
  #: addons/gateway/carts/mycred-woocommerce.php:176 ..
1559
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
1560
  #: addons/gateway/carts/mycred-marketpress.php:428 ../addons/coupons/myCRED-
1561
- #: addon-coupons.php:557 ../addons/buy-creds/myCRED-addon-buy-creds.php:673 ..
1562
- #: addons/buy-creds/myCRED-addon-buy-creds.php:736
1563
  msgid "Log Template"
1564
  msgstr "Plantilla de Registro"
1565
 
1566
- #: ../modules/mycred-module-hooks.php:1154
1567
  #, php-format
1568
  msgid "%plural% for Posts"
1569
  msgstr "%plural% por Posts"
1570
 
1571
- #: ../modules/mycred-module-hooks.php:1171
1572
  #, php-format
1573
  msgid "%plural% for Pages"
1574
  msgstr "%plural% por Paginas"
1575
 
1576
- #: ../modules/mycred-module-hooks.php:1220
1577
  #, php-format
1578
  msgid "%plural% for %s"
1579
  msgstr "%plural% por %s"
1580
 
1581
- #: ../modules/mycred-module-hooks.php:1667
1582
  #, php-format
1583
  msgid ""
1584
  "%plural% are only awarded when your website has been synced with the Disqus "
@@ -1587,35 +1613,35 @@ msgstr ""
1587
  "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
1588
  "sincronizado con el servidor de Disqus!"
1589
 
1590
- #: ../modules/mycred-module-hooks.php:1670 ../includes/mycred-functions.php:2524
1591
  msgid "Approved Comment"
1592
  msgstr "Comentario Aprobado"
1593
 
1594
- #: ../modules/mycred-module-hooks.php:1673 ../modules/mycred-module-hooks.php:
1595
- #: 1690 ../modules/mycred-module-hooks.php:1707
1596
  msgid "Comment Author"
1597
  msgstr "Autor del Comentario"
1598
 
1599
- #: ../modules/mycred-module-hooks.php:1687
1600
  msgid "Comment Marked SPAM"
1601
  msgstr "Comentario Marcado como SPAM"
1602
 
1603
- #: ../modules/mycred-module-hooks.php:1704
1604
  msgid "Trashed / Unapproved Comments"
1605
  msgstr "Comentarios Destrozados / No Aprobados"
1606
 
1607
- #: ../modules/mycred-module-hooks.php:1721 ../modules/mycred-module-hooks.php:
1608
- #: 2039 ../addons/transfer/myCRED-addon-transfer.php:259 ../addons/coupons/myCRED-
1609
  #: addon-coupons.php:175
1610
  msgid "Limits"
1611
  msgstr "imites"
1612
 
1613
- #: ../modules/mycred-module-hooks.php:1724
1614
  msgid "Limit per post"
1615
  msgstr "Límite por Entrada"
1616
 
1617
  #. what is the Spanish word for "post"? o anglicismo?
1618
- #: ../modules/mycred-module-hooks.php:1726
1619
  msgid ""
1620
  "The number of comments per post that grants %_plural% to the comment author. "
1621
  "Use zero for unlimited."
@@ -1623,17 +1649,17 @@ msgstr ""
1623
  "El numero de comentarios por cada post que concede %_plural% al autor del "
1624
  "comentario. Utilice cero para un número ilimitado"
1625
 
1626
- #: ../modules/mycred-module-hooks.php:1730
1627
  msgid "Limit per day"
1628
  msgstr "Límite por día"
1629
 
1630
- #: ../modules/mycred-module-hooks.php:1732
1631
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
1632
  msgstr ""
1633
  "Número de comentarios diarios que conceden %_plural%. Utilice cero para un "
1634
  "número ilimitado."
1635
 
1636
- #: ../modules/mycred-module-hooks.php:1737
1637
  #, php-format
1638
  msgid ""
1639
  "%plural% is to be awarded even when comment authors reply to their own "
@@ -1642,15 +1668,15 @@ msgstr ""
1642
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
1643
  "comentario."
1644
 
1645
- #: ../modules/mycred-module-hooks.php:1817
1646
  msgid "Once for each unique URL"
1647
  msgstr "Una sola vez para cada única URL"
1648
 
1649
- #: ../modules/mycred-module-hooks.php:1818
1650
  msgid "Once for each unique link id"
1651
  msgstr "Una vez para cada id del enlace único "
1652
 
1653
- #: ../modules/mycred-module-hooks.php:2029
1654
  msgid ""
1655
  "The default amount to award for clicking on links. You can override this in "
1656
  "the shortcode."
@@ -1658,16 +1684,16 @@ msgstr ""
1658
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
1659
  "anular esto con el 'shortcode' (código corto)."
1660
 
1661
- #: ../modules/mycred-module-hooks.php:2036
1662
  #, php-format
1663
  msgid "Custom tags: %url%, %title% or %id%."
1664
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
1665
 
1666
- #: ../modules/mycred-module-hooks.php:2049 ../modules/mycred-module-hooks.php:3103
1667
  msgid "Note!"
1668
  msgstr "¡Atención!"
1669
 
1670
- #: ../modules/mycred-module-hooks.php:2049
1671
  msgid ""
1672
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
1673
  "generate one automatically based on the value set under href. If you are "
@@ -1679,49 +1705,49 @@ msgstr ""
1679
  "valor fijado en href. Si estas utilizando esta función para \"compartir\" "
1680
  "contenidos, se recomienda que limites por ID."
1681
 
1682
- #: ../modules/mycred-module-hooks.php:2051 ../modules/mycred-module-hooks.php:2435
1683
  msgid "Available Shortcode"
1684
  msgstr "Código corto Disponible"
1685
 
1686
- #: ../modules/mycred-module-hooks.php:2399
1687
  msgid "Amount to award for viewing videos."
1688
  msgstr "Cantidad a ceder para ver videos."
1689
 
1690
- #: ../modules/mycred-module-hooks.php:2409
1691
  msgid "Award Logic"
1692
  msgstr "Lógica de Concesión"
1693
 
1694
- #: ../modules/mycred-module-hooks.php:2411
1695
  #, php-format
1696
  msgid "Select when %_plural% should be awarded or deducted."
1697
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
1698
 
1699
- #: ../modules/mycred-module-hooks.php:2412
1700
  msgid "Play - As soon as video starts playing."
1701
  msgstr "Play - En cuanto el video empiece a reproducirse."
1702
 
1703
- #: ../modules/mycred-module-hooks.php:2413
1704
  msgid "Full - First when the entire video has played."
1705
  msgstr "Completo - Primero cuando el video entero se haya reproducido."
1706
 
1707
- #: ../modules/mycred-module-hooks.php:2414
1708
  msgid "Interval - For each x number of seconds watched."
1709
  msgstr "Intervalo - Para cada x numero de segundos vistos."
1710
 
1711
- #: ../modules/mycred-module-hooks.php:2417 ../addons/banking/services/mycred-bank-
1712
  #: service-payouts.php:271
1713
  msgid "Interval"
1714
  msgstr "Interval"
1715
 
1716
- #: ../modules/mycred-module-hooks.php:2419
1717
  msgid "Number of seconds"
1718
  msgstr "Numero de segundos"
1719
 
1720
- #: ../modules/mycred-module-hooks.php:2426
1721
  msgid "Leniency"
1722
  msgstr "Lenidad"
1723
 
1724
- #: ../modules/mycred-module-hooks.php:2428
1725
  msgid ""
1726
  "The maximum percentage a users view of a movie can differ from the actual "
1727
  "length."
@@ -1729,7 +1755,7 @@ msgstr ""
1729
  "El porcentaje máximo medido que un usuario vea puede variar con la duración "
1730
  "actual del video."
1731
 
1732
- #: ../modules/mycred-module-hooks.php:2431
1733
  msgid ""
1734
  "Do not set this value to zero! A lot of thing can happen while a user "
1735
  "watches a movie and sometimes a few seconds can drop of the counter due to "
@@ -1739,83 +1765,83 @@ msgstr ""
1739
  "usuario ve una película y a veces la contador puede disminuir por pocos "
1740
  "segundos por falta de buffering o por errores de reproducción."
1741
 
1742
- #: ../modules/mycred-module-hooks.php:2506
1743
  msgid "Affiliate Program"
1744
  msgstr "Programa de Afiliados"
1745
 
1746
- #: ../modules/mycred-module-hooks.php:2514 ../includes/mycred-admin.php:413 ..
1747
  #: addons/coupons/myCRED-addon-coupons.php:232
1748
  msgid "Total"
1749
  msgstr "Total"
1750
 
1751
- #: ../modules/mycred-module-hooks.php:2515
1752
  msgid "Per Day"
1753
  msgstr "Por Día"
1754
 
1755
- #: ../modules/mycred-module-hooks.php:2674
1756
  msgid "Link"
1757
  msgstr "Enlace"
1758
 
1759
- #: ../modules/mycred-module-hooks.php:2678
1760
  msgid "Visitors Referred"
1761
  msgstr "Visitantes Referidos"
1762
 
1763
- #: ../modules/mycred-module-hooks.php:2682
1764
  msgid "Signups Referred"
1765
  msgstr "Inscripciones Referidos"
1766
 
1767
- #: ../modules/mycred-module-hooks.php:3001 ../plugins/mycred-hook-affiliatewp.php:
1768
- #: 231
1769
  msgid "Referring Visitors"
1770
  msgstr "Referiendo Visitantes"
1771
 
1772
- #: ../modules/mycred-module-hooks.php:3020 ../modules/mycred-module-hooks.php:3040
1773
  msgid "Referring Signups"
1774
  msgstr "Inscripciones a través de Referencias"
1775
 
1776
- #: ../modules/mycred-module-hooks.php:3024
1777
  msgid "Visitors who have Cookies disabled will not award %_plural%."
1778
  msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
1779
 
1780
- #: ../modules/mycred-module-hooks.php:3042
1781
  msgid "Registrations are disabled."
1782
  msgstr "Se han deshabilitado inscripciones."
1783
 
1784
- #: ../modules/mycred-module-hooks.php:3050
1785
  msgid "Referral Links"
1786
  msgstr "Enlaces Referentes"
1787
 
1788
- #: ../modules/mycred-module-hooks.php:3054
1789
  msgid "Assign numeric referral IDs to each user."
1790
  msgstr "Asignar ID numerica referente a cada usuario."
1791
 
1792
- #: ../modules/mycred-module-hooks.php:3055 ../modules/mycred-module-hooks.php:3061
1793
  msgid "Example"
1794
  msgstr "Ejemplo"
1795
 
1796
- #: ../modules/mycred-module-hooks.php:3060
1797
  msgid "Assign usernames as IDs for each user."
1798
  msgstr "Asignar los nombres de usuario como ID para cada usuario."
1799
 
1800
- #: ../modules/mycred-module-hooks.php:3064
1801
  msgid "IP Limit"
1802
  msgstr "Límite de IP"
1803
 
1804
- #: ../modules/mycred-module-hooks.php:3068
1805
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
1806
  msgstr ""
1807
  "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
1808
  "número ilimitado"
1809
 
1810
- #: ../modules/mycred-module-hooks.php:3072 ../modules/mycred-module-hooks.php:3107
1811
  msgid "BuddyPress Profile"
1812
  msgstr "Perfil de BuddyPress"
1813
 
1814
- #: ../modules/mycred-module-hooks.php:3075
1815
  msgid "Insert Link in users Profile"
1816
  msgstr "Insertar enlace en el perfil del usuario"
1817
 
1818
- #: ../modules/mycred-module-hooks.php:3076
1819
  msgid ""
1820
  "Option to inser the referral link in users profiles. Links will only be "
1821
  "visible to users viewing their own profiles or administrators."
@@ -1824,32 +1850,32 @@ msgstr ""
1824
  " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
1825
  "ven a sus propios perfiles."
1826
 
1827
- #: ../modules/mycred-module-hooks.php:3080 ../includes/mycred-widgets.php:196 ..
1828
  #: includes/mycred-widgets.php:385 ../includes/mycred-widgets.php:594 ..
1829
  #: addons/gateway/carts/mycred-woocommerce.php:92 ..
1830
  #: addons/transfer/includes/mycred-transfer-widgets.php:120 ..
1831
- #: addons/ranks/myCRED-addon-ranks.php:1319 ../addons/buy-creds/gateways/skrill.
1832
  #: php:339
1833
  msgid "Title"
1834
  msgstr "Titulo"
1835
 
1836
- #: ../modules/mycred-module-hooks.php:3082
1837
  msgid "Leave empty to hide."
1838
  msgstr "Deje el campo vacío para ocultarlo."
1839
 
1840
- #: ../modules/mycred-module-hooks.php:3085
1841
  msgid "Description"
1842
  msgstr "Descripción"
1843
 
1844
- #: ../modules/mycred-module-hooks.php:3086
1845
  msgid "Optional description to insert under the link."
1846
  msgstr "Insertar la descripción opcional debajo del enlace."
1847
 
1848
- #: ../modules/mycred-module-hooks.php:3100
1849
  msgid "Profile Positioning"
1850
  msgstr "Posicionamiento del Perfil"
1851
 
1852
- #: ../modules/mycred-module-hooks.php:3102
1853
  msgid ""
1854
  "You can move around the referral link on your users profile by changing the "
1855
  "position. Increase to move up, decrease to move down."
@@ -1857,18 +1883,18 @@ msgstr ""
1857
  "Puedes moverte por el enlace de referencia en su perfil los usuarios "
1858
  "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
1859
 
1860
- #: ../modules/mycred-module-hooks.php:3103
1861
  msgid "You can not move the referral link above the users \"Base\" profile details!"
1862
  msgstr ""
1863
  "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
1864
  "en el perfil del usuario!"
1865
 
1866
- #: ../modules/mycred-module-hooks.php:3109
1867
  msgid "Requires BuddyPress Extended Profiles to be enabled."
1868
  msgstr "Requiere que Perfils Extendidos de BuddyPress sea activado."
1869
 
1870
- #: ../modules/mycred-module-hooks.php:3117 ../addons/buy-creds/myCRED-addon-buy-
1871
- #: creds.php:741
1872
  msgid "Available Shortcodes"
1873
  msgstr "Códigos cortos Disponibles"
1874
 
@@ -1886,26 +1912,29 @@ msgid "Current balance"
1886
  msgstr "Saldo Actual"
1887
 
1888
  #: ../modules/mycred-module-buddypress.php:236 ../modules/mycred-module-
1889
- #: buddypress.php:249 ../includes/mycred-log.php:992
1890
  msgid "All"
1891
  msgstr "Todo"
1892
 
1893
- #: ../modules/mycred-module-buddypress.php:237 ../includes/mycred-log.php:993 ..
1894
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:189
 
1895
  msgid "Today"
1896
  msgstr "Hoy"
1897
 
1898
- #: ../modules/mycred-module-buddypress.php:238 ../includes/mycred-log.php:994
1899
  msgid "Yesterday"
1900
  msgstr "Ayer"
1901
 
1902
- #: ../modules/mycred-module-buddypress.php:239 ../includes/mycred-log.php:995 ..
1903
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:190
 
1904
  msgid "This Week"
1905
  msgstr "Esta Semana"
1906
 
1907
- #: ../modules/mycred-module-buddypress.php:240 ../includes/mycred-log.php:996 ..
1908
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:191
 
1909
  msgid "This Month"
1910
  msgstr "Este Mes"
1911
 
@@ -1913,100 +1942,100 @@ msgstr "Este Mes"
1913
  msgid "Go"
1914
  msgstr "Ir a"
1915
 
1916
- #: ../modules/mycred-module-buddypress.php:417 ../addons/gateway/carts/mycred-
1917
- #: woocommerce.php:152 ../addons/badges/myCRED-addon-badges.php:970 ..
1918
- #: addons/badges/myCRED-addon-badges.php:1001
1919
  msgid "Do not show"
1920
  msgstr "No Mostrar"
1921
 
1922
- #: ../modules/mycred-module-buddypress.php:418 ../addons/badges/myCRED-addon-
1923
- #: badges.php:971
1924
  msgid "Include in Profile Header"
1925
  msgstr "Incluir en el Encabezado del Perfil"
1926
 
1927
- #: ../modules/mycred-module-buddypress.php:419 ../addons/ranks/myCRED-addon-ranks.
1928
- #: php:1408 ../addons/badges/myCRED-addon-badges.php:972
1929
  msgid "Include under the \"Profile\" tab"
1930
  msgstr "Incluir debajo de la pestaña del \"Perfil\""
1931
 
1932
- #: ../modules/mycred-module-buddypress.php:420 ../addons/badges/myCRED-addon-
1933
- #: badges.php:973
1934
  msgid "Include under the \"Profile\" tab and Profile Header"
1935
  msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil"
1936
 
1937
- #: ../modules/mycred-module-buddypress.php:424 ../addons/ranks/myCRED-addon-ranks.
1938
- #: php:1406 ../addons/ranks/myCRED-addon-ranks.php:1451
1939
  msgid "Do not show."
1940
  msgstr "No mostrar."
1941
 
1942
- #: ../modules/mycred-module-buddypress.php:425
1943
  msgid "Show in Profile"
1944
  msgstr "Mostrar en Perfil"
1945
 
1946
- #: ../modules/mycred-module-buddypress.php:442
1947
  #, php-format
1948
  msgid "%singular% Balance"
1949
  msgstr "%singular% Saldo"
1950
 
1951
- #: ../modules/mycred-module-buddypress.php:459
1952
  #, php-format
1953
  msgid "Members and visitors can other members %_singular% balance."
1954
  msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
1955
 
1956
- #: ../modules/mycred-module-buddypress.php:464 ../addons/ranks/myCRED-addon-ranks.
1957
- #: php:1428 ../addons/ranks/myCRED-addon-ranks.php:1473 ..
1958
- #: addons/notifications/myCRED-addon-notifications.php:201
1959
  msgid "Template"
1960
  msgstr "Plantilla"
1961
 
1962
- #: ../modules/mycred-module-buddypress.php:469
1963
  #, php-format
1964
  msgid "%plural% History"
1965
  msgstr "Historial de %plural%"
1966
 
1967
- #: ../modules/mycred-module-buddypress.php:486
1968
  msgid "Members can view each others %_plural% history."
1969
  msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
1970
 
1971
- #: ../modules/mycred-module-buddypress.php:491
1972
  msgid "Menu Title"
1973
  msgstr "Título de Menú"
1974
 
1975
- #: ../modules/mycred-module-buddypress.php:493
1976
  msgid "Title shown to me"
1977
  msgstr "Título mostrado a mi"
1978
 
1979
- #: ../modules/mycred-module-buddypress.php:498
1980
  #, php-format
1981
  msgid "Title shown to others. Use %s to show the first name."
1982
  msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
1983
 
1984
- #: ../modules/mycred-module-buddypress.php:503
1985
  msgid "Menu Position"
1986
  msgstr "Posición del Menú"
1987
 
1988
- #: ../modules/mycred-module-buddypress.php:505
1989
  msgid "Current menu positions:"
1990
  msgstr "Posiciones Acuales del Menú"
1991
 
1992
- #: ../modules/mycred-module-buddypress.php:510
1993
  msgid "History URL slug"
1994
  msgstr "La ficha historial de la URL"
1995
 
1996
- #: ../modules/mycred-module-buddypress.php:512
1997
  msgid "Do not use empty spaces!"
1998
  msgstr "¡No utilice espacios vacíos!"
1999
 
2000
- #: ../modules/mycred-module-buddypress.php:517
2001
  msgid "Number of history entries to show"
2002
  msgstr "Numero de entradas de historial a mostrar"
2003
 
2004
  #. does this really need to be translated?
2005
- #: ../plugins/mycred-hook-invite-anyone.php:18
2006
  msgid "Invite Anyone Plugin"
2007
  msgstr "Invite Anyone Plugin"
2008
 
2009
- #: ../plugins/mycred-hook-invite-anyone.php:19
2010
  #, php-format
2011
  msgid ""
2012
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
@@ -2015,110 +2044,110 @@ msgstr ""
2015
  "Concede %_plural% por mandar invitaciones y/o %_plural% si se acepta la "
2016
  "invitación."
2017
 
2018
- #: ../plugins/mycred-hook-invite-anyone.php:190
2019
  #, php-format
2020
  msgid "%plural% for Sending An Invite"
2021
  msgstr "%plural% por Enviar una Invitación"
2022
 
2023
- #: ../plugins/mycred-hook-invite-anyone.php:210
2024
  #, php-format
2025
  msgid "%plural% for Accepting An Invite"
2026
  msgstr "%plural% por Aceptar una Invitación"
2027
 
2028
- #: ../plugins/mycred-hook-invite-anyone.php:214
2029
  #, php-format
2030
  msgid "%plural% for each invited user that accepts an invitation."
2031
  msgstr "%plural% por cada usuario invitado que acepta la invitación."
2032
 
2033
- #: ../plugins/mycred-hook-wp-polls.php:18
2034
  msgid "WP-Polls"
2035
  msgstr "WP-Polls"
2036
 
2037
- #: ../plugins/mycred-hook-wp-polls.php:19
2038
  #, php-format
2039
  msgid "Awards %_plural% for users voting in polls."
2040
  msgstr ""
2041
  "Concede %_plural% a usuarios que han votado en encuestas.Concede %_plural% a "
2042
  "usuarios que han votado en encuestas."
2043
 
2044
- #: ../plugins/mycred-hook-gravityforms.php:18
2045
  msgid "Gravityform Submissions"
2046
  msgstr "Entregas de Gravityform"
2047
 
2048
- #: ../plugins/mycred-hook-gravityforms.php:19
2049
  #, php-format
2050
  msgid "Awards %_plural% for successful form submissions."
2051
  msgstr "Concede %_plural% por el exitoso envío del formularios."
2052
 
2053
- #: ../plugins/mycred-hook-gravityforms.php:118 ../plugins/mycred-hook-contact-
2054
- #: form7.php:117
2055
  msgid "No forms found."
2056
  msgstr "No se ha encontrado ningun formulario."
2057
 
2058
- #: ../plugins/mycred-hook-gd-star-rating.php:18
2059
  msgid "GD Star Rating"
2060
  msgstr "GD Star Rating"
2061
 
2062
- #: ../plugins/mycred-hook-gd-star-rating.php:19
2063
  #, php-format
2064
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
2065
  msgstr ""
2066
  "Concede %_plural% a usuarios que evaluan artículos a través de GD Star "
2067
  "Rating plugin."
2068
 
2069
- #: ../plugins/mycred-hook-gd-star-rating.php:103
2070
  msgid "Rating"
2071
  msgstr "Clasificación"
2072
 
2073
  #.
2074
  #.
2075
- #: ../plugins/mycred-hook-gd-star-rating.php:116
2076
  msgid "Up / Down Vote"
2077
  msgstr "Voto Arriba / Abajo"
2078
 
2079
- #: ../plugins/mycred-hook-simplepress.php:19
2080
  #, php-format
2081
  msgid "Awards %_plural% for Simple:Press actions."
2082
  msgstr "Concede %_plural% por acciones en Simple:Press."
2083
 
2084
- #: ../plugins/mycred-hook-simplepress.php:278 ../plugins/mycred-hook-bbPress.php:
2085
- #: 434
2086
  #, php-format
2087
  msgid "%plural% for New Topic"
2088
  msgstr "%plural% por Nuevo Tema"
2089
 
2090
- #: ../plugins/mycred-hook-simplepress.php:295 ../plugins/mycred-hook-bbPress.php:
2091
- #: 456
2092
  #, php-format
2093
  msgid "%plural% for Topic Deletion"
2094
  msgstr "%plural% por Borrar Tema"
2095
 
2096
- #: ../plugins/mycred-hook-simplepress.php:308
2097
  #, php-format
2098
  msgid "%plural% for New Topic Post"
2099
  msgstr "%plural% por Nueva Publicacion "
2100
 
2101
- #: ../plugins/mycred-hook-simplepress.php:326
2102
  #, php-format
2103
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
2104
  msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
2105
 
2106
- #: ../plugins/mycred-hook-simplepress.php:330
2107
  #, php-format
2108
  msgid "%plural% for Topic Post Deletion"
2109
  msgstr "%plural% por Borrar la Tema del Post"
2110
 
2111
- #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
2112
- #: php:80
2113
  #, php-format
2114
  msgid "Reward with %plural%"
2115
  msgstr "Premiar con %plural%"
2116
 
2117
- #: ../plugins/mycred-hook-buddypress-gallery.php:19
2118
  msgid "BuddyPress: Gallery Actions"
2119
  msgstr "BuddyPress: Acciones sobre Galerías"
2120
 
2121
- #: ../plugins/mycred-hook-buddypress-gallery.php:20
2122
  #, php-format
2123
  msgid ""
2124
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
@@ -2127,25 +2156,25 @@ msgstr ""
2127
  "Conceder %_plural% por crear una nueva galería ya sea usando BP Album+ o BP "
2128
  "Gallery."
2129
 
2130
- #: ../plugins/mycred-hook-buddypress-gallery.php:96
2131
  #, php-format
2132
  msgid "%plural% for New Gallery"
2133
  msgstr "%plural% por Nueva Galería"
2134
 
2135
- #: ../plugins/mycred-hook-buddypress.php:14
2136
  msgid "BuddyPress: Members"
2137
  msgstr "BuddyPress: Miembros"
2138
 
2139
- #: ../plugins/mycred-hook-buddypress.php:15
2140
  #, php-format
2141
  msgid "Awards %_plural% for profile related actions."
2142
  msgstr "Concede %_plural% por acciones relacionados al perfil."
2143
 
2144
- #: ../plugins/mycred-hook-buddypress.php:22
2145
  msgid "BuddyPress: Groups"
2146
  msgstr "BuddyPress: Grupos"
2147
 
2148
- #: ../plugins/mycred-hook-buddypress.php:23
2149
  #, php-format
2150
  msgid ""
2151
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
@@ -2154,59 +2183,59 @@ msgstr ""
2154
  "Concede %_plural% para acciones relacionados a grupos. Usa negativo para "
2155
  "sustraer %_plural% o cero para desabilitar un gancho especifico."
2156
 
2157
- #: ../plugins/mycred-hook-buddypress.php:252 ../addons/gateway/event-
2158
  #: booking/mycred-eventsmanager.php:636 ../addons/gateway/event-booking/mycred-
2159
  #: eventsmanager-pro.php:617 ../addons/gateway/carts/mycred-wpecommerce.php:386 ..
2160
  #: addons/gateway/carts/mycred-marketpress.php:438
2161
  msgid "Insufficient Funds"
2162
  msgstr "Fondos Insuficientes"
2163
 
2164
- #: ../plugins/mycred-hook-buddypress.php:502
2165
  #, php-format
2166
  msgid "%plural% for Profile Updates"
2167
  msgstr "%plural% por Actualizar Perfil"
2168
 
2169
- #: ../plugins/mycred-hook-buddypress.php:536
2170
  #, php-format
2171
  msgid "%plural% for New Avatar"
2172
  msgstr "%plural% por Nuevo Avatar"
2173
 
2174
- #: ../plugins/mycred-hook-buddypress.php:553
2175
  #, php-format
2176
  msgid "%plural% for New Friendships"
2177
  msgstr "%plural% por Nueva Amistad"
2178
 
2179
- #: ../plugins/mycred-hook-buddypress.php:573
2180
  #, php-format
2181
  msgid "%plural% for Leaving Friendship"
2182
  msgstr "%plural% por Dejar Amistad"
2183
 
2184
- #: ../plugins/mycred-hook-buddypress.php:586
2185
  #, php-format
2186
  msgid "%plural% for New Comment"
2187
  msgstr "%plural% por Nuevo Comentario"
2188
 
2189
- #: ../plugins/mycred-hook-buddypress.php:603
2190
  #, php-format
2191
  msgid "%plural% for Deleting Comment"
2192
  msgstr "%plural% por Borrar Comentario"
2193
 
2194
- #: ../plugins/mycred-hook-buddypress.php:616
2195
  #, php-format
2196
  msgid "%plural% for New Messages"
2197
  msgstr "%plural% por Nuevo Mensaje"
2198
 
2199
- #: ../plugins/mycred-hook-buddypress.php:633
2200
  #, php-format
2201
  msgid "%plural% for Sending Gift"
2202
  msgstr "%plural% por Enviar Regalo"
2203
 
2204
- #: ../plugins/mycred-hook-buddypress.php:1204
2205
  #, php-format
2206
  msgid "%plural% for Creating Groups"
2207
  msgstr "%plural% por Creat Cupones"
2208
 
2209
- #: ../plugins/mycred-hook-buddypress.php:1208
2210
  msgid ""
2211
  "If you use a negative value and the user does not have enough %_plural% the "
2212
  "\"Create Group\" button will be disabled."
@@ -2214,45 +2243,45 @@ msgstr ""
2214
  "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
2215
  "\"Crear Grupo\" sera desactivada."
2216
 
2217
- #: ../plugins/mycred-hook-buddypress.php:1212
2218
  msgid "Number of members before awarding %_plural%"
2219
  msgstr "Numero de miembros antes de conceder %_plural%"
2220
 
2221
- #: ../plugins/mycred-hook-buddypress.php:1214
2222
  msgid "Use zero to award %_plural% when group is created."
2223
  msgstr "Ponga cero para %_plural% cuando se crea un grupo."
2224
 
2225
- #: ../plugins/mycred-hook-buddypress.php:1224
2226
  #, php-format
2227
  msgid "%plural% for Deleting Groups"
2228
  msgstr "%plural% por Borrar Grupos"
2229
 
2230
- #: ../plugins/mycred-hook-buddypress.php:1237
2231
  #, php-format
2232
  msgid "%plural% for New Forum Topic"
2233
  msgstr "%plural% por Nuevo Tema de Foro"
2234
 
2235
- #: ../plugins/mycred-hook-buddypress.php:1254
2236
  #, php-format
2237
  msgid "%plural% for Editing Forum Topic"
2238
  msgstr "%plural% por Editar Tema de Foro"
2239
 
2240
- #: ../plugins/mycred-hook-buddypress.php:1271
2241
  #, php-format
2242
  msgid "%plural% for New Forum Post"
2243
  msgstr "%plural% por Nueva Publicación en Foro"
2244
 
2245
- #: ../plugins/mycred-hook-buddypress.php:1288
2246
  #, php-format
2247
  msgid "%plural% for Editing Forum Post"
2248
  msgstr "%plural% por Editar Publicación en Foro"
2249
 
2250
- #: ../plugins/mycred-hook-buddypress.php:1305
2251
  #, php-format
2252
  msgid "%plural% for Joining Groups"
2253
  msgstr "%plural% por Unirse a Grupos"
2254
 
2255
- #: ../plugins/mycred-hook-buddypress.php:1309
2256
  msgid ""
2257
  "If you use a negative value and the user does not have enough %_plural% the "
2258
  "\"Join Group\" button will be disabled."
@@ -2260,96 +2289,96 @@ msgstr ""
2260
  "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
2261
  "\"Unirse a Grupo\" sera desactivada."
2262
 
2263
- #: ../plugins/mycred-hook-buddypress.php:1323
2264
  #, php-format
2265
  msgid "%plural% for Leaving Groups"
2266
  msgstr "%plural% por Dejar Grupos"
2267
 
2268
- #: ../plugins/mycred-hook-buddypress.php:1336
2269
  #, php-format
2270
  msgid "%plural% for New Group Avatar"
2271
  msgstr "%plural% por Nuevo Avatar de Grupo"
2272
 
2273
- #: ../plugins/mycred-hook-buddypress.php:1353
2274
  #, php-format
2275
  msgid "%plural% for New Group Comment"
2276
  msgstr "%plural% por Nuevo Comentario Grupo"
2277
 
2278
- #: ../plugins/mycred-hook-buddypress-links.php:19
2279
  msgid "BuddyPress: Links"
2280
  msgstr "BuddyPress: Enlaces"
2281
 
2282
- #: ../plugins/mycred-hook-buddypress-links.php:20
2283
  #, php-format
2284
  msgid "Awards %_plural% for link related actions."
2285
  msgstr "Concede %_plural% por acciones relacionados a enlaces."
2286
 
2287
- #: ../plugins/mycred-hook-buddypress-links.php:244
2288
  #, php-format
2289
  msgid "%plural% for New Links"
2290
  msgstr "%plural% por Nuevos Enlaces"
2291
 
2292
- #: ../plugins/mycred-hook-buddypress-links.php:261
2293
  #, php-format
2294
  msgid "%plural% for Vote on Link"
2295
  msgstr "%plural% por Votar sobre Enlaces"
2296
 
2297
- #: ../plugins/mycred-hook-buddypress-links.php:277
2298
  #, php-format
2299
  msgid "%plural% per received Vote"
2300
  msgstr "%plural% por Votos Recibidos"
2301
 
2302
- #: ../plugins/mycred-hook-buddypress-links.php:280
2303
  msgid "Vote Up"
2304
  msgstr "Votar a Favor"
2305
 
2306
- #: ../plugins/mycred-hook-buddypress-links.php:299
2307
  msgid "Vote Down"
2308
  msgstr "Votar en Contra "
2309
 
2310
- #: ../plugins/mycred-hook-buddypress-links.php:314
2311
  #, php-format
2312
  msgid "%plural% for Updating Links"
2313
  msgstr "%plural% por Actualizar Enlaces"
2314
 
2315
- #: ../plugins/mycred-hook-buddypress-links.php:331
2316
  #, php-format
2317
  msgid "%plural% for Deleting Links"
2318
  msgstr "%plural% por Borrar Enlaces"
2319
 
2320
- #: ../plugins/mycred-hook-affiliatewp.php:256 ../includes/mycred-shortcodes.php:
2321
- #: 988 ../includes/mycred-shortcodes.php:1131 ../includes/mycred-admin.php:749 ..
2322
- #: includes/mycred-admin.php:801 ../addons/banking/services/mycred-bank-service-
2323
- #: payouts.php:266 ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ..
2324
- #: addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/buy-creds/myCRED-
2325
- #: addon-buy-creds.php:1713 ../addons/buy-creds/abstracts/mycred-abstract-payment-
2326
  #: gateway.php:593
2327
  msgid "Amount"
2328
  msgstr "Cantidad"
2329
 
2330
- #: ../plugins/mycred-hook-events-manager-light.php:18
2331
  msgid "Events Manager"
2332
  msgstr "Gestionamiento de Eventos"
2333
 
2334
- #: ../plugins/mycred-hook-events-manager-light.php:19
2335
  #, php-format
2336
  msgid "Awards %_plural% for users attending events."
2337
  msgstr "Concede %_plural% para usuarios que asistieron actividades o eventos."
2338
 
2339
- #: ../plugins/mycred-hook-events-manager-light.php:186
2340
  msgid "Attending Event"
2341
  msgstr "Asistir Evento"
2342
 
2343
- #: ../plugins/mycred-hook-events-manager-light.php:203
2344
  msgid "Cancelling Attendance"
2345
  msgstr "Cancelando Asistencia"
2346
 
2347
- #: ../plugins/mycred-hook-sharethis.php:19
2348
  #, php-format
2349
  msgid "%plural% for Sharing"
2350
  msgstr "%plural% para Compartir"
2351
 
2352
- #: ../plugins/mycred-hook-sharethis.php:20
2353
  #, php-format
2354
  msgid ""
2355
  "Awards %_plural% for users sharing / liking your website content to popular "
@@ -2366,83 +2395,83 @@ msgstr "Tu llave publico de ShareThis no ha sido configurado."
2366
  msgid "No ShareThis services detected. Please check your installation."
2367
  msgstr "Ningun servicio ShareThis detectado. Por favor verifique su instalación."
2368
 
2369
- #: ../plugins/mycred-hook-buddypress-media.php:18
2370
  msgid "rtMedia Galleries"
2371
  msgstr "Galerías rtMedia (rtMedia Galleries)"
2372
 
2373
- #: ../plugins/mycred-hook-buddypress-media.php:19
2374
  #, php-format
2375
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
2376
  msgstr "Concede / Resta %_plural% a usuarios por crear álbumes o subir nuevos fotos."
2377
 
2378
- #: ../plugins/mycred-hook-buddypress-media.php:202
2379
  msgid "New Media Upload"
2380
  msgstr "Subir Nuevo Media"
2381
 
2382
- #: ../plugins/mycred-hook-buddypress-media.php:205 ../includes/mycred-functions.
2383
- #: php:2557
2384
  msgid "Photo Upload"
2385
  msgstr "Subir Foto"
2386
 
2387
- #: ../plugins/mycred-hook-buddypress-media.php:219 ../includes/mycred-functions.
2388
- #: php:2558
2389
  msgid "Video Upload"
2390
  msgstr "Subir Video"
2391
 
2392
- #: ../plugins/mycred-hook-buddypress-media.php:233 ../includes/mycred-functions.
2393
- #: php:2559
2394
  msgid "Music Upload"
2395
  msgstr "Subir Música"
2396
 
2397
- #: ../plugins/mycred-hook-buddypress-media.php:247
2398
  msgid "Delete Media"
2399
  msgstr "Borrar Medios"
2400
 
2401
- #: ../plugins/mycred-hook-buddypress-media.php:250
2402
  msgid "Delete Photo"
2403
  msgstr "Borrar Foto"
2404
 
2405
- #: ../plugins/mycred-hook-buddypress-media.php:260
2406
  msgid "Delete Video"
2407
  msgstr "Borrar Video"
2408
 
2409
- #: ../plugins/mycred-hook-buddypress-media.php:270
2410
  msgid "Delete Music"
2411
  msgstr "Borrar Música"
2412
 
2413
- #: ../plugins/mycred-hook-wp-favorite-posts.php:18
2414
  msgid "WP Favorite Posts"
2415
  msgstr "WP Favorite Posts"
2416
 
2417
- #: ../plugins/mycred-hook-wp-favorite-posts.php:19
2418
  #, php-format
2419
  msgid "Awards %_plural% for users adding posts to their favorites."
2420
  msgstr "Concede %_plural% a usuarios por añadir entradas a sus favoritos."
2421
 
2422
- #: ../plugins/mycred-hook-wp-favorite-posts.php:207
2423
  msgid "Adding Content to Favorites"
2424
  msgstr "Añadiendo Contenido a Favoritos"
2425
 
2426
- #: ../plugins/mycred-hook-wp-favorite-posts.php:243
2427
  msgid "Removing Content from Favorites"
2428
  msgstr "Quitando Contenido de Favoritos"
2429
 
2430
- #: ../plugins/mycred-hook-contact-form7.php:18
2431
  msgid "Contact Form 7 Form Submissions"
2432
  msgstr "Presentación Formulario de Contact Form 7"
2433
 
2434
- #: ../plugins/mycred-hook-contact-form7.php:19
2435
  #, php-format
2436
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
2437
  msgstr ""
2438
  "Concede %_plural% por el exitoso envío del formulario (por usuarios que han "
2439
  "iniciado sesión)"
2440
 
2441
- #: ../plugins/mycred-hook-jetpack.php:18
2442
  msgid "Jetpack Subscriptions"
2443
  msgstr "Suscripciónes a Jetpack"
2444
 
2445
- #: ../plugins/mycred-hook-jetpack.php:19
2446
  #, php-format
2447
  msgid ""
2448
  "Awards %_plural% for users signing up for site or comment updates using "
@@ -2451,79 +2480,79 @@ msgstr ""
2451
  "Concede %_plural% a usuarios por incribirse a las actualizaciones del sitio "
2452
  "web o a los comentarios atraves de Jetpack."
2453
 
2454
- #: ../plugins/mycred-hook-jetpack.php:499
2455
  msgid "Site Subscriptions"
2456
  msgstr "Suscripciónes al Sitio Web"
2457
 
2458
- #: ../plugins/mycred-hook-jetpack.php:512
2459
  msgid "Comment Subscriptions"
2460
  msgstr "Suscripciónes a commentarios"
2461
 
2462
- #: ../plugins/mycred-hook-bbPress.php:18
2463
  msgid "bbPress"
2464
  msgstr "bbPress"
2465
 
2466
- #: ../plugins/mycred-hook-bbPress.php:19
2467
  #, php-format
2468
  msgid "Awards %_plural% for bbPress actions."
2469
  msgstr "Concede %_plural% por acciones en bbPress."
2470
 
2471
- #: ../plugins/mycred-hook-bbPress.php:404
2472
  #, php-format
2473
  msgid "%plural% for New Forum"
2474
  msgstr "%plural% por nuevo foro"
2475
 
2476
- #: ../plugins/mycred-hook-bbPress.php:421
2477
  #, php-format
2478
  msgid "%plural% for Forum Deletion"
2479
  msgstr "%plural% por Eliminar Foro"
2480
 
2481
- #: ../plugins/mycred-hook-bbPress.php:452
2482
  #, php-format
2483
  msgid "Forum authors can receive %_plural% for creating new topics."
2484
  msgstr "Autores "
2485
 
2486
- #: ../plugins/mycred-hook-bbPress.php:469
2487
  #, php-format
2488
  msgid "%plural% for Favorited Topic"
2489
  msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
2490
 
2491
- #: ../plugins/mycred-hook-bbPress.php:486
2492
  #, php-format
2493
  msgid "%plural% for New Reply"
2494
  msgstr "%plural% por Nueva Respuesta"
2495
 
2496
- #: ../plugins/mycred-hook-bbPress.php:504
2497
  #, php-format
2498
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
2499
  msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
2500
 
2501
- #: ../plugins/mycred-hook-bbPress.php:508
2502
  #, php-format
2503
  msgid "Show users %_plural% balance in replies"
2504
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
2505
 
2506
- #: ../plugins/mycred-hook-bbPress.php:512
2507
  #, php-format
2508
  msgid "%plural% for Reply Deletion"
2509
  msgstr "%plural% para Borrar Respuesta"
2510
 
2511
- #: ../plugins/mycred-hook-woocommerce.php:210
2512
  msgid "WooCommerce Product Reviews"
2513
  msgstr " Revisión del Producto WooCommerce\n"
2514
 
2515
- #: ../plugins/mycred-hook-woocommerce.php:211
2516
  #, php-format
2517
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
2518
  msgstr ""
2519
  "Concede %_plural% a usuarios por escribir reseñas sobre tus productos "
2520
  "WooCommerce."
2521
 
2522
- #: ../plugins/mycred-hook-badgeOS.php:18
2523
  msgid "BadgeOS"
2524
  msgstr "BadgeOS"
2525
 
2526
- #: ../plugins/mycred-hook-badgeOS.php:19
2527
  msgid ""
2528
  "Default settings for each BadgeOS Achievement type. These settings may be "
2529
  "overridden for individual achievement type."
@@ -2531,7 +2560,7 @@ msgstr ""
2531
  "Configuraciones predefinidos para cada clase de BadgeOS Logro (Achievement). "
2532
  "Estos ajustes pueden ser anulados para el tipo de logro individual."
2533
 
2534
- #: ../plugins/mycred-hook-badgeOS.php:105
2535
  #, php-format
2536
  msgid ""
2537
  "Please setup your <a href=\"%s\">default settings</a> before using this "
@@ -2540,30 +2569,30 @@ msgstr ""
2540
  "Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> antes "
2541
  "de usar este función."
2542
 
2543
- #: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
2544
  #, php-format
2545
  msgid "%plural% to Award"
2546
  msgstr "%plural% a Conceder"
2547
 
2548
  #. also "Ponga cero para inhabilitar"
2549
- #: ../plugins/mycred-hook-badgeOS.php:122
2550
  msgid "Use zero to disable"
2551
  msgstr "Ponga cero para desactivar"
2552
 
2553
- #: ../plugins/mycred-hook-badgeOS.php:133
2554
  msgid "Deduction Log Template"
2555
  msgstr "Plantilla de Registro Descontado"
2556
 
2557
- #: ../plugins/mycred-hook-badgeOS.php:278
2558
  #, php-format
2559
  msgid "Default %s for %s"
2560
  msgstr "Predeterminar %s por %s"
2561
 
2562
- #: ../plugins/mycred-hook-badgeOS.php:284
2563
  msgid "Use zero to disable users gaining %_plural%"
2564
  msgstr "Ponga cero para que los usuarios no obtengan %_plural%"
2565
 
2566
- #: ../plugins/mycred-hook-badgeOS.php:288
2567
  msgid "Default Log template"
2568
  msgstr "Plantilla de Registro Predefinido"
2569
 
@@ -2591,7 +2620,7 @@ msgid "%s CubePoints Import"
2591
  msgstr "Importar CubePoints %s"
2592
 
2593
  #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
2594
- #: 344
2595
  msgid "Import CubePoints log entries and / or balances."
2596
  msgstr "Importar las entradas de registro de CubePoints y/o saldos."
2597
 
@@ -2667,26 +2696,26 @@ msgstr ""
2667
  msgid "No export options available."
2668
  msgstr "No hay opciones para exportar."
2669
 
2670
- #: ../includes/mycred-log.php:756 ../addons/buy-creds/myCRED-addon-buy-creds.php:
2671
- #: 1075
2672
  msgid "Date"
2673
  msgstr "Fecha"
2674
 
2675
  #. need more context: entrada or inscripción
2676
- #: ../includes/mycred-log.php:758
2677
  msgid "Entry"
2678
  msgstr "Entrada"
2679
 
2680
- #: ../includes/mycred-log.php:958
2681
  msgid "No log entries found"
2682
  msgstr "Ninguna entrada de registro encontrada"
2683
 
2684
- #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
2685
  msgid "Search Log"
2686
  msgstr "Busqueda de Registro"
2687
 
2688
  #. buscar las entradas en el registro
2689
- #: ../includes/mycred-log.php:977
2690
  msgid "search log entries"
2691
  msgstr "Búsqueda de las entradas de registro"
2692
 
@@ -2839,65 +2868,57 @@ msgstr "Lista separada por comas de blog IDs donde %s se va a inhabilitar."
2839
  msgid "Save Network Settings"
2840
  msgstr "Guardar las Configuraciones de la Eed"
2841
 
2842
- #: ../includes/mycred-about.php:77
2843
  #, php-format
2844
  msgid "Welcome to %s %s"
2845
  msgstr "Bienvenido a %s %s"
2846
 
2847
- #: ../includes/mycred-shortcodes.php:175
2848
  msgid "Leaderboard is empty."
2849
  msgstr "La Tabla de Clasificación esta vacía"
2850
 
2851
- #: ../includes/mycred-shortcodes.php:525
2852
- msgid "error"
2853
- msgstr "error"
2854
-
2855
- #: ../includes/mycred-shortcodes.php:525
2856
  msgid "Anchor missing URL!"
2857
  msgstr "¡La Ancla falta el URL!"
2858
 
2859
- #: ../includes/mycred-shortcodes.php:641
2860
  msgid "Sent"
2861
  msgstr "Enviado"
2862
 
2863
- #: ../includes/mycred-shortcodes.php:642
2864
  msgid "Error - Try Again"
2865
  msgstr "Error - Inténtelo de nuevo."
2866
 
2867
- #: ../includes/mycred-shortcodes.php:780
2868
  msgid "A video ID is required for this shortcode"
2869
  msgstr "Este código corto (shortcode) precisa un ID del video."
2870
 
2871
- #: ../includes/mycred-shortcodes.php:941 ../includes/mycred-functions.php:2732
2872
- msgid "Point types not found."
2873
- msgstr "Clase de puntos no encontrado."
2874
-
2875
- #: ../includes/mycred-shortcodes.php:947 ../includes/mycred-shortcodes.php:955 ..
2876
- #: includes/mycred-functions.php:2744 ../includes/mycred-functions.php:2764
2877
  #, php-format
2878
  msgid "You are excluded from using %s."
2879
  msgstr "Esta exluido del uso de %s."
2880
 
2881
- #: ../includes/mycred-shortcodes.php:951 ../includes/mycred-functions.php:2754
2882
  msgid "Your balance is too low to use this feature."
2883
  msgstr "Tu saldo esta demasiado bajo para usar esta característica."
2884
 
2885
- #: ../includes/mycred-shortcodes.php:973
2886
  #, php-format
2887
  msgid "Convert <span>%s</span> to <span>%s</span>"
2888
  msgstr "Convertir <span>%s</span> a <span>%s</span>"
2889
 
2890
- #: ../includes/mycred-shortcodes.php:982
2891
  #, php-format
2892
  msgid "Your current %s balance"
2893
  msgstr "Tu Saldo Actual %s"
2894
 
2895
- #: ../includes/mycred-shortcodes.php:990
2896
  #, php-format
2897
  msgid "Minimum %s"
2898
  msgstr "Minimo %s"
2899
 
2900
- #: ../includes/mycred-shortcodes.php:993 ../addons/gateway/event-booking/mycred-
2901
  #: eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager.
2902
  #: php:578 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:540 ..
2903
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ..
@@ -2906,12 +2927,12 @@ msgstr "Minimo %s"
2906
  msgid "Exchange Rate"
2907
  msgstr "Tipo de Cambio"
2908
 
2909
- #: ../includes/mycred-shortcodes.php:994
2910
  #, php-format
2911
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
2912
  msgstr "1 %s = <span class=\"rate\">%s</span> %s"
2913
 
2914
- #: ../includes/mycred-shortcodes.php:1000
2915
  msgid "Exchange"
2916
  msgstr "Intercambio"
2917
 
@@ -2921,7 +2942,8 @@ msgid "%s Overview"
2921
  msgstr "Descripción de %s"
2922
 
2923
  #: ../includes/mycred-overview.php:78 ../addons/stats/widgets/mycred-stats-widget-
2924
- #: circulation.php:136
 
2925
  msgid "Total amount in circulation"
2926
  msgstr "Suma total en circulación"
2927
 
@@ -2940,13 +2962,13 @@ msgid "Transfers"
2940
  msgstr "Transferencias"
2941
 
2942
  #: ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ..
2943
- #: addons/sell-content/myCRED-addon-sell-content.php:401
2944
  msgid "Sell Content"
2945
  msgstr "Vender Contenido"
2946
 
2947
  #: ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ..
2948
- #: addons/buy-creds/myCRED-addon-buy-creds.php:346 ../addons/buy-creds/myCRED-
2949
- #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712
2950
  msgid "Gateway"
2951
  msgstr "Pasarela"
2952
 
@@ -3040,7 +3062,7 @@ msgid "Cancel Setup"
3040
  msgstr "Cancelar la Instalación"
3041
 
3042
  #: ../includes/mycred-install.php:536 ../addons/buy-creds/myCRED-addon-buy-creds.
3043
- #: php:1687
3044
  msgid "Cancel"
3045
  msgstr "Cancelar"
3046
 
@@ -3072,19 +3094,19 @@ msgstr ""
3072
  msgid "Install & Run"
3073
  msgstr "Instalar e ejecutar"
3074
 
3075
- #: ../includes/mycred-admin.php:195
3076
  msgid "A log entry is required in order to adjust this users balance"
3077
  msgstr "Se rpecisa una entrada de registro para ajustar el saldo de este usuario"
3078
 
3079
- #: ../includes/mycred-admin.php:197
3080
  msgid "Users balance saved"
3081
  msgstr "Saldo de Usuario(s) Guardado"
3082
 
3083
- #: ../includes/mycred-admin.php:205
3084
  msgid "Users excluded"
3085
  msgstr "Usuarios Excluidos"
3086
 
3087
- #: ../includes/mycred-admin.php:210
3088
  msgid ""
3089
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3090
  "rate settings and update all premium payment gateways!"
@@ -3093,62 +3115,62 @@ msgstr ""
3093
  "verifica la configuración del tipo de cambio y actualiza todas las pasarelas "
3094
  "de pago!"
3095
 
3096
- #: ../includes/mycred-admin.php:239
3097
  msgid "User is excluded"
3098
  msgstr "El Usuario ha sido excluido"
3099
 
3100
- #: ../includes/mycred-admin.php:244
3101
  msgid "Log Entry can not be empty"
3102
  msgstr "Entrada de registro no puede estar vacío"
3103
 
3104
- #: ../includes/mycred-admin.php:248
3105
  msgid "Amount can not be zero"
3106
  msgstr "La Cantidad no Puede ser Cero"
3107
 
3108
- #: ../includes/mycred-admin.php:269
3109
  msgid "Failed to update this uses balance."
3110
  msgstr "No se pudo actualizar el saldo de este usuario."
3111
 
3112
- #: ../includes/mycred-admin.php:403
3113
  msgid "Excluded"
3114
  msgstr "Excluido"
3115
 
3116
- #: ../includes/mycred-admin.php:424
3117
  msgid "Adjust"
3118
  msgstr "Modificar"
3119
 
3120
- #: ../includes/mycred-admin.php:466 ../includes/mycred-admin.php:467
3121
  msgid "Edit Balance"
3122
  msgstr "Editar Saldo"
3123
 
3124
- #: ../includes/mycred-admin.php:487
3125
  msgid "Profile"
3126
  msgstr "Perfil"
3127
 
3128
- #: ../includes/mycred-admin.php:494
3129
  msgid "Extended Profile"
3130
  msgstr "Perfil Extendido"
3131
 
3132
- #: ../includes/mycred-admin.php:588
3133
  #, php-format
3134
  msgid "This user is excluded from using %s"
3135
  msgstr "Este usuario esta excluido de poder utilizar %s"
3136
 
3137
- #: ../includes/mycred-admin.php:612
3138
  msgid "Edit User"
3139
  msgstr "Editar Usuario"
3140
 
3141
- #: ../includes/mycred-admin.php:614
3142
  msgctxt "user"
3143
  msgid "Add New"
3144
  msgstr "Añadir Nuevo"
3145
 
3146
- #: ../includes/mycred-admin.php:616
3147
  msgctxt "user"
3148
  msgid "Add Existing"
3149
  msgstr "Añadir Existente"
3150
 
3151
- #: ../includes/mycred-admin.php:626 ../includes/mycred-admin.php:797 ..
3152
  #: addons/gateway/event-booking/mycred-eventespresso3.php:277 ..
3153
  #: addons/gateway/event-booking/mycred-eventespresso3.php:301 ..
3154
  #: addons/gateway/event-booking/mycred-eventsmanager.php:412 ..
@@ -3156,29 +3178,29 @@ msgstr "Añadir Existente"
3156
  msgid "Current Balance"
3157
  msgstr "Saldo Actual"
3158
 
3159
- #: ../includes/mycred-admin.php:627
3160
  #, php-format
3161
  msgid "Total %s Accumulated"
3162
  msgstr "Total %s Acumulado"
3163
 
3164
- #: ../includes/mycred-admin.php:628
3165
  #, php-format
3166
  msgid "Total %s Spent"
3167
  msgstr "Total %s Gastado"
3168
 
3169
- #: ../includes/mycred-admin.php:639
3170
  msgid "View History"
3171
  msgstr "Ver Historial"
3172
 
3173
- #: ../includes/mycred-admin.php:640
3174
  msgid "Exclude User"
3175
  msgstr "Excluir Usuario"
3176
 
3177
- #: ../includes/mycred-admin.php:644
3178
  msgid "Adjust Balance"
3179
  msgstr "Ajustar Saldo"
3180
 
3181
- #: ../includes/mycred-admin.php:653
3182
  msgid ""
3183
  "Warning! Excluding this user will result in their balance being deleted "
3184
  "along with any entries currently in your log! This can not be undone!"
@@ -3186,35 +3208,35 @@ msgstr ""
3186
  "¡Aviso! ¡Excluir este usuario resultara en la eliminación de su saldo ademas "
3187
  "de cualquier entradas actuales en tu registro! ¡Esto no se puede deshacer!"
3188
 
3189
- #: ../includes/mycred-admin.php:718
3190
  #, php-format
3191
  msgid "%singular% balance"
3192
  msgstr "%singular% saldo"
3193
 
3194
- #: ../includes/mycred-admin.php:742 ../includes/mycred-admin.php:786 ..
3195
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503
3196
  msgid "required"
3197
  msgstr "necesario"
3198
 
3199
- #: ../includes/mycred-admin.php:744 ../includes/mycred-admin.php:788 ..
3200
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504
3201
  msgid "optional"
3202
  msgstr "opcional"
3203
 
3204
- #: ../includes/mycred-admin.php:758 ../includes/mycred-admin.php:802 ..
3205
  #: addons/gateway/event-booking/mycred-eventespresso3.php:470
3206
  msgid "Log Entry"
3207
  msgstr "Entrada de Registro"
3208
 
3209
- #: ../includes/mycred-admin.php:762 ../includes/mycred-admin.php:803
3210
  msgid "Update Balance"
3211
  msgstr "Actualizar Saldo"
3212
 
3213
- #: ../includes/mycred-admin.php:795
3214
  msgid "ID"
3215
  msgstr "ID"
3216
 
3217
- #: ../includes/mycred-admin.php:801
3218
  msgid "A positive or negative value"
3219
  msgstr "Un valor positivo o negativo"
3220
 
@@ -3229,17 +3251,17 @@ msgid "Show the current users %s balance"
3229
  msgstr "Enseñar el saldo de %s del usuario actual"
3230
 
3231
  #: ../includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:391 ..
3232
- #: includes/importers/mycred-cubepoints.php:365 ../addons/gateway/event-
3233
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
3234
  #: eventsmanager.php:550 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
3235
  #: php:504 ../addons/gateway/carts/mycred-wpecommerce.php:354 ..
3236
  #: addons/gateway/carts/mycred-woocommerce.php:120 ..
3237
  #: addons/gateway/carts/mycred-marketpress.php:389 ../addons/ranks/myCRED-addon-
3238
- #: ranks.php:1046 ../addons/ranks/myCRED-addon-ranks.php:1201 ../addons/email-
3239
- #: notices/myCRED-addon-email-notices.php:814 ../addons/email-notices/myCRED-
3240
- #: addon-email-notices.php:1031 ../addons/coupons/myCRED-addon-coupons.php:179 ..
3241
  #: addons/coupons/myCRED-addon-coupons.php:388 ../addons/sell-content/myCRED-
3242
- #: addon-sell-content.php:411
3243
  msgid "Point Type"
3244
  msgstr "Clase de Puntos"
3245
 
@@ -3345,359 +3367,359 @@ msgstr "Mostrar el saldo actual del usuario para cada clase de punto (\"point ty
3345
  msgid "Row Layout"
3346
  msgstr "Disposición de Filas"
3347
 
3348
- #: ../includes/mycred-functions.php:85
3349
  msgid "Point"
3350
  msgstr "Punto"
3351
 
3352
- #: ../includes/mycred-functions.php:86
3353
  msgid "Points"
3354
  msgstr "Puntos"
3355
 
3356
- #: ../includes/mycred-functions.php:447
3357
  msgid "Deleted"
3358
  msgstr "Borrado"
3359
 
3360
- #: ../includes/mycred-functions.php:594
3361
  msgid "Deleted Item"
3362
  msgstr "Artículo Borrado"
3363
 
3364
- #: ../includes/mycred-functions.php:658 ../addons/gateway/carts/mycred-
3365
- #: wpecommerce.php:341 ../addons/email-notices/myCRED-addon-email-notices.php:200
3366
  msgid "General"
3367
  msgstr "General"
3368
 
3369
- #: ../includes/mycred-functions.php:665
3370
  msgid "User Related"
3371
  msgstr "Relacionado al Usuario"
3372
 
3373
- #: ../includes/mycred-functions.php:672
3374
  msgid "Post Related"
3375
  msgstr "Relacionado a la Entrada"
3376
 
3377
- #: ../includes/mycred-functions.php:679
3378
  msgid "Comment Related"
3379
  msgstr "Relacionado al Comentario"
3380
 
3381
- #: ../includes/mycred-functions.php:686
3382
  msgid "Widget Related"
3383
  msgstr "Relacionado al Widget"
3384
 
3385
- #: ../includes/mycred-functions.php:693
3386
  msgid "Amount Related"
3387
  msgstr "Cantidad Relacionada"
3388
 
3389
- #: ../includes/mycred-functions.php:700
3390
  msgid "Video Related"
3391
  msgstr "Relacionado al Video"
3392
 
3393
- #: ../includes/mycred-functions.php:711
3394
  msgid "and"
3395
  msgstr "y"
3396
 
3397
- #: ../includes/mycred-functions.php:713
3398
  msgid "Available Template Tags:"
3399
  msgstr "Etiquetas de Plantilla Disponibles:"
3400
 
3401
- #: ../includes/mycred-functions.php:1874
3402
  msgid "Entire Log"
3403
  msgstr "Todo el Registro"
3404
 
3405
- #: ../includes/mycred-functions.php:1879 ../includes/mycred-functions.php:1880
3406
  msgid "Displayed Rows"
3407
  msgstr "Filas Mostradas"
3408
 
3409
- #: ../includes/mycred-functions.php:1887
3410
  msgid "Search Results"
3411
  msgstr "Resultados de la Búsqueda"
3412
 
3413
- #: ../includes/mycred-functions.php:1888
3414
  msgid "My Entire Log"
3415
  msgstr "Mi Registro Entero"
3416
 
3417
- #: ../includes/mycred-functions.php:2518
3418
  msgid "Website Registration"
3419
  msgstr "Inscripción del Sitio Web"
3420
 
3421
- #: ../includes/mycred-functions.php:2519
3422
  msgid "Website Visit"
3423
  msgstr "Visita de Sitio Web"
3424
 
3425
- #: ../includes/mycred-functions.php:2520
3426
  msgid "Viewing Content (Member)"
3427
  msgstr "Viendo Contenido (Miembro)"
3428
 
3429
- #: ../includes/mycred-functions.php:2521
3430
  msgid "Viewing Content (Author)"
3431
  msgstr "Viendo Contenido (Autor)"
3432
 
3433
- #: ../includes/mycred-functions.php:2522
3434
  msgid "Logging in"
3435
  msgstr "Accediendo"
3436
 
3437
- #: ../includes/mycred-functions.php:2523
3438
  msgid "Publishing Content"
3439
  msgstr "Publicando Contenido"
3440
 
3441
- #: ../includes/mycred-functions.php:2525
3442
  msgid "Unapproved Comment"
3443
  msgstr "Comentario no Aprobado"
3444
 
3445
- #: ../includes/mycred-functions.php:2526
3446
  msgid "SPAM Comment"
3447
  msgstr "Comentario SPAM"
3448
 
3449
- #: ../includes/mycred-functions.php:2527
3450
  msgid "Deleted Comment"
3451
  msgstr "Comentario Borrado"
3452
 
3453
- #: ../includes/mycred-functions.php:2528
3454
  msgid "Link Click"
3455
  msgstr "Click al Enlace"
3456
 
3457
- #: ../includes/mycred-functions.php:2529
3458
  msgid "Watching Video"
3459
  msgstr "Mirando Video"
3460
 
3461
- #: ../includes/mycred-functions.php:2530
3462
  msgid "Visitor Referral"
3463
  msgstr "Referencia de Visitante"
3464
 
3465
- #: ../includes/mycred-functions.php:2531
3466
  msgid "Signup Referral"
3467
  msgstr "Referencia de Inscripción "
3468
 
3469
- #: ../includes/mycred-functions.php:2535
3470
  msgid "New Profile Update"
3471
  msgstr "Nuevo Perfil Actualizado"
3472
 
3473
- #: ../includes/mycred-functions.php:2537
3474
  msgid "Avatar Upload"
3475
  msgstr "Subir Avatar"
3476
 
3477
- #: ../includes/mycred-functions.php:2538
3478
  msgid "New Friendship"
3479
  msgstr "Nueva Amistad"
3480
 
3481
- #: ../includes/mycred-functions.php:2539
3482
  msgid "Ended Friendship"
3483
  msgstr "Amistad Terminada"
3484
 
3485
- #: ../includes/mycred-functions.php:2540
3486
  msgid "New Profile Comment"
3487
  msgstr "Nuevo Comentario de Perfil"
3488
 
3489
- #: ../includes/mycred-functions.php:2541
3490
  msgid "Profile Comment Deletion"
3491
  msgstr "Borrar Comentario del Perfil"
3492
 
3493
- #: ../includes/mycred-functions.php:2542
3494
  msgid "New Message"
3495
  msgstr "Nuevo Mensaje"
3496
 
3497
- #: ../includes/mycred-functions.php:2543
3498
  msgid "Sending Gift"
3499
  msgstr "Mandando Regalo"
3500
 
3501
- #: ../includes/mycred-functions.php:2544
3502
  msgid "New Group"
3503
  msgstr "Nuevo Grupo"
3504
 
3505
- #: ../includes/mycred-functions.php:2545
3506
  msgid "Deleted Group"
3507
  msgstr "Grupo Borrado"
3508
 
3509
- #: ../includes/mycred-functions.php:2546
3510
  msgid "New Group Forum Topic"
3511
  msgstr "Nuevo Tema del Fórum de Grupo"
3512
 
3513
- #: ../includes/mycred-functions.php:2547
3514
  msgid "Edit Group Forum Topic"
3515
  msgstr "Editar el Tema del Fórum de Grupo"
3516
 
3517
- #: ../includes/mycred-functions.php:2548
3518
  msgid "New Group Forum Post"
3519
  msgstr "Nueva Entrada del Fórum de Grupo"
3520
 
3521
- #: ../includes/mycred-functions.php:2549
3522
  msgid "Edit Group Forum Post"
3523
  msgstr "Editar Entrada del Fórum de Grupo"
3524
 
3525
- #: ../includes/mycred-functions.php:2550
3526
  msgid "Joining Group"
3527
  msgstr "Agregar al Grupo"
3528
 
3529
- #: ../includes/mycred-functions.php:2551
3530
  msgid "Leaving Group"
3531
  msgstr "Dejando el Grupo"
3532
 
3533
- #: ../includes/mycred-functions.php:2552
3534
  msgid "New Group Avatar"
3535
  msgstr "Nuevo Avatar del Grupo"
3536
 
3537
- #: ../includes/mycred-functions.php:2553
3538
  msgid "New Group Comment"
3539
  msgstr "Nuevo Comentario al Grupo\n"
3540
 
3541
- #: ../includes/mycred-functions.php:2563
3542
  msgid "New Link"
3543
  msgstr "Nuevo Enlace"
3544
 
3545
- #: ../includes/mycred-functions.php:2564
3546
  msgid "Link Voting"
3547
  msgstr "Votar sobre Enlace"
3548
 
3549
- #: ../includes/mycred-functions.php:2565
3550
  msgid "Link Update"
3551
  msgstr "Enlace Actualizado"
3552
 
3553
- #: ../includes/mycred-functions.php:2569
3554
  msgid "New Forum (bbPress)"
3555
  msgstr "Nuevo Fórum (bbPress)"
3556
 
3557
- #: ../includes/mycred-functions.php:2570
3558
  msgid "New Forum Topic (bbPress)"
3559
  msgstr "Nuevo Tema de Fórum (bbPress)"
3560
 
3561
- #: ../includes/mycred-functions.php:2571
3562
  msgid "Favorited Topic (bbPress)"
3563
  msgstr "Tema Favorito (bbPress)"
3564
 
3565
- #: ../includes/mycred-functions.php:2572
3566
  msgid "New Topic Reply (bbPress)"
3567
  msgstr "Nueva Respuesta a Tema (bbPress)"
3568
 
3569
- #: ../includes/mycred-functions.php:2576
3570
  msgid "Form Submission (Contact Form 7)"
3571
  msgstr "Sumisión de Formulario (Contact Form 7)"
3572
 
3573
- #: ../includes/mycred-functions.php:2579
3574
  msgid "Form Submission (Gravity Form)"
3575
  msgstr "Sumisión de Formulario (Gravity Form)"
3576
 
3577
- #: ../includes/mycred-functions.php:2582
3578
  msgid "New Forum Topic (SimplePress)"
3579
  msgstr "Nuevo Tema de Fórum (SimplePress)"
3580
 
3581
- #: ../includes/mycred-functions.php:2583
3582
  msgid "New Forum Post (SimplePress)"
3583
  msgstr "Nueva Entrada de Fórum (SimplePress)"
3584
 
3585
- #: ../includes/mycred-functions.php:2604
3586
  msgid "Poll Voting"
3587
  msgstr "Votación"
3588
 
3589
- #: ../includes/mycred-functions.php:2607
3590
  msgid "Sending an Invite"
3591
  msgstr "Mandando una Invitación"
3592
 
3593
- #: ../includes/mycred-functions.php:2608
3594
  msgid "Accepting an Invite"
3595
  msgstr "Aceptando una Invitación"
3596
 
3597
- #: ../includes/mycred-functions.php:2614
3598
  msgid "Banking Payout"
3599
  msgstr "Desembolso Bancario"
3600
 
3601
- #: ../includes/mycred-functions.php:2617
3602
  msgid "buyCRED Purchase (PayPal Standard)"
3603
  msgstr "Compra buyCRED (PayPal Standard)"
3604
 
3605
- #: ../includes/mycred-functions.php:2618
3606
  msgid "buyCRED Purchase (Skrill)"
3607
  msgstr "Compra buyCRED (Skrill)"
3608
 
3609
- #: ../includes/mycred-functions.php:2619
3610
  msgid "buyCRED Purchase (Zombaio)"
3611
  msgstr "Compra buyCRED (Zombaio)"
3612
 
3613
- #: ../includes/mycred-functions.php:2620
3614
  msgid "buyCRED Purchase (NETBilling)"
3615
  msgstr "Compra buyCRED (NETBilling)"
3616
 
3617
- #: ../includes/mycred-functions.php:2621
3618
  msgid "buyCRED Purchase (BitPay)"
3619
  msgstr "Compra buyCRED (BitPay)"
3620
 
3621
- #: ../includes/mycred-functions.php:2626
3622
  msgid "Coupon Purchase"
3623
  msgstr "Compra Cupón"
3624
 
3625
- #: ../includes/mycred-functions.php:2630
3626
  msgid "Store Purchase (WooCommerce)"
3627
  msgstr "Compra de Tienda (WooCommerce)"
3628
 
3629
- #: ../includes/mycred-functions.php:2635
3630
  msgid "Store Purchase (MarketPress)"
3631
  msgstr "Compra de Tienda (MarketPress)"
3632
 
3633
- #: ../includes/mycred-functions.php:2639
3634
  msgid "Store Purchase (WP E-Commerce)"
3635
  msgstr "Compra de Tienda (WP E-Commerce)"
3636
 
3637
- #: ../includes/mycred-functions.php:2645
3638
  msgid "Event Payment (Event Espresso)"
3639
  msgstr "Pago por Evento (Event Espresso)"
3640
 
3641
- #: ../includes/mycred-functions.php:2646
3642
  msgid "Event Sale (Event Espresso)"
3643
  msgstr "Venta de Evento (Event Espresso)"
3644
 
3645
- #: ../includes/mycred-functions.php:2650
3646
  msgid "Event Payment (Events Manager)"
3647
  msgstr "Pago por Evento (Events Manager)"
3648
 
3649
- #: ../includes/mycred-functions.php:2651
3650
  msgid "Event Sale (Events Manager)"
3651
  msgstr "Venta de Evento (Events Manager)"
3652
 
3653
- #: ../includes/mycred-functions.php:2655
3654
- msgid "Content Purchase / Sale"
3655
- msgstr "Compra / Venta de Contenido"
3656
-
3657
- #: ../includes/mycred-functions.php:2658 ../addons/transfer/myCRED-addon-transfer.
3658
  #: php:51
3659
  msgid "Transfer"
3660
  msgstr "Transferir"
3661
 
3662
- #: ../includes/mycred-functions.php:2662
3663
  msgid "Manual Adjustment by Admin"
3664
  msgstr "Ajuste Manual por Admin"
3665
 
3666
- #: ../includes/mycred-functions.php:2777
 
 
 
 
3667
  #, php-format
3668
  msgid "You must exchange at least %s!"
3669
  msgstr "Debes intercambiar por lo menos %s!"
3670
 
3671
- #: ../includes/mycred-functions.php:2786 ../addons/transfer/myCRED-addon-transfer.
3672
  #: php:161
3673
  msgid "Insufficient Funds. Please try a lower amount."
3674
  msgstr "Fondos Insuficientes. Por favor intenta con una cantidad menor."
3675
 
3676
- #: ../includes/mycred-functions.php:2799
3677
  #, php-format
3678
  msgid "Exchange from %s"
3679
  msgstr "Intercambiar desde %s"
3680
 
3681
- #: ../includes/mycred-functions.php:2811
3682
  #, php-format
3683
  msgid "Exchange to %s"
3684
  msgstr "Intercambiar a %s"
3685
 
3686
- #: ../includes/mycred-functions.php:2819
3687
  #, php-format
3688
  msgid "You have successfully exchanged %s into %s."
3689
  msgstr "Has intercambiado %s a %s con éxito."
3690
 
3691
- #: ../includes/importers/mycred-cubepoints.php:276
3692
  msgid "No balances were imported."
3693
  msgstr "Ningun saldo fue importado."
3694
 
3695
- #: ../includes/importers/mycred-cubepoints.php:276
3696
  msgid "No log entries were imported!"
3697
  msgstr "¡No se importo ninguna entrada de registro!"
3698
 
3699
- #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-
3700
- #: log-entries.php:138
3701
  #, php-format
3702
  msgid ""
3703
  "Import complete - A total of <strong>%d</strong> entries were successfully "
@@ -3706,46 +3728,46 @@ msgstr ""
3706
  "Importación Finalizado - En total, <strong>%d</strong> entradas fueron "
3707
  "importado con éxito. Se saltaron <strong>%d</strong>."
3708
 
3709
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-
3710
- #: balances.php:181 ../includes/importers/mycred-log-entries.php:148 ..
3711
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:102
3712
  msgid "View Log"
3713
  msgstr "Ver Registro"
3714
 
3715
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-
3716
- #: balances.php:181 ../includes/importers/mycred-log-entries.php:148
3717
  msgid "Import More"
3718
  msgstr "Importar Más"
3719
 
3720
- #: ../includes/importers/mycred-cubepoints.php:306
3721
  msgid "No CubePoints log."
3722
  msgstr "No hay registro de CubePoints."
3723
 
3724
- #: ../includes/importers/mycred-cubepoints.php:317
3725
  msgid "Import CubePoints Log"
3726
  msgstr "Importar registro de CubePoints"
3727
 
3728
- #: ../includes/importers/mycred-cubepoints.php:334
3729
  msgid "Select what to import"
3730
  msgstr "Elige lo que deseas importar"
3731
 
3732
- #: ../includes/importers/mycred-cubepoints.php:335
3733
  msgid "Log Entries Only"
3734
  msgstr "Solo Entradas de Registro"
3735
 
3736
- #: ../includes/importers/mycred-cubepoints.php:336
3737
  msgid "CubePoints Balances Only"
3738
  msgstr "Saldos de CubePoints Unicamente"
3739
 
3740
- #: ../includes/importers/mycred-cubepoints.php:337
3741
  msgid "Log Entries and Balances"
3742
  msgstr "Solo Entradas y Saldos de Registro"
3743
 
3744
- #: ../includes/importers/mycred-cubepoints.php:351
3745
  msgid "Import"
3746
  msgstr "Importar"
3747
 
3748
- #: ../includes/importers/mycred-cubepoints.php:360
3749
  msgid ""
3750
  "Warning! Importing CubePoints balances will replace your users myCRED "
3751
  "balance!"
@@ -3753,30 +3775,30 @@ msgstr ""
3753
  "¡Advertencia! ¡La importación de los saldos de CubePoints reemplazará el "
3754
  "saldo de myCRED para tus usuarios!"
3755
 
3756
- #: ../includes/importers/mycred-cubepoints.php:378
3757
  msgid "Import Log"
3758
  msgstr "Importar Registro"
3759
 
3760
- #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-
3761
- #: balances.php:159 ../includes/importers/mycred-balances.php:198 ..
3762
- #: includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-
3763
- #: entries.php:81 ../includes/importers/mycred-log-entries.php:126 ..
3764
- #: includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-
3765
- #: log-entries.php:180
3766
  msgid "Sorry, there has been an error."
3767
  msgstr "Lo sentimos, se ha producido un error."
3768
 
3769
- #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-
3770
- #: entries.php:82
3771
  msgid "The file does not exist, please try again."
3772
  msgstr "El fichero no existe, por favor inténtelo de nuevo más tarde."
3773
 
3774
- #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-
3775
- #: entries.php:127
3776
  msgid "The CSV is invalid."
3777
  msgstr "El CSV no es valido."
3778
 
3779
- #: ../includes/importers/mycred-balances.php:171
3780
  #, php-format
3781
  msgid ""
3782
  "Import complete - A total of <strong>%d</strong> balances were successfully "
@@ -3785,16 +3807,16 @@ msgstr ""
3785
  "Importación Finalizado - En total, <strong>%d</strong> saldos fueron "
3786
  "importado con éxito. Se saltaron <strong>%d</strong>."
3787
 
3788
- #: ../includes/importers/mycred-balances.php:227
3789
  msgid "Import Balances"
3790
  msgstr "Saldos Importar"
3791
 
3792
- #: ../includes/importers/mycred-balances.php:244
3793
  msgid "Import balances from a CSV file."
3794
  msgstr "Importa saldos de registro desde un fichero CSV."
3795
 
3796
- #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-
3797
- #: entries.php:219
3798
  msgid ""
3799
  "Before you can upload your import file, you will need to fix the following "
3800
  "error:"
@@ -3802,62 +3824,62 @@ msgstr ""
3802
  "Antes que puedas subir tu fichero de importe, tendras que corregir los "
3803
  "errores siguientes:"
3804
 
3805
- #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-
3806
- #: entries.php:228
3807
  msgid "Choose a file from your computer:"
3808
  msgstr "Elige un fichero en tu ordenador:"
3809
 
3810
- #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-
3811
- #: entries.php:234
3812
  #, php-format
3813
  msgid "Maximum size: %s"
3814
  msgstr "Tamaño Máximo: %s"
3815
 
3816
- #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-
3817
- #: entries.php:239
3818
  msgid "OR enter path to file:"
3819
  msgstr "O rellena la ruta al fichero:"
3820
 
3821
- #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-
3822
- #: entries.php:246
3823
  msgid "Delimiter"
3824
  msgstr "Delimitador"
3825
 
3826
- #: ../includes/importers/mycred-balances.php:283
3827
  msgid "Method"
3828
  msgstr "Método"
3829
 
3830
- #: ../includes/importers/mycred-balances.php:285
3831
  msgid "Replace current balances with the amount in this CSV file"
3832
  msgstr "Sustituir los balances actuales con los montos en el archivo CSV"
3833
 
3834
- #: ../includes/importers/mycred-balances.php:286
3835
  msgid "Adjust current balances according to the amount in this CSV file"
3836
  msgstr "Ajustar los balances actuales de acuerdo al monto en el archivo CSV"
3837
 
3838
- #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
3839
- #: entries.php:252
3840
  msgid "Upload file and import"
3841
  msgstr "Subir fichero e importar"
3842
 
3843
- #: ../includes/importers/mycred-log-entries.php:194
3844
  msgid "Import Log Entries"
3845
  msgstr "Importar Entradas de Registro"
3846
 
3847
- #: ../includes/importers/mycred-log-entries.php:211
3848
  msgid "Import log entries from a CSV file."
3849
  msgstr "Importa las entradas de registro desde un fichero CSV."
3850
 
3851
- #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
3852
- #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
3853
  msgid "Banking"
3854
  msgstr "Banco"
3855
 
3856
- #: ../addons/banking/myCRED-addon-banking.php:158
3857
  msgid "Central Banking"
3858
  msgstr "Banco Central"
3859
 
3860
- #: ../addons/banking/myCRED-addon-banking.php:159
3861
  #, php-format
3862
  msgid ""
3863
  "Instead of creating %_plural% out of thin-air, all payouts are made from a "
@@ -3868,42 +3890,42 @@ msgstr ""
3868
  "desde una cuenta nominada del \"Banco Central\". Qualquier %_plural% que un "
3869
  "usuario gaste o pierda seran depositados a esta misma cuenta."
3870
 
3871
- #: ../addons/banking/myCRED-addon-banking.php:165 ..
3872
  #: addons/banking/services/mycred-bank-service-interest.php:512
3873
  msgid "Compound Interest"
3874
  msgstr "Interés Compuesto"
3875
 
3876
- #: ../addons/banking/myCRED-addon-banking.php:166
3877
  #, php-format
3878
  msgid "Apply a positive or negative interest rate on your users %_plural% balances."
3879
  msgstr ""
3880
  "Aplicar un tipo de interés compuesto positivo o negativo al saldo de "
3881
  "%_plural% de tus usuarios."
3882
 
3883
- #: ../addons/banking/myCRED-addon-banking.php:172
3884
  msgid "Recurring Payouts"
3885
  msgstr "Pagos Recurrentes"
3886
 
3887
- #: ../addons/banking/myCRED-addon-banking.php:173
3888
  #, php-format
3889
  msgid "Setup mass %_singular% payouts for your users."
3890
  msgstr "Configurar pago en masa &_singular% para tus usuarios."
3891
 
3892
- #: ../addons/banking/myCRED-addon-banking.php:225
3893
  #, php-format
3894
  msgid "%s Banking"
3895
  msgstr "%s Bancario"
3896
 
3897
- #: ../addons/banking/myCRED-addon-banking.php:228
3898
  #, php-format
3899
  msgid "Your banking setup for %plural%."
3900
  msgstr "Tu configuración bancario para %plural%."
3901
 
3902
- #: ../addons/banking/myCRED-addon-banking.php:231
3903
  msgid "WP-Cron deactivation detected!"
3904
  msgstr "¡Se detecto la desactivación de WP-Cron!"
3905
 
3906
- #: ../addons/banking/myCRED-addon-banking.php:232
3907
  msgid "Warning! This add-on requires WP - Cron to work."
3908
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
3909
 
@@ -4100,8 +4122,8 @@ msgid "This user role is excluded from receiving interest on this balance."
4100
  msgstr "Este papel de usuario esta excluido de recibir interés sobre este saldo."
4101
 
4102
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/sell-
4103
- #: content/myCRED-addon-sell-content.php:114 ../addons/buy-creds/myCRED-addon-buy-
4104
- #: creds.php:837
4105
  msgid "Leave empty to use the default value."
4106
  msgstr "Dejar vacio si va a utilizar el valor predefinido."
4107
 
@@ -4128,15 +4150,15 @@ msgstr "Usuario permitido la concesión de interés."
4128
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ..
4129
  #: addons/gateway/event-booking/mycred-eventsmanager.php:540 ..
4130
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/sell-
4131
- #: content/myCRED-addon-sell-content.php:423 ../addons/buy-creds/myCRED-addon-buy-
4132
- #: creds.php:579
4133
  msgid "Payments"
4134
  msgstr "Pagos"
4135
 
4136
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
4137
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35 ..
4138
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/buy-
4139
- #: creds/myCRED-addon-buy-creds.php:1686
4140
  msgid "Pay Now"
4141
  msgstr "Pagar Ahora"
4142
 
@@ -4169,7 +4191,7 @@ msgid "Deactivate %s"
4169
  msgstr "Desactivar %s"
4170
 
4171
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:367 ../addons/buy-
4172
- #: creds/myCRED-addon-buy-creds.php:1085
4173
  msgid "Gateway Settings"
4174
  msgstr "Configuraciones de la Pasarela de Pago"
4175
 
@@ -4211,8 +4233,8 @@ msgstr "El titulo a mostrar en la factura y en los registros."
4211
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ..
4212
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
4213
  #: addons/transfer/includes/mycred-transfer-widgets.php:132 ../addons/sell-
4214
- #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
4215
- #: sell-content.php:686
4216
  msgid "Button Label"
4217
  msgstr "Eqiqueta Asignada al Botón"
4218
 
@@ -4225,8 +4247,8 @@ msgstr "Botón de Pago"
4225
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ..
4226
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:139 ..
4227
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ../addons/sell-
4228
- #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
4229
- #: sell-content.php:682
4230
  msgid "Price"
4231
  msgstr "Precio"
4232
 
@@ -4267,7 +4289,7 @@ msgstr ""
4267
  "inhabilitar."
4268
 
4269
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
4270
- #: content/myCRED-addon-sell-content.php:473
4271
  msgid "Templates"
4272
  msgstr "Plantillas"
4273
 
@@ -4874,49 +4896,49 @@ msgstr "Ingreso Usuario (user_login)"
4874
  msgid "User Email (user_email)"
4875
  msgstr "Correo Electrónico del Usuario (user_email)"
4876
 
4877
- #: ../addons/transfer/myCRED-addon-transfer.php:216
4878
  msgid "Select the point types that users can transfer."
4879
  msgstr "Elige el clase de punto que el usuario puede transferir."
4880
 
4881
- #: ../addons/transfer/myCRED-addon-transfer.php:224
4882
  msgid "Log template for sending"
4883
  msgstr "Plantilla de registros para transmitir"
4884
 
4885
- #: ../addons/transfer/myCRED-addon-transfer.php:231
4886
  msgid "Log template for receiving"
4887
  msgstr "Plantilla de registros para recibir"
4888
 
4889
- #: ../addons/transfer/myCRED-addon-transfer.php:238
4890
  msgid "Autofill Recipient"
4891
  msgstr "Destinatario del Relleno Automático"
4892
 
4893
- #: ../addons/transfer/myCRED-addon-transfer.php:250
4894
  msgid "Select what user details recipients should be autofilled by."
4895
  msgstr ""
4896
  "Selecciona cuales detalles del usuario al destinatario deben ser rellenados "
4897
  "automáticamente."
4898
 
4899
- #: ../addons/transfer/myCRED-addon-transfer.php:253
4900
  msgid "Reload"
4901
  msgstr "Recargar"
4902
 
4903
- #: ../addons/transfer/myCRED-addon-transfer.php:256
4904
  msgid "Reload page on successful transfers."
4905
  msgstr "Actualizar la pagina despues de transferencias finalizadas."
4906
 
4907
- #: ../addons/transfer/myCRED-addon-transfer.php:276
4908
  msgid "Limit Amount"
4909
  msgstr "Limitar la Cantidad"
4910
 
4911
- #: ../addons/transfer/myCRED-addon-transfer.php:280
4912
  msgid "Form Templates"
4913
  msgstr "Plantillas de Formulario"
4914
 
4915
- #: ../addons/transfer/myCRED-addon-transfer.php:283
4916
  msgid "Not logged in Template"
4917
  msgstr "Plantilla de no estar ingresado"
4918
 
4919
- #: ../addons/transfer/myCRED-addon-transfer.php:285
4920
  msgid ""
4921
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
4922
  "elements allowed!"
@@ -4924,11 +4946,11 @@ msgstr ""
4924
  "Mostrar este texto cuango los usuarios no han iniciado la sesión. ¡No se "
4925
  "permite ningun elemento de HTML!"
4926
 
4927
- #: ../addons/transfer/myCRED-addon-transfer.php:289
4928
  msgid "Balance Template"
4929
  msgstr "Plantilla de Saldo"
4930
 
4931
- #: ../addons/transfer/myCRED-addon-transfer.php:291
4932
  msgid ""
4933
  "Template to use when displaying the users balance (if included). No HTML "
4934
  "elements allowed!"
@@ -4936,34 +4958,34 @@ msgstr ""
4936
  "Utilizar esta plantilla cuando mostrando el saldo del usuario (si esta "
4937
  "incluido). ¡No se permite elementos de HTML!"
4938
 
4939
- #: ../addons/transfer/myCRED-addon-transfer.php:295
4940
  msgid "Limit Template"
4941
  msgstr "Limitar Plantilla"
4942
 
4943
- #: ../addons/transfer/myCRED-addon-transfer.php:297
4944
  msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
4945
  msgstr ""
4946
  "Utilizar esta plantilla cuando mostrando límites (si se utiliza). ¡No se "
4947
  "permite elementos de HTML!"
4948
 
4949
- #: ../addons/transfer/myCRED-addon-transfer.php:301
4950
  msgid "Button Template"
4951
  msgstr "Plantilla del Botón"
4952
 
4953
- #: ../addons/transfer/myCRED-addon-transfer.php:303
4954
  msgid "Send Transfer button template. No HTML elements allowed!"
4955
  msgstr "Plantilla del botón Enviar Transferencia ¡No se permite elementos de HTML!"
4956
 
4957
- #: ../addons/transfer/myCRED-addon-transfer.php:306
4958
  msgid "Error Messages"
4959
  msgstr "Mensajes de Error"
4960
 
4961
  #. English needs to be corrected: "Balance too low to send."
4962
- #: ../addons/transfer/myCRED-addon-transfer.php:309
4963
  msgid "Balance to low to send."
4964
  msgstr "Saldo insuficiente - no se puede enviar."
4965
 
4966
- #: ../addons/transfer/myCRED-addon-transfer.php:311
4967
  msgid ""
4968
  "Text to show when a users balance is to low for transfers. Leave empty to "
4969
  "hide. No HTML elements allowed!"
@@ -4972,11 +4994,11 @@ msgstr ""
4972
  "efectuar transferencias. Deje el campo vacío para ocultarlo. ¡No se permite "
4973
  "ningun elemento de HTML!"
4974
 
4975
- #: ../addons/transfer/myCRED-addon-transfer.php:315
4976
  msgid "Transfer Limit Reached."
4977
  msgstr "Límite de Transferencia Alcanzado."
4978
 
4979
- #: ../addons/transfer/myCRED-addon-transfer.php:317
4980
  msgid ""
4981
  "Text to show when a user has reached their transfer limit (if used). Leave "
4982
  "empty to hide. No HTML elements allowed!"
@@ -5006,204 +5028,204 @@ msgstr "Mostrar el saldo de usuarios"
5006
  msgid "Show users limit"
5007
  msgstr "Mostrar los límites de usuarios"
5008
 
5009
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:130
5010
  msgid "username"
5011
  msgstr "nombre de usuario"
5012
 
5013
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:133
5014
  msgid "email"
5015
  msgstr "correo electrónico"
5016
 
5017
  #. is this recipients plural or recipient's with an apostrophe missing?
5018
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:135
5019
  #, php-format
5020
  msgid "recipients %s"
5021
  msgstr "destinatarios %s"
5022
 
5023
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
5024
  msgid "To:"
5025
  msgstr "A:"
5026
 
5027
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:231
5028
  msgid "Amount:"
5029
  msgstr "Cantidad:"
5030
 
5031
  #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
5032
- #: php:213 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-
5033
- #: addon-ranks.php:452 ../addons/ranks/myCRED-addon-ranks.php:458 ..
5034
- #: addons/ranks/myCRED-addon-ranks.php:834 ../addons/ranks/myCRED-addon-ranks.
5035
- #: php:1311 ../addons/ranks/myCRED-addon-ranks.php:1602
5036
  msgid "Ranks"
5037
  msgstr "Rangos"
5038
 
5039
- #: ../addons/ranks/myCRED-addon-ranks.php:424
5040
  msgid "Warning! All ranks will be deleted! This can not be undone!"
5041
  msgstr "¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer esto!"
5042
 
5043
- #: ../addons/ranks/myCRED-addon-ranks.php:425
5044
  msgid "Are you sure you want to re-assign user ranks?"
5045
  msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
5046
 
5047
- #: ../addons/ranks/myCRED-addon-ranks.php:447 ../addons/ranks/myCRED-addon-ranks.
5048
- #: php:834
5049
  msgid "Rank"
5050
  msgstr "Rango"
5051
 
5052
- #: ../addons/ranks/myCRED-addon-ranks.php:448 ../addons/email-notices/myCRED-
5053
- #: addon-email-notices.php:167 ../addons/badges/myCRED-addon-badges.php:385 ..
5054
  #: addons/buy-creds/myCRED-addon-buy-creds.php:279 ../addons/buy-creds/myCRED-
5055
  #: addon-buy-creds.php:280
5056
  msgid "Add New"
5057
  msgstr "Añade Nuevo"
5058
 
5059
- #: ../addons/ranks/myCRED-addon-ranks.php:449
5060
  msgid "Add New Rank"
5061
  msgstr "Añadir Nuevo Rango"
5062
 
5063
- #: ../addons/ranks/myCRED-addon-ranks.php:450
5064
  msgid "Edit Rank"
5065
  msgstr "Editar Rango"
5066
 
5067
- #: ../addons/ranks/myCRED-addon-ranks.php:451
5068
  msgid "New Rank"
5069
  msgstr "Nuevo Rango"
5070
 
5071
- #: ../addons/ranks/myCRED-addon-ranks.php:453
5072
  msgid "View Rank"
5073
  msgstr "Ver Rango"
5074
 
5075
- #: ../addons/ranks/myCRED-addon-ranks.php:454
5076
  msgid "Search Ranks"
5077
  msgstr "Búsqueda de Rangos"
5078
 
5079
- #: ../addons/ranks/myCRED-addon-ranks.php:455
5080
  msgid "No ranks found"
5081
  msgstr "Ningun rango encontrado"
5082
 
5083
- #: ../addons/ranks/myCRED-addon-ranks.php:456
5084
  msgid "No ranks found in Trash"
5085
  msgstr "Ningun rango encontrao el la papelera"
5086
 
5087
- #: ../addons/ranks/myCRED-addon-ranks.php:541
5088
  #, php-format
5089
  msgid "Completed - Total of %d users effected"
5090
  msgstr "Completado - Un total %d usuarios afectados"
5091
 
5092
- #: ../addons/ranks/myCRED-addon-ranks.php:978 ../addons/ranks/myCRED-addon-ranks.
5093
- #: php:979 ../addons/ranks/myCRED-addon-ranks.php:980 ../addons/ranks/myCRED-
5094
- #: addon-ranks.php:981 ../addons/ranks/myCRED-addon-ranks.php:982 ..
5095
- #: addons/ranks/myCRED-addon-ranks.php:983 ../addons/ranks/myCRED-addon-ranks.
5096
- #: php:986 ../addons/ranks/myCRED-addon-ranks.php:987
5097
  msgid "Rank Updated."
5098
  msgstr "Rango Actualizado."
5099
 
5100
- #: ../addons/ranks/myCRED-addon-ranks.php:984
5101
  msgid "Rank Enabled"
5102
  msgstr "Rango Habilitado"
5103
 
5104
- #: ../addons/ranks/myCRED-addon-ranks.php:985
5105
  msgid "Rank Saved"
5106
  msgstr "Rango Guardado"
5107
 
5108
- #: ../addons/ranks/myCRED-addon-ranks.php:1040 ../addons/ranks/myCRED-addon-ranks.
5109
- #: php:1123
5110
  msgid "Rank Title"
5111
  msgstr "Titulo de Rango"
5112
 
5113
- #: ../addons/ranks/myCRED-addon-ranks.php:1041
5114
  msgid "Logo"
5115
  msgstr "Logotipo"
5116
 
5117
- #: ../addons/ranks/myCRED-addon-ranks.php:1042
5118
  msgid "Requirement"
5119
  msgstr "Requisito"
5120
 
5121
- #: ../addons/ranks/myCRED-addon-ranks.php:1068
5122
  msgid "No Logo Set"
5123
  msgstr "No hay Logotipo Configurado"
5124
 
5125
- #: ../addons/ranks/myCRED-addon-ranks.php:1083 ../addons/ranks/myCRED-addon-ranks.
5126
- #: php:1088
5127
  msgid "Any Value"
5128
  msgstr "Cualquier Valor"
5129
 
5130
- #: ../addons/ranks/myCRED-addon-ranks.php:1085 ../addons/buy-creds/myCRED-addon-
5131
- #: buy-creds.php:643
5132
  #, php-format
5133
  msgid "Minimum %plural%"
5134
  msgstr "Minimo %_plural%"
5135
 
5136
- #: ../addons/ranks/myCRED-addon-ranks.php:1090
5137
  #, php-format
5138
  msgid "Maximum %plural%"
5139
  msgstr "Maximo %plural%"
5140
 
5141
- #: ../addons/ranks/myCRED-addon-ranks.php:1138
5142
  msgid "Rank Settings"
5143
  msgstr "Configuración de Rango"
5144
 
5145
- #: ../addons/ranks/myCRED-addon-ranks.php:1192
5146
  #, php-format
5147
  msgid "Minimum %plural% to reach this rank"
5148
  msgstr "Minimo %plural% para llegar a este rango"
5149
 
5150
- #: ../addons/ranks/myCRED-addon-ranks.php:1196
5151
  #, php-format
5152
  msgid "Maximum %plural% to be included in this rank"
5153
  msgstr "Maximo %plural% para ser incluido en este rango"
5154
 
5155
- #: ../addons/ranks/myCRED-addon-ranks.php:1214
5156
  msgid "All Published Ranks"
5157
  msgstr "Todos los Rangos Publicados"
5158
 
5159
- #: ../addons/ranks/myCRED-addon-ranks.php:1224 ../addons/ranks/myCRED-addon-ranks.
5160
- #: php:1226
5161
  msgid "Not Set"
5162
  msgstr "No Configurado"
5163
 
5164
- #: ../addons/ranks/myCRED-addon-ranks.php:1232
5165
  msgid "No Ranks found"
5166
  msgstr "Ningun rango encontrado"
5167
 
5168
- #: ../addons/ranks/myCRED-addon-ranks.php:1316
5169
  msgid "Rank Features"
5170
  msgstr "Caracteristicas de los Rangos"
5171
 
5172
- #: ../addons/ranks/myCRED-addon-ranks.php:1320
5173
  #, php-format
5174
  msgid "%plural% requirement"
5175
  msgstr "%plural% requisito"
5176
 
5177
- #: ../addons/ranks/myCRED-addon-ranks.php:1321
5178
  msgid "Featured Image (Logo)"
5179
  msgstr "Imagen Principal (Logotipo)"
5180
 
5181
- #: ../addons/ranks/myCRED-addon-ranks.php:1323
5182
  msgid "Content"
5183
  msgstr "Contenido"
5184
 
5185
- #: ../addons/ranks/myCRED-addon-ranks.php:1325
5186
  msgid "Excerpt"
5187
  msgstr "Extracto"
5188
 
5189
- #: ../addons/ranks/myCRED-addon-ranks.php:1327
5190
  msgid "Comments"
5191
  msgstr "Comentario"
5192
 
5193
- #: ../addons/ranks/myCRED-addon-ranks.php:1329
5194
  msgid "Page Attributes"
5195
  msgstr "Atributos de Página"
5196
 
5197
- #: ../addons/ranks/myCRED-addon-ranks.php:1331
5198
  msgid "Custom Fields"
5199
  msgstr "Campo Personalizado"
5200
 
5201
- #: ../addons/ranks/myCRED-addon-ranks.php:1335
5202
  msgid "Public"
5203
  msgstr "Público"
5204
 
5205
  #. This is not clear, especially the second sentence (fragment)!
5206
- #: ../addons/ranks/myCRED-addon-ranks.php:1339
5207
  msgid ""
5208
  "If you want to create a template archive for each rank, you must select to "
5209
  "have ranks public. Defaults to disabled."
@@ -5211,28 +5233,28 @@ msgstr ""
5211
  "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
5212
  "los rangos sean público. Los valores predeterminados desactivado."
5213
 
5214
- #: ../addons/ranks/myCRED-addon-ranks.php:1342
5215
  msgid "Archive URL"
5216
  msgstr "URL del Archivo"
5217
 
5218
- #: ../addons/ranks/myCRED-addon-ranks.php:1346
5219
  msgid "Ignored if Ranks are not public"
5220
  msgstr "Sera Ingnorado si los Rangos no son Pulicos"
5221
 
5222
  #. not sure if this is order, as in ordering pizza or order as in rank, organization
5223
- #: ../addons/ranks/myCRED-addon-ranks.php:1349
5224
  msgid "Display Order"
5225
  msgstr "Orden de Visualización"
5226
 
5227
- #: ../addons/ranks/myCRED-addon-ranks.php:1357
5228
  msgid "Ascending - Lowest rank to highest"
5229
  msgstr "Ascendente - Rango más bajo a lo más alto"
5230
 
5231
- #: ../addons/ranks/myCRED-addon-ranks.php:1358
5232
  msgid "Descending - Highest rank to lowest"
5233
  msgstr "Descendiente - Rango más alto al más bajo"
5234
 
5235
- #: ../addons/ranks/myCRED-addon-ranks.php:1369
5236
  msgid ""
5237
  "Select in what order ranks should be displayed in your admin area and/or "
5238
  "front if ranks are \"Public\""
@@ -5240,15 +5262,15 @@ msgstr ""
5240
  "Elige en que orden se debe mostrar los rangos en tu area de administrador "
5241
  "y/o en el frente si los rangos son \"Público\""
5242
 
5243
- #: ../addons/ranks/myCRED-addon-ranks.php:1375
5244
  msgid "Rank Basis"
5245
  msgstr "Base de Rango"
5246
 
5247
- #: ../addons/ranks/myCRED-addon-ranks.php:1378
5248
  msgid "Users are ranked according to their current balance."
5249
  msgstr "Los usuarios se clasifican según su saldo actual."
5250
 
5251
- #: ../addons/ranks/myCRED-addon-ranks.php:1381
5252
  msgid ""
5253
  "Users are ranked according to the total amount of %_plural% they have "
5254
  "accumulated."
@@ -5256,12 +5278,12 @@ msgstr ""
5256
  "Los usuarios se clasifican según la cantidad total de %_plural% que han "
5257
  "acumulado."
5258
 
5259
- #: ../addons/ranks/myCRED-addon-ranks.php:1385 ../addons/ranks/myCRED-addon-ranks.
5260
- #: php:1390
5261
  msgid "Calculate Totals"
5262
  msgstr "Calcular Totales"
5263
 
5264
- #: ../addons/ranks/myCRED-addon-ranks.php:1388
5265
  msgid ""
5266
  "Once a users total has been calculated, they will be assigned to their "
5267
  "appropriate roles. For this reason, it is highly recommended that you first "
@@ -5271,7 +5293,7 @@ msgstr ""
5271
  "corespondientes seran asignados. ¡Por esta razón, se recomienda altamente "
5272
  "que primero configures los rangos!"
5273
 
5274
- #: ../addons/ranks/myCRED-addon-ranks.php:1389
5275
  msgid ""
5276
  "Depending on your log size and number of users this process may take a while."
5277
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
@@ -5282,80 +5304,80 @@ msgstr ""
5282
  "\"Actualizar Configuraciones\" o refrescar la pagina hasta que se haya "
5283
  "completado!"
5284
 
5285
- #: ../addons/ranks/myCRED-addon-ranks.php:1407
5286
  msgid "Include in Profile Header."
5287
  msgstr "Incluir en Encabezado del Perfil"
5288
 
5289
- #: ../addons/ranks/myCRED-addon-ranks.php:1409
5290
  msgid "Include under the \"Profile\" tab and Profile Header."
5291
  msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil."
5292
 
5293
- #: ../addons/ranks/myCRED-addon-ranks.php:1413
5294
  msgid "Rank in BuddyPress"
5295
  msgstr "Rango en BuddyPress"
5296
 
5297
- #: ../addons/ranks/myCRED-addon-ranks.php:1453 ../addons/badges/myCRED-addon-
5298
- #: badges.php:1002
5299
  msgid "Include in Profile"
5300
  msgstr "Incluir en el Perfil"
5301
 
5302
- #: ../addons/ranks/myCRED-addon-ranks.php:1537
5303
  msgid "Script Communication Error"
5304
  msgstr "Error del Script de Comunicación"
5305
 
5306
- #: ../addons/ranks/myCRED-addon-ranks.php:1609
5307
  msgid "No. of ranks"
5308
  msgstr "Numero de Rangos"
5309
 
5310
- #: ../addons/ranks/myCRED-addon-ranks.php:1614
5311
  msgid "Remove All Ranks"
5312
  msgstr "Quitar todos los Rangos"
5313
 
5314
- #: ../addons/ranks/myCRED-addon-ranks.php:1614
5315
  msgid "Assign Ranks to Users"
5316
  msgstr "Asignar Rango a los Usuarios"
5317
 
5318
- #: ../addons/ranks/includes/mycred-rank-functions.php:257
5319
  msgid "mycred_get_users_rank() : Missing required user id"
5320
  msgstr "mycred_get_users_rank() : Falta el requisito id del usuario"
5321
 
5322
- #: ../addons/ranks/includes/mycred-rank-functions.php:270
5323
  msgid "no rank"
5324
  msgstr "ningun rango"
5325
 
5326
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:115 ..
5327
- #: addons/ranks/includes/mycred-rank-shortcodes.php:210
5328
  msgid "No users found with this rank"
5329
  msgstr "Ningun usuario encontrado con este rango"
5330
 
5331
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122
5332
  msgid "Rank ID is required!"
5333
  msgstr "¡ID de Rango obligatorio!"
5334
 
5335
- #: ../addons/notifications/myCRED-addon-notifications.php:193
5336
  msgid "Notifications"
5337
  msgstr "Notificaciones"
5338
 
5339
- #: ../addons/notifications/myCRED-addon-notifications.php:195
5340
  msgid "Styling"
5341
  msgstr "Diseño/Estilo"
5342
 
5343
- #: ../addons/notifications/myCRED-addon-notifications.php:198
5344
  msgid "Use the included CSS Styling for notifications."
5345
  msgstr "Utilice el Estilo CSS incluido para notificaciones."
5346
 
5347
- #: ../addons/notifications/myCRED-addon-notifications.php:205
5348
  #, php-format
5349
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
5350
  msgstr ""
5351
  "Utiliza %entry% para mostrar la entrada de registro en el aviso y %amount% "
5352
  "para la cantidad."
5353
 
5354
- #: ../addons/notifications/myCRED-addon-notifications.php:208
5355
  msgid "Transient Lifespan"
5356
  msgstr "Duración de Transitorio"
5357
 
5358
- #: ../addons/notifications/myCRED-addon-notifications.php:212
5359
  msgid ""
5360
  "The number of days a users notification is saved before being automatically "
5361
  "deleted."
@@ -5363,117 +5385,117 @@ msgstr ""
5363
  "Cuantos dias una notificación del usuario se guarda antes de automáticamente "
5364
  "borrarse."
5365
 
5366
- #: ../addons/notifications/myCRED-addon-notifications.php:215
5367
  msgid "Duration"
5368
  msgstr "Duracion"
5369
 
5370
- #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ../addons/email-
5371
- #: notices/myCRED-addon-email-notices.php:171 ../addons/email-notices/myCRED-
5372
- #: addon-email-notices.php:177 ../addons/email-notices/myCRED-addon-email-notices.
5373
- #: php:283 ../addons/coupons/myCRED-addon-coupons.php:105
5374
  msgid "Email Notices"
5375
  msgstr "Avisos por Correo Electrónico"
5376
 
5377
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
5378
- #: notices/myCRED-addon-email-notices.php:1270
5379
  msgid "Email Notice"
5380
  msgstr "Aviso por Correo Electrónico"
5381
 
5382
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
5383
  msgid "Add New Notice"
5384
  msgstr "Añade Nueva Notificación"
5385
 
5386
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
5387
  msgid "Edit Notice"
5388
  msgstr "Editar Aviso"
5389
 
5390
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
5391
  msgid "New Notice"
5392
  msgstr "Nuevo Aviso"
5393
 
5394
- #: ../addons/email-notices/myCRED-addon-email-notices.php:172
5395
  msgid "View Notice"
5396
  msgstr "Ver Aviso"
5397
 
5398
- #: ../addons/email-notices/myCRED-addon-email-notices.php:173
5399
  msgid "Search Email Notices"
5400
  msgstr "Búsqueda de Avisos por Correo Electrónico"
5401
 
5402
- #: ../addons/email-notices/myCRED-addon-email-notices.php:174
5403
  msgid "No email notices found"
5404
  msgstr "Ningun aviso por correo electrónico encontrado"
5405
 
5406
- #: ../addons/email-notices/myCRED-addon-email-notices.php:175
5407
  msgid "No email notices found in Trash"
5408
  msgstr "Ningun aviso por correo electrónico encontrado en la papelera"
5409
 
5410
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
5411
- #: ../addons/email-notices/myCRED-addon-email-notices.php:201
5412
  msgid "users balance changes"
5413
  msgstr "el saldo de usuario cambia"
5414
 
5415
- #: ../addons/email-notices/myCRED-addon-email-notices.php:202
5416
  msgid "user gains %_plural%"
5417
  msgstr "usuario gana %_plural%"
5418
 
5419
- #: ../addons/email-notices/myCRED-addon-email-notices.php:203
5420
  msgid "user lose %_plural%"
5421
  msgstr "usuario pierde %_plural%"
5422
 
5423
- #: ../addons/email-notices/myCRED-addon-email-notices.php:204
5424
  msgid "users balance reaches zero"
5425
  msgstr "saldo de usuario llega a cero"
5426
 
5427
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
5428
- #: ../addons/email-notices/myCRED-addon-email-notices.php:205
5429
  msgid "users balance goes minus"
5430
  msgstr "el saldo de usuario cae a negativo"
5431
 
5432
- #: ../addons/email-notices/myCRED-addon-email-notices.php:219
5433
  msgid "Sell Content Add-on"
5434
  msgstr "Extensión para Vender Contenido"
5435
 
5436
- #: ../addons/email-notices/myCRED-addon-email-notices.php:220
5437
  msgid "user buys content"
5438
  msgstr "usuario compra contenido"
5439
 
5440
- #: ../addons/email-notices/myCRED-addon-email-notices.php:221
5441
  msgid "authors content gets sold"
5442
  msgstr "el contenido del autor sera vendido"
5443
 
5444
- #: ../addons/email-notices/myCRED-addon-email-notices.php:228
5445
  msgid "buyCREDs Add-on"
5446
  msgstr "Extensión de compraCREDs"
5447
 
5448
- #: ../addons/email-notices/myCRED-addon-email-notices.php:229
5449
  msgid "user buys %_plural%"
5450
  msgstr "usuario compra %_plural%"
5451
 
5452
- #: ../addons/email-notices/myCRED-addon-email-notices.php:236
5453
  msgid "Transfer Add-on"
5454
  msgstr "Extensión de Transferencias"
5455
 
5456
- #: ../addons/email-notices/myCRED-addon-email-notices.php:237
5457
  msgid "user sends %_plural%"
5458
  msgstr "usuario manda %_plural%"
5459
 
5460
- #: ../addons/email-notices/myCRED-addon-email-notices.php:238
5461
  msgid "user receives %_plural%"
5462
  msgstr "usuario recibe %_plural%"
5463
 
5464
- #: ../addons/email-notices/myCRED-addon-email-notices.php:245
5465
  msgid "Ranks Add-on"
5466
  msgstr "Extensión de Rangos"
5467
 
5468
- #: ../addons/email-notices/myCRED-addon-email-notices.php:246
5469
  msgid "user is demoted"
5470
  msgstr "se ha degrado al usuario"
5471
 
5472
- #: ../addons/email-notices/myCRED-addon-email-notices.php:247
5473
  msgid "user is promoted"
5474
  msgstr "se ha promovido al usuario"
5475
 
5476
- #: ../addons/email-notices/myCRED-addon-email-notices.php:285
5477
  msgid ""
5478
  "Settings that apply to all email notices and can not be overridden for "
5479
  "individual emails."
@@ -5481,23 +5503,23 @@ msgstr ""
5481
  "Ajustes que se aplica a todos los correos electrónicos y que no seran "
5482
  "anulados para correos electronicos especificos."
5483
 
5484
- #: ../addons/email-notices/myCRED-addon-email-notices.php:286
5485
  msgid "Email Format"
5486
  msgstr "Formato de Correo Electrónico"
5487
 
5488
- #: ../addons/email-notices/myCRED-addon-email-notices.php:290
5489
  msgid "Plain text emails only."
5490
  msgstr "Correo electrónico usando texto sin formato."
5491
 
5492
- #: ../addons/email-notices/myCRED-addon-email-notices.php:294
5493
  msgid "HTML or Plain text emails."
5494
  msgstr "Correo electrónico usando HTML o texto sin formato."
5495
 
5496
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297
5497
  msgid "Filters"
5498
  msgstr "Filtros"
5499
 
5500
- #: ../addons/email-notices/myCRED-addon-email-notices.php:301
5501
  msgid ""
5502
  "Allow WordPress and Third Party Plugins to filter the email subject before "
5503
  "an email is sent."
@@ -5505,7 +5527,7 @@ msgstr ""
5505
  "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
5506
  "correo electrónico antes de enviarlo."
5507
 
5508
- #: ../addons/email-notices/myCRED-addon-email-notices.php:305
5509
  msgid ""
5510
  "Allow WordPress and Third Party Plugins to filter the email content before "
5511
  "an email is sent."
@@ -5513,32 +5535,32 @@ msgstr ""
5513
  "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
5514
  "correo electrónico antes de enviarlo."
5515
 
5516
- #: ../addons/email-notices/myCRED-addon-email-notices.php:310 ../addons/email-
5517
- #: notices/myCRED-addon-email-notices.php:316
5518
  msgid "Email Schedule"
5519
  msgstr "Itinerario de Emails"
5520
 
5521
- #: ../addons/email-notices/myCRED-addon-email-notices.php:312
5522
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
5523
  msgstr "WordPress Cron esta desactivado. Los emails seran mandados inmediatamente."
5524
 
5525
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
5526
  msgid "Send emails immediately"
5527
  msgstr "Mandar emails inmediatamente"
5528
 
5529
- #: ../addons/email-notices/myCRED-addon-email-notices.php:324
5530
  msgid "Send emails once an hour"
5531
  msgstr "Mandar emails una vez a la hora"
5532
 
5533
- #: ../addons/email-notices/myCRED-addon-email-notices.php:328
5534
  msgid "Send emails once a day"
5535
  msgstr "Mandar emails una vez al dia"
5536
 
5537
- #: ../addons/email-notices/myCRED-addon-email-notices.php:331
5538
  msgid "Subscriptions"
5539
  msgstr "Suscripciones"
5540
 
5541
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333
5542
  #, php-format
5543
  msgid ""
5544
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
@@ -5547,11 +5569,11 @@ msgstr ""
5547
  "Utilize el %s codigo corto para permitir que los usuarios suscriben o darsen "
5548
  "de baja a informes vía correo electrónico."
5549
 
5550
- #: ../addons/email-notices/myCRED-addon-email-notices.php:338
5551
  msgid "SMTP Override"
5552
  msgstr "Invalidar SMTP"
5553
 
5554
- #: ../addons/email-notices/myCRED-addon-email-notices.php:342
5555
  msgid ""
5556
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
5557
  "use a SMTP plugin for emails."
@@ -5559,7 +5581,7 @@ msgstr ""
5559
  "Depurar SMTP. Habilitar si hay erores con wp_mail() o si utiliza un plugin "
5560
  "SMTP para email."
5561
 
5562
- #: ../addons/email-notices/myCRED-addon-email-notices.php:345
5563
  msgid ""
5564
  "Default email settings. These settings can be individually overridden when "
5565
  "editing emails."
@@ -5567,163 +5589,163 @@ msgstr ""
5567
  "Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
5568
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
5569
 
5570
- #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
5571
- #: notices/myCRED-addon-email-notices.php:900
5572
  msgid "Email Settings"
5573
  msgstr "Configuraciones de Correo Electrónico"
5574
 
5575
- #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
5576
- #: notices/myCRED-addon-email-notices.php:1053
5577
  msgid "Senders Name:"
5578
  msgstr "Nombre del Remitente"
5579
 
5580
- #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
5581
- #: notices/myCRED-addon-email-notices.php:1055
5582
  msgid "Senders Email:"
5583
  msgstr "Correo Electrónico del Remitente:"
5584
 
5585
- #: ../addons/email-notices/myCRED-addon-email-notices.php:357
5586
  msgid "Reply-To:"
5587
  msgstr "Responder-A:"
5588
 
5589
- #: ../addons/email-notices/myCRED-addon-email-notices.php:361
5590
  msgid "Default Email Content"
5591
  msgstr "Contenido de Correo Electrónico Predefinido"
5592
 
5593
- #: ../addons/email-notices/myCRED-addon-email-notices.php:365
5594
  msgid "Default email content."
5595
  msgstr "Contenido de correo electrónico predefinido."
5596
 
5597
- #: ../addons/email-notices/myCRED-addon-email-notices.php:368
5598
  msgid "Default Email Styling"
5599
  msgstr "Estilo de Correo Electrónico Predefinido"
5600
 
5601
- #: ../addons/email-notices/myCRED-addon-email-notices.php:372
5602
  msgid "Ignored if HTML is not allowed in emails."
5603
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
5604
 
5605
- #: ../addons/email-notices/myCRED-addon-email-notices.php:809 ../addons/email-
5606
- #: notices/myCRED-addon-email-notices.php:949
5607
  msgid "Email Subject"
5608
  msgstr "Asunto del Correo Electrónico"
5609
 
5610
- #: ../addons/email-notices/myCRED-addon-email-notices.php:810 ..
5611
- #: addons/badges/myCRED-addon-badges.php:1165
5612
  msgid "Status"
5613
  msgstr "Estatus"
5614
 
5615
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
5616
  msgid "Not Active"
5617
  msgstr "No esta Activo"
5618
 
5619
- #: ../addons/email-notices/myCRED-addon-email-notices.php:838
5620
  #, php-format
5621
  msgid "Scheduled:<br /><strong>%1$s</strong>"
5622
  msgstr "Programada:<br /><strong>%1$s</strong>"
5623
 
5624
- #: ../addons/email-notices/myCRED-addon-email-notices.php:843
5625
  msgid "Active"
5626
  msgstr "Activo"
5627
 
5628
- #: ../addons/email-notices/myCRED-addon-email-notices.php:845
5629
  #, php-format
5630
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
5631
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
5632
 
5633
- #: ../addons/email-notices/myCRED-addon-email-notices.php:855
5634
  msgid "Email is sent when"
5635
  msgstr "el Correo Electrónico se envia cuando"
5636
 
5637
- #: ../addons/email-notices/myCRED-addon-email-notices.php:857
5638
  msgid "Missing instance for this notice!"
5639
  msgstr "¡Falta una instancia para este aviso!"
5640
 
5641
- #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
5642
- #: notices/myCRED-addon-email-notices.php:868 ../addons/email-notices/myCRED-
5643
- #: addon-email-notices.php:870
5644
  msgid "Sent To"
5645
  msgstr "Enviado A:"
5646
 
5647
- #: ../addons/email-notices/myCRED-addon-email-notices.php:868 ../addons/email-
5648
- #: notices/myCRED-addon-email-notices.php:1020
5649
  msgid "Administrator"
5650
  msgstr "Administrador"
5651
 
5652
- #: ../addons/email-notices/myCRED-addon-email-notices.php:870
5653
  msgid "Both Administrator and User"
5654
  msgstr "Tanto Administrador como Usuario"
5655
 
5656
- #: ../addons/email-notices/myCRED-addon-email-notices.php:909
5657
  msgid "Available Template Tags"
5658
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
5659
 
5660
- #: ../addons/email-notices/myCRED-addon-email-notices.php:920
5661
  msgid "Email Header"
5662
  msgstr "Encabezado del Correo Electrónico"
5663
 
5664
- #: ../addons/email-notices/myCRED-addon-email-notices.php:986
5665
  msgid "Send this email notice when..."
5666
  msgstr "Envia este aviso por correo electrónico cuando..."
5667
 
5668
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
5669
  msgid "Recipient:"
5670
  msgstr "Destinatario:"
5671
 
5672
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
5673
  msgid "Both"
5674
  msgstr "Ambos"
5675
 
5676
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
5677
  msgid "Reply-To Email:"
5678
  msgstr "Responder-A Correo Electrónico:"
5679
 
5680
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
5681
  msgid "Save"
5682
  msgstr "Guardar"
5683
 
5684
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
5685
  msgid "CSS Styling"
5686
  msgstr "Estilo CSS"
5687
 
5688
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
5689
  msgid "Site Related"
5690
  msgstr "Relacionado al Sitio"
5691
 
5692
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
5693
  msgid "Your websites title"
5694
  msgstr "Titulo de tu pagina web"
5695
 
5696
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
5697
  msgid "Your websites address"
5698
  msgstr "Dirección de tu pagina web"
5699
 
5700
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
5701
  msgid "Your websites tagline (description)"
5702
  msgstr "La descripción de tu sitio web (lema o eslogan)"
5703
 
5704
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1095
5705
  msgid "Your websites admin email"
5706
  msgstr "El correo electrónico de admin para tu pagina web"
5707
 
5708
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1096
5709
  msgid "Total number of blog members"
5710
  msgstr "Número total de miembros del blog"
5711
 
5712
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
5713
- #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
5714
- #: addon-email-notices.php:1187
5715
  msgid "Email Notice Updated."
5716
  msgstr "Aviso atraves de correo electrónico Actualizado."
5717
 
5718
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1183
5719
  msgid "Email Notice Activated"
5720
  msgstr "Notificación atraves de Correo Electrónico Activado"
5721
 
5722
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1184
5723
  msgid "Email Notice Saved"
5724
  msgstr "Aviso por Correo Electrónico Guardado"
5725
 
5726
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1203
5727
  msgid ""
5728
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
5729
  "are not yet ready to use this email notice!"
@@ -5731,173 +5753,173 @@ msgstr ""
5731
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
5732
  "si aun no estás listo para utilizar este aviso por email!"
5733
 
5734
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1205
5735
  #, php-format
5736
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
5737
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
5738
 
5739
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1207
5740
  msgid "This email notice is active."
5741
  msgstr "Esta notificación de correo electrónico esta activada."
5742
 
5743
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
5744
  msgid "Settings saved."
5745
  msgstr "Configuraciones Guardadas"
5746
 
5747
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
5748
  msgid "Unsubscribe"
5749
  msgstr "Cancelar la Suscripción"
5750
 
5751
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
5752
  msgid "There are no email notifications yet."
5753
  msgstr "Todavía no hay notificaciones de email."
5754
 
5755
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1296 ..
5756
- #: addons/badges/myCRED-addon-badges.php:1182
5757
  msgid "Save Changes"
5758
  msgstr "Guardar Cambios"
5759
 
5760
- #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
5761
- #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
5762
- #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
5763
- #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
5764
- #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
5765
- #: badges.php:395
5766
  msgid "Badges"
5767
  msgstr "Insignias"
5768
 
5769
- #: ../addons/badges/myCRED-addon-badges.php:260
5770
  #, php-format
5771
  msgid "%d Users earned this badge."
5772
  msgstr "%d Usuarios que han ganado esta insignia."
5773
 
5774
- #: ../addons/badges/myCRED-addon-badges.php:264
5775
  msgid "No users has yet earned this badge."
5776
  msgstr "Ningun usuario ha ganado esta insignia."
5777
 
5778
- #: ../addons/badges/myCRED-addon-badges.php:289
5779
  #, php-format
5780
  msgid "%s connections where removed."
5781
  msgstr "%s conexiones han sido quitados."
5782
 
5783
- #: ../addons/badges/myCRED-addon-badges.php:384
5784
  msgid "Badge"
5785
  msgstr "Insignia"
5786
 
5787
- #: ../addons/badges/myCRED-addon-badges.php:386
5788
  msgid "Add New Badge"
5789
  msgstr "Añadir Nueva Insignia"
5790
 
5791
- #: ../addons/badges/myCRED-addon-badges.php:387
5792
  msgid "Edit Badge"
5793
  msgstr "Editar Insignia"
5794
 
5795
- #: ../addons/badges/myCRED-addon-badges.php:388
5796
  msgid "New Badge"
5797
  msgstr "Nueva Insignia"
5798
 
5799
- #: ../addons/badges/myCRED-addon-badges.php:390
5800
  msgid "View Badge"
5801
  msgstr "Ver Insignia"
5802
 
5803
- #: ../addons/badges/myCRED-addon-badges.php:391
5804
  msgid "Search Badge"
5805
  msgstr "Buscar Insignia"
5806
 
5807
- #: ../addons/badges/myCRED-addon-badges.php:392
5808
  msgid "No badges found"
5809
  msgstr "Ninguna Insignia Encontrada"
5810
 
5811
- #: ../addons/badges/myCRED-addon-badges.php:393
5812
  msgid "No badges found in Trash"
5813
  msgstr "Ninguna Insignia Encontrada en la Papelera"
5814
 
5815
- #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
5816
- #: badges.php:541
5817
  msgid "Badge Name"
5818
  msgstr "Nombre de Insignia"
5819
 
5820
- #: ../addons/badges/myCRED-addon-badges.php:440
5821
  msgid "Badge Images"
5822
  msgstr "Imagen de la Insignia"
5823
 
5824
- #: ../addons/badges/myCRED-addon-badges.php:441
5825
  msgid "Requirements"
5826
  msgstr "Requisitos"
5827
 
5828
- #: ../addons/badges/myCRED-addon-badges.php:481
5829
  msgid "A user must have gained or lost:"
5830
  msgstr "Un usuario deberia ganado o perdido:"
5831
 
5832
- #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
5833
- #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
5834
- #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
5835
- #: badges.php:526
5836
  msgid "Badge Updated."
5837
  msgstr "Insignia Actualizada"
5838
 
5839
- #: ../addons/badges/myCRED-addon-badges.php:522
5840
  msgid "Badge Enabled"
5841
  msgstr "Insignia Habilitado"
5842
 
5843
- #: ../addons/badges/myCRED-addon-badges.php:523
5844
  msgid "Badge Saved"
5845
  msgstr "Insignia Guardada"
5846
 
5847
- #: ../addons/badges/myCRED-addon-badges.php:582
5848
  msgid "Assign Badge"
5849
  msgstr "Asignar Insignia"
5850
 
5851
- #: ../addons/badges/myCRED-addon-badges.php:583
5852
  msgid "Remove Connections"
5853
  msgstr "Quitar Conexiones"
5854
 
5855
- #: ../addons/badges/myCRED-addon-badges.php:638
5856
  msgid "Time(s)"
5857
  msgstr "Tiempo(s)"
5858
 
5859
- #: ../addons/badges/myCRED-addon-badges.php:639
5860
  msgid "In total"
5861
  msgstr "En Total"
5862
 
5863
- #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
5864
- #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
5865
- #: addons/badges/myCRED-addon-badges.php:846
5866
  msgid "Badge Image"
5867
  msgstr "Imagen de la Insignia"
5868
 
5869
- #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
5870
- #: badges.php:672
5871
  msgid "Set badge image"
5872
  msgstr "Configurar la imagen para la insignia"
5873
 
5874
- #: ../addons/badges/myCRED-addon-badges.php:682
5875
  msgid "Default Image"
5876
  msgstr "Imagen Predefinida"
5877
 
5878
- #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
5879
- #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
5880
- #: addons/badges/myCRED-addon-badges.php:831
5881
  msgid "image url"
5882
  msgstr "enlace de la imagen"
5883
 
5884
- #: ../addons/badges/myCRED-addon-badges.php:740
5885
  msgid "Main Image"
5886
  msgstr "Imagen Principal"
5887
 
5888
- #: ../addons/badges/myCRED-addon-badges.php:848
5889
  msgid "Use as Badge"
5890
  msgstr "Utiliza como Insignia"
5891
 
5892
- #: ../addons/badges/myCRED-addon-badges.php:1003
5893
  msgid "Include in Forum Replies"
5894
  msgstr "Incluir en Respuesta de Fórum"
5895
 
5896
- #: ../addons/badges/myCRED-addon-badges.php:1004
5897
  msgid "Include in Profile and Forum Replies"
5898
  msgstr "Incluir en Perfil y Respuestas de Fórum"
5899
 
5900
- #: ../addons/badges/includes/mycred-badge-functions.php:73
5901
  #, php-format
5902
  msgctxt "\"x points\" for \"reference\" in total"
5903
  msgid "%s for %s in total"
@@ -6140,55 +6162,55 @@ msgid "Apply Coupon"
6140
  msgstr "Aplica el Cupón"
6141
 
6142
  #: ../addons/sell-content/myCRED-addon-sell-content.php:44 ../addons/buy-
6143
- #: creds/myCRED-addon-buy-creds.php:1539
6144
  msgid "Buy Now"
6145
  msgstr "Compra Ahora"
6146
 
6147
- #: ../addons/sell-content/myCRED-addon-sell-content.php:74
6148
  msgid "Hours"
6149
  msgstr "Horas"
6150
 
6151
- #: ../addons/sell-content/myCRED-addon-sell-content.php:111
6152
  msgid "Profit Share"
6153
  msgstr "Reparto de Utilidades"
6154
 
6155
- #: ../addons/sell-content/myCRED-addon-sell-content.php:119
6156
  msgid "Save Profit Share"
6157
  msgstr "Guardar Reparto de Utilidades"
6158
 
6159
- #: ../addons/sell-content/myCRED-addon-sell-content.php:165
6160
  msgid "Profit Share override saved"
6161
  msgstr "Anulación de reparto de utilidades guardado"
6162
 
6163
- #: ../addons/sell-content/myCRED-addon-sell-content.php:327
6164
  msgid "You can not buy this content."
6165
  msgstr "No puedes comprar este contenido."
6166
 
6167
- #: ../addons/sell-content/myCRED-addon-sell-content.php:372
6168
  msgid "Error. Try Again"
6169
  msgstr "Error. Inténtelo de nuevo"
6170
 
6171
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394
6172
  msgid "No Payout. Just charge."
6173
  msgstr "No Desembolsar. Solo cobrar."
6174
 
6175
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
6176
  msgid "Pay Content Author."
6177
  msgstr "Pagar al Autor del Contenido"
6178
 
6179
- #: ../addons/sell-content/myCRED-addon-sell-content.php:403
6180
  msgid "Post Types"
6181
  msgstr "Post Types"
6182
 
6183
- #: ../addons/sell-content/myCRED-addon-sell-content.php:407
6184
  msgid "Comma separated list of post types that can be sold."
6185
  msgstr "Lista separada por comas de post types que se puede vender."
6186
 
6187
- #: ../addons/sell-content/myCRED-addon-sell-content.php:437
6188
  msgid "Percentage to pay Author"
6189
  msgstr "Porcentaje que pagar al Autor"
6190
 
6191
- #: ../addons/sell-content/myCRED-addon-sell-content.php:439
6192
  msgid ""
6193
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
6194
  "authors are not paid."
@@ -6197,31 +6219,31 @@ msgstr ""
6197
  "si no se les paga a los autores."
6198
 
6199
  #. also, "por defecto" and "predeterminados"
6200
- #: ../addons/sell-content/myCRED-addon-sell-content.php:447
6201
  msgid "Defaults"
6202
  msgstr "Predefinidos"
6203
 
6204
- #: ../addons/sell-content/myCRED-addon-sell-content.php:455
6205
  msgid "Allow authors to change price."
6206
  msgstr "Permitir que los Autores cambien el precio."
6207
 
6208
- #: ../addons/sell-content/myCRED-addon-sell-content.php:464
6209
  msgid "Allow authors to change button label."
6210
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
6211
 
6212
- #: ../addons/sell-content/myCRED-addon-sell-content.php:468
6213
  msgid "Purchases expire after"
6214
  msgstr "Compras caducan despues de"
6215
 
6216
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
6217
  msgid "Use zero for permanent sales."
6218
  msgstr "Usa cero para ventas permanentes."
6219
 
6220
- #: ../addons/sell-content/myCRED-addon-sell-content.php:476
6221
  msgid "For Visitors"
6222
  msgstr "Para Visitantes"
6223
 
6224
- #: ../addons/sell-content/myCRED-addon-sell-content.php:486
6225
  #, php-format
6226
  msgid ""
6227
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -6230,74 +6252,74 @@ msgstr ""
6230
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
6231
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
6232
 
6233
- #: ../addons/sell-content/myCRED-addon-sell-content.php:491
6234
  msgid "For Members"
6235
  msgstr "Para Miembros"
6236
 
6237
- #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
6238
- #: content/myCRED-addon-sell-content.php:516
6239
  #, php-format
6240
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
6241
  msgstr ""
6242
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
6243
  "realizar compras!"
6244
 
6245
- #: ../addons/sell-content/myCRED-addon-sell-content.php:506
6246
  msgid "For members that can not afford to buy"
6247
  msgstr "Para los miembros que no tienen al alcance comprar"
6248
 
6249
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
6250
  msgid "Log template for Purchases"
6251
  msgstr "Plantilla de registros para Compras"
6252
 
6253
- #: ../addons/sell-content/myCRED-addon-sell-content.php:527
6254
  msgid "Log template for Sales"
6255
  msgstr "Plantilla de registros para Ventas"
6256
 
6257
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
6258
  #, php-format
6259
  msgid "%s Sell This"
6260
  msgstr "%s Vende Esto"
6261
 
6262
- #: ../addons/sell-content/myCRED-addon-sell-content.php:635
6263
  #, php-format
6264
  msgid "%s Sell Content needs to be setup before you can use this feature."
6265
  msgstr ""
6266
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
6267
  "esta característica técnica."
6268
 
6269
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
6270
  msgid "Setup add-on"
6271
  msgstr "Configurar Extensión"
6272
 
6273
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
6274
  msgid "Lets do it"
6275
  msgstr "Vamos a hacerlo."
6276
 
6277
- #: ../addons/sell-content/myCRED-addon-sell-content.php:676
6278
  #, php-format
6279
  msgid "Enable sale of this %s"
6280
  msgstr "Habilitar la venta de esto %s"
6281
 
6282
- #: ../addons/sell-content/myCRED-addon-sell-content.php:690
6283
  msgid "Purchase expires after"
6284
  msgstr "Compra caduca despues de"
6285
 
6286
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
6287
  msgid "Thank you for your purchase!"
6288
  msgstr "¡Gracias por su compra!"
6289
 
6290
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
6291
- #: content/myCRED-addon-sell-content.php:1190
6292
  msgid "The following content is set for sale:"
6293
  msgstr "El siguiente contenido esta listo para la venta:"
6294
 
6295
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1209 ../addons/buy-
6296
- #: creds/myCRED-addon-buy-creds.php:1270
6297
  msgid "No purchases found"
6298
  msgstr "No se encontro ninguna compra"
6299
 
6300
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
6301
  msgid "Purchased"
6302
  msgstr "Comprado"
6303
 
@@ -6326,7 +6348,7 @@ msgid "Edit Pending Payment"
6326
  msgstr "Editar Pago Pendiente"
6327
 
6328
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:284 ../addons/buy-creds/myCRED-
6329
- #: addon-buy-creds.php:1752
6330
  msgid "No pending payments found"
6331
  msgstr "Ningun pago pendiente encontrado"
6332
 
@@ -6334,217 +6356,217 @@ msgstr "Ningun pago pendiente encontrado"
6334
  msgid "Not found in Trash"
6335
  msgstr "No ha sido encontrado en la Papelera"
6336
 
6337
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:341 ../addons/buy-creds/myCRED-
6338
- #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
6339
  msgid "Transaction ID"
6340
  msgstr "Identificación de la Transacción"
6341
 
6342
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-
6343
- #: addon-buy-creds.php:1074
6344
  msgid "Buyer"
6345
  msgstr "Comprador"
6346
 
6347
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
6348
- #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
6349
  #: gateway.php:594
6350
  msgid "Cost"
6351
  msgstr "Coste"
6352
 
6353
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:347
6354
  msgid "Type"
6355
  msgstr "Clase"
6356
 
6357
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:440
6358
  msgid "Pay Out"
6359
  msgstr "Desembolso"
6360
 
6361
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474
6362
  msgid "buyCRED Purchase Log"
6363
  msgstr "compraCRED Registro de Compras"
6364
 
6365
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:475 ../addons/buy-creds/myCRED-
6366
- #: addon-buy-creds.php:726 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
6367
  msgid "Purchase Log"
6368
  msgstr "Registro de Compras"
6369
 
6370
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:613
6371
  msgid "Please login to purchase %_plural%"
6372
  msgstr "Identifícate antes de comprar %_plural%"
6373
 
6374
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:628
6375
  #, php-format
6376
  msgid "Gift purchase from %display_name%."
6377
  msgstr "Regalo comprado de parte de %display_name%."
6378
 
6379
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:647
6380
  #, php-format
6381
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
6382
  msgstr ""
6383
  "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
6384
  "a 1."
6385
 
6386
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655
6387
  msgid "Select the point types that users can buy. You must select at least one!"
6388
  msgstr ""
6389
  "Elige el clase de punto que el usuario puede comprar. Debes eligir al menos "
6390
  "uno!"
6391
 
6392
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:666
6393
  msgid "Login Template"
6394
  msgstr "Plantilla de Ingreso"
6395
 
6396
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:670
6397
  msgid "Content to show when a user is not logged in."
6398
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
6399
 
6400
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:680
6401
  msgid "Thank You Page"
6402
  msgstr "Página de Agradecimiento"
6403
 
6404
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:683 ../addons/buy-creds/myCRED-
6405
- #: addon-buy-creds.php:706
6406
  msgid "Custom URL"
6407
  msgstr "URL Personalizada"
6408
 
6409
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:688 ../addons/buy-creds/myCRED-
6410
- #: addon-buy-creds.php:711
6411
  msgid "Page"
6412
  msgstr "Página"
6413
 
6414
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703
6415
  msgid "Cancellation Page"
6416
  msgstr "Página de Cancelación"
6417
 
6418
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:728
6419
  #, php-format
6420
  msgid "Show seperate log for %_plural% purchases."
6421
  msgstr "Mostrar registro distinto para compras de %_plural%."
6422
 
6423
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:730
6424
  msgid "Gifting"
6425
  msgstr "Regalar"
6426
 
6427
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
6428
  #, php-format
6429
  msgid "Allow users to buy %_plural% for other users."
6430
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
6431
 
6432
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:733
6433
  #, php-format
6434
  msgid "Allow users to buy %_plural% for content authors."
6435
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
6436
 
6437
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:831
6438
  #, php-format
6439
  msgid "%s Exchange Rate"
6440
  msgstr "Tipo de Cambio %s"
6441
 
6442
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
6443
  msgid "Save Exchange Rates"
6444
  msgstr "Guardar Tipo de Cambio"
6445
 
6446
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
6447
  msgid "Exchange rate override saved"
6448
  msgstr "Anulación de de tipo de cambio guardado"
6449
 
6450
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
6451
  msgid "Payment completed"
6452
  msgstr "Pago finalizado"
6453
 
6454
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
6455
  #, php-format
6456
  msgid "%s Payment Gateways"
6457
  msgstr "%s Pasarelas de Pago"
6458
 
6459
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
6460
- #: addon-buy-creds.php:1085
6461
  msgid "buyCRED Settings"
6462
  msgstr "Configuraciones de compraCRED"
6463
 
6464
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
6465
  msgid "Test Mode"
6466
  msgstr "Modo de Prueba"
6467
 
6468
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
6469
  msgid "Enabled"
6470
  msgstr "Habilitado"
6471
 
6472
  #. also, "Inhabilitar"
6473
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
6474
  msgid "Disabled"
6475
  msgstr "Desactivado"
6476
 
6477
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
6478
  msgid "Sandbox Mode"
6479
  msgstr "Modo Entorno Aislado"
6480
 
6481
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
6482
  msgid "Enable for test purchases."
6483
  msgstr "Habilitar para compras de prueba."
6484
 
6485
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
6486
  msgid "More Gateways"
6487
  msgstr "Mas Pasarelas"
6488
 
6489
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
6490
  msgid "Payed"
6491
  msgstr "Pagado"
6492
 
6493
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
6494
  msgid "<strong>buy</strong>CRED Purchase Log"
6495
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
6496
 
6497
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
6498
- #: addon-buy-creds.php:1464
6499
  msgid "This Add-on needs to setup before you can use this shortcode."
6500
  msgstr ""
6501
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
6502
  "corto (shortcode)."
6503
 
6504
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
6505
- #: addon-buy-creds.php:1483
6506
  msgid "No gateways installed."
6507
  msgstr "Ningun pasarela de pago instalado."
6508
 
6509
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
6510
- #: addon-buy-creds.php:1484
6511
  msgid "Gateway does not exist."
6512
  msgstr "Puerta de enlace no existe."
6513
 
6514
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
6515
  msgid "Yourself"
6516
  msgstr "Tu mismo"
6517
 
6518
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
6519
  msgid "No active gateways found."
6520
  msgstr "No se encuentra ningun puerta de enlace activo."
6521
 
6522
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
6523
  msgid "The selected gateway is not active."
6524
  msgstr "La puerta de enlace seleccionada no esta activo."
6525
 
6526
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
6527
  #, php-format
6528
  msgid "Buy with %gateway%"
6529
  msgstr "Compra con %gateway%"
6530
 
6531
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
6532
  msgid "No users found"
6533
  msgstr "Ningun Usuario Encontrado"
6534
 
6535
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
6536
  msgid "To"
6537
  msgstr "A"
6538
 
6539
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
6540
  msgid "Select Amount"
6541
  msgstr "Selecciona la Cantidad"
6542
 
6543
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
6544
  msgid "min."
6545
  msgstr "min."
6546
 
6547
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
6548
  msgid "Select Gateway"
6549
  msgstr "Selecciona la Pasarela de Pago"
6550
 
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Mon Jan 11 2016 22:11:54 GMT+0100 (CET)\n"
7
  "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
30
  msgstr ""
31
 
32
  #. Description of the plugin
33
+ msgid "An adaptive points management system for WordPress powered websites."
 
 
 
34
  msgstr ""
35
 
36
  #. Author of the plugin
41
  msgid "http://www.merovingi.com"
42
  msgstr ""
43
 
44
+ #: ../mycred.php:666
45
  msgid ""
46
  "In order to adjust the number of decimal places you want to use we must "
47
  "update your log. It is highly recommended that you backup your current log "
102
  "other characters will be deleted!"
103
  msgstr ""
104
 
105
+ #: ../modules/mycred-module-addons.php:267
106
  msgid ""
107
  "Gives you access to your myCRED Staticstics based on your users gains and "
108
  "loses."
109
  msgstr ""
110
 
111
+ #: ../modules/mycred-module-addons.php:336
112
  msgid "Add-ons Reloaded"
113
  msgstr ""
114
 
115
+ #: ../modules/mycred-module-addons.php:366
116
  msgid "Reload Add-ons"
117
  msgstr ""
118
 
122
  "Certain hooks and shortcodes will not work correctly!"
123
  msgstr ""
124
 
125
+ #: ../plugins/mycred-hook-wp-postratings.php:15
126
  msgid "Post Ratings"
127
  msgstr ""
128
 
129
+ #: ../plugins/mycred-hook-wp-postratings.php:16
130
  #, php-format
131
  msgid ""
132
  "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
133
  "author and the user rating."
134
  msgstr ""
135
 
136
+ #: ../plugins/mycred-hook-wp-postratings.php:84
137
  msgid "Based on rating"
138
  msgstr ""
139
 
140
+ #: ../plugins/mycred-hook-wp-postratings.php:159 ../includes/mycred-functions.php:
141
+ #: 2675
142
  msgid "Adding a Rating"
143
  msgstr ""
144
 
145
+ #: ../plugins/mycred-hook-wp-postratings.php:169 ../plugins/mycred-hook-wp-
146
+ #: postratings.php:188
147
  msgid "Use the Rating Value instead of the amount set here."
148
  msgstr ""
149
 
150
+ #: ../plugins/mycred-hook-wp-postratings.php:178 ../includes/mycred-functions.php:
151
+ #: 2676
152
  msgid "Receiving a Rating"
153
  msgstr ""
154
 
155
+ #: ../plugins/mycred-hook-buddypress.php:526
156
  #, php-format
157
  msgid "%plural% for Removing Profile Update"
158
  msgstr ""
159
 
160
+ #: ../plugins/mycred-hook-buddypress.php:570
161
  #, php-format
162
  msgid ""
163
  "Users with zero balance can not add friends. Requires that you deduct "
164
  "%_plural% for adding a new friend."
165
  msgstr ""
166
 
167
+ #: ../plugins/mycred-hook-affiliatewp.php:15
168
  msgid "AffiliateWP"
169
  msgstr ""
170
 
171
+ #: ../plugins/mycred-hook-affiliatewp.php:16
172
  #, php-format
173
  msgid ""
174
  "Awards %_plural% for affiliate signups, referring visitors and store sale "
175
  "referrals."
176
  msgstr ""
177
 
178
+ #: ../plugins/mycred-hook-affiliatewp.php:222
179
  msgid "Affiliate Signup"
180
  msgstr ""
181
 
182
+ #: ../plugins/mycred-hook-affiliatewp.php:252
183
  msgid "Referring Sales"
184
  msgstr ""
185
 
186
+ #: ../plugins/mycred-hook-affiliatewp.php:255
187
  msgid "Pay a set amount for all referrals."
188
  msgstr ""
189
 
190
+ #: ../plugins/mycred-hook-affiliatewp.php:256
191
  #, php-format
192
  msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
193
  msgstr ""
194
 
195
+ #: ../plugins/mycred-hook-affiliatewp.php:257
196
  msgid "Apply an exchange rate against the referral amount."
197
  msgstr ""
198
 
199
+ #: ../plugins/mycred-hook-affiliatewp.php:265
200
  msgid "Log template - Payout"
201
  msgstr ""
202
 
203
+ #: ../plugins/mycred-hook-affiliatewp.php:270
204
  msgid "Log template - Refund"
205
  msgstr ""
206
 
207
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:234
208
  msgid "Authors Content added to favorites"
209
  msgstr ""
210
 
211
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:265
212
  msgid "Removing Content from Favorites (Author)"
213
  msgstr ""
214
 
215
+ #: ../plugins/mycred-hook-bbPress.php:540
216
+ #, php-format
217
+ msgid "Show users %_plural% balance in their bbPress profiles."
218
+ msgstr ""
219
+
220
  #: ../includes/mycred-log.php:628
221
  msgid "User ID, Username, Email or Nicename"
222
  msgstr ""
225
  msgid "16, 24 or 32 characters"
226
  msgstr ""
227
 
228
+ #: ../includes/mycred-shortcodes.php:468 ../includes/mycred-shortcodes.php:532 ..
229
+ #: includes/mycred-shortcodes.php:594 ../includes/mycred-shortcodes.php:953 ..
230
+ #: includes/mycred-shortcodes.php:1080
231
+ msgid "Point type not found."
232
  msgstr ""
233
 
234
+ #: ../includes/mycred-shortcodes.php:1077
235
+ msgid "No instances found for this point type"
236
  msgstr ""
237
 
238
+ #: ../includes/mycred-shortcodes.php:1141
239
  msgid "Instance"
240
  msgstr ""
241
 
243
  msgid "Use zero for no decimals or maximum 20."
244
  msgstr ""
245
 
246
+ #: ../includes/mycred-functions.php:2612
247
  msgid "Profile Update Removal"
248
  msgstr ""
249
 
250
+ #: ../includes/mycred-functions.php:2668
251
  msgid "Affiliate Signup (AffiliateWP)"
252
  msgstr ""
253
 
254
+ #: ../includes/mycred-functions.php:2669
255
  msgid "Referred Visit (AffiliateWP)"
256
  msgstr ""
257
 
258
+ #: ../includes/mycred-functions.php:2670
259
  msgid "Affiliate Referral (AffiliateWP)"
260
  msgstr ""
261
 
262
+ #: ../includes/mycred-functions.php:2671
263
  msgid "Referral Refund (AffiliateWP)"
264
  msgstr ""
265
 
266
+ #: ../includes/mycred-functions.php:2707
267
  msgid "Store Reward (WooCommerce)"
268
  msgstr ""
269
 
270
+ #: ../includes/mycred-functions.php:2708
271
  msgid "Product Review (WooCommerce)"
272
  msgstr ""
273
 
274
+ #: ../includes/mycred-functions.php:2712
275
  msgid "Store Reward (MarketPress)"
276
  msgstr ""
277
 
278
+ #: ../includes/mycred-functions.php:2731
279
+ msgid "Content Purchase"
280
+ msgstr ""
281
+
282
+ #: ../includes/mycred-functions.php:2732
283
+ msgid "Content Sale"
284
+ msgstr ""
285
+
286
+ #: ../includes/mycred-functions.php:2934
287
  msgid "per day"
288
  msgstr ""
289
 
290
+ #: ../includes/mycred-functions.php:2936
291
  msgid "per week"
292
  msgstr ""
293
 
294
+ #: ../includes/mycred-functions.php:2938
295
  msgid "per month"
296
  msgstr ""
297
 
298
+ #: ../includes/mycred-functions.php:2940
299
  msgid "in total"
300
  msgstr ""
301
 
302
+ #: ../includes/mycred-functions.php:2942 ../includes/mycred-functions.php:2946
303
  #, php-format
304
  msgid "Maximum once"
305
  msgid_plural "Maximum %d times"
325
  "multiple point types."
326
  msgstr ""
327
 
328
+ #: ../addons/ranks/myCRED-addon-ranks.php:444
329
  #, php-format
330
  msgid "Ranks for %s"
331
  msgstr ""
332
 
333
+ #: ../addons/ranks/myCRED-addon-ranks.php:1030
334
  #, php-format
335
  msgid "<strong>Rank:</strong> %s"
336
  msgstr ""
337
 
338
+ #: ../addons/ranks/myCRED-addon-ranks.php:1399
339
  msgid ""
340
  "Use this button to calculate or recalculate your users totals. If not used, "
341
  "the users current balance will be used as a starting point."
342
  msgstr ""
343
 
344
+ #: ../addons/ranks/myCRED-addon-ranks.php:1441 ../addons/ranks/myCRED-addon-ranks.
345
+ #: php:1486
346
  #, php-format
347
  msgid ""
348
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
349
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
350
  msgstr ""
351
 
352
+ #: ../addons/ranks/myCRED-addon-ranks.php:1463
353
  msgid "Include in Topic Replies"
354
  msgstr ""
355
 
356
+ #: ../addons/ranks/myCRED-addon-ranks.php:1465
357
  msgid "Include in Topic Replies and Profile"
358
  msgstr ""
359
 
360
+ #: ../addons/ranks/myCRED-addon-ranks.php:1469
361
  msgid "Rank in bbPress"
362
  msgstr ""
363
 
364
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:148
365
  msgid "Rank not found. Please check the id and try again."
366
  msgstr ""
367
 
369
  msgid "Notify your users when their balances changes."
370
  msgstr ""
371
 
372
+ #: ../addons/notifications/myCRED-addon-notifications.php:206
373
  msgid "Restore to default"
374
  msgstr ""
375
 
376
+ #: ../addons/notifications/myCRED-addon-notifications.php:220
377
  msgid ""
378
  "Number of seconds before a notice is automatically removed after being shown "
379
  "to user. Use zero to disable."
380
  msgstr ""
381
 
382
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:221
383
  msgid "Badge Add-on"
384
  msgstr ""
385
 
386
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:222
387
  msgid "user gains a badge"
388
  msgstr ""
389
 
390
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:741
391
  #, php-format
392
  msgctxt "Badge Title - Level 1,2,3.."
393
  msgid "%s - Level %d"
394
  msgstr ""
395
 
396
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:915 ../addons/email-
397
+ #: notices/myCRED-addon-email-notices.php:1095
398
  msgid "All types"
399
  msgstr ""
400
 
401
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1166
402
  msgid "The users new balance"
403
  msgstr ""
404
 
405
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1167
406
  msgid "The users old balance"
407
  msgstr ""
408
 
409
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1168
410
  msgid "The amount of points gained or lost in this instance"
411
  msgstr ""
412
 
413
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1169
414
  msgid "The log entry"
415
  msgstr ""
416
 
417
+ #: ../addons/stats/myCRED-addon-stats.php:56
418
  msgid "Statistics"
419
  msgstr ""
420
 
421
+ #: ../addons/stats/myCRED-addon-stats.php:174
422
  msgid "Overview"
423
  msgstr ""
424
 
425
+ #: ../addons/stats/myCRED-addon-stats.php:240
426
  msgid "Refresh"
427
  msgstr ""
428
 
429
+ #: ../addons/stats/myCRED-addon-stats.php:296
430
  msgid "Your log is empty. No statistics can be shown."
431
  msgstr ""
432
 
435
  msgid "Total %s:"
436
  msgstr ""
437
 
438
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138 ..
439
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:267
440
  #, php-format
441
  msgid "Total amount of %s in circulation"
442
  msgstr ""
443
 
444
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:171 ..
445
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:299
446
  msgid "Total gains (%)"
447
  msgstr ""
448
 
449
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:175 ..
450
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:303
451
  msgid "Total loses (%)"
452
  msgstr ""
453
 
454
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
455
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:307
456
  #, php-format
457
  msgid "Total Gained: %s"
458
  msgstr ""
459
 
460
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
461
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:307
462
  #, php-format
463
  msgid "Total Spent: %s"
464
  msgstr ""
465
 
466
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:193 ..
467
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:321
468
  msgid "This Year"
469
  msgstr ""
470
 
 
 
 
 
 
 
 
471
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
472
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
473
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
474
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:203 ..
475
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:325 ..
476
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:327 ..
477
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:329 ..
478
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:331
479
+ msgid "Gained"
480
+ msgstr ""
481
+
482
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
483
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
484
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:202 ..
485
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:204 ..
486
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:326 ..
487
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:328 ..
488
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:330 ..
489
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:332
490
  msgid "Lost"
491
  msgstr ""
492
 
526
  msgid "Gains in the last 10 days"
527
  msgstr ""
528
 
529
+ #: ../addons/badges/myCRED-addon-badges.php:183
530
  #, php-format
531
  msgid "Badges (%d)"
532
  msgstr ""
533
 
534
+ #: ../addons/badges/myCRED-addon-badges.php:305
535
  msgid "No connections where removed."
536
  msgstr ""
537
 
538
+ #: ../addons/badges/myCRED-addon-badges.php:582
539
  msgid "Badge Setup"
540
  msgstr ""
541
 
542
+ #: ../addons/badges/myCRED-addon-badges.php:720 ../addons/badges/myCRED-addon-
543
+ #: badges.php:780 ../addons/badges/myCRED-addon-badges.php:811 ..
544
+ #: addons/badges/myCRED-addon-badges.php:869
545
  msgid "Add Image"
546
  msgstr ""
547
 
548
+ #: ../addons/badges/myCRED-addon-badges.php:721
549
  msgid "Optional image to show when a user has not yet earned this badge."
550
  msgstr ""
551
 
552
+ #: ../addons/badges/myCRED-addon-badges.php:741 ../addons/badges/myCRED-addon-
553
+ #: badges.php:794
554
  #, php-format
555
  msgid "Level %d"
556
  msgstr ""
557
 
558
+ #: ../addons/badges/myCRED-addon-badges.php:746 ../addons/badges/myCRED-addon-
559
+ #: badges.php:799 ../addons/badges/myCRED-addon-badges.php:869
560
  msgid "for"
561
  msgstr ""
562
 
563
+ #: ../addons/badges/myCRED-addon-badges.php:812 ../addons/badges/myCRED-addon-
564
+ #: badges.php:869
565
  msgid "Leave empty if you do not want to assign a custom image for this level."
566
  msgstr ""
567
 
568
+ #: ../addons/badges/myCRED-addon-badges.php:812 ../addons/badges/myCRED-addon-
569
+ #: badges.php:869
570
  msgid "Remove this level"
571
  msgstr ""
572
 
573
+ #: ../addons/badges/myCRED-addon-badges.php:826
574
  msgid "Add Level"
575
  msgstr ""
576
 
577
+ #: ../addons/badges/myCRED-addon-badges.php:869 ../addons/badges/myCRED-addon-
578
+ #: badges.php:1214
579
  msgid "Level"
580
  msgstr ""
581
 
582
+ #: ../addons/badges/myCRED-addon-badges.php:1027 ../addons/badges/myCRED-addon-
583
+ #: badges.php:1063
584
  msgid "Show all badges, including badges users have not yet earned."
585
  msgstr ""
586
 
587
+ #: ../addons/badges/myCRED-addon-badges.php:1164
588
  msgid "User Badges"
589
  msgstr ""
590
 
591
+ #: ../addons/badges/myCRED-addon-badges.php:1173
592
  msgid ""
593
  "Here you can view the badges this user has earned and if needed, manually "
594
  "give or take away a badge from a user."
595
  msgstr ""
596
 
597
+ #: ../addons/badges/myCRED-addon-badges.php:1182
598
  msgid "Not earned"
599
  msgstr ""
600
 
601
+ #: ../addons/badges/myCRED-addon-badges.php:1189 ../addons/badges/myCRED-addon-
602
+ #: badges.php:1232
603
  msgid "Earned"
604
  msgstr ""
605
 
606
+ #: ../addons/badges/myCRED-addon-badges.php:1201
607
  msgid "No image"
608
  msgstr ""
609
 
610
+ #: ../addons/badges/myCRED-addon-badges.php:1209
611
  msgid "Select a level"
612
  msgstr ""
613
 
614
+ #: ../addons/badges/includes/mycred-badge-functions.php:69
615
  #, php-format
616
  msgid "Level %s"
617
  msgstr ""
618
 
619
+ #: ../addons/badges/includes/mycred-badge-functions.php:72
620
  #, php-format
621
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
622
  msgid "%s for %s %s - %s"
623
  msgstr ""
624
 
625
+ #: ../addons/badges/includes/mycred-badge-functions.php:72 ..
626
  #: addons/coupons/myCRED-addon-coupons.php:221 ../addons/coupons/myCRED-addon-
627
  #: coupons.php:516
628
  #, php-format
656
  msgid "myCRED"
657
  msgstr "myCRED"
658
 
659
+ #: ../mycred.php:443
660
  msgid "Balance"
661
  msgstr "Saldo"
662
 
663
+ #: ../mycred.php:468
664
  msgid "%label% History"
665
  msgstr "%label% Historial"
666
 
667
+ #: ../mycred.php:562
668
  #, php-format
669
  msgid "About %s"
670
  msgstr "Sobre"
671
 
672
+ #: ../mycred.php:571
673
  msgid "Awesome People"
674
  msgstr "Gente genial"
675
 
676
+ #: ../mycred.php:659 ../mycred.php:684 ../mycred.php:702 ../includes/mycred-
677
+ #: shortcodes.php:653 ../addons/gateway/event-booking/mycred-eventsmanager.php:
678
  #: 478 ../addons/transfer/myCRED-addon-transfer.php:146 ../addons/ranks/myCRED-
679
+ #: addon-ranks.php:426 ../addons/ranks/myCRED-addon-ranks.php:1534 ..
680
+ #: addons/badges/myCRED-addon-badges.php:635 ../addons/sell-content/myCRED-addon-
681
+ #: sell-content.php:397
682
  msgid "Processing..."
683
  msgstr "Procesando..."
684
 
685
+ #: ../mycred.php:660
686
  msgid ""
687
  "Warning! All entries in your log will be permanently removed! This can not "
688
  "be undone!"
690
  "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
691
  "¡Esto no se puede deshacer!"
692
 
693
+ #: ../mycred.php:661
694
  msgid ""
695
  "All log entries belonging to deleted users will be permanently deleted! This "
696
  "can not be undone!"
698
  "¡Todas las entradas de registro perteneciendo al usuario seran "
699
  "permanentemente borradas! ¡Esto no se puede deshacer!"
700
 
701
+ #: ../mycred.php:662
702
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
703
  msgstr ""
704
  "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
705
  "deshacer!"
706
 
707
+ #: ../mycred.php:663
708
  msgid "Done!"
709
  msgstr "¡Realizado!"
710
 
711
+ #: ../mycred.php:664 ../mycred.php:683 ../mycred.php:701
712
  msgid "Close"
713
  msgstr "Cerrar"
714
 
715
+ #: ../mycred.php:665
716
  #, php-format
717
  msgid "Export users %plural%"
718
  msgstr "Exportar usuarios %plural%"
719
 
720
+ #: ../mycred.php:682
721
  msgid "Edit Users Balance"
722
  msgstr "Editar saldo del usuario"
723
 
724
+ #: ../mycred.php:700
725
  msgid "Edit Log Entry"
726
  msgstr "Edidar entrada de registro"
727
 
728
+ #: ../mycred.php:704
729
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
730
  msgstr ""
731
  "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
732
  "deshacer!"
733
 
734
+ #: ../mycred.php:705
735
  msgid "Log entry updated"
736
  msgstr "Entrada de registro actualizado"
737
 
738
+ #: ../mycred.php:762 ../mycred.php:784 ../addons/gateway/event-booking/mycred-
739
  #: eventsmanager.php:537 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
740
+ #: php:499 ../addons/email-notices/myCRED-addon-email-notices.php:841
741
  msgid "Setup"
742
  msgstr "Configurar"
743
 
744
+ #: ../mycred.php:764 ../modules/mycred-module-settings.php:21 ../modules/mycred-
745
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23 ..
746
  #: includes/mycred-network.php:170 ../addons/gateway/carts/mycred-marketpress.
747
  #: php:371 ../addons/stats/abstracts/mycred-abstract-stat-widget.php:108
748
  msgid "Settings"
749
  msgstr "Configuraciones"
750
 
751
+ #: ../mycred.php:807
752
  msgid ""
753
  "Make sure to backup your database and files before updating, in case "
754
  "anything goes wrong!"
761
  msgstr "Este gancho no ha sido configurado"
762
 
763
  #: ../abstracts/mycred-abstract-hook.php:283 ../abstracts/mycred-abstract-hook.
764
+ #: php:354 ../modules/mycred-module-hooks.php:1819 ../includes/mycred-functions.
765
+ #: php:2928
766
  msgid "No limit"
767
  msgstr "Sin Limite"
768
 
780
 
781
  #: ../abstracts/mycred-abstract-hook.php:364 ../addons/banking/abstracts/mycred-
782
  #: abstract-service.php:498 ../addons/email-notices/myCRED-addon-email-notices.
783
+ #: php:208 ../addons/email-notices/myCRED-addon-email-notices.php:1040 ..
784
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:695 ../addons/buy-creds/myCRED-
785
+ #: addon-buy-creds.php:718 ../addons/buy-creds/abstracts/mycred-abstract-payment-
786
  #: gateway.php:1023 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
787
  #: php:1046 ../addons/buy-creds/gateways/zombaio.php:356
788
  msgid "Select"
789
  msgstr "Seleccionar"
790
 
791
+ #: ../abstracts/mycred-abstract-module.php:401 ../abstracts/mycred-abstract-
792
+ #: module.php:411
793
  msgid "Surprise"
794
  msgstr "Sorpresa"
795
 
796
+ #: ../abstracts/mycred-abstract-module.php:512 ../includes/mycred-network.php:93
797
  msgid "click to close"
798
  msgstr "haga clic para cerrar"
799
 
800
+ #: ../abstracts/mycred-abstract-module.php:513 ../includes/mycred-network.php:94
801
  msgid "click to open"
802
  msgstr "haga clic para abrir"
803
 
804
+ #: ../abstracts/mycred-abstract-module.php:546 ../addons/buy-creds/myCRED-addon-
805
+ #: buy-creds.php:926
806
  msgid "Settings Updated"
807
  msgstr "Configuraciones Actualizadas"
808
 
830
  msgstr "Pista"
831
 
832
  #: ../modules/mycred-module-settings.php:484 ../modules/mycred-module-addons.php:
833
+ #: 311 ../modules/mycred-module-log.php:358 ../modules/mycred-module-log.php:647 .
834
+ #: ./modules/mycred-module-hooks.php:196 ../includes/mycred-network.php:141 ..
835
+ #: includes/mycred-admin.php:590 ../addons/banking/myCRED-addon-banking.php:238 .
836
+ #: ./addons/stats/myCRED-addon-stats.php:230 ../addons/buy-creds/myCRED-addon-buy-
837
+ #: creds.php:915 ../addons/buy-creds/myCRED-addon-buy-creds.php:1021
838
  msgid "Access Denied"
839
  msgstr "Acceso Denegado"
840
 
986
 
987
  #: ../modules/mycred-module-settings.php:625 ../modules/mycred-module-settings.
988
  #: php:640 ../modules/mycred-module-log.php:407 ../addons/ranks/myCRED-addon-
989
+ #: ranks.php:1623 ../addons/buy-creds/myCRED-addon-buy-creds.php:1717
990
  msgid "Actions"
991
  msgstr "Acciones"
992
 
995
  msgstr "Registro Vacío"
996
 
997
  #: ../modules/mycred-module-settings.php:632 ../addons/ranks/myCRED-addon-ranks.
998
+ #: php:1615
999
  msgid "User Meta Key"
1000
  msgstr "Clave Meta del Usuario"
1001
 
1002
  #: ../modules/mycred-module-settings.php:636 ../addons/ranks/myCRED-addon-ranks.
1003
+ #: php:1049 ../addons/badges/myCRED-addon-badges.php:463
1004
  msgid "Users"
1005
  msgstr "Usuarios"
1006
 
1013
  msgstr "Exportar CSV"
1014
 
1015
  #: ../modules/mycred-module-settings.php:656 ../includes/mycred-widgets.php:600 ..
1016
+ #: addons/transfer/myCRED-addon-transfer.php:212 ../addons/buy-creds/myCRED-
1017
+ #: addon-buy-creds.php:651
1018
  msgid "Point Types"
1019
  msgstr "Clase de Puntos"
1020
 
1030
  #: ../modules/mycred-module-settings.php:674 ../modules/mycred-module-settings.
1031
  #: php:695 ../modules/mycred-module-settings.php:720 ..
1032
  #: addons/gateway/carts/mycred-woocommerce.php:160 ../addons/email-
1033
+ #: notices/myCRED-addon-email-notices.php:1082
1034
  msgid "Label"
1035
  msgstr "Etiqueta"
1036
 
1054
 
1055
  #: ../modules/mycred-module-settings.php:739 ../addons/gateway/event-
1056
  #: booking/mycred-eventespresso3.php:502 ../addons/buy-creds/myCRED-addon-buy-
1057
+ #: creds.php:985
1058
  msgid "Update Settings"
1059
  msgstr "Actualizar Configuraciones"
1060
 
1104
  msgid "Add-ons"
1105
  msgstr "Extensiones"
1106
 
1107
+ #: ../modules/mycred-module-addons.php:167
1108
  msgid "Give your users badges based on their interaction with your website."
1109
  msgstr "Dar insignias a tus usuarios basado en sus interacciones con tu sitio web."
1110
 
1111
+ #: ../modules/mycred-module-addons.php:178
1112
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
1113
  msgstr ""
1114
  "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
1115
  "de las cuentas de usuarios."
1116
 
1117
+ #: ../modules/mycred-module-addons.php:189
1118
  msgid ""
1119
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
1120
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
1125
  "<strong>compra</strong>CRED tambien permite que tus usuarios compren puntos "
1126
  "para otros miembros."
1127
 
1128
+ #: ../modules/mycred-module-addons.php:200
1129
  msgid ""
1130
  "The coupons add-on allows you to create coupons that users can use to add "
1131
  "points to their accounts."
1133
  "Los cupones de add-on le permite crear cupones que los usuarios pueden "
1134
  "utilizar para agregar puntos a sus cuentas."
1135
 
1136
+ #: ../modules/mycred-module-addons.php:211
1137
  msgid "Create email notices for any type of myCRED instance."
1138
  msgstr ""
1139
  "Crea avisos por correo electrónico para cualquier tipo de instancias de "
1140
  "myCRED."
1141
 
1142
+ #: ../modules/mycred-module-addons.php:222
1143
  msgid ""
1144
  "Let your users pay using their <strong>my</strong>CRED points balance. "
1145
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
1150
  "WP E-Commerce. Reservas de Eventos soportados: Event Espresso and Events "
1151
  "Manager (gratis y pro)."
1152
 
1153
+ #: ../modules/mycred-module-addons.php:233
1154
  msgid "Create pop-up notifications for when users gain or loose points."
1155
  msgstr "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
1156
 
1157
+ #: ../modules/mycred-module-addons.php:245
1158
  msgid ""
1159
  "Create ranks for users reaching a certain number of %_plural% with the "
1160
  "option to add logos for each rank."
1162
  "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
1163
  "con la opción de añadir logotipos para cada rango."
1164
 
1165
+ #: ../modules/mycred-module-addons.php:256
1166
  msgid ""
1167
  "This add-on allows you to sell posts, pages or any public post types on your "
1168
  "website. You can either sell the entire content or using our shortcode, sell "
1173
  "el código corto (shortcode), vender partes de tu contenido permitiendote "
1174
  "ofrecer \"avances\"."
1175
 
1176
+ #: ../modules/mycred-module-addons.php:278
1177
  msgid ""
1178
  "Allow your users to send or \"donate\" points to other members by either using "
1179
  "the mycred_transfer shortcode or the myCRED Transfer widget."
1182
  "el código corto (shortcode) de mycred_transfer o el widget de Transferencia "
1183
  "myCRED."
1184
 
1185
+ #: ../modules/mycred-module-addons.php:321
1186
  #, php-format
1187
  msgid "%s Add-ons"
1188
  msgstr "%s Extensiones (addons)"
1189
 
1190
+ #: ../modules/mycred-module-addons.php:328
1191
  msgid "Add-on Activated"
1192
  msgstr "Extensión Activado"
1193
 
1194
+ #: ../modules/mycred-module-addons.php:331
1195
  msgid "Add-on Deactivated"
1196
  msgstr "Extensión Desactivado"
1197
 
1198
+ #: ../modules/mycred-module-addons.php:339
1199
  msgid "Add-ons can expand your current installation with further features."
1200
  msgstr ""
1201
  "Extensiones pueden ampliar tu instalación actual con más características "
1202
  "técnicas."
1203
 
1204
+ #: ../modules/mycred-module-addons.php:367
1205
  #, php-format
1206
  msgid "You can find more add-ons in our %s."
1207
  msgstr "Puedes encontrar más extensiones (add-ons) en nuestro %s."
1208
 
1209
+ #: ../modules/mycred-module-addons.php:367
1210
  msgid "online store"
1211
  msgstr "tienda online"
1212
 
1213
+ #: ../modules/mycred-module-addons.php:390
1214
  msgid "Deactivate Add-on"
1215
  msgstr "Desactivar Extensión"
1216
 
1217
+ #: ../modules/mycred-module-addons.php:391
1218
  msgid "Deactivate"
1219
  msgstr "Desactivar"
1220
 
1221
+ #: ../modules/mycred-module-addons.php:398
1222
  msgid "Activate Add-on"
1223
  msgstr "Activar Extensión"
1224
 
1225
+ #: ../modules/mycred-module-addons.php:399
1226
  msgid "Activate"
1227
  msgstr "Activar"
1228
 
1229
+ #: ../modules/mycred-module-addons.php:417
1230
  msgid "Version"
1231
  msgstr "Version"
1232
 
1233
+ #: ../modules/mycred-module-addons.php:421
1234
  msgid "By"
1235
  msgstr "Por"
1236
 
1237
+ #: ../modules/mycred-module-addons.php:425
1238
  msgid "About"
1239
  msgstr "Acerca de"
1240
 
1241
+ #: ../modules/mycred-module-addons.php:429
1242
  msgid "Get Pro"
1243
  msgstr "Obtenga la versión Pro"
1244
 
1260
  msgstr "Entrada Actualizada"
1261
 
1262
  #: ../modules/mycred-module-log.php:276 ../modules/mycred-module-log.php:277 ..
1263
+ #: includes/mycred-admin.php:429 ../addons/banking/services/mycred-bank-service-
1264
  #: payouts.php:246
1265
  msgid "History"
1266
  msgstr "Historial"
1274
  msgid "%s Log"
1275
  msgstr "Registro de %s"
1276
 
1277
+ #: ../modules/mycred-module-log.php:525 ../includes/mycred-log.php:872
1278
  msgid "User Missing"
1279
  msgstr "Usuario Ausente"
1280
 
1282
  msgid "Edit"
1283
  msgstr "Editar"
1284
 
1285
+ #: ../modules/mycred-module-log.php:609 ../includes/mycred-log.php:754 ..
1286
+ #: includes/mycred-admin.php:802 ../addons/email-notices/myCRED-addon-email-
1287
+ #: notices.php:900 ../addons/email-notices/myCRED-addon-email-notices.php:1076
1288
  msgid "User"
1289
  msgstr "Usuario"
1290
 
1323
  msgid "Hooks"
1324
  msgstr "Ganchos"
1325
 
1326
+ #: ../modules/mycred-module-hooks.php:110
1327
  #, php-format
1328
  msgid "%plural% for registrations"
1329
  msgstr "%plural% por inscripciones"
1330
 
1331
+ #: ../modules/mycred-module-hooks.php:111
1332
  #, php-format
1333
  msgid "Award %_plural% for users joining your website."
1334
  msgstr "Concede %_plural% a usuarios por unirse a tu sitio de web."
1335
 
1336
+ #: ../modules/mycred-module-hooks.php:117
1337
  #, php-format
1338
  msgid "%plural% for daily visits"
1339
  msgstr "%plural% para visitas diarias"
1340
 
1341
+ #: ../modules/mycred-module-hooks.php:118
1342
  #, php-format
1343
  msgid "Award %_plural% for users visiting your website on a daily basis."
1344
  msgstr "Concede %_plural% a usuarios por visitar tu sitio web diariamente."
1345
 
1346
+ #: ../modules/mycred-module-hooks.php:124
1347
  #, php-format
1348
  msgid "%plural% for viewing content"
1349
  msgstr "%plural% para ver contenido"
1350
 
1351
+ #: ../modules/mycred-module-hooks.php:125
1352
  #, php-format
1353
  msgid ""
1354
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
1357
  "Concede %_plural% a usuarios por ver entradas y / o %plural% a tus autores "
1358
  "cuando miembros ven su contenido."
1359
 
1360
+ #: ../modules/mycred-module-hooks.php:131
1361
  #, php-format
1362
  msgid "%plural% for logins"
1363
  msgstr "%plural% para ingresos"
1364
 
1365
+ #: ../modules/mycred-module-hooks.php:132
1366
  #, php-format
1367
  msgid ""
1368
  "Award %_plural% for logging in to your website. You can also set an optional "
1371
  "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
1372
  "ajustar un limíte opcional."
1373
 
1374
+ #: ../modules/mycred-module-hooks.php:138
1375
  #, php-format
1376
  msgid "%plural% for publishing content"
1377
  msgstr "%plural% por publicar contenido"
1378
 
1379
+ #: ../modules/mycred-module-hooks.php:139
1380
  #, php-format
1381
  msgid ""
1382
  "Award %_plural% for publishing content on your website. If your custom post "
1383
  "type is not shown bellow, make sure it is set to \"Public\"."
1384
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
1385
 
1386
+ #: ../modules/mycred-module-hooks.php:145
1387
  #, php-format
1388
  msgid "%plural% for comments"
1389
  msgstr "%plural% por comentarios"
1390
 
1391
+ #: ../modules/mycred-module-hooks.php:145
1392
  #, php-format
1393
  msgid "%plural% for Disqus comments"
1394
  msgstr "%plural% por comentarios Disqus"
1395
 
1396
+ #: ../modules/mycred-module-hooks.php:146
1397
  #, php-format
1398
  msgid "Award %_plural% for making comments."
1399
  msgstr "Concede %_plural% por hacer comentarios."
1400
 
1401
+ #: ../modules/mycred-module-hooks.php:152
1402
  #, php-format
1403
  msgid "%plural% for clicking on links"
1404
  msgstr "%plural% por hacer clic sobre enlaces"
1405
 
1406
+ #: ../modules/mycred-module-hooks.php:153
1407
  msgid ""
1408
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
1409
  "shortcode."
1411
  "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
1412
  "por el [mycred_link] código corto (shortcode)."
1413
 
1414
+ #: ../modules/mycred-module-hooks.php:159
1415
  #, php-format
1416
  msgid "%plural% for viewing Videos"
1417
  msgstr "%plural% por ver videos"
1418
 
1419
+ #: ../modules/mycred-module-hooks.php:160
1420
  msgid ""
1421
  "Award %_plural% to users who watches videos embedded using the "
1422
  "[mycred_video] shortcode."
1424
  "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
1425
  "el [mycred_link] código corto (shortcode)."
1426
 
1427
+ #: ../modules/mycred-module-hooks.php:166
1428
  #, php-format
1429
  msgid "%plural% for referrals"
1430
  msgstr "%plural% por referencias (o recomendaciones)"
1431
 
1432
+ #: ../modules/mycred-module-hooks.php:167
1433
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
1434
  msgstr ""
1435
  "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
1436
  "miembros inscritos."
1437
 
1438
+ #: ../modules/mycred-module-hooks.php:202
1439
  #, php-format
1440
  msgid "%s Hooks"
1441
  msgstr "Ganchos de %s"
1442
 
1443
+ #: ../modules/mycred-module-hooks.php:206
1444
  #, php-format
1445
  msgid ""
1446
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
1449
  "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
1450
  "usuario, dependiendo de sus acciones en tu sitio web."
1451
 
1452
+ #: ../modules/mycred-module-hooks.php:225 ../addons/banking/myCRED-addon-banking.
1453
+ #: php:274 ../addons/buy-creds/myCRED-addon-buy-creds.php:953
1454
  msgid "Enable"
1455
  msgstr "Habilitar"
1456
 
1457
+ #: ../modules/mycred-module-hooks.php:243 ../addons/banking/myCRED-addon-banking.
1458
+ #: php:293
1459
  msgid "Update Changes"
1460
  msgstr "Actualizar Cambios"
1461
 
1462
+ #: ../modules/mycred-module-hooks.php:420 ../modules/mycred-module-hooks.php:526 .
1463
+ #: ./modules/mycred-module-hooks.php:693 ../modules/mycred-module-hooks.php:724 ..
1464
+ #: modules/mycred-module-hooks.php:801 ../modules/mycred-module-hooks.php:1167 ..
1465
+ #: modules/mycred-module-hooks.php:1184 ../modules/mycred-module-hooks.php:1233 .
1466
+ #: ./modules/mycred-module-hooks.php:1685 ../modules/mycred-module-hooks.php:1702
1467
+ #: ../modules/mycred-module-hooks.php:1719 ../modules/mycred-module-hooks.php:
1468
+ #: 3010 ../modules/mycred-module-hooks.php:3030 ../plugins/mycred-hook-invite-
1469
+ #: anyone.php:211 ../plugins/mycred-hook-invite-anyone.php:232 ../plugins/mycred-
1470
+ #: hook-wp-postratings.php:173 ../plugins/mycred-hook-wp-postratings.php:192 ..
1471
+ #: plugins/mycred-hook-gravityforms.php:165 ../plugins/mycred-hook-simplepress.
1472
+ #: php:309 ../plugins/mycred-hook-simplepress.php:322 ../plugins/mycred-hook-
1473
+ #: simplepress.php:339 ../plugins/mycred-hook-simplepress.php:357 ..
1474
+ #: plugins/mycred-hook-buddypress-gallery.php:116 ../plugins/mycred-hook-
1475
+ #: buddypress.php:520 ../plugins/mycred-hook-buddypress.php:537 ../plugins/mycred-
1476
+ #: hook-buddypress.php:554 ../plugins/mycred-hook-buddypress.php:574 ..
1477
+ #: plugins/mycred-hook-buddypress.php:587 ../plugins/mycred-hook-buddypress.php:
1478
+ #: 604 ../plugins/mycred-hook-buddypress.php:617 ../plugins/mycred-hook-
1479
+ #: buddypress.php:634 ../plugins/mycred-hook-buddypress.php:651 ../plugins/mycred-
1480
+ #: hook-buddypress.php:1231 ../plugins/mycred-hook-buddypress.php:1244 ..
1481
+ #: plugins/mycred-hook-buddypress.php:1261 ../plugins/mycred-hook-buddypress.php:
1482
+ #: 1278 ../plugins/mycred-hook-buddypress.php:1295 ../plugins/mycred-hook-
1483
+ #: buddypress.php:1312 ../plugins/mycred-hook-buddypress.php:1330 ..
1484
+ #: plugins/mycred-hook-buddypress.php:1343 ../plugins/mycred-hook-buddypress.php:
1485
+ #: 1360 ../plugins/mycred-hook-buddypress.php:1377 ../plugins/mycred-hook-
1486
+ #: buddypress-links.php:271 ../plugins/mycred-hook-buddypress-links.php:288 ..
1487
+ #: plugins/mycred-hook-buddypress-links.php:305 ../plugins/mycred-hook-
1488
+ #: buddypress-links.php:324 ../plugins/mycred-hook-buddypress-links.php:341 ..
1489
+ #: plugins/mycred-hook-buddypress-links.php:354 ../plugins/mycred-hook-
1490
+ #: affiliatewp.php:229 ../plugins/mycred-hook-affiliatewp.php:246 ..
1491
  #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-buddypress-media.
1492
+ #: php:224 ../plugins/mycred-hook-buddypress-media.php:238 ../plugins/mycred-hook-
1493
+ #: buddypress-media.php:252 ../plugins/mycred-hook-buddypress-media.php:265 ..
1494
+ #: plugins/mycred-hook-buddypress-media.php:275 ../plugins/mycred-hook-
1495
+ #: buddypress-media.php:285 ../plugins/mycred-hook-contact-form7.php:168 ..
1496
+ #: plugins/mycred-hook-jetpack.php:545 ../plugins/mycred-hook-jetpack.php:558 ..
1497
+ #: plugins/mycred-hook-bbPress.php:443 ../plugins/mycred-hook-bbPress.php:456 ..
1498
+ #: plugins/mycred-hook-bbPress.php:473 ../plugins/mycred-hook-bbPress.php:491 ..
1499
+ #: plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:525 ..
1500
+ #: plugins/mycred-hook-bbPress.php:551 ../plugins/mycred-hook-badgeOS.php:336
1501
  msgid "Log template"
1502
  msgstr "Plantilla de Registro"
1503
 
1504
+ #: ../modules/mycred-module-hooks.php:676
1505
  #, php-format
1506
  msgid "%plural% for viewing Posts"
1507
  msgstr "%plural% para ver Entradas"
1508
 
1509
+ #: ../modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:696 .
1510
+ #: ./modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:727 ..
1511
+ #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:804
1512
  msgid "Member"
1513
  msgstr "Miembro"
1514
 
1515
+ #: ../modules/mycred-module-hooks.php:682 ../modules/mycred-module-hooks.php:689 .
1516
+ #: ./modules/mycred-module-hooks.php:713 ../modules/mycred-module-hooks.php:720 ..
1517
+ #: modules/mycred-module-hooks.php:790 ../modules/mycred-module-hooks.php:797 ..
1518
+ #: modules/mycred-module-hooks.php:1021 ../modules/mycred-module-hooks.php:1163 .
1519
+ #: ./modules/mycred-module-hooks.php:1180 ../modules/mycred-module-hooks.php:1229
1520
+ #: ../modules/mycred-module-hooks.php:3018 ../modules/mycred-module-hooks.php:
1521
+ #: 3038 ../plugins/mycred-hook-invite-anyone.php:216 ../plugins/mycred-hook-
1522
+ #: invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:237 ..
1523
+ #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-wp-
1524
+ #: postratings.php:165 ../plugins/mycred-hook-wp-postratings.php:184 ..
1525
+ #: plugins/mycred-hook-gravityforms.php:160 ../plugins/mycred-hook-simplepress.
1526
+ #: php:304 ../plugins/mycred-hook-simplepress.php:334 ../plugins/mycred-hook-
1527
+ #: buddypress-gallery.php:111 ../plugins/mycred-hook-buddypress.php:515 ..
1528
+ #: plugins/mycred-hook-buddypress.php:532 ../plugins/mycred-hook-buddypress.php:
1529
+ #: 549 ../plugins/mycred-hook-buddypress.php:566 ../plugins/mycred-hook-
1530
+ #: buddypress.php:599 ../plugins/mycred-hook-buddypress.php:629 ../plugins/mycred-
1531
+ #: hook-buddypress.php:646 ../plugins/mycred-hook-buddypress.php:1256 ..
1532
+ #: plugins/mycred-hook-buddypress.php:1273 ../plugins/mycred-hook-buddypress.php:
1533
+ #: 1290 ../plugins/mycred-hook-buddypress.php:1307 ../plugins/mycred-hook-
1534
+ #: buddypress.php:1325 ../plugins/mycred-hook-buddypress.php:1355 ..
1535
+ #: plugins/mycred-hook-buddypress.php:1372 ../plugins/mycred-hook-buddypress-
1536
+ #: links.php:266 ../plugins/mycred-hook-buddypress-links.php:283 ..
1537
+ #: plugins/mycred-hook-buddypress-links.php:300 ../plugins/mycred-hook-
1538
+ #: buddypress-links.php:310 ../plugins/mycred-hook-buddypress-links.php:319 ..
1539
+ #: plugins/mycred-hook-buddypress-links.php:336 ../plugins/mycred-hook-
1540
+ #: affiliatewp.php:241 ../plugins/mycred-hook-events-manager-light.php:205 ..
1541
  #: plugins/mycred-hook-sharethis.php:302 ../plugins/mycred-hook-buddypress-media.
1542
+ #: php:220 ../plugins/mycred-hook-buddypress-media.php:234 ../plugins/mycred-hook-
1543
+ #: buddypress-media.php:248 ../plugins/mycred-hook-wp-favorite-posts.php:222 ..
1544
+ #: plugins/mycred-hook-wp-favorite-posts.php:240 ../plugins/mycred-hook-contact-
1545
+ #: form7.php:163 ../plugins/mycred-hook-bbPress.php:438 ../plugins/mycred-hook-
1546
+ #: bbPress.php:468 ../plugins/mycred-hook-bbPress.php:503 ../plugins/mycred-hook-
1547
+ #: bbPress.php:520 ../plugins/mycred-hook-woocommerce.php:336 ../includes/mycred-
1548
+ #: shortcodes.php:1143
1549
  msgid "Limit"
1550
  msgstr "Límite"
1551
 
1552
+ #: ../modules/mycred-module-hooks.php:686 ../modules/mycred-module-hooks.php:702 .
1553
+ #: ./modules/mycred-module-hooks.php:717 ../modules/mycred-module-hooks.php:733 ..
1554
+ #: modules/mycred-module-hooks.php:794 ../modules/mycred-module-hooks.php:810 ..
1555
+ #: modules/mycred-module-hooks.php:1680 ../modules/mycred-module-hooks.php:1697 .
1556
+ #: ./modules/mycred-module-hooks.php:1714
1557
  msgid "Content Author"
1558
  msgstr "Autor del Contenido"
1559
 
1560
+ #: ../modules/mycred-module-hooks.php:707
1561
  #, php-format
1562
  msgid "%plural% for viewing Pages"
1563
  msgstr "%plural% para ver Paginas"
1564
 
1565
+ #: ../modules/mycred-module-hooks.php:784
1566
  #, php-format
1567
  msgid "%plural% for viewing %s"
1568
  msgstr "%plural% para Ver %s"
1569
 
1570
  #. can also be "Plantilla de Bitácora"
1571
+ #: ../modules/mycred-module-hooks.php:1014 ../modules/mycred-module-hooks.php:
1572
+ #: 2035 ../modules/mycred-module-hooks.php:2405 ../plugins/mycred-hook-wp-polls.
1573
+ #: php:154 ../plugins/mycred-hook-gd-star-rating.php:121 ../plugins/mycred-hook-
1574
+ #: gd-star-rating.php:134 ../plugins/mycred-hook-events-manager-light.php:209 ..
1575
+ #: plugins/mycred-hook-events-manager-light.php:222 ../plugins/mycred-hook-wp-
1576
+ #: favorite-posts.php:226 ../plugins/mycred-hook-wp-favorite-posts.php:244 ..
1577
+ #: plugins/mycred-hook-wp-favorite-posts.php:258 ../plugins/mycred-hook-wp-
1578
+ #: favorite-posts.php:271 ../plugins/mycred-hook-woocommerce.php:340 ..
1579
+ #: plugins/mycred-hook-badgeOS.php:143 ../plugins/mycred-hook-badgeOS.php:145 ..
1580
+ #: plugins/mycred-hook-badgeOS.php:156 ../addons/banking/services/mycred-bank-
1581
  #: service-payouts.php:283 ../addons/banking/services/mycred-bank-service-
1582
  #: interest.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:371 ..
1583
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
1584
  #: addons/gateway/carts/mycred-woocommerce.php:176 ..
1585
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
1586
  #: addons/gateway/carts/mycred-marketpress.php:428 ../addons/coupons/myCRED-
1587
+ #: addon-coupons.php:557 ../addons/buy-creds/myCRED-addon-buy-creds.php:672 ..
1588
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:735
1589
  msgid "Log Template"
1590
  msgstr "Plantilla de Registro"
1591
 
1592
+ #: ../modules/mycred-module-hooks.php:1157
1593
  #, php-format
1594
  msgid "%plural% for Posts"
1595
  msgstr "%plural% por Posts"
1596
 
1597
+ #: ../modules/mycred-module-hooks.php:1174
1598
  #, php-format
1599
  msgid "%plural% for Pages"
1600
  msgstr "%plural% por Paginas"
1601
 
1602
+ #: ../modules/mycred-module-hooks.php:1223
1603
  #, php-format
1604
  msgid "%plural% for %s"
1605
  msgstr "%plural% por %s"
1606
 
1607
+ #: ../modules/mycred-module-hooks.php:1670
1608
  #, php-format
1609
  msgid ""
1610
  "%plural% are only awarded when your website has been synced with the Disqus "
1613
  "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
1614
  "sincronizado con el servidor de Disqus!"
1615
 
1616
+ #: ../modules/mycred-module-hooks.php:1673 ../includes/mycred-functions.php:2600
1617
  msgid "Approved Comment"
1618
  msgstr "Comentario Aprobado"
1619
 
1620
+ #: ../modules/mycred-module-hooks.php:1676 ../modules/mycred-module-hooks.php:
1621
+ #: 1693 ../modules/mycred-module-hooks.php:1710
1622
  msgid "Comment Author"
1623
  msgstr "Autor del Comentario"
1624
 
1625
+ #: ../modules/mycred-module-hooks.php:1690
1626
  msgid "Comment Marked SPAM"
1627
  msgstr "Comentario Marcado como SPAM"
1628
 
1629
+ #: ../modules/mycred-module-hooks.php:1707
1630
  msgid "Trashed / Unapproved Comments"
1631
  msgstr "Comentarios Destrozados / No Aprobados"
1632
 
1633
+ #: ../modules/mycred-module-hooks.php:1724 ../modules/mycred-module-hooks.php:
1634
+ #: 2042 ../addons/transfer/myCRED-addon-transfer.php:264 ../addons/coupons/myCRED-
1635
  #: addon-coupons.php:175
1636
  msgid "Limits"
1637
  msgstr "imites"
1638
 
1639
+ #: ../modules/mycred-module-hooks.php:1727
1640
  msgid "Limit per post"
1641
  msgstr "Límite por Entrada"
1642
 
1643
  #. what is the Spanish word for "post"? o anglicismo?
1644
+ #: ../modules/mycred-module-hooks.php:1729
1645
  msgid ""
1646
  "The number of comments per post that grants %_plural% to the comment author. "
1647
  "Use zero for unlimited."
1649
  "El numero de comentarios por cada post que concede %_plural% al autor del "
1650
  "comentario. Utilice cero para un número ilimitado"
1651
 
1652
+ #: ../modules/mycred-module-hooks.php:1733
1653
  msgid "Limit per day"
1654
  msgstr "Límite por día"
1655
 
1656
+ #: ../modules/mycred-module-hooks.php:1735
1657
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
1658
  msgstr ""
1659
  "Número de comentarios diarios que conceden %_plural%. Utilice cero para un "
1660
  "número ilimitado."
1661
 
1662
+ #: ../modules/mycred-module-hooks.php:1740
1663
  #, php-format
1664
  msgid ""
1665
  "%plural% is to be awarded even when comment authors reply to their own "
1668
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
1669
  "comentario."
1670
 
1671
+ #: ../modules/mycred-module-hooks.php:1820
1672
  msgid "Once for each unique URL"
1673
  msgstr "Una sola vez para cada única URL"
1674
 
1675
+ #: ../modules/mycred-module-hooks.php:1821
1676
  msgid "Once for each unique link id"
1677
  msgstr "Una vez para cada id del enlace único "
1678
 
1679
+ #: ../modules/mycred-module-hooks.php:2032
1680
  msgid ""
1681
  "The default amount to award for clicking on links. You can override this in "
1682
  "the shortcode."
1684
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
1685
  "anular esto con el 'shortcode' (código corto)."
1686
 
1687
+ #: ../modules/mycred-module-hooks.php:2039
1688
  #, php-format
1689
  msgid "Custom tags: %url%, %title% or %id%."
1690
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
1691
 
1692
+ #: ../modules/mycred-module-hooks.php:2052 ../modules/mycred-module-hooks.php:3106
1693
  msgid "Note!"
1694
  msgstr "¡Atención!"
1695
 
1696
+ #: ../modules/mycred-module-hooks.php:2052
1697
  msgid ""
1698
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
1699
  "generate one automatically based on the value set under href. If you are "
1705
  "valor fijado en href. Si estas utilizando esta función para \"compartir\" "
1706
  "contenidos, se recomienda que limites por ID."
1707
 
1708
+ #: ../modules/mycred-module-hooks.php:2054 ../modules/mycred-module-hooks.php:2438
1709
  msgid "Available Shortcode"
1710
  msgstr "Código corto Disponible"
1711
 
1712
+ #: ../modules/mycred-module-hooks.php:2402
1713
  msgid "Amount to award for viewing videos."
1714
  msgstr "Cantidad a ceder para ver videos."
1715
 
1716
+ #: ../modules/mycred-module-hooks.php:2412
1717
  msgid "Award Logic"
1718
  msgstr "Lógica de Concesión"
1719
 
1720
+ #: ../modules/mycred-module-hooks.php:2414
1721
  #, php-format
1722
  msgid "Select when %_plural% should be awarded or deducted."
1723
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
1724
 
1725
+ #: ../modules/mycred-module-hooks.php:2415
1726
  msgid "Play - As soon as video starts playing."
1727
  msgstr "Play - En cuanto el video empiece a reproducirse."
1728
 
1729
+ #: ../modules/mycred-module-hooks.php:2416
1730
  msgid "Full - First when the entire video has played."
1731
  msgstr "Completo - Primero cuando el video entero se haya reproducido."
1732
 
1733
+ #: ../modules/mycred-module-hooks.php:2417
1734
  msgid "Interval - For each x number of seconds watched."
1735
  msgstr "Intervalo - Para cada x numero de segundos vistos."
1736
 
1737
+ #: ../modules/mycred-module-hooks.php:2420 ../addons/banking/services/mycred-bank-
1738
  #: service-payouts.php:271
1739
  msgid "Interval"
1740
  msgstr "Interval"
1741
 
1742
+ #: ../modules/mycred-module-hooks.php:2422
1743
  msgid "Number of seconds"
1744
  msgstr "Numero de segundos"
1745
 
1746
+ #: ../modules/mycred-module-hooks.php:2429
1747
  msgid "Leniency"
1748
  msgstr "Lenidad"
1749
 
1750
+ #: ../modules/mycred-module-hooks.php:2431
1751
  msgid ""
1752
  "The maximum percentage a users view of a movie can differ from the actual "
1753
  "length."
1755
  "El porcentaje máximo medido que un usuario vea puede variar con la duración "
1756
  "actual del video."
1757
 
1758
+ #: ../modules/mycred-module-hooks.php:2434
1759
  msgid ""
1760
  "Do not set this value to zero! A lot of thing can happen while a user "
1761
  "watches a movie and sometimes a few seconds can drop of the counter due to "
1765
  "usuario ve una película y a veces la contador puede disminuir por pocos "
1766
  "segundos por falta de buffering o por errores de reproducción."
1767
 
1768
+ #: ../modules/mycred-module-hooks.php:2509
1769
  msgid "Affiliate Program"
1770
  msgstr "Programa de Afiliados"
1771
 
1772
+ #: ../modules/mycred-module-hooks.php:2517 ../includes/mycred-admin.php:419 ..
1773
  #: addons/coupons/myCRED-addon-coupons.php:232
1774
  msgid "Total"
1775
  msgstr "Total"
1776
 
1777
+ #: ../modules/mycred-module-hooks.php:2518
1778
  msgid "Per Day"
1779
  msgstr "Por Día"
1780
 
1781
+ #: ../modules/mycred-module-hooks.php:2677
1782
  msgid "Link"
1783
  msgstr "Enlace"
1784
 
1785
+ #: ../modules/mycred-module-hooks.php:2681
1786
  msgid "Visitors Referred"
1787
  msgstr "Visitantes Referidos"
1788
 
1789
+ #: ../modules/mycred-module-hooks.php:2685
1790
  msgid "Signups Referred"
1791
  msgstr "Inscripciones Referidos"
1792
 
1793
+ #: ../modules/mycred-module-hooks.php:3004 ../plugins/mycred-hook-affiliatewp.php:
1794
+ #: 235
1795
  msgid "Referring Visitors"
1796
  msgstr "Referiendo Visitantes"
1797
 
1798
+ #: ../modules/mycred-module-hooks.php:3023 ../modules/mycred-module-hooks.php:3043
1799
  msgid "Referring Signups"
1800
  msgstr "Inscripciones a través de Referencias"
1801
 
1802
+ #: ../modules/mycred-module-hooks.php:3027
1803
  msgid "Visitors who have Cookies disabled will not award %_plural%."
1804
  msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
1805
 
1806
+ #: ../modules/mycred-module-hooks.php:3045
1807
  msgid "Registrations are disabled."
1808
  msgstr "Se han deshabilitado inscripciones."
1809
 
1810
+ #: ../modules/mycred-module-hooks.php:3053
1811
  msgid "Referral Links"
1812
  msgstr "Enlaces Referentes"
1813
 
1814
+ #: ../modules/mycred-module-hooks.php:3057
1815
  msgid "Assign numeric referral IDs to each user."
1816
  msgstr "Asignar ID numerica referente a cada usuario."
1817
 
1818
+ #: ../modules/mycred-module-hooks.php:3058 ../modules/mycred-module-hooks.php:3064
1819
  msgid "Example"
1820
  msgstr "Ejemplo"
1821
 
1822
+ #: ../modules/mycred-module-hooks.php:3063
1823
  msgid "Assign usernames as IDs for each user."
1824
  msgstr "Asignar los nombres de usuario como ID para cada usuario."
1825
 
1826
+ #: ../modules/mycred-module-hooks.php:3067
1827
  msgid "IP Limit"
1828
  msgstr "Límite de IP"
1829
 
1830
+ #: ../modules/mycred-module-hooks.php:3071
1831
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
1832
  msgstr ""
1833
  "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
1834
  "número ilimitado"
1835
 
1836
+ #: ../modules/mycred-module-hooks.php:3075 ../modules/mycred-module-hooks.php:3110
1837
  msgid "BuddyPress Profile"
1838
  msgstr "Perfil de BuddyPress"
1839
 
1840
+ #: ../modules/mycred-module-hooks.php:3078
1841
  msgid "Insert Link in users Profile"
1842
  msgstr "Insertar enlace en el perfil del usuario"
1843
 
1844
+ #: ../modules/mycred-module-hooks.php:3079
1845
  msgid ""
1846
  "Option to inser the referral link in users profiles. Links will only be "
1847
  "visible to users viewing their own profiles or administrators."
1850
  " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
1851
  "ven a sus propios perfiles."
1852
 
1853
+ #: ../modules/mycred-module-hooks.php:3083 ../includes/mycred-widgets.php:196 ..
1854
  #: includes/mycred-widgets.php:385 ../includes/mycred-widgets.php:594 ..
1855
  #: addons/gateway/carts/mycred-woocommerce.php:92 ..
1856
  #: addons/transfer/includes/mycred-transfer-widgets.php:120 ..
1857
+ #: addons/ranks/myCRED-addon-ranks.php:1330 ../addons/buy-creds/gateways/skrill.
1858
  #: php:339
1859
  msgid "Title"
1860
  msgstr "Titulo"
1861
 
1862
+ #: ../modules/mycred-module-hooks.php:3085
1863
  msgid "Leave empty to hide."
1864
  msgstr "Deje el campo vacío para ocultarlo."
1865
 
1866
+ #: ../modules/mycred-module-hooks.php:3088
1867
  msgid "Description"
1868
  msgstr "Descripción"
1869
 
1870
+ #: ../modules/mycred-module-hooks.php:3089
1871
  msgid "Optional description to insert under the link."
1872
  msgstr "Insertar la descripción opcional debajo del enlace."
1873
 
1874
+ #: ../modules/mycred-module-hooks.php:3103
1875
  msgid "Profile Positioning"
1876
  msgstr "Posicionamiento del Perfil"
1877
 
1878
+ #: ../modules/mycred-module-hooks.php:3105
1879
  msgid ""
1880
  "You can move around the referral link on your users profile by changing the "
1881
  "position. Increase to move up, decrease to move down."
1883
  "Puedes moverte por el enlace de referencia en su perfil los usuarios "
1884
  "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
1885
 
1886
+ #: ../modules/mycred-module-hooks.php:3106
1887
  msgid "You can not move the referral link above the users \"Base\" profile details!"
1888
  msgstr ""
1889
  "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
1890
  "en el perfil del usuario!"
1891
 
1892
+ #: ../modules/mycred-module-hooks.php:3112
1893
  msgid "Requires BuddyPress Extended Profiles to be enabled."
1894
  msgstr "Requiere que Perfils Extendidos de BuddyPress sea activado."
1895
 
1896
+ #: ../modules/mycred-module-hooks.php:3120 ../addons/buy-creds/myCRED-addon-buy-
1897
+ #: creds.php:740
1898
  msgid "Available Shortcodes"
1899
  msgstr "Códigos cortos Disponibles"
1900
 
1912
  msgstr "Saldo Actual"
1913
 
1914
  #: ../modules/mycred-module-buddypress.php:236 ../modules/mycred-module-
1915
+ #: buddypress.php:249 ../includes/mycred-log.php:990
1916
  msgid "All"
1917
  msgstr "Todo"
1918
 
1919
+ #: ../modules/mycred-module-buddypress.php:237 ../includes/mycred-log.php:991 ..
1920
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
1921
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:318
1922
  msgid "Today"
1923
  msgstr "Hoy"
1924
 
1925
+ #: ../modules/mycred-module-buddypress.php:238 ../includes/mycred-log.php:992
1926
  msgid "Yesterday"
1927
  msgstr "Ayer"
1928
 
1929
+ #: ../modules/mycred-module-buddypress.php:239 ../includes/mycred-log.php:993 ..
1930
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
1931
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:319
1932
  msgid "This Week"
1933
  msgstr "Esta Semana"
1934
 
1935
+ #: ../modules/mycred-module-buddypress.php:240 ../includes/mycred-log.php:994 ..
1936
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:192 ..
1937
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:320
1938
  msgid "This Month"
1939
  msgstr "Este Mes"
1940
 
1942
  msgid "Go"
1943
  msgstr "Ir a"
1944
 
1945
+ #: ../modules/mycred-module-buddypress.php:423 ../addons/gateway/carts/mycred-
1946
+ #: woocommerce.php:152 ../addons/badges/myCRED-addon-badges.php:1010 ..
1947
+ #: addons/badges/myCRED-addon-badges.php:1046
1948
  msgid "Do not show"
1949
  msgstr "No Mostrar"
1950
 
1951
+ #: ../modules/mycred-module-buddypress.php:424 ../addons/badges/myCRED-addon-
1952
+ #: badges.php:1011
1953
  msgid "Include in Profile Header"
1954
  msgstr "Incluir en el Encabezado del Perfil"
1955
 
1956
+ #: ../modules/mycred-module-buddypress.php:425 ../addons/ranks/myCRED-addon-ranks.
1957
+ #: php:1419 ../addons/badges/myCRED-addon-badges.php:1012
1958
  msgid "Include under the \"Profile\" tab"
1959
  msgstr "Incluir debajo de la pestaña del \"Perfil\""
1960
 
1961
+ #: ../modules/mycred-module-buddypress.php:426 ../addons/badges/myCRED-addon-
1962
+ #: badges.php:1013
1963
  msgid "Include under the \"Profile\" tab and Profile Header"
1964
  msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil"
1965
 
1966
+ #: ../modules/mycred-module-buddypress.php:430 ../addons/ranks/myCRED-addon-ranks.
1967
+ #: php:1417 ../addons/ranks/myCRED-addon-ranks.php:1462
1968
  msgid "Do not show."
1969
  msgstr "No mostrar."
1970
 
1971
+ #: ../modules/mycred-module-buddypress.php:431
1972
  msgid "Show in Profile"
1973
  msgstr "Mostrar en Perfil"
1974
 
1975
+ #: ../modules/mycred-module-buddypress.php:448
1976
  #, php-format
1977
  msgid "%singular% Balance"
1978
  msgstr "%singular% Saldo"
1979
 
1980
+ #: ../modules/mycred-module-buddypress.php:465
1981
  #, php-format
1982
  msgid "Members and visitors can other members %_singular% balance."
1983
  msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
1984
 
1985
+ #: ../modules/mycred-module-buddypress.php:470 ../addons/ranks/myCRED-addon-ranks.
1986
+ #: php:1439 ../addons/ranks/myCRED-addon-ranks.php:1484 ..
1987
+ #: addons/notifications/myCRED-addon-notifications.php:202
1988
  msgid "Template"
1989
  msgstr "Plantilla"
1990
 
1991
+ #: ../modules/mycred-module-buddypress.php:475
1992
  #, php-format
1993
  msgid "%plural% History"
1994
  msgstr "Historial de %plural%"
1995
 
1996
+ #: ../modules/mycred-module-buddypress.php:492
1997
  msgid "Members can view each others %_plural% history."
1998
  msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
1999
 
2000
+ #: ../modules/mycred-module-buddypress.php:497
2001
  msgid "Menu Title"
2002
  msgstr "Título de Menú"
2003
 
2004
+ #: ../modules/mycred-module-buddypress.php:499
2005
  msgid "Title shown to me"
2006
  msgstr "Título mostrado a mi"
2007
 
2008
+ #: ../modules/mycred-module-buddypress.php:504
2009
  #, php-format
2010
  msgid "Title shown to others. Use %s to show the first name."
2011
  msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
2012
 
2013
+ #: ../modules/mycred-module-buddypress.php:509
2014
  msgid "Menu Position"
2015
  msgstr "Posición del Menú"
2016
 
2017
+ #: ../modules/mycred-module-buddypress.php:511
2018
  msgid "Current menu positions:"
2019
  msgstr "Posiciones Acuales del Menú"
2020
 
2021
+ #: ../modules/mycred-module-buddypress.php:516
2022
  msgid "History URL slug"
2023
  msgstr "La ficha historial de la URL"
2024
 
2025
+ #: ../modules/mycred-module-buddypress.php:518
2026
  msgid "Do not use empty spaces!"
2027
  msgstr "¡No utilice espacios vacíos!"
2028
 
2029
+ #: ../modules/mycred-module-buddypress.php:523
2030
  msgid "Number of history entries to show"
2031
  msgstr "Numero de entradas de historial a mostrar"
2032
 
2033
  #. does this really need to be translated?
2034
+ #: ../plugins/mycred-hook-invite-anyone.php:15
2035
  msgid "Invite Anyone Plugin"
2036
  msgstr "Invite Anyone Plugin"
2037
 
2038
+ #: ../plugins/mycred-hook-invite-anyone.php:16
2039
  #, php-format
2040
  msgid ""
2041
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
2044
  "Concede %_plural% por mandar invitaciones y/o %_plural% si se acepta la "
2045
  "invitación."
2046
 
2047
+ #: ../plugins/mycred-hook-invite-anyone.php:204
2048
  #, php-format
2049
  msgid "%plural% for Sending An Invite"
2050
  msgstr "%plural% por Enviar una Invitación"
2051
 
2052
+ #: ../plugins/mycred-hook-invite-anyone.php:224
2053
  #, php-format
2054
  msgid "%plural% for Accepting An Invite"
2055
  msgstr "%plural% por Aceptar una Invitación"
2056
 
2057
+ #: ../plugins/mycred-hook-invite-anyone.php:228
2058
  #, php-format
2059
  msgid "%plural% for each invited user that accepts an invitation."
2060
  msgstr "%plural% por cada usuario invitado que acepta la invitación."
2061
 
2062
+ #: ../plugins/mycred-hook-wp-polls.php:15
2063
  msgid "WP-Polls"
2064
  msgstr "WP-Polls"
2065
 
2066
+ #: ../plugins/mycred-hook-wp-polls.php:16
2067
  #, php-format
2068
  msgid "Awards %_plural% for users voting in polls."
2069
  msgstr ""
2070
  "Concede %_plural% a usuarios que han votado en encuestas.Concede %_plural% a "
2071
  "usuarios que han votado en encuestas."
2072
 
2073
+ #: ../plugins/mycred-hook-gravityforms.php:15
2074
  msgid "Gravityform Submissions"
2075
  msgstr "Entregas de Gravityform"
2076
 
2077
+ #: ../plugins/mycred-hook-gravityforms.php:16
2078
  #, php-format
2079
  msgid "Awards %_plural% for successful form submissions."
2080
  msgstr "Concede %_plural% por el exitoso envío del formularios."
2081
 
2082
+ #: ../plugins/mycred-hook-gravityforms.php:129 ../plugins/mycred-hook-contact-
2083
+ #: form7.php:130
2084
  msgid "No forms found."
2085
  msgstr "No se ha encontrado ningun formulario."
2086
 
2087
+ #: ../plugins/mycred-hook-gd-star-rating.php:15
2088
  msgid "GD Star Rating"
2089
  msgstr "GD Star Rating"
2090
 
2091
+ #: ../plugins/mycred-hook-gd-star-rating.php:16
2092
  #, php-format
2093
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
2094
  msgstr ""
2095
  "Concede %_plural% a usuarios que evaluan artículos a través de GD Star "
2096
  "Rating plugin."
2097
 
2098
+ #: ../plugins/mycred-hook-gd-star-rating.php:115
2099
  msgid "Rating"
2100
  msgstr "Clasificación"
2101
 
2102
  #.
2103
  #.
2104
+ #: ../plugins/mycred-hook-gd-star-rating.php:128
2105
  msgid "Up / Down Vote"
2106
  msgstr "Voto Arriba / Abajo"
2107
 
2108
+ #: ../plugins/mycred-hook-simplepress.php:16
2109
  #, php-format
2110
  msgid "Awards %_plural% for Simple:Press actions."
2111
  msgstr "Concede %_plural% por acciones en Simple:Press."
2112
 
2113
+ #: ../plugins/mycred-hook-simplepress.php:298 ../plugins/mycred-hook-bbPress.php:
2114
+ #: 462
2115
  #, php-format
2116
  msgid "%plural% for New Topic"
2117
  msgstr "%plural% por Nuevo Tema"
2118
 
2119
+ #: ../plugins/mycred-hook-simplepress.php:315 ../plugins/mycred-hook-bbPress.php:
2120
+ #: 484
2121
  #, php-format
2122
  msgid "%plural% for Topic Deletion"
2123
  msgstr "%plural% por Borrar Tema"
2124
 
2125
+ #: ../plugins/mycred-hook-simplepress.php:328
2126
  #, php-format
2127
  msgid "%plural% for New Topic Post"
2128
  msgstr "%plural% por Nueva Publicacion "
2129
 
2130
+ #: ../plugins/mycred-hook-simplepress.php:346
2131
  #, php-format
2132
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
2133
  msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
2134
 
2135
+ #: ../plugins/mycred-hook-simplepress.php:350
2136
  #, php-format
2137
  msgid "%plural% for Topic Post Deletion"
2138
  msgstr "%plural% por Borrar la Tema del Post"
2139
 
2140
+ #: ../plugins/mycred-hook-marketpress.php:70 ../plugins/mycred-hook-woocommerce.
2141
+ #: php:87
2142
  #, php-format
2143
  msgid "Reward with %plural%"
2144
  msgstr "Premiar con %plural%"
2145
 
2146
+ #: ../plugins/mycred-hook-buddypress-gallery.php:15
2147
  msgid "BuddyPress: Gallery Actions"
2148
  msgstr "BuddyPress: Acciones sobre Galerías"
2149
 
2150
+ #: ../plugins/mycred-hook-buddypress-gallery.php:16
2151
  #, php-format
2152
  msgid ""
2153
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
2156
  "Conceder %_plural% por crear una nueva galería ya sea usando BP Album+ o BP "
2157
  "Gallery."
2158
 
2159
+ #: ../plugins/mycred-hook-buddypress-gallery.php:105
2160
  #, php-format
2161
  msgid "%plural% for New Gallery"
2162
  msgstr "%plural% por Nueva Galería"
2163
 
2164
+ #: ../plugins/mycred-hook-buddypress.php:16
2165
  msgid "BuddyPress: Members"
2166
  msgstr "BuddyPress: Miembros"
2167
 
2168
+ #: ../plugins/mycred-hook-buddypress.php:17
2169
  #, php-format
2170
  msgid "Awards %_plural% for profile related actions."
2171
  msgstr "Concede %_plural% por acciones relacionados al perfil."
2172
 
2173
+ #: ../plugins/mycred-hook-buddypress.php:24
2174
  msgid "BuddyPress: Groups"
2175
  msgstr "BuddyPress: Grupos"
2176
 
2177
+ #: ../plugins/mycred-hook-buddypress.php:25
2178
  #, php-format
2179
  msgid ""
2180
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
2183
  "Concede %_plural% para acciones relacionados a grupos. Usa negativo para "
2184
  "sustraer %_plural% o cero para desabilitar un gancho especifico."
2185
 
2186
+ #: ../plugins/mycred-hook-buddypress.php:259 ../addons/gateway/event-
2187
  #: booking/mycred-eventsmanager.php:636 ../addons/gateway/event-booking/mycred-
2188
  #: eventsmanager-pro.php:617 ../addons/gateway/carts/mycred-wpecommerce.php:386 ..
2189
  #: addons/gateway/carts/mycred-marketpress.php:438
2190
  msgid "Insufficient Funds"
2191
  msgstr "Fondos Insuficientes"
2192
 
2193
+ #: ../plugins/mycred-hook-buddypress.php:509
2194
  #, php-format
2195
  msgid "%plural% for Profile Updates"
2196
  msgstr "%plural% por Actualizar Perfil"
2197
 
2198
+ #: ../plugins/mycred-hook-buddypress.php:543
2199
  #, php-format
2200
  msgid "%plural% for New Avatar"
2201
  msgstr "%plural% por Nuevo Avatar"
2202
 
2203
+ #: ../plugins/mycred-hook-buddypress.php:560
2204
  #, php-format
2205
  msgid "%plural% for New Friendships"
2206
  msgstr "%plural% por Nueva Amistad"
2207
 
2208
+ #: ../plugins/mycred-hook-buddypress.php:580
2209
  #, php-format
2210
  msgid "%plural% for Leaving Friendship"
2211
  msgstr "%plural% por Dejar Amistad"
2212
 
2213
+ #: ../plugins/mycred-hook-buddypress.php:593
2214
  #, php-format
2215
  msgid "%plural% for New Comment"
2216
  msgstr "%plural% por Nuevo Comentario"
2217
 
2218
+ #: ../plugins/mycred-hook-buddypress.php:610
2219
  #, php-format
2220
  msgid "%plural% for Deleting Comment"
2221
  msgstr "%plural% por Borrar Comentario"
2222
 
2223
+ #: ../plugins/mycred-hook-buddypress.php:623
2224
  #, php-format
2225
  msgid "%plural% for New Messages"
2226
  msgstr "%plural% por Nuevo Mensaje"
2227
 
2228
+ #: ../plugins/mycred-hook-buddypress.php:640
2229
  #, php-format
2230
  msgid "%plural% for Sending Gift"
2231
  msgstr "%plural% por Enviar Regalo"
2232
 
2233
+ #: ../plugins/mycred-hook-buddypress.php:1217
2234
  #, php-format
2235
  msgid "%plural% for Creating Groups"
2236
  msgstr "%plural% por Creat Cupones"
2237
 
2238
+ #: ../plugins/mycred-hook-buddypress.php:1221
2239
  msgid ""
2240
  "If you use a negative value and the user does not have enough %_plural% the "
2241
  "\"Create Group\" button will be disabled."
2243
  "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
2244
  "\"Crear Grupo\" sera desactivada."
2245
 
2246
+ #: ../plugins/mycred-hook-buddypress.php:1225
2247
  msgid "Number of members before awarding %_plural%"
2248
  msgstr "Numero de miembros antes de conceder %_plural%"
2249
 
2250
+ #: ../plugins/mycred-hook-buddypress.php:1227
2251
  msgid "Use zero to award %_plural% when group is created."
2252
  msgstr "Ponga cero para %_plural% cuando se crea un grupo."
2253
 
2254
+ #: ../plugins/mycred-hook-buddypress.php:1237
2255
  #, php-format
2256
  msgid "%plural% for Deleting Groups"
2257
  msgstr "%plural% por Borrar Grupos"
2258
 
2259
+ #: ../plugins/mycred-hook-buddypress.php:1250
2260
  #, php-format
2261
  msgid "%plural% for New Forum Topic"
2262
  msgstr "%plural% por Nuevo Tema de Foro"
2263
 
2264
+ #: ../plugins/mycred-hook-buddypress.php:1267
2265
  #, php-format
2266
  msgid "%plural% for Editing Forum Topic"
2267
  msgstr "%plural% por Editar Tema de Foro"
2268
 
2269
+ #: ../plugins/mycred-hook-buddypress.php:1284
2270
  #, php-format
2271
  msgid "%plural% for New Forum Post"
2272
  msgstr "%plural% por Nueva Publicación en Foro"
2273
 
2274
+ #: ../plugins/mycred-hook-buddypress.php:1301
2275
  #, php-format
2276
  msgid "%plural% for Editing Forum Post"
2277
  msgstr "%plural% por Editar Publicación en Foro"
2278
 
2279
+ #: ../plugins/mycred-hook-buddypress.php:1318
2280
  #, php-format
2281
  msgid "%plural% for Joining Groups"
2282
  msgstr "%plural% por Unirse a Grupos"
2283
 
2284
+ #: ../plugins/mycred-hook-buddypress.php:1322
2285
  msgid ""
2286
  "If you use a negative value and the user does not have enough %_plural% the "
2287
  "\"Join Group\" button will be disabled."
2289
  "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
2290
  "\"Unirse a Grupo\" sera desactivada."
2291
 
2292
+ #: ../plugins/mycred-hook-buddypress.php:1336
2293
  #, php-format
2294
  msgid "%plural% for Leaving Groups"
2295
  msgstr "%plural% por Dejar Grupos"
2296
 
2297
+ #: ../plugins/mycred-hook-buddypress.php:1349
2298
  #, php-format
2299
  msgid "%plural% for New Group Avatar"
2300
  msgstr "%plural% por Nuevo Avatar de Grupo"
2301
 
2302
+ #: ../plugins/mycred-hook-buddypress.php:1366
2303
  #, php-format
2304
  msgid "%plural% for New Group Comment"
2305
  msgstr "%plural% por Nuevo Comentario Grupo"
2306
 
2307
+ #: ../plugins/mycred-hook-buddypress-links.php:15
2308
  msgid "BuddyPress: Links"
2309
  msgstr "BuddyPress: Enlaces"
2310
 
2311
+ #: ../plugins/mycred-hook-buddypress-links.php:16
2312
  #, php-format
2313
  msgid "Awards %_plural% for link related actions."
2314
  msgstr "Concede %_plural% por acciones relacionados a enlaces."
2315
 
2316
+ #: ../plugins/mycred-hook-buddypress-links.php:260
2317
  #, php-format
2318
  msgid "%plural% for New Links"
2319
  msgstr "%plural% por Nuevos Enlaces"
2320
 
2321
+ #: ../plugins/mycred-hook-buddypress-links.php:277
2322
  #, php-format
2323
  msgid "%plural% for Vote on Link"
2324
  msgstr "%plural% por Votar sobre Enlaces"
2325
 
2326
+ #: ../plugins/mycred-hook-buddypress-links.php:293
2327
  #, php-format
2328
  msgid "%plural% per received Vote"
2329
  msgstr "%plural% por Votos Recibidos"
2330
 
2331
+ #: ../plugins/mycred-hook-buddypress-links.php:296
2332
  msgid "Vote Up"
2333
  msgstr "Votar a Favor"
2334
 
2335
+ #: ../plugins/mycred-hook-buddypress-links.php:315
2336
  msgid "Vote Down"
2337
  msgstr "Votar en Contra "
2338
 
2339
+ #: ../plugins/mycred-hook-buddypress-links.php:330
2340
  #, php-format
2341
  msgid "%plural% for Updating Links"
2342
  msgstr "%plural% por Actualizar Enlaces"
2343
 
2344
+ #: ../plugins/mycred-hook-buddypress-links.php:347
2345
  #, php-format
2346
  msgid "%plural% for Deleting Links"
2347
  msgstr "%plural% por Borrar Enlaces"
2348
 
2349
+ #: ../plugins/mycred-hook-affiliatewp.php:260 ../includes/mycred-shortcodes.php:
2350
+ #: 1000 ../includes/mycred-shortcodes.php:1142 ../includes/mycred-admin.php:755 ..
2351
+ #: includes/mycred-admin.php:807 ../addons/banking/services/mycred-bank-service-
2352
+ #: payouts.php:266 ../addons/buy-creds/myCRED-addon-buy-creds.php:343 ..
2353
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:1635 ../addons/buy-creds/myCRED-
2354
+ #: addon-buy-creds.php:1715 ../addons/buy-creds/abstracts/mycred-abstract-payment-
2355
  #: gateway.php:593
2356
  msgid "Amount"
2357
  msgstr "Cantidad"
2358
 
2359
+ #: ../plugins/mycred-hook-events-manager-light.php:15
2360
  msgid "Events Manager"
2361
  msgstr "Gestionamiento de Eventos"
2362
 
2363
+ #: ../plugins/mycred-hook-events-manager-light.php:16
2364
  #, php-format
2365
  msgid "Awards %_plural% for users attending events."
2366
  msgstr "Concede %_plural% para usuarios que asistieron actividades o eventos."
2367
 
2368
+ #: ../plugins/mycred-hook-events-manager-light.php:199
2369
  msgid "Attending Event"
2370
  msgstr "Asistir Evento"
2371
 
2372
+ #: ../plugins/mycred-hook-events-manager-light.php:216
2373
  msgid "Cancelling Attendance"
2374
  msgstr "Cancelando Asistencia"
2375
 
2376
+ #: ../plugins/mycred-hook-sharethis.php:15
2377
  #, php-format
2378
  msgid "%plural% for Sharing"
2379
  msgstr "%plural% para Compartir"
2380
 
2381
+ #: ../plugins/mycred-hook-sharethis.php:16
2382
  #, php-format
2383
  msgid ""
2384
  "Awards %_plural% for users sharing / liking your website content to popular "
2395
  msgid "No ShareThis services detected. Please check your installation."
2396
  msgstr "Ningun servicio ShareThis detectado. Por favor verifique su instalación."
2397
 
2398
+ #: ../plugins/mycred-hook-buddypress-media.php:15
2399
  msgid "rtMedia Galleries"
2400
  msgstr "Galerías rtMedia (rtMedia Galleries)"
2401
 
2402
+ #: ../plugins/mycred-hook-buddypress-media.php:16
2403
  #, php-format
2404
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
2405
  msgstr "Concede / Resta %_plural% a usuarios por crear álbumes o subir nuevos fotos."
2406
 
2407
+ #: ../plugins/mycred-hook-buddypress-media.php:213
2408
  msgid "New Media Upload"
2409
  msgstr "Subir Nuevo Media"
2410
 
2411
+ #: ../plugins/mycred-hook-buddypress-media.php:216 ../includes/mycred-functions.
2412
+ #: php:2633
2413
  msgid "Photo Upload"
2414
  msgstr "Subir Foto"
2415
 
2416
+ #: ../plugins/mycred-hook-buddypress-media.php:230 ../includes/mycred-functions.
2417
+ #: php:2634
2418
  msgid "Video Upload"
2419
  msgstr "Subir Video"
2420
 
2421
+ #: ../plugins/mycred-hook-buddypress-media.php:244 ../includes/mycred-functions.
2422
+ #: php:2635
2423
  msgid "Music Upload"
2424
  msgstr "Subir Música"
2425
 
2426
+ #: ../plugins/mycred-hook-buddypress-media.php:258
2427
  msgid "Delete Media"
2428
  msgstr "Borrar Medios"
2429
 
2430
+ #: ../plugins/mycred-hook-buddypress-media.php:261
2431
  msgid "Delete Photo"
2432
  msgstr "Borrar Foto"
2433
 
2434
+ #: ../plugins/mycred-hook-buddypress-media.php:271
2435
  msgid "Delete Video"
2436
  msgstr "Borrar Video"
2437
 
2438
+ #: ../plugins/mycred-hook-buddypress-media.php:281
2439
  msgid "Delete Music"
2440
  msgstr "Borrar Música"
2441
 
2442
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:15
2443
  msgid "WP Favorite Posts"
2444
  msgstr "WP Favorite Posts"
2445
 
2446
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:16
2447
  #, php-format
2448
  msgid "Awards %_plural% for users adding posts to their favorites."
2449
  msgstr "Concede %_plural% a usuarios por añadir entradas a sus favoritos."
2450
 
2451
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:216
2452
  msgid "Adding Content to Favorites"
2453
  msgstr "Añadiendo Contenido a Favoritos"
2454
 
2455
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:252
2456
  msgid "Removing Content from Favorites"
2457
  msgstr "Quitando Contenido de Favoritos"
2458
 
2459
+ #: ../plugins/mycred-hook-contact-form7.php:15
2460
  msgid "Contact Form 7 Form Submissions"
2461
  msgstr "Presentación Formulario de Contact Form 7"
2462
 
2463
+ #: ../plugins/mycred-hook-contact-form7.php:16
2464
  #, php-format
2465
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
2466
  msgstr ""
2467
  "Concede %_plural% por el exitoso envío del formulario (por usuarios que han "
2468
  "iniciado sesión)"
2469
 
2470
+ #: ../plugins/mycred-hook-jetpack.php:15
2471
  msgid "Jetpack Subscriptions"
2472
  msgstr "Suscripciónes a Jetpack"
2473
 
2474
+ #: ../plugins/mycred-hook-jetpack.php:16
2475
  #, php-format
2476
  msgid ""
2477
  "Awards %_plural% for users signing up for site or comment updates using "
2480
  "Concede %_plural% a usuarios por incribirse a las actualizaciones del sitio "
2481
  "web o a los comentarios atraves de Jetpack."
2482
 
2483
+ #: ../plugins/mycred-hook-jetpack.php:538
2484
  msgid "Site Subscriptions"
2485
  msgstr "Suscripciónes al Sitio Web"
2486
 
2487
+ #: ../plugins/mycred-hook-jetpack.php:551
2488
  msgid "Comment Subscriptions"
2489
  msgstr "Suscripciónes a commentarios"
2490
 
2491
+ #: ../plugins/mycred-hook-bbPress.php:15
2492
  msgid "bbPress"
2493
  msgstr "bbPress"
2494
 
2495
+ #: ../plugins/mycred-hook-bbPress.php:16
2496
  #, php-format
2497
  msgid "Awards %_plural% for bbPress actions."
2498
  msgstr "Concede %_plural% por acciones en bbPress."
2499
 
2500
+ #: ../plugins/mycred-hook-bbPress.php:432
2501
  #, php-format
2502
  msgid "%plural% for New Forum"
2503
  msgstr "%plural% por nuevo foro"
2504
 
2505
+ #: ../plugins/mycred-hook-bbPress.php:449
2506
  #, php-format
2507
  msgid "%plural% for Forum Deletion"
2508
  msgstr "%plural% por Eliminar Foro"
2509
 
2510
+ #: ../plugins/mycred-hook-bbPress.php:480
2511
  #, php-format
2512
  msgid "Forum authors can receive %_plural% for creating new topics."
2513
  msgstr "Autores "
2514
 
2515
+ #: ../plugins/mycred-hook-bbPress.php:497
2516
  #, php-format
2517
  msgid "%plural% for Favorited Topic"
2518
  msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
2519
 
2520
+ #: ../plugins/mycred-hook-bbPress.php:514
2521
  #, php-format
2522
  msgid "%plural% for New Reply"
2523
  msgstr "%plural% por Nueva Respuesta"
2524
 
2525
+ #: ../plugins/mycred-hook-bbPress.php:532
2526
  #, php-format
2527
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
2528
  msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
2529
 
2530
+ #: ../plugins/mycred-hook-bbPress.php:536
2531
  #, php-format
2532
  msgid "Show users %_plural% balance in replies"
2533
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
2534
 
2535
+ #: ../plugins/mycred-hook-bbPress.php:544
2536
  #, php-format
2537
  msgid "%plural% for Reply Deletion"
2538
  msgstr "%plural% para Borrar Respuesta"
2539
 
2540
+ #: ../plugins/mycred-hook-woocommerce.php:216
2541
  msgid "WooCommerce Product Reviews"
2542
  msgstr " Revisión del Producto WooCommerce\n"
2543
 
2544
+ #: ../plugins/mycred-hook-woocommerce.php:217
2545
  #, php-format
2546
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
2547
  msgstr ""
2548
  "Concede %_plural% a usuarios por escribir reseñas sobre tus productos "
2549
  "WooCommerce."
2550
 
2551
+ #: ../plugins/mycred-hook-badgeOS.php:15
2552
  msgid "BadgeOS"
2553
  msgstr "BadgeOS"
2554
 
2555
+ #: ../plugins/mycred-hook-badgeOS.php:16
2556
  msgid ""
2557
  "Default settings for each BadgeOS Achievement type. These settings may be "
2558
  "overridden for individual achievement type."
2560
  "Configuraciones predefinidos para cada clase de BadgeOS Logro (Achievement). "
2561
  "Estos ajustes pueden ser anulados para el tipo de logro individual."
2562
 
2563
+ #: ../plugins/mycred-hook-badgeOS.php:121
2564
  #, php-format
2565
  msgid ""
2566
  "Please setup your <a href=\"%s\">default settings</a> before using this "
2569
  "Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> antes "
2570
  "de usar este función."
2571
 
2572
+ #: ../plugins/mycred-hook-badgeOS.php:137 ../plugins/mycred-hook-badgeOS.php:139
2573
  #, php-format
2574
  msgid "%plural% to Award"
2575
  msgstr "%plural% a Conceder"
2576
 
2577
  #. also "Ponga cero para inhabilitar"
2578
+ #: ../plugins/mycred-hook-badgeOS.php:141
2579
  msgid "Use zero to disable"
2580
  msgstr "Ponga cero para desactivar"
2581
 
2582
+ #: ../plugins/mycred-hook-badgeOS.php:154
2583
  msgid "Deduction Log Template"
2584
  msgstr "Plantilla de Registro Descontado"
2585
 
2586
+ #: ../plugins/mycred-hook-badgeOS.php:315
2587
  #, php-format
2588
  msgid "Default %s for %s"
2589
  msgstr "Predeterminar %s por %s"
2590
 
2591
+ #: ../plugins/mycred-hook-badgeOS.php:322
2592
  msgid "Use zero to disable users gaining %_plural%"
2593
  msgstr "Ponga cero para que los usuarios no obtengan %_plural%"
2594
 
2595
+ #: ../plugins/mycred-hook-badgeOS.php:326
2596
  msgid "Default Log template"
2597
  msgstr "Plantilla de Registro Predefinido"
2598
 
2620
  msgstr "Importar CubePoints %s"
2621
 
2622
  #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
2623
+ #: 379
2624
  msgid "Import CubePoints log entries and / or balances."
2625
  msgstr "Importar las entradas de registro de CubePoints y/o saldos."
2626
 
2696
  msgid "No export options available."
2697
  msgstr "No hay opciones para exportar."
2698
 
2699
+ #: ../includes/mycred-log.php:755 ../addons/buy-creds/myCRED-addon-buy-creds.php:
2700
+ #: 1074
2701
  msgid "Date"
2702
  msgstr "Fecha"
2703
 
2704
  #. need more context: entrada or inscripción
2705
+ #: ../includes/mycred-log.php:757
2706
  msgid "Entry"
2707
  msgstr "Entrada"
2708
 
2709
+ #: ../includes/mycred-log.php:956
2710
  msgid "No log entries found"
2711
  msgstr "Ninguna entrada de registro encontrada"
2712
 
2713
+ #: ../includes/mycred-log.php:974 ../includes/mycred-log.php:976
2714
  msgid "Search Log"
2715
  msgstr "Busqueda de Registro"
2716
 
2717
  #. buscar las entradas en el registro
2718
+ #: ../includes/mycred-log.php:975
2719
  msgid "search log entries"
2720
  msgstr "Búsqueda de las entradas de registro"
2721
 
2868
  msgid "Save Network Settings"
2869
  msgstr "Guardar las Configuraciones de la Eed"
2870
 
2871
+ #: ../includes/mycred-about.php:89
2872
  #, php-format
2873
  msgid "Welcome to %s %s"
2874
  msgstr "Bienvenido a %s %s"
2875
 
2876
+ #: ../includes/mycred-shortcodes.php:178
2877
  msgid "Leaderboard is empty."
2878
  msgstr "La Tabla de Clasificación esta vacía"
2879
 
2880
+ #: ../includes/mycred-shortcodes.php:536
 
 
 
 
2881
  msgid "Anchor missing URL!"
2882
  msgstr "¡La Ancla falta el URL!"
2883
 
2884
+ #: ../includes/mycred-shortcodes.php:654
2885
  msgid "Sent"
2886
  msgstr "Enviado"
2887
 
2888
+ #: ../includes/mycred-shortcodes.php:655
2889
  msgid "Error - Try Again"
2890
  msgstr "Error - Inténtelo de nuevo."
2891
 
2892
+ #: ../includes/mycred-shortcodes.php:793
2893
  msgid "A video ID is required for this shortcode"
2894
  msgstr "Este código corto (shortcode) precisa un ID del video."
2895
 
2896
+ #: ../includes/mycred-shortcodes.php:959 ../includes/mycred-shortcodes.php:967 ..
2897
+ #: includes/mycred-functions.php:2827 ../includes/mycred-functions.php:2847
 
 
 
 
2898
  #, php-format
2899
  msgid "You are excluded from using %s."
2900
  msgstr "Esta exluido del uso de %s."
2901
 
2902
+ #: ../includes/mycred-shortcodes.php:963 ../includes/mycred-functions.php:2837
2903
  msgid "Your balance is too low to use this feature."
2904
  msgstr "Tu saldo esta demasiado bajo para usar esta característica."
2905
 
2906
+ #: ../includes/mycred-shortcodes.php:985
2907
  #, php-format
2908
  msgid "Convert <span>%s</span> to <span>%s</span>"
2909
  msgstr "Convertir <span>%s</span> a <span>%s</span>"
2910
 
2911
+ #: ../includes/mycred-shortcodes.php:994
2912
  #, php-format
2913
  msgid "Your current %s balance"
2914
  msgstr "Tu Saldo Actual %s"
2915
 
2916
+ #: ../includes/mycred-shortcodes.php:1002
2917
  #, php-format
2918
  msgid "Minimum %s"
2919
  msgstr "Minimo %s"
2920
 
2921
+ #: ../includes/mycred-shortcodes.php:1005 ../addons/gateway/event-booking/mycred-
2922
  #: eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager.
2923
  #: php:578 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:540 ..
2924
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ..
2927
  msgid "Exchange Rate"
2928
  msgstr "Tipo de Cambio"
2929
 
2930
+ #: ../includes/mycred-shortcodes.php:1006
2931
  #, php-format
2932
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
2933
  msgstr "1 %s = <span class=\"rate\">%s</span> %s"
2934
 
2935
+ #: ../includes/mycred-shortcodes.php:1012
2936
  msgid "Exchange"
2937
  msgstr "Intercambio"
2938
 
2942
  msgstr "Descripción de %s"
2943
 
2944
  #: ../includes/mycred-overview.php:78 ../addons/stats/widgets/mycred-stats-widget-
2945
+ #: circulation.php:136 ../addons/stats/widgets/mycred-stats-widget-circulation.
2946
+ #: php:265
2947
  msgid "Total amount in circulation"
2948
  msgstr "Suma total en circulación"
2949
 
2962
  msgstr "Transferencias"
2963
 
2964
  #: ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ..
2965
+ #: addons/sell-content/myCRED-addon-sell-content.php:430
2966
  msgid "Sell Content"
2967
  msgstr "Vender Contenido"
2968
 
2969
  #: ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ..
2970
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
2971
+ #: addon-buy-creds.php:1072 ../addons/buy-creds/myCRED-addon-buy-creds.php:1714
2972
  msgid "Gateway"
2973
  msgstr "Pasarela"
2974
 
3062
  msgstr "Cancelar la Instalación"
3063
 
3064
  #: ../includes/mycred-install.php:536 ../addons/buy-creds/myCRED-addon-buy-creds.
3065
+ #: php:1689
3066
  msgid "Cancel"
3067
  msgstr "Cancelar"
3068
 
3094
  msgid "Install & Run"
3095
  msgstr "Instalar e ejecutar"
3096
 
3097
+ #: ../includes/mycred-admin.php:201
3098
  msgid "A log entry is required in order to adjust this users balance"
3099
  msgstr "Se rpecisa una entrada de registro para ajustar el saldo de este usuario"
3100
 
3101
+ #: ../includes/mycred-admin.php:203
3102
  msgid "Users balance saved"
3103
  msgstr "Saldo de Usuario(s) Guardado"
3104
 
3105
+ #: ../includes/mycred-admin.php:211
3106
  msgid "Users excluded"
3107
  msgstr "Usuarios Excluidos"
3108
 
3109
+ #: ../includes/mycred-admin.php:216
3110
  msgid ""
3111
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3112
  "rate settings and update all premium payment gateways!"
3115
  "verifica la configuración del tipo de cambio y actualiza todas las pasarelas "
3116
  "de pago!"
3117
 
3118
+ #: ../includes/mycred-admin.php:245
3119
  msgid "User is excluded"
3120
  msgstr "El Usuario ha sido excluido"
3121
 
3122
+ #: ../includes/mycred-admin.php:250
3123
  msgid "Log Entry can not be empty"
3124
  msgstr "Entrada de registro no puede estar vacío"
3125
 
3126
+ #: ../includes/mycred-admin.php:254
3127
  msgid "Amount can not be zero"
3128
  msgstr "La Cantidad no Puede ser Cero"
3129
 
3130
+ #: ../includes/mycred-admin.php:275
3131
  msgid "Failed to update this uses balance."
3132
  msgstr "No se pudo actualizar el saldo de este usuario."
3133
 
3134
+ #: ../includes/mycred-admin.php:409
3135
  msgid "Excluded"
3136
  msgstr "Excluido"
3137
 
3138
+ #: ../includes/mycred-admin.php:430
3139
  msgid "Adjust"
3140
  msgstr "Modificar"
3141
 
3142
+ #: ../includes/mycred-admin.php:472 ../includes/mycred-admin.php:473
3143
  msgid "Edit Balance"
3144
  msgstr "Editar Saldo"
3145
 
3146
+ #: ../includes/mycred-admin.php:493
3147
  msgid "Profile"
3148
  msgstr "Perfil"
3149
 
3150
+ #: ../includes/mycred-admin.php:500
3151
  msgid "Extended Profile"
3152
  msgstr "Perfil Extendido"
3153
 
3154
+ #: ../includes/mycred-admin.php:594
3155
  #, php-format
3156
  msgid "This user is excluded from using %s"
3157
  msgstr "Este usuario esta excluido de poder utilizar %s"
3158
 
3159
+ #: ../includes/mycred-admin.php:618
3160
  msgid "Edit User"
3161
  msgstr "Editar Usuario"
3162
 
3163
+ #: ../includes/mycred-admin.php:620
3164
  msgctxt "user"
3165
  msgid "Add New"
3166
  msgstr "Añadir Nuevo"
3167
 
3168
+ #: ../includes/mycred-admin.php:622
3169
  msgctxt "user"
3170
  msgid "Add Existing"
3171
  msgstr "Añadir Existente"
3172
 
3173
+ #: ../includes/mycred-admin.php:632 ../includes/mycred-admin.php:803 ..
3174
  #: addons/gateway/event-booking/mycred-eventespresso3.php:277 ..
3175
  #: addons/gateway/event-booking/mycred-eventespresso3.php:301 ..
3176
  #: addons/gateway/event-booking/mycred-eventsmanager.php:412 ..
3178
  msgid "Current Balance"
3179
  msgstr "Saldo Actual"
3180
 
3181
+ #: ../includes/mycred-admin.php:633
3182
  #, php-format
3183
  msgid "Total %s Accumulated"
3184
  msgstr "Total %s Acumulado"
3185
 
3186
+ #: ../includes/mycred-admin.php:634
3187
  #, php-format
3188
  msgid "Total %s Spent"
3189
  msgstr "Total %s Gastado"
3190
 
3191
+ #: ../includes/mycred-admin.php:645
3192
  msgid "View History"
3193
  msgstr "Ver Historial"
3194
 
3195
+ #: ../includes/mycred-admin.php:646
3196
  msgid "Exclude User"
3197
  msgstr "Excluir Usuario"
3198
 
3199
+ #: ../includes/mycred-admin.php:650
3200
  msgid "Adjust Balance"
3201
  msgstr "Ajustar Saldo"
3202
 
3203
+ #: ../includes/mycred-admin.php:659
3204
  msgid ""
3205
  "Warning! Excluding this user will result in their balance being deleted "
3206
  "along with any entries currently in your log! This can not be undone!"
3208
  "¡Aviso! ¡Excluir este usuario resultara en la eliminación de su saldo ademas "
3209
  "de cualquier entradas actuales en tu registro! ¡Esto no se puede deshacer!"
3210
 
3211
+ #: ../includes/mycred-admin.php:724
3212
  #, php-format
3213
  msgid "%singular% balance"
3214
  msgstr "%singular% saldo"
3215
 
3216
+ #: ../includes/mycred-admin.php:748 ../includes/mycred-admin.php:792 ..
3217
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503
3218
  msgid "required"
3219
  msgstr "necesario"
3220
 
3221
+ #: ../includes/mycred-admin.php:750 ../includes/mycred-admin.php:794 ..
3222
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504
3223
  msgid "optional"
3224
  msgstr "opcional"
3225
 
3226
+ #: ../includes/mycred-admin.php:764 ../includes/mycred-admin.php:808 ..
3227
  #: addons/gateway/event-booking/mycred-eventespresso3.php:470
3228
  msgid "Log Entry"
3229
  msgstr "Entrada de Registro"
3230
 
3231
+ #: ../includes/mycred-admin.php:768 ../includes/mycred-admin.php:809
3232
  msgid "Update Balance"
3233
  msgstr "Actualizar Saldo"
3234
 
3235
+ #: ../includes/mycred-admin.php:801
3236
  msgid "ID"
3237
  msgstr "ID"
3238
 
3239
+ #: ../includes/mycred-admin.php:807
3240
  msgid "A positive or negative value"
3241
  msgstr "Un valor positivo o negativo"
3242
 
3251
  msgstr "Enseñar el saldo de %s del usuario actual"
3252
 
3253
  #: ../includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:391 ..
3254
+ #: includes/importers/mycred-cubepoints.php:401 ../addons/gateway/event-
3255
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
3256
  #: eventsmanager.php:550 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
3257
  #: php:504 ../addons/gateway/carts/mycred-wpecommerce.php:354 ..
3258
  #: addons/gateway/carts/mycred-woocommerce.php:120 ..
3259
  #: addons/gateway/carts/mycred-marketpress.php:389 ../addons/ranks/myCRED-addon-
3260
+ #: ranks.php:1052 ../addons/ranks/myCRED-addon-ranks.php:1209 ../addons/email-
3261
+ #: notices/myCRED-addon-email-notices.php:844 ../addons/email-notices/myCRED-
3262
+ #: addon-email-notices.php:1089 ../addons/coupons/myCRED-addon-coupons.php:179 ..
3263
  #: addons/coupons/myCRED-addon-coupons.php:388 ../addons/sell-content/myCRED-
3264
+ #: addon-sell-content.php:442
3265
  msgid "Point Type"
3266
  msgstr "Clase de Puntos"
3267
 
3367
  msgid "Row Layout"
3368
  msgstr "Disposición de Filas"
3369
 
3370
+ #: ../includes/mycred-functions.php:86
3371
  msgid "Point"
3372
  msgstr "Punto"
3373
 
3374
+ #: ../includes/mycred-functions.php:87
3375
  msgid "Points"
3376
  msgstr "Puntos"
3377
 
3378
+ #: ../includes/mycred-functions.php:448
3379
  msgid "Deleted"
3380
  msgstr "Borrado"
3381
 
3382
+ #: ../includes/mycred-functions.php:595
3383
  msgid "Deleted Item"
3384
  msgstr "Artículo Borrado"
3385
 
3386
+ #: ../includes/mycred-functions.php:659 ../addons/gateway/carts/mycred-
3387
+ #: wpecommerce.php:341 ../addons/email-notices/myCRED-addon-email-notices.php:210
3388
  msgid "General"
3389
  msgstr "General"
3390
 
3391
+ #: ../includes/mycred-functions.php:666
3392
  msgid "User Related"
3393
  msgstr "Relacionado al Usuario"
3394
 
3395
+ #: ../includes/mycred-functions.php:673
3396
  msgid "Post Related"
3397
  msgstr "Relacionado a la Entrada"
3398
 
3399
+ #: ../includes/mycred-functions.php:680
3400
  msgid "Comment Related"
3401
  msgstr "Relacionado al Comentario"
3402
 
3403
+ #: ../includes/mycred-functions.php:687
3404
  msgid "Widget Related"
3405
  msgstr "Relacionado al Widget"
3406
 
3407
+ #: ../includes/mycred-functions.php:694
3408
  msgid "Amount Related"
3409
  msgstr "Cantidad Relacionada"
3410
 
3411
+ #: ../includes/mycred-functions.php:701
3412
  msgid "Video Related"
3413
  msgstr "Relacionado al Video"
3414
 
3415
+ #: ../includes/mycred-functions.php:712
3416
  msgid "and"
3417
  msgstr "y"
3418
 
3419
+ #: ../includes/mycred-functions.php:714
3420
  msgid "Available Template Tags:"
3421
  msgstr "Etiquetas de Plantilla Disponibles:"
3422
 
3423
+ #: ../includes/mycred-functions.php:1956
3424
  msgid "Entire Log"
3425
  msgstr "Todo el Registro"
3426
 
3427
+ #: ../includes/mycred-functions.php:1961 ../includes/mycred-functions.php:1962
3428
  msgid "Displayed Rows"
3429
  msgstr "Filas Mostradas"
3430
 
3431
+ #: ../includes/mycred-functions.php:1969
3432
  msgid "Search Results"
3433
  msgstr "Resultados de la Búsqueda"
3434
 
3435
+ #: ../includes/mycred-functions.php:1970
3436
  msgid "My Entire Log"
3437
  msgstr "Mi Registro Entero"
3438
 
3439
+ #: ../includes/mycred-functions.php:2594
3440
  msgid "Website Registration"
3441
  msgstr "Inscripción del Sitio Web"
3442
 
3443
+ #: ../includes/mycred-functions.php:2595
3444
  msgid "Website Visit"
3445
  msgstr "Visita de Sitio Web"
3446
 
3447
+ #: ../includes/mycred-functions.php:2596
3448
  msgid "Viewing Content (Member)"
3449
  msgstr "Viendo Contenido (Miembro)"
3450
 
3451
+ #: ../includes/mycred-functions.php:2597
3452
  msgid "Viewing Content (Author)"
3453
  msgstr "Viendo Contenido (Autor)"
3454
 
3455
+ #: ../includes/mycred-functions.php:2598
3456
  msgid "Logging in"
3457
  msgstr "Accediendo"
3458
 
3459
+ #: ../includes/mycred-functions.php:2599
3460
  msgid "Publishing Content"
3461
  msgstr "Publicando Contenido"
3462
 
3463
+ #: ../includes/mycred-functions.php:2601
3464
  msgid "Unapproved Comment"
3465
  msgstr "Comentario no Aprobado"
3466
 
3467
+ #: ../includes/mycred-functions.php:2602
3468
  msgid "SPAM Comment"
3469
  msgstr "Comentario SPAM"
3470
 
3471
+ #: ../includes/mycred-functions.php:2603
3472
  msgid "Deleted Comment"
3473
  msgstr "Comentario Borrado"
3474
 
3475
+ #: ../includes/mycred-functions.php:2604
3476
  msgid "Link Click"
3477
  msgstr "Click al Enlace"
3478
 
3479
+ #: ../includes/mycred-functions.php:2605
3480
  msgid "Watching Video"
3481
  msgstr "Mirando Video"
3482
 
3483
+ #: ../includes/mycred-functions.php:2606
3484
  msgid "Visitor Referral"
3485
  msgstr "Referencia de Visitante"
3486
 
3487
+ #: ../includes/mycred-functions.php:2607
3488
  msgid "Signup Referral"
3489
  msgstr "Referencia de Inscripción "
3490
 
3491
+ #: ../includes/mycred-functions.php:2611
3492
  msgid "New Profile Update"
3493
  msgstr "Nuevo Perfil Actualizado"
3494
 
3495
+ #: ../includes/mycred-functions.php:2613
3496
  msgid "Avatar Upload"
3497
  msgstr "Subir Avatar"
3498
 
3499
+ #: ../includes/mycred-functions.php:2614
3500
  msgid "New Friendship"
3501
  msgstr "Nueva Amistad"
3502
 
3503
+ #: ../includes/mycred-functions.php:2615
3504
  msgid "Ended Friendship"
3505
  msgstr "Amistad Terminada"
3506
 
3507
+ #: ../includes/mycred-functions.php:2616
3508
  msgid "New Profile Comment"
3509
  msgstr "Nuevo Comentario de Perfil"
3510
 
3511
+ #: ../includes/mycred-functions.php:2617
3512
  msgid "Profile Comment Deletion"
3513
  msgstr "Borrar Comentario del Perfil"
3514
 
3515
+ #: ../includes/mycred-functions.php:2618
3516
  msgid "New Message"
3517
  msgstr "Nuevo Mensaje"
3518
 
3519
+ #: ../includes/mycred-functions.php:2619
3520
  msgid "Sending Gift"
3521
  msgstr "Mandando Regalo"
3522
 
3523
+ #: ../includes/mycred-functions.php:2620
3524
  msgid "New Group"
3525
  msgstr "Nuevo Grupo"
3526
 
3527
+ #: ../includes/mycred-functions.php:2621
3528
  msgid "Deleted Group"
3529
  msgstr "Grupo Borrado"
3530
 
3531
+ #: ../includes/mycred-functions.php:2622
3532
  msgid "New Group Forum Topic"
3533
  msgstr "Nuevo Tema del Fórum de Grupo"
3534
 
3535
+ #: ../includes/mycred-functions.php:2623
3536
  msgid "Edit Group Forum Topic"
3537
  msgstr "Editar el Tema del Fórum de Grupo"
3538
 
3539
+ #: ../includes/mycred-functions.php:2624
3540
  msgid "New Group Forum Post"
3541
  msgstr "Nueva Entrada del Fórum de Grupo"
3542
 
3543
+ #: ../includes/mycred-functions.php:2625
3544
  msgid "Edit Group Forum Post"
3545
  msgstr "Editar Entrada del Fórum de Grupo"
3546
 
3547
+ #: ../includes/mycred-functions.php:2626
3548
  msgid "Joining Group"
3549
  msgstr "Agregar al Grupo"
3550
 
3551
+ #: ../includes/mycred-functions.php:2627
3552
  msgid "Leaving Group"
3553
  msgstr "Dejando el Grupo"
3554
 
3555
+ #: ../includes/mycred-functions.php:2628
3556
  msgid "New Group Avatar"
3557
  msgstr "Nuevo Avatar del Grupo"
3558
 
3559
+ #: ../includes/mycred-functions.php:2629
3560
  msgid "New Group Comment"
3561
  msgstr "Nuevo Comentario al Grupo\n"
3562
 
3563
+ #: ../includes/mycred-functions.php:2639
3564
  msgid "New Link"
3565
  msgstr "Nuevo Enlace"
3566
 
3567
+ #: ../includes/mycred-functions.php:2640
3568
  msgid "Link Voting"
3569
  msgstr "Votar sobre Enlace"
3570
 
3571
+ #: ../includes/mycred-functions.php:2641
3572
  msgid "Link Update"
3573
  msgstr "Enlace Actualizado"
3574
 
3575
+ #: ../includes/mycred-functions.php:2645
3576
  msgid "New Forum (bbPress)"
3577
  msgstr "Nuevo Fórum (bbPress)"
3578
 
3579
+ #: ../includes/mycred-functions.php:2646
3580
  msgid "New Forum Topic (bbPress)"
3581
  msgstr "Nuevo Tema de Fórum (bbPress)"
3582
 
3583
+ #: ../includes/mycred-functions.php:2647
3584
  msgid "Favorited Topic (bbPress)"
3585
  msgstr "Tema Favorito (bbPress)"
3586
 
3587
+ #: ../includes/mycred-functions.php:2648
3588
  msgid "New Topic Reply (bbPress)"
3589
  msgstr "Nueva Respuesta a Tema (bbPress)"
3590
 
3591
+ #: ../includes/mycred-functions.php:2652
3592
  msgid "Form Submission (Contact Form 7)"
3593
  msgstr "Sumisión de Formulario (Contact Form 7)"
3594
 
3595
+ #: ../includes/mycred-functions.php:2655
3596
  msgid "Form Submission (Gravity Form)"
3597
  msgstr "Sumisión de Formulario (Gravity Form)"
3598
 
3599
+ #: ../includes/mycred-functions.php:2658
3600
  msgid "New Forum Topic (SimplePress)"
3601
  msgstr "Nuevo Tema de Fórum (SimplePress)"
3602
 
3603
+ #: ../includes/mycred-functions.php:2659
3604
  msgid "New Forum Post (SimplePress)"
3605
  msgstr "Nueva Entrada de Fórum (SimplePress)"
3606
 
3607
+ #: ../includes/mycred-functions.php:2680
3608
  msgid "Poll Voting"
3609
  msgstr "Votación"
3610
 
3611
+ #: ../includes/mycred-functions.php:2683
3612
  msgid "Sending an Invite"
3613
  msgstr "Mandando una Invitación"
3614
 
3615
+ #: ../includes/mycred-functions.php:2684
3616
  msgid "Accepting an Invite"
3617
  msgstr "Aceptando una Invitación"
3618
 
3619
+ #: ../includes/mycred-functions.php:2690
3620
  msgid "Banking Payout"
3621
  msgstr "Desembolso Bancario"
3622
 
3623
+ #: ../includes/mycred-functions.php:2693
3624
  msgid "buyCRED Purchase (PayPal Standard)"
3625
  msgstr "Compra buyCRED (PayPal Standard)"
3626
 
3627
+ #: ../includes/mycred-functions.php:2694
3628
  msgid "buyCRED Purchase (Skrill)"
3629
  msgstr "Compra buyCRED (Skrill)"
3630
 
3631
+ #: ../includes/mycred-functions.php:2695
3632
  msgid "buyCRED Purchase (Zombaio)"
3633
  msgstr "Compra buyCRED (Zombaio)"
3634
 
3635
+ #: ../includes/mycred-functions.php:2696
3636
  msgid "buyCRED Purchase (NETBilling)"
3637
  msgstr "Compra buyCRED (NETBilling)"
3638
 
3639
+ #: ../includes/mycred-functions.php:2697
3640
  msgid "buyCRED Purchase (BitPay)"
3641
  msgstr "Compra buyCRED (BitPay)"
3642
 
3643
+ #: ../includes/mycred-functions.php:2702
3644
  msgid "Coupon Purchase"
3645
  msgstr "Compra Cupón"
3646
 
3647
+ #: ../includes/mycred-functions.php:2706
3648
  msgid "Store Purchase (WooCommerce)"
3649
  msgstr "Compra de Tienda (WooCommerce)"
3650
 
3651
+ #: ../includes/mycred-functions.php:2711
3652
  msgid "Store Purchase (MarketPress)"
3653
  msgstr "Compra de Tienda (MarketPress)"
3654
 
3655
+ #: ../includes/mycred-functions.php:2715
3656
  msgid "Store Purchase (WP E-Commerce)"
3657
  msgstr "Compra de Tienda (WP E-Commerce)"
3658
 
3659
+ #: ../includes/mycred-functions.php:2721
3660
  msgid "Event Payment (Event Espresso)"
3661
  msgstr "Pago por Evento (Event Espresso)"
3662
 
3663
+ #: ../includes/mycred-functions.php:2722
3664
  msgid "Event Sale (Event Espresso)"
3665
  msgstr "Venta de Evento (Event Espresso)"
3666
 
3667
+ #: ../includes/mycred-functions.php:2726
3668
  msgid "Event Payment (Events Manager)"
3669
  msgstr "Pago por Evento (Events Manager)"
3670
 
3671
+ #: ../includes/mycred-functions.php:2727
3672
  msgid "Event Sale (Events Manager)"
3673
  msgstr "Venta de Evento (Events Manager)"
3674
 
3675
+ #: ../includes/mycred-functions.php:2736 ../addons/transfer/myCRED-addon-transfer.
 
 
 
 
3676
  #: php:51
3677
  msgid "Transfer"
3678
  msgstr "Transferir"
3679
 
3680
+ #: ../includes/mycred-functions.php:2740
3681
  msgid "Manual Adjustment by Admin"
3682
  msgstr "Ajuste Manual por Admin"
3683
 
3684
+ #: ../includes/mycred-functions.php:2815
3685
+ msgid "Point types not found."
3686
+ msgstr "Clase de puntos no encontrado."
3687
+
3688
+ #: ../includes/mycred-functions.php:2860
3689
  #, php-format
3690
  msgid "You must exchange at least %s!"
3691
  msgstr "Debes intercambiar por lo menos %s!"
3692
 
3693
+ #: ../includes/mycred-functions.php:2869 ../addons/transfer/myCRED-addon-transfer.
3694
  #: php:161
3695
  msgid "Insufficient Funds. Please try a lower amount."
3696
  msgstr "Fondos Insuficientes. Por favor intenta con una cantidad menor."
3697
 
3698
+ #: ../includes/mycred-functions.php:2882
3699
  #, php-format
3700
  msgid "Exchange from %s"
3701
  msgstr "Intercambiar desde %s"
3702
 
3703
+ #: ../includes/mycred-functions.php:2894
3704
  #, php-format
3705
  msgid "Exchange to %s"
3706
  msgstr "Intercambiar a %s"
3707
 
3708
+ #: ../includes/mycred-functions.php:2902
3709
  #, php-format
3710
  msgid "You have successfully exchanged %s into %s."
3711
  msgstr "Has intercambiado %s a %s con éxito."
3712
 
3713
+ #: ../includes/importers/mycred-cubepoints.php:298
3714
  msgid "No balances were imported."
3715
  msgstr "Ningun saldo fue importado."
3716
 
3717
+ #: ../includes/importers/mycred-cubepoints.php:298
3718
  msgid "No log entries were imported!"
3719
  msgstr "¡No se importo ninguna entrada de registro!"
3720
 
3721
+ #: ../includes/importers/mycred-cubepoints.php:306 ../includes/importers/mycred-
3722
+ #: log-entries.php:168
3723
  #, php-format
3724
  msgid ""
3725
  "Import complete - A total of <strong>%d</strong> entries were successfully "
3728
  "Importación Finalizado - En total, <strong>%d</strong> entradas fueron "
3729
  "importado con éxito. Se saltaron <strong>%d</strong>."
3730
 
3731
+ #: ../includes/importers/mycred-cubepoints.php:320 ../includes/importers/mycred-
3732
+ #: balances.php:211 ../includes/importers/mycred-log-entries.php:180 ..
3733
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:102
3734
  msgid "View Log"
3735
  msgstr "Ver Registro"
3736
 
3737
+ #: ../includes/importers/mycred-cubepoints.php:320 ../includes/importers/mycred-
3738
+ #: balances.php:211 ../includes/importers/mycred-log-entries.php:180
3739
  msgid "Import More"
3740
  msgstr "Importar Más"
3741
 
3742
+ #: ../includes/importers/mycred-cubepoints.php:335
3743
  msgid "No CubePoints log."
3744
  msgstr "No hay registro de CubePoints."
3745
 
3746
+ #: ../includes/importers/mycred-cubepoints.php:348
3747
  msgid "Import CubePoints Log"
3748
  msgstr "Importar registro de CubePoints"
3749
 
3750
+ #: ../includes/importers/mycred-cubepoints.php:369
3751
  msgid "Select what to import"
3752
  msgstr "Elige lo que deseas importar"
3753
 
3754
+ #: ../includes/importers/mycred-cubepoints.php:370
3755
  msgid "Log Entries Only"
3756
  msgstr "Solo Entradas de Registro"
3757
 
3758
+ #: ../includes/importers/mycred-cubepoints.php:371
3759
  msgid "CubePoints Balances Only"
3760
  msgstr "Saldos de CubePoints Unicamente"
3761
 
3762
+ #: ../includes/importers/mycred-cubepoints.php:372
3763
  msgid "Log Entries and Balances"
3764
  msgstr "Solo Entradas y Saldos de Registro"
3765
 
3766
+ #: ../includes/importers/mycred-cubepoints.php:387
3767
  msgid "Import"
3768
  msgstr "Importar"
3769
 
3770
+ #: ../includes/importers/mycred-cubepoints.php:396
3771
  msgid ""
3772
  "Warning! Importing CubePoints balances will replace your users myCRED "
3773
  "balance!"
3775
  "¡Advertencia! ¡La importación de los saldos de CubePoints reemplazará el "
3776
  "saldo de myCRED para tus usuarios!"
3777
 
3778
+ #: ../includes/importers/mycred-cubepoints.php:420
3779
  msgid "Import Log"
3780
  msgstr "Importar Registro"
3781
 
3782
+ #: ../includes/importers/mycred-balances.php:104 ../includes/importers/mycred-
3783
+ #: balances.php:186 ../includes/importers/mycred-balances.php:229 ..
3784
+ #: includes/importers/mycred-balances.php:244 ../includes/importers/mycred-log-
3785
+ #: entries.php:104 ../includes/importers/mycred-log-entries.php:153 ..
3786
+ #: includes/importers/mycred-log-entries.php:199 ../includes/importers/mycred-
3787
+ #: log-entries.php:216
3788
  msgid "Sorry, there has been an error."
3789
  msgstr "Lo sentimos, se ha producido un error."
3790
 
3791
+ #: ../includes/importers/mycred-balances.php:105 ../includes/importers/mycred-log-
3792
+ #: entries.php:105
3793
  msgid "The file does not exist, please try again."
3794
  msgstr "El fichero no existe, por favor inténtelo de nuevo más tarde."
3795
 
3796
+ #: ../includes/importers/mycred-balances.php:187 ../includes/importers/mycred-log-
3797
+ #: entries.php:154
3798
  msgid "The CSV is invalid."
3799
  msgstr "El CSV no es valido."
3800
 
3801
+ #: ../includes/importers/mycred-balances.php:199
3802
  #, php-format
3803
  msgid ""
3804
  "Import complete - A total of <strong>%d</strong> balances were successfully "
3807
  "Importación Finalizado - En total, <strong>%d</strong> saldos fueron "
3808
  "importado con éxito. Se saltaron <strong>%d</strong>."
3809
 
3810
+ #: ../includes/importers/mycred-balances.php:260
3811
  msgid "Import Balances"
3812
  msgstr "Saldos Importar"
3813
 
3814
+ #: ../includes/importers/mycred-balances.php:281
3815
  msgid "Import balances from a CSV file."
3816
  msgstr "Importa saldos de registro desde un fichero CSV."
3817
 
3818
+ #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
3819
+ #: entries.php:263
3820
  msgid ""
3821
  "Before you can upload your import file, you will need to fix the following "
3822
  "error:"
3824
  "Antes que puedas subir tu fichero de importe, tendras que corregir los "
3825
  "errores siguientes:"
3826
 
3827
+ #: ../includes/importers/mycred-balances.php:304 ../includes/importers/mycred-log-
3828
+ #: entries.php:275
3829
  msgid "Choose a file from your computer:"
3830
  msgstr "Elige un fichero en tu ordenador:"
3831
 
3832
+ #: ../includes/importers/mycred-balances.php:310 ../includes/importers/mycred-log-
3833
+ #: entries.php:281
3834
  #, php-format
3835
  msgid "Maximum size: %s"
3836
  msgstr "Tamaño Máximo: %s"
3837
 
3838
+ #: ../includes/importers/mycred-balances.php:315 ../includes/importers/mycred-log-
3839
+ #: entries.php:286
3840
  msgid "OR enter path to file:"
3841
  msgstr "O rellena la ruta al fichero:"
3842
 
3843
+ #: ../includes/importers/mycred-balances.php:322 ../includes/importers/mycred-log-
3844
+ #: entries.php:293
3845
  msgid "Delimiter"
3846
  msgstr "Delimitador"
3847
 
3848
+ #: ../includes/importers/mycred-balances.php:326
3849
  msgid "Method"
3850
  msgstr "Método"
3851
 
3852
+ #: ../includes/importers/mycred-balances.php:328
3853
  msgid "Replace current balances with the amount in this CSV file"
3854
  msgstr "Sustituir los balances actuales con los montos en el archivo CSV"
3855
 
3856
+ #: ../includes/importers/mycred-balances.php:329
3857
  msgid "Adjust current balances according to the amount in this CSV file"
3858
  msgstr "Ajustar los balances actuales de acuerdo al monto en el archivo CSV"
3859
 
3860
+ #: ../includes/importers/mycred-balances.php:335 ../includes/importers/mycred-log-
3861
+ #: entries.php:299
3862
  msgid "Upload file and import"
3863
  msgstr "Subir fichero e importar"
3864
 
3865
+ #: ../includes/importers/mycred-log-entries.php:232
3866
  msgid "Import Log Entries"
3867
  msgstr "Importar Entradas de Registro"
3868
 
3869
+ #: ../includes/importers/mycred-log-entries.php:253
3870
  msgid "Import log entries from a CSV file."
3871
  msgstr "Importa las entradas de registro desde un fichero CSV."
3872
 
3873
+ #: ../addons/banking/myCRED-addon-banking.php:45 ../addons/banking/myCRED-addon-
3874
+ #: banking.php:46 ../addons/banking/myCRED-addon-banking.php:47
3875
  msgid "Banking"
3876
  msgstr "Banco"
3877
 
3878
+ #: ../addons/banking/myCRED-addon-banking.php:172
3879
  msgid "Central Banking"
3880
  msgstr "Banco Central"
3881
 
3882
+ #: ../addons/banking/myCRED-addon-banking.php:173
3883
  #, php-format
3884
  msgid ""
3885
  "Instead of creating %_plural% out of thin-air, all payouts are made from a "
3890
  "desde una cuenta nominada del \"Banco Central\". Qualquier %_plural% que un "
3891
  "usuario gaste o pierda seran depositados a esta misma cuenta."
3892
 
3893
+ #: ../addons/banking/myCRED-addon-banking.php:179 ..
3894
  #: addons/banking/services/mycred-bank-service-interest.php:512
3895
  msgid "Compound Interest"
3896
  msgstr "Interés Compuesto"
3897
 
3898
+ #: ../addons/banking/myCRED-addon-banking.php:180
3899
  #, php-format
3900
  msgid "Apply a positive or negative interest rate on your users %_plural% balances."
3901
  msgstr ""
3902
  "Aplicar un tipo de interés compuesto positivo o negativo al saldo de "
3903
  "%_plural% de tus usuarios."
3904
 
3905
+ #: ../addons/banking/myCRED-addon-banking.php:186
3906
  msgid "Recurring Payouts"
3907
  msgstr "Pagos Recurrentes"
3908
 
3909
+ #: ../addons/banking/myCRED-addon-banking.php:187
3910
  #, php-format
3911
  msgid "Setup mass %_singular% payouts for your users."
3912
  msgstr "Configurar pago en masa &_singular% para tus usuarios."
3913
 
3914
+ #: ../addons/banking/myCRED-addon-banking.php:245
3915
  #, php-format
3916
  msgid "%s Banking"
3917
  msgstr "%s Bancario"
3918
 
3919
+ #: ../addons/banking/myCRED-addon-banking.php:249
3920
  #, php-format
3921
  msgid "Your banking setup for %plural%."
3922
  msgstr "Tu configuración bancario para %plural%."
3923
 
3924
+ #: ../addons/banking/myCRED-addon-banking.php:253
3925
  msgid "WP-Cron deactivation detected!"
3926
  msgstr "¡Se detecto la desactivación de WP-Cron!"
3927
 
3928
+ #: ../addons/banking/myCRED-addon-banking.php:254
3929
  msgid "Warning! This add-on requires WP - Cron to work."
3930
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
3931
 
4122
  msgstr "Este papel de usuario esta excluido de recibir interés sobre este saldo."
4123
 
4124
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/sell-
4125
+ #: content/myCRED-addon-sell-content.php:117 ../addons/buy-creds/myCRED-addon-buy-
4126
+ #: creds.php:836
4127
  msgid "Leave empty to use the default value."
4128
  msgstr "Dejar vacio si va a utilizar el valor predefinido."
4129
 
4150
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ..
4151
  #: addons/gateway/event-booking/mycred-eventsmanager.php:540 ..
4152
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/sell-
4153
+ #: content/myCRED-addon-sell-content.php:457 ../addons/buy-creds/myCRED-addon-buy-
4154
+ #: creds.php:578
4155
  msgid "Payments"
4156
  msgstr "Pagos"
4157
 
4158
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
4159
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35 ..
4160
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/buy-
4161
+ #: creds/myCRED-addon-buy-creds.php:1688
4162
  msgid "Pay Now"
4163
  msgstr "Pagar Ahora"
4164
 
4191
  msgstr "Desactivar %s"
4192
 
4193
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:367 ../addons/buy-
4194
+ #: creds/myCRED-addon-buy-creds.php:1084
4195
  msgid "Gateway Settings"
4196
  msgstr "Configuraciones de la Pasarela de Pago"
4197
 
4233
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ..
4234
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
4235
  #: addons/transfer/includes/mycred-transfer-widgets.php:132 ../addons/sell-
4236
+ #: content/myCRED-addon-sell-content.php:500 ../addons/sell-content/myCRED-addon-
4237
+ #: sell-content.php:749
4238
  msgid "Button Label"
4239
  msgstr "Eqiqueta Asignada al Botón"
4240
 
4247
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ..
4248
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:139 ..
4249
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ../addons/sell-
4250
+ #: content/myCRED-addon-sell-content.php:491 ../addons/sell-content/myCRED-addon-
4251
+ #: sell-content.php:745
4252
  msgid "Price"
4253
  msgstr "Precio"
4254
 
4289
  "inhabilitar."
4290
 
4291
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
4292
+ #: content/myCRED-addon-sell-content.php:514
4293
  msgid "Templates"
4294
  msgstr "Plantillas"
4295
 
4896
  msgid "User Email (user_email)"
4897
  msgstr "Correo Electrónico del Usuario (user_email)"
4898
 
4899
+ #: ../addons/transfer/myCRED-addon-transfer.php:217
4900
  msgid "Select the point types that users can transfer."
4901
  msgstr "Elige el clase de punto que el usuario puede transferir."
4902
 
4903
+ #: ../addons/transfer/myCRED-addon-transfer.php:227
4904
  msgid "Log template for sending"
4905
  msgstr "Plantilla de registros para transmitir"
4906
 
4907
+ #: ../addons/transfer/myCRED-addon-transfer.php:234
4908
  msgid "Log template for receiving"
4909
  msgstr "Plantilla de registros para recibir"
4910
 
4911
+ #: ../addons/transfer/myCRED-addon-transfer.php:241
4912
  msgid "Autofill Recipient"
4913
  msgstr "Destinatario del Relleno Automático"
4914
 
4915
+ #: ../addons/transfer/myCRED-addon-transfer.php:255
4916
  msgid "Select what user details recipients should be autofilled by."
4917
  msgstr ""
4918
  "Selecciona cuales detalles del usuario al destinatario deben ser rellenados "
4919
  "automáticamente."
4920
 
4921
+ #: ../addons/transfer/myCRED-addon-transfer.php:258
4922
  msgid "Reload"
4923
  msgstr "Recargar"
4924
 
4925
+ #: ../addons/transfer/myCRED-addon-transfer.php:261
4926
  msgid "Reload page on successful transfers."
4927
  msgstr "Actualizar la pagina despues de transferencias finalizadas."
4928
 
4929
+ #: ../addons/transfer/myCRED-addon-transfer.php:285
4930
  msgid "Limit Amount"
4931
  msgstr "Limitar la Cantidad"
4932
 
4933
+ #: ../addons/transfer/myCRED-addon-transfer.php:289
4934
  msgid "Form Templates"
4935
  msgstr "Plantillas de Formulario"
4936
 
4937
+ #: ../addons/transfer/myCRED-addon-transfer.php:292
4938
  msgid "Not logged in Template"
4939
  msgstr "Plantilla de no estar ingresado"
4940
 
4941
+ #: ../addons/transfer/myCRED-addon-transfer.php:294
4942
  msgid ""
4943
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
4944
  "elements allowed!"
4946
  "Mostrar este texto cuango los usuarios no han iniciado la sesión. ¡No se "
4947
  "permite ningun elemento de HTML!"
4948
 
4949
+ #: ../addons/transfer/myCRED-addon-transfer.php:298
4950
  msgid "Balance Template"
4951
  msgstr "Plantilla de Saldo"
4952
 
4953
+ #: ../addons/transfer/myCRED-addon-transfer.php:300
4954
  msgid ""
4955
  "Template to use when displaying the users balance (if included). No HTML "
4956
  "elements allowed!"
4958
  "Utilizar esta plantilla cuando mostrando el saldo del usuario (si esta "
4959
  "incluido). ¡No se permite elementos de HTML!"
4960
 
4961
+ #: ../addons/transfer/myCRED-addon-transfer.php:304
4962
  msgid "Limit Template"
4963
  msgstr "Limitar Plantilla"
4964
 
4965
+ #: ../addons/transfer/myCRED-addon-transfer.php:306
4966
  msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
4967
  msgstr ""
4968
  "Utilizar esta plantilla cuando mostrando límites (si se utiliza). ¡No se "
4969
  "permite elementos de HTML!"
4970
 
4971
+ #: ../addons/transfer/myCRED-addon-transfer.php:310
4972
  msgid "Button Template"
4973
  msgstr "Plantilla del Botón"
4974
 
4975
+ #: ../addons/transfer/myCRED-addon-transfer.php:312
4976
  msgid "Send Transfer button template. No HTML elements allowed!"
4977
  msgstr "Plantilla del botón Enviar Transferencia ¡No se permite elementos de HTML!"
4978
 
4979
+ #: ../addons/transfer/myCRED-addon-transfer.php:315
4980
  msgid "Error Messages"
4981
  msgstr "Mensajes de Error"
4982
 
4983
  #. English needs to be corrected: "Balance too low to send."
4984
+ #: ../addons/transfer/myCRED-addon-transfer.php:318
4985
  msgid "Balance to low to send."
4986
  msgstr "Saldo insuficiente - no se puede enviar."
4987
 
4988
+ #: ../addons/transfer/myCRED-addon-transfer.php:320
4989
  msgid ""
4990
  "Text to show when a users balance is to low for transfers. Leave empty to "
4991
  "hide. No HTML elements allowed!"
4994
  "efectuar transferencias. Deje el campo vacío para ocultarlo. ¡No se permite "
4995
  "ningun elemento de HTML!"
4996
 
4997
+ #: ../addons/transfer/myCRED-addon-transfer.php:324
4998
  msgid "Transfer Limit Reached."
4999
  msgstr "Límite de Transferencia Alcanzado."
5000
 
5001
+ #: ../addons/transfer/myCRED-addon-transfer.php:326
5002
  msgid ""
5003
  "Text to show when a user has reached their transfer limit (if used). Leave "
5004
  "empty to hide. No HTML elements allowed!"
5028
  msgid "Show users limit"
5029
  msgstr "Mostrar los límites de usuarios"
5030
 
5031
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:144
5032
  msgid "username"
5033
  msgstr "nombre de usuario"
5034
 
5035
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:147
5036
  msgid "email"
5037
  msgstr "correo electrónico"
5038
 
5039
  #. is this recipients plural or recipient's with an apostrophe missing?
5040
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:149
5041
  #, php-format
5042
  msgid "recipients %s"
5043
  msgstr "destinatarios %s"
5044
 
5045
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:243
5046
  msgid "To:"
5047
  msgstr "A:"
5048
 
5049
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:249
5050
  msgid "Amount:"
5051
  msgstr "Cantidad:"
5052
 
5053
  #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
5054
+ #: php:213 ../addons/ranks/myCRED-addon-ranks.php:446 ../addons/ranks/myCRED-
5055
+ #: addon-ranks.php:455 ../addons/ranks/myCRED-addon-ranks.php:461 ..
5056
+ #: addons/ranks/myCRED-addon-ranks.php:837 ../addons/ranks/myCRED-addon-ranks.
5057
+ #: php:1322 ../addons/ranks/myCRED-addon-ranks.php:1612
5058
  msgid "Ranks"
5059
  msgstr "Rangos"
5060
 
5061
+ #: ../addons/ranks/myCRED-addon-ranks.php:427
5062
  msgid "Warning! All ranks will be deleted! This can not be undone!"
5063
  msgstr "¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer esto!"
5064
 
5065
+ #: ../addons/ranks/myCRED-addon-ranks.php:428
5066
  msgid "Are you sure you want to re-assign user ranks?"
5067
  msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
5068
 
5069
+ #: ../addons/ranks/myCRED-addon-ranks.php:450 ../addons/ranks/myCRED-addon-ranks.
5070
+ #: php:837
5071
  msgid "Rank"
5072
  msgstr "Rango"
5073
 
5074
+ #: ../addons/ranks/myCRED-addon-ranks.php:451 ../addons/email-notices/myCRED-
5075
+ #: addon-email-notices.php:175 ../addons/badges/myCRED-addon-badges.php:406 ..
5076
  #: addons/buy-creds/myCRED-addon-buy-creds.php:279 ../addons/buy-creds/myCRED-
5077
  #: addon-buy-creds.php:280
5078
  msgid "Add New"
5079
  msgstr "Añade Nuevo"
5080
 
5081
+ #: ../addons/ranks/myCRED-addon-ranks.php:452
5082
  msgid "Add New Rank"
5083
  msgstr "Añadir Nuevo Rango"
5084
 
5085
+ #: ../addons/ranks/myCRED-addon-ranks.php:453
5086
  msgid "Edit Rank"
5087
  msgstr "Editar Rango"
5088
 
5089
+ #: ../addons/ranks/myCRED-addon-ranks.php:454
5090
  msgid "New Rank"
5091
  msgstr "Nuevo Rango"
5092
 
5093
+ #: ../addons/ranks/myCRED-addon-ranks.php:456
5094
  msgid "View Rank"
5095
  msgstr "Ver Rango"
5096
 
5097
+ #: ../addons/ranks/myCRED-addon-ranks.php:457
5098
  msgid "Search Ranks"
5099
  msgstr "Búsqueda de Rangos"
5100
 
5101
+ #: ../addons/ranks/myCRED-addon-ranks.php:458
5102
  msgid "No ranks found"
5103
  msgstr "Ningun rango encontrado"
5104
 
5105
+ #: ../addons/ranks/myCRED-addon-ranks.php:459
5106
  msgid "No ranks found in Trash"
5107
  msgstr "Ningun rango encontrao el la papelera"
5108
 
5109
+ #: ../addons/ranks/myCRED-addon-ranks.php:544
5110
  #, php-format
5111
  msgid "Completed - Total of %d users effected"
5112
  msgstr "Completado - Un total %d usuarios afectados"
5113
 
5114
+ #: ../addons/ranks/myCRED-addon-ranks.php:984 ../addons/ranks/myCRED-addon-ranks.
5115
+ #: php:985 ../addons/ranks/myCRED-addon-ranks.php:986 ../addons/ranks/myCRED-
5116
+ #: addon-ranks.php:987 ../addons/ranks/myCRED-addon-ranks.php:988 ..
5117
+ #: addons/ranks/myCRED-addon-ranks.php:991 ../addons/ranks/myCRED-addon-ranks.
5118
+ #: php:992
5119
  msgid "Rank Updated."
5120
  msgstr "Rango Actualizado."
5121
 
5122
+ #: ../addons/ranks/myCRED-addon-ranks.php:989
5123
  msgid "Rank Enabled"
5124
  msgstr "Rango Habilitado"
5125
 
5126
+ #: ../addons/ranks/myCRED-addon-ranks.php:990
5127
  msgid "Rank Saved"
5128
  msgstr "Rango Guardado"
5129
 
5130
+ #: ../addons/ranks/myCRED-addon-ranks.php:1046 ../addons/ranks/myCRED-addon-ranks.
5131
+ #: php:1129
5132
  msgid "Rank Title"
5133
  msgstr "Titulo de Rango"
5134
 
5135
+ #: ../addons/ranks/myCRED-addon-ranks.php:1047
5136
  msgid "Logo"
5137
  msgstr "Logotipo"
5138
 
5139
+ #: ../addons/ranks/myCRED-addon-ranks.php:1048
5140
  msgid "Requirement"
5141
  msgstr "Requisito"
5142
 
5143
+ #: ../addons/ranks/myCRED-addon-ranks.php:1074
5144
  msgid "No Logo Set"
5145
  msgstr "No hay Logotipo Configurado"
5146
 
5147
+ #: ../addons/ranks/myCRED-addon-ranks.php:1089 ../addons/ranks/myCRED-addon-ranks.
5148
+ #: php:1094
5149
  msgid "Any Value"
5150
  msgstr "Cualquier Valor"
5151
 
5152
+ #: ../addons/ranks/myCRED-addon-ranks.php:1091 ../addons/buy-creds/myCRED-addon-
5153
+ #: buy-creds.php:642
5154
  #, php-format
5155
  msgid "Minimum %plural%"
5156
  msgstr "Minimo %_plural%"
5157
 
5158
+ #: ../addons/ranks/myCRED-addon-ranks.php:1096
5159
  #, php-format
5160
  msgid "Maximum %plural%"
5161
  msgstr "Maximo %plural%"
5162
 
5163
+ #: ../addons/ranks/myCRED-addon-ranks.php:1144
5164
  msgid "Rank Settings"
5165
  msgstr "Configuración de Rango"
5166
 
5167
+ #: ../addons/ranks/myCRED-addon-ranks.php:1198
5168
  #, php-format
5169
  msgid "Minimum %plural% to reach this rank"
5170
  msgstr "Minimo %plural% para llegar a este rango"
5171
 
5172
+ #: ../addons/ranks/myCRED-addon-ranks.php:1202
5173
  #, php-format
5174
  msgid "Maximum %plural% to be included in this rank"
5175
  msgstr "Maximo %plural% para ser incluido en este rango"
5176
 
5177
+ #: ../addons/ranks/myCRED-addon-ranks.php:1225
5178
  msgid "All Published Ranks"
5179
  msgstr "Todos los Rangos Publicados"
5180
 
5181
+ #: ../addons/ranks/myCRED-addon-ranks.php:1235 ../addons/ranks/myCRED-addon-ranks.
5182
+ #: php:1237
5183
  msgid "Not Set"
5184
  msgstr "No Configurado"
5185
 
5186
+ #: ../addons/ranks/myCRED-addon-ranks.php:1243
5187
  msgid "No Ranks found"
5188
  msgstr "Ningun rango encontrado"
5189
 
5190
+ #: ../addons/ranks/myCRED-addon-ranks.php:1327
5191
  msgid "Rank Features"
5192
  msgstr "Caracteristicas de los Rangos"
5193
 
5194
+ #: ../addons/ranks/myCRED-addon-ranks.php:1331
5195
  #, php-format
5196
  msgid "%plural% requirement"
5197
  msgstr "%plural% requisito"
5198
 
5199
+ #: ../addons/ranks/myCRED-addon-ranks.php:1332
5200
  msgid "Featured Image (Logo)"
5201
  msgstr "Imagen Principal (Logotipo)"
5202
 
5203
+ #: ../addons/ranks/myCRED-addon-ranks.php:1334
5204
  msgid "Content"
5205
  msgstr "Contenido"
5206
 
5207
+ #: ../addons/ranks/myCRED-addon-ranks.php:1336
5208
  msgid "Excerpt"
5209
  msgstr "Extracto"
5210
 
5211
+ #: ../addons/ranks/myCRED-addon-ranks.php:1338
5212
  msgid "Comments"
5213
  msgstr "Comentario"
5214
 
5215
+ #: ../addons/ranks/myCRED-addon-ranks.php:1340
5216
  msgid "Page Attributes"
5217
  msgstr "Atributos de Página"
5218
 
5219
+ #: ../addons/ranks/myCRED-addon-ranks.php:1342
5220
  msgid "Custom Fields"
5221
  msgstr "Campo Personalizado"
5222
 
5223
+ #: ../addons/ranks/myCRED-addon-ranks.php:1346
5224
  msgid "Public"
5225
  msgstr "Público"
5226
 
5227
  #. This is not clear, especially the second sentence (fragment)!
5228
+ #: ../addons/ranks/myCRED-addon-ranks.php:1350
5229
  msgid ""
5230
  "If you want to create a template archive for each rank, you must select to "
5231
  "have ranks public. Defaults to disabled."
5233
  "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
5234
  "los rangos sean público. Los valores predeterminados desactivado."
5235
 
5236
+ #: ../addons/ranks/myCRED-addon-ranks.php:1353
5237
  msgid "Archive URL"
5238
  msgstr "URL del Archivo"
5239
 
5240
+ #: ../addons/ranks/myCRED-addon-ranks.php:1357
5241
  msgid "Ignored if Ranks are not public"
5242
  msgstr "Sera Ingnorado si los Rangos no son Pulicos"
5243
 
5244
  #. not sure if this is order, as in ordering pizza or order as in rank, organization
5245
+ #: ../addons/ranks/myCRED-addon-ranks.php:1360
5246
  msgid "Display Order"
5247
  msgstr "Orden de Visualización"
5248
 
5249
+ #: ../addons/ranks/myCRED-addon-ranks.php:1368
5250
  msgid "Ascending - Lowest rank to highest"
5251
  msgstr "Ascendente - Rango más bajo a lo más alto"
5252
 
5253
+ #: ../addons/ranks/myCRED-addon-ranks.php:1369
5254
  msgid "Descending - Highest rank to lowest"
5255
  msgstr "Descendiente - Rango más alto al más bajo"
5256
 
5257
+ #: ../addons/ranks/myCRED-addon-ranks.php:1380
5258
  msgid ""
5259
  "Select in what order ranks should be displayed in your admin area and/or "
5260
  "front if ranks are \"Public\""
5262
  "Elige en que orden se debe mostrar los rangos en tu area de administrador "
5263
  "y/o en el frente si los rangos son \"Público\""
5264
 
5265
+ #: ../addons/ranks/myCRED-addon-ranks.php:1386
5266
  msgid "Rank Basis"
5267
  msgstr "Base de Rango"
5268
 
5269
+ #: ../addons/ranks/myCRED-addon-ranks.php:1389
5270
  msgid "Users are ranked according to their current balance."
5271
  msgstr "Los usuarios se clasifican según su saldo actual."
5272
 
5273
+ #: ../addons/ranks/myCRED-addon-ranks.php:1392
5274
  msgid ""
5275
  "Users are ranked according to the total amount of %_plural% they have "
5276
  "accumulated."
5278
  "Los usuarios se clasifican según la cantidad total de %_plural% que han "
5279
  "acumulado."
5280
 
5281
+ #: ../addons/ranks/myCRED-addon-ranks.php:1396 ../addons/ranks/myCRED-addon-ranks.
5282
+ #: php:1401
5283
  msgid "Calculate Totals"
5284
  msgstr "Calcular Totales"
5285
 
5286
+ #: ../addons/ranks/myCRED-addon-ranks.php:1399
5287
  msgid ""
5288
  "Once a users total has been calculated, they will be assigned to their "
5289
  "appropriate roles. For this reason, it is highly recommended that you first "
5293
  "corespondientes seran asignados. ¡Por esta razón, se recomienda altamente "
5294
  "que primero configures los rangos!"
5295
 
5296
+ #: ../addons/ranks/myCRED-addon-ranks.php:1400
5297
  msgid ""
5298
  "Depending on your log size and number of users this process may take a while."
5299
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
5304
  "\"Actualizar Configuraciones\" o refrescar la pagina hasta que se haya "
5305
  "completado!"
5306
 
5307
+ #: ../addons/ranks/myCRED-addon-ranks.php:1418
5308
  msgid "Include in Profile Header."
5309
  msgstr "Incluir en Encabezado del Perfil"
5310
 
5311
+ #: ../addons/ranks/myCRED-addon-ranks.php:1420
5312
  msgid "Include under the \"Profile\" tab and Profile Header."
5313
  msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil."
5314
 
5315
+ #: ../addons/ranks/myCRED-addon-ranks.php:1424
5316
  msgid "Rank in BuddyPress"
5317
  msgstr "Rango en BuddyPress"
5318
 
5319
+ #: ../addons/ranks/myCRED-addon-ranks.php:1464 ../addons/badges/myCRED-addon-
5320
+ #: badges.php:1047
5321
  msgid "Include in Profile"
5322
  msgstr "Incluir en el Perfil"
5323
 
5324
+ #: ../addons/ranks/myCRED-addon-ranks.php:1548
5325
  msgid "Script Communication Error"
5326
  msgstr "Error del Script de Comunicación"
5327
 
5328
+ #: ../addons/ranks/myCRED-addon-ranks.php:1619
5329
  msgid "No. of ranks"
5330
  msgstr "Numero de Rangos"
5331
 
5332
+ #: ../addons/ranks/myCRED-addon-ranks.php:1624
5333
  msgid "Remove All Ranks"
5334
  msgstr "Quitar todos los Rangos"
5335
 
5336
+ #: ../addons/ranks/myCRED-addon-ranks.php:1624
5337
  msgid "Assign Ranks to Users"
5338
  msgstr "Asignar Rango a los Usuarios"
5339
 
5340
+ #: ../addons/ranks/includes/mycred-rank-functions.php:260
5341
  msgid "mycred_get_users_rank() : Missing required user id"
5342
  msgstr "mycred_get_users_rank() : Falta el requisito id del usuario"
5343
 
5344
+ #: ../addons/ranks/includes/mycred-rank-functions.php:273
5345
  msgid "no rank"
5346
  msgstr "ningun rango"
5347
 
5348
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:118 ..
5349
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:213
5350
  msgid "No users found with this rank"
5351
  msgstr "Ningun usuario encontrado con este rango"
5352
 
5353
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:125
5354
  msgid "Rank ID is required!"
5355
  msgstr "¡ID de Rango obligatorio!"
5356
 
5357
+ #: ../addons/notifications/myCRED-addon-notifications.php:194
5358
  msgid "Notifications"
5359
  msgstr "Notificaciones"
5360
 
5361
+ #: ../addons/notifications/myCRED-addon-notifications.php:196
5362
  msgid "Styling"
5363
  msgstr "Diseño/Estilo"
5364
 
5365
+ #: ../addons/notifications/myCRED-addon-notifications.php:199
5366
  msgid "Use the included CSS Styling for notifications."
5367
  msgstr "Utilice el Estilo CSS incluido para notificaciones."
5368
 
5369
+ #: ../addons/notifications/myCRED-addon-notifications.php:206
5370
  #, php-format
5371
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
5372
  msgstr ""
5373
  "Utiliza %entry% para mostrar la entrada de registro en el aviso y %amount% "
5374
  "para la cantidad."
5375
 
5376
+ #: ../addons/notifications/myCRED-addon-notifications.php:209
5377
  msgid "Transient Lifespan"
5378
  msgstr "Duración de Transitorio"
5379
 
5380
+ #: ../addons/notifications/myCRED-addon-notifications.php:213
5381
  msgid ""
5382
  "The number of days a users notification is saved before being automatically "
5383
  "deleted."
5385
  "Cuantos dias una notificación del usuario se guarda antes de automáticamente "
5386
  "borrarse."
5387
 
5388
+ #: ../addons/notifications/myCRED-addon-notifications.php:216
5389
  msgid "Duration"
5390
  msgstr "Duracion"
5391
 
5392
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173 ../addons/email-
5393
+ #: notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-
5394
+ #: addon-email-notices.php:185 ../addons/email-notices/myCRED-addon-email-notices.
5395
+ #: php:297 ../addons/coupons/myCRED-addon-coupons.php:105
5396
  msgid "Email Notices"
5397
  msgstr "Avisos por Correo Electrónico"
5398
 
5399
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:174 ../addons/email-
5400
+ #: notices/myCRED-addon-email-notices.php:1344
5401
  msgid "Email Notice"
5402
  msgstr "Aviso por Correo Electrónico"
5403
 
5404
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:176
5405
  msgid "Add New Notice"
5406
  msgstr "Añade Nueva Notificación"
5407
 
5408
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:177
5409
  msgid "Edit Notice"
5410
  msgstr "Editar Aviso"
5411
 
5412
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:178
5413
  msgid "New Notice"
5414
  msgstr "Nuevo Aviso"
5415
 
5416
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:180
5417
  msgid "View Notice"
5418
  msgstr "Ver Aviso"
5419
 
5420
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:181
5421
  msgid "Search Email Notices"
5422
  msgstr "Búsqueda de Avisos por Correo Electrónico"
5423
 
5424
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:182
5425
  msgid "No email notices found"
5426
  msgstr "Ningun aviso por correo electrónico encontrado"
5427
 
5428
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:183
5429
  msgid "No email notices found in Trash"
5430
  msgstr "Ningun aviso por correo electrónico encontrado en la papelera"
5431
 
5432
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
5433
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:211
5434
  msgid "users balance changes"
5435
  msgstr "el saldo de usuario cambia"
5436
 
5437
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:212
5438
  msgid "user gains %_plural%"
5439
  msgstr "usuario gana %_plural%"
5440
 
5441
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:213
5442
  msgid "user lose %_plural%"
5443
  msgstr "usuario pierde %_plural%"
5444
 
5445
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:214
5446
  msgid "users balance reaches zero"
5447
  msgstr "saldo de usuario llega a cero"
5448
 
5449
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
5450
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:215
5451
  msgid "users balance goes minus"
5452
  msgstr "el saldo de usuario cae a negativo"
5453
 
5454
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:229
5455
  msgid "Sell Content Add-on"
5456
  msgstr "Extensión para Vender Contenido"
5457
 
5458
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:230
5459
  msgid "user buys content"
5460
  msgstr "usuario compra contenido"
5461
 
5462
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:231
5463
  msgid "authors content gets sold"
5464
  msgstr "el contenido del autor sera vendido"
5465
 
5466
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:238
5467
  msgid "buyCREDs Add-on"
5468
  msgstr "Extensión de compraCREDs"
5469
 
5470
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:239
5471
  msgid "user buys %_plural%"
5472
  msgstr "usuario compra %_plural%"
5473
 
5474
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:246
5475
  msgid "Transfer Add-on"
5476
  msgstr "Extensión de Transferencias"
5477
 
5478
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:247
5479
  msgid "user sends %_plural%"
5480
  msgstr "usuario manda %_plural%"
5481
 
5482
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:248
5483
  msgid "user receives %_plural%"
5484
  msgstr "usuario recibe %_plural%"
5485
 
5486
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:255
5487
  msgid "Ranks Add-on"
5488
  msgstr "Extensión de Rangos"
5489
 
5490
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:256
5491
  msgid "user is demoted"
5492
  msgstr "se ha degrado al usuario"
5493
 
5494
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:257
5495
  msgid "user is promoted"
5496
  msgstr "se ha promovido al usuario"
5497
 
5498
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299
5499
  msgid ""
5500
  "Settings that apply to all email notices and can not be overridden for "
5501
  "individual emails."
5503
  "Ajustes que se aplica a todos los correos electrónicos y que no seran "
5504
  "anulados para correos electronicos especificos."
5505
 
5506
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:300
5507
  msgid "Email Format"
5508
  msgstr "Formato de Correo Electrónico"
5509
 
5510
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:304
5511
  msgid "Plain text emails only."
5512
  msgstr "Correo electrónico usando texto sin formato."
5513
 
5514
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:308
5515
  msgid "HTML or Plain text emails."
5516
  msgstr "Correo electrónico usando HTML o texto sin formato."
5517
 
5518
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:311
5519
  msgid "Filters"
5520
  msgstr "Filtros"
5521
 
5522
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:315
5523
  msgid ""
5524
  "Allow WordPress and Third Party Plugins to filter the email subject before "
5525
  "an email is sent."
5527
  "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
5528
  "correo electrónico antes de enviarlo."
5529
 
5530
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:319
5531
  msgid ""
5532
  "Allow WordPress and Third Party Plugins to filter the email content before "
5533
  "an email is sent."
5535
  "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
5536
  "correo electrónico antes de enviarlo."
5537
 
5538
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:325 ../addons/email-
5539
+ #: notices/myCRED-addon-email-notices.php:331
5540
  msgid "Email Schedule"
5541
  msgstr "Itinerario de Emails"
5542
 
5543
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:327
5544
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
5545
  msgstr "WordPress Cron esta desactivado. Los emails seran mandados inmediatamente."
5546
 
5547
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:335
5548
  msgid "Send emails immediately"
5549
  msgstr "Mandar emails inmediatamente"
5550
 
5551
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:339
5552
  msgid "Send emails once an hour"
5553
  msgstr "Mandar emails una vez a la hora"
5554
 
5555
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:343
5556
  msgid "Send emails once a day"
5557
  msgstr "Mandar emails una vez al dia"
5558
 
5559
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346
5560
  msgid "Subscriptions"
5561
  msgstr "Suscripciones"
5562
 
5563
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:348
5564
  #, php-format
5565
  msgid ""
5566
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
5569
  "Utilize el %s codigo corto para permitir que los usuarios suscriben o darsen "
5570
  "de baja a informes vía correo electrónico."
5571
 
5572
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:353
5573
  msgid "SMTP Override"
5574
  msgstr "Invalidar SMTP"
5575
 
5576
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
5577
  msgid ""
5578
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
5579
  "use a SMTP plugin for emails."
5581
  "Depurar SMTP. Habilitar si hay erores con wp_mail() o si utiliza un plugin "
5582
  "SMTP para email."
5583
 
5584
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:360
5585
  msgid ""
5586
  "Default email settings. These settings can be individually overridden when "
5587
  "editing emails."
5589
  "Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
5590
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
5591
 
5592
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361 ../addons/email-
5593
+ #: notices/myCRED-addon-email-notices.php:936
5594
  msgid "Email Settings"
5595
  msgstr "Configuraciones de Correo Electrónico"
5596
 
5597
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:364 ../addons/email-
5598
+ #: notices/myCRED-addon-email-notices.php:1114
5599
  msgid "Senders Name:"
5600
  msgstr "Nombre del Remitente"
5601
 
5602
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:368 ../addons/email-
5603
+ #: notices/myCRED-addon-email-notices.php:1116
5604
  msgid "Senders Email:"
5605
  msgstr "Correo Electrónico del Remitente:"
5606
 
5607
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:372
5608
  msgid "Reply-To:"
5609
  msgstr "Responder-A:"
5610
 
5611
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:376
5612
  msgid "Default Email Content"
5613
  msgstr "Contenido de Correo Electrónico Predefinido"
5614
 
5615
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:380
5616
  msgid "Default email content."
5617
  msgstr "Contenido de correo electrónico predefinido."
5618
 
5619
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:383
5620
  msgid "Default Email Styling"
5621
  msgstr "Estilo de Correo Electrónico Predefinido"
5622
 
5623
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:387
5624
  msgid "Ignored if HTML is not allowed in emails."
5625
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
5626
 
5627
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:839 ../addons/email-
5628
+ #: notices/myCRED-addon-email-notices.php:991
5629
  msgid "Email Subject"
5630
  msgstr "Asunto del Correo Electrónico"
5631
 
5632
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:840 ..
5633
+ #: addons/badges/myCRED-addon-badges.php:1229
5634
  msgid "Status"
5635
  msgstr "Estatus"
5636
 
5637
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866
5638
  msgid "Not Active"
5639
  msgstr "No esta Activo"
5640
 
5641
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:869
5642
  #, php-format
5643
  msgid "Scheduled:<br /><strong>%1$s</strong>"
5644
  msgstr "Programada:<br /><strong>%1$s</strong>"
5645
 
5646
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:874
5647
  msgid "Active"
5648
  msgstr "Activo"
5649
 
5650
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:876
5651
  #, php-format
5652
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
5653
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
5654
 
5655
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:889
5656
  msgid "Email is sent when"
5657
  msgstr "el Correo Electrónico se envia cuando"
5658
 
5659
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:891
5660
  msgid "Missing instance for this notice!"
5661
  msgstr "¡Falta una instancia para este aviso!"
5662
 
5663
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:900 ../addons/email-
5664
+ #: notices/myCRED-addon-email-notices.php:902 ../addons/email-notices/myCRED-
5665
+ #: addon-email-notices.php:904
5666
  msgid "Sent To"
5667
  msgstr "Enviado A:"
5668
 
5669
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:902 ../addons/email-
5670
+ #: notices/myCRED-addon-email-notices.php:1077
5671
  msgid "Administrator"
5672
  msgstr "Administrador"
5673
 
5674
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
5675
  msgid "Both Administrator and User"
5676
  msgstr "Tanto Administrador como Usuario"
5677
 
5678
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:945
5679
  msgid "Available Template Tags"
5680
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
5681
 
5682
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:956
5683
  msgid "Email Header"
5684
  msgstr "Encabezado del Correo Electrónico"
5685
 
5686
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1033
5687
  msgid "Send this email notice when..."
5688
  msgstr "Envia este aviso por correo electrónico cuando..."
5689
 
5690
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
5691
  msgid "Recipient:"
5692
  msgstr "Destinatario:"
5693
 
5694
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
5695
  msgid "Both"
5696
  msgstr "Ambos"
5697
 
5698
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1118
5699
  msgid "Reply-To Email:"
5700
  msgstr "Responder-A Correo Electrónico:"
5701
 
5702
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1125
5703
  msgid "Save"
5704
  msgstr "Guardar"
5705
 
5706
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1139
5707
  msgid "CSS Styling"
5708
  msgstr "Estilo CSS"
5709
 
5710
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1157
5711
  msgid "Site Related"
5712
  msgstr "Relacionado al Sitio"
5713
 
5714
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
5715
  msgid "Your websites title"
5716
  msgstr "Titulo de tu pagina web"
5717
 
5718
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1159
5719
  msgid "Your websites address"
5720
  msgstr "Dirección de tu pagina web"
5721
 
5722
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1160
5723
  msgid "Your websites tagline (description)"
5724
  msgstr "La descripción de tu sitio web (lema o eslogan)"
5725
 
5726
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1161
5727
  msgid "Your websites admin email"
5728
  msgstr "El correo electrónico de admin para tu pagina web"
5729
 
5730
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1162
5731
  msgid "Total number of blog members"
5732
  msgstr "Número total de miembros del blog"
5733
 
5734
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1248 ../addons/email-
5735
+ #: notices/myCRED-addon-email-notices.php:1251 ../addons/email-notices/myCRED-
5736
+ #: addon-email-notices.php:1257
5737
  msgid "Email Notice Updated."
5738
  msgstr "Aviso atraves de correo electrónico Actualizado."
5739
 
5740
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1253
5741
  msgid "Email Notice Activated"
5742
  msgstr "Notificación atraves de Correo Electrónico Activado"
5743
 
5744
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1254
5745
  msgid "Email Notice Saved"
5746
  msgstr "Aviso por Correo Electrónico Guardado"
5747
 
5748
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1276
5749
  msgid ""
5750
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
5751
  "are not yet ready to use this email notice!"
5753
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
5754
  "si aun no estás listo para utilizar este aviso por email!"
5755
 
5756
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1278
5757
  #, php-format
5758
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
5759
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
5760
 
5761
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1280
5762
  msgid "This email notice is active."
5763
  msgstr "Esta notificación de correo electrónico esta activada."
5764
 
5765
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1292
5766
  msgid "Settings saved."
5767
  msgstr "Configuraciones Guardadas"
5768
 
5769
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1343
5770
  msgid "Unsubscribe"
5771
  msgstr "Cancelar la Suscripción"
5772
 
5773
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1365
5774
  msgid "There are no email notifications yet."
5775
  msgstr "Todavía no hay notificaciones de email."
5776
 
5777
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1372 ..
5778
+ #: addons/badges/myCRED-addon-badges.php:1248
5779
  msgid "Save Changes"
5780
  msgstr "Guardar Cambios"
5781
 
5782
+ #: ../addons/badges/myCRED-addon-badges.php:49 ../addons/badges/myCRED-addon-
5783
+ #: badges.php:50 ../addons/badges/myCRED-addon-badges.php:51 ..
5784
+ #: addons/badges/myCRED-addon-badges.php:157 ../addons/badges/myCRED-addon-
5785
+ #: badges.php:158 ../addons/badges/myCRED-addon-badges.php:404 ..
5786
+ #: addons/badges/myCRED-addon-badges.php:410 ../addons/badges/myCRED-addon-
5787
+ #: badges.php:416
5788
  msgid "Badges"
5789
  msgstr "Insignias"
5790
 
5791
+ #: ../addons/badges/myCRED-addon-badges.php:277
5792
  #, php-format
5793
  msgid "%d Users earned this badge."
5794
  msgstr "%d Usuarios que han ganado esta insignia."
5795
 
5796
+ #: ../addons/badges/myCRED-addon-badges.php:281
5797
  msgid "No users has yet earned this badge."
5798
  msgstr "Ningun usuario ha ganado esta insignia."
5799
 
5800
+ #: ../addons/badges/myCRED-addon-badges.php:307
5801
  #, php-format
5802
  msgid "%s connections where removed."
5803
  msgstr "%s conexiones han sido quitados."
5804
 
5805
+ #: ../addons/badges/myCRED-addon-badges.php:405
5806
  msgid "Badge"
5807
  msgstr "Insignia"
5808
 
5809
+ #: ../addons/badges/myCRED-addon-badges.php:407
5810
  msgid "Add New Badge"
5811
  msgstr "Añadir Nueva Insignia"
5812
 
5813
+ #: ../addons/badges/myCRED-addon-badges.php:408
5814
  msgid "Edit Badge"
5815
  msgstr "Editar Insignia"
5816
 
5817
+ #: ../addons/badges/myCRED-addon-badges.php:409
5818
  msgid "New Badge"
5819
  msgstr "Nueva Insignia"
5820
 
5821
+ #: ../addons/badges/myCRED-addon-badges.php:411
5822
  msgid "View Badge"
5823
  msgstr "Ver Insignia"
5824
 
5825
+ #: ../addons/badges/myCRED-addon-badges.php:412
5826
  msgid "Search Badge"
5827
  msgstr "Buscar Insignia"
5828
 
5829
+ #: ../addons/badges/myCRED-addon-badges.php:413
5830
  msgid "No badges found"
5831
  msgstr "Ninguna Insignia Encontrada"
5832
 
5833
+ #: ../addons/badges/myCRED-addon-badges.php:414
5834
  msgid "No badges found in Trash"
5835
  msgstr "Ninguna Insignia Encontrada en la Papelera"
5836
 
5837
+ #: ../addons/badges/myCRED-addon-badges.php:460 ../addons/badges/myCRED-addon-
5838
+ #: badges.php:568
5839
  msgid "Badge Name"
5840
  msgstr "Nombre de Insignia"
5841
 
5842
+ #: ../addons/badges/myCRED-addon-badges.php:461
5843
  msgid "Badge Images"
5844
  msgstr "Imagen de la Insignia"
5845
 
5846
+ #: ../addons/badges/myCRED-addon-badges.php:462
5847
  msgid "Requirements"
5848
  msgstr "Requisitos"
5849
 
5850
+ #: ../addons/badges/myCRED-addon-badges.php:504
5851
  msgid "A user must have gained or lost:"
5852
  msgstr "Un usuario deberia ganado o perdido:"
5853
 
5854
+ #: ../addons/badges/myCRED-addon-badges.php:543 ../addons/badges/myCRED-addon-
5855
+ #: badges.php:546 ../addons/badges/myCRED-addon-badges.php:550 ..
5856
+ #: addons/badges/myCRED-addon-badges.php:551 ../addons/badges/myCRED-addon-
5857
+ #: badges.php:552
5858
  msgid "Badge Updated."
5859
  msgstr "Insignia Actualizada"
5860
 
5861
+ #: ../addons/badges/myCRED-addon-badges.php:548
5862
  msgid "Badge Enabled"
5863
  msgstr "Insignia Habilitado"
5864
 
5865
+ #: ../addons/badges/myCRED-addon-badges.php:549
5866
  msgid "Badge Saved"
5867
  msgstr "Insignia Guardada"
5868
 
5869
+ #: ../addons/badges/myCRED-addon-badges.php:611
5870
  msgid "Assign Badge"
5871
  msgstr "Asignar Insignia"
5872
 
5873
+ #: ../addons/badges/myCRED-addon-badges.php:612
5874
  msgid "Remove Connections"
5875
  msgstr "Quitar Conexiones"
5876
 
5877
+ #: ../addons/badges/myCRED-addon-badges.php:671
5878
  msgid "Time(s)"
5879
  msgstr "Tiempo(s)"
5880
 
5881
+ #: ../addons/badges/myCRED-addon-badges.php:672
5882
  msgid "In total"
5883
  msgstr "En Total"
5884
 
5885
+ #: ../addons/badges/myCRED-addon-badges.php:706 ../addons/badges/myCRED-addon-
5886
+ #: badges.php:809 ../addons/badges/myCRED-addon-badges.php:869 ..
5887
+ #: addons/badges/myCRED-addon-badges.php:884
5888
  msgid "Badge Image"
5889
  msgstr "Imagen de la Insignia"
5890
 
5891
+ #: ../addons/badges/myCRED-addon-badges.php:707 ../addons/badges/myCRED-addon-
5892
+ #: badges.php:707
5893
  msgid "Set badge image"
5894
  msgstr "Configurar la imagen para la insignia"
5895
 
5896
+ #: ../addons/badges/myCRED-addon-badges.php:718
5897
  msgid "Default Image"
5898
  msgstr "Imagen Predefinida"
5899
 
5900
+ #: ../addons/badges/myCRED-addon-badges.php:719 ../addons/badges/myCRED-addon-
5901
+ #: badges.php:779 ../addons/badges/myCRED-addon-badges.php:810 ..
5902
+ #: addons/badges/myCRED-addon-badges.php:869
5903
  msgid "image url"
5904
  msgstr "enlace de la imagen"
5905
 
5906
+ #: ../addons/badges/myCRED-addon-badges.php:778
5907
  msgid "Main Image"
5908
  msgstr "Imagen Principal"
5909
 
5910
+ #: ../addons/badges/myCRED-addon-badges.php:886
5911
  msgid "Use as Badge"
5912
  msgstr "Utiliza como Insignia"
5913
 
5914
+ #: ../addons/badges/myCRED-addon-badges.php:1048
5915
  msgid "Include in Forum Replies"
5916
  msgstr "Incluir en Respuesta de Fórum"
5917
 
5918
+ #: ../addons/badges/myCRED-addon-badges.php:1049
5919
  msgid "Include in Profile and Forum Replies"
5920
  msgstr "Incluir en Perfil y Respuestas de Fórum"
5921
 
5922
+ #: ../addons/badges/includes/mycred-badge-functions.php:74
5923
  #, php-format
5924
  msgctxt "\"x points\" for \"reference\" in total"
5925
  msgid "%s for %s in total"
6162
  msgstr "Aplica el Cupón"
6163
 
6164
  #: ../addons/sell-content/myCRED-addon-sell-content.php:44 ../addons/buy-
6165
+ #: creds/myCRED-addon-buy-creds.php:1541
6166
  msgid "Buy Now"
6167
  msgstr "Compra Ahora"
6168
 
6169
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:76
6170
  msgid "Hours"
6171
  msgstr "Horas"
6172
 
6173
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:114
6174
  msgid "Profit Share"
6175
  msgstr "Reparto de Utilidades"
6176
 
6177
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:122
6178
  msgid "Save Profit Share"
6179
  msgstr "Guardar Reparto de Utilidades"
6180
 
6181
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:175
6182
  msgid "Profit Share override saved"
6183
  msgstr "Anulación de reparto de utilidades guardado"
6184
 
6185
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:347
6186
  msgid "You can not buy this content."
6187
  msgstr "No puedes comprar este contenido."
6188
 
6189
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:398
6190
  msgid "Error. Try Again"
6191
  msgstr "Error. Inténtelo de nuevo"
6192
 
6193
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:423
6194
  msgid "No Payout. Just charge."
6195
  msgstr "No Desembolsar. Solo cobrar."
6196
 
6197
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:424
6198
  msgid "Pay Content Author."
6199
  msgstr "Pagar al Autor del Contenido"
6200
 
6201
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:432
6202
  msgid "Post Types"
6203
  msgstr "Post Types"
6204
 
6205
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:436
6206
  msgid "Comma separated list of post types that can be sold."
6207
  msgstr "Lista separada por comas de post types que se puede vender."
6208
 
6209
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:475
6210
  msgid "Percentage to pay Author"
6211
  msgstr "Porcentaje que pagar al Autor"
6212
 
6213
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:477
6214
  msgid ""
6215
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
6216
  "authors are not paid."
6219
  "si no se les paga a los autores."
6220
 
6221
  #. also, "por defecto" and "predeterminados"
6222
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:488
6223
  msgid "Defaults"
6224
  msgstr "Predefinidos"
6225
 
6226
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:496
6227
  msgid "Allow authors to change price."
6228
  msgstr "Permitir que los Autores cambien el precio."
6229
 
6230
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:505
6231
  msgid "Allow authors to change button label."
6232
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
6233
 
6234
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:509
6235
  msgid "Purchases expire after"
6236
  msgstr "Compras caducan despues de"
6237
 
6238
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:511
6239
  msgid "Use zero for permanent sales."
6240
  msgstr "Usa cero para ventas permanentes."
6241
 
6242
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:517
6243
  msgid "For Visitors"
6244
  msgstr "Para Visitantes"
6245
 
6246
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:527
6247
  #, php-format
6248
  msgid ""
6249
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
6252
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
6253
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
6254
 
6255
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:534
6256
  msgid "For Members"
6257
  msgstr "Para Miembros"
6258
 
6259
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:544 ../addons/sell-
6260
+ #: content/myCRED-addon-sell-content.php:559
6261
  #, php-format
6262
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
6263
  msgstr ""
6264
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
6265
  "realizar compras!"
6266
 
6267
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:549
6268
  msgid "For members that can not afford to buy"
6269
  msgstr "Para los miembros que no tienen al alcance comprar"
6270
 
6271
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:563
6272
  msgid "Log template for Purchases"
6273
  msgstr "Plantilla de registros para Compras"
6274
 
6275
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:570
6276
  msgid "Log template for Sales"
6277
  msgstr "Plantilla de registros para Ventas"
6278
 
6279
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:627
6280
  #, php-format
6281
  msgid "%s Sell This"
6282
  msgstr "%s Vende Esto"
6283
 
6284
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:694
6285
  #, php-format
6286
  msgid "%s Sell Content needs to be setup before you can use this feature."
6287
  msgstr ""
6288
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
6289
  "esta característica técnica."
6290
 
6291
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:698
6292
  msgid "Setup add-on"
6293
  msgstr "Configurar Extensión"
6294
 
6295
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:698
6296
  msgid "Lets do it"
6297
  msgstr "Vamos a hacerlo."
6298
 
6299
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:739
6300
  #, php-format
6301
  msgid "Enable sale of this %s"
6302
  msgstr "Habilitar la venta de esto %s"
6303
 
6304
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:753
6305
  msgid "Purchase expires after"
6306
  msgstr "Compra caduca despues de"
6307
 
6308
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1105
6309
  msgid "Thank you for your purchase!"
6310
  msgstr "¡Gracias por su compra!"
6311
 
6312
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1201 ../addons/sell-
6313
+ #: content/myCRED-addon-sell-content.php:1293
6314
  msgid "The following content is set for sale:"
6315
  msgstr "El siguiente contenido esta listo para la venta:"
6316
 
6317
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1314 ../addons/buy-
6318
+ #: creds/myCRED-addon-buy-creds.php:1271
6319
  msgid "No purchases found"
6320
  msgstr "No se encontro ninguna compra"
6321
 
6322
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1363
6323
  msgid "Purchased"
6324
  msgstr "Comprado"
6325
 
6348
  msgstr "Editar Pago Pendiente"
6349
 
6350
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:284 ../addons/buy-creds/myCRED-
6351
+ #: addon-buy-creds.php:1754
6352
  msgid "No pending payments found"
6353
  msgstr "Ningun pago pendiente encontrado"
6354
 
6356
  msgid "Not found in Trash"
6357
  msgstr "No ha sido encontrado en la Papelera"
6358
 
6359
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
6360
+ #: addon-buy-creds.php:1077 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713
6361
  msgid "Transaction ID"
6362
  msgstr "Identificación de la Transacción"
6363
 
6364
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
6365
+ #: addon-buy-creds.php:1073
6366
  msgid "Buyer"
6367
  msgstr "Comprador"
6368
 
6369
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
6370
+ #: addon-buy-creds.php:1716 ../addons/buy-creds/abstracts/mycred-abstract-payment-
6371
  #: gateway.php:594
6372
  msgid "Cost"
6373
  msgstr "Coste"
6374
 
6375
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
6376
  msgid "Type"
6377
  msgstr "Clase"
6378
 
6379
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
6380
  msgid "Pay Out"
6381
  msgstr "Desembolso"
6382
 
6383
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
6384
  msgid "buyCRED Purchase Log"
6385
  msgstr "compraCRED Registro de Compras"
6386
 
6387
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
6388
+ #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:921
6389
  msgid "Purchase Log"
6390
  msgstr "Registro de Compras"
6391
 
6392
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
6393
  msgid "Please login to purchase %_plural%"
6394
  msgstr "Identifícate antes de comprar %_plural%"
6395
 
6396
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
6397
  #, php-format
6398
  msgid "Gift purchase from %display_name%."
6399
  msgstr "Regalo comprado de parte de %display_name%."
6400
 
6401
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
6402
  #, php-format
6403
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
6404
  msgstr ""
6405
  "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
6406
  "a 1."
6407
 
6408
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
6409
  msgid "Select the point types that users can buy. You must select at least one!"
6410
  msgstr ""
6411
  "Elige el clase de punto que el usuario puede comprar. Debes eligir al menos "
6412
  "uno!"
6413
 
6414
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
6415
  msgid "Login Template"
6416
  msgstr "Plantilla de Ingreso"
6417
 
6418
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
6419
  msgid "Content to show when a user is not logged in."
6420
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
6421
 
6422
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
6423
  msgid "Thank You Page"
6424
  msgstr "Página de Agradecimiento"
6425
 
6426
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
6427
+ #: addon-buy-creds.php:705
6428
  msgid "Custom URL"
6429
  msgstr "URL Personalizada"
6430
 
6431
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
6432
+ #: addon-buy-creds.php:710
6433
  msgid "Page"
6434
  msgstr "Página"
6435
 
6436
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
6437
  msgid "Cancellation Page"
6438
  msgstr "Página de Cancelación"
6439
 
6440
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
6441
  #, php-format
6442
  msgid "Show seperate log for %_plural% purchases."
6443
  msgstr "Mostrar registro distinto para compras de %_plural%."
6444
 
6445
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
6446
  msgid "Gifting"
6447
  msgstr "Regalar"
6448
 
6449
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
6450
  #, php-format
6451
  msgid "Allow users to buy %_plural% for other users."
6452
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
6453
 
6454
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
6455
  #, php-format
6456
  msgid "Allow users to buy %_plural% for content authors."
6457
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
6458
 
6459
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
6460
  #, php-format
6461
  msgid "%s Exchange Rate"
6462
  msgstr "Tipo de Cambio %s"
6463
 
6464
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
6465
  msgid "Save Exchange Rates"
6466
  msgstr "Guardar Tipo de Cambio"
6467
 
6468
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899
6469
  msgid "Exchange rate override saved"
6470
  msgstr "Anulación de de tipo de cambio guardado"
6471
 
6472
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
6473
  msgid "Payment completed"
6474
  msgstr "Pago finalizado"
6475
 
6476
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:921
6477
  #, php-format
6478
  msgid "%s Payment Gateways"
6479
  msgstr "%s Pasarelas de Pago"
6480
 
6481
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:921 ../addons/buy-creds/myCRED-
6482
+ #: addon-buy-creds.php:1084
6483
  msgid "buyCRED Settings"
6484
  msgstr "Configuraciones de compraCRED"
6485
 
6486
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:946
6487
  msgid "Test Mode"
6488
  msgstr "Modo de Prueba"
6489
 
6490
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:948
6491
  msgid "Enabled"
6492
  msgstr "Habilitado"
6493
 
6494
  #. also, "Inhabilitar"
6495
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:951
6496
  msgid "Disabled"
6497
  msgstr "Desactivado"
6498
 
6499
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:961
6500
  msgid "Sandbox Mode"
6501
  msgstr "Modo Entorno Aislado"
6502
 
6503
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:964
6504
  msgid "Enable for test purchases."
6505
  msgstr "Habilitar para compras de prueba."
6506
 
6507
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986
6508
  msgid "More Gateways"
6509
  msgstr "Mas Pasarelas"
6510
 
6511
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1076
6512
  msgid "Payed"
6513
  msgstr "Pagado"
6514
 
6515
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1084
6516
  msgid "<strong>buy</strong>CRED Purchase Log"
6517
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
6518
 
6519
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1349 ../addons/buy-creds/myCRED-
6520
+ #: addon-buy-creds.php:1466
6521
  msgid "This Add-on needs to setup before you can use this shortcode."
6522
  msgstr ""
6523
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
6524
  "corto (shortcode)."
6525
 
6526
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1368 ../addons/buy-creds/myCRED-
6527
+ #: addon-buy-creds.php:1485
6528
  msgid "No gateways installed."
6529
  msgstr "Ningun pasarela de pago instalado."
6530
 
6531
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1369 ../addons/buy-creds/myCRED-
6532
+ #: addon-buy-creds.php:1486
6533
  msgid "Gateway does not exist."
6534
  msgstr "Puerta de enlace no existe."
6535
 
6536
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1417
6537
  msgid "Yourself"
6538
  msgstr "Tu mismo"
6539
 
6540
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1487
6541
  msgid "No active gateways found."
6542
  msgstr "No se encuentra ningun puerta de enlace activo."
6543
 
6544
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1488
6545
  msgid "The selected gateway is not active."
6546
  msgstr "La puerta de enlace seleccionada no esta activo."
6547
 
6548
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1535
6549
  #, php-format
6550
  msgid "Buy with %gateway%"
6551
  msgstr "Compra con %gateway%"
6552
 
6553
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1586
6554
  msgid "No users found"
6555
  msgstr "Ningun Usuario Encontrado"
6556
 
6557
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1596
6558
  msgid "To"
6559
  msgstr "A"
6560
 
6561
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1613
6562
  msgid "Select Amount"
6563
  msgstr "Selecciona la Cantidad"
6564
 
6565
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1637
6566
  msgid "min."
6567
  msgstr "min."
6568
 
6569
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1645
6570
  msgid "Select Gateway"
6571
  msgstr "Selecciona la Pasarela de Pago"
6572
 
lang/mycred-es_VE.mo CHANGED
Binary file
lang/mycred-es_VE.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Mon Nov 23 2015 17:46:43 GMT+0100 (CET)\n"
7
  "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
@@ -30,10 +30,7 @@ msgid "http://mycred.me"
30
  msgstr ""
31
 
32
  #. Description of the plugin
33
- msgid ""
34
- "<strong>my</strong>CRED is an adaptive points management system for "
35
- "WordPress powered websites, giving you full control on how points are gained,"
36
- " used, traded, managed, logged or presented."
37
  msgstr ""
38
 
39
  #. Author of the plugin
@@ -44,7 +41,7 @@ msgstr ""
44
  msgid "http://www.merovingi.com"
45
  msgstr ""
46
 
47
- #: ../mycred.php:685
48
  msgid ""
49
  "In order to adjust the number of decimal places you want to use we must "
50
  "update your log. It is highly recommended that you backup your current log "
@@ -109,21 +106,21 @@ msgid ""
109
  "other characters will be deleted!"
110
  msgstr ""
111
 
112
- #: ../modules/mycred-module-addons.php:160
113
  msgid "Give your users badges based on their interaction with your website."
114
  msgstr ""
115
 
116
- #: ../modules/mycred-module-addons.php:260
117
  msgid ""
118
  "Gives you access to your myCRED Staticstics based on your users gains and "
119
  "loses."
120
  msgstr ""
121
 
122
- #: ../modules/mycred-module-addons.php:328
123
  msgid "Add-ons Reloaded"
124
  msgstr ""
125
 
126
- #: ../modules/mycred-module-addons.php:358
127
  msgid "Reload Add-ons"
128
  msgstr ""
129
 
@@ -133,161 +130,161 @@ msgid ""
133
  "Certain hooks and shortcodes will not work correctly!"
134
  msgstr ""
135
 
136
- #: ../modules/mycred-module-hooks.php:114
137
  #, php-format
138
  msgid "%plural% for daily visits"
139
  msgstr ""
140
 
141
- #: ../modules/mycred-module-hooks.php:115
142
  #, php-format
143
  msgid "Award %_plural% for users visiting your website on a daily basis."
144
  msgstr ""
145
 
146
- #: ../modules/mycred-module-hooks.php:121
147
  #, php-format
148
  msgid "%plural% for viewing content"
149
  msgstr ""
150
 
151
- #: ../modules/mycred-module-hooks.php:122
152
  #, php-format
153
  msgid ""
154
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
155
  "authors for members viewing their content."
156
  msgstr ""
157
 
158
- #: ../modules/mycred-module-hooks.php:673
159
  #, php-format
160
  msgid "%plural% for viewing Posts"
161
  msgstr ""
162
 
163
- #: ../modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:693 .
164
- #: ./modules/mycred-module-hooks.php:707 ../modules/mycred-module-hooks.php:724 ..
165
- #: modules/mycred-module-hooks.php:784 ../modules/mycred-module-hooks.php:801
166
  msgid "Member"
167
  msgstr ""
168
 
169
- #: ../modules/mycred-module-hooks.php:704
170
  #, php-format
171
  msgid "%plural% for viewing Pages"
172
  msgstr ""
173
 
174
- #: ../modules/mycred-module-hooks.php:781
175
  #, php-format
176
  msgid "%plural% for viewing %s"
177
  msgstr ""
178
 
179
- #: ../modules/mycred-module-hooks.php:2678
180
  msgid "Visitors Referred"
181
  msgstr ""
182
 
183
- #: ../modules/mycred-module-hooks.php:2682
184
  msgid "Signups Referred"
185
  msgstr ""
186
 
187
- #: ../modules/mycred-module-buddypress.php:418 ../addons/badges/myCRED-addon-
188
- #: badges.php:971
189
  msgid "Include in Profile Header"
190
  msgstr ""
191
 
192
- #: ../modules/mycred-module-buddypress.php:420 ../addons/badges/myCRED-addon-
193
- #: badges.php:973
194
  msgid "Include under the \"Profile\" tab and Profile Header"
195
  msgstr ""
196
 
197
- #: ../plugins/mycred-hook-wp-postratings.php:18
198
  msgid "Post Ratings"
199
  msgstr ""
200
 
201
- #: ../plugins/mycred-hook-wp-postratings.php:19
202
  #, php-format
203
  msgid ""
204
  "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
205
  "author and the user rating."
206
  msgstr ""
207
 
208
- #: ../plugins/mycred-hook-wp-postratings.php:76
209
  msgid "Based on rating"
210
  msgstr ""
211
 
212
- #: ../plugins/mycred-hook-wp-postratings.php:150 ../includes/mycred-functions.php:
213
- #: 2599
214
  msgid "Adding a Rating"
215
  msgstr ""
216
 
217
- #: ../plugins/mycred-hook-wp-postratings.php:160 ../plugins/mycred-hook-wp-
218
- #: postratings.php:179
219
  msgid "Use the Rating Value instead of the amount set here."
220
  msgstr ""
221
 
222
- #: ../plugins/mycred-hook-wp-postratings.php:169 ../includes/mycred-functions.php:
223
- #: 2600
224
  msgid "Receiving a Rating"
225
  msgstr ""
226
 
227
- #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
228
- #: php:80
229
  #, php-format
230
  msgid "Reward with %plural%"
231
  msgstr ""
232
 
233
- #: ../plugins/mycred-hook-buddypress.php:519
234
  #, php-format
235
  msgid "%plural% for Removing Profile Update"
236
  msgstr ""
237
 
238
- #: ../plugins/mycred-hook-buddypress.php:563
239
  #, php-format
240
  msgid ""
241
  "Users with zero balance can not add friends. Requires that you deduct "
242
  "%_plural% for adding a new friend."
243
  msgstr ""
244
 
245
- #: ../plugins/mycred-hook-affiliatewp.php:18
246
  msgid "AffiliateWP"
247
  msgstr ""
248
 
249
- #: ../plugins/mycred-hook-affiliatewp.php:19
250
  #, php-format
251
  msgid ""
252
  "Awards %_plural% for affiliate signups, referring visitors and store sale "
253
  "referrals."
254
  msgstr ""
255
 
256
- #: ../plugins/mycred-hook-affiliatewp.php:218
257
  msgid "Affiliate Signup"
258
  msgstr ""
259
 
260
- #: ../plugins/mycred-hook-affiliatewp.php:248
261
  msgid "Referring Sales"
262
  msgstr ""
263
 
264
- #: ../plugins/mycred-hook-affiliatewp.php:251
265
  msgid "Pay a set amount for all referrals."
266
  msgstr ""
267
 
268
- #: ../plugins/mycred-hook-affiliatewp.php:252
269
  #, php-format
270
  msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
271
  msgstr ""
272
 
273
- #: ../plugins/mycred-hook-affiliatewp.php:253
274
  msgid "Apply an exchange rate against the referral amount."
275
  msgstr ""
276
 
277
- #: ../plugins/mycred-hook-affiliatewp.php:261
278
  msgid "Log template - Payout"
279
  msgstr ""
280
 
281
- #: ../plugins/mycred-hook-affiliatewp.php:266
282
  msgid "Log template - Refund"
283
  msgstr ""
284
 
285
- #: ../plugins/mycred-hook-sharethis.php:19
286
  #, php-format
287
  msgid "%plural% for Sharing"
288
  msgstr ""
289
 
290
- #: ../plugins/mycred-hook-sharethis.php:20
291
  #, php-format
292
  msgid ""
293
  "Awards %_plural% for users sharing / liking your website content to popular "
@@ -302,24 +299,29 @@ msgstr ""
302
  msgid "No ShareThis services detected. Please check your installation."
303
  msgstr ""
304
 
305
- #: ../plugins/mycred-hook-wp-favorite-posts.php:225
306
  msgid "Authors Content added to favorites"
307
  msgstr ""
308
 
309
- #: ../plugins/mycred-hook-wp-favorite-posts.php:256
310
  msgid "Removing Content from Favorites (Author)"
311
  msgstr ""
312
 
313
- #: ../plugins/mycred-hook-bbPress.php:512
 
 
 
 
 
314
  #, php-format
315
  msgid "%plural% for Reply Deletion"
316
  msgstr ""
317
 
318
- #: ../plugins/mycred-hook-woocommerce.php:210
319
  msgid "WooCommerce Product Reviews"
320
  msgstr ""
321
 
322
- #: ../plugins/mycred-hook-woocommerce.php:211
323
  #, php-format
324
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
325
  msgstr ""
@@ -338,53 +340,51 @@ msgstr ""
338
  msgid "16, 24 or 32 characters"
339
  msgstr ""
340
 
341
- #: ../includes/mycred-shortcodes.php:941 ../includes/mycred-functions.php:2732
342
- msgid "Point types not found."
 
 
343
  msgstr ""
344
 
345
- #: ../includes/mycred-shortcodes.php:947 ../includes/mycred-shortcodes.php:955 ..
346
- #: includes/mycred-functions.php:2744 ../includes/mycred-functions.php:2764
347
  #, php-format
348
  msgid "You are excluded from using %s."
349
  msgstr ""
350
 
351
- #: ../includes/mycred-shortcodes.php:951 ../includes/mycred-functions.php:2754
352
  msgid "Your balance is too low to use this feature."
353
  msgstr ""
354
 
355
- #: ../includes/mycred-shortcodes.php:973
356
  #, php-format
357
  msgid "Convert <span>%s</span> to <span>%s</span>"
358
  msgstr ""
359
 
360
- #: ../includes/mycred-shortcodes.php:982
361
  #, php-format
362
  msgid "Your current %s balance"
363
  msgstr ""
364
 
365
- #: ../includes/mycred-shortcodes.php:990
366
  #, php-format
367
  msgid "Minimum %s"
368
  msgstr ""
369
 
370
- #: ../includes/mycred-shortcodes.php:994
371
  #, php-format
372
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
373
  msgstr ""
374
 
375
- #: ../includes/mycred-shortcodes.php:1000
376
  msgid "Exchange"
377
  msgstr ""
378
 
379
- #: ../includes/mycred-shortcodes.php:1065
380
  msgid "No instances found for this point type"
381
  msgstr ""
382
 
383
- #: ../includes/mycred-shortcodes.php:1069
384
- msgid "Invalid point type"
385
- msgstr ""
386
-
387
- #: ../includes/mycred-shortcodes.php:1130
388
  msgid "Instance"
389
  msgstr ""
390
 
@@ -403,78 +403,78 @@ msgstr ""
403
  msgid "Use zero for no decimals or maximum 20."
404
  msgstr ""
405
 
406
- #: ../includes/mycred-admin.php:195
407
  msgid "A log entry is required in order to adjust this users balance"
408
  msgstr ""
409
 
410
- #: ../includes/mycred-admin.php:197
411
  msgid "Users balance saved"
412
  msgstr ""
413
 
414
- #: ../includes/mycred-admin.php:205
415
  msgid "Users excluded"
416
  msgstr ""
417
 
418
- #: ../includes/mycred-admin.php:210
419
  msgid ""
420
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
421
  "rate settings and update all premium payment gateways!"
422
  msgstr ""
423
 
424
- #: ../includes/mycred-admin.php:466 ../includes/mycred-admin.php:467
425
  msgid "Edit Balance"
426
  msgstr ""
427
 
428
- #: ../includes/mycred-admin.php:487
429
  msgid "Profile"
430
  msgstr ""
431
 
432
- #: ../includes/mycred-admin.php:494
433
  msgid "Extended Profile"
434
  msgstr ""
435
 
436
- #: ../includes/mycred-admin.php:588
437
  #, php-format
438
  msgid "This user is excluded from using %s"
439
  msgstr ""
440
 
441
- #: ../includes/mycred-admin.php:612
442
  msgid "Edit User"
443
  msgstr ""
444
 
445
- #: ../includes/mycred-admin.php:614
446
  msgctxt "user"
447
  msgid "Add New"
448
  msgstr ""
449
 
450
- #: ../includes/mycred-admin.php:616
451
  msgctxt "user"
452
  msgid "Add Existing"
453
  msgstr ""
454
 
455
- #: ../includes/mycred-admin.php:627
456
  #, php-format
457
  msgid "Total %s Accumulated"
458
  msgstr ""
459
 
460
- #: ../includes/mycred-admin.php:628
461
  #, php-format
462
  msgid "Total %s Spent"
463
  msgstr ""
464
 
465
- #: ../includes/mycred-admin.php:639
466
  msgid "View History"
467
  msgstr ""
468
 
469
- #: ../includes/mycred-admin.php:640
470
  msgid "Exclude User"
471
  msgstr ""
472
 
473
- #: ../includes/mycred-admin.php:644
474
  msgid "Adjust Balance"
475
  msgstr ""
476
 
477
- #: ../includes/mycred-admin.php:653
478
  msgid ""
479
  "Warning! Excluding this user will result in their balance being deleted "
480
  "along with any entries currently in your log! This can not be undone!"
@@ -494,335 +494,343 @@ msgstr ""
494
  msgid "Reference Guide"
495
  msgstr ""
496
 
497
- #: ../includes/mycred-functions.php:2518
498
  msgid "Website Registration"
499
  msgstr ""
500
 
501
- #: ../includes/mycred-functions.php:2519
502
  msgid "Website Visit"
503
  msgstr ""
504
 
505
- #: ../includes/mycred-functions.php:2520
506
  msgid "Viewing Content (Member)"
507
  msgstr ""
508
 
509
- #: ../includes/mycred-functions.php:2521
510
  msgid "Viewing Content (Author)"
511
  msgstr ""
512
 
513
- #: ../includes/mycred-functions.php:2522
514
  msgid "Logging in"
515
  msgstr ""
516
 
517
- #: ../includes/mycred-functions.php:2523
518
  msgid "Publishing Content"
519
  msgstr ""
520
 
521
- #: ../includes/mycred-functions.php:2525
522
  msgid "Unapproved Comment"
523
  msgstr ""
524
 
525
- #: ../includes/mycred-functions.php:2526
526
  msgid "SPAM Comment"
527
  msgstr ""
528
 
529
- #: ../includes/mycred-functions.php:2527
530
  msgid "Deleted Comment"
531
  msgstr ""
532
 
533
- #: ../includes/mycred-functions.php:2528
534
  msgid "Link Click"
535
  msgstr ""
536
 
537
- #: ../includes/mycred-functions.php:2529
538
  msgid "Watching Video"
539
  msgstr ""
540
 
541
- #: ../includes/mycred-functions.php:2530
542
  msgid "Visitor Referral"
543
  msgstr ""
544
 
545
- #: ../includes/mycred-functions.php:2531
546
  msgid "Signup Referral"
547
  msgstr ""
548
 
549
- #: ../includes/mycred-functions.php:2535
550
  msgid "New Profile Update"
551
  msgstr ""
552
 
553
- #: ../includes/mycred-functions.php:2536
554
  msgid "Profile Update Removal"
555
  msgstr ""
556
 
557
- #: ../includes/mycred-functions.php:2537
558
  msgid "Avatar Upload"
559
  msgstr ""
560
 
561
- #: ../includes/mycred-functions.php:2538
562
  msgid "New Friendship"
563
  msgstr ""
564
 
565
- #: ../includes/mycred-functions.php:2539
566
  msgid "Ended Friendship"
567
  msgstr ""
568
 
569
- #: ../includes/mycred-functions.php:2540
570
  msgid "New Profile Comment"
571
  msgstr ""
572
 
573
- #: ../includes/mycred-functions.php:2541
574
  msgid "Profile Comment Deletion"
575
  msgstr ""
576
 
577
- #: ../includes/mycred-functions.php:2542
578
  msgid "New Message"
579
  msgstr ""
580
 
581
- #: ../includes/mycred-functions.php:2543
582
  msgid "Sending Gift"
583
  msgstr ""
584
 
585
- #: ../includes/mycred-functions.php:2544
586
  msgid "New Group"
587
  msgstr ""
588
 
589
- #: ../includes/mycred-functions.php:2545
590
  msgid "Deleted Group"
591
  msgstr ""
592
 
593
- #: ../includes/mycred-functions.php:2546
594
  msgid "New Group Forum Topic"
595
  msgstr ""
596
 
597
- #: ../includes/mycred-functions.php:2547
598
  msgid "Edit Group Forum Topic"
599
  msgstr ""
600
 
601
- #: ../includes/mycred-functions.php:2548
602
  msgid "New Group Forum Post"
603
  msgstr ""
604
 
605
- #: ../includes/mycred-functions.php:2549
606
  msgid "Edit Group Forum Post"
607
  msgstr ""
608
 
609
- #: ../includes/mycred-functions.php:2550
610
  msgid "Joining Group"
611
  msgstr ""
612
 
613
- #: ../includes/mycred-functions.php:2551
614
  msgid "Leaving Group"
615
  msgstr ""
616
 
617
- #: ../includes/mycred-functions.php:2552
618
  msgid "New Group Avatar"
619
  msgstr ""
620
 
621
- #: ../includes/mycred-functions.php:2553
622
  msgid "New Group Comment"
623
  msgstr ""
624
 
625
- #: ../includes/mycred-functions.php:2563
626
  msgid "New Link"
627
  msgstr ""
628
 
629
- #: ../includes/mycred-functions.php:2564
630
  msgid "Link Voting"
631
  msgstr ""
632
 
633
- #: ../includes/mycred-functions.php:2565
634
  msgid "Link Update"
635
  msgstr ""
636
 
637
- #: ../includes/mycred-functions.php:2569
638
  msgid "New Forum (bbPress)"
639
  msgstr ""
640
 
641
- #: ../includes/mycred-functions.php:2570
642
  msgid "New Forum Topic (bbPress)"
643
  msgstr ""
644
 
645
- #: ../includes/mycred-functions.php:2571
646
  msgid "Favorited Topic (bbPress)"
647
  msgstr ""
648
 
649
- #: ../includes/mycred-functions.php:2572
650
  msgid "New Topic Reply (bbPress)"
651
  msgstr ""
652
 
653
- #: ../includes/mycred-functions.php:2576
654
  msgid "Form Submission (Contact Form 7)"
655
  msgstr ""
656
 
657
- #: ../includes/mycred-functions.php:2579
658
  msgid "Form Submission (Gravity Form)"
659
  msgstr ""
660
 
661
- #: ../includes/mycred-functions.php:2582
662
  msgid "New Forum Topic (SimplePress)"
663
  msgstr ""
664
 
665
- #: ../includes/mycred-functions.php:2583
666
  msgid "New Forum Post (SimplePress)"
667
  msgstr ""
668
 
669
- #: ../includes/mycred-functions.php:2592
670
  msgid "Affiliate Signup (AffiliateWP)"
671
  msgstr ""
672
 
673
- #: ../includes/mycred-functions.php:2593
674
  msgid "Referred Visit (AffiliateWP)"
675
  msgstr ""
676
 
677
- #: ../includes/mycred-functions.php:2594
678
  msgid "Affiliate Referral (AffiliateWP)"
679
  msgstr ""
680
 
681
- #: ../includes/mycred-functions.php:2595
682
  msgid "Referral Refund (AffiliateWP)"
683
  msgstr ""
684
 
685
- #: ../includes/mycred-functions.php:2604
686
  msgid "Poll Voting"
687
  msgstr ""
688
 
689
- #: ../includes/mycred-functions.php:2607
690
  msgid "Sending an Invite"
691
  msgstr ""
692
 
693
- #: ../includes/mycred-functions.php:2608
694
  msgid "Accepting an Invite"
695
  msgstr ""
696
 
697
- #: ../includes/mycred-functions.php:2614
698
  msgid "Banking Payout"
699
  msgstr ""
700
 
701
- #: ../includes/mycred-functions.php:2617
702
  msgid "buyCRED Purchase (PayPal Standard)"
703
  msgstr ""
704
 
705
- #: ../includes/mycred-functions.php:2618
706
  msgid "buyCRED Purchase (Skrill)"
707
  msgstr ""
708
 
709
- #: ../includes/mycred-functions.php:2619
710
  msgid "buyCRED Purchase (Zombaio)"
711
  msgstr ""
712
 
713
- #: ../includes/mycred-functions.php:2620
714
  msgid "buyCRED Purchase (NETBilling)"
715
  msgstr ""
716
 
717
- #: ../includes/mycred-functions.php:2621
718
  msgid "buyCRED Purchase (BitPay)"
719
  msgstr ""
720
 
721
- #: ../includes/mycred-functions.php:2626
722
  msgid "Coupon Purchase"
723
  msgstr ""
724
 
725
- #: ../includes/mycred-functions.php:2630
726
  msgid "Store Purchase (WooCommerce)"
727
  msgstr ""
728
 
729
- #: ../includes/mycred-functions.php:2631
730
  msgid "Store Reward (WooCommerce)"
731
  msgstr ""
732
 
733
- #: ../includes/mycred-functions.php:2632
734
  msgid "Product Review (WooCommerce)"
735
  msgstr ""
736
 
737
- #: ../includes/mycred-functions.php:2635
738
  msgid "Store Purchase (MarketPress)"
739
  msgstr ""
740
 
741
- #: ../includes/mycred-functions.php:2636
742
  msgid "Store Reward (MarketPress)"
743
  msgstr ""
744
 
745
- #: ../includes/mycred-functions.php:2639
746
  msgid "Store Purchase (WP E-Commerce)"
747
  msgstr ""
748
 
749
- #: ../includes/mycred-functions.php:2645
750
  msgid "Event Payment (Event Espresso)"
751
  msgstr ""
752
 
753
- #: ../includes/mycred-functions.php:2646
754
  msgid "Event Sale (Event Espresso)"
755
  msgstr ""
756
 
757
- #: ../includes/mycred-functions.php:2650
758
  msgid "Event Payment (Events Manager)"
759
  msgstr ""
760
 
761
- #: ../includes/mycred-functions.php:2651
762
  msgid "Event Sale (Events Manager)"
763
  msgstr ""
764
 
765
- #: ../includes/mycred-functions.php:2655
766
- msgid "Content Purchase / Sale"
 
 
 
 
767
  msgstr ""
768
 
769
- #: ../includes/mycred-functions.php:2662
770
  msgid "Manual Adjustment by Admin"
771
  msgstr ""
772
 
773
- #: ../includes/mycred-functions.php:2777
 
 
 
 
774
  #, php-format
775
  msgid "You must exchange at least %s!"
776
  msgstr ""
777
 
778
- #: ../includes/mycred-functions.php:2786 ../addons/transfer/myCRED-addon-transfer.
779
  #: php:161
780
  msgid "Insufficient Funds. Please try a lower amount."
781
  msgstr ""
782
 
783
- #: ../includes/mycred-functions.php:2799
784
  #, php-format
785
  msgid "Exchange from %s"
786
  msgstr ""
787
 
788
- #: ../includes/mycred-functions.php:2811
789
  #, php-format
790
  msgid "Exchange to %s"
791
  msgstr ""
792
 
793
- #: ../includes/mycred-functions.php:2819
794
  #, php-format
795
  msgid "You have successfully exchanged %s into %s."
796
  msgstr ""
797
 
798
- #: ../includes/mycred-functions.php:2851
799
  msgid "per day"
800
  msgstr ""
801
 
802
- #: ../includes/mycred-functions.php:2853
803
  msgid "per week"
804
  msgstr ""
805
 
806
- #: ../includes/mycred-functions.php:2855
807
  msgid "per month"
808
  msgstr ""
809
 
810
- #: ../includes/mycred-functions.php:2857
811
  msgid "in total"
812
  msgstr ""
813
 
814
- #: ../includes/mycred-functions.php:2859 ../includes/mycred-functions.php:2863
815
  #, php-format
816
  msgid "Maximum once"
817
  msgid_plural "Maximum %d times"
818
  msgstr[0] ""
819
  msgstr[1] ""
820
 
821
- #: ../addons/banking/myCRED-addon-banking.php:158
822
  msgid "Central Banking"
823
  msgstr ""
824
 
825
- #: ../addons/banking/myCRED-addon-banking.php:159
826
  #, php-format
827
  msgid ""
828
  "Instead of creating %_plural% out of thin-air, all payouts are made from a "
@@ -830,17 +838,17 @@ msgid ""
830
  "deposited back into this account."
831
  msgstr ""
832
 
833
- #: ../addons/banking/myCRED-addon-banking.php:166
834
  #, php-format
835
  msgid "Apply a positive or negative interest rate on your users %_plural% balances."
836
  msgstr ""
837
 
838
- #: ../addons/banking/myCRED-addon-banking.php:173
839
  #, php-format
840
  msgid "Setup mass %_singular% payouts for your users."
841
  msgstr ""
842
 
843
- #: ../addons/banking/myCRED-addon-banking.php:228
844
  #, php-format
845
  msgid "Your banking setup for %plural%."
846
  msgstr ""
@@ -946,8 +954,8 @@ msgid "This user role is excluded from receiving interest on this balance."
946
  msgstr ""
947
 
948
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/sell-
949
- #: content/myCRED-addon-sell-content.php:114 ../addons/buy-creds/myCRED-addon-buy-
950
- #: creds.php:837
951
  msgid "Leave empty to use the default value."
952
  msgstr ""
953
 
@@ -1016,7 +1024,7 @@ msgctxt "%s = Point amount formatted"
1016
  msgid "Refunded %s"
1017
  msgstr ""
1018
 
1019
- #: ../addons/transfer/myCRED-addon-transfer.php:276
1020
  msgid "Limit Amount"
1021
  msgstr ""
1022
 
@@ -1026,60 +1034,60 @@ msgid ""
1026
  "multiple point types."
1027
  msgstr ""
1028
 
1029
- #: ../addons/ranks/myCRED-addon-ranks.php:441
1030
  #, php-format
1031
  msgid "Ranks for %s"
1032
  msgstr ""
1033
 
1034
- #: ../addons/ranks/myCRED-addon-ranks.php:978 ../addons/ranks/myCRED-addon-ranks.
1035
- #: php:979 ../addons/ranks/myCRED-addon-ranks.php:980 ../addons/ranks/myCRED-
1036
- #: addon-ranks.php:981 ../addons/ranks/myCRED-addon-ranks.php:982 ..
1037
- #: addons/ranks/myCRED-addon-ranks.php:983 ../addons/ranks/myCRED-addon-ranks.
1038
- #: php:986 ../addons/ranks/myCRED-addon-ranks.php:987
1039
  msgid "Rank Updated."
1040
  msgstr ""
1041
 
1042
- #: ../addons/ranks/myCRED-addon-ranks.php:984
1043
  msgid "Rank Enabled"
1044
  msgstr ""
1045
 
1046
- #: ../addons/ranks/myCRED-addon-ranks.php:1024
1047
  #, php-format
1048
  msgid "<strong>Rank:</strong> %s"
1049
  msgstr ""
1050
 
1051
- #: ../addons/ranks/myCRED-addon-ranks.php:1388
1052
  msgid ""
1053
  "Use this button to calculate or recalculate your users totals. If not used, "
1054
  "the users current balance will be used as a starting point."
1055
  msgstr ""
1056
 
1057
- #: ../addons/ranks/myCRED-addon-ranks.php:1430 ../addons/ranks/myCRED-addon-ranks.
1058
- #: php:1475
1059
  #, php-format
1060
  msgid ""
1061
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
1062
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
1063
  msgstr ""
1064
 
1065
- #: ../addons/ranks/myCRED-addon-ranks.php:1452
1066
  msgid "Include in Topic Replies"
1067
  msgstr ""
1068
 
1069
- #: ../addons/ranks/myCRED-addon-ranks.php:1453 ../addons/badges/myCRED-addon-
1070
- #: badges.php:1002
1071
  msgid "Include in Profile"
1072
  msgstr ""
1073
 
1074
- #: ../addons/ranks/myCRED-addon-ranks.php:1454
1075
  msgid "Include in Topic Replies and Profile"
1076
  msgstr ""
1077
 
1078
- #: ../addons/ranks/myCRED-addon-ranks.php:1458
1079
  msgid "Rank in bbPress"
1080
  msgstr ""
1081
 
1082
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:145
1083
  msgid "Rank not found. Please check the id and try again."
1084
  msgstr ""
1085
 
@@ -1087,129 +1095,129 @@ msgstr ""
1087
  msgid "Notify your users when their balances changes."
1088
  msgstr ""
1089
 
1090
- #: ../addons/notifications/myCRED-addon-notifications.php:205
1091
  msgid "Restore to default"
1092
  msgstr ""
1093
 
1094
- #: ../addons/notifications/myCRED-addon-notifications.php:219
1095
  msgid ""
1096
  "Number of seconds before a notice is automatically removed after being shown "
1097
  "to user. Use zero to disable."
1098
  msgstr ""
1099
 
1100
- #: ../addons/email-notices/myCRED-addon-email-notices.php:211
1101
  msgid "Badge Add-on"
1102
  msgstr ""
1103
 
1104
- #: ../addons/email-notices/myCRED-addon-email-notices.php:212
1105
  msgid "user gains a badge"
1106
  msgstr ""
1107
 
1108
- #: ../addons/email-notices/myCRED-addon-email-notices.php:310 ../addons/email-
1109
- #: notices/myCRED-addon-email-notices.php:316
1110
  msgid "Email Schedule"
1111
  msgstr ""
1112
 
1113
- #: ../addons/email-notices/myCRED-addon-email-notices.php:312
1114
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1115
  msgstr ""
1116
 
1117
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1118
  msgid "Send emails immediately"
1119
  msgstr ""
1120
 
1121
- #: ../addons/email-notices/myCRED-addon-email-notices.php:324
1122
  msgid "Send emails once an hour"
1123
  msgstr ""
1124
 
1125
- #: ../addons/email-notices/myCRED-addon-email-notices.php:328
1126
  msgid "Send emails once a day"
1127
  msgstr ""
1128
 
1129
- #: ../addons/email-notices/myCRED-addon-email-notices.php:331
1130
  msgid "Subscriptions"
1131
  msgstr ""
1132
 
1133
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333
1134
  #, php-format
1135
  msgid ""
1136
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1137
  "updates."
1138
  msgstr ""
1139
 
1140
- #: ../addons/email-notices/myCRED-addon-email-notices.php:338
1141
  msgid "SMTP Override"
1142
  msgstr ""
1143
 
1144
- #: ../addons/email-notices/myCRED-addon-email-notices.php:342
1145
  msgid ""
1146
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1147
  "use a SMTP plugin for emails."
1148
  msgstr ""
1149
 
1150
- #: ../addons/email-notices/myCRED-addon-email-notices.php:719
1151
  #, php-format
1152
  msgctxt "Badge Title - Level 1,2,3.."
1153
  msgid "%s - Level %d"
1154
  msgstr ""
1155
 
1156
- #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
1157
- #: notices/myCRED-addon-email-notices.php:1037
1158
  msgid "All types"
1159
  msgstr ""
1160
 
1161
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
1162
  msgid "The users new balance"
1163
  msgstr ""
1164
 
1165
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
1166
  msgid "The users old balance"
1167
  msgstr ""
1168
 
1169
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
1170
  msgid "The amount of points gained or lost in this instance"
1171
  msgstr ""
1172
 
1173
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
1174
  msgid "The log entry"
1175
  msgstr ""
1176
 
1177
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
1178
- #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
1179
- #: addon-email-notices.php:1187
1180
  msgid "Email Notice Updated."
1181
  msgstr ""
1182
 
1183
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
1184
  msgid "Settings saved."
1185
  msgstr ""
1186
 
1187
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
1188
  msgid "Unsubscribe"
1189
  msgstr ""
1190
 
1191
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
1192
  msgid "There are no email notifications yet."
1193
  msgstr ""
1194
 
1195
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1296 ..
1196
- #: addons/badges/myCRED-addon-badges.php:1182
1197
  msgid "Save Changes"
1198
  msgstr ""
1199
 
1200
- #: ../addons/stats/myCRED-addon-stats.php:54
1201
  msgid "Statistics"
1202
  msgstr ""
1203
 
1204
- #: ../addons/stats/myCRED-addon-stats.php:126
1205
  msgid "Overview"
1206
  msgstr ""
1207
 
1208
- #: ../addons/stats/myCRED-addon-stats.php:192
1209
  msgid "Refresh"
1210
  msgstr ""
1211
 
1212
- #: ../addons/stats/myCRED-addon-stats.php:248
1213
  msgid "Your log is empty. No statistics can be shown."
1214
  msgstr ""
1215
 
@@ -1218,44 +1226,58 @@ msgstr ""
1218
  msgid "Total %s:"
1219
  msgstr ""
1220
 
1221
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138
 
1222
  #, php-format
1223
  msgid "Total amount of %s in circulation"
1224
  msgstr ""
1225
 
1226
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:170
 
1227
  msgid "Total gains (%)"
1228
  msgstr ""
1229
 
1230
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:174
 
1231
  msgid "Total loses (%)"
1232
  msgstr ""
1233
 
1234
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
 
1235
  #, php-format
1236
  msgid "Total Gained: %s"
1237
  msgstr ""
1238
 
1239
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
 
1240
  #, php-format
1241
  msgid "Total Spent: %s"
1242
  msgstr ""
1243
 
1244
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:192
 
1245
  msgid "This Year"
1246
  msgstr ""
1247
 
1248
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:196 ..
1249
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
1250
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
1251
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
1252
- msgid "Gained"
1253
- msgstr ""
1254
-
1255
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
1256
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
1257
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
1258
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1259
  msgid "Lost"
1260
  msgstr ""
1261
 
@@ -1295,243 +1317,243 @@ msgstr ""
1295
  msgid "Gains in the last 10 days"
1296
  msgstr ""
1297
 
1298
- #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
1299
- #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
1300
- #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
1301
- #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
1302
- #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
1303
- #: badges.php:395
1304
  msgid "Badges"
1305
  msgstr ""
1306
 
1307
- #: ../addons/badges/myCRED-addon-badges.php:169
1308
  #, php-format
1309
  msgid "Badges (%d)"
1310
  msgstr ""
1311
 
1312
- #: ../addons/badges/myCRED-addon-badges.php:260
1313
  #, php-format
1314
  msgid "%d Users earned this badge."
1315
  msgstr ""
1316
 
1317
- #: ../addons/badges/myCRED-addon-badges.php:264
1318
  msgid "No users has yet earned this badge."
1319
  msgstr ""
1320
 
1321
- #: ../addons/badges/myCRED-addon-badges.php:287
1322
  msgid "No connections where removed."
1323
  msgstr ""
1324
 
1325
- #: ../addons/badges/myCRED-addon-badges.php:289
1326
  #, php-format
1327
  msgid "%s connections where removed."
1328
  msgstr ""
1329
 
1330
- #: ../addons/badges/myCRED-addon-badges.php:384
1331
  msgid "Badge"
1332
  msgstr ""
1333
 
1334
- #: ../addons/badges/myCRED-addon-badges.php:386
1335
  msgid "Add New Badge"
1336
  msgstr ""
1337
 
1338
- #: ../addons/badges/myCRED-addon-badges.php:387
1339
  msgid "Edit Badge"
1340
  msgstr ""
1341
 
1342
- #: ../addons/badges/myCRED-addon-badges.php:388
1343
  msgid "New Badge"
1344
  msgstr ""
1345
 
1346
- #: ../addons/badges/myCRED-addon-badges.php:390
1347
  msgid "View Badge"
1348
  msgstr ""
1349
 
1350
- #: ../addons/badges/myCRED-addon-badges.php:391
1351
  msgid "Search Badge"
1352
  msgstr ""
1353
 
1354
- #: ../addons/badges/myCRED-addon-badges.php:392
1355
  msgid "No badges found"
1356
  msgstr ""
1357
 
1358
- #: ../addons/badges/myCRED-addon-badges.php:393
1359
  msgid "No badges found in Trash"
1360
  msgstr ""
1361
 
1362
- #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
1363
- #: badges.php:541
1364
  msgid "Badge Name"
1365
  msgstr ""
1366
 
1367
- #: ../addons/badges/myCRED-addon-badges.php:440
1368
  msgid "Badge Images"
1369
  msgstr ""
1370
 
1371
- #: ../addons/badges/myCRED-addon-badges.php:441
1372
  msgid "Requirements"
1373
  msgstr ""
1374
 
1375
- #: ../addons/badges/myCRED-addon-badges.php:481
1376
  msgid "A user must have gained or lost:"
1377
  msgstr ""
1378
 
1379
- #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
1380
- #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
1381
- #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
1382
- #: badges.php:526
1383
  msgid "Badge Updated."
1384
  msgstr ""
1385
 
1386
- #: ../addons/badges/myCRED-addon-badges.php:522
1387
  msgid "Badge Enabled"
1388
  msgstr ""
1389
 
1390
- #: ../addons/badges/myCRED-addon-badges.php:523
1391
  msgid "Badge Saved"
1392
  msgstr ""
1393
 
1394
- #: ../addons/badges/myCRED-addon-badges.php:555
1395
  msgid "Badge Setup"
1396
  msgstr ""
1397
 
1398
- #: ../addons/badges/myCRED-addon-badges.php:582
1399
  msgid "Assign Badge"
1400
  msgstr ""
1401
 
1402
- #: ../addons/badges/myCRED-addon-badges.php:583
1403
  msgid "Remove Connections"
1404
  msgstr ""
1405
 
1406
- #: ../addons/badges/myCRED-addon-badges.php:638
1407
  msgid "Time(s)"
1408
  msgstr ""
1409
 
1410
- #: ../addons/badges/myCRED-addon-badges.php:639
1411
  msgid "In total"
1412
  msgstr ""
1413
 
1414
- #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
1415
- #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
1416
- #: addons/badges/myCRED-addon-badges.php:846
1417
  msgid "Badge Image"
1418
  msgstr ""
1419
 
1420
- #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
1421
- #: badges.php:672
1422
  msgid "Set badge image"
1423
  msgstr ""
1424
 
1425
- #: ../addons/badges/myCRED-addon-badges.php:682
1426
  msgid "Default Image"
1427
  msgstr ""
1428
 
1429
- #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
1430
- #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
1431
- #: addons/badges/myCRED-addon-badges.php:831
1432
  msgid "image url"
1433
  msgstr ""
1434
 
1435
- #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
1436
- #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
1437
- #: addons/badges/myCRED-addon-badges.php:831
1438
  msgid "Add Image"
1439
  msgstr ""
1440
 
1441
- #: ../addons/badges/myCRED-addon-badges.php:685
1442
  msgid "Optional image to show when a user has not yet earned this badge."
1443
  msgstr ""
1444
 
1445
- #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
1446
- #: badges.php:756
1447
  #, php-format
1448
  msgid "Level %d"
1449
  msgstr ""
1450
 
1451
- #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
1452
- #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
1453
  msgid "for"
1454
  msgstr ""
1455
 
1456
- #: ../addons/badges/myCRED-addon-badges.php:740
1457
  msgid "Main Image"
1458
  msgstr ""
1459
 
1460
- #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
1461
- #: badges.php:831
1462
  msgid "Leave empty if you do not want to assign a custom image for this level."
1463
  msgstr ""
1464
 
1465
- #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
1466
- #: badges.php:831
1467
  msgid "Remove this level"
1468
  msgstr ""
1469
 
1470
- #: ../addons/badges/myCRED-addon-badges.php:788
1471
  msgid "Add Level"
1472
  msgstr ""
1473
 
1474
- #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
1475
- #: badges.php:1154
1476
  msgid "Level"
1477
  msgstr ""
1478
 
1479
- #: ../addons/badges/myCRED-addon-badges.php:848
1480
  msgid "Use as Badge"
1481
  msgstr ""
1482
 
1483
- #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
1484
- #: badges.php:1017
1485
  msgid "Show all badges, including badges users have not yet earned."
1486
  msgstr ""
1487
 
1488
- #: ../addons/badges/myCRED-addon-badges.php:1003
1489
  msgid "Include in Forum Replies"
1490
  msgstr ""
1491
 
1492
- #: ../addons/badges/myCRED-addon-badges.php:1004
1493
  msgid "Include in Profile and Forum Replies"
1494
  msgstr ""
1495
 
1496
- #: ../addons/badges/myCRED-addon-badges.php:1111
1497
  msgid "User Badges"
1498
  msgstr ""
1499
 
1500
- #: ../addons/badges/myCRED-addon-badges.php:1116
1501
  msgid ""
1502
  "Here you can view the badges this user has earned and if needed, manually "
1503
  "give or take away a badge from a user."
1504
  msgstr ""
1505
 
1506
- #: ../addons/badges/myCRED-addon-badges.php:1125
1507
  msgid "Not earned"
1508
  msgstr ""
1509
 
1510
- #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
1511
- #: badges.php:1168
1512
  msgid "Earned"
1513
  msgstr ""
1514
 
1515
- #: ../addons/badges/myCRED-addon-badges.php:1143
1516
  msgid "No image"
1517
  msgstr ""
1518
 
1519
- #: ../addons/badges/myCRED-addon-badges.php:1150
1520
  msgid "Select a level"
1521
  msgstr ""
1522
 
1523
- #: ../addons/badges/includes/mycred-badge-functions.php:68
1524
  #, php-format
1525
  msgid "Level %s"
1526
  msgstr ""
1527
 
1528
- #: ../addons/badges/includes/mycred-badge-functions.php:71
1529
  #, php-format
1530
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
1531
  msgid "%s for %s %s - %s"
1532
  msgstr ""
1533
 
1534
- #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
1535
  #: addons/coupons/myCRED-addon-coupons.php:221 ../addons/coupons/myCRED-addon-
1536
  #: coupons.php:516
1537
  #, php-format
@@ -1540,7 +1562,7 @@ msgid_plural "%d times"
1540
  msgstr[0] ""
1541
  msgstr[1] ""
1542
 
1543
- #: ../addons/badges/includes/mycred-badge-functions.php:73
1544
  #, php-format
1545
  msgctxt "\"x points\" for \"reference\" in total"
1546
  msgid "%s for %s in total"
@@ -1554,31 +1576,31 @@ msgstr ""
1554
  msgid "Used"
1555
  msgstr ""
1556
 
1557
- #: ../addons/sell-content/myCRED-addon-sell-content.php:111
1558
  msgid "Profit Share"
1559
  msgstr ""
1560
 
1561
- #: ../addons/sell-content/myCRED-addon-sell-content.php:119
1562
  msgid "Save Profit Share"
1563
  msgstr ""
1564
 
1565
- #: ../addons/sell-content/myCRED-addon-sell-content.php:165
1566
  msgid "Profit Share override saved"
1567
  msgstr ""
1568
 
1569
- #: ../addons/sell-content/myCRED-addon-sell-content.php:476
1570
  msgid "For Visitors"
1571
  msgstr ""
1572
 
1573
- #: ../addons/sell-content/myCRED-addon-sell-content.php:491
1574
  msgid "For Members"
1575
  msgstr ""
1576
 
1577
- #: ../addons/sell-content/myCRED-addon-sell-content.php:506
1578
  msgid "For members that can not afford to buy"
1579
  msgstr ""
1580
 
1581
- #: ../addons/sell-content/myCRED-addon-sell-content.php:676
1582
  #, php-format
1583
  msgid "Enable sale of this %s"
1584
  msgstr ""
@@ -1611,7 +1633,7 @@ msgid "Edit Pending Payment"
1611
  msgstr ""
1612
 
1613
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:284 ../addons/buy-creds/myCRED-
1614
- #: addon-buy-creds.php:1752
1615
  msgid "No pending payments found"
1616
  msgstr ""
1617
 
@@ -1619,41 +1641,41 @@ msgstr ""
1619
  msgid "Not found in Trash"
1620
  msgstr ""
1621
 
1622
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-
1623
- #: addon-buy-creds.php:1074
1624
  msgid "Buyer"
1625
  msgstr ""
1626
 
1627
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:347
1628
  msgid "Type"
1629
  msgstr ""
1630
 
1631
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:440
1632
  msgid "Pay Out"
1633
  msgstr ""
1634
 
1635
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655
1636
  msgid "Select the point types that users can buy. You must select at least one!"
1637
  msgstr ""
1638
 
1639
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:831
1640
  #, php-format
1641
  msgid "%s Exchange Rate"
1642
  msgstr ""
1643
 
1644
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
1645
  msgid "Save Exchange Rates"
1646
  msgstr ""
1647
 
1648
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
1649
  msgid "Exchange rate override saved"
1650
  msgstr ""
1651
 
1652
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
1653
  msgid "Payment completed"
1654
  msgstr ""
1655
 
1656
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1657
  msgid "More Gateways"
1658
  msgstr ""
1659
 
@@ -1757,33 +1779,33 @@ msgstr ""
1757
  msgid "myCRED"
1758
  msgstr "myCRED"
1759
 
1760
- #: ../mycred.php:462
1761
  msgid "Balance"
1762
  msgstr "Saldo"
1763
 
1764
- #: ../mycred.php:487
1765
  msgid "%label% History"
1766
  msgstr "%lavel% Historial"
1767
 
1768
- #: ../mycred.php:581
1769
  #, php-format
1770
  msgid "About %s"
1771
  msgstr "Sobre"
1772
 
1773
- #: ../mycred.php:590
1774
  msgid "Awesome People"
1775
  msgstr "Gente genial"
1776
 
1777
- #: ../mycred.php:678 ../mycred.php:703 ../mycred.php:721 ../includes/mycred-
1778
- #: shortcodes.php:640 ../addons/gateway/event-booking/mycred-eventsmanager.php:
1779
  #: 478 ../addons/transfer/myCRED-addon-transfer.php:146 ../addons/ranks/myCRED-
1780
- #: addon-ranks.php:423 ../addons/ranks/myCRED-addon-ranks.php:1523 ..
1781
- #: addons/badges/myCRED-addon-badges.php:605 ../addons/sell-content/myCRED-addon-
1782
- #: sell-content.php:371
1783
  msgid "Processing..."
1784
  msgstr "Procesando..."
1785
 
1786
- #: ../mycred.php:679
1787
  msgid ""
1788
  "Warning! All entries in your log will be permanently removed! This can not "
1789
  "be undone!"
@@ -1791,7 +1813,7 @@ msgstr ""
1791
  "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
1792
  "¡Esto no se puede deshacer!"
1793
 
1794
- #: ../mycred.php:680
1795
  msgid ""
1796
  "All log entries belonging to deleted users will be permanently deleted! This "
1797
  "can not be undone!"
@@ -1799,57 +1821,57 @@ msgstr ""
1799
  "¡Todas las entradas de registro perteneciendo al usuario seran "
1800
  "permanentemente borradas! ¡Esto no se puede deshacer!"
1801
 
1802
- #: ../mycred.php:681
1803
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
1804
  msgstr ""
1805
  "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
1806
  "deshacer!"
1807
 
1808
- #: ../mycred.php:682
1809
  msgid "Done!"
1810
  msgstr "¡Realizado!"
1811
 
1812
- #: ../mycred.php:683 ../mycred.php:702 ../mycred.php:720
1813
  msgid "Close"
1814
  msgstr "Cerrar"
1815
 
1816
- #: ../mycred.php:684
1817
  #, php-format
1818
  msgid "Export users %plural%"
1819
  msgstr "Exportar usuarios %plural%"
1820
 
1821
- #: ../mycred.php:701
1822
  msgid "Edit Users Balance"
1823
  msgstr "Editar saldo del usuario"
1824
 
1825
- #: ../mycred.php:719
1826
  msgid "Edit Log Entry"
1827
  msgstr "Edidar entrada de registro"
1828
 
1829
- #: ../mycred.php:723
1830
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
1831
  msgstr ""
1832
  "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
1833
  "deshacer!"
1834
 
1835
- #: ../mycred.php:724
1836
  msgid "Log entry updated"
1837
  msgstr "Entrada de registro actualizado"
1838
 
1839
- #: ../mycred.php:781 ../mycred.php:803 ../addons/gateway/event-booking/mycred-
1840
  #: eventsmanager.php:537 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
1841
- #: php:499 ../addons/email-notices/myCRED-addon-email-notices.php:811
1842
  msgid "Setup"
1843
  msgstr "Configurar"
1844
 
1845
- #: ../mycred.php:783 ../modules/mycred-module-settings.php:21 ../modules/mycred-
1846
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23 ..
1847
  #: includes/mycred-network.php:170 ../addons/gateway/carts/mycred-marketpress.
1848
  #: php:371 ../addons/stats/abstracts/mycred-abstract-stat-widget.php:108
1849
  msgid "Settings"
1850
  msgstr "Configuraciones"
1851
 
1852
- #: ../mycred.php:826
1853
  msgid ""
1854
  "Make sure to backup your database and files before updating, in case "
1855
  "anything goes wrong!"
@@ -1862,8 +1884,8 @@ msgid "This Hook has no settings"
1862
  msgstr "Este gancho no ha sido configurado"
1863
 
1864
  #: ../abstracts/mycred-abstract-hook.php:283 ../abstracts/mycred-abstract-hook.
1865
- #: php:354 ../modules/mycred-module-hooks.php:1816 ../includes/mycred-functions.
1866
- #: php:2845
1867
  msgid "No limit"
1868
  msgstr "Sin Limite"
1869
 
@@ -1881,29 +1903,29 @@ msgstr "Una vez al dia (reinicializado al medianoche)"
1881
 
1882
  #: ../abstracts/mycred-abstract-hook.php:364 ../addons/banking/abstracts/mycred-
1883
  #: abstract-service.php:498 ../addons/email-notices/myCRED-addon-email-notices.
1884
- #: php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992 ..
1885
- #: addons/buy-creds/myCRED-addon-buy-creds.php:696 ../addons/buy-creds/myCRED-
1886
- #: addon-buy-creds.php:719 ../addons/buy-creds/abstracts/mycred-abstract-payment-
1887
  #: gateway.php:1023 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
1888
  #: php:1046 ../addons/buy-creds/gateways/zombaio.php:356
1889
  msgid "Select"
1890
  msgstr "Seleccionar"
1891
 
1892
- #: ../abstracts/mycred-abstract-module.php:400 ../abstracts/mycred-abstract-
1893
- #: module.php:410
1894
  msgid "Surprise"
1895
  msgstr "Sorpresa"
1896
 
1897
- #: ../abstracts/mycred-abstract-module.php:511 ../includes/mycred-network.php:93
1898
  msgid "click to close"
1899
  msgstr "haga clic para cerrar"
1900
 
1901
- #: ../abstracts/mycred-abstract-module.php:512 ../includes/mycred-network.php:94
1902
  msgid "click to open"
1903
  msgstr "haga clic para abrir"
1904
 
1905
- #: ../abstracts/mycred-abstract-module.php:545 ../addons/buy-creds/myCRED-addon-
1906
- #: buy-creds.php:927
1907
  msgid "Settings Updated"
1908
  msgstr "Configuraciones Actualizadas"
1909
 
@@ -1931,11 +1953,11 @@ msgid "Tip"
1931
  msgstr "Pista"
1932
 
1933
  #: ../modules/mycred-module-settings.php:484 ../modules/mycred-module-addons.php:
1934
- #: 303 ../modules/mycred-module-log.php:358 ../modules/mycred-module-log.php:647 .
1935
- #: ./modules/mycred-module-hooks.php:193 ../includes/mycred-network.php:141 ..
1936
- #: includes/mycred-admin.php:584 ../addons/banking/myCRED-addon-banking.php:219 .
1937
- #: ./addons/stats/myCRED-addon-stats.php:182 ../addons/buy-creds/myCRED-addon-buy-
1938
- #: creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
1939
  msgid "Access Denied"
1940
  msgstr "Acceso Denegado"
1941
 
@@ -2083,7 +2105,7 @@ msgstr "Entradas"
2083
 
2084
  #: ../modules/mycred-module-settings.php:625 ../modules/mycred-module-settings.
2085
  #: php:640 ../modules/mycred-module-log.php:407 ../addons/ranks/myCRED-addon-
2086
- #: ranks.php:1613 ../addons/buy-creds/myCRED-addon-buy-creds.php:1715
2087
  msgid "Actions"
2088
  msgstr "Acciones"
2089
 
@@ -2092,12 +2114,12 @@ msgid "Empty Log"
2092
  msgstr "Registro Vacío"
2093
 
2094
  #: ../modules/mycred-module-settings.php:632 ../addons/ranks/myCRED-addon-ranks.
2095
- #: php:1605
2096
  msgid "User Meta Key"
2097
  msgstr "Clave Meta del Usuario"
2098
 
2099
  #: ../modules/mycred-module-settings.php:636 ../addons/ranks/myCRED-addon-ranks.
2100
- #: php:1043 ../addons/badges/myCRED-addon-badges.php:442
2101
  msgid "Users"
2102
  msgstr "Usuarios"
2103
 
@@ -2110,8 +2132,8 @@ msgid "CSV Export"
2110
  msgstr "Exportar CSV"
2111
 
2112
  #: ../modules/mycred-module-settings.php:656 ../includes/mycred-widgets.php:600 ..
2113
- #: addons/transfer/myCRED-addon-transfer.php:211 ../addons/buy-creds/myCRED-
2114
- #: addon-buy-creds.php:652
2115
  msgid "Point Types"
2116
  msgstr "Tipo de Puntos"
2117
 
@@ -2127,7 +2149,7 @@ msgstr "Clave Meta"
2127
  #: ../modules/mycred-module-settings.php:674 ../modules/mycred-module-settings.
2128
  #: php:695 ../modules/mycred-module-settings.php:720 ..
2129
  #: addons/gateway/carts/mycred-woocommerce.php:160 ../addons/email-
2130
- #: notices/myCRED-addon-email-notices.php:1025
2131
  msgid "Label"
2132
  msgstr "Etiqueta"
2133
 
@@ -2151,7 +2173,7 @@ msgstr "Título del Menú y de la Página\n"
2151
 
2152
  #: ../modules/mycred-module-settings.php:739 ../addons/gateway/event-
2153
  #: booking/mycred-eventespresso3.php:502 ../addons/buy-creds/myCRED-addon-buy-
2154
- #: creds.php:986
2155
  msgid "Update Settings"
2156
  msgstr "Actualizar Configuraciones"
2157
 
@@ -2201,13 +2223,13 @@ msgstr "Exportar"
2201
  msgid "Add-ons"
2202
  msgstr "Extensiones"
2203
 
2204
- #: ../modules/mycred-module-addons.php:171
2205
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
2206
  msgstr ""
2207
  "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
2208
  "de las cuentas de usuarios."
2209
 
2210
- #: ../modules/mycred-module-addons.php:182
2211
  msgid ""
2212
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
2213
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
@@ -2218,7 +2240,7 @@ msgstr ""
2218
  "<strong>compra</strong>CRED tambien permite que tus usuarios compren puntos "
2219
  "para otros miembros."
2220
 
2221
- #: ../modules/mycred-module-addons.php:193
2222
  msgid ""
2223
  "The coupons add-on allows you to create coupons that users can use to add "
2224
  "points to their accounts."
@@ -2226,13 +2248,13 @@ msgstr ""
2226
  "Los cupones de add-on le permite crear cupones que los usuarios pueden "
2227
  "utilizar para agregar puntos a sus cuentas."
2228
 
2229
- #: ../modules/mycred-module-addons.php:204
2230
  msgid "Create email notices for any type of myCRED instance."
2231
  msgstr ""
2232
  "Crea avisos por correo electrónico para cualquier tipo de instancias de "
2233
  "myCRED."
2234
 
2235
- #: ../modules/mycred-module-addons.php:215
2236
  msgid ""
2237
  "Let your users pay using their <strong>my</strong>CRED points balance. "
2238
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
@@ -2243,11 +2265,11 @@ msgstr ""
2243
  "WP E-Commerce. Reservas de Eventos soportados: Event Espresso and Events "
2244
  "Manager (gratis y pro)."
2245
 
2246
- #: ../modules/mycred-module-addons.php:226
2247
  msgid "Create pop-up notifications for when users gain or loose points."
2248
  msgstr "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
2249
 
2250
- #: ../modules/mycred-module-addons.php:238
2251
  msgid ""
2252
  "Create ranks for users reaching a certain number of %_plural% with the "
2253
  "option to add logos for each rank."
@@ -2255,7 +2277,7 @@ msgstr ""
2255
  "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
2256
  "con la opción de añadir logotipos para cada rango."
2257
 
2258
- #: ../modules/mycred-module-addons.php:249
2259
  msgid ""
2260
  "This add-on allows you to sell posts, pages or any public post types on your "
2261
  "website. You can either sell the entire content or using our shortcode, sell "
@@ -2266,7 +2288,7 @@ msgstr ""
2266
  "el código corto (shortcode), vender partes de tu contenido permitiendote "
2267
  "ofrecer \"avances\"."
2268
 
2269
- #: ../modules/mycred-module-addons.php:271
2270
  msgid ""
2271
  "Allow your users to send or \"donate\" points to other members by either using "
2272
  "the mycred_transfer shortcode or the myCRED Transfer widget."
@@ -2275,63 +2297,63 @@ msgstr ""
2275
  "el código corto (shortcode) de mycred_transfer o el widget de Transferencia "
2276
  "myCRED."
2277
 
2278
- #: ../modules/mycred-module-addons.php:313
2279
  #, php-format
2280
  msgid "%s Add-ons"
2281
  msgstr "%s Extensiones (addons)"
2282
 
2283
- #: ../modules/mycred-module-addons.php:320
2284
  msgid "Add-on Activated"
2285
  msgstr "Extensión Activado"
2286
 
2287
- #: ../modules/mycred-module-addons.php:323
2288
  msgid "Add-on Deactivated"
2289
  msgstr "Extensión Desactivado"
2290
 
2291
- #: ../modules/mycred-module-addons.php:331
2292
  msgid "Add-ons can expand your current installation with further features."
2293
  msgstr ""
2294
  "Extensiones pueden ampliar tu instalación actual con más características "
2295
  "técnicas."
2296
 
2297
- #: ../modules/mycred-module-addons.php:359
2298
  #, php-format
2299
  msgid "You can find more add-ons in our %s."
2300
  msgstr "Puedes encontrar más extensiones (add-ons) en nuestro %s."
2301
 
2302
- #: ../modules/mycred-module-addons.php:359
2303
  msgid "online store"
2304
  msgstr "tienda online"
2305
 
2306
- #: ../modules/mycred-module-addons.php:382
2307
  msgid "Deactivate Add-on"
2308
  msgstr "Desactivar Extensión"
2309
 
2310
- #: ../modules/mycred-module-addons.php:383
2311
  msgid "Deactivate"
2312
  msgstr "Desactivar"
2313
 
2314
- #: ../modules/mycred-module-addons.php:390
2315
  msgid "Activate Add-on"
2316
  msgstr "Activar Extensión"
2317
 
2318
- #: ../modules/mycred-module-addons.php:391
2319
  msgid "Activate"
2320
  msgstr "Activar"
2321
 
2322
- #: ../modules/mycred-module-addons.php:409
2323
  msgid "Version"
2324
  msgstr "Version"
2325
 
2326
- #: ../modules/mycred-module-addons.php:413
2327
  msgid "By"
2328
  msgstr "Por"
2329
 
2330
- #: ../modules/mycred-module-addons.php:417
2331
  msgid "About"
2332
  msgstr "Acerca de"
2333
 
2334
- #: ../modules/mycred-module-addons.php:421
2335
  msgid "Get Pro"
2336
  msgstr "Obtenga la versión Pro"
2337
 
@@ -2353,7 +2375,7 @@ msgid "Entry Updated"
2353
  msgstr "Entrada Actualizada"
2354
 
2355
  #: ../modules/mycred-module-log.php:276 ../modules/mycred-module-log.php:277 ..
2356
- #: includes/mycred-admin.php:423 ../addons/banking/services/mycred-bank-service-
2357
  #: payouts.php:246
2358
  msgid "History"
2359
  msgstr "Historial"
@@ -2367,7 +2389,7 @@ msgstr "Buscar entre resultados por"
2367
  msgid "%s Log"
2368
  msgstr "Registro de %s"
2369
 
2370
- #: ../modules/mycred-module-log.php:525 ../includes/mycred-log.php:874
2371
  msgid "User Missing"
2372
  msgstr "Usuario Ausente"
2373
 
@@ -2375,9 +2397,9 @@ msgstr "Usuario Ausente"
2375
  msgid "Edit"
2376
  msgstr "Editar"
2377
 
2378
- #: ../modules/mycred-module-log.php:609 ../includes/mycred-log.php:755 ..
2379
- #: includes/mycred-admin.php:796 ../addons/email-notices/myCRED-addon-email-
2380
- #: notices.php:866 ../addons/email-notices/myCRED-addon-email-notices.php:1019
2381
  msgid "User"
2382
  msgstr "Usuario"
2383
 
@@ -2416,22 +2438,22 @@ msgstr "Mi Historial de %s"
2416
  msgid "Hooks"
2417
  msgstr "Ganchos"
2418
 
2419
- #: ../modules/mycred-module-hooks.php:107
2420
  #, php-format
2421
  msgid "%plural% for registrations"
2422
  msgstr "%plural% por inscripciones"
2423
 
2424
- #: ../modules/mycred-module-hooks.php:108
2425
  #, php-format
2426
  msgid "Award %_plural% for users joining your website."
2427
  msgstr "Concede %_plural% a usuarios para unirse a tu sitio de web."
2428
 
2429
- #: ../modules/mycred-module-hooks.php:128
2430
  #, php-format
2431
  msgid "%plural% for logins"
2432
  msgstr "%plural% para ingresos"
2433
 
2434
- #: ../modules/mycred-module-hooks.php:129
2435
  #, php-format
2436
  msgid ""
2437
  "Award %_plural% for logging in to your website. You can also set an optional "
@@ -2440,39 +2462,39 @@ msgstr ""
2440
  "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
2441
  "ajustar un limíte opcional."
2442
 
2443
- #: ../modules/mycred-module-hooks.php:135
2444
  #, php-format
2445
  msgid "%plural% for publishing content"
2446
  msgstr "%plural% por publicar contenido"
2447
 
2448
- #: ../modules/mycred-module-hooks.php:136
2449
  #, php-format
2450
  msgid ""
2451
  "Award %_plural% for publishing content on your website. If your custom post "
2452
  "type is not shown bellow, make sure it is set to \"Public\"."
2453
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
2454
 
2455
- #: ../modules/mycred-module-hooks.php:142
2456
  #, php-format
2457
  msgid "%plural% for comments"
2458
  msgstr "%plural% por comentarios"
2459
 
2460
- #: ../modules/mycred-module-hooks.php:142
2461
  #, php-format
2462
  msgid "%plural% for Disqus comments"
2463
  msgstr "%plural% por comentarios Disqus"
2464
 
2465
- #: ../modules/mycred-module-hooks.php:143
2466
  #, php-format
2467
  msgid "Award %_plural% for making comments."
2468
  msgstr "Concede %_plural% por hacer comentarios."
2469
 
2470
- #: ../modules/mycred-module-hooks.php:149
2471
  #, php-format
2472
  msgid "%plural% for clicking on links"
2473
  msgstr "%plural% por hacer clic sobre enlaces"
2474
 
2475
- #: ../modules/mycred-module-hooks.php:150
2476
  msgid ""
2477
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
2478
  "shortcode."
@@ -2480,12 +2502,12 @@ msgstr ""
2480
  "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
2481
  "por el [mycred_link] código corto (shortcode)."
2482
 
2483
- #: ../modules/mycred-module-hooks.php:156
2484
  #, php-format
2485
  msgid "%plural% for viewing Videos"
2486
  msgstr "%plural% por ver videos"
2487
 
2488
- #: ../modules/mycred-module-hooks.php:157
2489
  msgid ""
2490
  "Award %_plural% to users who watches videos embedded using the "
2491
  "[mycred_video] shortcode."
@@ -2493,23 +2515,23 @@ msgstr ""
2493
  "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
2494
  "el [mycred_link] código corto (shortcode)."
2495
 
2496
- #: ../modules/mycred-module-hooks.php:163
2497
  #, php-format
2498
  msgid "%plural% for referrals"
2499
  msgstr "%plural% por referencias (o recomendaciones)"
2500
 
2501
- #: ../modules/mycred-module-hooks.php:164
2502
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
2503
  msgstr ""
2504
  "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
2505
  "miembros inscritos."
2506
 
2507
- #: ../modules/mycred-module-hooks.php:199
2508
  #, php-format
2509
  msgid "%s Hooks"
2510
  msgstr "Ganchos de %s"
2511
 
2512
- #: ../modules/mycred-module-hooks.php:203
2513
  #, php-format
2514
  msgid ""
2515
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
@@ -2518,141 +2540,141 @@ msgstr ""
2518
  "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
2519
  "usuario, dependiendo de sus acciones en tu sitio web."
2520
 
2521
- #: ../modules/mycred-module-hooks.php:222 ../addons/banking/myCRED-addon-banking.
2522
- #: php:248 ../addons/buy-creds/myCRED-addon-buy-creds.php:954
2523
  msgid "Enable"
2524
  msgstr "Activar"
2525
 
2526
- #: ../modules/mycred-module-hooks.php:240 ../addons/banking/myCRED-addon-banking.
2527
- #: php:261
2528
  msgid "Update Changes"
2529
  msgstr "Actualizar Cambios"
2530
 
2531
- #: ../modules/mycred-module-hooks.php:417 ../modules/mycred-module-hooks.php:523 .
2532
- #: ./modules/mycred-module-hooks.php:690 ../modules/mycred-module-hooks.php:721 ..
2533
- #: modules/mycred-module-hooks.php:798 ../modules/mycred-module-hooks.php:1164 ..
2534
- #: modules/mycred-module-hooks.php:1181 ../modules/mycred-module-hooks.php:1230 .
2535
- #: ./modules/mycred-module-hooks.php:1682 ../modules/mycred-module-hooks.php:1699
2536
- #: ../modules/mycred-module-hooks.php:1716 ../modules/mycred-module-hooks.php:
2537
- #: 3007 ../modules/mycred-module-hooks.php:3027 ../plugins/mycred-hook-invite-
2538
- #: anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ../plugins/mycred-
2539
- #: hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-postratings.php:183 ..
2540
- #: plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-hook-simplepress.
2541
- #: php:289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
2542
- #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
2543
- #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
2544
- #: buddypress.php:513 ../plugins/mycred-hook-buddypress.php:530 ../plugins/mycred-
2545
- #: hook-buddypress.php:547 ../plugins/mycred-hook-buddypress.php:567 ..
2546
- #: plugins/mycred-hook-buddypress.php:580 ../plugins/mycred-hook-buddypress.php:
2547
- #: 597 ../plugins/mycred-hook-buddypress.php:610 ../plugins/mycred-hook-
2548
- #: buddypress.php:627 ../plugins/mycred-hook-buddypress.php:644 ../plugins/mycred-
2549
- #: hook-buddypress.php:1218 ../plugins/mycred-hook-buddypress.php:1231 ..
2550
- #: plugins/mycred-hook-buddypress.php:1248 ../plugins/mycred-hook-buddypress.php:
2551
- #: 1265 ../plugins/mycred-hook-buddypress.php:1282 ../plugins/mycred-hook-
2552
- #: buddypress.php:1299 ../plugins/mycred-hook-buddypress.php:1317 ..
2553
- #: plugins/mycred-hook-buddypress.php:1330 ../plugins/mycred-hook-buddypress.php:
2554
- #: 1347 ../plugins/mycred-hook-buddypress.php:1364 ../plugins/mycred-hook-
2555
- #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
2556
- #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
2557
- #: buddypress-links.php:308 ../plugins/mycred-hook-buddypress-links.php:325 ..
2558
- #: plugins/mycred-hook-buddypress-links.php:338 ../plugins/mycred-hook-
2559
- #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
2560
  #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-buddypress-media.
2561
- #: php:213 ../plugins/mycred-hook-buddypress-media.php:227 ../plugins/mycred-hook-
2562
- #: buddypress-media.php:241 ../plugins/mycred-hook-buddypress-media.php:254 ..
2563
- #: plugins/mycred-hook-buddypress-media.php:264 ../plugins/mycred-hook-
2564
- #: buddypress-media.php:274 ../plugins/mycred-hook-contact-form7.php:152 ..
2565
- #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
2566
- #: plugins/mycred-hook-bbPress.php:415 ../plugins/mycred-hook-bbPress.php:428 ..
2567
- #: plugins/mycred-hook-bbPress.php:445 ../plugins/mycred-hook-bbPress.php:463 ..
2568
- #: plugins/mycred-hook-bbPress.php:480 ../plugins/mycred-hook-bbPress.php:497 ..
2569
- #: plugins/mycred-hook-bbPress.php:519 ../plugins/mycred-hook-badgeOS.php:298
2570
  msgid "Log template"
2571
  msgstr "Plantilla de Registro"
2572
 
2573
- #: ../modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:686 .
2574
- #: ./modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:717 ..
2575
- #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:794 ..
2576
- #: modules/mycred-module-hooks.php:1018 ../modules/mycred-module-hooks.php:1160 .
2577
- #: ./modules/mycred-module-hooks.php:1177 ../modules/mycred-module-hooks.php:1226
2578
- #: ../modules/mycred-module-hooks.php:3015 ../modules/mycred-module-hooks.php:
2579
- #: 3035 ../plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-
2580
- #: invite-anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ..
2581
- #: plugins/mycred-hook-invite-anyone.php:226 ../plugins/mycred-hook-wp-
2582
- #: postratings.php:156 ../plugins/mycred-hook-wp-postratings.php:175 ..
2583
- #: plugins/mycred-hook-gravityforms.php:148 ../plugins/mycred-hook-simplepress.
2584
- #: php:284 ../plugins/mycred-hook-simplepress.php:314 ../plugins/mycred-hook-
2585
- #: buddypress-gallery.php:102 ../plugins/mycred-hook-buddypress.php:508 ..
2586
- #: plugins/mycred-hook-buddypress.php:525 ../plugins/mycred-hook-buddypress.php:
2587
- #: 542 ../plugins/mycred-hook-buddypress.php:559 ../plugins/mycred-hook-
2588
- #: buddypress.php:592 ../plugins/mycred-hook-buddypress.php:622 ../plugins/mycred-
2589
- #: hook-buddypress.php:639 ../plugins/mycred-hook-buddypress.php:1243 ..
2590
- #: plugins/mycred-hook-buddypress.php:1260 ../plugins/mycred-hook-buddypress.php:
2591
- #: 1277 ../plugins/mycred-hook-buddypress.php:1294 ../plugins/mycred-hook-
2592
- #: buddypress.php:1312 ../plugins/mycred-hook-buddypress.php:1342 ..
2593
- #: plugins/mycred-hook-buddypress.php:1359 ../plugins/mycred-hook-buddypress-
2594
- #: links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
2595
- #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
2596
- #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
2597
- #: plugins/mycred-hook-buddypress-links.php:320 ../plugins/mycred-hook-
2598
- #: affiliatewp.php:237 ../plugins/mycred-hook-events-manager-light.php:192 ..
2599
  #: plugins/mycred-hook-sharethis.php:302 ../plugins/mycred-hook-buddypress-media.
2600
- #: php:209 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
2601
- #: buddypress-media.php:237 ../plugins/mycred-hook-wp-favorite-posts.php:213 ..
2602
- #: plugins/mycred-hook-wp-favorite-posts.php:231 ../plugins/mycred-hook-contact-
2603
- #: form7.php:147 ../plugins/mycred-hook-bbPress.php:410 ../plugins/mycred-hook-
2604
- #: bbPress.php:440 ../plugins/mycred-hook-bbPress.php:475 ../plugins/mycred-hook-
2605
- #: bbPress.php:492 ../plugins/mycred-hook-woocommerce.php:317 ../includes/mycred-
2606
- #: shortcodes.php:1132
2607
  msgid "Limit"
2608
  msgstr "Límite"
2609
 
2610
- #: ../modules/mycred-module-hooks.php:683 ../modules/mycred-module-hooks.php:699 .
2611
- #: ./modules/mycred-module-hooks.php:714 ../modules/mycred-module-hooks.php:730 ..
2612
- #: modules/mycred-module-hooks.php:791 ../modules/mycred-module-hooks.php:807 ..
2613
- #: modules/mycred-module-hooks.php:1677 ../modules/mycred-module-hooks.php:1694 .
2614
- #: ./modules/mycred-module-hooks.php:1711
2615
  msgid "Content Author"
2616
  msgstr "Autor del Contenido"
2617
 
2618
  #. can also be "Plantilla de Bitácora"
2619
- #: ../modules/mycred-module-hooks.php:1011 ../modules/mycred-module-hooks.php:
2620
- #: 2032 ../modules/mycred-module-hooks.php:2402 ../plugins/mycred-hook-wp-polls.
2621
- #: php:136 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
2622
- #: gd-star-rating.php:122 ../plugins/mycred-hook-events-manager-light.php:196 ..
2623
- #: plugins/mycred-hook-events-manager-light.php:209 ../plugins/mycred-hook-wp-
2624
- #: favorite-posts.php:217 ../plugins/mycred-hook-wp-favorite-posts.php:235 ..
2625
- #: plugins/mycred-hook-wp-favorite-posts.php:249 ../plugins/mycred-hook-wp-
2626
- #: favorite-posts.php:262 ../plugins/mycred-hook-woocommerce.php:321 ..
2627
- #: plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-hook-badgeOS.php:126 ..
2628
- #: plugins/mycred-hook-badgeOS.php:135 ../addons/banking/services/mycred-bank-
2629
  #: service-payouts.php:283 ../addons/banking/services/mycred-bank-service-
2630
  #: interest.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:371 ..
2631
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
2632
  #: addons/gateway/carts/mycred-woocommerce.php:176 ..
2633
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
2634
  #: addons/gateway/carts/mycred-marketpress.php:428 ../addons/coupons/myCRED-
2635
- #: addon-coupons.php:557 ../addons/buy-creds/myCRED-addon-buy-creds.php:673 ..
2636
- #: addons/buy-creds/myCRED-addon-buy-creds.php:736
2637
  msgid "Log Template"
2638
  msgstr "Plantilla de Registro"
2639
 
2640
- #: ../modules/mycred-module-hooks.php:1154
2641
  #, php-format
2642
  msgid "%plural% for Posts"
2643
  msgstr "%plural% por Posts"
2644
 
2645
- #: ../modules/mycred-module-hooks.php:1171
2646
  #, php-format
2647
  msgid "%plural% for Pages"
2648
  msgstr "%plural% por Paginas"
2649
 
2650
- #: ../modules/mycred-module-hooks.php:1220
2651
  #, php-format
2652
  msgid "%plural% for %s"
2653
  msgstr "%plural% por %s"
2654
 
2655
- #: ../modules/mycred-module-hooks.php:1667
2656
  #, php-format
2657
  msgid ""
2658
  "%plural% are only awarded when your website has been synced with the Disqus "
@@ -2661,35 +2683,35 @@ msgstr ""
2661
  "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
2662
  "sincronizado con el servidor de Disqus!"
2663
 
2664
- #: ../modules/mycred-module-hooks.php:1670 ../includes/mycred-functions.php:2524
2665
  msgid "Approved Comment"
2666
  msgstr "Comentario Aprobado"
2667
 
2668
- #: ../modules/mycred-module-hooks.php:1673 ../modules/mycred-module-hooks.php:
2669
- #: 1690 ../modules/mycred-module-hooks.php:1707
2670
  msgid "Comment Author"
2671
  msgstr "Autor del Comentario"
2672
 
2673
- #: ../modules/mycred-module-hooks.php:1687
2674
  msgid "Comment Marked SPAM"
2675
  msgstr "Comentario Marcado como SPAM"
2676
 
2677
- #: ../modules/mycred-module-hooks.php:1704
2678
  msgid "Trashed / Unapproved Comments"
2679
  msgstr "Comentarios Destrozados / No Aprobados"
2680
 
2681
- #: ../modules/mycred-module-hooks.php:1721 ../modules/mycred-module-hooks.php:
2682
- #: 2039 ../addons/transfer/myCRED-addon-transfer.php:259 ../addons/coupons/myCRED-
2683
  #: addon-coupons.php:175
2684
  msgid "Limits"
2685
  msgstr "imites"
2686
 
2687
- #: ../modules/mycred-module-hooks.php:1724
2688
  msgid "Limit per post"
2689
  msgstr "Límite por Entrada"
2690
 
2691
  #. what is the Spanish word for "post"? o anglicismo?
2692
- #: ../modules/mycred-module-hooks.php:1726
2693
  msgid ""
2694
  "The number of comments per post that grants %_plural% to the comment author. "
2695
  "Use zero for unlimited."
@@ -2697,17 +2719,17 @@ msgstr ""
2697
  "El numero de comentarios por cada post que concede %_plural% al autor del "
2698
  "comentario. Utilice cero para un número ilimitado"
2699
 
2700
- #: ../modules/mycred-module-hooks.php:1730
2701
  msgid "Limit per day"
2702
  msgstr "Límite por día"
2703
 
2704
- #: ../modules/mycred-module-hooks.php:1732
2705
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
2706
  msgstr ""
2707
  "Número de comentarios diarios que conceden %_plural%. Utilice cero para un "
2708
  "número ilimitado."
2709
 
2710
- #: ../modules/mycred-module-hooks.php:1737
2711
  #, php-format
2712
  msgid ""
2713
  "%plural% is to be awarded even when comment authors reply to their own "
@@ -2716,15 +2738,15 @@ msgstr ""
2716
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
2717
  "comentario."
2718
 
2719
- #: ../modules/mycred-module-hooks.php:1817
2720
  msgid "Once for each unique URL"
2721
  msgstr "Una sola vez para cada única URL"
2722
 
2723
- #: ../modules/mycred-module-hooks.php:1818
2724
  msgid "Once for each unique link id"
2725
  msgstr "Una vez para cada id del enlace único "
2726
 
2727
- #: ../modules/mycred-module-hooks.php:2029
2728
  msgid ""
2729
  "The default amount to award for clicking on links. You can override this in "
2730
  "the shortcode."
@@ -2732,16 +2754,16 @@ msgstr ""
2732
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
2733
  "anular esto con el 'shortcode' (código corto)."
2734
 
2735
- #: ../modules/mycred-module-hooks.php:2036
2736
  #, php-format
2737
  msgid "Custom tags: %url%, %title% or %id%."
2738
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
2739
 
2740
- #: ../modules/mycred-module-hooks.php:2049 ../modules/mycred-module-hooks.php:3103
2741
  msgid "Note!"
2742
  msgstr "¡Atención!"
2743
 
2744
- #: ../modules/mycred-module-hooks.php:2049
2745
  msgid ""
2746
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
2747
  "generate one automatically based on the value set under href. If you are "
@@ -2753,49 +2775,49 @@ msgstr ""
2753
  "valor fijado en href. Si estas utilizando esta función para \"compartir\" "
2754
  "contenidos, se recomienda que limites por ID."
2755
 
2756
- #: ../modules/mycred-module-hooks.php:2051 ../modules/mycred-module-hooks.php:2435
2757
  msgid "Available Shortcode"
2758
  msgstr "Código corto Disponible"
2759
 
2760
- #: ../modules/mycred-module-hooks.php:2399
2761
  msgid "Amount to award for viewing videos."
2762
  msgstr "Cantidad a ceder para ver videos."
2763
 
2764
- #: ../modules/mycred-module-hooks.php:2409
2765
  msgid "Award Logic"
2766
  msgstr "Lógica de Concesión"
2767
 
2768
- #: ../modules/mycred-module-hooks.php:2411
2769
  #, php-format
2770
  msgid "Select when %_plural% should be awarded or deducted."
2771
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
2772
 
2773
- #: ../modules/mycred-module-hooks.php:2412
2774
  msgid "Play - As soon as video starts playing."
2775
  msgstr "Play - En cuanto el video empiece a reproducirse."
2776
 
2777
- #: ../modules/mycred-module-hooks.php:2413
2778
  msgid "Full - First when the entire video has played."
2779
  msgstr "Completo - Primero cuando el video entero se haya reproducido."
2780
 
2781
- #: ../modules/mycred-module-hooks.php:2414
2782
  msgid "Interval - For each x number of seconds watched."
2783
  msgstr "Intervalo - Para cada x numero de segundos vistos."
2784
 
2785
- #: ../modules/mycred-module-hooks.php:2417 ../addons/banking/services/mycred-bank-
2786
  #: service-payouts.php:271
2787
  msgid "Interval"
2788
  msgstr "Interval"
2789
 
2790
- #: ../modules/mycred-module-hooks.php:2419
2791
  msgid "Number of seconds"
2792
  msgstr "Numero de segundos"
2793
 
2794
- #: ../modules/mycred-module-hooks.php:2426
2795
  msgid "Leniency"
2796
  msgstr "Lenidad"
2797
 
2798
- #: ../modules/mycred-module-hooks.php:2428
2799
  msgid ""
2800
  "The maximum percentage a users view of a movie can differ from the actual "
2801
  "length."
@@ -2803,7 +2825,7 @@ msgstr ""
2803
  "El porcentaje máximo medido que un usuario vea puede variar con la duración "
2804
  "actual del video."
2805
 
2806
- #: ../modules/mycred-module-hooks.php:2431
2807
  msgid ""
2808
  "Do not set this value to zero! A lot of thing can happen while a user "
2809
  "watches a movie and sometimes a few seconds can drop of the counter due to "
@@ -2813,75 +2835,75 @@ msgstr ""
2813
  "usuario ve una película y a veces la contador puede disminuir por pocos "
2814
  "segundos por falta de buffering o por errores de reproducción."
2815
 
2816
- #: ../modules/mycred-module-hooks.php:2506
2817
  msgid "Affiliate Program"
2818
  msgstr "Programa de Afiliados"
2819
 
2820
- #: ../modules/mycred-module-hooks.php:2514 ../includes/mycred-admin.php:413 ..
2821
  #: addons/coupons/myCRED-addon-coupons.php:232
2822
  msgid "Total"
2823
  msgstr "Total"
2824
 
2825
- #: ../modules/mycred-module-hooks.php:2515
2826
  msgid "Per Day"
2827
  msgstr "Por Día"
2828
 
2829
- #: ../modules/mycred-module-hooks.php:2674
2830
  msgid "Link"
2831
  msgstr "Enlace"
2832
 
2833
- #: ../modules/mycred-module-hooks.php:3001 ../plugins/mycred-hook-affiliatewp.php:
2834
- #: 231
2835
  msgid "Referring Visitors"
2836
  msgstr "Referiendo Visitantes"
2837
 
2838
- #: ../modules/mycred-module-hooks.php:3020 ../modules/mycred-module-hooks.php:3040
2839
  msgid "Referring Signups"
2840
  msgstr "Inscripciones a través de Referencias"
2841
 
2842
- #: ../modules/mycred-module-hooks.php:3024
2843
  msgid "Visitors who have Cookies disabled will not award %_plural%."
2844
  msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
2845
 
2846
- #: ../modules/mycred-module-hooks.php:3042
2847
  msgid "Registrations are disabled."
2848
  msgstr "Se han deshabilitado inscripciones."
2849
 
2850
- #: ../modules/mycred-module-hooks.php:3050
2851
  msgid "Referral Links"
2852
  msgstr "Enlaces Referentes"
2853
 
2854
- #: ../modules/mycred-module-hooks.php:3054
2855
  msgid "Assign numeric referral IDs to each user."
2856
  msgstr "Asignar ID numerica referente a cada usuario."
2857
 
2858
- #: ../modules/mycred-module-hooks.php:3055 ../modules/mycred-module-hooks.php:3061
2859
  msgid "Example"
2860
  msgstr "Ejemplo"
2861
 
2862
- #: ../modules/mycred-module-hooks.php:3060
2863
  msgid "Assign usernames as IDs for each user."
2864
  msgstr "Asignar los nombres de usuario como ID para cada usuario."
2865
 
2866
- #: ../modules/mycred-module-hooks.php:3064
2867
  msgid "IP Limit"
2868
  msgstr "Límite de IP"
2869
 
2870
- #: ../modules/mycred-module-hooks.php:3068
2871
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
2872
  msgstr ""
2873
  "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
2874
  "número ilimitado"
2875
 
2876
- #: ../modules/mycred-module-hooks.php:3072 ../modules/mycred-module-hooks.php:3107
2877
  msgid "BuddyPress Profile"
2878
  msgstr "Perfil de BuddyPress"
2879
 
2880
- #: ../modules/mycred-module-hooks.php:3075
2881
  msgid "Insert Link in users Profile"
2882
  msgstr "Insertar enlace en el perfil del usuario"
2883
 
2884
- #: ../modules/mycred-module-hooks.php:3076
2885
  msgid ""
2886
  "Option to inser the referral link in users profiles. Links will only be "
2887
  "visible to users viewing their own profiles or administrators."
@@ -2890,32 +2912,32 @@ msgstr ""
2890
  " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
2891
  "ven a sus propios perfiles."
2892
 
2893
- #: ../modules/mycred-module-hooks.php:3080 ../includes/mycred-widgets.php:196 ..
2894
  #: includes/mycred-widgets.php:385 ../includes/mycred-widgets.php:594 ..
2895
  #: addons/gateway/carts/mycred-woocommerce.php:92 ..
2896
  #: addons/transfer/includes/mycred-transfer-widgets.php:120 ..
2897
- #: addons/ranks/myCRED-addon-ranks.php:1319 ../addons/buy-creds/gateways/skrill.
2898
  #: php:339
2899
  msgid "Title"
2900
  msgstr "Titulo"
2901
 
2902
- #: ../modules/mycred-module-hooks.php:3082
2903
  msgid "Leave empty to hide."
2904
  msgstr "Deje el campo vacío para ocultarlo."
2905
 
2906
- #: ../modules/mycred-module-hooks.php:3085
2907
  msgid "Description"
2908
  msgstr "Descripción"
2909
 
2910
- #: ../modules/mycred-module-hooks.php:3086
2911
  msgid "Optional description to insert under the link."
2912
  msgstr "Insertar la descripción opcional debajo del enlace."
2913
 
2914
- #: ../modules/mycred-module-hooks.php:3100
2915
  msgid "Profile Positioning"
2916
  msgstr "Posicionamiento del Perfil"
2917
 
2918
- #: ../modules/mycred-module-hooks.php:3102
2919
  msgid ""
2920
  "You can move around the referral link on your users profile by changing the "
2921
  "position. Increase to move up, decrease to move down."
@@ -2923,18 +2945,18 @@ msgstr ""
2923
  "Puedes moverte por el enlace de referencia en su perfil los usuarios "
2924
  "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
2925
 
2926
- #: ../modules/mycred-module-hooks.php:3103
2927
  msgid "You can not move the referral link above the users \"Base\" profile details!"
2928
  msgstr ""
2929
  "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
2930
  "en el perfil del usuario!"
2931
 
2932
- #: ../modules/mycred-module-hooks.php:3109
2933
  msgid "Requires BuddyPress Extended Profiles to be enabled."
2934
  msgstr "Requiere que BuddyPress Extended Profiles sea activado."
2935
 
2936
- #: ../modules/mycred-module-hooks.php:3117 ../addons/buy-creds/myCRED-addon-buy-
2937
- #: creds.php:741
2938
  msgid "Available Shortcodes"
2939
  msgstr "Códigos cortos Disponibles"
2940
 
@@ -2952,26 +2974,29 @@ msgid "Current balance"
2952
  msgstr "Saldo Actual"
2953
 
2954
  #: ../modules/mycred-module-buddypress.php:236 ../modules/mycred-module-
2955
- #: buddypress.php:249 ../includes/mycred-log.php:992
2956
  msgid "All"
2957
  msgstr "Todo"
2958
 
2959
- #: ../modules/mycred-module-buddypress.php:237 ../includes/mycred-log.php:993 ..
2960
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:189
 
2961
  msgid "Today"
2962
  msgstr "Hoy"
2963
 
2964
- #: ../modules/mycred-module-buddypress.php:238 ../includes/mycred-log.php:994
2965
  msgid "Yesterday"
2966
  msgstr "Ayer"
2967
 
2968
- #: ../modules/mycred-module-buddypress.php:239 ../includes/mycred-log.php:995 ..
2969
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:190
 
2970
  msgid "This Week"
2971
  msgstr "Esta Semana"
2972
 
2973
- #: ../modules/mycred-module-buddypress.php:240 ../includes/mycred-log.php:996 ..
2974
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:191
 
2975
  msgid "This Month"
2976
  msgstr "Este Mes"
2977
 
@@ -2979,90 +3004,90 @@ msgstr "Este Mes"
2979
  msgid "Go"
2980
  msgstr "Ir a"
2981
 
2982
- #: ../modules/mycred-module-buddypress.php:417 ../addons/gateway/carts/mycred-
2983
- #: woocommerce.php:152 ../addons/badges/myCRED-addon-badges.php:970 ..
2984
- #: addons/badges/myCRED-addon-badges.php:1001
2985
  msgid "Do not show"
2986
  msgstr "No Mostrar"
2987
 
2988
- #: ../modules/mycred-module-buddypress.php:419 ../addons/ranks/myCRED-addon-ranks.
2989
- #: php:1408 ../addons/badges/myCRED-addon-badges.php:972
2990
  msgid "Include under the \"Profile\" tab"
2991
  msgstr "Incluir debajo de la pestaña del \"Perfil\""
2992
 
2993
- #: ../modules/mycred-module-buddypress.php:424 ../addons/ranks/myCRED-addon-ranks.
2994
- #: php:1406 ../addons/ranks/myCRED-addon-ranks.php:1451
2995
  msgid "Do not show."
2996
  msgstr "No mostrar."
2997
 
2998
- #: ../modules/mycred-module-buddypress.php:425
2999
  msgid "Show in Profile"
3000
  msgstr "Mostrar en Perfil"
3001
 
3002
- #: ../modules/mycred-module-buddypress.php:442
3003
  #, php-format
3004
  msgid "%singular% Balance"
3005
  msgstr "%singular% Saldo"
3006
 
3007
- #: ../modules/mycred-module-buddypress.php:459
3008
  #, php-format
3009
  msgid "Members and visitors can other members %_singular% balance."
3010
  msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
3011
 
3012
- #: ../modules/mycred-module-buddypress.php:464 ../addons/ranks/myCRED-addon-ranks.
3013
- #: php:1428 ../addons/ranks/myCRED-addon-ranks.php:1473 ..
3014
- #: addons/notifications/myCRED-addon-notifications.php:201
3015
  msgid "Template"
3016
  msgstr "Plantilla"
3017
 
3018
- #: ../modules/mycred-module-buddypress.php:469
3019
  #, php-format
3020
  msgid "%plural% History"
3021
  msgstr "Historial de %plural%"
3022
 
3023
- #: ../modules/mycred-module-buddypress.php:486
3024
  msgid "Members can view each others %_plural% history."
3025
  msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
3026
 
3027
- #: ../modules/mycred-module-buddypress.php:491
3028
  msgid "Menu Title"
3029
  msgstr "Título de Menú"
3030
 
3031
- #: ../modules/mycred-module-buddypress.php:493
3032
  msgid "Title shown to me"
3033
  msgstr "Título mostrado a mi"
3034
 
3035
- #: ../modules/mycred-module-buddypress.php:498
3036
  #, php-format
3037
  msgid "Title shown to others. Use %s to show the first name."
3038
  msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
3039
 
3040
- #: ../modules/mycred-module-buddypress.php:503
3041
  msgid "Menu Position"
3042
  msgstr "Posición del Menú"
3043
 
3044
- #: ../modules/mycred-module-buddypress.php:505
3045
  msgid "Current menu positions:"
3046
  msgstr "Posiciones Acuales del Menú"
3047
 
3048
- #: ../modules/mycred-module-buddypress.php:510
3049
  msgid "History URL slug"
3050
  msgstr "La ficha historial de la URL"
3051
 
3052
- #: ../modules/mycred-module-buddypress.php:512
3053
  msgid "Do not use empty spaces!"
3054
  msgstr "¡No utilice espacios vacíos!"
3055
 
3056
- #: ../modules/mycred-module-buddypress.php:517
3057
  msgid "Number of history entries to show"
3058
  msgstr "Numero de entradas de historial a mostrar"
3059
 
3060
  #. does this really need to be translated?
3061
- #: ../plugins/mycred-hook-invite-anyone.php:18
3062
  msgid "Invite Anyone Plugin"
3063
  msgstr "Invite Anyone Plugin"
3064
 
3065
- #: ../plugins/mycred-hook-invite-anyone.php:19
3066
  #, php-format
3067
  msgid ""
3068
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
@@ -3071,104 +3096,104 @@ msgstr ""
3071
  "Concede %_plural% por mandar invitaciones y/o %_plural% si se acepta la "
3072
  "invitación."
3073
 
3074
- #: ../plugins/mycred-hook-invite-anyone.php:190
3075
  #, php-format
3076
  msgid "%plural% for Sending An Invite"
3077
  msgstr "%plural% por Enviar una Invitación"
3078
 
3079
- #: ../plugins/mycred-hook-invite-anyone.php:210
3080
  #, php-format
3081
  msgid "%plural% for Accepting An Invite"
3082
  msgstr "%plural% por Aceptar una Invitación"
3083
 
3084
- #: ../plugins/mycred-hook-invite-anyone.php:214
3085
  #, php-format
3086
  msgid "%plural% for each invited user that accepts an invitation."
3087
  msgstr "%plural% por cada usuario invitado que acepta la invitación."
3088
 
3089
- #: ../plugins/mycred-hook-wp-polls.php:18
3090
  msgid "WP-Polls"
3091
  msgstr "WP-Polls"
3092
 
3093
- #: ../plugins/mycred-hook-wp-polls.php:19
3094
  #, php-format
3095
  msgid "Awards %_plural% for users voting in polls."
3096
  msgstr ""
3097
  "Concede %_plural% a usuarios que han votado en encuestas.Concede %_plural% a "
3098
  "usuarios que han votado en encuestas."
3099
 
3100
- #: ../plugins/mycred-hook-gravityforms.php:18
3101
  msgid "Gravityform Submissions"
3102
  msgstr "Entregas de Gravityform"
3103
 
3104
- #: ../plugins/mycred-hook-gravityforms.php:19
3105
  #, php-format
3106
  msgid "Awards %_plural% for successful form submissions."
3107
  msgstr "Concede %_plural% por el exitoso envío del formularios."
3108
 
3109
- #: ../plugins/mycred-hook-gravityforms.php:118 ../plugins/mycred-hook-contact-
3110
- #: form7.php:117
3111
  msgid "No forms found."
3112
  msgstr "No se ha encontrado ningun formulario."
3113
 
3114
- #: ../plugins/mycred-hook-gd-star-rating.php:18
3115
  msgid "GD Star Rating"
3116
  msgstr "GD Star Rating"
3117
 
3118
- #: ../plugins/mycred-hook-gd-star-rating.php:19
3119
  #, php-format
3120
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
3121
  msgstr ""
3122
  "Concede %_plural% a usuarios que evaluan artículos a través de GD Star "
3123
  "Rating plugin."
3124
 
3125
- #: ../plugins/mycred-hook-gd-star-rating.php:103
3126
  msgid "Rating"
3127
  msgstr "Clasificación"
3128
 
3129
  #.
3130
  #.
3131
- #: ../plugins/mycred-hook-gd-star-rating.php:116
3132
  msgid "Up / Down Vote"
3133
  msgstr "Voto Arriba / Abajo"
3134
 
3135
- #: ../plugins/mycred-hook-simplepress.php:19
3136
  #, php-format
3137
  msgid "Awards %_plural% for Simple:Press actions."
3138
  msgstr "Concede %_plural% por acciones en Simple:Press."
3139
 
3140
- #: ../plugins/mycred-hook-simplepress.php:278 ../plugins/mycred-hook-bbPress.php:
3141
- #: 434
3142
  #, php-format
3143
  msgid "%plural% for New Topic"
3144
  msgstr "%plural% por Nuevo Tema"
3145
 
3146
- #: ../plugins/mycred-hook-simplepress.php:295 ../plugins/mycred-hook-bbPress.php:
3147
- #: 456
3148
  #, php-format
3149
  msgid "%plural% for Topic Deletion"
3150
  msgstr "%plural% por Borrar Tema"
3151
 
3152
- #: ../plugins/mycred-hook-simplepress.php:308
3153
  #, php-format
3154
  msgid "%plural% for New Topic Post"
3155
  msgstr "%plural% por Nueva Publicacion "
3156
 
3157
- #: ../plugins/mycred-hook-simplepress.php:326
3158
  #, php-format
3159
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
3160
  msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
3161
 
3162
- #: ../plugins/mycred-hook-simplepress.php:330
3163
  #, php-format
3164
  msgid "%plural% for Topic Post Deletion"
3165
  msgstr "%plural% por Borrar la Tema del Post"
3166
 
3167
- #: ../plugins/mycred-hook-buddypress-gallery.php:19
3168
  msgid "BuddyPress: Gallery Actions"
3169
  msgstr "BuddyPress: Acciones sobre Galerías"
3170
 
3171
- #: ../plugins/mycred-hook-buddypress-gallery.php:20
3172
  #, php-format
3173
  msgid ""
3174
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
@@ -3177,25 +3202,25 @@ msgstr ""
3177
  "Conceder %_plural% por crear una nueva galería ya sea usando BP Album+ o BP "
3178
  "Gallery."
3179
 
3180
- #: ../plugins/mycred-hook-buddypress-gallery.php:96
3181
  #, php-format
3182
  msgid "%plural% for New Gallery"
3183
  msgstr "%plural% por Nueva Galería"
3184
 
3185
- #: ../plugins/mycred-hook-buddypress.php:14
3186
  msgid "BuddyPress: Members"
3187
  msgstr "BuddyPress: Miembros"
3188
 
3189
- #: ../plugins/mycred-hook-buddypress.php:15
3190
  #, php-format
3191
  msgid "Awards %_plural% for profile related actions."
3192
  msgstr "Concede %_plural% por acciones relacionados al perfil."
3193
 
3194
- #: ../plugins/mycred-hook-buddypress.php:22
3195
  msgid "BuddyPress: Groups"
3196
  msgstr "BuddyPress: Grupos"
3197
 
3198
- #: ../plugins/mycred-hook-buddypress.php:23
3199
  #, php-format
3200
  msgid ""
3201
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
@@ -3204,59 +3229,59 @@ msgstr ""
3204
  "Concede %_plural% para acciones relacionados a grupos. Usa negativo para "
3205
  "sustraer %_plural% o cero para desabilitar un gancho especifico."
3206
 
3207
- #: ../plugins/mycred-hook-buddypress.php:252 ../addons/gateway/event-
3208
  #: booking/mycred-eventsmanager.php:636 ../addons/gateway/event-booking/mycred-
3209
  #: eventsmanager-pro.php:617 ../addons/gateway/carts/mycred-wpecommerce.php:386 ..
3210
  #: addons/gateway/carts/mycred-marketpress.php:438
3211
  msgid "Insufficient Funds"
3212
  msgstr "Fondos Insuficientes"
3213
 
3214
- #: ../plugins/mycred-hook-buddypress.php:502
3215
  #, php-format
3216
  msgid "%plural% for Profile Updates"
3217
  msgstr "%plural% por Actualizar Perfil"
3218
 
3219
- #: ../plugins/mycred-hook-buddypress.php:536
3220
  #, php-format
3221
  msgid "%plural% for New Avatar"
3222
  msgstr "%plural% por Nuevo Avatar"
3223
 
3224
- #: ../plugins/mycred-hook-buddypress.php:553
3225
  #, php-format
3226
  msgid "%plural% for New Friendships"
3227
  msgstr "%plural% por Nueva Amistad"
3228
 
3229
- #: ../plugins/mycred-hook-buddypress.php:573
3230
  #, php-format
3231
  msgid "%plural% for Leaving Friendship"
3232
  msgstr "%plural% por Dejar Amistad"
3233
 
3234
- #: ../plugins/mycred-hook-buddypress.php:586
3235
  #, php-format
3236
  msgid "%plural% for New Comment"
3237
  msgstr "%plural% por Nuevo Comentario"
3238
 
3239
- #: ../plugins/mycred-hook-buddypress.php:603
3240
  #, php-format
3241
  msgid "%plural% for Deleting Comment"
3242
  msgstr "%plural% por Borrar Comentario"
3243
 
3244
- #: ../plugins/mycred-hook-buddypress.php:616
3245
  #, php-format
3246
  msgid "%plural% for New Messages"
3247
  msgstr "%plural% por Nuevo Mensaje"
3248
 
3249
- #: ../plugins/mycred-hook-buddypress.php:633
3250
  #, php-format
3251
  msgid "%plural% for Sending Gift"
3252
  msgstr "%plural% por Enviar Regalo"
3253
 
3254
- #: ../plugins/mycred-hook-buddypress.php:1204
3255
  #, php-format
3256
  msgid "%plural% for Creating Groups"
3257
  msgstr "%plural% por Creat Cupones"
3258
 
3259
- #: ../plugins/mycred-hook-buddypress.php:1208
3260
  msgid ""
3261
  "If you use a negative value and the user does not have enough %_plural% the "
3262
  "\"Create Group\" button will be disabled."
@@ -3264,45 +3289,45 @@ msgstr ""
3264
  "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
3265
  "\"Crear Grupo\" sera desactivada."
3266
 
3267
- #: ../plugins/mycred-hook-buddypress.php:1212
3268
  msgid "Number of members before awarding %_plural%"
3269
  msgstr "Numero de miembros antes de conceder %_plural%"
3270
 
3271
- #: ../plugins/mycred-hook-buddypress.php:1214
3272
  msgid "Use zero to award %_plural% when group is created."
3273
  msgstr "Ponga cero para %_plural% cuando se crea un grupo."
3274
 
3275
- #: ../plugins/mycred-hook-buddypress.php:1224
3276
  #, php-format
3277
  msgid "%plural% for Deleting Groups"
3278
  msgstr "%plural% por Borrar Grupos"
3279
 
3280
- #: ../plugins/mycred-hook-buddypress.php:1237
3281
  #, php-format
3282
  msgid "%plural% for New Forum Topic"
3283
  msgstr "%plural% por Nuevo Tema de Foro"
3284
 
3285
- #: ../plugins/mycred-hook-buddypress.php:1254
3286
  #, php-format
3287
  msgid "%plural% for Editing Forum Topic"
3288
  msgstr "%plural% por Editar Tema de Foro"
3289
 
3290
- #: ../plugins/mycred-hook-buddypress.php:1271
3291
  #, php-format
3292
  msgid "%plural% for New Forum Post"
3293
  msgstr "%plural% por Nueva Publicación en Foro"
3294
 
3295
- #: ../plugins/mycred-hook-buddypress.php:1288
3296
  #, php-format
3297
  msgid "%plural% for Editing Forum Post"
3298
  msgstr "%plural% por Editar Publicación en Foro"
3299
 
3300
- #: ../plugins/mycred-hook-buddypress.php:1305
3301
  #, php-format
3302
  msgid "%plural% for Joining Groups"
3303
  msgstr "%plural% por Unirse a Grupos"
3304
 
3305
- #: ../plugins/mycred-hook-buddypress.php:1309
3306
  msgid ""
3307
  "If you use a negative value and the user does not have enough %_plural% the "
3308
  "\"Join Group\" button will be disabled."
@@ -3310,167 +3335,167 @@ msgstr ""
3310
  "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
3311
  "\"Unirse a Grupo\" sera desactivada."
3312
 
3313
- #: ../plugins/mycred-hook-buddypress.php:1323
3314
  #, php-format
3315
  msgid "%plural% for Leaving Groups"
3316
  msgstr "%plural% por Dejar Grupos"
3317
 
3318
- #: ../plugins/mycred-hook-buddypress.php:1336
3319
  #, php-format
3320
  msgid "%plural% for New Group Avatar"
3321
  msgstr "%plural% por Nuevo Avatar de Grupo"
3322
 
3323
- #: ../plugins/mycred-hook-buddypress.php:1353
3324
  #, php-format
3325
  msgid "%plural% for New Group Comment"
3326
  msgstr "%plural% por Nuevo Comentario Grupo"
3327
 
3328
- #: ../plugins/mycred-hook-buddypress-links.php:19
3329
  msgid "BuddyPress: Links"
3330
  msgstr "BuddyPress: Enlaces"
3331
 
3332
- #: ../plugins/mycred-hook-buddypress-links.php:20
3333
  #, php-format
3334
  msgid "Awards %_plural% for link related actions."
3335
  msgstr "Concede %_plural% por acciones relacionados a enlaces."
3336
 
3337
- #: ../plugins/mycred-hook-buddypress-links.php:244
3338
  #, php-format
3339
  msgid "%plural% for New Links"
3340
  msgstr "%plural% por Nuevas Enlaces"
3341
 
3342
- #: ../plugins/mycred-hook-buddypress-links.php:261
3343
  #, php-format
3344
  msgid "%plural% for Vote on Link"
3345
  msgstr "%plural% por Votar sobre Enlaces"
3346
 
3347
- #: ../plugins/mycred-hook-buddypress-links.php:277
3348
  #, php-format
3349
  msgid "%plural% per received Vote"
3350
  msgstr "%plural% por Votos Recibidos"
3351
 
3352
- #: ../plugins/mycred-hook-buddypress-links.php:280
3353
  msgid "Vote Up"
3354
  msgstr "Votar a Favor"
3355
 
3356
- #: ../plugins/mycred-hook-buddypress-links.php:299
3357
  msgid "Vote Down"
3358
  msgstr "Votar en Contra "
3359
 
3360
- #: ../plugins/mycred-hook-buddypress-links.php:314
3361
  #, php-format
3362
  msgid "%plural% for Updating Links"
3363
  msgstr "%plural% por Actualizar Enlaces"
3364
 
3365
- #: ../plugins/mycred-hook-buddypress-links.php:331
3366
  #, php-format
3367
  msgid "%plural% for Deleting Links"
3368
  msgstr "%plural% por Borrar Enlaces"
3369
 
3370
- #: ../plugins/mycred-hook-affiliatewp.php:256 ../includes/mycred-shortcodes.php:
3371
- #: 988 ../includes/mycred-shortcodes.php:1131 ../includes/mycred-admin.php:749 ..
3372
- #: includes/mycred-admin.php:801 ../addons/banking/services/mycred-bank-service-
3373
- #: payouts.php:266 ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ..
3374
- #: addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/buy-creds/myCRED-
3375
- #: addon-buy-creds.php:1713 ../addons/buy-creds/abstracts/mycred-abstract-payment-
3376
  #: gateway.php:593
3377
  msgid "Amount"
3378
  msgstr "Cantidad"
3379
 
3380
- #: ../plugins/mycred-hook-events-manager-light.php:18
3381
  msgid "Events Manager"
3382
  msgstr "Gestionamiento de Eventos"
3383
 
3384
- #: ../plugins/mycred-hook-events-manager-light.php:19
3385
  #, php-format
3386
  msgid "Awards %_plural% for users attending events."
3387
  msgstr "Concede %_plural% para usuarios que asistieron actividades o eventos."
3388
 
3389
- #: ../plugins/mycred-hook-events-manager-light.php:186
3390
  msgid "Attending Event"
3391
  msgstr "Asistir Evento"
3392
 
3393
- #: ../plugins/mycred-hook-events-manager-light.php:203
3394
  msgid "Cancelling Attendance"
3395
  msgstr "Cancelando Asistencia"
3396
 
3397
- #: ../plugins/mycred-hook-buddypress-media.php:18
3398
  msgid "rtMedia Galleries"
3399
  msgstr "Galerías rtMedia (rtMedia Galleries)"
3400
 
3401
- #: ../plugins/mycred-hook-buddypress-media.php:19
3402
  #, php-format
3403
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
3404
  msgstr "Concede / Resta %_plural% a usuarios por crear álbumes o subir nuevos fotos."
3405
 
3406
- #: ../plugins/mycred-hook-buddypress-media.php:202
3407
  msgid "New Media Upload"
3408
  msgstr "Subir Nuevo Media"
3409
 
3410
- #: ../plugins/mycred-hook-buddypress-media.php:205 ../includes/mycred-functions.
3411
- #: php:2557
3412
  msgid "Photo Upload"
3413
  msgstr "Subir Foto"
3414
 
3415
- #: ../plugins/mycred-hook-buddypress-media.php:219 ../includes/mycred-functions.
3416
- #: php:2558
3417
  msgid "Video Upload"
3418
  msgstr "Subir Video"
3419
 
3420
- #: ../plugins/mycred-hook-buddypress-media.php:233 ../includes/mycred-functions.
3421
- #: php:2559
3422
  msgid "Music Upload"
3423
  msgstr "Subir Música"
3424
 
3425
- #: ../plugins/mycred-hook-buddypress-media.php:247
3426
  msgid "Delete Media"
3427
  msgstr "Borrar Medios"
3428
 
3429
- #: ../plugins/mycred-hook-buddypress-media.php:250
3430
  msgid "Delete Photo"
3431
  msgstr "Borrar Foto"
3432
 
3433
- #: ../plugins/mycred-hook-buddypress-media.php:260
3434
  msgid "Delete Video"
3435
  msgstr "Borrar Video"
3436
 
3437
- #: ../plugins/mycred-hook-buddypress-media.php:270
3438
  msgid "Delete Music"
3439
  msgstr "Borrar Música"
3440
 
3441
- #: ../plugins/mycred-hook-wp-favorite-posts.php:18
3442
  msgid "WP Favorite Posts"
3443
  msgstr "WP Favorite Posts"
3444
 
3445
- #: ../plugins/mycred-hook-wp-favorite-posts.php:19
3446
  #, php-format
3447
  msgid "Awards %_plural% for users adding posts to their favorites."
3448
  msgstr "Concede %_plural% a usuarios por añadir entradas a sus favoritos."
3449
 
3450
- #: ../plugins/mycred-hook-wp-favorite-posts.php:207
3451
  msgid "Adding Content to Favorites"
3452
  msgstr "Añadiendo Contenido a Favoritos"
3453
 
3454
- #: ../plugins/mycred-hook-wp-favorite-posts.php:243
3455
  msgid "Removing Content from Favorites"
3456
  msgstr "Quitando Contenido de Favoritos"
3457
 
3458
- #: ../plugins/mycred-hook-contact-form7.php:18
3459
  msgid "Contact Form 7 Form Submissions"
3460
  msgstr "Presentación Formulario de Contact Form 7"
3461
 
3462
- #: ../plugins/mycred-hook-contact-form7.php:19
3463
  #, php-format
3464
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
3465
  msgstr ""
3466
  "Concede %_plural% por el exitoso envío del formulario (por usuarios que han "
3467
  "iniciado sesión)"
3468
 
3469
- #: ../plugins/mycred-hook-jetpack.php:18
3470
  msgid "Jetpack Subscriptions"
3471
  msgstr "Suscripciónes a Jetpack"
3472
 
3473
- #: ../plugins/mycred-hook-jetpack.php:19
3474
  #, php-format
3475
  msgid ""
3476
  "Awards %_plural% for users signing up for site or comment updates using "
@@ -3479,63 +3504,63 @@ msgstr ""
3479
  "Concede %_plural% a usuarios por incribirse a las actualizaciones del sitio "
3480
  "web o a los comentarios atraves de Jetpack."
3481
 
3482
- #: ../plugins/mycred-hook-jetpack.php:499
3483
  msgid "Site Subscriptions"
3484
  msgstr "Suscripciónes al Sitio Web"
3485
 
3486
- #: ../plugins/mycred-hook-jetpack.php:512
3487
  msgid "Comment Subscriptions"
3488
  msgstr "Suscripciónes a commentarios"
3489
 
3490
- #: ../plugins/mycred-hook-bbPress.php:18
3491
  msgid "bbPress"
3492
  msgstr "bbPress"
3493
 
3494
- #: ../plugins/mycred-hook-bbPress.php:19
3495
  #, php-format
3496
  msgid "Awards %_plural% for bbPress actions."
3497
  msgstr "Concede %_plural% por acciones en bbPress."
3498
 
3499
- #: ../plugins/mycred-hook-bbPress.php:404
3500
  #, php-format
3501
  msgid "%plural% for New Forum"
3502
  msgstr "%plural% por nuevo foro"
3503
 
3504
- #: ../plugins/mycred-hook-bbPress.php:421
3505
  #, php-format
3506
  msgid "%plural% for Forum Deletion"
3507
  msgstr "%plural% por Eliminar Foro"
3508
 
3509
- #: ../plugins/mycred-hook-bbPress.php:452
3510
  #, php-format
3511
  msgid "Forum authors can receive %_plural% for creating new topics."
3512
  msgstr "Autores "
3513
 
3514
- #: ../plugins/mycred-hook-bbPress.php:469
3515
  #, php-format
3516
  msgid "%plural% for Favorited Topic"
3517
  msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
3518
 
3519
- #: ../plugins/mycred-hook-bbPress.php:486
3520
  #, php-format
3521
  msgid "%plural% for New Reply"
3522
  msgstr "%plural% por Nueva Respuesta"
3523
 
3524
- #: ../plugins/mycred-hook-bbPress.php:504
3525
  #, php-format
3526
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
3527
  msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
3528
 
3529
- #: ../plugins/mycred-hook-bbPress.php:508
3530
  #, php-format
3531
  msgid "Show users %_plural% balance in replies"
3532
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
3533
 
3534
- #: ../plugins/mycred-hook-badgeOS.php:18
3535
  msgid "BadgeOS"
3536
  msgstr "BadgeOS"
3537
 
3538
- #: ../plugins/mycred-hook-badgeOS.php:19
3539
  msgid ""
3540
  "Default settings for each BadgeOS Achievement type. These settings may be "
3541
  "overridden for individual achievement type."
@@ -3543,7 +3568,7 @@ msgstr ""
3543
  "Configuraciones predefinidos para cada tipo de BadgeOS Logro (Achievement). "
3544
  "Estos ajustes pueden ser anulados para el tipo de logro individual."
3545
 
3546
- #: ../plugins/mycred-hook-badgeOS.php:105
3547
  #, php-format
3548
  msgid ""
3549
  "Please setup your <a href=\"%s\">default settings</a> before using this "
@@ -3552,30 +3577,30 @@ msgstr ""
3552
  "Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> antes "
3553
  "de usar este función."
3554
 
3555
- #: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
3556
  #, php-format
3557
  msgid "%plural% to Award"
3558
  msgstr "%plural% a Conceder"
3559
 
3560
  #. also "Ponga cero para inhabilitar"
3561
- #: ../plugins/mycred-hook-badgeOS.php:122
3562
  msgid "Use zero to disable"
3563
  msgstr "Ponga cero para desactivar"
3564
 
3565
- #: ../plugins/mycred-hook-badgeOS.php:133
3566
  msgid "Deduction Log Template"
3567
  msgstr "Plantilla de Registro Descontado"
3568
 
3569
- #: ../plugins/mycred-hook-badgeOS.php:278
3570
  #, php-format
3571
  msgid "Default %s for %s"
3572
  msgstr "Predeterminar %s por %s"
3573
 
3574
- #: ../plugins/mycred-hook-badgeOS.php:284
3575
  msgid "Use zero to disable users gaining %_plural%"
3576
  msgstr "Ponga cero para que los usuarios no obtengan %_plural%"
3577
 
3578
- #: ../plugins/mycred-hook-badgeOS.php:288
3579
  msgid "Default Log template"
3580
  msgstr "Plantilla de Registro Predefinido"
3581
 
@@ -3603,7 +3628,7 @@ msgid "%s CubePoints Import"
3603
  msgstr "Importar CubePoints %s"
3604
 
3605
  #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
3606
- #: 344
3607
  msgid "Import CubePoints log entries and / or balances."
3608
  msgstr "Importar las entradas de registro de CubePoints y/o saldos."
3609
 
@@ -3673,26 +3698,26 @@ msgstr ""
3673
  msgid "No export options available."
3674
  msgstr "No hay opciones para exportar."
3675
 
3676
- #: ../includes/mycred-log.php:756 ../addons/buy-creds/myCRED-addon-buy-creds.php:
3677
- #: 1075
3678
  msgid "Date"
3679
  msgstr "Fecha"
3680
 
3681
  #. need more context: entrada or inscripción
3682
- #: ../includes/mycred-log.php:758
3683
  msgid "Entry"
3684
  msgstr "Entrada"
3685
 
3686
- #: ../includes/mycred-log.php:958
3687
  msgid "No log entries found"
3688
  msgstr "Ninguna entrada de registro encontrada"
3689
 
3690
- #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
3691
  msgid "Search Log"
3692
  msgstr "Busqueda de Registro"
3693
 
3694
  #. buscar las entradas en el registro
3695
- #: ../includes/mycred-log.php:977
3696
  msgid "search log entries"
3697
  msgstr "Búsqueda de las entradas de registro"
3698
 
@@ -3845,36 +3870,32 @@ msgstr "Lista separada por comas de blog IDs donde %s se va a inhabilitar."
3845
  msgid "Save Network Settings"
3846
  msgstr "Guardar las Configuraciones de la Eed"
3847
 
3848
- #: ../includes/mycred-about.php:77
3849
  #, php-format
3850
  msgid "Welcome to %s %s"
3851
  msgstr "Bienvenido a %s %s"
3852
 
3853
- #: ../includes/mycred-shortcodes.php:175
3854
  msgid "Leaderboard is empty."
3855
  msgstr "La Tabla de Clasificación esta vacía"
3856
 
3857
- #: ../includes/mycred-shortcodes.php:525
3858
- msgid "error"
3859
- msgstr "error"
3860
-
3861
- #: ../includes/mycred-shortcodes.php:525
3862
  msgid "Anchor missing URL!"
3863
  msgstr "¡La Ancla falta el URL!"
3864
 
3865
- #: ../includes/mycred-shortcodes.php:641
3866
  msgid "Sent"
3867
  msgstr "Enviado"
3868
 
3869
- #: ../includes/mycred-shortcodes.php:642
3870
  msgid "Error - Try Again"
3871
  msgstr "Error - Inténtelo de nuevo."
3872
 
3873
- #: ../includes/mycred-shortcodes.php:780
3874
  msgid "A video ID is required for this shortcode"
3875
  msgstr "Este código corto (shortcode) precisa un ID del video."
3876
 
3877
- #: ../includes/mycred-shortcodes.php:993 ../addons/gateway/event-booking/mycred-
3878
  #: eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager.
3879
  #: php:578 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:540 ..
3880
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ..
@@ -3889,7 +3910,8 @@ msgid "%s Overview"
3889
  msgstr "Descripción de %s"
3890
 
3891
  #: ../includes/mycred-overview.php:78 ../addons/stats/widgets/mycred-stats-widget-
3892
- #: circulation.php:136
 
3893
  msgid "Total amount in circulation"
3894
  msgstr "Suma total en circulación"
3895
 
@@ -3908,13 +3930,13 @@ msgid "Transfers"
3908
  msgstr "Transferencias"
3909
 
3910
  #: ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ..
3911
- #: addons/sell-content/myCRED-addon-sell-content.php:401
3912
  msgid "Sell Content"
3913
  msgstr "Vender Contenido"
3914
 
3915
  #: ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ..
3916
- #: addons/buy-creds/myCRED-addon-buy-creds.php:346 ../addons/buy-creds/myCRED-
3917
- #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712
3918
  msgid "Gateway"
3919
  msgstr "Pasarela"
3920
 
@@ -3994,7 +4016,7 @@ msgid "Cancel Setup"
3994
  msgstr "Cancelar la Instalación"
3995
 
3996
  #: ../includes/mycred-install.php:536 ../addons/buy-creds/myCRED-addon-buy-creds.
3997
- #: php:1687
3998
  msgid "Cancel"
3999
  msgstr "Cancelar"
4000
 
@@ -4026,31 +4048,31 @@ msgstr ""
4026
  msgid "Install & Run"
4027
  msgstr "Instalar e ejecutar"
4028
 
4029
- #: ../includes/mycred-admin.php:239
4030
  msgid "User is excluded"
4031
  msgstr "El Usuario ha sido excluido"
4032
 
4033
- #: ../includes/mycred-admin.php:244
4034
  msgid "Log Entry can not be empty"
4035
  msgstr "Entrada de registro no puede estar vacío"
4036
 
4037
- #: ../includes/mycred-admin.php:248
4038
  msgid "Amount can not be zero"
4039
  msgstr "La Cantidad no Puede ser Cero"
4040
 
4041
- #: ../includes/mycred-admin.php:269
4042
  msgid "Failed to update this uses balance."
4043
  msgstr "No se pudo actualizar el saldo de este usuario."
4044
 
4045
- #: ../includes/mycred-admin.php:403
4046
  msgid "Excluded"
4047
  msgstr "Excluido"
4048
 
4049
- #: ../includes/mycred-admin.php:424
4050
  msgid "Adjust"
4051
  msgstr "Modificar"
4052
 
4053
- #: ../includes/mycred-admin.php:626 ../includes/mycred-admin.php:797 ..
4054
  #: addons/gateway/event-booking/mycred-eventespresso3.php:277 ..
4055
  #: addons/gateway/event-booking/mycred-eventespresso3.php:301 ..
4056
  #: addons/gateway/event-booking/mycred-eventsmanager.php:412 ..
@@ -4058,35 +4080,35 @@ msgstr "Modificar"
4058
  msgid "Current Balance"
4059
  msgstr "Saldo Actual"
4060
 
4061
- #: ../includes/mycred-admin.php:718
4062
  #, php-format
4063
  msgid "%singular% balance"
4064
  msgstr "%singular% saldo"
4065
 
4066
- #: ../includes/mycred-admin.php:742 ../includes/mycred-admin.php:786 ..
4067
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503
4068
  msgid "required"
4069
  msgstr "necesario"
4070
 
4071
- #: ../includes/mycred-admin.php:744 ../includes/mycred-admin.php:788 ..
4072
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504
4073
  msgid "optional"
4074
  msgstr "opcional"
4075
 
4076
- #: ../includes/mycred-admin.php:758 ../includes/mycred-admin.php:802 ..
4077
  #: addons/gateway/event-booking/mycred-eventespresso3.php:470
4078
  msgid "Log Entry"
4079
  msgstr "Entrada de Registro"
4080
 
4081
- #: ../includes/mycred-admin.php:762 ../includes/mycred-admin.php:803
4082
  msgid "Update Balance"
4083
  msgstr "Actualizar Saldo"
4084
 
4085
- #: ../includes/mycred-admin.php:795
4086
  msgid "ID"
4087
  msgstr "ID"
4088
 
4089
- #: ../includes/mycred-admin.php:801
4090
  msgid "A positive or negative value"
4091
  msgstr "Un valor positivo o negativo"
4092
 
@@ -4101,17 +4123,17 @@ msgid "Show the current users %s balance"
4101
  msgstr "Enseñar el saldo de %s del usuario actual"
4102
 
4103
  #: ../includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:391 ..
4104
- #: includes/importers/mycred-cubepoints.php:365 ../addons/gateway/event-
4105
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
4106
  #: eventsmanager.php:550 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
4107
  #: php:504 ../addons/gateway/carts/mycred-wpecommerce.php:354 ..
4108
  #: addons/gateway/carts/mycred-woocommerce.php:120 ..
4109
  #: addons/gateway/carts/mycred-marketpress.php:389 ../addons/ranks/myCRED-addon-
4110
- #: ranks.php:1046 ../addons/ranks/myCRED-addon-ranks.php:1201 ../addons/email-
4111
- #: notices/myCRED-addon-email-notices.php:814 ../addons/email-notices/myCRED-
4112
- #: addon-email-notices.php:1031 ../addons/coupons/myCRED-addon-coupons.php:179 ..
4113
  #: addons/coupons/myCRED-addon-coupons.php:388 ../addons/sell-content/myCRED-
4114
- #: addon-sell-content.php:411
4115
  msgid "Point Type"
4116
  msgstr "Tipo de Puntos"
4117
 
@@ -4201,90 +4223,90 @@ msgstr "Mostrar el saldo actual del usuario para cada tipo de puntos."
4201
  msgid "Row Layout"
4202
  msgstr "Disposición de Filas"
4203
 
4204
- #: ../includes/mycred-functions.php:85
4205
  msgid "Point"
4206
  msgstr "Punto"
4207
 
4208
- #: ../includes/mycred-functions.php:86
4209
  msgid "Points"
4210
  msgstr "Puntos"
4211
 
4212
- #: ../includes/mycred-functions.php:447
4213
  msgid "Deleted"
4214
  msgstr "Borrado"
4215
 
4216
- #: ../includes/mycred-functions.php:594
4217
  msgid "Deleted Item"
4218
  msgstr "Artículo Borrado"
4219
 
4220
- #: ../includes/mycred-functions.php:658 ../addons/gateway/carts/mycred-
4221
- #: wpecommerce.php:341 ../addons/email-notices/myCRED-addon-email-notices.php:200
4222
  msgid "General"
4223
  msgstr "General"
4224
 
4225
- #: ../includes/mycred-functions.php:665
4226
  msgid "User Related"
4227
  msgstr "Relacionado al Usuario"
4228
 
4229
- #: ../includes/mycred-functions.php:672
4230
  msgid "Post Related"
4231
  msgstr "Relacionado a la Entrada"
4232
 
4233
- #: ../includes/mycred-functions.php:679
4234
  msgid "Comment Related"
4235
  msgstr "Relacionado al Comentario"
4236
 
4237
- #: ../includes/mycred-functions.php:686
4238
  msgid "Widget Related"
4239
  msgstr "Relacionado al Widget"
4240
 
4241
- #: ../includes/mycred-functions.php:693
4242
  msgid "Amount Related"
4243
  msgstr "Cantidad Relacionada"
4244
 
4245
- #: ../includes/mycred-functions.php:700
4246
  msgid "Video Related"
4247
  msgstr "Relacionado al Video"
4248
 
4249
- #: ../includes/mycred-functions.php:711
4250
  msgid "and"
4251
  msgstr "y"
4252
 
4253
- #: ../includes/mycred-functions.php:713
4254
  msgid "Available Template Tags:"
4255
  msgstr "Etiquetas de Plantilla Disponibles:"
4256
 
4257
- #: ../includes/mycred-functions.php:1874
4258
  msgid "Entire Log"
4259
  msgstr "Todo el Registro"
4260
 
4261
- #: ../includes/mycred-functions.php:1879 ../includes/mycred-functions.php:1880
4262
  msgid "Displayed Rows"
4263
  msgstr "Filas Mostradas"
4264
 
4265
- #: ../includes/mycred-functions.php:1887
4266
  msgid "Search Results"
4267
  msgstr "Resultados de la Búsqueda"
4268
 
4269
- #: ../includes/mycred-functions.php:1888
4270
  msgid "My Entire Log"
4271
  msgstr "Mi Registro Entero"
4272
 
4273
- #: ../includes/mycred-functions.php:2658 ../addons/transfer/myCRED-addon-transfer.
4274
  #: php:51
4275
  msgid "Transfer"
4276
  msgstr "Transferir"
4277
 
4278
- #: ../includes/importers/mycred-cubepoints.php:276
4279
  msgid "No balances were imported."
4280
  msgstr "Ningun saldo fue importado."
4281
 
4282
- #: ../includes/importers/mycred-cubepoints.php:276
4283
  msgid "No log entries were imported!"
4284
  msgstr "¡No se importo ninguna entrada de registro!"
4285
 
4286
- #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-
4287
- #: log-entries.php:138
4288
  #, php-format
4289
  msgid ""
4290
  "Import complete - A total of <strong>%d</strong> entries were successfully "
@@ -4293,46 +4315,46 @@ msgstr ""
4293
  "Importación Finalizado - En total, <strong>%d</strong> entradas fueron "
4294
  "importado con éxito. Se saltaron <strong>%d</strong>."
4295
 
4296
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-
4297
- #: balances.php:181 ../includes/importers/mycred-log-entries.php:148 ..
4298
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:102
4299
  msgid "View Log"
4300
  msgstr "Ver Registro"
4301
 
4302
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-
4303
- #: balances.php:181 ../includes/importers/mycred-log-entries.php:148
4304
  msgid "Import More"
4305
  msgstr "Importar Más"
4306
 
4307
- #: ../includes/importers/mycred-cubepoints.php:306
4308
  msgid "No CubePoints log."
4309
  msgstr "No hay registro de CubePoints."
4310
 
4311
- #: ../includes/importers/mycred-cubepoints.php:317
4312
  msgid "Import CubePoints Log"
4313
  msgstr "Importar registro de CubePoints"
4314
 
4315
- #: ../includes/importers/mycred-cubepoints.php:334
4316
  msgid "Select what to import"
4317
  msgstr "Elige lo que deseas importar"
4318
 
4319
- #: ../includes/importers/mycred-cubepoints.php:335
4320
  msgid "Log Entries Only"
4321
  msgstr "Solo Entradas de Registro"
4322
 
4323
- #: ../includes/importers/mycred-cubepoints.php:336
4324
  msgid "CubePoints Balances Only"
4325
  msgstr "Saldos de CubePoints Unicamente"
4326
 
4327
- #: ../includes/importers/mycred-cubepoints.php:337
4328
  msgid "Log Entries and Balances"
4329
  msgstr "Solo Entradas y Saldos de Registro"
4330
 
4331
- #: ../includes/importers/mycred-cubepoints.php:351
4332
  msgid "Import"
4333
  msgstr "Importar"
4334
 
4335
- #: ../includes/importers/mycred-cubepoints.php:360
4336
  msgid ""
4337
  "Warning! Importing CubePoints balances will replace your users myCRED "
4338
  "balance!"
@@ -4340,30 +4362,30 @@ msgstr ""
4340
  "¡Advertencia! ¡La importación de los saldos de CubePoints reemplazará el "
4341
  "saldo de myCRED para tus usuarios!"
4342
 
4343
- #: ../includes/importers/mycred-cubepoints.php:378
4344
  msgid "Import Log"
4345
  msgstr "Importar Registro"
4346
 
4347
- #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-
4348
- #: balances.php:159 ../includes/importers/mycred-balances.php:198 ..
4349
- #: includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-
4350
- #: entries.php:81 ../includes/importers/mycred-log-entries.php:126 ..
4351
- #: includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-
4352
- #: log-entries.php:180
4353
  msgid "Sorry, there has been an error."
4354
  msgstr "Lo sentimos, se ha producido un error."
4355
 
4356
- #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-
4357
- #: entries.php:82
4358
  msgid "The file does not exist, please try again."
4359
  msgstr "El fichero no existe, por favor inténtelo de nuevo más tarde."
4360
 
4361
- #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-
4362
- #: entries.php:127
4363
  msgid "The CSV is invalid."
4364
  msgstr "El CSV no es valido."
4365
 
4366
- #: ../includes/importers/mycred-balances.php:171
4367
  #, php-format
4368
  msgid ""
4369
  "Import complete - A total of <strong>%d</strong> balances were successfully "
@@ -4372,16 +4394,16 @@ msgstr ""
4372
  "Importación Finalizado - En total, <strong>%d</strong> saldos fueron "
4373
  "importado con éxito. Se saltaron <strong>%d</strong>."
4374
 
4375
- #: ../includes/importers/mycred-balances.php:227
4376
  msgid "Import Balances"
4377
  msgstr "Saldos Importar"
4378
 
4379
- #: ../includes/importers/mycred-balances.php:244
4380
  msgid "Import balances from a CSV file."
4381
  msgstr "Importa saldos de registro desde un fichero CSV."
4382
 
4383
- #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-
4384
- #: entries.php:219
4385
  msgid ""
4386
  "Before you can upload your import file, you will need to fix the following "
4387
  "error:"
@@ -4389,76 +4411,76 @@ msgstr ""
4389
  "Antes que puedas subir tu fichero de importe, tendras que corregir los "
4390
  "errores siguientes:"
4391
 
4392
- #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-
4393
- #: entries.php:228
4394
  msgid "Choose a file from your computer:"
4395
  msgstr "Elige un fichero en tu ordenador:"
4396
 
4397
- #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-
4398
- #: entries.php:234
4399
  #, php-format
4400
  msgid "Maximum size: %s"
4401
  msgstr "Tamaño Máximo: %s"
4402
 
4403
- #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-
4404
- #: entries.php:239
4405
  msgid "OR enter path to file:"
4406
  msgstr "O rellena la ruta al fichero:"
4407
 
4408
- #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-
4409
- #: entries.php:246
4410
  msgid "Delimiter"
4411
  msgstr "Delimitador"
4412
 
4413
- #: ../includes/importers/mycred-balances.php:283
4414
  msgid "Method"
4415
  msgstr "Método"
4416
 
4417
- #: ../includes/importers/mycred-balances.php:285
4418
  msgid "Replace current balances with the amount in this CSV file"
4419
  msgstr "Sustituir los balances actuales con los montos en el archivo CSV"
4420
 
4421
- #: ../includes/importers/mycred-balances.php:286
4422
  msgid "Adjust current balances according to the amount in this CSV file"
4423
  msgstr "Ajustar los balances actuales de acuerdo al monto en el archivo CSV"
4424
 
4425
- #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
4426
- #: entries.php:252
4427
  msgid "Upload file and import"
4428
  msgstr "Subir fichero e importar"
4429
 
4430
- #: ../includes/importers/mycred-log-entries.php:194
4431
  msgid "Import Log Entries"
4432
  msgstr "Importar Entradas de Registro"
4433
 
4434
- #: ../includes/importers/mycred-log-entries.php:211
4435
  msgid "Import log entries from a CSV file."
4436
  msgstr "Importa las entradas de registro desde un fichero CSV."
4437
 
4438
- #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
4439
- #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
4440
  msgid "Banking"
4441
  msgstr "Banco"
4442
 
4443
- #: ../addons/banking/myCRED-addon-banking.php:165 ..
4444
  #: addons/banking/services/mycred-bank-service-interest.php:512
4445
  msgid "Compound Interest"
4446
  msgstr "Interés Compuesto"
4447
 
4448
- #: ../addons/banking/myCRED-addon-banking.php:172
4449
  msgid "Recurring Payouts"
4450
  msgstr "Pagos Recurrentes"
4451
 
4452
- #: ../addons/banking/myCRED-addon-banking.php:225
4453
  #, php-format
4454
  msgid "%s Banking"
4455
  msgstr "%s Bancario"
4456
 
4457
- #: ../addons/banking/myCRED-addon-banking.php:231
4458
  msgid "WP-Cron deactivation detected!"
4459
  msgstr "¡Se detecto la desactivación de WP-Cron!"
4460
 
4461
- #: ../addons/banking/myCRED-addon-banking.php:232
4462
  msgid "Warning! This add-on requires WP - Cron to work."
4463
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
4464
 
@@ -4555,15 +4577,15 @@ msgstr "Desembolso"
4555
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ..
4556
  #: addons/gateway/event-booking/mycred-eventsmanager.php:540 ..
4557
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/sell-
4558
- #: content/myCRED-addon-sell-content.php:423 ../addons/buy-creds/myCRED-addon-buy-
4559
- #: creds.php:579
4560
  msgid "Payments"
4561
  msgstr "Pagos"
4562
 
4563
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
4564
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35 ..
4565
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/buy-
4566
- #: creds/myCRED-addon-buy-creds.php:1686
4567
  msgid "Pay Now"
4568
  msgstr "Pagar Ahora"
4569
 
@@ -4596,7 +4618,7 @@ msgid "Deactivate %s"
4596
  msgstr "Desactivar %s"
4597
 
4598
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:367 ../addons/buy-
4599
- #: creds/myCRED-addon-buy-creds.php:1085
4600
  msgid "Gateway Settings"
4601
  msgstr "Configuraciones de la Pasarela de Pago"
4602
 
@@ -4638,8 +4660,8 @@ msgstr "El titulo a mostrar en la factura y en los registros."
4638
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ..
4639
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
4640
  #: addons/transfer/includes/mycred-transfer-widgets.php:132 ../addons/sell-
4641
- #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
4642
- #: sell-content.php:686
4643
  msgid "Button Label"
4644
  msgstr "Eqiqueta Asignada al Botón"
4645
 
@@ -4652,8 +4674,8 @@ msgstr "Botón de Pago"
4652
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ..
4653
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:139 ..
4654
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ../addons/sell-
4655
- #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
4656
- #: sell-content.php:682
4657
  msgid "Price"
4658
  msgstr "Precio"
4659
 
@@ -4694,7 +4716,7 @@ msgstr ""
4694
  "inhabilitar."
4695
 
4696
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
4697
- #: content/myCRED-addon-sell-content.php:473
4698
  msgid "Templates"
4699
  msgstr "Plantillas"
4700
 
@@ -5269,45 +5291,45 @@ msgstr "Ingreso Usuario (user_login)"
5269
  msgid "User Email (user_email)"
5270
  msgstr "Correo Electrónico del Usuario (user_email)"
5271
 
5272
- #: ../addons/transfer/myCRED-addon-transfer.php:216
5273
  msgid "Select the point types that users can transfer."
5274
  msgstr "Elige el tipo de punto que el usuario puede transferir."
5275
 
5276
- #: ../addons/transfer/myCRED-addon-transfer.php:224
5277
  msgid "Log template for sending"
5278
  msgstr "Plantilla de registros para transmitir"
5279
 
5280
- #: ../addons/transfer/myCRED-addon-transfer.php:231
5281
  msgid "Log template for receiving"
5282
  msgstr "Plantilla de registros para recibir"
5283
 
5284
- #: ../addons/transfer/myCRED-addon-transfer.php:238
5285
  msgid "Autofill Recipient"
5286
  msgstr "Destinatario del Relleno Automático"
5287
 
5288
- #: ../addons/transfer/myCRED-addon-transfer.php:250
5289
  msgid "Select what user details recipients should be autofilled by."
5290
  msgstr ""
5291
  "Selecciona cuales detalles del usuario al destinatario deben ser rellenados "
5292
  "automáticamente."
5293
 
5294
- #: ../addons/transfer/myCRED-addon-transfer.php:253
5295
  msgid "Reload"
5296
  msgstr "Recargar"
5297
 
5298
- #: ../addons/transfer/myCRED-addon-transfer.php:256
5299
  msgid "Reload page on successful transfers."
5300
  msgstr "Actualizar la pagina despues de transferencias finalizadas."
5301
 
5302
- #: ../addons/transfer/myCRED-addon-transfer.php:280
5303
  msgid "Form Templates"
5304
  msgstr "Plantillas de Formulario"
5305
 
5306
- #: ../addons/transfer/myCRED-addon-transfer.php:283
5307
  msgid "Not logged in Template"
5308
  msgstr "Plantilla de no estar ingresado"
5309
 
5310
- #: ../addons/transfer/myCRED-addon-transfer.php:285
5311
  msgid ""
5312
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
5313
  "elements allowed!"
@@ -5315,11 +5337,11 @@ msgstr ""
5315
  "Mostrar este texto cuango los usuarios no han iniciado la sesión. ¡No se "
5316
  "permite ningun elemento de HTML!"
5317
 
5318
- #: ../addons/transfer/myCRED-addon-transfer.php:289
5319
  msgid "Balance Template"
5320
  msgstr "Plantilla de Saldo"
5321
 
5322
- #: ../addons/transfer/myCRED-addon-transfer.php:291
5323
  msgid ""
5324
  "Template to use when displaying the users balance (if included). No HTML "
5325
  "elements allowed!"
@@ -5327,34 +5349,34 @@ msgstr ""
5327
  "Utilizar esta plantilla cuando mostrando el saldo del usuario (si esta "
5328
  "incluido). ¡No se permite elementos de HTML!"
5329
 
5330
- #: ../addons/transfer/myCRED-addon-transfer.php:295
5331
  msgid "Limit Template"
5332
  msgstr "Limitar Plantilla"
5333
 
5334
- #: ../addons/transfer/myCRED-addon-transfer.php:297
5335
  msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
5336
  msgstr ""
5337
  "Utilizar esta plantilla cuando mostrando límites (si se utiliza). ¡No se "
5338
  "permite elementos de HTML!"
5339
 
5340
- #: ../addons/transfer/myCRED-addon-transfer.php:301
5341
  msgid "Button Template"
5342
  msgstr "Plantilla del Botón"
5343
 
5344
- #: ../addons/transfer/myCRED-addon-transfer.php:303
5345
  msgid "Send Transfer button template. No HTML elements allowed!"
5346
  msgstr "Plantilla del botón Enviar Transferencia ¡No se permite elementos de HTML!"
5347
 
5348
- #: ../addons/transfer/myCRED-addon-transfer.php:306
5349
  msgid "Error Messages"
5350
  msgstr "Mensajes de Error"
5351
 
5352
  #. English needs to be corrected: "Balance too low to send."
5353
- #: ../addons/transfer/myCRED-addon-transfer.php:309
5354
  msgid "Balance to low to send."
5355
  msgstr "Saldo insuficiente - no se puede enviar."
5356
 
5357
- #: ../addons/transfer/myCRED-addon-transfer.php:311
5358
  msgid ""
5359
  "Text to show when a users balance is to low for transfers. Leave empty to "
5360
  "hide. No HTML elements allowed!"
@@ -5363,11 +5385,11 @@ msgstr ""
5363
  "efectuar transferencias. Deje el campo vacío para ocultarlo. ¡No se permite "
5364
  "ningun elemento de HTML!"
5365
 
5366
- #: ../addons/transfer/myCRED-addon-transfer.php:315
5367
  msgid "Transfer Limit Reached."
5368
  msgstr "Límite de Transferencia Alcanzado."
5369
 
5370
- #: ../addons/transfer/myCRED-addon-transfer.php:317
5371
  msgid ""
5372
  "Text to show when a user has reached their transfer limit (if used). Leave "
5373
  "empty to hide. No HTML elements allowed!"
@@ -5397,192 +5419,192 @@ msgstr "Mostrar el saldo de usuarios"
5397
  msgid "Show users limit"
5398
  msgstr "Mostrar los límites de usuarios"
5399
 
5400
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:130
5401
  msgid "username"
5402
  msgstr "nombre de usuario"
5403
 
5404
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:133
5405
  msgid "email"
5406
  msgstr "correo electrónico"
5407
 
5408
  #. is this recipients plural or recipient's with an apostrophe missing?
5409
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:135
5410
  #, php-format
5411
  msgid "recipients %s"
5412
  msgstr "destinatarios %s"
5413
 
5414
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
5415
  msgid "To:"
5416
  msgstr "A:"
5417
 
5418
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:231
5419
  msgid "Amount:"
5420
  msgstr "Cantidad:"
5421
 
5422
  #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
5423
- #: php:213 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-
5424
- #: addon-ranks.php:452 ../addons/ranks/myCRED-addon-ranks.php:458 ..
5425
- #: addons/ranks/myCRED-addon-ranks.php:834 ../addons/ranks/myCRED-addon-ranks.
5426
- #: php:1311 ../addons/ranks/myCRED-addon-ranks.php:1602
5427
  msgid "Ranks"
5428
  msgstr "Rangos"
5429
 
5430
- #: ../addons/ranks/myCRED-addon-ranks.php:424
5431
  msgid "Warning! All ranks will be deleted! This can not be undone!"
5432
  msgstr "¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer esto!"
5433
 
5434
- #: ../addons/ranks/myCRED-addon-ranks.php:425
5435
  msgid "Are you sure you want to re-assign user ranks?"
5436
  msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
5437
 
5438
- #: ../addons/ranks/myCRED-addon-ranks.php:447 ../addons/ranks/myCRED-addon-ranks.
5439
- #: php:834
5440
  msgid "Rank"
5441
  msgstr "Rango"
5442
 
5443
- #: ../addons/ranks/myCRED-addon-ranks.php:448 ../addons/email-notices/myCRED-
5444
- #: addon-email-notices.php:167 ../addons/badges/myCRED-addon-badges.php:385 ..
5445
  #: addons/buy-creds/myCRED-addon-buy-creds.php:279 ../addons/buy-creds/myCRED-
5446
  #: addon-buy-creds.php:280
5447
  msgid "Add New"
5448
  msgstr "Añade Nuevo"
5449
 
5450
- #: ../addons/ranks/myCRED-addon-ranks.php:449
5451
  msgid "Add New Rank"
5452
  msgstr "Añadir Nuevo Rango"
5453
 
5454
- #: ../addons/ranks/myCRED-addon-ranks.php:450
5455
  msgid "Edit Rank"
5456
  msgstr "Editar Rango"
5457
 
5458
- #: ../addons/ranks/myCRED-addon-ranks.php:451
5459
  msgid "New Rank"
5460
  msgstr "Nuevo Rango"
5461
 
5462
- #: ../addons/ranks/myCRED-addon-ranks.php:453
5463
  msgid "View Rank"
5464
  msgstr "Ver Rango"
5465
 
5466
- #: ../addons/ranks/myCRED-addon-ranks.php:454
5467
  msgid "Search Ranks"
5468
  msgstr "Búsqueda de Rangos"
5469
 
5470
- #: ../addons/ranks/myCRED-addon-ranks.php:455
5471
  msgid "No ranks found"
5472
  msgstr "Ningun rango encontrado"
5473
 
5474
- #: ../addons/ranks/myCRED-addon-ranks.php:456
5475
  msgid "No ranks found in Trash"
5476
  msgstr "Ningun rango encontrao el la papelera"
5477
 
5478
- #: ../addons/ranks/myCRED-addon-ranks.php:541
5479
  #, php-format
5480
  msgid "Completed - Total of %d users effected"
5481
  msgstr "Completado - Un total %d usuarios afectados"
5482
 
5483
- #: ../addons/ranks/myCRED-addon-ranks.php:985
5484
  msgid "Rank Saved"
5485
  msgstr "Rango Guardado"
5486
 
5487
- #: ../addons/ranks/myCRED-addon-ranks.php:1040 ../addons/ranks/myCRED-addon-ranks.
5488
- #: php:1123
5489
  msgid "Rank Title"
5490
  msgstr "Titulo de Rango"
5491
 
5492
- #: ../addons/ranks/myCRED-addon-ranks.php:1041
5493
  msgid "Logo"
5494
  msgstr "Logotipo"
5495
 
5496
- #: ../addons/ranks/myCRED-addon-ranks.php:1042
5497
  msgid "Requirement"
5498
  msgstr "Requisito"
5499
 
5500
- #: ../addons/ranks/myCRED-addon-ranks.php:1068
5501
  msgid "No Logo Set"
5502
  msgstr "No hay Logotipo Configurado"
5503
 
5504
- #: ../addons/ranks/myCRED-addon-ranks.php:1083 ../addons/ranks/myCRED-addon-ranks.
5505
- #: php:1088
5506
  msgid "Any Value"
5507
  msgstr "Cualquier Valor"
5508
 
5509
- #: ../addons/ranks/myCRED-addon-ranks.php:1085 ../addons/buy-creds/myCRED-addon-
5510
- #: buy-creds.php:643
5511
  #, php-format
5512
  msgid "Minimum %plural%"
5513
  msgstr "Minimo %_plural%"
5514
 
5515
- #: ../addons/ranks/myCRED-addon-ranks.php:1090
5516
  #, php-format
5517
  msgid "Maximum %plural%"
5518
  msgstr "Maximo %plural%"
5519
 
5520
- #: ../addons/ranks/myCRED-addon-ranks.php:1138
5521
  msgid "Rank Settings"
5522
  msgstr "Configuración de Rango"
5523
 
5524
- #: ../addons/ranks/myCRED-addon-ranks.php:1192
5525
  #, php-format
5526
  msgid "Minimum %plural% to reach this rank"
5527
  msgstr "Minimo %plural% para llegar a este rango"
5528
 
5529
- #: ../addons/ranks/myCRED-addon-ranks.php:1196
5530
  #, php-format
5531
  msgid "Maximum %plural% to be included in this rank"
5532
  msgstr "Maximo %plural% para ser incluido en este rango"
5533
 
5534
- #: ../addons/ranks/myCRED-addon-ranks.php:1214
5535
  msgid "All Published Ranks"
5536
  msgstr "Todos los Rangos Publicados"
5537
 
5538
- #: ../addons/ranks/myCRED-addon-ranks.php:1224 ../addons/ranks/myCRED-addon-ranks.
5539
- #: php:1226
5540
  msgid "Not Set"
5541
  msgstr "No Configurado"
5542
 
5543
- #: ../addons/ranks/myCRED-addon-ranks.php:1232
5544
  msgid "No Ranks found"
5545
  msgstr "Ningun rango encontrado"
5546
 
5547
- #: ../addons/ranks/myCRED-addon-ranks.php:1316
5548
  msgid "Rank Features"
5549
  msgstr "Caracteristicas de los Rangos"
5550
 
5551
- #: ../addons/ranks/myCRED-addon-ranks.php:1320
5552
  #, php-format
5553
  msgid "%plural% requirement"
5554
  msgstr "%plural% requisito"
5555
 
5556
- #: ../addons/ranks/myCRED-addon-ranks.php:1321
5557
  msgid "Featured Image (Logo)"
5558
  msgstr "Imagen Principal (Logotipo)"
5559
 
5560
- #: ../addons/ranks/myCRED-addon-ranks.php:1323
5561
  msgid "Content"
5562
  msgstr "Contenido"
5563
 
5564
- #: ../addons/ranks/myCRED-addon-ranks.php:1325
5565
  msgid "Excerpt"
5566
  msgstr "Extracto"
5567
 
5568
- #: ../addons/ranks/myCRED-addon-ranks.php:1327
5569
  msgid "Comments"
5570
  msgstr "Comentario"
5571
 
5572
- #: ../addons/ranks/myCRED-addon-ranks.php:1329
5573
  msgid "Page Attributes"
5574
  msgstr "Atributos de Página"
5575
 
5576
- #: ../addons/ranks/myCRED-addon-ranks.php:1331
5577
  msgid "Custom Fields"
5578
  msgstr "Campo Personalizado"
5579
 
5580
- #: ../addons/ranks/myCRED-addon-ranks.php:1335
5581
  msgid "Public"
5582
  msgstr "Público"
5583
 
5584
  #. This is not clear, especially the second sentence (fragment)!
5585
- #: ../addons/ranks/myCRED-addon-ranks.php:1339
5586
  msgid ""
5587
  "If you want to create a template archive for each rank, you must select to "
5588
  "have ranks public. Defaults to disabled."
@@ -5590,28 +5612,28 @@ msgstr ""
5590
  "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
5591
  "los rangos sean público. Los valores predeterminados desactivado."
5592
 
5593
- #: ../addons/ranks/myCRED-addon-ranks.php:1342
5594
  msgid "Archive URL"
5595
  msgstr "URL del Archivo"
5596
 
5597
- #: ../addons/ranks/myCRED-addon-ranks.php:1346
5598
  msgid "Ignored if Ranks are not public"
5599
  msgstr "Sera Ingnorado si los Rangos no son Pulicos"
5600
 
5601
  #. not sure if this is order, as in ordering pizza or order as in rank, organization
5602
- #: ../addons/ranks/myCRED-addon-ranks.php:1349
5603
  msgid "Display Order"
5604
  msgstr "Orden de Visualización"
5605
 
5606
- #: ../addons/ranks/myCRED-addon-ranks.php:1357
5607
  msgid "Ascending - Lowest rank to highest"
5608
  msgstr "Ascendente - Rango más bajo a lo más alto"
5609
 
5610
- #: ../addons/ranks/myCRED-addon-ranks.php:1358
5611
  msgid "Descending - Highest rank to lowest"
5612
  msgstr "Descendiente - Rango más alto al más bajo"
5613
 
5614
- #: ../addons/ranks/myCRED-addon-ranks.php:1369
5615
  msgid ""
5616
  "Select in what order ranks should be displayed in your admin area and/or "
5617
  "front if ranks are \"Public\""
@@ -5619,15 +5641,15 @@ msgstr ""
5619
  "Elige en que orden se debe mostrar los rangos en tu area de administrador "
5620
  "y/o en el frente si los rangos son \"Público\""
5621
 
5622
- #: ../addons/ranks/myCRED-addon-ranks.php:1375
5623
  msgid "Rank Basis"
5624
  msgstr "Base de Rango"
5625
 
5626
- #: ../addons/ranks/myCRED-addon-ranks.php:1378
5627
  msgid "Users are ranked according to their current balance."
5628
  msgstr "Los usuarios se clasifican según su saldo actual."
5629
 
5630
- #: ../addons/ranks/myCRED-addon-ranks.php:1381
5631
  msgid ""
5632
  "Users are ranked according to the total amount of %_plural% they have "
5633
  "accumulated."
@@ -5635,12 +5657,12 @@ msgstr ""
5635
  "Los usuarios se clasifican según la cantidad total de %_plural% que han "
5636
  "acumulado."
5637
 
5638
- #: ../addons/ranks/myCRED-addon-ranks.php:1385 ../addons/ranks/myCRED-addon-ranks.
5639
- #: php:1390
5640
  msgid "Calculate Totals"
5641
  msgstr "Calcular Totales"
5642
 
5643
- #: ../addons/ranks/myCRED-addon-ranks.php:1388
5644
  msgid ""
5645
  "Once a users total has been calculated, they will be assigned to their "
5646
  "appropriate roles. For this reason, it is highly recommended that you first "
@@ -5650,7 +5672,7 @@ msgstr ""
5650
  "corespondientes seran asignados. ¡Por esta razón, se recomienda altamente "
5651
  "que primero configures los rangos!"
5652
 
5653
- #: ../addons/ranks/myCRED-addon-ranks.php:1389
5654
  msgid ""
5655
  "Depending on your log size and number of users this process may take a while."
5656
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
@@ -5661,75 +5683,75 @@ msgstr ""
5661
  "\"Actualizar Configuraciones\" o refrescar la pagina hasta que se haya "
5662
  "completado!"
5663
 
5664
- #: ../addons/ranks/myCRED-addon-ranks.php:1407
5665
  msgid "Include in Profile Header."
5666
  msgstr "Incluir en Encabezado del Perfil"
5667
 
5668
- #: ../addons/ranks/myCRED-addon-ranks.php:1409
5669
  msgid "Include under the \"Profile\" tab and Profile Header."
5670
  msgstr "Incluir en la pestanã \"Perfil\" y Encabezado de Perfil"
5671
 
5672
- #: ../addons/ranks/myCRED-addon-ranks.php:1413
5673
  msgid "Rank in BuddyPress"
5674
  msgstr "Rango en BuddyPress"
5675
 
5676
- #: ../addons/ranks/myCRED-addon-ranks.php:1537
5677
  msgid "Script Communication Error"
5678
  msgstr "Error del Script de Comunicación"
5679
 
5680
- #: ../addons/ranks/myCRED-addon-ranks.php:1609
5681
  msgid "No. of ranks"
5682
  msgstr "Numero de Rangos"
5683
 
5684
- #: ../addons/ranks/myCRED-addon-ranks.php:1614
5685
  msgid "Remove All Ranks"
5686
  msgstr "Quitar todos los Rangos"
5687
 
5688
- #: ../addons/ranks/myCRED-addon-ranks.php:1614
5689
  msgid "Assign Ranks to Users"
5690
  msgstr "Asignar Rango a los Usuarios"
5691
 
5692
- #: ../addons/ranks/includes/mycred-rank-functions.php:257
5693
  msgid "mycred_get_users_rank() : Missing required user id"
5694
  msgstr "mycred_get_users_rank() : Falta el requisito id del usuario"
5695
 
5696
- #: ../addons/ranks/includes/mycred-rank-functions.php:270
5697
  msgid "no rank"
5698
  msgstr "ningun rango"
5699
 
5700
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:115 ..
5701
- #: addons/ranks/includes/mycred-rank-shortcodes.php:210
5702
  msgid "No users found with this rank"
5703
  msgstr "Ningun usuario encontrado con este rango"
5704
 
5705
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122
5706
  msgid "Rank ID is required!"
5707
  msgstr "¡ID de Rango obligatorio!"
5708
 
5709
- #: ../addons/notifications/myCRED-addon-notifications.php:193
5710
  msgid "Notifications"
5711
  msgstr "Notificaciones"
5712
 
5713
- #: ../addons/notifications/myCRED-addon-notifications.php:195
5714
  msgid "Styling"
5715
  msgstr "Diseño/Estilo"
5716
 
5717
- #: ../addons/notifications/myCRED-addon-notifications.php:198
5718
  msgid "Use the included CSS Styling for notifications."
5719
  msgstr "Utilice el Estilo CSS incluido para notificaciones."
5720
 
5721
- #: ../addons/notifications/myCRED-addon-notifications.php:205
5722
  #, php-format
5723
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
5724
  msgstr ""
5725
  "Utiliza %entry% para mostrar la entrada de registro en el aviso y %amount% "
5726
  "para la cantidad."
5727
 
5728
- #: ../addons/notifications/myCRED-addon-notifications.php:208
5729
  msgid "Transient Lifespan"
5730
  msgstr "Duración de Transitorio"
5731
 
5732
- #: ../addons/notifications/myCRED-addon-notifications.php:212
5733
  msgid ""
5734
  "The number of days a users notification is saved before being automatically "
5735
  "deleted."
@@ -5737,117 +5759,117 @@ msgstr ""
5737
  "Cuantos dias una notificación del usuario se guarda antes de automáticamente "
5738
  "borrarse."
5739
 
5740
- #: ../addons/notifications/myCRED-addon-notifications.php:215
5741
  msgid "Duration"
5742
  msgstr "Duracion"
5743
 
5744
- #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ../addons/email-
5745
- #: notices/myCRED-addon-email-notices.php:171 ../addons/email-notices/myCRED-
5746
- #: addon-email-notices.php:177 ../addons/email-notices/myCRED-addon-email-notices.
5747
- #: php:283 ../addons/coupons/myCRED-addon-coupons.php:105
5748
  msgid "Email Notices"
5749
  msgstr "Avisos por Correo Electrónico"
5750
 
5751
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
5752
- #: notices/myCRED-addon-email-notices.php:1270
5753
  msgid "Email Notice"
5754
  msgstr "Aviso por Correo Electrónico"
5755
 
5756
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
5757
  msgid "Add New Notice"
5758
  msgstr "Añade Nueva Notificación"
5759
 
5760
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
5761
  msgid "Edit Notice"
5762
  msgstr "Editar Aviso"
5763
 
5764
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
5765
  msgid "New Notice"
5766
  msgstr "Nuevo Aviso"
5767
 
5768
- #: ../addons/email-notices/myCRED-addon-email-notices.php:172
5769
  msgid "View Notice"
5770
  msgstr "Ver Aviso"
5771
 
5772
- #: ../addons/email-notices/myCRED-addon-email-notices.php:173
5773
  msgid "Search Email Notices"
5774
  msgstr "Búsqueda de Avisos por Correo Electrónico"
5775
 
5776
- #: ../addons/email-notices/myCRED-addon-email-notices.php:174
5777
  msgid "No email notices found"
5778
  msgstr "Ningun aviso por correo electrónico encontrado"
5779
 
5780
- #: ../addons/email-notices/myCRED-addon-email-notices.php:175
5781
  msgid "No email notices found in Trash"
5782
  msgstr "Ningun aviso por correo electrónico encontrado en la papelera"
5783
 
5784
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
5785
- #: ../addons/email-notices/myCRED-addon-email-notices.php:201
5786
  msgid "users balance changes"
5787
  msgstr "el saldo de usuario cambia"
5788
 
5789
- #: ../addons/email-notices/myCRED-addon-email-notices.php:202
5790
  msgid "user gains %_plural%"
5791
  msgstr "usuario gana %_plural%"
5792
 
5793
- #: ../addons/email-notices/myCRED-addon-email-notices.php:203
5794
  msgid "user lose %_plural%"
5795
  msgstr "usuario pierde %_plural%"
5796
 
5797
- #: ../addons/email-notices/myCRED-addon-email-notices.php:204
5798
  msgid "users balance reaches zero"
5799
  msgstr "saldo de usuario llega a cero"
5800
 
5801
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
5802
- #: ../addons/email-notices/myCRED-addon-email-notices.php:205
5803
  msgid "users balance goes minus"
5804
  msgstr "el saldo de usuario cae a negativo"
5805
 
5806
- #: ../addons/email-notices/myCRED-addon-email-notices.php:219
5807
  msgid "Sell Content Add-on"
5808
  msgstr "Extensión para Vender Contenido"
5809
 
5810
- #: ../addons/email-notices/myCRED-addon-email-notices.php:220
5811
  msgid "user buys content"
5812
  msgstr "usuario compra contenido"
5813
 
5814
- #: ../addons/email-notices/myCRED-addon-email-notices.php:221
5815
  msgid "authors content gets sold"
5816
  msgstr "el contenido del autor sera vendido"
5817
 
5818
- #: ../addons/email-notices/myCRED-addon-email-notices.php:228
5819
  msgid "buyCREDs Add-on"
5820
  msgstr "Extensión de compraCREDs"
5821
 
5822
- #: ../addons/email-notices/myCRED-addon-email-notices.php:229
5823
  msgid "user buys %_plural%"
5824
  msgstr "usuario compra %_plural%"
5825
 
5826
- #: ../addons/email-notices/myCRED-addon-email-notices.php:236
5827
  msgid "Transfer Add-on"
5828
  msgstr "Extensión de Transferencias"
5829
 
5830
- #: ../addons/email-notices/myCRED-addon-email-notices.php:237
5831
  msgid "user sends %_plural%"
5832
  msgstr "usuario manda %_plural%"
5833
 
5834
- #: ../addons/email-notices/myCRED-addon-email-notices.php:238
5835
  msgid "user receives %_plural%"
5836
  msgstr "usuario recibe %_plural%"
5837
 
5838
- #: ../addons/email-notices/myCRED-addon-email-notices.php:245
5839
  msgid "Ranks Add-on"
5840
  msgstr "Extensión de Rangos"
5841
 
5842
- #: ../addons/email-notices/myCRED-addon-email-notices.php:246
5843
  msgid "user is demoted"
5844
  msgstr "se ha degrado al usuario"
5845
 
5846
- #: ../addons/email-notices/myCRED-addon-email-notices.php:247
5847
  msgid "user is promoted"
5848
  msgstr "se ha promovido al usuario"
5849
 
5850
- #: ../addons/email-notices/myCRED-addon-email-notices.php:285
5851
  msgid ""
5852
  "Settings that apply to all email notices and can not be overridden for "
5853
  "individual emails."
@@ -5855,23 +5877,23 @@ msgstr ""
5855
  "Ajustes que se aplica a todos los correos electrónicos y que no seran "
5856
  "anulados para correos electronicos especificos."
5857
 
5858
- #: ../addons/email-notices/myCRED-addon-email-notices.php:286
5859
  msgid "Email Format"
5860
  msgstr "Formato de Correo Electrónico"
5861
 
5862
- #: ../addons/email-notices/myCRED-addon-email-notices.php:290
5863
  msgid "Plain text emails only."
5864
  msgstr "Correo electrónico usando texto sin formato."
5865
 
5866
- #: ../addons/email-notices/myCRED-addon-email-notices.php:294
5867
  msgid "HTML or Plain text emails."
5868
  msgstr "Correo electrónico usando HTML o texto sin formato."
5869
 
5870
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297
5871
  msgid "Filters"
5872
  msgstr "Filtros"
5873
 
5874
- #: ../addons/email-notices/myCRED-addon-email-notices.php:301
5875
  msgid ""
5876
  "Allow WordPress and Third Party Plugins to filter the email subject before "
5877
  "an email is sent."
@@ -5879,7 +5901,7 @@ msgstr ""
5879
  "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
5880
  "correo electrónico antes de enviarlo."
5881
 
5882
- #: ../addons/email-notices/myCRED-addon-email-notices.php:305
5883
  msgid ""
5884
  "Allow WordPress and Third Party Plugins to filter the email content before "
5885
  "an email is sent."
@@ -5887,7 +5909,7 @@ msgstr ""
5887
  "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
5888
  "correo electrónico antes de enviarlo."
5889
 
5890
- #: ../addons/email-notices/myCRED-addon-email-notices.php:345
5891
  msgid ""
5892
  "Default email settings. These settings can be individually overridden when "
5893
  "editing emails."
@@ -5895,157 +5917,157 @@ msgstr ""
5895
  "Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
5896
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
5897
 
5898
- #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
5899
- #: notices/myCRED-addon-email-notices.php:900
5900
  msgid "Email Settings"
5901
  msgstr "Configuracion de Correo Electrónico"
5902
 
5903
- #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
5904
- #: notices/myCRED-addon-email-notices.php:1053
5905
  msgid "Senders Name:"
5906
  msgstr "Nombre del Remitente"
5907
 
5908
- #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
5909
- #: notices/myCRED-addon-email-notices.php:1055
5910
  msgid "Senders Email:"
5911
  msgstr "Correo Electrónico del Remitente:"
5912
 
5913
- #: ../addons/email-notices/myCRED-addon-email-notices.php:357
5914
  msgid "Reply-To:"
5915
  msgstr "Responder-A:"
5916
 
5917
- #: ../addons/email-notices/myCRED-addon-email-notices.php:361
5918
  msgid "Default Email Content"
5919
  msgstr "Contenido de Correo Electrónico Predefinido"
5920
 
5921
- #: ../addons/email-notices/myCRED-addon-email-notices.php:365
5922
  msgid "Default email content."
5923
  msgstr "Contenido de correo electrónico predefinido."
5924
 
5925
- #: ../addons/email-notices/myCRED-addon-email-notices.php:368
5926
  msgid "Default Email Styling"
5927
  msgstr "Estilo de Correo Electrónico Predefinido"
5928
 
5929
- #: ../addons/email-notices/myCRED-addon-email-notices.php:372
5930
  msgid "Ignored if HTML is not allowed in emails."
5931
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
5932
 
5933
- #: ../addons/email-notices/myCRED-addon-email-notices.php:809 ../addons/email-
5934
- #: notices/myCRED-addon-email-notices.php:949
5935
  msgid "Email Subject"
5936
  msgstr "Asunto del Correo Electrónico"
5937
 
5938
- #: ../addons/email-notices/myCRED-addon-email-notices.php:810 ..
5939
- #: addons/badges/myCRED-addon-badges.php:1165
5940
  msgid "Status"
5941
  msgstr "Estatus"
5942
 
5943
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
5944
  msgid "Not Active"
5945
  msgstr "No esta Activo"
5946
 
5947
- #: ../addons/email-notices/myCRED-addon-email-notices.php:838
5948
  #, php-format
5949
  msgid "Scheduled:<br /><strong>%1$s</strong>"
5950
  msgstr "Programada:<br /><strong>%1$s</strong>"
5951
 
5952
- #: ../addons/email-notices/myCRED-addon-email-notices.php:843
5953
  msgid "Active"
5954
  msgstr "Activo"
5955
 
5956
- #: ../addons/email-notices/myCRED-addon-email-notices.php:845
5957
  #, php-format
5958
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
5959
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
5960
 
5961
- #: ../addons/email-notices/myCRED-addon-email-notices.php:855
5962
  msgid "Email is sent when"
5963
  msgstr "el Correo Electrónico se envia cuando"
5964
 
5965
- #: ../addons/email-notices/myCRED-addon-email-notices.php:857
5966
  msgid "Missing instance for this notice!"
5967
  msgstr "¡Falta una instancia para este aviso!"
5968
 
5969
- #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
5970
- #: notices/myCRED-addon-email-notices.php:868 ../addons/email-notices/myCRED-
5971
- #: addon-email-notices.php:870
5972
  msgid "Sent To"
5973
  msgstr "Enviado A:"
5974
 
5975
- #: ../addons/email-notices/myCRED-addon-email-notices.php:868 ../addons/email-
5976
- #: notices/myCRED-addon-email-notices.php:1020
5977
  msgid "Administrator"
5978
  msgstr "Administrador"
5979
 
5980
- #: ../addons/email-notices/myCRED-addon-email-notices.php:870
5981
  msgid "Both Administrator and User"
5982
  msgstr "Tanto Administrador como Usuario"
5983
 
5984
- #: ../addons/email-notices/myCRED-addon-email-notices.php:909
5985
  msgid "Available Template Tags"
5986
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
5987
 
5988
- #: ../addons/email-notices/myCRED-addon-email-notices.php:920
5989
  msgid "Email Header"
5990
  msgstr "Encabezado del Correo Electrónico"
5991
 
5992
- #: ../addons/email-notices/myCRED-addon-email-notices.php:986
5993
  msgid "Send this email notice when..."
5994
  msgstr "Envia este aviso por correo electrónico cuando..."
5995
 
5996
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
5997
  msgid "Recipient:"
5998
  msgstr "Destinatario:"
5999
 
6000
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
6001
  msgid "Both"
6002
  msgstr "Ambos"
6003
 
6004
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
6005
  msgid "Reply-To Email:"
6006
  msgstr "Responder-A Correo Electrónico:"
6007
 
6008
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
6009
  msgid "Save"
6010
  msgstr "Guardar"
6011
 
6012
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
6013
  msgid "CSS Styling"
6014
  msgstr "Estilo CSS"
6015
 
6016
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
6017
  msgid "Site Related"
6018
  msgstr "Relacionado al Sitio"
6019
 
6020
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
6021
  msgid "Your websites title"
6022
  msgstr "Titulo de tu pagina web"
6023
 
6024
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
6025
  msgid "Your websites address"
6026
  msgstr "Dirección de tu pagina web"
6027
 
6028
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
6029
  msgid "Your websites tagline (description)"
6030
  msgstr "La descripción de tu sitio web (lema o eslogan)"
6031
 
6032
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1095
6033
  msgid "Your websites admin email"
6034
  msgstr "El correo electrónico de admin para tu pagina web"
6035
 
6036
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1096
6037
  msgid "Total number of blog members"
6038
  msgstr "Número total de miembros del blog"
6039
 
6040
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1183
6041
  msgid "Email Notice Activated"
6042
  msgstr "Notificación atraves de Correo Electrónico Activado"
6043
 
6044
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1184
6045
  msgid "Email Notice Saved"
6046
  msgstr "Aviso por Correo Electrónico Guardado"
6047
 
6048
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1203
6049
  msgid ""
6050
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
6051
  "are not yet ready to use this email notice!"
@@ -6053,12 +6075,12 @@ msgstr ""
6053
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
6054
  "si aun no estás listo para utilizar este aviso por email!"
6055
 
6056
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1205
6057
  #, php-format
6058
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
6059
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
6060
 
6061
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1207
6062
  msgid "This email notice is active."
6063
  msgstr "Esta notificación de correo electrónico esta activada."
6064
 
@@ -6299,43 +6321,43 @@ msgid "Apply Coupon"
6299
  msgstr "Aplica el Cupón"
6300
 
6301
  #: ../addons/sell-content/myCRED-addon-sell-content.php:44 ../addons/buy-
6302
- #: creds/myCRED-addon-buy-creds.php:1539
6303
  msgid "Buy Now"
6304
  msgstr "Compra Ahora"
6305
 
6306
- #: ../addons/sell-content/myCRED-addon-sell-content.php:74
6307
  msgid "Hours"
6308
  msgstr "Horas"
6309
 
6310
- #: ../addons/sell-content/myCRED-addon-sell-content.php:327
6311
  msgid "You can not buy this content."
6312
  msgstr "No puedes comprar este contenido."
6313
 
6314
- #: ../addons/sell-content/myCRED-addon-sell-content.php:372
6315
  msgid "Error. Try Again"
6316
  msgstr "Error. Inténtelo de nuevo"
6317
 
6318
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394
6319
  msgid "No Payout. Just charge."
6320
  msgstr "No Desembolsar. Solo cobrar."
6321
 
6322
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
6323
  msgid "Pay Content Author."
6324
  msgstr "Pagar al Autor del Contenido"
6325
 
6326
- #: ../addons/sell-content/myCRED-addon-sell-content.php:403
6327
  msgid "Post Types"
6328
  msgstr "Post Types"
6329
 
6330
- #: ../addons/sell-content/myCRED-addon-sell-content.php:407
6331
  msgid "Comma separated list of post types that can be sold."
6332
  msgstr "Lista separada por comas de post types que se puede vender."
6333
 
6334
- #: ../addons/sell-content/myCRED-addon-sell-content.php:437
6335
  msgid "Percentage to pay Author"
6336
  msgstr "Porcentaje que pagar al Autor"
6337
 
6338
- #: ../addons/sell-content/myCRED-addon-sell-content.php:439
6339
  msgid ""
6340
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
6341
  "authors are not paid."
@@ -6344,27 +6366,27 @@ msgstr ""
6344
  "si no se les paga a los autores."
6345
 
6346
  #. also, "por defecto" and "predeterminados"
6347
- #: ../addons/sell-content/myCRED-addon-sell-content.php:447
6348
  msgid "Defaults"
6349
  msgstr "Predefinidos"
6350
 
6351
- #: ../addons/sell-content/myCRED-addon-sell-content.php:455
6352
  msgid "Allow authors to change price."
6353
  msgstr "Permitir que los Autores cambien el precio."
6354
 
6355
- #: ../addons/sell-content/myCRED-addon-sell-content.php:464
6356
  msgid "Allow authors to change button label."
6357
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
6358
 
6359
- #: ../addons/sell-content/myCRED-addon-sell-content.php:468
6360
  msgid "Purchases expire after"
6361
  msgstr "Compras caducan despues de"
6362
 
6363
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
6364
  msgid "Use zero for permanent sales."
6365
  msgstr "Usa cero para ventas permanentes."
6366
 
6367
- #: ../addons/sell-content/myCRED-addon-sell-content.php:486
6368
  #, php-format
6369
  msgid ""
6370
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -6373,61 +6395,61 @@ msgstr ""
6373
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
6374
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
6375
 
6376
- #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
6377
- #: content/myCRED-addon-sell-content.php:516
6378
  #, php-format
6379
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
6380
  msgstr ""
6381
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
6382
  "realizar compras!"
6383
 
6384
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
6385
  msgid "Log template for Purchases"
6386
  msgstr "Plantilla de registros para Compras"
6387
 
6388
- #: ../addons/sell-content/myCRED-addon-sell-content.php:527
6389
  msgid "Log template for Sales"
6390
  msgstr "Plantilla de registros para Ventas"
6391
 
6392
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
6393
  #, php-format
6394
  msgid "%s Sell This"
6395
  msgstr "%s Vende Esto"
6396
 
6397
- #: ../addons/sell-content/myCRED-addon-sell-content.php:635
6398
  #, php-format
6399
  msgid "%s Sell Content needs to be setup before you can use this feature."
6400
  msgstr ""
6401
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
6402
  "esta característica técnica."
6403
 
6404
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
6405
  msgid "Setup add-on"
6406
  msgstr "Configurar Extensión"
6407
 
6408
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
6409
  msgid "Lets do it"
6410
  msgstr "Vamos a hacerlo."
6411
 
6412
- #: ../addons/sell-content/myCRED-addon-sell-content.php:690
6413
  msgid "Purchase expires after"
6414
  msgstr "Compra caduca despues de"
6415
 
6416
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
6417
  msgid "Thank you for your purchase!"
6418
  msgstr "¡Gracias por su compra!"
6419
 
6420
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
6421
- #: content/myCRED-addon-sell-content.php:1190
6422
  msgid "The following content is set for sale:"
6423
  msgstr "El siguiente contenido esta listo para la venta:"
6424
 
6425
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1209 ../addons/buy-
6426
- #: creds/myCRED-addon-buy-creds.php:1270
6427
  msgid "No purchases found"
6428
  msgstr "No se encontro ninguna compra"
6429
 
6430
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
6431
  msgid "Purchased"
6432
  msgstr "Comprado"
6433
 
@@ -6436,177 +6458,177 @@ msgstr "Comprado"
6436
  msgid "Payment Gateways"
6437
  msgstr "Pasarela de Pago"
6438
 
6439
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:341 ../addons/buy-creds/myCRED-
6440
- #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
6441
  msgid "Transaction ID"
6442
  msgstr "Identificación de la Transacción"
6443
 
6444
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
6445
- #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
6446
  #: gateway.php:594
6447
  msgid "Cost"
6448
  msgstr "Costo"
6449
 
6450
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474
6451
  msgid "buyCRED Purchase Log"
6452
  msgstr "compraCRED Registro de Compras"
6453
 
6454
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:475 ../addons/buy-creds/myCRED-
6455
- #: addon-buy-creds.php:726 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
6456
  msgid "Purchase Log"
6457
  msgstr "Registro de Compras"
6458
 
6459
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:613
6460
  msgid "Please login to purchase %_plural%"
6461
  msgstr "Identifícate antes de comprar %_plural%"
6462
 
6463
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:628
6464
  #, php-format
6465
  msgid "Gift purchase from %display_name%."
6466
  msgstr "Regalo comprado de parte de %display_name%."
6467
 
6468
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:647
6469
  #, php-format
6470
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
6471
  msgstr ""
6472
  "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
6473
  "a 1."
6474
 
6475
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:666
6476
  msgid "Login Template"
6477
  msgstr "Plantilla de Ingreso"
6478
 
6479
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:670
6480
  msgid "Content to show when a user is not logged in."
6481
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
6482
 
6483
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:680
6484
  msgid "Thank You Page"
6485
  msgstr "Página de Agradecimiento"
6486
 
6487
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:683 ../addons/buy-creds/myCRED-
6488
- #: addon-buy-creds.php:706
6489
  msgid "Custom URL"
6490
  msgstr "URL Personalizada"
6491
 
6492
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:688 ../addons/buy-creds/myCRED-
6493
- #: addon-buy-creds.php:711
6494
  msgid "Page"
6495
  msgstr "Página"
6496
 
6497
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703
6498
  msgid "Cancellation Page"
6499
  msgstr "Página de Cancelación"
6500
 
6501
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:728
6502
  #, php-format
6503
  msgid "Show seperate log for %_plural% purchases."
6504
  msgstr "Mostrar registro distinto para compras de %_plural%."
6505
 
6506
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:730
6507
  msgid "Gifting"
6508
  msgstr "Regalar"
6509
 
6510
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
6511
  #, php-format
6512
  msgid "Allow users to buy %_plural% for other users."
6513
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
6514
 
6515
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:733
6516
  #, php-format
6517
  msgid "Allow users to buy %_plural% for content authors."
6518
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
6519
 
6520
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
6521
  #, php-format
6522
  msgid "%s Payment Gateways"
6523
  msgstr "%s Pasarelas de Pago"
6524
 
6525
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
6526
- #: addon-buy-creds.php:1085
6527
  msgid "buyCRED Settings"
6528
  msgstr "Configuraciones de compraCRED"
6529
 
6530
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
6531
  msgid "Test Mode"
6532
  msgstr "Modo de Prueba"
6533
 
6534
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
6535
  msgid "Enabled"
6536
  msgstr "Habilitado"
6537
 
6538
  #. also, "Inhabilitar"
6539
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
6540
  msgid "Disabled"
6541
  msgstr "Deshactivado"
6542
 
6543
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
6544
  msgid "Sandbox Mode"
6545
  msgstr "Modo Entorno Aislado"
6546
 
6547
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
6548
  msgid "Enable for test purchases."
6549
  msgstr "Habilitar para compras de prueba."
6550
 
6551
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
6552
  msgid "Payed"
6553
  msgstr "Pagado"
6554
 
6555
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
6556
  msgid "<strong>buy</strong>CRED Purchase Log"
6557
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
6558
 
6559
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
6560
- #: addon-buy-creds.php:1464
6561
  msgid "This Add-on needs to setup before you can use this shortcode."
6562
  msgstr ""
6563
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
6564
  "corto (shortcode)."
6565
 
6566
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
6567
- #: addon-buy-creds.php:1483
6568
  msgid "No gateways installed."
6569
  msgstr "Ningun pasarela de pago instalado."
6570
 
6571
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
6572
- #: addon-buy-creds.php:1484
6573
  msgid "Gateway does not exist."
6574
  msgstr "Puerta de enlace no existe."
6575
 
6576
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
6577
  msgid "Yourself"
6578
  msgstr "Tu mismo"
6579
 
6580
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
6581
  msgid "No active gateways found."
6582
  msgstr "No se encuentra ningun puerta de enlace activo."
6583
 
6584
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
6585
  msgid "The selected gateway is not active."
6586
  msgstr "La puerta de enlace seleccionada no esta activo."
6587
 
6588
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
6589
  #, php-format
6590
  msgid "Buy with %gateway%"
6591
  msgstr "Compra con %gateway%"
6592
 
6593
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
6594
  msgid "No users found"
6595
  msgstr "Ningun Usuario Encontrado"
6596
 
6597
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
6598
  msgid "To"
6599
  msgstr "A"
6600
 
6601
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
6602
  msgid "Select Amount"
6603
  msgstr "Selecciona la Cantidad"
6604
 
6605
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
6606
  msgid "min."
6607
  msgstr "min."
6608
 
6609
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
6610
  msgid "Select Gateway"
6611
  msgstr "Selecciona la Pasarela de Pago"
6612
 
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Mon Jan 11 2016 22:10:41 GMT+0100 (CET)\n"
7
  "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
30
  msgstr ""
31
 
32
  #. Description of the plugin
33
+ msgid "An adaptive points management system for WordPress powered websites."
 
 
 
34
  msgstr ""
35
 
36
  #. Author of the plugin
41
  msgid "http://www.merovingi.com"
42
  msgstr ""
43
 
44
+ #: ../mycred.php:666
45
  msgid ""
46
  "In order to adjust the number of decimal places you want to use we must "
47
  "update your log. It is highly recommended that you backup your current log "
106
  "other characters will be deleted!"
107
  msgstr ""
108
 
109
+ #: ../modules/mycred-module-addons.php:167
110
  msgid "Give your users badges based on their interaction with your website."
111
  msgstr ""
112
 
113
+ #: ../modules/mycred-module-addons.php:267
114
  msgid ""
115
  "Gives you access to your myCRED Staticstics based on your users gains and "
116
  "loses."
117
  msgstr ""
118
 
119
+ #: ../modules/mycred-module-addons.php:336
120
  msgid "Add-ons Reloaded"
121
  msgstr ""
122
 
123
+ #: ../modules/mycred-module-addons.php:366
124
  msgid "Reload Add-ons"
125
  msgstr ""
126
 
130
  "Certain hooks and shortcodes will not work correctly!"
131
  msgstr ""
132
 
133
+ #: ../modules/mycred-module-hooks.php:117
134
  #, php-format
135
  msgid "%plural% for daily visits"
136
  msgstr ""
137
 
138
+ #: ../modules/mycred-module-hooks.php:118
139
  #, php-format
140
  msgid "Award %_plural% for users visiting your website on a daily basis."
141
  msgstr ""
142
 
143
+ #: ../modules/mycred-module-hooks.php:124
144
  #, php-format
145
  msgid "%plural% for viewing content"
146
  msgstr ""
147
 
148
+ #: ../modules/mycred-module-hooks.php:125
149
  #, php-format
150
  msgid ""
151
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
152
  "authors for members viewing their content."
153
  msgstr ""
154
 
155
+ #: ../modules/mycred-module-hooks.php:676
156
  #, php-format
157
  msgid "%plural% for viewing Posts"
158
  msgstr ""
159
 
160
+ #: ../modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:696 .
161
+ #: ./modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:727 ..
162
+ #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:804
163
  msgid "Member"
164
  msgstr ""
165
 
166
+ #: ../modules/mycred-module-hooks.php:707
167
  #, php-format
168
  msgid "%plural% for viewing Pages"
169
  msgstr ""
170
 
171
+ #: ../modules/mycred-module-hooks.php:784
172
  #, php-format
173
  msgid "%plural% for viewing %s"
174
  msgstr ""
175
 
176
+ #: ../modules/mycred-module-hooks.php:2681
177
  msgid "Visitors Referred"
178
  msgstr ""
179
 
180
+ #: ../modules/mycred-module-hooks.php:2685
181
  msgid "Signups Referred"
182
  msgstr ""
183
 
184
+ #: ../modules/mycred-module-buddypress.php:424 ../addons/badges/myCRED-addon-
185
+ #: badges.php:1011
186
  msgid "Include in Profile Header"
187
  msgstr ""
188
 
189
+ #: ../modules/mycred-module-buddypress.php:426 ../addons/badges/myCRED-addon-
190
+ #: badges.php:1013
191
  msgid "Include under the \"Profile\" tab and Profile Header"
192
  msgstr ""
193
 
194
+ #: ../plugins/mycred-hook-wp-postratings.php:15
195
  msgid "Post Ratings"
196
  msgstr ""
197
 
198
+ #: ../plugins/mycred-hook-wp-postratings.php:16
199
  #, php-format
200
  msgid ""
201
  "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
202
  "author and the user rating."
203
  msgstr ""
204
 
205
+ #: ../plugins/mycred-hook-wp-postratings.php:84
206
  msgid "Based on rating"
207
  msgstr ""
208
 
209
+ #: ../plugins/mycred-hook-wp-postratings.php:159 ../includes/mycred-functions.php:
210
+ #: 2675
211
  msgid "Adding a Rating"
212
  msgstr ""
213
 
214
+ #: ../plugins/mycred-hook-wp-postratings.php:169 ../plugins/mycred-hook-wp-
215
+ #: postratings.php:188
216
  msgid "Use the Rating Value instead of the amount set here."
217
  msgstr ""
218
 
219
+ #: ../plugins/mycred-hook-wp-postratings.php:178 ../includes/mycred-functions.php:
220
+ #: 2676
221
  msgid "Receiving a Rating"
222
  msgstr ""
223
 
224
+ #: ../plugins/mycred-hook-marketpress.php:70 ../plugins/mycred-hook-woocommerce.
225
+ #: php:87
226
  #, php-format
227
  msgid "Reward with %plural%"
228
  msgstr ""
229
 
230
+ #: ../plugins/mycred-hook-buddypress.php:526
231
  #, php-format
232
  msgid "%plural% for Removing Profile Update"
233
  msgstr ""
234
 
235
+ #: ../plugins/mycred-hook-buddypress.php:570
236
  #, php-format
237
  msgid ""
238
  "Users with zero balance can not add friends. Requires that you deduct "
239
  "%_plural% for adding a new friend."
240
  msgstr ""
241
 
242
+ #: ../plugins/mycred-hook-affiliatewp.php:15
243
  msgid "AffiliateWP"
244
  msgstr ""
245
 
246
+ #: ../plugins/mycred-hook-affiliatewp.php:16
247
  #, php-format
248
  msgid ""
249
  "Awards %_plural% for affiliate signups, referring visitors and store sale "
250
  "referrals."
251
  msgstr ""
252
 
253
+ #: ../plugins/mycred-hook-affiliatewp.php:222
254
  msgid "Affiliate Signup"
255
  msgstr ""
256
 
257
+ #: ../plugins/mycred-hook-affiliatewp.php:252
258
  msgid "Referring Sales"
259
  msgstr ""
260
 
261
+ #: ../plugins/mycred-hook-affiliatewp.php:255
262
  msgid "Pay a set amount for all referrals."
263
  msgstr ""
264
 
265
+ #: ../plugins/mycred-hook-affiliatewp.php:256
266
  #, php-format
267
  msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
268
  msgstr ""
269
 
270
+ #: ../plugins/mycred-hook-affiliatewp.php:257
271
  msgid "Apply an exchange rate against the referral amount."
272
  msgstr ""
273
 
274
+ #: ../plugins/mycred-hook-affiliatewp.php:265
275
  msgid "Log template - Payout"
276
  msgstr ""
277
 
278
+ #: ../plugins/mycred-hook-affiliatewp.php:270
279
  msgid "Log template - Refund"
280
  msgstr ""
281
 
282
+ #: ../plugins/mycred-hook-sharethis.php:15
283
  #, php-format
284
  msgid "%plural% for Sharing"
285
  msgstr ""
286
 
287
+ #: ../plugins/mycred-hook-sharethis.php:16
288
  #, php-format
289
  msgid ""
290
  "Awards %_plural% for users sharing / liking your website content to popular "
299
  msgid "No ShareThis services detected. Please check your installation."
300
  msgstr ""
301
 
302
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:234
303
  msgid "Authors Content added to favorites"
304
  msgstr ""
305
 
306
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:265
307
  msgid "Removing Content from Favorites (Author)"
308
  msgstr ""
309
 
310
+ #: ../plugins/mycred-hook-bbPress.php:540
311
+ #, php-format
312
+ msgid "Show users %_plural% balance in their bbPress profiles."
313
+ msgstr ""
314
+
315
+ #: ../plugins/mycred-hook-bbPress.php:544
316
  #, php-format
317
  msgid "%plural% for Reply Deletion"
318
  msgstr ""
319
 
320
+ #: ../plugins/mycred-hook-woocommerce.php:216
321
  msgid "WooCommerce Product Reviews"
322
  msgstr ""
323
 
324
+ #: ../plugins/mycred-hook-woocommerce.php:217
325
  #, php-format
326
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
327
  msgstr ""
340
  msgid "16, 24 or 32 characters"
341
  msgstr ""
342
 
343
+ #: ../includes/mycred-shortcodes.php:468 ../includes/mycred-shortcodes.php:532 ..
344
+ #: includes/mycred-shortcodes.php:594 ../includes/mycred-shortcodes.php:953 ..
345
+ #: includes/mycred-shortcodes.php:1080
346
+ msgid "Point type not found."
347
  msgstr ""
348
 
349
+ #: ../includes/mycred-shortcodes.php:959 ../includes/mycred-shortcodes.php:967 ..
350
+ #: includes/mycred-functions.php:2827 ../includes/mycred-functions.php:2847
351
  #, php-format
352
  msgid "You are excluded from using %s."
353
  msgstr ""
354
 
355
+ #: ../includes/mycred-shortcodes.php:963 ../includes/mycred-functions.php:2837
356
  msgid "Your balance is too low to use this feature."
357
  msgstr ""
358
 
359
+ #: ../includes/mycred-shortcodes.php:985
360
  #, php-format
361
  msgid "Convert <span>%s</span> to <span>%s</span>"
362
  msgstr ""
363
 
364
+ #: ../includes/mycred-shortcodes.php:994
365
  #, php-format
366
  msgid "Your current %s balance"
367
  msgstr ""
368
 
369
+ #: ../includes/mycred-shortcodes.php:1002
370
  #, php-format
371
  msgid "Minimum %s"
372
  msgstr ""
373
 
374
+ #: ../includes/mycred-shortcodes.php:1006
375
  #, php-format
376
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
377
  msgstr ""
378
 
379
+ #: ../includes/mycred-shortcodes.php:1012
380
  msgid "Exchange"
381
  msgstr ""
382
 
383
+ #: ../includes/mycred-shortcodes.php:1077
384
  msgid "No instances found for this point type"
385
  msgstr ""
386
 
387
+ #: ../includes/mycred-shortcodes.php:1141
 
 
 
 
388
  msgid "Instance"
389
  msgstr ""
390
 
403
  msgid "Use zero for no decimals or maximum 20."
404
  msgstr ""
405
 
406
+ #: ../includes/mycred-admin.php:201
407
  msgid "A log entry is required in order to adjust this users balance"
408
  msgstr ""
409
 
410
+ #: ../includes/mycred-admin.php:203
411
  msgid "Users balance saved"
412
  msgstr ""
413
 
414
+ #: ../includes/mycred-admin.php:211
415
  msgid "Users excluded"
416
  msgstr ""
417
 
418
+ #: ../includes/mycred-admin.php:216
419
  msgid ""
420
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
421
  "rate settings and update all premium payment gateways!"
422
  msgstr ""
423
 
424
+ #: ../includes/mycred-admin.php:472 ../includes/mycred-admin.php:473
425
  msgid "Edit Balance"
426
  msgstr ""
427
 
428
+ #: ../includes/mycred-admin.php:493
429
  msgid "Profile"
430
  msgstr ""
431
 
432
+ #: ../includes/mycred-admin.php:500
433
  msgid "Extended Profile"
434
  msgstr ""
435
 
436
+ #: ../includes/mycred-admin.php:594
437
  #, php-format
438
  msgid "This user is excluded from using %s"
439
  msgstr ""
440
 
441
+ #: ../includes/mycred-admin.php:618
442
  msgid "Edit User"
443
  msgstr ""
444
 
445
+ #: ../includes/mycred-admin.php:620
446
  msgctxt "user"
447
  msgid "Add New"
448
  msgstr ""
449
 
450
+ #: ../includes/mycred-admin.php:622
451
  msgctxt "user"
452
  msgid "Add Existing"
453
  msgstr ""
454
 
455
+ #: ../includes/mycred-admin.php:633
456
  #, php-format
457
  msgid "Total %s Accumulated"
458
  msgstr ""
459
 
460
+ #: ../includes/mycred-admin.php:634
461
  #, php-format
462
  msgid "Total %s Spent"
463
  msgstr ""
464
 
465
+ #: ../includes/mycred-admin.php:645
466
  msgid "View History"
467
  msgstr ""
468
 
469
+ #: ../includes/mycred-admin.php:646
470
  msgid "Exclude User"
471
  msgstr ""
472
 
473
+ #: ../includes/mycred-admin.php:650
474
  msgid "Adjust Balance"
475
  msgstr ""
476
 
477
+ #: ../includes/mycred-admin.php:659
478
  msgid ""
479
  "Warning! Excluding this user will result in their balance being deleted "
480
  "along with any entries currently in your log! This can not be undone!"
494
  msgid "Reference Guide"
495
  msgstr ""
496
 
497
+ #: ../includes/mycred-functions.php:2594
498
  msgid "Website Registration"
499
  msgstr ""
500
 
501
+ #: ../includes/mycred-functions.php:2595
502
  msgid "Website Visit"
503
  msgstr ""
504
 
505
+ #: ../includes/mycred-functions.php:2596
506
  msgid "Viewing Content (Member)"
507
  msgstr ""
508
 
509
+ #: ../includes/mycred-functions.php:2597
510
  msgid "Viewing Content (Author)"
511
  msgstr ""
512
 
513
+ #: ../includes/mycred-functions.php:2598
514
  msgid "Logging in"
515
  msgstr ""
516
 
517
+ #: ../includes/mycred-functions.php:2599
518
  msgid "Publishing Content"
519
  msgstr ""
520
 
521
+ #: ../includes/mycred-functions.php:2601
522
  msgid "Unapproved Comment"
523
  msgstr ""
524
 
525
+ #: ../includes/mycred-functions.php:2602
526
  msgid "SPAM Comment"
527
  msgstr ""
528
 
529
+ #: ../includes/mycred-functions.php:2603
530
  msgid "Deleted Comment"
531
  msgstr ""
532
 
533
+ #: ../includes/mycred-functions.php:2604
534
  msgid "Link Click"
535
  msgstr ""
536
 
537
+ #: ../includes/mycred-functions.php:2605
538
  msgid "Watching Video"
539
  msgstr ""
540
 
541
+ #: ../includes/mycred-functions.php:2606
542
  msgid "Visitor Referral"
543
  msgstr ""
544
 
545
+ #: ../includes/mycred-functions.php:2607
546
  msgid "Signup Referral"
547
  msgstr ""
548
 
549
+ #: ../includes/mycred-functions.php:2611
550
  msgid "New Profile Update"
551
  msgstr ""
552
 
553
+ #: ../includes/mycred-functions.php:2612
554
  msgid "Profile Update Removal"
555
  msgstr ""
556
 
557
+ #: ../includes/mycred-functions.php:2613
558
  msgid "Avatar Upload"
559
  msgstr ""
560
 
561
+ #: ../includes/mycred-functions.php:2614
562
  msgid "New Friendship"
563
  msgstr ""
564
 
565
+ #: ../includes/mycred-functions.php:2615
566
  msgid "Ended Friendship"
567
  msgstr ""
568
 
569
+ #: ../includes/mycred-functions.php:2616
570
  msgid "New Profile Comment"
571
  msgstr ""
572
 
573
+ #: ../includes/mycred-functions.php:2617
574
  msgid "Profile Comment Deletion"
575
  msgstr ""
576
 
577
+ #: ../includes/mycred-functions.php:2618
578
  msgid "New Message"
579
  msgstr ""
580
 
581
+ #: ../includes/mycred-functions.php:2619
582
  msgid "Sending Gift"
583
  msgstr ""
584
 
585
+ #: ../includes/mycred-functions.php:2620
586
  msgid "New Group"
587
  msgstr ""
588
 
589
+ #: ../includes/mycred-functions.php:2621
590
  msgid "Deleted Group"
591
  msgstr ""
592
 
593
+ #: ../includes/mycred-functions.php:2622
594
  msgid "New Group Forum Topic"
595
  msgstr ""
596
 
597
+ #: ../includes/mycred-functions.php:2623
598
  msgid "Edit Group Forum Topic"
599
  msgstr ""
600
 
601
+ #: ../includes/mycred-functions.php:2624
602
  msgid "New Group Forum Post"
603
  msgstr ""
604
 
605
+ #: ../includes/mycred-functions.php:2625
606
  msgid "Edit Group Forum Post"
607
  msgstr ""
608
 
609
+ #: ../includes/mycred-functions.php:2626
610
  msgid "Joining Group"
611
  msgstr ""
612
 
613
+ #: ../includes/mycred-functions.php:2627
614
  msgid "Leaving Group"
615
  msgstr ""
616
 
617
+ #: ../includes/mycred-functions.php:2628
618
  msgid "New Group Avatar"
619
  msgstr ""
620
 
621
+ #: ../includes/mycred-functions.php:2629
622
  msgid "New Group Comment"
623
  msgstr ""
624
 
625
+ #: ../includes/mycred-functions.php:2639
626
  msgid "New Link"
627
  msgstr ""
628
 
629
+ #: ../includes/mycred-functions.php:2640
630
  msgid "Link Voting"
631
  msgstr ""
632
 
633
+ #: ../includes/mycred-functions.php:2641
634
  msgid "Link Update"
635
  msgstr ""
636
 
637
+ #: ../includes/mycred-functions.php:2645
638
  msgid "New Forum (bbPress)"
639
  msgstr ""
640
 
641
+ #: ../includes/mycred-functions.php:2646
642
  msgid "New Forum Topic (bbPress)"
643
  msgstr ""
644
 
645
+ #: ../includes/mycred-functions.php:2647
646
  msgid "Favorited Topic (bbPress)"
647
  msgstr ""
648
 
649
+ #: ../includes/mycred-functions.php:2648
650
  msgid "New Topic Reply (bbPress)"
651
  msgstr ""
652
 
653
+ #: ../includes/mycred-functions.php:2652
654
  msgid "Form Submission (Contact Form 7)"
655
  msgstr ""
656
 
657
+ #: ../includes/mycred-functions.php:2655
658
  msgid "Form Submission (Gravity Form)"
659
  msgstr ""
660
 
661
+ #: ../includes/mycred-functions.php:2658
662
  msgid "New Forum Topic (SimplePress)"
663
  msgstr ""
664
 
665
+ #: ../includes/mycred-functions.php:2659
666
  msgid "New Forum Post (SimplePress)"
667
  msgstr ""
668
 
669
+ #: ../includes/mycred-functions.php:2668
670
  msgid "Affiliate Signup (AffiliateWP)"
671
  msgstr ""
672
 
673
+ #: ../includes/mycred-functions.php:2669
674
  msgid "Referred Visit (AffiliateWP)"
675
  msgstr ""
676
 
677
+ #: ../includes/mycred-functions.php:2670
678
  msgid "Affiliate Referral (AffiliateWP)"
679
  msgstr ""
680
 
681
+ #: ../includes/mycred-functions.php:2671
682
  msgid "Referral Refund (AffiliateWP)"
683
  msgstr ""
684
 
685
+ #: ../includes/mycred-functions.php:2680
686
  msgid "Poll Voting"
687
  msgstr ""
688
 
689
+ #: ../includes/mycred-functions.php:2683
690
  msgid "Sending an Invite"
691
  msgstr ""
692
 
693
+ #: ../includes/mycred-functions.php:2684
694
  msgid "Accepting an Invite"
695
  msgstr ""
696
 
697
+ #: ../includes/mycred-functions.php:2690
698
  msgid "Banking Payout"
699
  msgstr ""
700
 
701
+ #: ../includes/mycred-functions.php:2693
702
  msgid "buyCRED Purchase (PayPal Standard)"
703
  msgstr ""
704
 
705
+ #: ../includes/mycred-functions.php:2694
706
  msgid "buyCRED Purchase (Skrill)"
707
  msgstr ""
708
 
709
+ #: ../includes/mycred-functions.php:2695
710
  msgid "buyCRED Purchase (Zombaio)"
711
  msgstr ""
712
 
713
+ #: ../includes/mycred-functions.php:2696
714
  msgid "buyCRED Purchase (NETBilling)"
715
  msgstr ""
716
 
717
+ #: ../includes/mycred-functions.php:2697
718
  msgid "buyCRED Purchase (BitPay)"
719
  msgstr ""
720
 
721
+ #: ../includes/mycred-functions.php:2702
722
  msgid "Coupon Purchase"
723
  msgstr ""
724
 
725
+ #: ../includes/mycred-functions.php:2706
726
  msgid "Store Purchase (WooCommerce)"
727
  msgstr ""
728
 
729
+ #: ../includes/mycred-functions.php:2707
730
  msgid "Store Reward (WooCommerce)"
731
  msgstr ""
732
 
733
+ #: ../includes/mycred-functions.php:2708
734
  msgid "Product Review (WooCommerce)"
735
  msgstr ""
736
 
737
+ #: ../includes/mycred-functions.php:2711
738
  msgid "Store Purchase (MarketPress)"
739
  msgstr ""
740
 
741
+ #: ../includes/mycred-functions.php:2712
742
  msgid "Store Reward (MarketPress)"
743
  msgstr ""
744
 
745
+ #: ../includes/mycred-functions.php:2715
746
  msgid "Store Purchase (WP E-Commerce)"
747
  msgstr ""
748
 
749
+ #: ../includes/mycred-functions.php:2721
750
  msgid "Event Payment (Event Espresso)"
751
  msgstr ""
752
 
753
+ #: ../includes/mycred-functions.php:2722
754
  msgid "Event Sale (Event Espresso)"
755
  msgstr ""
756
 
757
+ #: ../includes/mycred-functions.php:2726
758
  msgid "Event Payment (Events Manager)"
759
  msgstr ""
760
 
761
+ #: ../includes/mycred-functions.php:2727
762
  msgid "Event Sale (Events Manager)"
763
  msgstr ""
764
 
765
+ #: ../includes/mycred-functions.php:2731
766
+ msgid "Content Purchase"
767
+ msgstr ""
768
+
769
+ #: ../includes/mycred-functions.php:2732
770
+ msgid "Content Sale"
771
  msgstr ""
772
 
773
+ #: ../includes/mycred-functions.php:2740
774
  msgid "Manual Adjustment by Admin"
775
  msgstr ""
776
 
777
+ #: ../includes/mycred-functions.php:2815
778
+ msgid "Point types not found."
779
+ msgstr ""
780
+
781
+ #: ../includes/mycred-functions.php:2860
782
  #, php-format
783
  msgid "You must exchange at least %s!"
784
  msgstr ""
785
 
786
+ #: ../includes/mycred-functions.php:2869 ../addons/transfer/myCRED-addon-transfer.
787
  #: php:161
788
  msgid "Insufficient Funds. Please try a lower amount."
789
  msgstr ""
790
 
791
+ #: ../includes/mycred-functions.php:2882
792
  #, php-format
793
  msgid "Exchange from %s"
794
  msgstr ""
795
 
796
+ #: ../includes/mycred-functions.php:2894
797
  #, php-format
798
  msgid "Exchange to %s"
799
  msgstr ""
800
 
801
+ #: ../includes/mycred-functions.php:2902
802
  #, php-format
803
  msgid "You have successfully exchanged %s into %s."
804
  msgstr ""
805
 
806
+ #: ../includes/mycred-functions.php:2934
807
  msgid "per day"
808
  msgstr ""
809
 
810
+ #: ../includes/mycred-functions.php:2936
811
  msgid "per week"
812
  msgstr ""
813
 
814
+ #: ../includes/mycred-functions.php:2938
815
  msgid "per month"
816
  msgstr ""
817
 
818
+ #: ../includes/mycred-functions.php:2940
819
  msgid "in total"
820
  msgstr ""
821
 
822
+ #: ../includes/mycred-functions.php:2942 ../includes/mycred-functions.php:2946
823
  #, php-format
824
  msgid "Maximum once"
825
  msgid_plural "Maximum %d times"
826
  msgstr[0] ""
827
  msgstr[1] ""
828
 
829
+ #: ../addons/banking/myCRED-addon-banking.php:172
830
  msgid "Central Banking"
831
  msgstr ""
832
 
833
+ #: ../addons/banking/myCRED-addon-banking.php:173
834
  #, php-format
835
  msgid ""
836
  "Instead of creating %_plural% out of thin-air, all payouts are made from a "
838
  "deposited back into this account."
839
  msgstr ""
840
 
841
+ #: ../addons/banking/myCRED-addon-banking.php:180
842
  #, php-format
843
  msgid "Apply a positive or negative interest rate on your users %_plural% balances."
844
  msgstr ""
845
 
846
+ #: ../addons/banking/myCRED-addon-banking.php:187
847
  #, php-format
848
  msgid "Setup mass %_singular% payouts for your users."
849
  msgstr ""
850
 
851
+ #: ../addons/banking/myCRED-addon-banking.php:249
852
  #, php-format
853
  msgid "Your banking setup for %plural%."
854
  msgstr ""
954
  msgstr ""
955
 
956
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/sell-
957
+ #: content/myCRED-addon-sell-content.php:117 ../addons/buy-creds/myCRED-addon-buy-
958
+ #: creds.php:836
959
  msgid "Leave empty to use the default value."
960
  msgstr ""
961
 
1024
  msgid "Refunded %s"
1025
  msgstr ""
1026
 
1027
+ #: ../addons/transfer/myCRED-addon-transfer.php:285
1028
  msgid "Limit Amount"
1029
  msgstr ""
1030
 
1034
  "multiple point types."
1035
  msgstr ""
1036
 
1037
+ #: ../addons/ranks/myCRED-addon-ranks.php:444
1038
  #, php-format
1039
  msgid "Ranks for %s"
1040
  msgstr ""
1041
 
1042
+ #: ../addons/ranks/myCRED-addon-ranks.php:984 ../addons/ranks/myCRED-addon-ranks.
1043
+ #: php:985 ../addons/ranks/myCRED-addon-ranks.php:986 ../addons/ranks/myCRED-
1044
+ #: addon-ranks.php:987 ../addons/ranks/myCRED-addon-ranks.php:988 ..
1045
+ #: addons/ranks/myCRED-addon-ranks.php:991 ../addons/ranks/myCRED-addon-ranks.
1046
+ #: php:992
1047
  msgid "Rank Updated."
1048
  msgstr ""
1049
 
1050
+ #: ../addons/ranks/myCRED-addon-ranks.php:989
1051
  msgid "Rank Enabled"
1052
  msgstr ""
1053
 
1054
+ #: ../addons/ranks/myCRED-addon-ranks.php:1030
1055
  #, php-format
1056
  msgid "<strong>Rank:</strong> %s"
1057
  msgstr ""
1058
 
1059
+ #: ../addons/ranks/myCRED-addon-ranks.php:1399
1060
  msgid ""
1061
  "Use this button to calculate or recalculate your users totals. If not used, "
1062
  "the users current balance will be used as a starting point."
1063
  msgstr ""
1064
 
1065
+ #: ../addons/ranks/myCRED-addon-ranks.php:1441 ../addons/ranks/myCRED-addon-ranks.
1066
+ #: php:1486
1067
  #, php-format
1068
  msgid ""
1069
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
1070
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
1071
  msgstr ""
1072
 
1073
+ #: ../addons/ranks/myCRED-addon-ranks.php:1463
1074
  msgid "Include in Topic Replies"
1075
  msgstr ""
1076
 
1077
+ #: ../addons/ranks/myCRED-addon-ranks.php:1464 ../addons/badges/myCRED-addon-
1078
+ #: badges.php:1047
1079
  msgid "Include in Profile"
1080
  msgstr ""
1081
 
1082
+ #: ../addons/ranks/myCRED-addon-ranks.php:1465
1083
  msgid "Include in Topic Replies and Profile"
1084
  msgstr ""
1085
 
1086
+ #: ../addons/ranks/myCRED-addon-ranks.php:1469
1087
  msgid "Rank in bbPress"
1088
  msgstr ""
1089
 
1090
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:148
1091
  msgid "Rank not found. Please check the id and try again."
1092
  msgstr ""
1093
 
1095
  msgid "Notify your users when their balances changes."
1096
  msgstr ""
1097
 
1098
+ #: ../addons/notifications/myCRED-addon-notifications.php:206
1099
  msgid "Restore to default"
1100
  msgstr ""
1101
 
1102
+ #: ../addons/notifications/myCRED-addon-notifications.php:220
1103
  msgid ""
1104
  "Number of seconds before a notice is automatically removed after being shown "
1105
  "to user. Use zero to disable."
1106
  msgstr ""
1107
 
1108
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:221
1109
  msgid "Badge Add-on"
1110
  msgstr ""
1111
 
1112
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:222
1113
  msgid "user gains a badge"
1114
  msgstr ""
1115
 
1116
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:325 ../addons/email-
1117
+ #: notices/myCRED-addon-email-notices.php:331
1118
  msgid "Email Schedule"
1119
  msgstr ""
1120
 
1121
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:327
1122
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1123
  msgstr ""
1124
 
1125
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:335
1126
  msgid "Send emails immediately"
1127
  msgstr ""
1128
 
1129
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:339
1130
  msgid "Send emails once an hour"
1131
  msgstr ""
1132
 
1133
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:343
1134
  msgid "Send emails once a day"
1135
  msgstr ""
1136
 
1137
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346
1138
  msgid "Subscriptions"
1139
  msgstr ""
1140
 
1141
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1142
  #, php-format
1143
  msgid ""
1144
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1145
  "updates."
1146
  msgstr ""
1147
 
1148
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:353
1149
  msgid "SMTP Override"
1150
  msgstr ""
1151
 
1152
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
1153
  msgid ""
1154
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1155
  "use a SMTP plugin for emails."
1156
  msgstr ""
1157
 
1158
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:741
1159
  #, php-format
1160
  msgctxt "Badge Title - Level 1,2,3.."
1161
  msgid "%s - Level %d"
1162
  msgstr ""
1163
 
1164
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:915 ../addons/email-
1165
+ #: notices/myCRED-addon-email-notices.php:1095
1166
  msgid "All types"
1167
  msgstr ""
1168
 
1169
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1166
1170
  msgid "The users new balance"
1171
  msgstr ""
1172
 
1173
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1167
1174
  msgid "The users old balance"
1175
  msgstr ""
1176
 
1177
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1168
1178
  msgid "The amount of points gained or lost in this instance"
1179
  msgstr ""
1180
 
1181
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1169
1182
  msgid "The log entry"
1183
  msgstr ""
1184
 
1185
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1248 ../addons/email-
1186
+ #: notices/myCRED-addon-email-notices.php:1251 ../addons/email-notices/myCRED-
1187
+ #: addon-email-notices.php:1257
1188
  msgid "Email Notice Updated."
1189
  msgstr ""
1190
 
1191
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1292
1192
  msgid "Settings saved."
1193
  msgstr ""
1194
 
1195
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1343
1196
  msgid "Unsubscribe"
1197
  msgstr ""
1198
 
1199
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1365
1200
  msgid "There are no email notifications yet."
1201
  msgstr ""
1202
 
1203
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1372 ..
1204
+ #: addons/badges/myCRED-addon-badges.php:1248
1205
  msgid "Save Changes"
1206
  msgstr ""
1207
 
1208
+ #: ../addons/stats/myCRED-addon-stats.php:56
1209
  msgid "Statistics"
1210
  msgstr ""
1211
 
1212
+ #: ../addons/stats/myCRED-addon-stats.php:174
1213
  msgid "Overview"
1214
  msgstr ""
1215
 
1216
+ #: ../addons/stats/myCRED-addon-stats.php:240
1217
  msgid "Refresh"
1218
  msgstr ""
1219
 
1220
+ #: ../addons/stats/myCRED-addon-stats.php:296
1221
  msgid "Your log is empty. No statistics can be shown."
1222
  msgstr ""
1223
 
1226
  msgid "Total %s:"
1227
  msgstr ""
1228
 
1229
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138 ..
1230
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:267
1231
  #, php-format
1232
  msgid "Total amount of %s in circulation"
1233
  msgstr ""
1234
 
1235
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:171 ..
1236
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:299
1237
  msgid "Total gains (%)"
1238
  msgstr ""
1239
 
1240
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:175 ..
1241
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:303
1242
  msgid "Total loses (%)"
1243
  msgstr ""
1244
 
1245
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
1246
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:307
1247
  #, php-format
1248
  msgid "Total Gained: %s"
1249
  msgstr ""
1250
 
1251
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
1252
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:307
1253
  #, php-format
1254
  msgid "Total Spent: %s"
1255
  msgstr ""
1256
 
1257
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:193 ..
1258
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:321
1259
  msgid "This Year"
1260
  msgstr ""
1261
 
 
 
 
 
 
 
 
1262
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
1263
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
1264
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
1265
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:203 ..
1266
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:325 ..
1267
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:327 ..
1268
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:329 ..
1269
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:331
1270
+ msgid "Gained"
1271
+ msgstr ""
1272
+
1273
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
1274
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
1275
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:202 ..
1276
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:204 ..
1277
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:326 ..
1278
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:328 ..
1279
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:330 ..
1280
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:332
1281
  msgid "Lost"
1282
  msgstr ""
1283
 
1317
  msgid "Gains in the last 10 days"
1318
  msgstr ""
1319
 
1320
+ #: ../addons/badges/myCRED-addon-badges.php:49 ../addons/badges/myCRED-addon-
1321
+ #: badges.php:50 ../addons/badges/myCRED-addon-badges.php:51 ..
1322
+ #: addons/badges/myCRED-addon-badges.php:157 ../addons/badges/myCRED-addon-
1323
+ #: badges.php:158 ../addons/badges/myCRED-addon-badges.php:404 ..
1324
+ #: addons/badges/myCRED-addon-badges.php:410 ../addons/badges/myCRED-addon-
1325
+ #: badges.php:416
1326
  msgid "Badges"
1327
  msgstr ""
1328
 
1329
+ #: ../addons/badges/myCRED-addon-badges.php:183
1330
  #, php-format
1331
  msgid "Badges (%d)"
1332
  msgstr ""
1333
 
1334
+ #: ../addons/badges/myCRED-addon-badges.php:277
1335
  #, php-format
1336
  msgid "%d Users earned this badge."
1337
  msgstr ""
1338
 
1339
+ #: ../addons/badges/myCRED-addon-badges.php:281
1340
  msgid "No users has yet earned this badge."
1341
  msgstr ""
1342
 
1343
+ #: ../addons/badges/myCRED-addon-badges.php:305
1344
  msgid "No connections where removed."
1345
  msgstr ""
1346
 
1347
+ #: ../addons/badges/myCRED-addon-badges.php:307
1348
  #, php-format
1349
  msgid "%s connections where removed."
1350
  msgstr ""
1351
 
1352
+ #: ../addons/badges/myCRED-addon-badges.php:405
1353
  msgid "Badge"
1354
  msgstr ""
1355
 
1356
+ #: ../addons/badges/myCRED-addon-badges.php:407
1357
  msgid "Add New Badge"
1358
  msgstr ""
1359
 
1360
+ #: ../addons/badges/myCRED-addon-badges.php:408
1361
  msgid "Edit Badge"
1362
  msgstr ""
1363
 
1364
+ #: ../addons/badges/myCRED-addon-badges.php:409
1365
  msgid "New Badge"
1366
  msgstr ""
1367
 
1368
+ #: ../addons/badges/myCRED-addon-badges.php:411
1369
  msgid "View Badge"
1370
  msgstr ""
1371
 
1372
+ #: ../addons/badges/myCRED-addon-badges.php:412
1373
  msgid "Search Badge"
1374
  msgstr ""
1375
 
1376
+ #: ../addons/badges/myCRED-addon-badges.php:413
1377
  msgid "No badges found"
1378
  msgstr ""
1379
 
1380
+ #: ../addons/badges/myCRED-addon-badges.php:414
1381
  msgid "No badges found in Trash"
1382
  msgstr ""
1383
 
1384
+ #: ../addons/badges/myCRED-addon-badges.php:460 ../addons/badges/myCRED-addon-
1385
+ #: badges.php:568
1386
  msgid "Badge Name"
1387
  msgstr ""
1388
 
1389
+ #: ../addons/badges/myCRED-addon-badges.php:461
1390
  msgid "Badge Images"
1391
  msgstr ""
1392
 
1393
+ #: ../addons/badges/myCRED-addon-badges.php:462
1394
  msgid "Requirements"
1395
  msgstr ""
1396
 
1397
+ #: ../addons/badges/myCRED-addon-badges.php:504
1398
  msgid "A user must have gained or lost:"
1399
  msgstr ""
1400
 
1401
+ #: ../addons/badges/myCRED-addon-badges.php:543 ../addons/badges/myCRED-addon-
1402
+ #: badges.php:546 ../addons/badges/myCRED-addon-badges.php:550 ..
1403
+ #: addons/badges/myCRED-addon-badges.php:551 ../addons/badges/myCRED-addon-
1404
+ #: badges.php:552
1405
  msgid "Badge Updated."
1406
  msgstr ""
1407
 
1408
+ #: ../addons/badges/myCRED-addon-badges.php:548
1409
  msgid "Badge Enabled"
1410
  msgstr ""
1411
 
1412
+ #: ../addons/badges/myCRED-addon-badges.php:549
1413
  msgid "Badge Saved"
1414
  msgstr ""
1415
 
1416
+ #: ../addons/badges/myCRED-addon-badges.php:582
1417
  msgid "Badge Setup"
1418
  msgstr ""
1419
 
1420
+ #: ../addons/badges/myCRED-addon-badges.php:611
1421
  msgid "Assign Badge"
1422
  msgstr ""
1423
 
1424
+ #: ../addons/badges/myCRED-addon-badges.php:612
1425
  msgid "Remove Connections"
1426
  msgstr ""
1427
 
1428
+ #: ../addons/badges/myCRED-addon-badges.php:671
1429
  msgid "Time(s)"
1430
  msgstr ""
1431
 
1432
+ #: ../addons/badges/myCRED-addon-badges.php:672
1433
  msgid "In total"
1434
  msgstr ""
1435
 
1436
+ #: ../addons/badges/myCRED-addon-badges.php:706 ../addons/badges/myCRED-addon-
1437
+ #: badges.php:809 ../addons/badges/myCRED-addon-badges.php:869 ..
1438
+ #: addons/badges/myCRED-addon-badges.php:884
1439
  msgid "Badge Image"
1440
  msgstr ""
1441
 
1442
+ #: ../addons/badges/myCRED-addon-badges.php:707 ../addons/badges/myCRED-addon-
1443
+ #: badges.php:707
1444
  msgid "Set badge image"
1445
  msgstr ""
1446
 
1447
+ #: ../addons/badges/myCRED-addon-badges.php:718
1448
  msgid "Default Image"
1449
  msgstr ""
1450
 
1451
+ #: ../addons/badges/myCRED-addon-badges.php:719 ../addons/badges/myCRED-addon-
1452
+ #: badges.php:779 ../addons/badges/myCRED-addon-badges.php:810 ..
1453
+ #: addons/badges/myCRED-addon-badges.php:869
1454
  msgid "image url"
1455
  msgstr ""
1456
 
1457
+ #: ../addons/badges/myCRED-addon-badges.php:720 ../addons/badges/myCRED-addon-
1458
+ #: badges.php:780 ../addons/badges/myCRED-addon-badges.php:811 ..
1459
+ #: addons/badges/myCRED-addon-badges.php:869
1460
  msgid "Add Image"
1461
  msgstr ""
1462
 
1463
+ #: ../addons/badges/myCRED-addon-badges.php:721
1464
  msgid "Optional image to show when a user has not yet earned this badge."
1465
  msgstr ""
1466
 
1467
+ #: ../addons/badges/myCRED-addon-badges.php:741 ../addons/badges/myCRED-addon-
1468
+ #: badges.php:794
1469
  #, php-format
1470
  msgid "Level %d"
1471
  msgstr ""
1472
 
1473
+ #: ../addons/badges/myCRED-addon-badges.php:746 ../addons/badges/myCRED-addon-
1474
+ #: badges.php:799 ../addons/badges/myCRED-addon-badges.php:869
1475
  msgid "for"
1476
  msgstr ""
1477
 
1478
+ #: ../addons/badges/myCRED-addon-badges.php:778
1479
  msgid "Main Image"
1480
  msgstr ""
1481
 
1482
+ #: ../addons/badges/myCRED-addon-badges.php:812 ../addons/badges/myCRED-addon-
1483
+ #: badges.php:869
1484
  msgid "Leave empty if you do not want to assign a custom image for this level."
1485
  msgstr ""
1486
 
1487
+ #: ../addons/badges/myCRED-addon-badges.php:812 ../addons/badges/myCRED-addon-
1488
+ #: badges.php:869
1489
  msgid "Remove this level"
1490
  msgstr ""
1491
 
1492
+ #: ../addons/badges/myCRED-addon-badges.php:826
1493
  msgid "Add Level"
1494
  msgstr ""
1495
 
1496
+ #: ../addons/badges/myCRED-addon-badges.php:869 ../addons/badges/myCRED-addon-
1497
+ #: badges.php:1214
1498
  msgid "Level"
1499
  msgstr ""
1500
 
1501
+ #: ../addons/badges/myCRED-addon-badges.php:886
1502
  msgid "Use as Badge"
1503
  msgstr ""
1504
 
1505
+ #: ../addons/badges/myCRED-addon-badges.php:1027 ../addons/badges/myCRED-addon-
1506
+ #: badges.php:1063
1507
  msgid "Show all badges, including badges users have not yet earned."
1508
  msgstr ""
1509
 
1510
+ #: ../addons/badges/myCRED-addon-badges.php:1048
1511
  msgid "Include in Forum Replies"
1512
  msgstr ""
1513
 
1514
+ #: ../addons/badges/myCRED-addon-badges.php:1049
1515
  msgid "Include in Profile and Forum Replies"
1516
  msgstr ""
1517
 
1518
+ #: ../addons/badges/myCRED-addon-badges.php:1164
1519
  msgid "User Badges"
1520
  msgstr ""
1521
 
1522
+ #: ../addons/badges/myCRED-addon-badges.php:1173
1523
  msgid ""
1524
  "Here you can view the badges this user has earned and if needed, manually "
1525
  "give or take away a badge from a user."
1526
  msgstr ""
1527
 
1528
+ #: ../addons/badges/myCRED-addon-badges.php:1182
1529
  msgid "Not earned"
1530
  msgstr ""
1531
 
1532
+ #: ../addons/badges/myCRED-addon-badges.php:1189 ../addons/badges/myCRED-addon-
1533
+ #: badges.php:1232
1534
  msgid "Earned"
1535
  msgstr ""
1536
 
1537
+ #: ../addons/badges/myCRED-addon-badges.php:1201
1538
  msgid "No image"
1539
  msgstr ""
1540
 
1541
+ #: ../addons/badges/myCRED-addon-badges.php:1209
1542
  msgid "Select a level"
1543
  msgstr ""
1544
 
1545
+ #: ../addons/badges/includes/mycred-badge-functions.php:69
1546
  #, php-format
1547
  msgid "Level %s"
1548
  msgstr ""
1549
 
1550
+ #: ../addons/badges/includes/mycred-badge-functions.php:72
1551
  #, php-format
1552
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
1553
  msgid "%s for %s %s - %s"
1554
  msgstr ""
1555
 
1556
+ #: ../addons/badges/includes/mycred-badge-functions.php:72 ..
1557
  #: addons/coupons/myCRED-addon-coupons.php:221 ../addons/coupons/myCRED-addon-
1558
  #: coupons.php:516
1559
  #, php-format
1562
  msgstr[0] ""
1563
  msgstr[1] ""
1564
 
1565
+ #: ../addons/badges/includes/mycred-badge-functions.php:74
1566
  #, php-format
1567
  msgctxt "\"x points\" for \"reference\" in total"
1568
  msgid "%s for %s in total"
1576
  msgid "Used"
1577
  msgstr ""
1578
 
1579
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:114
1580
  msgid "Profit Share"
1581
  msgstr ""
1582
 
1583
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:122
1584
  msgid "Save Profit Share"
1585
  msgstr ""
1586
 
1587
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:175
1588
  msgid "Profit Share override saved"
1589
  msgstr ""
1590
 
1591
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:517
1592
  msgid "For Visitors"
1593
  msgstr ""
1594
 
1595
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:534
1596
  msgid "For Members"
1597
  msgstr ""
1598
 
1599
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:549
1600
  msgid "For members that can not afford to buy"
1601
  msgstr ""
1602
 
1603
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:739
1604
  #, php-format
1605
  msgid "Enable sale of this %s"
1606
  msgstr ""
1633
  msgstr ""
1634
 
1635
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:284 ../addons/buy-creds/myCRED-
1636
+ #: addon-buy-creds.php:1754
1637
  msgid "No pending payments found"
1638
  msgstr ""
1639
 
1641
  msgid "Not found in Trash"
1642
  msgstr ""
1643
 
1644
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
1645
+ #: addon-buy-creds.php:1073
1646
  msgid "Buyer"
1647
  msgstr ""
1648
 
1649
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
1650
  msgid "Type"
1651
  msgstr ""
1652
 
1653
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
1654
  msgid "Pay Out"
1655
  msgstr ""
1656
 
1657
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
1658
  msgid "Select the point types that users can buy. You must select at least one!"
1659
  msgstr ""
1660
 
1661
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
1662
  #, php-format
1663
  msgid "%s Exchange Rate"
1664
  msgstr ""
1665
 
1666
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
1667
  msgid "Save Exchange Rates"
1668
  msgstr ""
1669
 
1670
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899
1671
  msgid "Exchange rate override saved"
1672
  msgstr ""
1673
 
1674
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1675
  msgid "Payment completed"
1676
  msgstr ""
1677
 
1678
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986
1679
  msgid "More Gateways"
1680
  msgstr ""
1681
 
1779
  msgid "myCRED"
1780
  msgstr "myCRED"
1781
 
1782
+ #: ../mycred.php:443
1783
  msgid "Balance"
1784
  msgstr "Saldo"
1785
 
1786
+ #: ../mycred.php:468
1787
  msgid "%label% History"
1788
  msgstr "%lavel% Historial"
1789
 
1790
+ #: ../mycred.php:562
1791
  #, php-format
1792
  msgid "About %s"
1793
  msgstr "Sobre"
1794
 
1795
+ #: ../mycred.php:571
1796
  msgid "Awesome People"
1797
  msgstr "Gente genial"
1798
 
1799
+ #: ../mycred.php:659 ../mycred.php:684 ../mycred.php:702 ../includes/mycred-
1800
+ #: shortcodes.php:653 ../addons/gateway/event-booking/mycred-eventsmanager.php:
1801
  #: 478 ../addons/transfer/myCRED-addon-transfer.php:146 ../addons/ranks/myCRED-
1802
+ #: addon-ranks.php:426 ../addons/ranks/myCRED-addon-ranks.php:1534 ..
1803
+ #: addons/badges/myCRED-addon-badges.php:635 ../addons/sell-content/myCRED-addon-
1804
+ #: sell-content.php:397
1805
  msgid "Processing..."
1806
  msgstr "Procesando..."
1807
 
1808
+ #: ../mycred.php:660
1809
  msgid ""
1810
  "Warning! All entries in your log will be permanently removed! This can not "
1811
  "be undone!"
1813
  "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
1814
  "¡Esto no se puede deshacer!"
1815
 
1816
+ #: ../mycred.php:661
1817
  msgid ""
1818
  "All log entries belonging to deleted users will be permanently deleted! This "
1819
  "can not be undone!"
1821
  "¡Todas las entradas de registro perteneciendo al usuario seran "
1822
  "permanentemente borradas! ¡Esto no se puede deshacer!"
1823
 
1824
+ #: ../mycred.php:662
1825
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
1826
  msgstr ""
1827
  "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
1828
  "deshacer!"
1829
 
1830
+ #: ../mycred.php:663
1831
  msgid "Done!"
1832
  msgstr "¡Realizado!"
1833
 
1834
+ #: ../mycred.php:664 ../mycred.php:683 ../mycred.php:701
1835
  msgid "Close"
1836
  msgstr "Cerrar"
1837
 
1838
+ #: ../mycred.php:665
1839
  #, php-format
1840
  msgid "Export users %plural%"
1841
  msgstr "Exportar usuarios %plural%"
1842
 
1843
+ #: ../mycred.php:682
1844
  msgid "Edit Users Balance"
1845
  msgstr "Editar saldo del usuario"
1846
 
1847
+ #: ../mycred.php:700
1848
  msgid "Edit Log Entry"
1849
  msgstr "Edidar entrada de registro"
1850
 
1851
+ #: ../mycred.php:704
1852
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
1853
  msgstr ""
1854
  "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
1855
  "deshacer!"
1856
 
1857
+ #: ../mycred.php:705
1858
  msgid "Log entry updated"
1859
  msgstr "Entrada de registro actualizado"
1860
 
1861
+ #: ../mycred.php:762 ../mycred.php:784 ../addons/gateway/event-booking/mycred-
1862
  #: eventsmanager.php:537 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
1863
+ #: php:499 ../addons/email-notices/myCRED-addon-email-notices.php:841
1864
  msgid "Setup"
1865
  msgstr "Configurar"
1866
 
1867
+ #: ../mycred.php:764 ../modules/mycred-module-settings.php:21 ../modules/mycred-
1868
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23 ..
1869
  #: includes/mycred-network.php:170 ../addons/gateway/carts/mycred-marketpress.
1870
  #: php:371 ../addons/stats/abstracts/mycred-abstract-stat-widget.php:108
1871
  msgid "Settings"
1872
  msgstr "Configuraciones"
1873
 
1874
+ #: ../mycred.php:807
1875
  msgid ""
1876
  "Make sure to backup your database and files before updating, in case "
1877
  "anything goes wrong!"
1884
  msgstr "Este gancho no ha sido configurado"
1885
 
1886
  #: ../abstracts/mycred-abstract-hook.php:283 ../abstracts/mycred-abstract-hook.
1887
+ #: php:354 ../modules/mycred-module-hooks.php:1819 ../includes/mycred-functions.
1888
+ #: php:2928
1889
  msgid "No limit"
1890
  msgstr "Sin Limite"
1891
 
1903
 
1904
  #: ../abstracts/mycred-abstract-hook.php:364 ../addons/banking/abstracts/mycred-
1905
  #: abstract-service.php:498 ../addons/email-notices/myCRED-addon-email-notices.
1906
+ #: php:208 ../addons/email-notices/myCRED-addon-email-notices.php:1040 ..
1907
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:695 ../addons/buy-creds/myCRED-
1908
+ #: addon-buy-creds.php:718 ../addons/buy-creds/abstracts/mycred-abstract-payment-
1909
  #: gateway.php:1023 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
1910
  #: php:1046 ../addons/buy-creds/gateways/zombaio.php:356
1911
  msgid "Select"
1912
  msgstr "Seleccionar"
1913
 
1914
+ #: ../abstracts/mycred-abstract-module.php:401 ../abstracts/mycred-abstract-
1915
+ #: module.php:411
1916
  msgid "Surprise"
1917
  msgstr "Sorpresa"
1918
 
1919
+ #: ../abstracts/mycred-abstract-module.php:512 ../includes/mycred-network.php:93
1920
  msgid "click to close"
1921
  msgstr "haga clic para cerrar"
1922
 
1923
+ #: ../abstracts/mycred-abstract-module.php:513 ../includes/mycred-network.php:94
1924
  msgid "click to open"
1925
  msgstr "haga clic para abrir"
1926
 
1927
+ #: ../abstracts/mycred-abstract-module.php:546 ../addons/buy-creds/myCRED-addon-
1928
+ #: buy-creds.php:926
1929
  msgid "Settings Updated"
1930
  msgstr "Configuraciones Actualizadas"
1931
 
1953
  msgstr "Pista"
1954
 
1955
  #: ../modules/mycred-module-settings.php:484 ../modules/mycred-module-addons.php:
1956
+ #: 311 ../modules/mycred-module-log.php:358 ../modules/mycred-module-log.php:647 .
1957
+ #: ./modules/mycred-module-hooks.php:196 ../includes/mycred-network.php:141 ..
1958
+ #: includes/mycred-admin.php:590 ../addons/banking/myCRED-addon-banking.php:238 .
1959
+ #: ./addons/stats/myCRED-addon-stats.php:230 ../addons/buy-creds/myCRED-addon-buy-
1960
+ #: creds.php:915 ../addons/buy-creds/myCRED-addon-buy-creds.php:1021
1961
  msgid "Access Denied"
1962
  msgstr "Acceso Denegado"
1963
 
2105
 
2106
  #: ../modules/mycred-module-settings.php:625 ../modules/mycred-module-settings.
2107
  #: php:640 ../modules/mycred-module-log.php:407 ../addons/ranks/myCRED-addon-
2108
+ #: ranks.php:1623 ../addons/buy-creds/myCRED-addon-buy-creds.php:1717
2109
  msgid "Actions"
2110
  msgstr "Acciones"
2111
 
2114
  msgstr "Registro Vacío"
2115
 
2116
  #: ../modules/mycred-module-settings.php:632 ../addons/ranks/myCRED-addon-ranks.
2117
+ #: php:1615
2118
  msgid "User Meta Key"
2119
  msgstr "Clave Meta del Usuario"
2120
 
2121
  #: ../modules/mycred-module-settings.php:636 ../addons/ranks/myCRED-addon-ranks.
2122
+ #: php:1049 ../addons/badges/myCRED-addon-badges.php:463
2123
  msgid "Users"
2124
  msgstr "Usuarios"
2125
 
2132
  msgstr "Exportar CSV"
2133
 
2134
  #: ../modules/mycred-module-settings.php:656 ../includes/mycred-widgets.php:600 ..
2135
+ #: addons/transfer/myCRED-addon-transfer.php:212 ../addons/buy-creds/myCRED-
2136
+ #: addon-buy-creds.php:651
2137
  msgid "Point Types"
2138
  msgstr "Tipo de Puntos"
2139
 
2149
  #: ../modules/mycred-module-settings.php:674 ../modules/mycred-module-settings.
2150
  #: php:695 ../modules/mycred-module-settings.php:720 ..
2151
  #: addons/gateway/carts/mycred-woocommerce.php:160 ../addons/email-
2152
+ #: notices/myCRED-addon-email-notices.php:1082
2153
  msgid "Label"
2154
  msgstr "Etiqueta"
2155
 
2173
 
2174
  #: ../modules/mycred-module-settings.php:739 ../addons/gateway/event-
2175
  #: booking/mycred-eventespresso3.php:502 ../addons/buy-creds/myCRED-addon-buy-
2176
+ #: creds.php:985
2177
  msgid "Update Settings"
2178
  msgstr "Actualizar Configuraciones"
2179
 
2223
  msgid "Add-ons"
2224
  msgstr "Extensiones"
2225
 
2226
+ #: ../modules/mycred-module-addons.php:178
2227
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
2228
  msgstr ""
2229
  "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
2230
  "de las cuentas de usuarios."
2231
 
2232
+ #: ../modules/mycred-module-addons.php:189
2233
  msgid ""
2234
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
2235
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
2240
  "<strong>compra</strong>CRED tambien permite que tus usuarios compren puntos "
2241
  "para otros miembros."
2242
 
2243
+ #: ../modules/mycred-module-addons.php:200
2244
  msgid ""
2245
  "The coupons add-on allows you to create coupons that users can use to add "
2246
  "points to their accounts."
2248
  "Los cupones de add-on le permite crear cupones que los usuarios pueden "
2249
  "utilizar para agregar puntos a sus cuentas."
2250
 
2251
+ #: ../modules/mycred-module-addons.php:211
2252
  msgid "Create email notices for any type of myCRED instance."
2253
  msgstr ""
2254
  "Crea avisos por correo electrónico para cualquier tipo de instancias de "
2255
  "myCRED."
2256
 
2257
+ #: ../modules/mycred-module-addons.php:222
2258
  msgid ""
2259
  "Let your users pay using their <strong>my</strong>CRED points balance. "
2260
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
2265
  "WP E-Commerce. Reservas de Eventos soportados: Event Espresso and Events "
2266
  "Manager (gratis y pro)."
2267
 
2268
+ #: ../modules/mycred-module-addons.php:233
2269
  msgid "Create pop-up notifications for when users gain or loose points."
2270
  msgstr "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
2271
 
2272
+ #: ../modules/mycred-module-addons.php:245
2273
  msgid ""
2274
  "Create ranks for users reaching a certain number of %_plural% with the "
2275
  "option to add logos for each rank."
2277
  "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
2278
  "con la opción de añadir logotipos para cada rango."
2279
 
2280
+ #: ../modules/mycred-module-addons.php:256
2281
  msgid ""
2282
  "This add-on allows you to sell posts, pages or any public post types on your "
2283
  "website. You can either sell the entire content or using our shortcode, sell "
2288
  "el código corto (shortcode), vender partes de tu contenido permitiendote "
2289
  "ofrecer \"avances\"."
2290
 
2291
+ #: ../modules/mycred-module-addons.php:278
2292
  msgid ""
2293
  "Allow your users to send or \"donate\" points to other members by either using "
2294
  "the mycred_transfer shortcode or the myCRED Transfer widget."
2297
  "el código corto (shortcode) de mycred_transfer o el widget de Transferencia "
2298
  "myCRED."
2299
 
2300
+ #: ../modules/mycred-module-addons.php:321
2301
  #, php-format
2302
  msgid "%s Add-ons"
2303
  msgstr "%s Extensiones (addons)"
2304
 
2305
+ #: ../modules/mycred-module-addons.php:328
2306
  msgid "Add-on Activated"
2307
  msgstr "Extensión Activado"
2308
 
2309
+ #: ../modules/mycred-module-addons.php:331
2310
  msgid "Add-on Deactivated"
2311
  msgstr "Extensión Desactivado"
2312
 
2313
+ #: ../modules/mycred-module-addons.php:339
2314
  msgid "Add-ons can expand your current installation with further features."
2315
  msgstr ""
2316
  "Extensiones pueden ampliar tu instalación actual con más características "
2317
  "técnicas."
2318
 
2319
+ #: ../modules/mycred-module-addons.php:367
2320
  #, php-format
2321
  msgid "You can find more add-ons in our %s."
2322
  msgstr "Puedes encontrar más extensiones (add-ons) en nuestro %s."
2323
 
2324
+ #: ../modules/mycred-module-addons.php:367
2325
  msgid "online store"
2326
  msgstr "tienda online"
2327
 
2328
+ #: ../modules/mycred-module-addons.php:390
2329
  msgid "Deactivate Add-on"
2330
  msgstr "Desactivar Extensión"
2331
 
2332
+ #: ../modules/mycred-module-addons.php:391
2333
  msgid "Deactivate"
2334
  msgstr "Desactivar"
2335
 
2336
+ #: ../modules/mycred-module-addons.php:398
2337
  msgid "Activate Add-on"
2338
  msgstr "Activar Extensión"
2339
 
2340
+ #: ../modules/mycred-module-addons.php:399
2341
  msgid "Activate"
2342
  msgstr "Activar"
2343
 
2344
+ #: ../modules/mycred-module-addons.php:417
2345
  msgid "Version"
2346
  msgstr "Version"
2347
 
2348
+ #: ../modules/mycred-module-addons.php:421
2349
  msgid "By"
2350
  msgstr "Por"
2351
 
2352
+ #: ../modules/mycred-module-addons.php:425
2353
  msgid "About"
2354
  msgstr "Acerca de"
2355
 
2356
+ #: ../modules/mycred-module-addons.php:429
2357
  msgid "Get Pro"
2358
  msgstr "Obtenga la versión Pro"
2359
 
2375
  msgstr "Entrada Actualizada"
2376
 
2377
  #: ../modules/mycred-module-log.php:276 ../modules/mycred-module-log.php:277 ..
2378
+ #: includes/mycred-admin.php:429 ../addons/banking/services/mycred-bank-service-
2379
  #: payouts.php:246
2380
  msgid "History"
2381
  msgstr "Historial"
2389
  msgid "%s Log"
2390
  msgstr "Registro de %s"
2391
 
2392
+ #: ../modules/mycred-module-log.php:525 ../includes/mycred-log.php:872
2393
  msgid "User Missing"
2394
  msgstr "Usuario Ausente"
2395
 
2397
  msgid "Edit"
2398
  msgstr "Editar"
2399
 
2400
+ #: ../modules/mycred-module-log.php:609 ../includes/mycred-log.php:754 ..
2401
+ #: includes/mycred-admin.php:802 ../addons/email-notices/myCRED-addon-email-
2402
+ #: notices.php:900 ../addons/email-notices/myCRED-addon-email-notices.php:1076
2403
  msgid "User"
2404
  msgstr "Usuario"
2405
 
2438
  msgid "Hooks"
2439
  msgstr "Ganchos"
2440
 
2441
+ #: ../modules/mycred-module-hooks.php:110
2442
  #, php-format
2443
  msgid "%plural% for registrations"
2444
  msgstr "%plural% por inscripciones"
2445
 
2446
+ #: ../modules/mycred-module-hooks.php:111
2447
  #, php-format
2448
  msgid "Award %_plural% for users joining your website."
2449
  msgstr "Concede %_plural% a usuarios para unirse a tu sitio de web."
2450
 
2451
+ #: ../modules/mycred-module-hooks.php:131
2452
  #, php-format
2453
  msgid "%plural% for logins"
2454
  msgstr "%plural% para ingresos"
2455
 
2456
+ #: ../modules/mycred-module-hooks.php:132
2457
  #, php-format
2458
  msgid ""
2459
  "Award %_plural% for logging in to your website. You can also set an optional "
2462
  "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
2463
  "ajustar un limíte opcional."
2464
 
2465
+ #: ../modules/mycred-module-hooks.php:138
2466
  #, php-format
2467
  msgid "%plural% for publishing content"
2468
  msgstr "%plural% por publicar contenido"
2469
 
2470
+ #: ../modules/mycred-module-hooks.php:139
2471
  #, php-format
2472
  msgid ""
2473
  "Award %_plural% for publishing content on your website. If your custom post "
2474
  "type is not shown bellow, make sure it is set to \"Public\"."
2475
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
2476
 
2477
+ #: ../modules/mycred-module-hooks.php:145
2478
  #, php-format
2479
  msgid "%plural% for comments"
2480
  msgstr "%plural% por comentarios"
2481
 
2482
+ #: ../modules/mycred-module-hooks.php:145
2483
  #, php-format
2484
  msgid "%plural% for Disqus comments"
2485
  msgstr "%plural% por comentarios Disqus"
2486
 
2487
+ #: ../modules/mycred-module-hooks.php:146
2488
  #, php-format
2489
  msgid "Award %_plural% for making comments."
2490
  msgstr "Concede %_plural% por hacer comentarios."
2491
 
2492
+ #: ../modules/mycred-module-hooks.php:152
2493
  #, php-format
2494
  msgid "%plural% for clicking on links"
2495
  msgstr "%plural% por hacer clic sobre enlaces"
2496
 
2497
+ #: ../modules/mycred-module-hooks.php:153
2498
  msgid ""
2499
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
2500
  "shortcode."
2502
  "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
2503
  "por el [mycred_link] código corto (shortcode)."
2504
 
2505
+ #: ../modules/mycred-module-hooks.php:159
2506
  #, php-format
2507
  msgid "%plural% for viewing Videos"
2508
  msgstr "%plural% por ver videos"
2509
 
2510
+ #: ../modules/mycred-module-hooks.php:160
2511
  msgid ""
2512
  "Award %_plural% to users who watches videos embedded using the "
2513
  "[mycred_video] shortcode."
2515
  "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
2516
  "el [mycred_link] código corto (shortcode)."
2517
 
2518
+ #: ../modules/mycred-module-hooks.php:166
2519
  #, php-format
2520
  msgid "%plural% for referrals"
2521
  msgstr "%plural% por referencias (o recomendaciones)"
2522
 
2523
+ #: ../modules/mycred-module-hooks.php:167
2524
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
2525
  msgstr ""
2526
  "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
2527
  "miembros inscritos."
2528
 
2529
+ #: ../modules/mycred-module-hooks.php:202
2530
  #, php-format
2531
  msgid "%s Hooks"
2532
  msgstr "Ganchos de %s"
2533
 
2534
+ #: ../modules/mycred-module-hooks.php:206
2535
  #, php-format
2536
  msgid ""
2537
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
2540
  "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
2541
  "usuario, dependiendo de sus acciones en tu sitio web."
2542
 
2543
+ #: ../modules/mycred-module-hooks.php:225 ../addons/banking/myCRED-addon-banking.
2544
+ #: php:274 ../addons/buy-creds/myCRED-addon-buy-creds.php:953
2545
  msgid "Enable"
2546
  msgstr "Activar"
2547
 
2548
+ #: ../modules/mycred-module-hooks.php:243 ../addons/banking/myCRED-addon-banking.
2549
+ #: php:293
2550
  msgid "Update Changes"
2551
  msgstr "Actualizar Cambios"
2552
 
2553
+ #: ../modules/mycred-module-hooks.php:420 ../modules/mycred-module-hooks.php:526 .
2554
+ #: ./modules/mycred-module-hooks.php:693 ../modules/mycred-module-hooks.php:724 ..
2555
+ #: modules/mycred-module-hooks.php:801 ../modules/mycred-module-hooks.php:1167 ..
2556
+ #: modules/mycred-module-hooks.php:1184 ../modules/mycred-module-hooks.php:1233 .
2557
+ #: ./modules/mycred-module-hooks.php:1685 ../modules/mycred-module-hooks.php:1702
2558
+ #: ../modules/mycred-module-hooks.php:1719 ../modules/mycred-module-hooks.php:
2559
+ #: 3010 ../modules/mycred-module-hooks.php:3030 ../plugins/mycred-hook-invite-
2560
+ #: anyone.php:211 ../plugins/mycred-hook-invite-anyone.php:232 ../plugins/mycred-
2561
+ #: hook-wp-postratings.php:173 ../plugins/mycred-hook-wp-postratings.php:192 ..
2562
+ #: plugins/mycred-hook-gravityforms.php:165 ../plugins/mycred-hook-simplepress.
2563
+ #: php:309 ../plugins/mycred-hook-simplepress.php:322 ../plugins/mycred-hook-
2564
+ #: simplepress.php:339 ../plugins/mycred-hook-simplepress.php:357 ..
2565
+ #: plugins/mycred-hook-buddypress-gallery.php:116 ../plugins/mycred-hook-
2566
+ #: buddypress.php:520 ../plugins/mycred-hook-buddypress.php:537 ../plugins/mycred-
2567
+ #: hook-buddypress.php:554 ../plugins/mycred-hook-buddypress.php:574 ..
2568
+ #: plugins/mycred-hook-buddypress.php:587 ../plugins/mycred-hook-buddypress.php:
2569
+ #: 604 ../plugins/mycred-hook-buddypress.php:617 ../plugins/mycred-hook-
2570
+ #: buddypress.php:634 ../plugins/mycred-hook-buddypress.php:651 ../plugins/mycred-
2571
+ #: hook-buddypress.php:1231 ../plugins/mycred-hook-buddypress.php:1244 ..
2572
+ #: plugins/mycred-hook-buddypress.php:1261 ../plugins/mycred-hook-buddypress.php:
2573
+ #: 1278 ../plugins/mycred-hook-buddypress.php:1295 ../plugins/mycred-hook-
2574
+ #: buddypress.php:1312 ../plugins/mycred-hook-buddypress.php:1330 ..
2575
+ #: plugins/mycred-hook-buddypress.php:1343 ../plugins/mycred-hook-buddypress.php:
2576
+ #: 1360 ../plugins/mycred-hook-buddypress.php:1377 ../plugins/mycred-hook-
2577
+ #: buddypress-links.php:271 ../plugins/mycred-hook-buddypress-links.php:288 ..
2578
+ #: plugins/mycred-hook-buddypress-links.php:305 ../plugins/mycred-hook-
2579
+ #: buddypress-links.php:324 ../plugins/mycred-hook-buddypress-links.php:341 ..
2580
+ #: plugins/mycred-hook-buddypress-links.php:354 ../plugins/mycred-hook-
2581
+ #: affiliatewp.php:229 ../plugins/mycred-hook-affiliatewp.php:246 ..
2582
  #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-buddypress-media.
2583
+ #: php:224 ../plugins/mycred-hook-buddypress-media.php:238 ../plugins/mycred-hook-
2584
+ #: buddypress-media.php:252 ../plugins/mycred-hook-buddypress-media.php:265 ..
2585
+ #: plugins/mycred-hook-buddypress-media.php:275 ../plugins/mycred-hook-
2586
+ #: buddypress-media.php:285 ../plugins/mycred-hook-contact-form7.php:168 ..
2587
+ #: plugins/mycred-hook-jetpack.php:545 ../plugins/mycred-hook-jetpack.php:558 ..
2588
+ #: plugins/mycred-hook-bbPress.php:443 ../plugins/mycred-hook-bbPress.php:456 ..
2589
+ #: plugins/mycred-hook-bbPress.php:473 ../plugins/mycred-hook-bbPress.php:491 ..
2590
+ #: plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:525 ..
2591
+ #: plugins/mycred-hook-bbPress.php:551 ../plugins/mycred-hook-badgeOS.php:336
2592
  msgid "Log template"
2593
  msgstr "Plantilla de Registro"
2594
 
2595
+ #: ../modules/mycred-module-hooks.php:682 ../modules/mycred-module-hooks.php:689 .
2596
+ #: ./modules/mycred-module-hooks.php:713 ../modules/mycred-module-hooks.php:720 ..
2597
+ #: modules/mycred-module-hooks.php:790 ../modules/mycred-module-hooks.php:797 ..
2598
+ #: modules/mycred-module-hooks.php:1021 ../modules/mycred-module-hooks.php:1163 .
2599
+ #: ./modules/mycred-module-hooks.php:1180 ../modules/mycred-module-hooks.php:1229
2600
+ #: ../modules/mycred-module-hooks.php:3018 ../modules/mycred-module-hooks.php:
2601
+ #: 3038 ../plugins/mycred-hook-invite-anyone.php:216 ../plugins/mycred-hook-
2602
+ #: invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:237 ..
2603
+ #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-wp-
2604
+ #: postratings.php:165 ../plugins/mycred-hook-wp-postratings.php:184 ..
2605
+ #: plugins/mycred-hook-gravityforms.php:160 ../plugins/mycred-hook-simplepress.
2606
+ #: php:304 ../plugins/mycred-hook-simplepress.php:334 ../plugins/mycred-hook-
2607
+ #: buddypress-gallery.php:111 ../plugins/mycred-hook-buddypress.php:515 ..
2608
+ #: plugins/mycred-hook-buddypress.php:532 ../plugins/mycred-hook-buddypress.php:
2609
+ #: 549 ../plugins/mycred-hook-buddypress.php:566 ../plugins/mycred-hook-
2610
+ #: buddypress.php:599 ../plugins/mycred-hook-buddypress.php:629 ../plugins/mycred-
2611
+ #: hook-buddypress.php:646 ../plugins/mycred-hook-buddypress.php:1256 ..
2612
+ #: plugins/mycred-hook-buddypress.php:1273 ../plugins/mycred-hook-buddypress.php:
2613
+ #: 1290 ../plugins/mycred-hook-buddypress.php:1307 ../plugins/mycred-hook-
2614
+ #: buddypress.php:1325 ../plugins/mycred-hook-buddypress.php:1355 ..
2615
+ #: plugins/mycred-hook-buddypress.php:1372 ../plugins/mycred-hook-buddypress-
2616
+ #: links.php:266 ../plugins/mycred-hook-buddypress-links.php:283 ..
2617
+ #: plugins/mycred-hook-buddypress-links.php:300 ../plugins/mycred-hook-
2618
+ #: buddypress-links.php:310 ../plugins/mycred-hook-buddypress-links.php:319 ..
2619
+ #: plugins/mycred-hook-buddypress-links.php:336 ../plugins/mycred-hook-
2620
+ #: affiliatewp.php:241 ../plugins/mycred-hook-events-manager-light.php:205 ..
2621
  #: plugins/mycred-hook-sharethis.php:302 ../plugins/mycred-hook-buddypress-media.
2622
+ #: php:220 ../plugins/mycred-hook-buddypress-media.php:234 ../plugins/mycred-hook-
2623
+ #: buddypress-media.php:248 ../plugins/mycred-hook-wp-favorite-posts.php:222 ..
2624
+ #: plugins/mycred-hook-wp-favorite-posts.php:240 ../plugins/mycred-hook-contact-
2625
+ #: form7.php:163 ../plugins/mycred-hook-bbPress.php:438 ../plugins/mycred-hook-
2626
+ #: bbPress.php:468 ../plugins/mycred-hook-bbPress.php:503 ../plugins/mycred-hook-
2627
+ #: bbPress.php:520 ../plugins/mycred-hook-woocommerce.php:336 ../includes/mycred-
2628
+ #: shortcodes.php:1143
2629
  msgid "Limit"
2630
  msgstr "Límite"
2631
 
2632
+ #: ../modules/mycred-module-hooks.php:686 ../modules/mycred-module-hooks.php:702 .
2633
+ #: ./modules/mycred-module-hooks.php:717 ../modules/mycred-module-hooks.php:733 ..
2634
+ #: modules/mycred-module-hooks.php:794 ../modules/mycred-module-hooks.php:810 ..
2635
+ #: modules/mycred-module-hooks.php:1680 ../modules/mycred-module-hooks.php:1697 .
2636
+ #: ./modules/mycred-module-hooks.php:1714
2637
  msgid "Content Author"
2638
  msgstr "Autor del Contenido"
2639
 
2640
  #. can also be "Plantilla de Bitácora"
2641
+ #: ../modules/mycred-module-hooks.php:1014 ../modules/mycred-module-hooks.php:
2642
+ #: 2035 ../modules/mycred-module-hooks.php:2405 ../plugins/mycred-hook-wp-polls.
2643
+ #: php:154 ../plugins/mycred-hook-gd-star-rating.php:121 ../plugins/mycred-hook-
2644
+ #: gd-star-rating.php:134 ../plugins/mycred-hook-events-manager-light.php:209 ..
2645
+ #: plugins/mycred-hook-events-manager-light.php:222 ../plugins/mycred-hook-wp-
2646
+ #: favorite-posts.php:226 ../plugins/mycred-hook-wp-favorite-posts.php:244 ..
2647
+ #: plugins/mycred-hook-wp-favorite-posts.php:258 ../plugins/mycred-hook-wp-
2648
+ #: favorite-posts.php:271 ../plugins/mycred-hook-woocommerce.php:340 ..
2649
+ #: plugins/mycred-hook-badgeOS.php:143 ../plugins/mycred-hook-badgeOS.php:145 ..
2650
+ #: plugins/mycred-hook-badgeOS.php:156 ../addons/banking/services/mycred-bank-
2651
  #: service-payouts.php:283 ../addons/banking/services/mycred-bank-service-
2652
  #: interest.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:371 ..
2653
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
2654
  #: addons/gateway/carts/mycred-woocommerce.php:176 ..
2655
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
2656
  #: addons/gateway/carts/mycred-marketpress.php:428 ../addons/coupons/myCRED-
2657
+ #: addon-coupons.php:557 ../addons/buy-creds/myCRED-addon-buy-creds.php:672 ..
2658
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:735
2659
  msgid "Log Template"
2660
  msgstr "Plantilla de Registro"
2661
 
2662
+ #: ../modules/mycred-module-hooks.php:1157
2663
  #, php-format
2664
  msgid "%plural% for Posts"
2665
  msgstr "%plural% por Posts"
2666
 
2667
+ #: ../modules/mycred-module-hooks.php:1174
2668
  #, php-format
2669
  msgid "%plural% for Pages"
2670
  msgstr "%plural% por Paginas"
2671
 
2672
+ #: ../modules/mycred-module-hooks.php:1223
2673
  #, php-format
2674
  msgid "%plural% for %s"
2675
  msgstr "%plural% por %s"
2676
 
2677
+ #: ../modules/mycred-module-hooks.php:1670
2678
  #, php-format
2679
  msgid ""
2680
  "%plural% are only awarded when your website has been synced with the Disqus "
2683
  "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
2684
  "sincronizado con el servidor de Disqus!"
2685
 
2686
+ #: ../modules/mycred-module-hooks.php:1673 ../includes/mycred-functions.php:2600
2687
  msgid "Approved Comment"
2688
  msgstr "Comentario Aprobado"
2689
 
2690
+ #: ../modules/mycred-module-hooks.php:1676 ../modules/mycred-module-hooks.php:
2691
+ #: 1693 ../modules/mycred-module-hooks.php:1710
2692
  msgid "Comment Author"
2693
  msgstr "Autor del Comentario"
2694
 
2695
+ #: ../modules/mycred-module-hooks.php:1690
2696
  msgid "Comment Marked SPAM"
2697
  msgstr "Comentario Marcado como SPAM"
2698
 
2699
+ #: ../modules/mycred-module-hooks.php:1707
2700
  msgid "Trashed / Unapproved Comments"
2701
  msgstr "Comentarios Destrozados / No Aprobados"
2702
 
2703
+ #: ../modules/mycred-module-hooks.php:1724 ../modules/mycred-module-hooks.php:
2704
+ #: 2042 ../addons/transfer/myCRED-addon-transfer.php:264 ../addons/coupons/myCRED-
2705
  #: addon-coupons.php:175
2706
  msgid "Limits"
2707
  msgstr "imites"
2708
 
2709
+ #: ../modules/mycred-module-hooks.php:1727
2710
  msgid "Limit per post"
2711
  msgstr "Límite por Entrada"
2712
 
2713
  #. what is the Spanish word for "post"? o anglicismo?
2714
+ #: ../modules/mycred-module-hooks.php:1729
2715
  msgid ""
2716
  "The number of comments per post that grants %_plural% to the comment author. "
2717
  "Use zero for unlimited."
2719
  "El numero de comentarios por cada post que concede %_plural% al autor del "
2720
  "comentario. Utilice cero para un número ilimitado"
2721
 
2722
+ #: ../modules/mycred-module-hooks.php:1733
2723
  msgid "Limit per day"
2724
  msgstr "Límite por día"
2725
 
2726
+ #: ../modules/mycred-module-hooks.php:1735
2727
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
2728
  msgstr ""
2729
  "Número de comentarios diarios que conceden %_plural%. Utilice cero para un "
2730
  "número ilimitado."
2731
 
2732
+ #: ../modules/mycred-module-hooks.php:1740
2733
  #, php-format
2734
  msgid ""
2735
  "%plural% is to be awarded even when comment authors reply to their own "
2738
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
2739
  "comentario."
2740
 
2741
+ #: ../modules/mycred-module-hooks.php:1820
2742
  msgid "Once for each unique URL"
2743
  msgstr "Una sola vez para cada única URL"
2744
 
2745
+ #: ../modules/mycred-module-hooks.php:1821
2746
  msgid "Once for each unique link id"
2747
  msgstr "Una vez para cada id del enlace único "
2748
 
2749
+ #: ../modules/mycred-module-hooks.php:2032
2750
  msgid ""
2751
  "The default amount to award for clicking on links. You can override this in "
2752
  "the shortcode."
2754
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
2755
  "anular esto con el 'shortcode' (código corto)."
2756
 
2757
+ #: ../modules/mycred-module-hooks.php:2039
2758
  #, php-format
2759
  msgid "Custom tags: %url%, %title% or %id%."
2760
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
2761
 
2762
+ #: ../modules/mycred-module-hooks.php:2052 ../modules/mycred-module-hooks.php:3106
2763
  msgid "Note!"
2764
  msgstr "¡Atención!"
2765
 
2766
+ #: ../modules/mycred-module-hooks.php:2052
2767
  msgid ""
2768
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
2769
  "generate one automatically based on the value set under href. If you are "
2775
  "valor fijado en href. Si estas utilizando esta función para \"compartir\" "
2776
  "contenidos, se recomienda que limites por ID."
2777
 
2778
+ #: ../modules/mycred-module-hooks.php:2054 ../modules/mycred-module-hooks.php:2438
2779
  msgid "Available Shortcode"
2780
  msgstr "Código corto Disponible"
2781
 
2782
+ #: ../modules/mycred-module-hooks.php:2402
2783
  msgid "Amount to award for viewing videos."
2784
  msgstr "Cantidad a ceder para ver videos."
2785
 
2786
+ #: ../modules/mycred-module-hooks.php:2412
2787
  msgid "Award Logic"
2788
  msgstr "Lógica de Concesión"
2789
 
2790
+ #: ../modules/mycred-module-hooks.php:2414
2791
  #, php-format
2792
  msgid "Select when %_plural% should be awarded or deducted."
2793
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
2794
 
2795
+ #: ../modules/mycred-module-hooks.php:2415
2796
  msgid "Play - As soon as video starts playing."
2797
  msgstr "Play - En cuanto el video empiece a reproducirse."
2798
 
2799
+ #: ../modules/mycred-module-hooks.php:2416
2800
  msgid "Full - First when the entire video has played."
2801
  msgstr "Completo - Primero cuando el video entero se haya reproducido."
2802
 
2803
+ #: ../modules/mycred-module-hooks.php:2417
2804
  msgid "Interval - For each x number of seconds watched."
2805
  msgstr "Intervalo - Para cada x numero de segundos vistos."
2806
 
2807
+ #: ../modules/mycred-module-hooks.php:2420 ../addons/banking/services/mycred-bank-
2808
  #: service-payouts.php:271
2809
  msgid "Interval"
2810
  msgstr "Interval"
2811
 
2812
+ #: ../modules/mycred-module-hooks.php:2422
2813
  msgid "Number of seconds"
2814
  msgstr "Numero de segundos"
2815
 
2816
+ #: ../modules/mycred-module-hooks.php:2429
2817
  msgid "Leniency"
2818
  msgstr "Lenidad"
2819
 
2820
+ #: ../modules/mycred-module-hooks.php:2431
2821
  msgid ""
2822
  "The maximum percentage a users view of a movie can differ from the actual "
2823
  "length."
2825
  "El porcentaje máximo medido que un usuario vea puede variar con la duración "
2826
  "actual del video."
2827
 
2828
+ #: ../modules/mycred-module-hooks.php:2434
2829
  msgid ""
2830
  "Do not set this value to zero! A lot of thing can happen while a user "
2831
  "watches a movie and sometimes a few seconds can drop of the counter due to "
2835
  "usuario ve una película y a veces la contador puede disminuir por pocos "
2836
  "segundos por falta de buffering o por errores de reproducción."
2837
 
2838
+ #: ../modules/mycred-module-hooks.php:2509
2839
  msgid "Affiliate Program"
2840
  msgstr "Programa de Afiliados"
2841
 
2842
+ #: ../modules/mycred-module-hooks.php:2517 ../includes/mycred-admin.php:419 ..
2843
  #: addons/coupons/myCRED-addon-coupons.php:232
2844
  msgid "Total"
2845
  msgstr "Total"
2846
 
2847
+ #: ../modules/mycred-module-hooks.php:2518
2848
  msgid "Per Day"
2849
  msgstr "Por Día"
2850
 
2851
+ #: ../modules/mycred-module-hooks.php:2677
2852
  msgid "Link"
2853
  msgstr "Enlace"
2854
 
2855
+ #: ../modules/mycred-module-hooks.php:3004 ../plugins/mycred-hook-affiliatewp.php:
2856
+ #: 235
2857
  msgid "Referring Visitors"
2858
  msgstr "Referiendo Visitantes"
2859
 
2860
+ #: ../modules/mycred-module-hooks.php:3023 ../modules/mycred-module-hooks.php:3043
2861
  msgid "Referring Signups"
2862
  msgstr "Inscripciones a través de Referencias"
2863
 
2864
+ #: ../modules/mycred-module-hooks.php:3027
2865
  msgid "Visitors who have Cookies disabled will not award %_plural%."
2866
  msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
2867
 
2868
+ #: ../modules/mycred-module-hooks.php:3045
2869
  msgid "Registrations are disabled."
2870
  msgstr "Se han deshabilitado inscripciones."
2871
 
2872
+ #: ../modules/mycred-module-hooks.php:3053
2873
  msgid "Referral Links"
2874
  msgstr "Enlaces Referentes"
2875
 
2876
+ #: ../modules/mycred-module-hooks.php:3057
2877
  msgid "Assign numeric referral IDs to each user."
2878
  msgstr "Asignar ID numerica referente a cada usuario."
2879
 
2880
+ #: ../modules/mycred-module-hooks.php:3058 ../modules/mycred-module-hooks.php:3064
2881
  msgid "Example"
2882
  msgstr "Ejemplo"
2883
 
2884
+ #: ../modules/mycred-module-hooks.php:3063
2885
  msgid "Assign usernames as IDs for each user."
2886
  msgstr "Asignar los nombres de usuario como ID para cada usuario."
2887
 
2888
+ #: ../modules/mycred-module-hooks.php:3067
2889
  msgid "IP Limit"
2890
  msgstr "Límite de IP"
2891
 
2892
+ #: ../modules/mycred-module-hooks.php:3071
2893
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
2894
  msgstr ""
2895
  "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
2896
  "número ilimitado"
2897
 
2898
+ #: ../modules/mycred-module-hooks.php:3075 ../modules/mycred-module-hooks.php:3110
2899
  msgid "BuddyPress Profile"
2900
  msgstr "Perfil de BuddyPress"
2901
 
2902
+ #: ../modules/mycred-module-hooks.php:3078
2903
  msgid "Insert Link in users Profile"
2904
  msgstr "Insertar enlace en el perfil del usuario"
2905
 
2906
+ #: ../modules/mycred-module-hooks.php:3079
2907
  msgid ""
2908
  "Option to inser the referral link in users profiles. Links will only be "
2909
  "visible to users viewing their own profiles or administrators."
2912
  " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
2913
  "ven a sus propios perfiles."
2914
 
2915
+ #: ../modules/mycred-module-hooks.php:3083 ../includes/mycred-widgets.php:196 ..
2916
  #: includes/mycred-widgets.php:385 ../includes/mycred-widgets.php:594 ..
2917
  #: addons/gateway/carts/mycred-woocommerce.php:92 ..
2918
  #: addons/transfer/includes/mycred-transfer-widgets.php:120 ..
2919
+ #: addons/ranks/myCRED-addon-ranks.php:1330 ../addons/buy-creds/gateways/skrill.
2920
  #: php:339
2921
  msgid "Title"
2922
  msgstr "Titulo"
2923
 
2924
+ #: ../modules/mycred-module-hooks.php:3085
2925
  msgid "Leave empty to hide."
2926
  msgstr "Deje el campo vacío para ocultarlo."
2927
 
2928
+ #: ../modules/mycred-module-hooks.php:3088
2929
  msgid "Description"
2930
  msgstr "Descripción"
2931
 
2932
+ #: ../modules/mycred-module-hooks.php:3089
2933
  msgid "Optional description to insert under the link."
2934
  msgstr "Insertar la descripción opcional debajo del enlace."
2935
 
2936
+ #: ../modules/mycred-module-hooks.php:3103
2937
  msgid "Profile Positioning"
2938
  msgstr "Posicionamiento del Perfil"
2939
 
2940
+ #: ../modules/mycred-module-hooks.php:3105
2941
  msgid ""
2942
  "You can move around the referral link on your users profile by changing the "
2943
  "position. Increase to move up, decrease to move down."
2945
  "Puedes moverte por el enlace de referencia en su perfil los usuarios "
2946
  "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
2947
 
2948
+ #: ../modules/mycred-module-hooks.php:3106
2949
  msgid "You can not move the referral link above the users \"Base\" profile details!"
2950
  msgstr ""
2951
  "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
2952
  "en el perfil del usuario!"
2953
 
2954
+ #: ../modules/mycred-module-hooks.php:3112
2955
  msgid "Requires BuddyPress Extended Profiles to be enabled."
2956
  msgstr "Requiere que BuddyPress Extended Profiles sea activado."
2957
 
2958
+ #: ../modules/mycred-module-hooks.php:3120 ../addons/buy-creds/myCRED-addon-buy-
2959
+ #: creds.php:740
2960
  msgid "Available Shortcodes"
2961
  msgstr "Códigos cortos Disponibles"
2962
 
2974
  msgstr "Saldo Actual"
2975
 
2976
  #: ../modules/mycred-module-buddypress.php:236 ../modules/mycred-module-
2977
+ #: buddypress.php:249 ../includes/mycred-log.php:990
2978
  msgid "All"
2979
  msgstr "Todo"
2980
 
2981
+ #: ../modules/mycred-module-buddypress.php:237 ../includes/mycred-log.php:991 ..
2982
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
2983
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:318
2984
  msgid "Today"
2985
  msgstr "Hoy"
2986
 
2987
+ #: ../modules/mycred-module-buddypress.php:238 ../includes/mycred-log.php:992
2988
  msgid "Yesterday"
2989
  msgstr "Ayer"
2990
 
2991
+ #: ../modules/mycred-module-buddypress.php:239 ../includes/mycred-log.php:993 ..
2992
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
2993
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:319
2994
  msgid "This Week"
2995
  msgstr "Esta Semana"
2996
 
2997
+ #: ../modules/mycred-module-buddypress.php:240 ../includes/mycred-log.php:994 ..
2998
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:192 ..
2999
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:320
3000
  msgid "This Month"
3001
  msgstr "Este Mes"
3002
 
3004
  msgid "Go"
3005
  msgstr "Ir a"
3006
 
3007
+ #: ../modules/mycred-module-buddypress.php:423 ../addons/gateway/carts/mycred-
3008
+ #: woocommerce.php:152 ../addons/badges/myCRED-addon-badges.php:1010 ..
3009
+ #: addons/badges/myCRED-addon-badges.php:1046
3010
  msgid "Do not show"
3011
  msgstr "No Mostrar"
3012
 
3013
+ #: ../modules/mycred-module-buddypress.php:425 ../addons/ranks/myCRED-addon-ranks.
3014
+ #: php:1419 ../addons/badges/myCRED-addon-badges.php:1012
3015
  msgid "Include under the \"Profile\" tab"
3016
  msgstr "Incluir debajo de la pestaña del \"Perfil\""
3017
 
3018
+ #: ../modules/mycred-module-buddypress.php:430 ../addons/ranks/myCRED-addon-ranks.
3019
+ #: php:1417 ../addons/ranks/myCRED-addon-ranks.php:1462
3020
  msgid "Do not show."
3021
  msgstr "No mostrar."
3022
 
3023
+ #: ../modules/mycred-module-buddypress.php:431
3024
  msgid "Show in Profile"
3025
  msgstr "Mostrar en Perfil"
3026
 
3027
+ #: ../modules/mycred-module-buddypress.php:448
3028
  #, php-format
3029
  msgid "%singular% Balance"
3030
  msgstr "%singular% Saldo"
3031
 
3032
+ #: ../modules/mycred-module-buddypress.php:465
3033
  #, php-format
3034
  msgid "Members and visitors can other members %_singular% balance."
3035
  msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
3036
 
3037
+ #: ../modules/mycred-module-buddypress.php:470 ../addons/ranks/myCRED-addon-ranks.
3038
+ #: php:1439 ../addons/ranks/myCRED-addon-ranks.php:1484 ..
3039
+ #: addons/notifications/myCRED-addon-notifications.php:202
3040
  msgid "Template"
3041
  msgstr "Plantilla"
3042
 
3043
+ #: ../modules/mycred-module-buddypress.php:475
3044
  #, php-format
3045
  msgid "%plural% History"
3046
  msgstr "Historial de %plural%"
3047
 
3048
+ #: ../modules/mycred-module-buddypress.php:492
3049
  msgid "Members can view each others %_plural% history."
3050
  msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
3051
 
3052
+ #: ../modules/mycred-module-buddypress.php:497
3053
  msgid "Menu Title"
3054
  msgstr "Título de Menú"
3055
 
3056
+ #: ../modules/mycred-module-buddypress.php:499
3057
  msgid "Title shown to me"
3058
  msgstr "Título mostrado a mi"
3059
 
3060
+ #: ../modules/mycred-module-buddypress.php:504
3061
  #, php-format
3062
  msgid "Title shown to others. Use %s to show the first name."
3063
  msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
3064
 
3065
+ #: ../modules/mycred-module-buddypress.php:509
3066
  msgid "Menu Position"
3067
  msgstr "Posición del Menú"
3068
 
3069
+ #: ../modules/mycred-module-buddypress.php:511
3070
  msgid "Current menu positions:"
3071
  msgstr "Posiciones Acuales del Menú"
3072
 
3073
+ #: ../modules/mycred-module-buddypress.php:516
3074
  msgid "History URL slug"
3075
  msgstr "La ficha historial de la URL"
3076
 
3077
+ #: ../modules/mycred-module-buddypress.php:518
3078
  msgid "Do not use empty spaces!"
3079
  msgstr "¡No utilice espacios vacíos!"
3080
 
3081
+ #: ../modules/mycred-module-buddypress.php:523
3082
  msgid "Number of history entries to show"
3083
  msgstr "Numero de entradas de historial a mostrar"
3084
 
3085
  #. does this really need to be translated?
3086
+ #: ../plugins/mycred-hook-invite-anyone.php:15
3087
  msgid "Invite Anyone Plugin"
3088
  msgstr "Invite Anyone Plugin"
3089
 
3090
+ #: ../plugins/mycred-hook-invite-anyone.php:16
3091
  #, php-format
3092
  msgid ""
3093
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
3096
  "Concede %_plural% por mandar invitaciones y/o %_plural% si se acepta la "
3097
  "invitación."
3098
 
3099
+ #: ../plugins/mycred-hook-invite-anyone.php:204
3100
  #, php-format
3101
  msgid "%plural% for Sending An Invite"
3102
  msgstr "%plural% por Enviar una Invitación"
3103
 
3104
+ #: ../plugins/mycred-hook-invite-anyone.php:224
3105
  #, php-format
3106
  msgid "%plural% for Accepting An Invite"
3107
  msgstr "%plural% por Aceptar una Invitación"
3108
 
3109
+ #: ../plugins/mycred-hook-invite-anyone.php:228
3110
  #, php-format
3111
  msgid "%plural% for each invited user that accepts an invitation."
3112
  msgstr "%plural% por cada usuario invitado que acepta la invitación."
3113
 
3114
+ #: ../plugins/mycred-hook-wp-polls.php:15
3115
  msgid "WP-Polls"
3116
  msgstr "WP-Polls"
3117
 
3118
+ #: ../plugins/mycred-hook-wp-polls.php:16
3119
  #, php-format
3120
  msgid "Awards %_plural% for users voting in polls."
3121
  msgstr ""
3122
  "Concede %_plural% a usuarios que han votado en encuestas.Concede %_plural% a "
3123
  "usuarios que han votado en encuestas."
3124
 
3125
+ #: ../plugins/mycred-hook-gravityforms.php:15
3126
  msgid "Gravityform Submissions"
3127
  msgstr "Entregas de Gravityform"
3128
 
3129
+ #: ../plugins/mycred-hook-gravityforms.php:16
3130
  #, php-format
3131
  msgid "Awards %_plural% for successful form submissions."
3132
  msgstr "Concede %_plural% por el exitoso envío del formularios."
3133
 
3134
+ #: ../plugins/mycred-hook-gravityforms.php:129 ../plugins/mycred-hook-contact-
3135
+ #: form7.php:130
3136
  msgid "No forms found."
3137
  msgstr "No se ha encontrado ningun formulario."
3138
 
3139
+ #: ../plugins/mycred-hook-gd-star-rating.php:15
3140
  msgid "GD Star Rating"
3141
  msgstr "GD Star Rating"
3142
 
3143
+ #: ../plugins/mycred-hook-gd-star-rating.php:16
3144
  #, php-format
3145
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
3146
  msgstr ""
3147
  "Concede %_plural% a usuarios que evaluan artículos a través de GD Star "
3148
  "Rating plugin."
3149
 
3150
+ #: ../plugins/mycred-hook-gd-star-rating.php:115
3151
  msgid "Rating"
3152
  msgstr "Clasificación"
3153
 
3154
  #.
3155
  #.
3156
+ #: ../plugins/mycred-hook-gd-star-rating.php:128
3157
  msgid "Up / Down Vote"
3158
  msgstr "Voto Arriba / Abajo"
3159
 
3160
+ #: ../plugins/mycred-hook-simplepress.php:16
3161
  #, php-format
3162
  msgid "Awards %_plural% for Simple:Press actions."
3163
  msgstr "Concede %_plural% por acciones en Simple:Press."
3164
 
3165
+ #: ../plugins/mycred-hook-simplepress.php:298 ../plugins/mycred-hook-bbPress.php:
3166
+ #: 462
3167
  #, php-format
3168
  msgid "%plural% for New Topic"
3169
  msgstr "%plural% por Nuevo Tema"
3170
 
3171
+ #: ../plugins/mycred-hook-simplepress.php:315 ../plugins/mycred-hook-bbPress.php:
3172
+ #: 484
3173
  #, php-format
3174
  msgid "%plural% for Topic Deletion"
3175
  msgstr "%plural% por Borrar Tema"
3176
 
3177
+ #: ../plugins/mycred-hook-simplepress.php:328
3178
  #, php-format
3179
  msgid "%plural% for New Topic Post"
3180
  msgstr "%plural% por Nueva Publicacion "
3181
 
3182
+ #: ../plugins/mycred-hook-simplepress.php:346
3183
  #, php-format
3184
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
3185
  msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
3186
 
3187
+ #: ../plugins/mycred-hook-simplepress.php:350
3188
  #, php-format
3189
  msgid "%plural% for Topic Post Deletion"
3190
  msgstr "%plural% por Borrar la Tema del Post"
3191
 
3192
+ #: ../plugins/mycred-hook-buddypress-gallery.php:15
3193
  msgid "BuddyPress: Gallery Actions"
3194
  msgstr "BuddyPress: Acciones sobre Galerías"
3195
 
3196
+ #: ../plugins/mycred-hook-buddypress-gallery.php:16
3197
  #, php-format
3198
  msgid ""
3199
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
3202
  "Conceder %_plural% por crear una nueva galería ya sea usando BP Album+ o BP "
3203
  "Gallery."
3204
 
3205
+ #: ../plugins/mycred-hook-buddypress-gallery.php:105
3206
  #, php-format
3207
  msgid "%plural% for New Gallery"
3208
  msgstr "%plural% por Nueva Galería"
3209
 
3210
+ #: ../plugins/mycred-hook-buddypress.php:16
3211
  msgid "BuddyPress: Members"
3212
  msgstr "BuddyPress: Miembros"
3213
 
3214
+ #: ../plugins/mycred-hook-buddypress.php:17
3215
  #, php-format
3216
  msgid "Awards %_plural% for profile related actions."
3217
  msgstr "Concede %_plural% por acciones relacionados al perfil."
3218
 
3219
+ #: ../plugins/mycred-hook-buddypress.php:24
3220
  msgid "BuddyPress: Groups"
3221
  msgstr "BuddyPress: Grupos"
3222
 
3223
+ #: ../plugins/mycred-hook-buddypress.php:25
3224
  #, php-format
3225
  msgid ""
3226
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
3229
  "Concede %_plural% para acciones relacionados a grupos. Usa negativo para "
3230
  "sustraer %_plural% o cero para desabilitar un gancho especifico."
3231
 
3232
+ #: ../plugins/mycred-hook-buddypress.php:259 ../addons/gateway/event-
3233
  #: booking/mycred-eventsmanager.php:636 ../addons/gateway/event-booking/mycred-
3234
  #: eventsmanager-pro.php:617 ../addons/gateway/carts/mycred-wpecommerce.php:386 ..
3235
  #: addons/gateway/carts/mycred-marketpress.php:438
3236
  msgid "Insufficient Funds"
3237
  msgstr "Fondos Insuficientes"
3238
 
3239
+ #: ../plugins/mycred-hook-buddypress.php:509
3240
  #, php-format
3241
  msgid "%plural% for Profile Updates"
3242
  msgstr "%plural% por Actualizar Perfil"
3243
 
3244
+ #: ../plugins/mycred-hook-buddypress.php:543
3245
  #, php-format
3246
  msgid "%plural% for New Avatar"
3247
  msgstr "%plural% por Nuevo Avatar"
3248
 
3249
+ #: ../plugins/mycred-hook-buddypress.php:560
3250
  #, php-format
3251
  msgid "%plural% for New Friendships"
3252
  msgstr "%plural% por Nueva Amistad"
3253
 
3254
+ #: ../plugins/mycred-hook-buddypress.php:580
3255
  #, php-format
3256
  msgid "%plural% for Leaving Friendship"
3257
  msgstr "%plural% por Dejar Amistad"
3258
 
3259
+ #: ../plugins/mycred-hook-buddypress.php:593
3260
  #, php-format
3261
  msgid "%plural% for New Comment"
3262
  msgstr "%plural% por Nuevo Comentario"
3263
 
3264
+ #: ../plugins/mycred-hook-buddypress.php:610
3265
  #, php-format
3266
  msgid "%plural% for Deleting Comment"
3267
  msgstr "%plural% por Borrar Comentario"
3268
 
3269
+ #: ../plugins/mycred-hook-buddypress.php:623
3270
  #, php-format
3271
  msgid "%plural% for New Messages"
3272
  msgstr "%plural% por Nuevo Mensaje"
3273
 
3274
+ #: ../plugins/mycred-hook-buddypress.php:640
3275
  #, php-format
3276
  msgid "%plural% for Sending Gift"
3277
  msgstr "%plural% por Enviar Regalo"
3278
 
3279
+ #: ../plugins/mycred-hook-buddypress.php:1217
3280
  #, php-format
3281
  msgid "%plural% for Creating Groups"
3282
  msgstr "%plural% por Creat Cupones"
3283
 
3284
+ #: ../plugins/mycred-hook-buddypress.php:1221
3285
  msgid ""
3286
  "If you use a negative value and the user does not have enough %_plural% the "
3287
  "\"Create Group\" button will be disabled."
3289
  "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
3290
  "\"Crear Grupo\" sera desactivada."
3291
 
3292
+ #: ../plugins/mycred-hook-buddypress.php:1225
3293
  msgid "Number of members before awarding %_plural%"
3294
  msgstr "Numero de miembros antes de conceder %_plural%"
3295
 
3296
+ #: ../plugins/mycred-hook-buddypress.php:1227
3297
  msgid "Use zero to award %_plural% when group is created."
3298
  msgstr "Ponga cero para %_plural% cuando se crea un grupo."
3299
 
3300
+ #: ../plugins/mycred-hook-buddypress.php:1237
3301
  #, php-format
3302
  msgid "%plural% for Deleting Groups"
3303
  msgstr "%plural% por Borrar Grupos"
3304
 
3305
+ #: ../plugins/mycred-hook-buddypress.php:1250
3306
  #, php-format
3307
  msgid "%plural% for New Forum Topic"
3308
  msgstr "%plural% por Nuevo Tema de Foro"
3309
 
3310
+ #: ../plugins/mycred-hook-buddypress.php:1267
3311
  #, php-format
3312
  msgid "%plural% for Editing Forum Topic"
3313
  msgstr "%plural% por Editar Tema de Foro"
3314
 
3315
+ #: ../plugins/mycred-hook-buddypress.php:1284
3316
  #, php-format
3317
  msgid "%plural% for New Forum Post"
3318
  msgstr "%plural% por Nueva Publicación en Foro"
3319
 
3320
+ #: ../plugins/mycred-hook-buddypress.php:1301
3321
  #, php-format
3322
  msgid "%plural% for Editing Forum Post"
3323
  msgstr "%plural% por Editar Publicación en Foro"
3324
 
3325
+ #: ../plugins/mycred-hook-buddypress.php:1318
3326
  #, php-format
3327
  msgid "%plural% for Joining Groups"
3328
  msgstr "%plural% por Unirse a Grupos"
3329
 
3330
+ #: ../plugins/mycred-hook-buddypress.php:1322
3331
  msgid ""
3332
  "If you use a negative value and the user does not have enough %_plural% the "
3333
  "\"Join Group\" button will be disabled."
3335
  "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
3336
  "\"Unirse a Grupo\" sera desactivada."
3337
 
3338
+ #: ../plugins/mycred-hook-buddypress.php:1336
3339
  #, php-format
3340
  msgid "%plural% for Leaving Groups"
3341
  msgstr "%plural% por Dejar Grupos"
3342
 
3343
+ #: ../plugins/mycred-hook-buddypress.php:1349
3344
  #, php-format
3345
  msgid "%plural% for New Group Avatar"
3346
  msgstr "%plural% por Nuevo Avatar de Grupo"
3347
 
3348
+ #: ../plugins/mycred-hook-buddypress.php:1366
3349
  #, php-format
3350
  msgid "%plural% for New Group Comment"
3351
  msgstr "%plural% por Nuevo Comentario Grupo"
3352
 
3353
+ #: ../plugins/mycred-hook-buddypress-links.php:15
3354
  msgid "BuddyPress: Links"
3355
  msgstr "BuddyPress: Enlaces"
3356
 
3357
+ #: ../plugins/mycred-hook-buddypress-links.php:16
3358
  #, php-format
3359
  msgid "Awards %_plural% for link related actions."
3360
  msgstr "Concede %_plural% por acciones relacionados a enlaces."
3361
 
3362
+ #: ../plugins/mycred-hook-buddypress-links.php:260
3363
  #, php-format
3364
  msgid "%plural% for New Links"
3365
  msgstr "%plural% por Nuevas Enlaces"
3366
 
3367
+ #: ../plugins/mycred-hook-buddypress-links.php:277
3368
  #, php-format
3369
  msgid "%plural% for Vote on Link"
3370
  msgstr "%plural% por Votar sobre Enlaces"
3371
 
3372
+ #: ../plugins/mycred-hook-buddypress-links.php:293
3373
  #, php-format
3374
  msgid "%plural% per received Vote"
3375
  msgstr "%plural% por Votos Recibidos"
3376
 
3377
+ #: ../plugins/mycred-hook-buddypress-links.php:296
3378
  msgid "Vote Up"
3379
  msgstr "Votar a Favor"
3380
 
3381
+ #: ../plugins/mycred-hook-buddypress-links.php:315
3382
  msgid "Vote Down"
3383
  msgstr "Votar en Contra "
3384
 
3385
+ #: ../plugins/mycred-hook-buddypress-links.php:330
3386
  #, php-format
3387
  msgid "%plural% for Updating Links"
3388
  msgstr "%plural% por Actualizar Enlaces"
3389
 
3390
+ #: ../plugins/mycred-hook-buddypress-links.php:347
3391
  #, php-format
3392
  msgid "%plural% for Deleting Links"
3393
  msgstr "%plural% por Borrar Enlaces"
3394
 
3395
+ #: ../plugins/mycred-hook-affiliatewp.php:260 ../includes/mycred-shortcodes.php:
3396
+ #: 1000 ../includes/mycred-shortcodes.php:1142 ../includes/mycred-admin.php:755 ..
3397
+ #: includes/mycred-admin.php:807 ../addons/banking/services/mycred-bank-service-
3398
+ #: payouts.php:266 ../addons/buy-creds/myCRED-addon-buy-creds.php:343 ..
3399
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:1635 ../addons/buy-creds/myCRED-
3400
+ #: addon-buy-creds.php:1715 ../addons/buy-creds/abstracts/mycred-abstract-payment-
3401
  #: gateway.php:593
3402
  msgid "Amount"
3403
  msgstr "Cantidad"
3404
 
3405
+ #: ../plugins/mycred-hook-events-manager-light.php:15
3406
  msgid "Events Manager"
3407
  msgstr "Gestionamiento de Eventos"
3408
 
3409
+ #: ../plugins/mycred-hook-events-manager-light.php:16
3410
  #, php-format
3411
  msgid "Awards %_plural% for users attending events."
3412
  msgstr "Concede %_plural% para usuarios que asistieron actividades o eventos."
3413
 
3414
+ #: ../plugins/mycred-hook-events-manager-light.php:199
3415
  msgid "Attending Event"
3416
  msgstr "Asistir Evento"
3417
 
3418
+ #: ../plugins/mycred-hook-events-manager-light.php:216
3419
  msgid "Cancelling Attendance"
3420
  msgstr "Cancelando Asistencia"
3421
 
3422
+ #: ../plugins/mycred-hook-buddypress-media.php:15
3423
  msgid "rtMedia Galleries"
3424
  msgstr "Galerías rtMedia (rtMedia Galleries)"
3425
 
3426
+ #: ../plugins/mycred-hook-buddypress-media.php:16
3427
  #, php-format
3428
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
3429
  msgstr "Concede / Resta %_plural% a usuarios por crear álbumes o subir nuevos fotos."
3430
 
3431
+ #: ../plugins/mycred-hook-buddypress-media.php:213
3432
  msgid "New Media Upload"
3433
  msgstr "Subir Nuevo Media"
3434
 
3435
+ #: ../plugins/mycred-hook-buddypress-media.php:216 ../includes/mycred-functions.
3436
+ #: php:2633
3437
  msgid "Photo Upload"
3438
  msgstr "Subir Foto"
3439
 
3440
+ #: ../plugins/mycred-hook-buddypress-media.php:230 ../includes/mycred-functions.
3441
+ #: php:2634
3442
  msgid "Video Upload"
3443
  msgstr "Subir Video"
3444
 
3445
+ #: ../plugins/mycred-hook-buddypress-media.php:244 ../includes/mycred-functions.
3446
+ #: php:2635
3447
  msgid "Music Upload"
3448
  msgstr "Subir Música"
3449
 
3450
+ #: ../plugins/mycred-hook-buddypress-media.php:258
3451
  msgid "Delete Media"
3452
  msgstr "Borrar Medios"
3453
 
3454
+ #: ../plugins/mycred-hook-buddypress-media.php:261
3455
  msgid "Delete Photo"
3456
  msgstr "Borrar Foto"
3457
 
3458
+ #: ../plugins/mycred-hook-buddypress-media.php:271
3459
  msgid "Delete Video"
3460
  msgstr "Borrar Video"
3461
 
3462
+ #: ../plugins/mycred-hook-buddypress-media.php:281
3463
  msgid "Delete Music"
3464
  msgstr "Borrar Música"
3465
 
3466
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:15
3467
  msgid "WP Favorite Posts"
3468
  msgstr "WP Favorite Posts"
3469
 
3470
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:16
3471
  #, php-format
3472
  msgid "Awards %_plural% for users adding posts to their favorites."
3473
  msgstr "Concede %_plural% a usuarios por añadir entradas a sus favoritos."
3474
 
3475
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:216
3476
  msgid "Adding Content to Favorites"
3477
  msgstr "Añadiendo Contenido a Favoritos"
3478
 
3479
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:252
3480
  msgid "Removing Content from Favorites"
3481
  msgstr "Quitando Contenido de Favoritos"
3482
 
3483
+ #: ../plugins/mycred-hook-contact-form7.php:15
3484
  msgid "Contact Form 7 Form Submissions"
3485
  msgstr "Presentación Formulario de Contact Form 7"
3486
 
3487
+ #: ../plugins/mycred-hook-contact-form7.php:16
3488
  #, php-format
3489
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
3490
  msgstr ""
3491
  "Concede %_plural% por el exitoso envío del formulario (por usuarios que han "
3492
  "iniciado sesión)"
3493
 
3494
+ #: ../plugins/mycred-hook-jetpack.php:15
3495
  msgid "Jetpack Subscriptions"
3496
  msgstr "Suscripciónes a Jetpack"
3497
 
3498
+ #: ../plugins/mycred-hook-jetpack.php:16
3499
  #, php-format
3500
  msgid ""
3501
  "Awards %_plural% for users signing up for site or comment updates using "
3504
  "Concede %_plural% a usuarios por incribirse a las actualizaciones del sitio "
3505
  "web o a los comentarios atraves de Jetpack."
3506
 
3507
+ #: ../plugins/mycred-hook-jetpack.php:538
3508
  msgid "Site Subscriptions"
3509
  msgstr "Suscripciónes al Sitio Web"
3510
 
3511
+ #: ../plugins/mycred-hook-jetpack.php:551
3512
  msgid "Comment Subscriptions"
3513
  msgstr "Suscripciónes a commentarios"
3514
 
3515
+ #: ../plugins/mycred-hook-bbPress.php:15
3516
  msgid "bbPress"
3517
  msgstr "bbPress"
3518
 
3519
+ #: ../plugins/mycred-hook-bbPress.php:16
3520
  #, php-format
3521
  msgid "Awards %_plural% for bbPress actions."
3522
  msgstr "Concede %_plural% por acciones en bbPress."
3523
 
3524
+ #: ../plugins/mycred-hook-bbPress.php:432
3525
  #, php-format
3526
  msgid "%plural% for New Forum"
3527
  msgstr "%plural% por nuevo foro"
3528
 
3529
+ #: ../plugins/mycred-hook-bbPress.php:449
3530
  #, php-format
3531
  msgid "%plural% for Forum Deletion"
3532
  msgstr "%plural% por Eliminar Foro"
3533
 
3534
+ #: ../plugins/mycred-hook-bbPress.php:480
3535
  #, php-format
3536
  msgid "Forum authors can receive %_plural% for creating new topics."
3537
  msgstr "Autores "
3538
 
3539
+ #: ../plugins/mycred-hook-bbPress.php:497
3540
  #, php-format
3541
  msgid "%plural% for Favorited Topic"
3542
  msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
3543
 
3544
+ #: ../plugins/mycred-hook-bbPress.php:514
3545
  #, php-format
3546
  msgid "%plural% for New Reply"
3547
  msgstr "%plural% por Nueva Respuesta"
3548
 
3549
+ #: ../plugins/mycred-hook-bbPress.php:532
3550
  #, php-format
3551
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
3552
  msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
3553
 
3554
+ #: ../plugins/mycred-hook-bbPress.php:536
3555
  #, php-format
3556
  msgid "Show users %_plural% balance in replies"
3557
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
3558
 
3559
+ #: ../plugins/mycred-hook-badgeOS.php:15
3560
  msgid "BadgeOS"
3561
  msgstr "BadgeOS"
3562
 
3563
+ #: ../plugins/mycred-hook-badgeOS.php:16
3564
  msgid ""
3565
  "Default settings for each BadgeOS Achievement type. These settings may be "
3566
  "overridden for individual achievement type."
3568
  "Configuraciones predefinidos para cada tipo de BadgeOS Logro (Achievement). "
3569
  "Estos ajustes pueden ser anulados para el tipo de logro individual."
3570
 
3571
+ #: ../plugins/mycred-hook-badgeOS.php:121
3572
  #, php-format
3573
  msgid ""
3574
  "Please setup your <a href=\"%s\">default settings</a> before using this "
3577
  "Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> antes "
3578
  "de usar este función."
3579
 
3580
+ #: ../plugins/mycred-hook-badgeOS.php:137 ../plugins/mycred-hook-badgeOS.php:139
3581
  #, php-format
3582
  msgid "%plural% to Award"
3583
  msgstr "%plural% a Conceder"
3584
 
3585
  #. also "Ponga cero para inhabilitar"
3586
+ #: ../plugins/mycred-hook-badgeOS.php:141
3587
  msgid "Use zero to disable"
3588
  msgstr "Ponga cero para desactivar"
3589
 
3590
+ #: ../plugins/mycred-hook-badgeOS.php:154
3591
  msgid "Deduction Log Template"
3592
  msgstr "Plantilla de Registro Descontado"
3593
 
3594
+ #: ../plugins/mycred-hook-badgeOS.php:315
3595
  #, php-format
3596
  msgid "Default %s for %s"
3597
  msgstr "Predeterminar %s por %s"
3598
 
3599
+ #: ../plugins/mycred-hook-badgeOS.php:322
3600
  msgid "Use zero to disable users gaining %_plural%"
3601
  msgstr "Ponga cero para que los usuarios no obtengan %_plural%"
3602
 
3603
+ #: ../plugins/mycred-hook-badgeOS.php:326
3604
  msgid "Default Log template"
3605
  msgstr "Plantilla de Registro Predefinido"
3606
 
3628
  msgstr "Importar CubePoints %s"
3629
 
3630
  #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
3631
+ #: 379
3632
  msgid "Import CubePoints log entries and / or balances."
3633
  msgstr "Importar las entradas de registro de CubePoints y/o saldos."
3634
 
3698
  msgid "No export options available."
3699
  msgstr "No hay opciones para exportar."
3700
 
3701
+ #: ../includes/mycred-log.php:755 ../addons/buy-creds/myCRED-addon-buy-creds.php:
3702
+ #: 1074
3703
  msgid "Date"
3704
  msgstr "Fecha"
3705
 
3706
  #. need more context: entrada or inscripción
3707
+ #: ../includes/mycred-log.php:757
3708
  msgid "Entry"
3709
  msgstr "Entrada"
3710
 
3711
+ #: ../includes/mycred-log.php:956
3712
  msgid "No log entries found"
3713
  msgstr "Ninguna entrada de registro encontrada"
3714
 
3715
+ #: ../includes/mycred-log.php:974 ../includes/mycred-log.php:976
3716
  msgid "Search Log"
3717
  msgstr "Busqueda de Registro"
3718
 
3719
  #. buscar las entradas en el registro
3720
+ #: ../includes/mycred-log.php:975
3721
  msgid "search log entries"
3722
  msgstr "Búsqueda de las entradas de registro"
3723
 
3870
  msgid "Save Network Settings"
3871
  msgstr "Guardar las Configuraciones de la Eed"
3872
 
3873
+ #: ../includes/mycred-about.php:89
3874
  #, php-format
3875
  msgid "Welcome to %s %s"
3876
  msgstr "Bienvenido a %s %s"
3877
 
3878
+ #: ../includes/mycred-shortcodes.php:178
3879
  msgid "Leaderboard is empty."
3880
  msgstr "La Tabla de Clasificación esta vacía"
3881
 
3882
+ #: ../includes/mycred-shortcodes.php:536
 
 
 
 
3883
  msgid "Anchor missing URL!"
3884
  msgstr "¡La Ancla falta el URL!"
3885
 
3886
+ #: ../includes/mycred-shortcodes.php:654
3887
  msgid "Sent"
3888
  msgstr "Enviado"
3889
 
3890
+ #: ../includes/mycred-shortcodes.php:655
3891
  msgid "Error - Try Again"
3892
  msgstr "Error - Inténtelo de nuevo."
3893
 
3894
+ #: ../includes/mycred-shortcodes.php:793
3895
  msgid "A video ID is required for this shortcode"
3896
  msgstr "Este código corto (shortcode) precisa un ID del video."
3897
 
3898
+ #: ../includes/mycred-shortcodes.php:1005 ../addons/gateway/event-booking/mycred-
3899
  #: eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager.
3900
  #: php:578 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:540 ..
3901
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ..
3910
  msgstr "Descripción de %s"
3911
 
3912
  #: ../includes/mycred-overview.php:78 ../addons/stats/widgets/mycred-stats-widget-
3913
+ #: circulation.php:136 ../addons/stats/widgets/mycred-stats-widget-circulation.
3914
+ #: php:265
3915
  msgid "Total amount in circulation"
3916
  msgstr "Suma total en circulación"
3917
 
3930
  msgstr "Transferencias"
3931
 
3932
  #: ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ..
3933
+ #: addons/sell-content/myCRED-addon-sell-content.php:430
3934
  msgid "Sell Content"
3935
  msgstr "Vender Contenido"
3936
 
3937
  #: ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ..
3938
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
3939
+ #: addon-buy-creds.php:1072 ../addons/buy-creds/myCRED-addon-buy-creds.php:1714
3940
  msgid "Gateway"
3941
  msgstr "Pasarela"
3942
 
4016
  msgstr "Cancelar la Instalación"
4017
 
4018
  #: ../includes/mycred-install.php:536 ../addons/buy-creds/myCRED-addon-buy-creds.
4019
+ #: php:1689
4020
  msgid "Cancel"
4021
  msgstr "Cancelar"
4022
 
4048
  msgid "Install & Run"
4049
  msgstr "Instalar e ejecutar"
4050
 
4051
+ #: ../includes/mycred-admin.php:245
4052
  msgid "User is excluded"
4053
  msgstr "El Usuario ha sido excluido"
4054
 
4055
+ #: ../includes/mycred-admin.php:250
4056
  msgid "Log Entry can not be empty"
4057
  msgstr "Entrada de registro no puede estar vacío"
4058
 
4059
+ #: ../includes/mycred-admin.php:254
4060
  msgid "Amount can not be zero"
4061
  msgstr "La Cantidad no Puede ser Cero"
4062
 
4063
+ #: ../includes/mycred-admin.php:275
4064
  msgid "Failed to update this uses balance."
4065
  msgstr "No se pudo actualizar el saldo de este usuario."
4066
 
4067
+ #: ../includes/mycred-admin.php:409
4068
  msgid "Excluded"
4069
  msgstr "Excluido"
4070
 
4071
+ #: ../includes/mycred-admin.php:430
4072
  msgid "Adjust"
4073
  msgstr "Modificar"
4074
 
4075
+ #: ../includes/mycred-admin.php:632 ../includes/mycred-admin.php:803 ..
4076
  #: addons/gateway/event-booking/mycred-eventespresso3.php:277 ..
4077
  #: addons/gateway/event-booking/mycred-eventespresso3.php:301 ..
4078
  #: addons/gateway/event-booking/mycred-eventsmanager.php:412 ..
4080
  msgid "Current Balance"
4081
  msgstr "Saldo Actual"
4082
 
4083
+ #: ../includes/mycred-admin.php:724
4084
  #, php-format
4085
  msgid "%singular% balance"
4086
  msgstr "%singular% saldo"
4087
 
4088
+ #: ../includes/mycred-admin.php:748 ../includes/mycred-admin.php:792 ..
4089
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503
4090
  msgid "required"
4091
  msgstr "necesario"
4092
 
4093
+ #: ../includes/mycred-admin.php:750 ../includes/mycred-admin.php:794 ..
4094
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504
4095
  msgid "optional"
4096
  msgstr "opcional"
4097
 
4098
+ #: ../includes/mycred-admin.php:764 ../includes/mycred-admin.php:808 ..
4099
  #: addons/gateway/event-booking/mycred-eventespresso3.php:470
4100
  msgid "Log Entry"
4101
  msgstr "Entrada de Registro"
4102
 
4103
+ #: ../includes/mycred-admin.php:768 ../includes/mycred-admin.php:809
4104
  msgid "Update Balance"
4105
  msgstr "Actualizar Saldo"
4106
 
4107
+ #: ../includes/mycred-admin.php:801
4108
  msgid "ID"
4109
  msgstr "ID"
4110
 
4111
+ #: ../includes/mycred-admin.php:807
4112
  msgid "A positive or negative value"
4113
  msgstr "Un valor positivo o negativo"
4114
 
4123
  msgstr "Enseñar el saldo de %s del usuario actual"
4124
 
4125
  #: ../includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:391 ..
4126
+ #: includes/importers/mycred-cubepoints.php:401 ../addons/gateway/event-
4127
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
4128
  #: eventsmanager.php:550 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
4129
  #: php:504 ../addons/gateway/carts/mycred-wpecommerce.php:354 ..
4130
  #: addons/gateway/carts/mycred-woocommerce.php:120 ..
4131
  #: addons/gateway/carts/mycred-marketpress.php:389 ../addons/ranks/myCRED-addon-
4132
+ #: ranks.php:1052 ../addons/ranks/myCRED-addon-ranks.php:1209 ../addons/email-
4133
+ #: notices/myCRED-addon-email-notices.php:844 ../addons/email-notices/myCRED-
4134
+ #: addon-email-notices.php:1089 ../addons/coupons/myCRED-addon-coupons.php:179 ..
4135
  #: addons/coupons/myCRED-addon-coupons.php:388 ../addons/sell-content/myCRED-
4136
+ #: addon-sell-content.php:442
4137
  msgid "Point Type"
4138
  msgstr "Tipo de Puntos"
4139
 
4223
  msgid "Row Layout"
4224
  msgstr "Disposición de Filas"
4225
 
4226
+ #: ../includes/mycred-functions.php:86
4227
  msgid "Point"
4228
  msgstr "Punto"
4229
 
4230
+ #: ../includes/mycred-functions.php:87
4231
  msgid "Points"
4232
  msgstr "Puntos"
4233
 
4234
+ #: ../includes/mycred-functions.php:448
4235
  msgid "Deleted"
4236
  msgstr "Borrado"
4237
 
4238
+ #: ../includes/mycred-functions.php:595
4239
  msgid "Deleted Item"
4240
  msgstr "Artículo Borrado"
4241
 
4242
+ #: ../includes/mycred-functions.php:659 ../addons/gateway/carts/mycred-
4243
+ #: wpecommerce.php:341 ../addons/email-notices/myCRED-addon-email-notices.php:210
4244
  msgid "General"
4245
  msgstr "General"
4246
 
4247
+ #: ../includes/mycred-functions.php:666
4248
  msgid "User Related"
4249
  msgstr "Relacionado al Usuario"
4250
 
4251
+ #: ../includes/mycred-functions.php:673
4252
  msgid "Post Related"
4253
  msgstr "Relacionado a la Entrada"
4254
 
4255
+ #: ../includes/mycred-functions.php:680
4256
  msgid "Comment Related"
4257
  msgstr "Relacionado al Comentario"
4258
 
4259
+ #: ../includes/mycred-functions.php:687
4260
  msgid "Widget Related"
4261
  msgstr "Relacionado al Widget"
4262
 
4263
+ #: ../includes/mycred-functions.php:694
4264
  msgid "Amount Related"
4265
  msgstr "Cantidad Relacionada"
4266
 
4267
+ #: ../includes/mycred-functions.php:701
4268
  msgid "Video Related"
4269
  msgstr "Relacionado al Video"
4270
 
4271
+ #: ../includes/mycred-functions.php:712
4272
  msgid "and"
4273
  msgstr "y"
4274
 
4275
+ #: ../includes/mycred-functions.php:714
4276
  msgid "Available Template Tags:"
4277
  msgstr "Etiquetas de Plantilla Disponibles:"
4278
 
4279
+ #: ../includes/mycred-functions.php:1956
4280
  msgid "Entire Log"
4281
  msgstr "Todo el Registro"
4282
 
4283
+ #: ../includes/mycred-functions.php:1961 ../includes/mycred-functions.php:1962
4284
  msgid "Displayed Rows"
4285
  msgstr "Filas Mostradas"
4286
 
4287
+ #: ../includes/mycred-functions.php:1969
4288
  msgid "Search Results"
4289
  msgstr "Resultados de la Búsqueda"
4290
 
4291
+ #: ../includes/mycred-functions.php:1970
4292
  msgid "My Entire Log"
4293
  msgstr "Mi Registro Entero"
4294
 
4295
+ #: ../includes/mycred-functions.php:2736 ../addons/transfer/myCRED-addon-transfer.
4296
  #: php:51
4297
  msgid "Transfer"
4298
  msgstr "Transferir"
4299
 
4300
+ #: ../includes/importers/mycred-cubepoints.php:298
4301
  msgid "No balances were imported."
4302
  msgstr "Ningun saldo fue importado."
4303
 
4304
+ #: ../includes/importers/mycred-cubepoints.php:298
4305
  msgid "No log entries were imported!"
4306
  msgstr "¡No se importo ninguna entrada de registro!"
4307
 
4308
+ #: ../includes/importers/mycred-cubepoints.php:306 ../includes/importers/mycred-
4309
+ #: log-entries.php:168
4310
  #, php-format
4311
  msgid ""
4312
  "Import complete - A total of <strong>%d</strong> entries were successfully "
4315
  "Importación Finalizado - En total, <strong>%d</strong> entradas fueron "
4316
  "importado con éxito. Se saltaron <strong>%d</strong>."
4317
 
4318
+ #: ../includes/importers/mycred-cubepoints.php:320 ../includes/importers/mycred-
4319
+ #: balances.php:211 ../includes/importers/mycred-log-entries.php:180 ..
4320
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:102
4321
  msgid "View Log"
4322
  msgstr "Ver Registro"
4323
 
4324
+ #: ../includes/importers/mycred-cubepoints.php:320 ../includes/importers/mycred-
4325
+ #: balances.php:211 ../includes/importers/mycred-log-entries.php:180
4326
  msgid "Import More"
4327
  msgstr "Importar Más"
4328
 
4329
+ #: ../includes/importers/mycred-cubepoints.php:335
4330
  msgid "No CubePoints log."
4331
  msgstr "No hay registro de CubePoints."
4332
 
4333
+ #: ../includes/importers/mycred-cubepoints.php:348
4334
  msgid "Import CubePoints Log"
4335
  msgstr "Importar registro de CubePoints"
4336
 
4337
+ #: ../includes/importers/mycred-cubepoints.php:369
4338
  msgid "Select what to import"
4339
  msgstr "Elige lo que deseas importar"
4340
 
4341
+ #: ../includes/importers/mycred-cubepoints.php:370
4342
  msgid "Log Entries Only"
4343
  msgstr "Solo Entradas de Registro"
4344
 
4345
+ #: ../includes/importers/mycred-cubepoints.php:371
4346
  msgid "CubePoints Balances Only"
4347
  msgstr "Saldos de CubePoints Unicamente"
4348
 
4349
+ #: ../includes/importers/mycred-cubepoints.php:372
4350
  msgid "Log Entries and Balances"
4351
  msgstr "Solo Entradas y Saldos de Registro"
4352
 
4353
+ #: ../includes/importers/mycred-cubepoints.php:387
4354
  msgid "Import"
4355
  msgstr "Importar"
4356
 
4357
+ #: ../includes/importers/mycred-cubepoints.php:396
4358
  msgid ""
4359
  "Warning! Importing CubePoints balances will replace your users myCRED "
4360
  "balance!"
4362
  "¡Advertencia! ¡La importación de los saldos de CubePoints reemplazará el "
4363
  "saldo de myCRED para tus usuarios!"
4364
 
4365
+ #: ../includes/importers/mycred-cubepoints.php:420
4366
  msgid "Import Log"
4367
  msgstr "Importar Registro"
4368
 
4369
+ #: ../includes/importers/mycred-balances.php:104 ../includes/importers/mycred-
4370
+ #: balances.php:186 ../includes/importers/mycred-balances.php:229 ..
4371
+ #: includes/importers/mycred-balances.php:244 ../includes/importers/mycred-log-
4372
+ #: entries.php:104 ../includes/importers/mycred-log-entries.php:153 ..
4373
+ #: includes/importers/mycred-log-entries.php:199 ../includes/importers/mycred-
4374
+ #: log-entries.php:216
4375
  msgid "Sorry, there has been an error."
4376
  msgstr "Lo sentimos, se ha producido un error."
4377
 
4378
+ #: ../includes/importers/mycred-balances.php:105 ../includes/importers/mycred-log-
4379
+ #: entries.php:105
4380
  msgid "The file does not exist, please try again."
4381
  msgstr "El fichero no existe, por favor inténtelo de nuevo más tarde."
4382
 
4383
+ #: ../includes/importers/mycred-balances.php:187 ../includes/importers/mycred-log-
4384
+ #: entries.php:154
4385
  msgid "The CSV is invalid."
4386
  msgstr "El CSV no es valido."
4387
 
4388
+ #: ../includes/importers/mycred-balances.php:199
4389
  #, php-format
4390
  msgid ""
4391
  "Import complete - A total of <strong>%d</strong> balances were successfully "
4394
  "Importación Finalizado - En total, <strong>%d</strong> saldos fueron "
4395
  "importado con éxito. Se saltaron <strong>%d</strong>."
4396
 
4397
+ #: ../includes/importers/mycred-balances.php:260
4398
  msgid "Import Balances"
4399
  msgstr "Saldos Importar"
4400
 
4401
+ #: ../includes/importers/mycred-balances.php:281
4402
  msgid "Import balances from a CSV file."
4403
  msgstr "Importa saldos de registro desde un fichero CSV."
4404
 
4405
+ #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
4406
+ #: entries.php:263
4407
  msgid ""
4408
  "Before you can upload your import file, you will need to fix the following "
4409
  "error:"
4411
  "Antes que puedas subir tu fichero de importe, tendras que corregir los "
4412
  "errores siguientes:"
4413
 
4414
+ #: ../includes/importers/mycred-balances.php:304 ../includes/importers/mycred-log-
4415
+ #: entries.php:275
4416
  msgid "Choose a file from your computer:"
4417
  msgstr "Elige un fichero en tu ordenador:"
4418
 
4419
+ #: ../includes/importers/mycred-balances.php:310 ../includes/importers/mycred-log-
4420
+ #: entries.php:281
4421
  #, php-format
4422
  msgid "Maximum size: %s"
4423
  msgstr "Tamaño Máximo: %s"
4424
 
4425
+ #: ../includes/importers/mycred-balances.php:315 ../includes/importers/mycred-log-
4426
+ #: entries.php:286
4427
  msgid "OR enter path to file:"
4428
  msgstr "O rellena la ruta al fichero:"
4429
 
4430
+ #: ../includes/importers/mycred-balances.php:322 ../includes/importers/mycred-log-
4431
+ #: entries.php:293
4432
  msgid "Delimiter"
4433
  msgstr "Delimitador"
4434
 
4435
+ #: ../includes/importers/mycred-balances.php:326
4436
  msgid "Method"
4437
  msgstr "Método"
4438
 
4439
+ #: ../includes/importers/mycred-balances.php:328
4440
  msgid "Replace current balances with the amount in this CSV file"
4441
  msgstr "Sustituir los balances actuales con los montos en el archivo CSV"
4442
 
4443
+ #: ../includes/importers/mycred-balances.php:329
4444
  msgid "Adjust current balances according to the amount in this CSV file"
4445
  msgstr "Ajustar los balances actuales de acuerdo al monto en el archivo CSV"
4446
 
4447
+ #: ../includes/importers/mycred-balances.php:335 ../includes/importers/mycred-log-
4448
+ #: entries.php:299
4449
  msgid "Upload file and import"
4450
  msgstr "Subir fichero e importar"
4451
 
4452
+ #: ../includes/importers/mycred-log-entries.php:232
4453
  msgid "Import Log Entries"
4454
  msgstr "Importar Entradas de Registro"
4455
 
4456
+ #: ../includes/importers/mycred-log-entries.php:253
4457
  msgid "Import log entries from a CSV file."
4458
  msgstr "Importa las entradas de registro desde un fichero CSV."
4459
 
4460
+ #: ../addons/banking/myCRED-addon-banking.php:45 ../addons/banking/myCRED-addon-
4461
+ #: banking.php:46 ../addons/banking/myCRED-addon-banking.php:47
4462
  msgid "Banking"
4463
  msgstr "Banco"
4464
 
4465
+ #: ../addons/banking/myCRED-addon-banking.php:179 ..
4466
  #: addons/banking/services/mycred-bank-service-interest.php:512
4467
  msgid "Compound Interest"
4468
  msgstr "Interés Compuesto"
4469
 
4470
+ #: ../addons/banking/myCRED-addon-banking.php:186
4471
  msgid "Recurring Payouts"
4472
  msgstr "Pagos Recurrentes"
4473
 
4474
+ #: ../addons/banking/myCRED-addon-banking.php:245
4475
  #, php-format
4476
  msgid "%s Banking"
4477
  msgstr "%s Bancario"
4478
 
4479
+ #: ../addons/banking/myCRED-addon-banking.php:253
4480
  msgid "WP-Cron deactivation detected!"
4481
  msgstr "¡Se detecto la desactivación de WP-Cron!"
4482
 
4483
+ #: ../addons/banking/myCRED-addon-banking.php:254
4484
  msgid "Warning! This add-on requires WP - Cron to work."
4485
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
4486
 
4577
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ..
4578
  #: addons/gateway/event-booking/mycred-eventsmanager.php:540 ..
4579
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/sell-
4580
+ #: content/myCRED-addon-sell-content.php:457 ../addons/buy-creds/myCRED-addon-buy-
4581
+ #: creds.php:578
4582
  msgid "Payments"
4583
  msgstr "Pagos"
4584
 
4585
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
4586
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35 ..
4587
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/buy-
4588
+ #: creds/myCRED-addon-buy-creds.php:1688
4589
  msgid "Pay Now"
4590
  msgstr "Pagar Ahora"
4591
 
4618
  msgstr "Desactivar %s"
4619
 
4620
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:367 ../addons/buy-
4621
+ #: creds/myCRED-addon-buy-creds.php:1084
4622
  msgid "Gateway Settings"
4623
  msgstr "Configuraciones de la Pasarela de Pago"
4624
 
4660
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ..
4661
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
4662
  #: addons/transfer/includes/mycred-transfer-widgets.php:132 ../addons/sell-
4663
+ #: content/myCRED-addon-sell-content.php:500 ../addons/sell-content/myCRED-addon-
4664
+ #: sell-content.php:749
4665
  msgid "Button Label"
4666
  msgstr "Eqiqueta Asignada al Botón"
4667
 
4674
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ..
4675
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:139 ..
4676
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ../addons/sell-
4677
+ #: content/myCRED-addon-sell-content.php:491 ../addons/sell-content/myCRED-addon-
4678
+ #: sell-content.php:745
4679
  msgid "Price"
4680
  msgstr "Precio"
4681
 
4716
  "inhabilitar."
4717
 
4718
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
4719
+ #: content/myCRED-addon-sell-content.php:514
4720
  msgid "Templates"
4721
  msgstr "Plantillas"
4722
 
5291
  msgid "User Email (user_email)"
5292
  msgstr "Correo Electrónico del Usuario (user_email)"
5293
 
5294
+ #: ../addons/transfer/myCRED-addon-transfer.php:217
5295
  msgid "Select the point types that users can transfer."
5296
  msgstr "Elige el tipo de punto que el usuario puede transferir."
5297
 
5298
+ #: ../addons/transfer/myCRED-addon-transfer.php:227
5299
  msgid "Log template for sending"
5300
  msgstr "Plantilla de registros para transmitir"
5301
 
5302
+ #: ../addons/transfer/myCRED-addon-transfer.php:234
5303
  msgid "Log template for receiving"
5304
  msgstr "Plantilla de registros para recibir"
5305
 
5306
+ #: ../addons/transfer/myCRED-addon-transfer.php:241
5307
  msgid "Autofill Recipient"
5308
  msgstr "Destinatario del Relleno Automático"
5309
 
5310
+ #: ../addons/transfer/myCRED-addon-transfer.php:255
5311
  msgid "Select what user details recipients should be autofilled by."
5312
  msgstr ""
5313
  "Selecciona cuales detalles del usuario al destinatario deben ser rellenados "
5314
  "automáticamente."
5315
 
5316
+ #: ../addons/transfer/myCRED-addon-transfer.php:258
5317
  msgid "Reload"
5318
  msgstr "Recargar"
5319
 
5320
+ #: ../addons/transfer/myCRED-addon-transfer.php:261
5321
  msgid "Reload page on successful transfers."
5322
  msgstr "Actualizar la pagina despues de transferencias finalizadas."
5323
 
5324
+ #: ../addons/transfer/myCRED-addon-transfer.php:289
5325
  msgid "Form Templates"
5326
  msgstr "Plantillas de Formulario"
5327
 
5328
+ #: ../addons/transfer/myCRED-addon-transfer.php:292
5329
  msgid "Not logged in Template"
5330
  msgstr "Plantilla de no estar ingresado"
5331
 
5332
+ #: ../addons/transfer/myCRED-addon-transfer.php:294
5333
  msgid ""
5334
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
5335
  "elements allowed!"
5337
  "Mostrar este texto cuango los usuarios no han iniciado la sesión. ¡No se "
5338
  "permite ningun elemento de HTML!"
5339
 
5340
+ #: ../addons/transfer/myCRED-addon-transfer.php:298
5341
  msgid "Balance Template"
5342
  msgstr "Plantilla de Saldo"
5343
 
5344
+ #: ../addons/transfer/myCRED-addon-transfer.php:300
5345
  msgid ""
5346
  "Template to use when displaying the users balance (if included). No HTML "
5347
  "elements allowed!"
5349
  "Utilizar esta plantilla cuando mostrando el saldo del usuario (si esta "
5350
  "incluido). ¡No se permite elementos de HTML!"
5351
 
5352
+ #: ../addons/transfer/myCRED-addon-transfer.php:304
5353
  msgid "Limit Template"
5354
  msgstr "Limitar Plantilla"
5355
 
5356
+ #: ../addons/transfer/myCRED-addon-transfer.php:306
5357
  msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
5358
  msgstr ""
5359
  "Utilizar esta plantilla cuando mostrando límites (si se utiliza). ¡No se "
5360
  "permite elementos de HTML!"
5361
 
5362
+ #: ../addons/transfer/myCRED-addon-transfer.php:310
5363
  msgid "Button Template"
5364
  msgstr "Plantilla del Botón"
5365
 
5366
+ #: ../addons/transfer/myCRED-addon-transfer.php:312
5367
  msgid "Send Transfer button template. No HTML elements allowed!"
5368
  msgstr "Plantilla del botón Enviar Transferencia ¡No se permite elementos de HTML!"
5369
 
5370
+ #: ../addons/transfer/myCRED-addon-transfer.php:315
5371
  msgid "Error Messages"
5372
  msgstr "Mensajes de Error"
5373
 
5374
  #. English needs to be corrected: "Balance too low to send."
5375
+ #: ../addons/transfer/myCRED-addon-transfer.php:318
5376
  msgid "Balance to low to send."
5377
  msgstr "Saldo insuficiente - no se puede enviar."
5378
 
5379
+ #: ../addons/transfer/myCRED-addon-transfer.php:320
5380
  msgid ""
5381
  "Text to show when a users balance is to low for transfers. Leave empty to "
5382
  "hide. No HTML elements allowed!"
5385
  "efectuar transferencias. Deje el campo vacío para ocultarlo. ¡No se permite "
5386
  "ningun elemento de HTML!"
5387
 
5388
+ #: ../addons/transfer/myCRED-addon-transfer.php:324
5389
  msgid "Transfer Limit Reached."
5390
  msgstr "Límite de Transferencia Alcanzado."
5391
 
5392
+ #: ../addons/transfer/myCRED-addon-transfer.php:326
5393
  msgid ""
5394
  "Text to show when a user has reached their transfer limit (if used). Leave "
5395
  "empty to hide. No HTML elements allowed!"
5419
  msgid "Show users limit"
5420
  msgstr "Mostrar los límites de usuarios"
5421
 
5422
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:144
5423
  msgid "username"
5424
  msgstr "nombre de usuario"
5425
 
5426
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:147
5427
  msgid "email"
5428
  msgstr "correo electrónico"
5429
 
5430
  #. is this recipients plural or recipient's with an apostrophe missing?
5431
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:149
5432
  #, php-format
5433
  msgid "recipients %s"
5434
  msgstr "destinatarios %s"
5435
 
5436
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:243
5437
  msgid "To:"
5438
  msgstr "A:"
5439
 
5440
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:249
5441
  msgid "Amount:"
5442
  msgstr "Cantidad:"
5443
 
5444
  #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
5445
+ #: php:213 ../addons/ranks/myCRED-addon-ranks.php:446 ../addons/ranks/myCRED-
5446
+ #: addon-ranks.php:455 ../addons/ranks/myCRED-addon-ranks.php:461 ..
5447
+ #: addons/ranks/myCRED-addon-ranks.php:837 ../addons/ranks/myCRED-addon-ranks.
5448
+ #: php:1322 ../addons/ranks/myCRED-addon-ranks.php:1612
5449
  msgid "Ranks"
5450
  msgstr "Rangos"
5451
 
5452
+ #: ../addons/ranks/myCRED-addon-ranks.php:427
5453
  msgid "Warning! All ranks will be deleted! This can not be undone!"
5454
  msgstr "¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer esto!"
5455
 
5456
+ #: ../addons/ranks/myCRED-addon-ranks.php:428
5457
  msgid "Are you sure you want to re-assign user ranks?"
5458
  msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
5459
 
5460
+ #: ../addons/ranks/myCRED-addon-ranks.php:450 ../addons/ranks/myCRED-addon-ranks.
5461
+ #: php:837
5462
  msgid "Rank"
5463
  msgstr "Rango"
5464
 
5465
+ #: ../addons/ranks/myCRED-addon-ranks.php:451 ../addons/email-notices/myCRED-
5466
+ #: addon-email-notices.php:175 ../addons/badges/myCRED-addon-badges.php:406 ..
5467
  #: addons/buy-creds/myCRED-addon-buy-creds.php:279 ../addons/buy-creds/myCRED-
5468
  #: addon-buy-creds.php:280
5469
  msgid "Add New"
5470
  msgstr "Añade Nuevo"
5471
 
5472
+ #: ../addons/ranks/myCRED-addon-ranks.php:452
5473
  msgid "Add New Rank"
5474
  msgstr "Añadir Nuevo Rango"
5475
 
5476
+ #: ../addons/ranks/myCRED-addon-ranks.php:453
5477
  msgid "Edit Rank"
5478
  msgstr "Editar Rango"
5479
 
5480
+ #: ../addons/ranks/myCRED-addon-ranks.php:454
5481
  msgid "New Rank"
5482
  msgstr "Nuevo Rango"
5483
 
5484
+ #: ../addons/ranks/myCRED-addon-ranks.php:456
5485
  msgid "View Rank"
5486
  msgstr "Ver Rango"
5487
 
5488
+ #: ../addons/ranks/myCRED-addon-ranks.php:457
5489
  msgid "Search Ranks"
5490
  msgstr "Búsqueda de Rangos"
5491
 
5492
+ #: ../addons/ranks/myCRED-addon-ranks.php:458
5493
  msgid "No ranks found"
5494
  msgstr "Ningun rango encontrado"
5495
 
5496
+ #: ../addons/ranks/myCRED-addon-ranks.php:459
5497
  msgid "No ranks found in Trash"
5498
  msgstr "Ningun rango encontrao el la papelera"
5499
 
5500
+ #: ../addons/ranks/myCRED-addon-ranks.php:544
5501
  #, php-format
5502
  msgid "Completed - Total of %d users effected"
5503
  msgstr "Completado - Un total %d usuarios afectados"
5504
 
5505
+ #: ../addons/ranks/myCRED-addon-ranks.php:990
5506
  msgid "Rank Saved"
5507
  msgstr "Rango Guardado"
5508
 
5509
+ #: ../addons/ranks/myCRED-addon-ranks.php:1046 ../addons/ranks/myCRED-addon-ranks.
5510
+ #: php:1129
5511
  msgid "Rank Title"
5512
  msgstr "Titulo de Rango"
5513
 
5514
+ #: ../addons/ranks/myCRED-addon-ranks.php:1047
5515
  msgid "Logo"
5516
  msgstr "Logotipo"
5517
 
5518
+ #: ../addons/ranks/myCRED-addon-ranks.php:1048
5519
  msgid "Requirement"
5520
  msgstr "Requisito"
5521
 
5522
+ #: ../addons/ranks/myCRED-addon-ranks.php:1074
5523
  msgid "No Logo Set"
5524
  msgstr "No hay Logotipo Configurado"
5525
 
5526
+ #: ../addons/ranks/myCRED-addon-ranks.php:1089 ../addons/ranks/myCRED-addon-ranks.
5527
+ #: php:1094
5528
  msgid "Any Value"
5529
  msgstr "Cualquier Valor"
5530
 
5531
+ #: ../addons/ranks/myCRED-addon-ranks.php:1091 ../addons/buy-creds/myCRED-addon-
5532
+ #: buy-creds.php:642
5533
  #, php-format
5534
  msgid "Minimum %plural%"
5535
  msgstr "Minimo %_plural%"
5536
 
5537
+ #: ../addons/ranks/myCRED-addon-ranks.php:1096
5538
  #, php-format
5539
  msgid "Maximum %plural%"
5540
  msgstr "Maximo %plural%"
5541
 
5542
+ #: ../addons/ranks/myCRED-addon-ranks.php:1144
5543
  msgid "Rank Settings"
5544
  msgstr "Configuración de Rango"
5545
 
5546
+ #: ../addons/ranks/myCRED-addon-ranks.php:1198
5547
  #, php-format
5548
  msgid "Minimum %plural% to reach this rank"
5549
  msgstr "Minimo %plural% para llegar a este rango"
5550
 
5551
+ #: ../addons/ranks/myCRED-addon-ranks.php:1202
5552
  #, php-format
5553
  msgid "Maximum %plural% to be included in this rank"
5554
  msgstr "Maximo %plural% para ser incluido en este rango"
5555
 
5556
+ #: ../addons/ranks/myCRED-addon-ranks.php:1225
5557
  msgid "All Published Ranks"
5558
  msgstr "Todos los Rangos Publicados"
5559
 
5560
+ #: ../addons/ranks/myCRED-addon-ranks.php:1235 ../addons/ranks/myCRED-addon-ranks.
5561
+ #: php:1237
5562
  msgid "Not Set"
5563
  msgstr "No Configurado"
5564
 
5565
+ #: ../addons/ranks/myCRED-addon-ranks.php:1243
5566
  msgid "No Ranks found"
5567
  msgstr "Ningun rango encontrado"
5568
 
5569
+ #: ../addons/ranks/myCRED-addon-ranks.php:1327
5570
  msgid "Rank Features"
5571
  msgstr "Caracteristicas de los Rangos"
5572
 
5573
+ #: ../addons/ranks/myCRED-addon-ranks.php:1331
5574
  #, php-format
5575
  msgid "%plural% requirement"
5576
  msgstr "%plural% requisito"
5577
 
5578
+ #: ../addons/ranks/myCRED-addon-ranks.php:1332
5579
  msgid "Featured Image (Logo)"
5580
  msgstr "Imagen Principal (Logotipo)"
5581
 
5582
+ #: ../addons/ranks/myCRED-addon-ranks.php:1334
5583
  msgid "Content"
5584
  msgstr "Contenido"
5585
 
5586
+ #: ../addons/ranks/myCRED-addon-ranks.php:1336
5587
  msgid "Excerpt"
5588
  msgstr "Extracto"
5589
 
5590
+ #: ../addons/ranks/myCRED-addon-ranks.php:1338
5591
  msgid "Comments"
5592
  msgstr "Comentario"
5593
 
5594
+ #: ../addons/ranks/myCRED-addon-ranks.php:1340
5595
  msgid "Page Attributes"
5596
  msgstr "Atributos de Página"
5597
 
5598
+ #: ../addons/ranks/myCRED-addon-ranks.php:1342
5599
  msgid "Custom Fields"
5600
  msgstr "Campo Personalizado"
5601
 
5602
+ #: ../addons/ranks/myCRED-addon-ranks.php:1346
5603
  msgid "Public"
5604
  msgstr "Público"
5605
 
5606
  #. This is not clear, especially the second sentence (fragment)!
5607
+ #: ../addons/ranks/myCRED-addon-ranks.php:1350
5608
  msgid ""
5609
  "If you want to create a template archive for each rank, you must select to "
5610
  "have ranks public. Defaults to disabled."
5612
  "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
5613
  "los rangos sean público. Los valores predeterminados desactivado."
5614
 
5615
+ #: ../addons/ranks/myCRED-addon-ranks.php:1353
5616
  msgid "Archive URL"
5617
  msgstr "URL del Archivo"
5618
 
5619
+ #: ../addons/ranks/myCRED-addon-ranks.php:1357
5620
  msgid "Ignored if Ranks are not public"
5621
  msgstr "Sera Ingnorado si los Rangos no son Pulicos"
5622
 
5623
  #. not sure if this is order, as in ordering pizza or order as in rank, organization
5624
+ #: ../addons/ranks/myCRED-addon-ranks.php:1360
5625
  msgid "Display Order"
5626
  msgstr "Orden de Visualización"
5627
 
5628
+ #: ../addons/ranks/myCRED-addon-ranks.php:1368
5629
  msgid "Ascending - Lowest rank to highest"
5630
  msgstr "Ascendente - Rango más bajo a lo más alto"
5631
 
5632
+ #: ../addons/ranks/myCRED-addon-ranks.php:1369
5633
  msgid "Descending - Highest rank to lowest"
5634
  msgstr "Descendiente - Rango más alto al más bajo"
5635
 
5636
+ #: ../addons/ranks/myCRED-addon-ranks.php:1380
5637
  msgid ""
5638
  "Select in what order ranks should be displayed in your admin area and/or "
5639
  "front if ranks are \"Public\""
5641
  "Elige en que orden se debe mostrar los rangos en tu area de administrador "
5642
  "y/o en el frente si los rangos son \"Público\""
5643
 
5644
+ #: ../addons/ranks/myCRED-addon-ranks.php:1386
5645
  msgid "Rank Basis"
5646
  msgstr "Base de Rango"
5647
 
5648
+ #: ../addons/ranks/myCRED-addon-ranks.php:1389
5649
  msgid "Users are ranked according to their current balance."
5650
  msgstr "Los usuarios se clasifican según su saldo actual."
5651
 
5652
+ #: ../addons/ranks/myCRED-addon-ranks.php:1392
5653
  msgid ""
5654
  "Users are ranked according to the total amount of %_plural% they have "
5655
  "accumulated."
5657
  "Los usuarios se clasifican según la cantidad total de %_plural% que han "
5658
  "acumulado."
5659
 
5660
+ #: ../addons/ranks/myCRED-addon-ranks.php:1396 ../addons/ranks/myCRED-addon-ranks.
5661
+ #: php:1401
5662
  msgid "Calculate Totals"
5663
  msgstr "Calcular Totales"
5664
 
5665
+ #: ../addons/ranks/myCRED-addon-ranks.php:1399
5666
  msgid ""
5667
  "Once a users total has been calculated, they will be assigned to their "
5668
  "appropriate roles. For this reason, it is highly recommended that you first "
5672
  "corespondientes seran asignados. ¡Por esta razón, se recomienda altamente "
5673
  "que primero configures los rangos!"
5674
 
5675
+ #: ../addons/ranks/myCRED-addon-ranks.php:1400
5676
  msgid ""
5677
  "Depending on your log size and number of users this process may take a while."
5678
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
5683
  "\"Actualizar Configuraciones\" o refrescar la pagina hasta que se haya "
5684
  "completado!"
5685
 
5686
+ #: ../addons/ranks/myCRED-addon-ranks.php:1418
5687
  msgid "Include in Profile Header."
5688
  msgstr "Incluir en Encabezado del Perfil"
5689
 
5690
+ #: ../addons/ranks/myCRED-addon-ranks.php:1420
5691
  msgid "Include under the \"Profile\" tab and Profile Header."
5692
  msgstr "Incluir en la pestanã \"Perfil\" y Encabezado de Perfil"
5693
 
5694
+ #: ../addons/ranks/myCRED-addon-ranks.php:1424
5695
  msgid "Rank in BuddyPress"
5696
  msgstr "Rango en BuddyPress"
5697
 
5698
+ #: ../addons/ranks/myCRED-addon-ranks.php:1548
5699
  msgid "Script Communication Error"
5700
  msgstr "Error del Script de Comunicación"
5701
 
5702
+ #: ../addons/ranks/myCRED-addon-ranks.php:1619
5703
  msgid "No. of ranks"
5704
  msgstr "Numero de Rangos"
5705
 
5706
+ #: ../addons/ranks/myCRED-addon-ranks.php:1624
5707
  msgid "Remove All Ranks"
5708
  msgstr "Quitar todos los Rangos"
5709
 
5710
+ #: ../addons/ranks/myCRED-addon-ranks.php:1624
5711
  msgid "Assign Ranks to Users"
5712
  msgstr "Asignar Rango a los Usuarios"
5713
 
5714
+ #: ../addons/ranks/includes/mycred-rank-functions.php:260
5715
  msgid "mycred_get_users_rank() : Missing required user id"
5716
  msgstr "mycred_get_users_rank() : Falta el requisito id del usuario"
5717
 
5718
+ #: ../addons/ranks/includes/mycred-rank-functions.php:273
5719
  msgid "no rank"
5720
  msgstr "ningun rango"
5721
 
5722
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:118 ..
5723
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:213
5724
  msgid "No users found with this rank"
5725
  msgstr "Ningun usuario encontrado con este rango"
5726
 
5727
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:125
5728
  msgid "Rank ID is required!"
5729
  msgstr "¡ID de Rango obligatorio!"
5730
 
5731
+ #: ../addons/notifications/myCRED-addon-notifications.php:194
5732
  msgid "Notifications"
5733
  msgstr "Notificaciones"
5734
 
5735
+ #: ../addons/notifications/myCRED-addon-notifications.php:196
5736
  msgid "Styling"
5737
  msgstr "Diseño/Estilo"
5738
 
5739
+ #: ../addons/notifications/myCRED-addon-notifications.php:199
5740
  msgid "Use the included CSS Styling for notifications."
5741
  msgstr "Utilice el Estilo CSS incluido para notificaciones."
5742
 
5743
+ #: ../addons/notifications/myCRED-addon-notifications.php:206
5744
  #, php-format
5745
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
5746
  msgstr ""
5747
  "Utiliza %entry% para mostrar la entrada de registro en el aviso y %amount% "
5748
  "para la cantidad."
5749
 
5750
+ #: ../addons/notifications/myCRED-addon-notifications.php:209
5751
  msgid "Transient Lifespan"
5752
  msgstr "Duración de Transitorio"
5753
 
5754
+ #: ../addons/notifications/myCRED-addon-notifications.php:213
5755
  msgid ""
5756
  "The number of days a users notification is saved before being automatically "
5757
  "deleted."
5759
  "Cuantos dias una notificación del usuario se guarda antes de automáticamente "
5760
  "borrarse."
5761
 
5762
+ #: ../addons/notifications/myCRED-addon-notifications.php:216
5763
  msgid "Duration"
5764
  msgstr "Duracion"
5765
 
5766
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173 ../addons/email-
5767
+ #: notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-
5768
+ #: addon-email-notices.php:185 ../addons/email-notices/myCRED-addon-email-notices.
5769
+ #: php:297 ../addons/coupons/myCRED-addon-coupons.php:105
5770
  msgid "Email Notices"
5771
  msgstr "Avisos por Correo Electrónico"
5772
 
5773
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:174 ../addons/email-
5774
+ #: notices/myCRED-addon-email-notices.php:1344
5775
  msgid "Email Notice"
5776
  msgstr "Aviso por Correo Electrónico"
5777
 
5778
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:176
5779
  msgid "Add New Notice"
5780
  msgstr "Añade Nueva Notificación"
5781
 
5782
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:177
5783
  msgid "Edit Notice"
5784
  msgstr "Editar Aviso"
5785
 
5786
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:178
5787
  msgid "New Notice"
5788
  msgstr "Nuevo Aviso"
5789
 
5790
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:180
5791
  msgid "View Notice"
5792
  msgstr "Ver Aviso"
5793
 
5794
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:181
5795
  msgid "Search Email Notices"
5796
  msgstr "Búsqueda de Avisos por Correo Electrónico"
5797
 
5798
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:182
5799
  msgid "No email notices found"
5800
  msgstr "Ningun aviso por correo electrónico encontrado"
5801
 
5802
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:183
5803
  msgid "No email notices found in Trash"
5804
  msgstr "Ningun aviso por correo electrónico encontrado en la papelera"
5805
 
5806
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
5807
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:211
5808
  msgid "users balance changes"
5809
  msgstr "el saldo de usuario cambia"
5810
 
5811
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:212
5812
  msgid "user gains %_plural%"
5813
  msgstr "usuario gana %_plural%"
5814
 
5815
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:213
5816
  msgid "user lose %_plural%"
5817
  msgstr "usuario pierde %_plural%"
5818
 
5819
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:214
5820
  msgid "users balance reaches zero"
5821
  msgstr "saldo de usuario llega a cero"
5822
 
5823
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
5824
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:215
5825
  msgid "users balance goes minus"
5826
  msgstr "el saldo de usuario cae a negativo"
5827
 
5828
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:229
5829
  msgid "Sell Content Add-on"
5830
  msgstr "Extensión para Vender Contenido"
5831
 
5832
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:230
5833
  msgid "user buys content"
5834
  msgstr "usuario compra contenido"
5835
 
5836
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:231
5837
  msgid "authors content gets sold"
5838
  msgstr "el contenido del autor sera vendido"
5839
 
5840
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:238
5841
  msgid "buyCREDs Add-on"
5842
  msgstr "Extensión de compraCREDs"
5843
 
5844
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:239
5845
  msgid "user buys %_plural%"
5846
  msgstr "usuario compra %_plural%"
5847
 
5848
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:246
5849
  msgid "Transfer Add-on"
5850
  msgstr "Extensión de Transferencias"
5851
 
5852
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:247
5853
  msgid "user sends %_plural%"
5854
  msgstr "usuario manda %_plural%"
5855
 
5856
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:248
5857
  msgid "user receives %_plural%"
5858
  msgstr "usuario recibe %_plural%"
5859
 
5860
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:255
5861
  msgid "Ranks Add-on"
5862
  msgstr "Extensión de Rangos"
5863
 
5864
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:256
5865
  msgid "user is demoted"
5866
  msgstr "se ha degrado al usuario"
5867
 
5868
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:257
5869
  msgid "user is promoted"
5870
  msgstr "se ha promovido al usuario"
5871
 
5872
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299
5873
  msgid ""
5874
  "Settings that apply to all email notices and can not be overridden for "
5875
  "individual emails."
5877
  "Ajustes que se aplica a todos los correos electrónicos y que no seran "
5878
  "anulados para correos electronicos especificos."
5879
 
5880
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:300
5881
  msgid "Email Format"
5882
  msgstr "Formato de Correo Electrónico"
5883
 
5884
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:304
5885
  msgid "Plain text emails only."
5886
  msgstr "Correo electrónico usando texto sin formato."
5887
 
5888
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:308
5889
  msgid "HTML or Plain text emails."
5890
  msgstr "Correo electrónico usando HTML o texto sin formato."
5891
 
5892
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:311
5893
  msgid "Filters"
5894
  msgstr "Filtros"
5895
 
5896
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:315
5897
  msgid ""
5898
  "Allow WordPress and Third Party Plugins to filter the email subject before "
5899
  "an email is sent."
5901
  "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
5902
  "correo electrónico antes de enviarlo."
5903
 
5904
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:319
5905
  msgid ""
5906
  "Allow WordPress and Third Party Plugins to filter the email content before "
5907
  "an email is sent."
5909
  "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
5910
  "correo electrónico antes de enviarlo."
5911
 
5912
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:360
5913
  msgid ""
5914
  "Default email settings. These settings can be individually overridden when "
5915
  "editing emails."
5917
  "Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
5918
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
5919
 
5920
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361 ../addons/email-
5921
+ #: notices/myCRED-addon-email-notices.php:936
5922
  msgid "Email Settings"
5923
  msgstr "Configuracion de Correo Electrónico"
5924
 
5925
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:364 ../addons/email-
5926
+ #: notices/myCRED-addon-email-notices.php:1114
5927
  msgid "Senders Name:"
5928
  msgstr "Nombre del Remitente"
5929
 
5930
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:368 ../addons/email-
5931
+ #: notices/myCRED-addon-email-notices.php:1116
5932
  msgid "Senders Email:"
5933
  msgstr "Correo Electrónico del Remitente:"
5934
 
5935
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:372
5936
  msgid "Reply-To:"
5937
  msgstr "Responder-A:"
5938
 
5939
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:376
5940
  msgid "Default Email Content"
5941
  msgstr "Contenido de Correo Electrónico Predefinido"
5942
 
5943
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:380
5944
  msgid "Default email content."
5945
  msgstr "Contenido de correo electrónico predefinido."
5946
 
5947
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:383
5948
  msgid "Default Email Styling"
5949
  msgstr "Estilo de Correo Electrónico Predefinido"
5950
 
5951
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:387
5952
  msgid "Ignored if HTML is not allowed in emails."
5953
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
5954
 
5955
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:839 ../addons/email-
5956
+ #: notices/myCRED-addon-email-notices.php:991
5957
  msgid "Email Subject"
5958
  msgstr "Asunto del Correo Electrónico"
5959
 
5960
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:840 ..
5961
+ #: addons/badges/myCRED-addon-badges.php:1229
5962
  msgid "Status"
5963
  msgstr "Estatus"
5964
 
5965
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866
5966
  msgid "Not Active"
5967
  msgstr "No esta Activo"
5968
 
5969
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:869
5970
  #, php-format
5971
  msgid "Scheduled:<br /><strong>%1$s</strong>"
5972
  msgstr "Programada:<br /><strong>%1$s</strong>"
5973
 
5974
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:874
5975
  msgid "Active"
5976
  msgstr "Activo"
5977
 
5978
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:876
5979
  #, php-format
5980
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
5981
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
5982
 
5983
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:889
5984
  msgid "Email is sent when"
5985
  msgstr "el Correo Electrónico se envia cuando"
5986
 
5987
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:891
5988
  msgid "Missing instance for this notice!"
5989
  msgstr "¡Falta una instancia para este aviso!"
5990
 
5991
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:900 ../addons/email-
5992
+ #: notices/myCRED-addon-email-notices.php:902 ../addons/email-notices/myCRED-
5993
+ #: addon-email-notices.php:904
5994
  msgid "Sent To"
5995
  msgstr "Enviado A:"
5996
 
5997
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:902 ../addons/email-
5998
+ #: notices/myCRED-addon-email-notices.php:1077
5999
  msgid "Administrator"
6000
  msgstr "Administrador"
6001
 
6002
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
6003
  msgid "Both Administrator and User"
6004
  msgstr "Tanto Administrador como Usuario"
6005
 
6006
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:945
6007
  msgid "Available Template Tags"
6008
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
6009
 
6010
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:956
6011
  msgid "Email Header"
6012
  msgstr "Encabezado del Correo Electrónico"
6013
 
6014
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1033
6015
  msgid "Send this email notice when..."
6016
  msgstr "Envia este aviso por correo electrónico cuando..."
6017
 
6018
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
6019
  msgid "Recipient:"
6020
  msgstr "Destinatario:"
6021
 
6022
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
6023
  msgid "Both"
6024
  msgstr "Ambos"
6025
 
6026
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1118
6027
  msgid "Reply-To Email:"
6028
  msgstr "Responder-A Correo Electrónico:"
6029
 
6030
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1125
6031
  msgid "Save"
6032
  msgstr "Guardar"
6033
 
6034
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1139
6035
  msgid "CSS Styling"
6036
  msgstr "Estilo CSS"
6037
 
6038
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1157
6039
  msgid "Site Related"
6040
  msgstr "Relacionado al Sitio"
6041
 
6042
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
6043
  msgid "Your websites title"
6044
  msgstr "Titulo de tu pagina web"
6045
 
6046
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1159
6047
  msgid "Your websites address"
6048
  msgstr "Dirección de tu pagina web"
6049
 
6050
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1160
6051
  msgid "Your websites tagline (description)"
6052
  msgstr "La descripción de tu sitio web (lema o eslogan)"
6053
 
6054
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1161
6055
  msgid "Your websites admin email"
6056
  msgstr "El correo electrónico de admin para tu pagina web"
6057
 
6058
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1162
6059
  msgid "Total number of blog members"
6060
  msgstr "Número total de miembros del blog"
6061
 
6062
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1253
6063
  msgid "Email Notice Activated"
6064
  msgstr "Notificación atraves de Correo Electrónico Activado"
6065
 
6066
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1254
6067
  msgid "Email Notice Saved"
6068
  msgstr "Aviso por Correo Electrónico Guardado"
6069
 
6070
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1276
6071
  msgid ""
6072
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
6073
  "are not yet ready to use this email notice!"
6075
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
6076
  "si aun no estás listo para utilizar este aviso por email!"
6077
 
6078
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1278
6079
  #, php-format
6080
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
6081
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
6082
 
6083
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1280
6084
  msgid "This email notice is active."
6085
  msgstr "Esta notificación de correo electrónico esta activada."
6086
 
6321
  msgstr "Aplica el Cupón"
6322
 
6323
  #: ../addons/sell-content/myCRED-addon-sell-content.php:44 ../addons/buy-
6324
+ #: creds/myCRED-addon-buy-creds.php:1541
6325
  msgid "Buy Now"
6326
  msgstr "Compra Ahora"
6327
 
6328
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:76
6329
  msgid "Hours"
6330
  msgstr "Horas"
6331
 
6332
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:347
6333
  msgid "You can not buy this content."
6334
  msgstr "No puedes comprar este contenido."
6335
 
6336
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:398
6337
  msgid "Error. Try Again"
6338
  msgstr "Error. Inténtelo de nuevo"
6339
 
6340
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:423
6341
  msgid "No Payout. Just charge."
6342
  msgstr "No Desembolsar. Solo cobrar."
6343
 
6344
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:424
6345
  msgid "Pay Content Author."
6346
  msgstr "Pagar al Autor del Contenido"
6347
 
6348
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:432
6349
  msgid "Post Types"
6350
  msgstr "Post Types"
6351
 
6352
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:436
6353
  msgid "Comma separated list of post types that can be sold."
6354
  msgstr "Lista separada por comas de post types que se puede vender."
6355
 
6356
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:475
6357
  msgid "Percentage to pay Author"
6358
  msgstr "Porcentaje que pagar al Autor"
6359
 
6360
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:477
6361
  msgid ""
6362
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
6363
  "authors are not paid."
6366
  "si no se les paga a los autores."
6367
 
6368
  #. also, "por defecto" and "predeterminados"
6369
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:488
6370
  msgid "Defaults"
6371
  msgstr "Predefinidos"
6372
 
6373
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:496
6374
  msgid "Allow authors to change price."
6375
  msgstr "Permitir que los Autores cambien el precio."
6376
 
6377
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:505
6378
  msgid "Allow authors to change button label."
6379
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
6380
 
6381
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:509
6382
  msgid "Purchases expire after"
6383
  msgstr "Compras caducan despues de"
6384
 
6385
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:511
6386
  msgid "Use zero for permanent sales."
6387
  msgstr "Usa cero para ventas permanentes."
6388
 
6389
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:527
6390
  #, php-format
6391
  msgid ""
6392
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
6395
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
6396
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
6397
 
6398
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:544 ../addons/sell-
6399
+ #: content/myCRED-addon-sell-content.php:559
6400
  #, php-format
6401
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
6402
  msgstr ""
6403
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
6404
  "realizar compras!"
6405
 
6406
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:563
6407
  msgid "Log template for Purchases"
6408
  msgstr "Plantilla de registros para Compras"
6409
 
6410
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:570
6411
  msgid "Log template for Sales"
6412
  msgstr "Plantilla de registros para Ventas"
6413
 
6414
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:627
6415
  #, php-format
6416
  msgid "%s Sell This"
6417
  msgstr "%s Vende Esto"
6418
 
6419
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:694
6420
  #, php-format
6421
  msgid "%s Sell Content needs to be setup before you can use this feature."
6422
  msgstr ""
6423
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
6424
  "esta característica técnica."
6425
 
6426
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:698
6427
  msgid "Setup add-on"
6428
  msgstr "Configurar Extensión"
6429
 
6430
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:698
6431
  msgid "Lets do it"
6432
  msgstr "Vamos a hacerlo."
6433
 
6434
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:753
6435
  msgid "Purchase expires after"
6436
  msgstr "Compra caduca despues de"
6437
 
6438
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1105
6439
  msgid "Thank you for your purchase!"
6440
  msgstr "¡Gracias por su compra!"
6441
 
6442
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1201 ../addons/sell-
6443
+ #: content/myCRED-addon-sell-content.php:1293
6444
  msgid "The following content is set for sale:"
6445
  msgstr "El siguiente contenido esta listo para la venta:"
6446
 
6447
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1314 ../addons/buy-
6448
+ #: creds/myCRED-addon-buy-creds.php:1271
6449
  msgid "No purchases found"
6450
  msgstr "No se encontro ninguna compra"
6451
 
6452
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1363
6453
  msgid "Purchased"
6454
  msgstr "Comprado"
6455
 
6458
  msgid "Payment Gateways"
6459
  msgstr "Pasarela de Pago"
6460
 
6461
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
6462
+ #: addon-buy-creds.php:1077 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713
6463
  msgid "Transaction ID"
6464
  msgstr "Identificación de la Transacción"
6465
 
6466
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
6467
+ #: addon-buy-creds.php:1716 ../addons/buy-creds/abstracts/mycred-abstract-payment-
6468
  #: gateway.php:594
6469
  msgid "Cost"
6470
  msgstr "Costo"
6471
 
6472
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
6473
  msgid "buyCRED Purchase Log"
6474
  msgstr "compraCRED Registro de Compras"
6475
 
6476
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
6477
+ #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:921
6478
  msgid "Purchase Log"
6479
  msgstr "Registro de Compras"
6480
 
6481
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
6482
  msgid "Please login to purchase %_plural%"
6483
  msgstr "Identifícate antes de comprar %_plural%"
6484
 
6485
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
6486
  #, php-format
6487
  msgid "Gift purchase from %display_name%."
6488
  msgstr "Regalo comprado de parte de %display_name%."
6489
 
6490
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
6491
  #, php-format
6492
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
6493
  msgstr ""
6494
  "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
6495
  "a 1."
6496
 
6497
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
6498
  msgid "Login Template"
6499
  msgstr "Plantilla de Ingreso"
6500
 
6501
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
6502
  msgid "Content to show when a user is not logged in."
6503
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
6504
 
6505
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
6506
  msgid "Thank You Page"
6507
  msgstr "Página de Agradecimiento"
6508
 
6509
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
6510
+ #: addon-buy-creds.php:705
6511
  msgid "Custom URL"
6512
  msgstr "URL Personalizada"
6513
 
6514
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
6515
+ #: addon-buy-creds.php:710
6516
  msgid "Page"
6517
  msgstr "Página"
6518
 
6519
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
6520
  msgid "Cancellation Page"
6521
  msgstr "Página de Cancelación"
6522
 
6523
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
6524
  #, php-format
6525
  msgid "Show seperate log for %_plural% purchases."
6526
  msgstr "Mostrar registro distinto para compras de %_plural%."
6527
 
6528
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
6529
  msgid "Gifting"
6530
  msgstr "Regalar"
6531
 
6532
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
6533
  #, php-format
6534
  msgid "Allow users to buy %_plural% for other users."
6535
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
6536
 
6537
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
6538
  #, php-format
6539
  msgid "Allow users to buy %_plural% for content authors."
6540
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
6541
 
6542
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:921
6543
  #, php-format
6544
  msgid "%s Payment Gateways"
6545
  msgstr "%s Pasarelas de Pago"
6546
 
6547
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:921 ../addons/buy-creds/myCRED-
6548
+ #: addon-buy-creds.php:1084
6549
  msgid "buyCRED Settings"
6550
  msgstr "Configuraciones de compraCRED"
6551
 
6552
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:946
6553
  msgid "Test Mode"
6554
  msgstr "Modo de Prueba"
6555
 
6556
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:948
6557
  msgid "Enabled"
6558
  msgstr "Habilitado"
6559
 
6560
  #. also, "Inhabilitar"
6561
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:951
6562
  msgid "Disabled"
6563
  msgstr "Deshactivado"
6564
 
6565
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:961
6566
  msgid "Sandbox Mode"
6567
  msgstr "Modo Entorno Aislado"
6568
 
6569
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:964
6570
  msgid "Enable for test purchases."
6571
  msgstr "Habilitar para compras de prueba."
6572
 
6573
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1076
6574
  msgid "Payed"
6575
  msgstr "Pagado"
6576
 
6577
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1084
6578
  msgid "<strong>buy</strong>CRED Purchase Log"
6579
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
6580
 
6581
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1349 ../addons/buy-creds/myCRED-
6582
+ #: addon-buy-creds.php:1466
6583
  msgid "This Add-on needs to setup before you can use this shortcode."
6584
  msgstr ""
6585
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
6586
  "corto (shortcode)."
6587
 
6588
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1368 ../addons/buy-creds/myCRED-
6589
+ #: addon-buy-creds.php:1485
6590
  msgid "No gateways installed."
6591
  msgstr "Ningun pasarela de pago instalado."
6592
 
6593
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1369 ../addons/buy-creds/myCRED-
6594
+ #: addon-buy-creds.php:1486
6595
  msgid "Gateway does not exist."
6596
  msgstr "Puerta de enlace no existe."
6597
 
6598
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1417
6599
  msgid "Yourself"
6600
  msgstr "Tu mismo"
6601
 
6602
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1487
6603
  msgid "No active gateways found."
6604
  msgstr "No se encuentra ningun puerta de enlace activo."
6605
 
6606
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1488
6607
  msgid "The selected gateway is not active."
6608
  msgstr "La puerta de enlace seleccionada no esta activo."
6609
 
6610
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1535
6611
  #, php-format
6612
  msgid "Buy with %gateway%"
6613
  msgstr "Compra con %gateway%"
6614
 
6615
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1586
6616
  msgid "No users found"
6617
  msgstr "Ningun Usuario Encontrado"
6618
 
6619
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1596
6620
  msgid "To"
6621
  msgstr "A"
6622
 
6623
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1613
6624
  msgid "Select Amount"
6625
  msgstr "Selecciona la Cantidad"
6626
 
6627
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1637
6628
  msgid "min."
6629
  msgstr "min."
6630
 
6631
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1645
6632
  msgid "Select Gateway"
6633
  msgstr "Selecciona la Pasarela de Pago"
6634
 
lang/mycred-fa_IR.mo CHANGED
Binary file
lang/mycred-fa_IR.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Mon Nov 23 2015 17:46:06 GMT+0100 (CET)\n"
7
  "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
@@ -29,10 +29,7 @@ msgid "http://mycred.me"
29
  msgstr ""
30
 
31
  #. Description of the plugin
32
- msgid ""
33
- "<strong>my</strong>CRED is an adaptive points management system for "
34
- "WordPress powered websites, giving you full control on how points are gained,"
35
- " used, traded, managed, logged or presented."
36
  msgstr ""
37
 
38
  #. Author of the plugin
@@ -43,50 +40,50 @@ msgstr ""
43
  msgid "http://www.merovingi.com"
44
  msgstr ""
45
 
46
- #: ../mycred.php:462
47
  msgid "Balance"
48
  msgstr ""
49
 
50
- #: ../mycred.php:487
51
  msgid "%label% History"
52
  msgstr ""
53
 
54
- #: ../mycred.php:679
55
  msgid ""
56
  "Warning! All entries in your log will be permanently removed! This can not "
57
  "be undone!"
58
  msgstr ""
59
 
60
- #: ../mycred.php:680
61
  msgid ""
62
  "All log entries belonging to deleted users will be permanently deleted! This "
63
  "can not be undone!"
64
  msgstr ""
65
 
66
- #: ../mycred.php:685
67
  msgid ""
68
  "In order to adjust the number of decimal places you want to use we must "
69
  "update your log. It is highly recommended that you backup your current log "
70
  "before continuing!"
71
  msgstr ""
72
 
73
- #: ../mycred.php:701
74
  msgid "Edit Users Balance"
75
  msgstr ""
76
 
77
- #: ../mycred.php:719
78
  msgid "Edit Log Entry"
79
  msgstr ""
80
 
81
- #: ../mycred.php:723
82
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
83
  msgstr ""
84
 
85
- #: ../mycred.php:724
86
  msgid "Log entry updated"
87
  msgstr ""
88
 
89
- #: ../mycred.php:826
90
  msgid ""
91
  "Make sure to backup your database and files before updating, in case "
92
  "anything goes wrong!"
@@ -158,8 +155,8 @@ msgid "Delete log entries when user is deleted."
158
  msgstr ""
159
 
160
  #: ../modules/mycred-module-settings.php:656 ../includes/mycred-widgets.php:600 ..
161
- #: addons/transfer/myCRED-addon-transfer.php:211 ../addons/buy-creds/myCRED-
162
- #: addon-buy-creds.php:652
163
  msgid "Point Types"
164
  msgstr ""
165
 
@@ -191,52 +188,52 @@ msgid ""
191
  "while Email is recommended if you want to export to a different site."
192
  msgstr ""
193
 
194
- #: ../modules/mycred-module-addons.php:160
195
  msgid "Give your users badges based on their interaction with your website."
196
  msgstr ""
197
 
198
- #: ../modules/mycred-module-addons.php:171
199
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
200
  msgstr ""
201
 
202
- #: ../modules/mycred-module-addons.php:193
203
  msgid ""
204
  "The coupons add-on allows you to create coupons that users can use to add "
205
  "points to their accounts."
206
  msgstr ""
207
 
208
- #: ../modules/mycred-module-addons.php:215
209
  msgid ""
210
  "Let your users pay using their <strong>my</strong>CRED points balance. "
211
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
212
  "Bookings: Event Espresso and Events Manager (free & pro)."
213
  msgstr ""
214
 
215
- #: ../modules/mycred-module-addons.php:226
216
  msgid "Create pop-up notifications for when users gain or loose points."
217
  msgstr ""
218
 
219
- #: ../modules/mycred-module-addons.php:238
220
  msgid ""
221
  "Create ranks for users reaching a certain number of %_plural% with the "
222
  "option to add logos for each rank."
223
  msgstr ""
224
 
225
- #: ../modules/mycred-module-addons.php:260
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 "Add-ons Reloaded"
233
  msgstr ""
234
 
235
- #: ../modules/mycred-module-addons.php:358
236
  msgid "Reload Add-ons"
237
  msgstr ""
238
 
239
- #: ../modules/mycred-module-addons.php:421
240
  msgid "Get Pro"
241
  msgstr ""
242
 
@@ -296,191 +293,191 @@ msgstr ""
296
  msgid "My %s History"
297
  msgstr ""
298
 
299
- #: ../modules/mycred-module-hooks.php:114
300
  #, php-format
301
  msgid "%plural% for daily visits"
302
  msgstr ""
303
 
304
- #: ../modules/mycred-module-hooks.php:115
305
  #, php-format
306
  msgid "Award %_plural% for users visiting your website on a daily basis."
307
  msgstr ""
308
 
309
- #: ../modules/mycred-module-hooks.php:121
310
  #, php-format
311
  msgid "%plural% for viewing content"
312
  msgstr ""
313
 
314
- #: ../modules/mycred-module-hooks.php:122
315
  #, php-format
316
  msgid ""
317
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
318
  "authors for members viewing their content."
319
  msgstr ""
320
 
321
- #: ../modules/mycred-module-hooks.php:142
322
  #, php-format
323
  msgid "%plural% for Disqus comments"
324
  msgstr ""
325
 
326
- #: ../modules/mycred-module-hooks.php:163
327
  #, php-format
328
  msgid "%plural% for referrals"
329
  msgstr ""
330
 
331
- #: ../modules/mycred-module-hooks.php:164
332
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
333
  msgstr ""
334
 
335
- #: ../modules/mycred-module-hooks.php:673
336
  #, php-format
337
  msgid "%plural% for viewing Posts"
338
  msgstr ""
339
 
340
- #: ../modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:693 .
341
- #: ./modules/mycred-module-hooks.php:707 ../modules/mycred-module-hooks.php:724 ..
342
- #: modules/mycred-module-hooks.php:784 ../modules/mycred-module-hooks.php:801
343
  msgid "Member"
344
  msgstr ""
345
 
346
- #: ../modules/mycred-module-hooks.php:704
347
  #, php-format
348
  msgid "%plural% for viewing Pages"
349
  msgstr ""
350
 
351
- #: ../modules/mycred-module-hooks.php:781
352
  #, php-format
353
  msgid "%plural% for viewing %s"
354
  msgstr ""
355
 
356
- #: ../modules/mycred-module-hooks.php:1667
357
  #, php-format
358
  msgid ""
359
  "%plural% are only awarded when your website has been synced with the Disqus "
360
  "server!"
361
  msgstr ""
362
 
363
- #: ../modules/mycred-module-hooks.php:2036
364
  #, php-format
365
  msgid "Custom tags: %url%, %title% or %id%."
366
  msgstr ""
367
 
368
- #: ../modules/mycred-module-hooks.php:2051 ../modules/mycred-module-hooks.php:2435
369
  msgid "Available Shortcode"
370
  msgstr ""
371
 
372
- #: ../modules/mycred-module-hooks.php:2506
373
  msgid "Affiliate Program"
374
  msgstr ""
375
 
376
- #: ../modules/mycred-module-hooks.php:2514 ../includes/mycred-admin.php:413 ..
377
  #: addons/coupons/myCRED-addon-coupons.php:232
378
  msgid "Total"
379
  msgstr ""
380
 
381
- #: ../modules/mycred-module-hooks.php:2515
382
  msgid "Per Day"
383
  msgstr ""
384
 
385
- #: ../modules/mycred-module-hooks.php:2674
386
  msgid "Link"
387
  msgstr ""
388
 
389
- #: ../modules/mycred-module-hooks.php:2678
390
  msgid "Visitors Referred"
391
  msgstr ""
392
 
393
- #: ../modules/mycred-module-hooks.php:2682
394
  msgid "Signups Referred"
395
  msgstr ""
396
 
397
- #: ../modules/mycred-module-hooks.php:3001 ../plugins/mycred-hook-affiliatewp.php:
398
- #: 231
399
  msgid "Referring Visitors"
400
  msgstr ""
401
 
402
- #: ../modules/mycred-module-hooks.php:3020 ../modules/mycred-module-hooks.php:3040
403
  msgid "Referring Signups"
404
  msgstr ""
405
 
406
- #: ../modules/mycred-module-hooks.php:3024
407
  msgid "Visitors who have Cookies disabled will not award %_plural%."
408
  msgstr ""
409
 
410
- #: ../modules/mycred-module-hooks.php:3042
411
  msgid "Registrations are disabled."
412
  msgstr ""
413
 
414
- #: ../modules/mycred-module-hooks.php:3050
415
  msgid "Referral Links"
416
  msgstr ""
417
 
418
- #: ../modules/mycred-module-hooks.php:3054
419
  msgid "Assign numeric referral IDs to each user."
420
  msgstr ""
421
 
422
- #: ../modules/mycred-module-hooks.php:3055 ../modules/mycred-module-hooks.php:3061
423
  msgid "Example"
424
  msgstr ""
425
 
426
- #: ../modules/mycred-module-hooks.php:3060
427
  msgid "Assign usernames as IDs for each user."
428
  msgstr ""
429
 
430
- #: ../modules/mycred-module-hooks.php:3064
431
  msgid "IP Limit"
432
  msgstr ""
433
 
434
- #: ../modules/mycred-module-hooks.php:3068
435
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
436
  msgstr ""
437
 
438
- #: ../modules/mycred-module-hooks.php:3072 ../modules/mycred-module-hooks.php:3107
439
  msgid "BuddyPress Profile"
440
  msgstr ""
441
 
442
- #: ../modules/mycred-module-hooks.php:3075
443
  msgid "Insert Link in users Profile"
444
  msgstr ""
445
 
446
- #: ../modules/mycred-module-hooks.php:3076
447
  msgid ""
448
  "Option to inser the referral link in users profiles. Links will only be "
449
  "visible to users viewing their own profiles or administrators."
450
  msgstr ""
451
 
452
- #: ../modules/mycred-module-hooks.php:3082
453
  msgid "Leave empty to hide."
454
  msgstr ""
455
 
456
- #: ../modules/mycred-module-hooks.php:3085
457
  msgid "Description"
458
  msgstr ""
459
 
460
- #: ../modules/mycred-module-hooks.php:3086
461
  msgid "Optional description to insert under the link."
462
  msgstr ""
463
 
464
- #: ../modules/mycred-module-hooks.php:3100
465
  msgid "Profile Positioning"
466
  msgstr ""
467
 
468
- #: ../modules/mycred-module-hooks.php:3102
469
  msgid ""
470
  "You can move around the referral link on your users profile by changing the "
471
  "position. Increase to move up, decrease to move down."
472
  msgstr ""
473
 
474
- #: ../modules/mycred-module-hooks.php:3103
475
  msgid "You can not move the referral link above the users \"Base\" profile details!"
476
  msgstr ""
477
 
478
- #: ../modules/mycred-module-hooks.php:3109
479
  msgid "Requires BuddyPress Extended Profiles to be enabled."
480
  msgstr ""
481
 
482
- #: ../modules/mycred-module-hooks.php:3117 ../addons/buy-creds/myCRED-addon-buy-
483
- #: creds.php:741
484
  msgid "Available Shortcodes"
485
  msgstr ""
486
 
@@ -492,137 +489,137 @@ msgstr ""
492
  msgid "Go"
493
  msgstr ""
494
 
495
- #: ../modules/mycred-module-buddypress.php:418 ../addons/badges/myCRED-addon-
496
- #: badges.php:971
497
  msgid "Include in Profile Header"
498
  msgstr ""
499
 
500
- #: ../modules/mycred-module-buddypress.php:420 ../addons/badges/myCRED-addon-
501
- #: badges.php:973
502
  msgid "Include under the \"Profile\" tab and Profile Header"
503
  msgstr ""
504
 
505
- #: ../modules/mycred-module-buddypress.php:459
506
  #, php-format
507
  msgid "Members and visitors can other members %_singular% balance."
508
  msgstr ""
509
 
510
- #: ../plugins/mycred-hook-wp-postratings.php:18
511
  msgid "Post Ratings"
512
  msgstr ""
513
 
514
- #: ../plugins/mycred-hook-wp-postratings.php:19
515
  #, php-format
516
  msgid ""
517
  "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
518
  "author and the user rating."
519
  msgstr ""
520
 
521
- #: ../plugins/mycred-hook-wp-postratings.php:76
522
  msgid "Based on rating"
523
  msgstr ""
524
 
525
- #: ../plugins/mycred-hook-wp-postratings.php:150 ../includes/mycred-functions.php:
526
- #: 2599
527
  msgid "Adding a Rating"
528
  msgstr ""
529
 
530
- #: ../plugins/mycred-hook-wp-postratings.php:160 ../plugins/mycred-hook-wp-
531
- #: postratings.php:179
532
  msgid "Use the Rating Value instead of the amount set here."
533
  msgstr ""
534
 
535
- #: ../plugins/mycred-hook-wp-postratings.php:169 ../includes/mycred-functions.php:
536
- #: 2600
537
  msgid "Receiving a Rating"
538
  msgstr ""
539
 
540
- #: ../plugins/mycred-hook-gravityforms.php:18
541
  msgid "Gravityform Submissions"
542
  msgstr ""
543
 
544
- #: ../plugins/mycred-hook-gravityforms.php:19
545
  #, php-format
546
  msgid "Awards %_plural% for successful form submissions."
547
  msgstr ""
548
 
549
- #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
550
- #: php:80
551
  #, php-format
552
  msgid "Reward with %plural%"
553
  msgstr ""
554
 
555
- #: ../plugins/mycred-hook-buddypress.php:519
556
  #, php-format
557
  msgid "%plural% for Removing Profile Update"
558
  msgstr ""
559
 
560
- #: ../plugins/mycred-hook-buddypress.php:563
561
  #, php-format
562
  msgid ""
563
  "Users with zero balance can not add friends. Requires that you deduct "
564
  "%_plural% for adding a new friend."
565
  msgstr ""
566
 
567
- #: ../plugins/mycred-hook-buddypress-links.php:277
568
  #, php-format
569
  msgid "%plural% per received Vote"
570
  msgstr ""
571
 
572
- #: ../plugins/mycred-hook-buddypress-links.php:280
573
  msgid "Vote Up"
574
  msgstr ""
575
 
576
- #: ../plugins/mycred-hook-buddypress-links.php:299
577
  msgid "Vote Down"
578
  msgstr ""
579
 
580
- #: ../plugins/mycred-hook-affiliatewp.php:18
581
  msgid "AffiliateWP"
582
  msgstr ""
583
 
584
- #: ../plugins/mycred-hook-affiliatewp.php:19
585
  #, php-format
586
  msgid ""
587
  "Awards %_plural% for affiliate signups, referring visitors and store sale "
588
  "referrals."
589
  msgstr ""
590
 
591
- #: ../plugins/mycred-hook-affiliatewp.php:218
592
  msgid "Affiliate Signup"
593
  msgstr ""
594
 
595
- #: ../plugins/mycred-hook-affiliatewp.php:248
596
  msgid "Referring Sales"
597
  msgstr ""
598
 
599
- #: ../plugins/mycred-hook-affiliatewp.php:251
600
  msgid "Pay a set amount for all referrals."
601
  msgstr ""
602
 
603
- #: ../plugins/mycred-hook-affiliatewp.php:252
604
  #, php-format
605
  msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
606
  msgstr ""
607
 
608
- #: ../plugins/mycred-hook-affiliatewp.php:253
609
  msgid "Apply an exchange rate against the referral amount."
610
  msgstr ""
611
 
612
- #: ../plugins/mycred-hook-affiliatewp.php:261
613
  msgid "Log template - Payout"
614
  msgstr ""
615
 
616
- #: ../plugins/mycred-hook-affiliatewp.php:266
617
  msgid "Log template - Refund"
618
  msgstr ""
619
 
620
- #: ../plugins/mycred-hook-sharethis.php:19
621
  #, php-format
622
  msgid "%plural% for Sharing"
623
  msgstr ""
624
 
625
- #: ../plugins/mycred-hook-sharethis.php:20
626
  #, php-format
627
  msgid ""
628
  "Awards %_plural% for users sharing / liking your website content to popular "
@@ -637,68 +634,73 @@ msgstr ""
637
  msgid "No ShareThis services detected. Please check your installation."
638
  msgstr ""
639
 
640
- #: ../plugins/mycred-hook-buddypress-media.php:18
641
  msgid "rtMedia Galleries"
642
  msgstr ""
643
 
644
- #: ../plugins/mycred-hook-buddypress-media.php:19
645
  #, php-format
646
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
647
  msgstr ""
648
 
649
- #: ../plugins/mycred-hook-buddypress-media.php:202
650
  msgid "New Media Upload"
651
  msgstr ""
652
 
653
- #: ../plugins/mycred-hook-buddypress-media.php:205 ../includes/mycred-functions.
654
- #: php:2557
655
  msgid "Photo Upload"
656
  msgstr ""
657
 
658
- #: ../plugins/mycred-hook-buddypress-media.php:219 ../includes/mycred-functions.
659
- #: php:2558
660
  msgid "Video Upload"
661
  msgstr ""
662
 
663
- #: ../plugins/mycred-hook-buddypress-media.php:233 ../includes/mycred-functions.
664
- #: php:2559
665
  msgid "Music Upload"
666
  msgstr ""
667
 
668
- #: ../plugins/mycred-hook-buddypress-media.php:247
669
  msgid "Delete Media"
670
  msgstr ""
671
 
672
- #: ../plugins/mycred-hook-buddypress-media.php:250
673
  msgid "Delete Photo"
674
  msgstr ""
675
 
676
- #: ../plugins/mycred-hook-buddypress-media.php:260
677
  msgid "Delete Video"
678
  msgstr ""
679
 
680
- #: ../plugins/mycred-hook-buddypress-media.php:270
681
  msgid "Delete Music"
682
  msgstr ""
683
 
684
- #: ../plugins/mycred-hook-wp-favorite-posts.php:225
685
  msgid "Authors Content added to favorites"
686
  msgstr ""
687
 
688
- #: ../plugins/mycred-hook-wp-favorite-posts.php:256
689
  msgid "Removing Content from Favorites (Author)"
690
  msgstr ""
691
 
692
- #: ../plugins/mycred-hook-bbPress.php:512
 
 
 
 
 
693
  #, php-format
694
  msgid "%plural% for Reply Deletion"
695
  msgstr ""
696
 
697
- #: ../plugins/mycred-hook-woocommerce.php:210
698
  msgid "WooCommerce Product Reviews"
699
  msgstr ""
700
 
701
- #: ../plugins/mycred-hook-woocommerce.php:211
702
  #, php-format
703
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
704
  msgstr ""
@@ -727,7 +729,7 @@ msgid "%s CubePoints Import"
727
  msgstr ""
728
 
729
  #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
730
- #: 344
731
  msgid "Import CubePoints log entries and / or balances."
732
  msgstr ""
733
 
@@ -779,53 +781,51 @@ msgstr ""
779
  msgid "16, 24 or 32 characters"
780
  msgstr ""
781
 
782
- #: ../includes/mycred-shortcodes.php:941 ../includes/mycred-functions.php:2732
783
- msgid "Point types not found."
 
 
784
  msgstr ""
785
 
786
- #: ../includes/mycred-shortcodes.php:947 ../includes/mycred-shortcodes.php:955 ..
787
- #: includes/mycred-functions.php:2744 ../includes/mycred-functions.php:2764
788
  #, php-format
789
  msgid "You are excluded from using %s."
790
  msgstr ""
791
 
792
- #: ../includes/mycred-shortcodes.php:951 ../includes/mycred-functions.php:2754
793
  msgid "Your balance is too low to use this feature."
794
  msgstr ""
795
 
796
- #: ../includes/mycred-shortcodes.php:973
797
  #, php-format
798
  msgid "Convert <span>%s</span> to <span>%s</span>"
799
  msgstr ""
800
 
801
- #: ../includes/mycred-shortcodes.php:982
802
  #, php-format
803
  msgid "Your current %s balance"
804
  msgstr ""
805
 
806
- #: ../includes/mycred-shortcodes.php:990
807
  #, php-format
808
  msgid "Minimum %s"
809
  msgstr ""
810
 
811
- #: ../includes/mycred-shortcodes.php:994
812
  #, php-format
813
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
814
  msgstr ""
815
 
816
- #: ../includes/mycred-shortcodes.php:1000
817
  msgid "Exchange"
818
  msgstr ""
819
 
820
- #: ../includes/mycred-shortcodes.php:1065
821
  msgid "No instances found for this point type"
822
  msgstr ""
823
 
824
- #: ../includes/mycred-shortcodes.php:1069
825
- msgid "Invalid point type"
826
- msgstr ""
827
-
828
- #: ../includes/mycred-shortcodes.php:1130
829
  msgid "Instance"
830
  msgstr ""
831
 
@@ -835,7 +835,8 @@ msgid "%s Overview"
835
  msgstr ""
836
 
837
  #: ../includes/mycred-overview.php:78 ../addons/stats/widgets/mycred-stats-widget-
838
- #: circulation.php:136
 
839
  msgid "Total amount in circulation"
840
  msgstr ""
841
 
@@ -882,104 +883,104 @@ msgstr ""
882
  msgid "Use zero for no decimals or maximum 20."
883
  msgstr ""
884
 
885
- #: ../includes/mycred-admin.php:195
886
  msgid "A log entry is required in order to adjust this users balance"
887
  msgstr ""
888
 
889
- #: ../includes/mycred-admin.php:197
890
  msgid "Users balance saved"
891
  msgstr ""
892
 
893
- #: ../includes/mycred-admin.php:205
894
  msgid "Users excluded"
895
  msgstr ""
896
 
897
- #: ../includes/mycred-admin.php:210
898
  msgid ""
899
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
900
  "rate settings and update all premium payment gateways!"
901
  msgstr ""
902
 
903
- #: ../includes/mycred-admin.php:269
904
  msgid "Failed to update this uses balance."
905
  msgstr ""
906
 
907
- #: ../includes/mycred-admin.php:466 ../includes/mycred-admin.php:467
908
  msgid "Edit Balance"
909
  msgstr ""
910
 
911
- #: ../includes/mycred-admin.php:487
912
  msgid "Profile"
913
  msgstr ""
914
 
915
- #: ../includes/mycred-admin.php:494
916
  msgid "Extended Profile"
917
  msgstr ""
918
 
919
- #: ../includes/mycred-admin.php:588
920
  #, php-format
921
  msgid "This user is excluded from using %s"
922
  msgstr ""
923
 
924
- #: ../includes/mycred-admin.php:612
925
  msgid "Edit User"
926
  msgstr ""
927
 
928
- #: ../includes/mycred-admin.php:614
929
  msgctxt "user"
930
  msgid "Add New"
931
  msgstr ""
932
 
933
- #: ../includes/mycred-admin.php:616
934
  msgctxt "user"
935
  msgid "Add Existing"
936
  msgstr ""
937
 
938
- #: ../includes/mycred-admin.php:627
939
  #, php-format
940
  msgid "Total %s Accumulated"
941
  msgstr ""
942
 
943
- #: ../includes/mycred-admin.php:628
944
  #, php-format
945
  msgid "Total %s Spent"
946
  msgstr ""
947
 
948
- #: ../includes/mycred-admin.php:639
949
  msgid "View History"
950
  msgstr ""
951
 
952
- #: ../includes/mycred-admin.php:640
953
  msgid "Exclude User"
954
  msgstr ""
955
 
956
- #: ../includes/mycred-admin.php:644
957
  msgid "Adjust Balance"
958
  msgstr ""
959
 
960
- #: ../includes/mycred-admin.php:653
961
  msgid ""
962
  "Warning! Excluding this user will result in their balance being deleted "
963
  "along with any entries currently in your log! This can not be undone!"
964
  msgstr ""
965
 
966
- #: ../includes/mycred-admin.php:718
967
  #, php-format
968
  msgid "%singular% balance"
969
  msgstr ""
970
 
971
  #: ../includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:391 ..
972
- #: includes/importers/mycred-cubepoints.php:365 ../addons/gateway/event-
973
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
974
  #: eventsmanager.php:550 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
975
  #: php:504 ../addons/gateway/carts/mycred-wpecommerce.php:354 ..
976
  #: addons/gateway/carts/mycred-woocommerce.php:120 ..
977
  #: addons/gateway/carts/mycred-marketpress.php:389 ../addons/ranks/myCRED-addon-
978
- #: ranks.php:1046 ../addons/ranks/myCRED-addon-ranks.php:1201 ../addons/email-
979
- #: notices/myCRED-addon-email-notices.php:814 ../addons/email-notices/myCRED-
980
- #: addon-email-notices.php:1031 ../addons/coupons/myCRED-addon-coupons.php:179 ..
981
  #: addons/coupons/myCRED-addon-coupons.php:388 ../addons/sell-content/myCRED-
982
- #: addon-sell-content.php:411
983
  msgid "Point Type"
984
  msgstr ""
985
 
@@ -1020,523 +1021,531 @@ msgstr ""
1020
  msgid "Row Layout"
1021
  msgstr ""
1022
 
1023
- #: ../includes/mycred-functions.php:679
1024
  msgid "Comment Related"
1025
  msgstr ""
1026
 
1027
- #: ../includes/mycred-functions.php:686
1028
  msgid "Widget Related"
1029
  msgstr ""
1030
 
1031
- #: ../includes/mycred-functions.php:693
1032
  msgid "Amount Related"
1033
  msgstr ""
1034
 
1035
- #: ../includes/mycred-functions.php:700
1036
  msgid "Video Related"
1037
  msgstr ""
1038
 
1039
- #: ../includes/mycred-functions.php:711
1040
  msgid "and"
1041
  msgstr ""
1042
 
1043
- #: ../includes/mycred-functions.php:713
1044
  msgid "Available Template Tags:"
1045
  msgstr ""
1046
 
1047
- #: ../includes/mycred-functions.php:1874
1048
  msgid "Entire Log"
1049
  msgstr ""
1050
 
1051
- #: ../includes/mycred-functions.php:1879 ../includes/mycred-functions.php:1880
1052
  msgid "Displayed Rows"
1053
  msgstr ""
1054
 
1055
- #: ../includes/mycred-functions.php:1887
1056
  msgid "Search Results"
1057
  msgstr ""
1058
 
1059
- #: ../includes/mycred-functions.php:1888
1060
  msgid "My Entire Log"
1061
  msgstr ""
1062
 
1063
- #: ../includes/mycred-functions.php:2518
1064
  msgid "Website Registration"
1065
  msgstr ""
1066
 
1067
- #: ../includes/mycred-functions.php:2519
1068
  msgid "Website Visit"
1069
  msgstr ""
1070
 
1071
- #: ../includes/mycred-functions.php:2520
1072
  msgid "Viewing Content (Member)"
1073
  msgstr ""
1074
 
1075
- #: ../includes/mycred-functions.php:2521
1076
  msgid "Viewing Content (Author)"
1077
  msgstr ""
1078
 
1079
- #: ../includes/mycred-functions.php:2522
1080
  msgid "Logging in"
1081
  msgstr ""
1082
 
1083
- #: ../includes/mycred-functions.php:2523
1084
  msgid "Publishing Content"
1085
  msgstr ""
1086
 
1087
- #: ../includes/mycred-functions.php:2525
1088
  msgid "Unapproved Comment"
1089
  msgstr ""
1090
 
1091
- #: ../includes/mycred-functions.php:2526
1092
  msgid "SPAM Comment"
1093
  msgstr ""
1094
 
1095
- #: ../includes/mycred-functions.php:2527
1096
  msgid "Deleted Comment"
1097
  msgstr ""
1098
 
1099
- #: ../includes/mycred-functions.php:2528
1100
  msgid "Link Click"
1101
  msgstr ""
1102
 
1103
- #: ../includes/mycred-functions.php:2529
1104
  msgid "Watching Video"
1105
  msgstr ""
1106
 
1107
- #: ../includes/mycred-functions.php:2530
1108
  msgid "Visitor Referral"
1109
  msgstr ""
1110
 
1111
- #: ../includes/mycred-functions.php:2531
1112
  msgid "Signup Referral"
1113
  msgstr ""
1114
 
1115
- #: ../includes/mycred-functions.php:2535
1116
  msgid "New Profile Update"
1117
  msgstr ""
1118
 
1119
- #: ../includes/mycred-functions.php:2536
1120
  msgid "Profile Update Removal"
1121
  msgstr ""
1122
 
1123
- #: ../includes/mycred-functions.php:2537
1124
  msgid "Avatar Upload"
1125
  msgstr ""
1126
 
1127
- #: ../includes/mycred-functions.php:2538
1128
  msgid "New Friendship"
1129
  msgstr ""
1130
 
1131
- #: ../includes/mycred-functions.php:2539
1132
  msgid "Ended Friendship"
1133
  msgstr ""
1134
 
1135
- #: ../includes/mycred-functions.php:2540
1136
  msgid "New Profile Comment"
1137
  msgstr ""
1138
 
1139
- #: ../includes/mycred-functions.php:2541
1140
  msgid "Profile Comment Deletion"
1141
  msgstr ""
1142
 
1143
- #: ../includes/mycred-functions.php:2542
1144
  msgid "New Message"
1145
  msgstr ""
1146
 
1147
- #: ../includes/mycred-functions.php:2543
1148
  msgid "Sending Gift"
1149
  msgstr ""
1150
 
1151
- #: ../includes/mycred-functions.php:2544
1152
  msgid "New Group"
1153
  msgstr ""
1154
 
1155
- #: ../includes/mycred-functions.php:2545
1156
  msgid "Deleted Group"
1157
  msgstr ""
1158
 
1159
- #: ../includes/mycred-functions.php:2546
1160
  msgid "New Group Forum Topic"
1161
  msgstr ""
1162
 
1163
- #: ../includes/mycred-functions.php:2547
1164
  msgid "Edit Group Forum Topic"
1165
  msgstr ""
1166
 
1167
- #: ../includes/mycred-functions.php:2548
1168
  msgid "New Group Forum Post"
1169
  msgstr ""
1170
 
1171
- #: ../includes/mycred-functions.php:2549
1172
  msgid "Edit Group Forum Post"
1173
  msgstr ""
1174
 
1175
- #: ../includes/mycred-functions.php:2550
1176
  msgid "Joining Group"
1177
  msgstr ""
1178
 
1179
- #: ../includes/mycred-functions.php:2551
1180
  msgid "Leaving Group"
1181
  msgstr ""
1182
 
1183
- #: ../includes/mycred-functions.php:2552
1184
  msgid "New Group Avatar"
1185
  msgstr ""
1186
 
1187
- #: ../includes/mycred-functions.php:2553
1188
  msgid "New Group Comment"
1189
  msgstr ""
1190
 
1191
- #: ../includes/mycred-functions.php:2563
1192
  msgid "New Link"
1193
  msgstr ""
1194
 
1195
- #: ../includes/mycred-functions.php:2564
1196
  msgid "Link Voting"
1197
  msgstr ""
1198
 
1199
- #: ../includes/mycred-functions.php:2565
1200
  msgid "Link Update"
1201
  msgstr ""
1202
 
1203
- #: ../includes/mycred-functions.php:2569
1204
  msgid "New Forum (bbPress)"
1205
  msgstr ""
1206
 
1207
- #: ../includes/mycred-functions.php:2570
1208
  msgid "New Forum Topic (bbPress)"
1209
  msgstr ""
1210
 
1211
- #: ../includes/mycred-functions.php:2571
1212
  msgid "Favorited Topic (bbPress)"
1213
  msgstr ""
1214
 
1215
- #: ../includes/mycred-functions.php:2572
1216
  msgid "New Topic Reply (bbPress)"
1217
  msgstr ""
1218
 
1219
- #: ../includes/mycred-functions.php:2576
1220
  msgid "Form Submission (Contact Form 7)"
1221
  msgstr ""
1222
 
1223
- #: ../includes/mycred-functions.php:2579
1224
  msgid "Form Submission (Gravity Form)"
1225
  msgstr ""
1226
 
1227
- #: ../includes/mycred-functions.php:2582
1228
  msgid "New Forum Topic (SimplePress)"
1229
  msgstr ""
1230
 
1231
- #: ../includes/mycred-functions.php:2583
1232
  msgid "New Forum Post (SimplePress)"
1233
  msgstr ""
1234
 
1235
- #: ../includes/mycred-functions.php:2592
1236
  msgid "Affiliate Signup (AffiliateWP)"
1237
  msgstr ""
1238
 
1239
- #: ../includes/mycred-functions.php:2593
1240
  msgid "Referred Visit (AffiliateWP)"
1241
  msgstr ""
1242
 
1243
- #: ../includes/mycred-functions.php:2594
1244
  msgid "Affiliate Referral (AffiliateWP)"
1245
  msgstr ""
1246
 
1247
- #: ../includes/mycred-functions.php:2595
1248
  msgid "Referral Refund (AffiliateWP)"
1249
  msgstr ""
1250
 
1251
- #: ../includes/mycred-functions.php:2604
1252
  msgid "Poll Voting"
1253
  msgstr ""
1254
 
1255
- #: ../includes/mycred-functions.php:2607
1256
  msgid "Sending an Invite"
1257
  msgstr ""
1258
 
1259
- #: ../includes/mycred-functions.php:2608
1260
  msgid "Accepting an Invite"
1261
  msgstr ""
1262
 
1263
- #: ../includes/mycred-functions.php:2614
1264
  msgid "Banking Payout"
1265
  msgstr ""
1266
 
1267
- #: ../includes/mycred-functions.php:2617
1268
  msgid "buyCRED Purchase (PayPal Standard)"
1269
  msgstr ""
1270
 
1271
- #: ../includes/mycred-functions.php:2618
1272
  msgid "buyCRED Purchase (Skrill)"
1273
  msgstr ""
1274
 
1275
- #: ../includes/mycred-functions.php:2619
1276
  msgid "buyCRED Purchase (Zombaio)"
1277
  msgstr ""
1278
 
1279
- #: ../includes/mycred-functions.php:2620
1280
  msgid "buyCRED Purchase (NETBilling)"
1281
  msgstr ""
1282
 
1283
- #: ../includes/mycred-functions.php:2621
1284
  msgid "buyCRED Purchase (BitPay)"
1285
  msgstr ""
1286
 
1287
- #: ../includes/mycred-functions.php:2626
1288
  msgid "Coupon Purchase"
1289
  msgstr ""
1290
 
1291
- #: ../includes/mycred-functions.php:2630
1292
  msgid "Store Purchase (WooCommerce)"
1293
  msgstr ""
1294
 
1295
- #: ../includes/mycred-functions.php:2631
1296
  msgid "Store Reward (WooCommerce)"
1297
  msgstr ""
1298
 
1299
- #: ../includes/mycred-functions.php:2632
1300
  msgid "Product Review (WooCommerce)"
1301
  msgstr ""
1302
 
1303
- #: ../includes/mycred-functions.php:2635
1304
  msgid "Store Purchase (MarketPress)"
1305
  msgstr ""
1306
 
1307
- #: ../includes/mycred-functions.php:2636
1308
  msgid "Store Reward (MarketPress)"
1309
  msgstr ""
1310
 
1311
- #: ../includes/mycred-functions.php:2639
1312
  msgid "Store Purchase (WP E-Commerce)"
1313
  msgstr ""
1314
 
1315
- #: ../includes/mycred-functions.php:2645
1316
  msgid "Event Payment (Event Espresso)"
1317
  msgstr ""
1318
 
1319
- #: ../includes/mycred-functions.php:2646
1320
  msgid "Event Sale (Event Espresso)"
1321
  msgstr ""
1322
 
1323
- #: ../includes/mycred-functions.php:2650
1324
  msgid "Event Payment (Events Manager)"
1325
  msgstr ""
1326
 
1327
- #: ../includes/mycred-functions.php:2651
1328
  msgid "Event Sale (Events Manager)"
1329
  msgstr ""
1330
 
1331
- #: ../includes/mycred-functions.php:2655
1332
- msgid "Content Purchase / Sale"
 
 
 
 
1333
  msgstr ""
1334
 
1335
- #: ../includes/mycred-functions.php:2662
1336
  msgid "Manual Adjustment by Admin"
1337
  msgstr ""
1338
 
1339
- #: ../includes/mycred-functions.php:2777
 
 
 
 
1340
  #, php-format
1341
  msgid "You must exchange at least %s!"
1342
  msgstr ""
1343
 
1344
- #: ../includes/mycred-functions.php:2786 ../addons/transfer/myCRED-addon-transfer.
1345
  #: php:161
1346
  msgid "Insufficient Funds. Please try a lower amount."
1347
  msgstr ""
1348
 
1349
- #: ../includes/mycred-functions.php:2799
1350
  #, php-format
1351
  msgid "Exchange from %s"
1352
  msgstr ""
1353
 
1354
- #: ../includes/mycred-functions.php:2811
1355
  #, php-format
1356
  msgid "Exchange to %s"
1357
  msgstr ""
1358
 
1359
- #: ../includes/mycred-functions.php:2819
1360
  #, php-format
1361
  msgid "You have successfully exchanged %s into %s."
1362
  msgstr ""
1363
 
1364
- #: ../includes/mycred-functions.php:2851
1365
  msgid "per day"
1366
  msgstr ""
1367
 
1368
- #: ../includes/mycred-functions.php:2853
1369
  msgid "per week"
1370
  msgstr ""
1371
 
1372
- #: ../includes/mycred-functions.php:2855
1373
  msgid "per month"
1374
  msgstr ""
1375
 
1376
- #: ../includes/mycred-functions.php:2857
1377
  msgid "in total"
1378
  msgstr ""
1379
 
1380
- #: ../includes/mycred-functions.php:2859 ../includes/mycred-functions.php:2863
1381
  #, php-format
1382
  msgid "Maximum once"
1383
  msgid_plural "Maximum %d times"
1384
  msgstr[0] ""
1385
  msgstr[1] ""
1386
 
1387
- #: ../includes/importers/mycred-cubepoints.php:276
1388
  msgid "No balances were imported."
1389
  msgstr ""
1390
 
1391
- #: ../includes/importers/mycred-cubepoints.php:276
1392
  msgid "No log entries were imported!"
1393
  msgstr ""
1394
 
1395
- #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-
1396
- #: log-entries.php:138
1397
  #, php-format
1398
  msgid ""
1399
  "Import complete - A total of <strong>%d</strong> entries were successfully "
1400
  "imported. <strong>%d</strong> was skipped."
1401
  msgstr ""
1402
 
1403
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-
1404
- #: balances.php:181 ../includes/importers/mycred-log-entries.php:148 ..
1405
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:102
1406
  msgid "View Log"
1407
  msgstr ""
1408
 
1409
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-
1410
- #: balances.php:181 ../includes/importers/mycred-log-entries.php:148
1411
  msgid "Import More"
1412
  msgstr ""
1413
 
1414
- #: ../includes/importers/mycred-cubepoints.php:306
1415
  msgid "No CubePoints log."
1416
  msgstr ""
1417
 
1418
- #: ../includes/importers/mycred-cubepoints.php:317
1419
  msgid "Import CubePoints Log"
1420
  msgstr ""
1421
 
1422
- #: ../includes/importers/mycred-cubepoints.php:334
1423
  msgid "Select what to import"
1424
  msgstr ""
1425
 
1426
- #: ../includes/importers/mycred-cubepoints.php:335
1427
  msgid "Log Entries Only"
1428
  msgstr ""
1429
 
1430
- #: ../includes/importers/mycred-cubepoints.php:336
1431
  msgid "CubePoints Balances Only"
1432
  msgstr ""
1433
 
1434
- #: ../includes/importers/mycred-cubepoints.php:337
1435
  msgid "Log Entries and Balances"
1436
  msgstr ""
1437
 
1438
- #: ../includes/importers/mycred-cubepoints.php:360
1439
  msgid ""
1440
  "Warning! Importing CubePoints balances will replace your users myCRED "
1441
  "balance!"
1442
  msgstr ""
1443
 
1444
- #: ../includes/importers/mycred-cubepoints.php:378
1445
  msgid "Import Log"
1446
  msgstr ""
1447
 
1448
- #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-
1449
- #: balances.php:159 ../includes/importers/mycred-balances.php:198 ..
1450
- #: includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-
1451
- #: entries.php:81 ../includes/importers/mycred-log-entries.php:126 ..
1452
- #: includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-
1453
- #: log-entries.php:180
1454
  msgid "Sorry, there has been an error."
1455
  msgstr ""
1456
 
1457
- #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-
1458
- #: entries.php:82
1459
  msgid "The file does not exist, please try again."
1460
  msgstr ""
1461
 
1462
- #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-
1463
- #: entries.php:127
1464
  msgid "The CSV is invalid."
1465
  msgstr ""
1466
 
1467
- #: ../includes/importers/mycred-balances.php:171
1468
  #, php-format
1469
  msgid ""
1470
  "Import complete - A total of <strong>%d</strong> balances were successfully "
1471
  "imported. <strong>%d</strong> was skipped."
1472
  msgstr ""
1473
 
1474
- #: ../includes/importers/mycred-balances.php:227
1475
  msgid "Import Balances"
1476
  msgstr ""
1477
 
1478
- #: ../includes/importers/mycred-balances.php:244
1479
  msgid "Import balances from a CSV file."
1480
  msgstr ""
1481
 
1482
- #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-
1483
- #: entries.php:219
1484
  msgid ""
1485
  "Before you can upload your import file, you will need to fix the following "
1486
  "error:"
1487
  msgstr ""
1488
 
1489
- #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-
1490
- #: entries.php:228
1491
  msgid "Choose a file from your computer:"
1492
  msgstr ""
1493
 
1494
- #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-
1495
- #: entries.php:234
1496
  #, php-format
1497
  msgid "Maximum size: %s"
1498
  msgstr ""
1499
 
1500
- #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-
1501
- #: entries.php:239
1502
  msgid "OR enter path to file:"
1503
  msgstr ""
1504
 
1505
- #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-
1506
- #: entries.php:246
1507
  msgid "Delimiter"
1508
  msgstr ""
1509
 
1510
- #: ../includes/importers/mycred-balances.php:283
1511
  msgid "Method"
1512
  msgstr ""
1513
 
1514
- #: ../includes/importers/mycred-balances.php:285
1515
  msgid "Replace current balances with the amount in this CSV file"
1516
  msgstr ""
1517
 
1518
- #: ../includes/importers/mycred-balances.php:286
1519
  msgid "Adjust current balances according to the amount in this CSV file"
1520
  msgstr ""
1521
 
1522
- #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
1523
- #: entries.php:252
1524
  msgid "Upload file and import"
1525
  msgstr ""
1526
 
1527
- #: ../includes/importers/mycred-log-entries.php:194
1528
  msgid "Import Log Entries"
1529
  msgstr ""
1530
 
1531
- #: ../includes/importers/mycred-log-entries.php:211
1532
  msgid "Import log entries from a CSV file."
1533
  msgstr ""
1534
 
1535
- #: ../addons/banking/myCRED-addon-banking.php:158
1536
  msgid "Central Banking"
1537
  msgstr ""
1538
 
1539
- #: ../addons/banking/myCRED-addon-banking.php:159
1540
  #, php-format
1541
  msgid ""
1542
  "Instead of creating %_plural% out of thin-air, all payouts are made from a "
@@ -1544,17 +1553,17 @@ msgid ""
1544
  "deposited back into this account."
1545
  msgstr ""
1546
 
1547
- #: ../addons/banking/myCRED-addon-banking.php:166
1548
  #, php-format
1549
  msgid "Apply a positive or negative interest rate on your users %_plural% balances."
1550
  msgstr ""
1551
 
1552
- #: ../addons/banking/myCRED-addon-banking.php:173
1553
  #, php-format
1554
  msgid "Setup mass %_singular% payouts for your users."
1555
  msgstr ""
1556
 
1557
- #: ../addons/banking/myCRED-addon-banking.php:228
1558
  #, php-format
1559
  msgid "Your banking setup for %plural%."
1560
  msgstr ""
@@ -1660,8 +1669,8 @@ msgid "This user role is excluded from receiving interest on this balance."
1660
  msgstr ""
1661
 
1662
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/sell-
1663
- #: content/myCRED-addon-sell-content.php:114 ../addons/buy-creds/myCRED-addon-buy-
1664
- #: creds.php:837
1665
  msgid "Leave empty to use the default value."
1666
  msgstr ""
1667
 
@@ -1779,11 +1788,11 @@ msgstr ""
1779
  msgid "Go Back"
1780
  msgstr ""
1781
 
1782
- #: ../addons/transfer/myCRED-addon-transfer.php:216
1783
  msgid "Select the point types that users can transfer."
1784
  msgstr ""
1785
 
1786
- #: ../addons/transfer/myCRED-addon-transfer.php:276
1787
  msgid "Limit Amount"
1788
  msgstr ""
1789
 
@@ -1793,60 +1802,60 @@ msgid ""
1793
  "multiple point types."
1794
  msgstr ""
1795
 
1796
- #: ../addons/ranks/myCRED-addon-ranks.php:441
1797
  #, php-format
1798
  msgid "Ranks for %s"
1799
  msgstr ""
1800
 
1801
- #: ../addons/ranks/myCRED-addon-ranks.php:978 ../addons/ranks/myCRED-addon-ranks.
1802
- #: php:979 ../addons/ranks/myCRED-addon-ranks.php:980 ../addons/ranks/myCRED-
1803
- #: addon-ranks.php:981 ../addons/ranks/myCRED-addon-ranks.php:982 ..
1804
- #: addons/ranks/myCRED-addon-ranks.php:983 ../addons/ranks/myCRED-addon-ranks.
1805
- #: php:986 ../addons/ranks/myCRED-addon-ranks.php:987
1806
  msgid "Rank Updated."
1807
  msgstr ""
1808
 
1809
- #: ../addons/ranks/myCRED-addon-ranks.php:984
1810
  msgid "Rank Enabled"
1811
  msgstr ""
1812
 
1813
- #: ../addons/ranks/myCRED-addon-ranks.php:1024
1814
  #, php-format
1815
  msgid "<strong>Rank:</strong> %s"
1816
  msgstr ""
1817
 
1818
- #: ../addons/ranks/myCRED-addon-ranks.php:1388
1819
  msgid ""
1820
  "Use this button to calculate or recalculate your users totals. If not used, "
1821
  "the users current balance will be used as a starting point."
1822
  msgstr ""
1823
 
1824
- #: ../addons/ranks/myCRED-addon-ranks.php:1430 ../addons/ranks/myCRED-addon-ranks.
1825
- #: php:1475
1826
  #, php-format
1827
  msgid ""
1828
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
1829
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
1830
  msgstr ""
1831
 
1832
- #: ../addons/ranks/myCRED-addon-ranks.php:1452
1833
  msgid "Include in Topic Replies"
1834
  msgstr ""
1835
 
1836
- #: ../addons/ranks/myCRED-addon-ranks.php:1453 ../addons/badges/myCRED-addon-
1837
- #: badges.php:1002
1838
  msgid "Include in Profile"
1839
  msgstr ""
1840
 
1841
- #: ../addons/ranks/myCRED-addon-ranks.php:1454
1842
  msgid "Include in Topic Replies and Profile"
1843
  msgstr ""
1844
 
1845
- #: ../addons/ranks/myCRED-addon-ranks.php:1458
1846
  msgid "Rank in bbPress"
1847
  msgstr ""
1848
 
1849
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:145
1850
  msgid "Rank not found. Please check the id and try again."
1851
  msgstr ""
1852
 
@@ -1854,129 +1863,129 @@ msgstr ""
1854
  msgid "Notify your users when their balances changes."
1855
  msgstr ""
1856
 
1857
- #: ../addons/notifications/myCRED-addon-notifications.php:205
1858
  msgid "Restore to default"
1859
  msgstr ""
1860
 
1861
- #: ../addons/notifications/myCRED-addon-notifications.php:219
1862
  msgid ""
1863
  "Number of seconds before a notice is automatically removed after being shown "
1864
  "to user. Use zero to disable."
1865
  msgstr ""
1866
 
1867
- #: ../addons/email-notices/myCRED-addon-email-notices.php:211
1868
  msgid "Badge Add-on"
1869
  msgstr ""
1870
 
1871
- #: ../addons/email-notices/myCRED-addon-email-notices.php:212
1872
  msgid "user gains a badge"
1873
  msgstr ""
1874
 
1875
- #: ../addons/email-notices/myCRED-addon-email-notices.php:310 ../addons/email-
1876
- #: notices/myCRED-addon-email-notices.php:316
1877
  msgid "Email Schedule"
1878
  msgstr ""
1879
 
1880
- #: ../addons/email-notices/myCRED-addon-email-notices.php:312
1881
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1882
  msgstr ""
1883
 
1884
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1885
  msgid "Send emails immediately"
1886
  msgstr ""
1887
 
1888
- #: ../addons/email-notices/myCRED-addon-email-notices.php:324
1889
  msgid "Send emails once an hour"
1890
  msgstr ""
1891
 
1892
- #: ../addons/email-notices/myCRED-addon-email-notices.php:328
1893
  msgid "Send emails once a day"
1894
  msgstr ""
1895
 
1896
- #: ../addons/email-notices/myCRED-addon-email-notices.php:331
1897
  msgid "Subscriptions"
1898
  msgstr ""
1899
 
1900
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333
1901
  #, php-format
1902
  msgid ""
1903
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1904
  "updates."
1905
  msgstr ""
1906
 
1907
- #: ../addons/email-notices/myCRED-addon-email-notices.php:338
1908
  msgid "SMTP Override"
1909
  msgstr ""
1910
 
1911
- #: ../addons/email-notices/myCRED-addon-email-notices.php:342
1912
  msgid ""
1913
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1914
  "use a SMTP plugin for emails."
1915
  msgstr ""
1916
 
1917
- #: ../addons/email-notices/myCRED-addon-email-notices.php:719
1918
  #, php-format
1919
  msgctxt "Badge Title - Level 1,2,3.."
1920
  msgid "%s - Level %d"
1921
  msgstr ""
1922
 
1923
- #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
1924
- #: notices/myCRED-addon-email-notices.php:1037
1925
  msgid "All types"
1926
  msgstr ""
1927
 
1928
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
1929
  msgid "The users new balance"
1930
  msgstr ""
1931
 
1932
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
1933
  msgid "The users old balance"
1934
  msgstr ""
1935
 
1936
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
1937
  msgid "The amount of points gained or lost in this instance"
1938
  msgstr ""
1939
 
1940
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
1941
  msgid "The log entry"
1942
  msgstr ""
1943
 
1944
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
1945
- #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
1946
- #: addon-email-notices.php:1187
1947
  msgid "Email Notice Updated."
1948
  msgstr ""
1949
 
1950
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
1951
  msgid "Settings saved."
1952
  msgstr ""
1953
 
1954
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
1955
  msgid "Unsubscribe"
1956
  msgstr ""
1957
 
1958
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
1959
  msgid "There are no email notifications yet."
1960
  msgstr ""
1961
 
1962
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1296 ..
1963
- #: addons/badges/myCRED-addon-badges.php:1182
1964
  msgid "Save Changes"
1965
  msgstr ""
1966
 
1967
- #: ../addons/stats/myCRED-addon-stats.php:54
1968
  msgid "Statistics"
1969
  msgstr ""
1970
 
1971
- #: ../addons/stats/myCRED-addon-stats.php:126
1972
  msgid "Overview"
1973
  msgstr ""
1974
 
1975
- #: ../addons/stats/myCRED-addon-stats.php:192
1976
  msgid "Refresh"
1977
  msgstr ""
1978
 
1979
- #: ../addons/stats/myCRED-addon-stats.php:248
1980
  msgid "Your log is empty. No statistics can be shown."
1981
  msgstr ""
1982
 
@@ -1985,44 +1994,58 @@ msgstr ""
1985
  msgid "Total %s:"
1986
  msgstr ""
1987
 
1988
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138
 
1989
  #, php-format
1990
  msgid "Total amount of %s in circulation"
1991
  msgstr ""
1992
 
1993
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:170
 
1994
  msgid "Total gains (%)"
1995
  msgstr ""
1996
 
1997
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:174
 
1998
  msgid "Total loses (%)"
1999
  msgstr ""
2000
 
2001
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
 
2002
  #, php-format
2003
  msgid "Total Gained: %s"
2004
  msgstr ""
2005
 
2006
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
 
2007
  #, php-format
2008
  msgid "Total Spent: %s"
2009
  msgstr ""
2010
 
2011
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:192
 
2012
  msgid "This Year"
2013
  msgstr ""
2014
 
2015
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:196 ..
2016
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
2017
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
2018
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
2019
- msgid "Gained"
2020
- msgstr ""
2021
-
2022
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
2023
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
2024
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
2025
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2026
  msgid "Lost"
2027
  msgstr ""
2028
 
@@ -2062,243 +2085,243 @@ msgstr ""
2062
  msgid "Gains in the last 10 days"
2063
  msgstr ""
2064
 
2065
- #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
2066
- #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
2067
- #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
2068
- #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
2069
- #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
2070
- #: badges.php:395
2071
  msgid "Badges"
2072
  msgstr ""
2073
 
2074
- #: ../addons/badges/myCRED-addon-badges.php:169
2075
  #, php-format
2076
  msgid "Badges (%d)"
2077
  msgstr ""
2078
 
2079
- #: ../addons/badges/myCRED-addon-badges.php:260
2080
  #, php-format
2081
  msgid "%d Users earned this badge."
2082
  msgstr ""
2083
 
2084
- #: ../addons/badges/myCRED-addon-badges.php:264
2085
  msgid "No users has yet earned this badge."
2086
  msgstr ""
2087
 
2088
- #: ../addons/badges/myCRED-addon-badges.php:287
2089
  msgid "No connections where removed."
2090
  msgstr ""
2091
 
2092
- #: ../addons/badges/myCRED-addon-badges.php:289
2093
  #, php-format
2094
  msgid "%s connections where removed."
2095
  msgstr ""
2096
 
2097
- #: ../addons/badges/myCRED-addon-badges.php:384
2098
  msgid "Badge"
2099
  msgstr ""
2100
 
2101
- #: ../addons/badges/myCRED-addon-badges.php:386
2102
  msgid "Add New Badge"
2103
  msgstr ""
2104
 
2105
- #: ../addons/badges/myCRED-addon-badges.php:387
2106
  msgid "Edit Badge"
2107
  msgstr ""
2108
 
2109
- #: ../addons/badges/myCRED-addon-badges.php:388
2110
  msgid "New Badge"
2111
  msgstr ""
2112
 
2113
- #: ../addons/badges/myCRED-addon-badges.php:390
2114
  msgid "View Badge"
2115
  msgstr ""
2116
 
2117
- #: ../addons/badges/myCRED-addon-badges.php:391
2118
  msgid "Search Badge"
2119
  msgstr ""
2120
 
2121
- #: ../addons/badges/myCRED-addon-badges.php:392
2122
  msgid "No badges found"
2123
  msgstr ""
2124
 
2125
- #: ../addons/badges/myCRED-addon-badges.php:393
2126
  msgid "No badges found in Trash"
2127
  msgstr ""
2128
 
2129
- #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
2130
- #: badges.php:541
2131
  msgid "Badge Name"
2132
  msgstr ""
2133
 
2134
- #: ../addons/badges/myCRED-addon-badges.php:440
2135
  msgid "Badge Images"
2136
  msgstr ""
2137
 
2138
- #: ../addons/badges/myCRED-addon-badges.php:441
2139
  msgid "Requirements"
2140
  msgstr ""
2141
 
2142
- #: ../addons/badges/myCRED-addon-badges.php:481
2143
  msgid "A user must have gained or lost:"
2144
  msgstr ""
2145
 
2146
- #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
2147
- #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
2148
- #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
2149
- #: badges.php:526
2150
  msgid "Badge Updated."
2151
  msgstr ""
2152
 
2153
- #: ../addons/badges/myCRED-addon-badges.php:522
2154
  msgid "Badge Enabled"
2155
  msgstr ""
2156
 
2157
- #: ../addons/badges/myCRED-addon-badges.php:523
2158
  msgid "Badge Saved"
2159
  msgstr ""
2160
 
2161
- #: ../addons/badges/myCRED-addon-badges.php:555
2162
  msgid "Badge Setup"
2163
  msgstr ""
2164
 
2165
- #: ../addons/badges/myCRED-addon-badges.php:582
2166
  msgid "Assign Badge"
2167
  msgstr ""
2168
 
2169
- #: ../addons/badges/myCRED-addon-badges.php:583
2170
  msgid "Remove Connections"
2171
  msgstr ""
2172
 
2173
- #: ../addons/badges/myCRED-addon-badges.php:638
2174
  msgid "Time(s)"
2175
  msgstr ""
2176
 
2177
- #: ../addons/badges/myCRED-addon-badges.php:639
2178
  msgid "In total"
2179
  msgstr ""
2180
 
2181
- #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
2182
- #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
2183
- #: addons/badges/myCRED-addon-badges.php:846
2184
  msgid "Badge Image"
2185
  msgstr ""
2186
 
2187
- #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
2188
- #: badges.php:672
2189
  msgid "Set badge image"
2190
  msgstr ""
2191
 
2192
- #: ../addons/badges/myCRED-addon-badges.php:682
2193
  msgid "Default Image"
2194
  msgstr ""
2195
 
2196
- #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
2197
- #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
2198
- #: addons/badges/myCRED-addon-badges.php:831
2199
  msgid "image url"
2200
  msgstr ""
2201
 
2202
- #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
2203
- #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
2204
- #: addons/badges/myCRED-addon-badges.php:831
2205
  msgid "Add Image"
2206
  msgstr ""
2207
 
2208
- #: ../addons/badges/myCRED-addon-badges.php:685
2209
  msgid "Optional image to show when a user has not yet earned this badge."
2210
  msgstr ""
2211
 
2212
- #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
2213
- #: badges.php:756
2214
  #, php-format
2215
  msgid "Level %d"
2216
  msgstr ""
2217
 
2218
- #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
2219
- #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
2220
  msgid "for"
2221
  msgstr ""
2222
 
2223
- #: ../addons/badges/myCRED-addon-badges.php:740
2224
  msgid "Main Image"
2225
  msgstr ""
2226
 
2227
- #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
2228
- #: badges.php:831
2229
  msgid "Leave empty if you do not want to assign a custom image for this level."
2230
  msgstr ""
2231
 
2232
- #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
2233
- #: badges.php:831
2234
  msgid "Remove this level"
2235
  msgstr ""
2236
 
2237
- #: ../addons/badges/myCRED-addon-badges.php:788
2238
  msgid "Add Level"
2239
  msgstr ""
2240
 
2241
- #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
2242
- #: badges.php:1154
2243
  msgid "Level"
2244
  msgstr ""
2245
 
2246
- #: ../addons/badges/myCRED-addon-badges.php:848
2247
  msgid "Use as Badge"
2248
  msgstr ""
2249
 
2250
- #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
2251
- #: badges.php:1017
2252
  msgid "Show all badges, including badges users have not yet earned."
2253
  msgstr ""
2254
 
2255
- #: ../addons/badges/myCRED-addon-badges.php:1003
2256
  msgid "Include in Forum Replies"
2257
  msgstr ""
2258
 
2259
- #: ../addons/badges/myCRED-addon-badges.php:1004
2260
  msgid "Include in Profile and Forum Replies"
2261
  msgstr ""
2262
 
2263
- #: ../addons/badges/myCRED-addon-badges.php:1111
2264
  msgid "User Badges"
2265
  msgstr ""
2266
 
2267
- #: ../addons/badges/myCRED-addon-badges.php:1116
2268
  msgid ""
2269
  "Here you can view the badges this user has earned and if needed, manually "
2270
  "give or take away a badge from a user."
2271
  msgstr ""
2272
 
2273
- #: ../addons/badges/myCRED-addon-badges.php:1125
2274
  msgid "Not earned"
2275
  msgstr ""
2276
 
2277
- #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
2278
- #: badges.php:1168
2279
  msgid "Earned"
2280
  msgstr ""
2281
 
2282
- #: ../addons/badges/myCRED-addon-badges.php:1143
2283
  msgid "No image"
2284
  msgstr ""
2285
 
2286
- #: ../addons/badges/myCRED-addon-badges.php:1150
2287
  msgid "Select a level"
2288
  msgstr ""
2289
 
2290
- #: ../addons/badges/includes/mycred-badge-functions.php:68
2291
  #, php-format
2292
  msgid "Level %s"
2293
  msgstr ""
2294
 
2295
- #: ../addons/badges/includes/mycred-badge-functions.php:71
2296
  #, php-format
2297
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
2298
  msgid "%s for %s %s - %s"
2299
  msgstr ""
2300
 
2301
- #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
2302
  #: addons/coupons/myCRED-addon-coupons.php:221 ../addons/coupons/myCRED-addon-
2303
  #: coupons.php:516
2304
  #, php-format
@@ -2307,7 +2330,7 @@ msgid_plural "%d times"
2307
  msgstr[0] ""
2308
  msgstr[1] ""
2309
 
2310
- #: ../addons/badges/includes/mycred-badge-functions.php:73
2311
  #, php-format
2312
  msgctxt "\"x points\" for \"reference\" in total"
2313
  msgid "%s for %s in total"
@@ -2541,31 +2564,31 @@ msgstr ""
2541
  msgid "Apply Coupon"
2542
  msgstr ""
2543
 
2544
- #: ../addons/sell-content/myCRED-addon-sell-content.php:111
2545
  msgid "Profit Share"
2546
  msgstr ""
2547
 
2548
- #: ../addons/sell-content/myCRED-addon-sell-content.php:119
2549
  msgid "Save Profit Share"
2550
  msgstr ""
2551
 
2552
- #: ../addons/sell-content/myCRED-addon-sell-content.php:165
2553
  msgid "Profit Share override saved"
2554
  msgstr ""
2555
 
2556
- #: ../addons/sell-content/myCRED-addon-sell-content.php:476
2557
  msgid "For Visitors"
2558
  msgstr ""
2559
 
2560
- #: ../addons/sell-content/myCRED-addon-sell-content.php:491
2561
  msgid "For Members"
2562
  msgstr ""
2563
 
2564
- #: ../addons/sell-content/myCRED-addon-sell-content.php:506
2565
  msgid "For members that can not afford to buy"
2566
  msgstr ""
2567
 
2568
- #: ../addons/sell-content/myCRED-addon-sell-content.php:676
2569
  #, php-format
2570
  msgid "Enable sale of this %s"
2571
  msgstr ""
@@ -2598,7 +2621,7 @@ msgid "Edit Pending Payment"
2598
  msgstr ""
2599
 
2600
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:284 ../addons/buy-creds/myCRED-
2601
- #: addon-buy-creds.php:1752
2602
  msgid "No pending payments found"
2603
  msgstr ""
2604
 
@@ -2606,87 +2629,87 @@ msgstr ""
2606
  msgid "Not found in Trash"
2607
  msgstr ""
2608
 
2609
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:341 ../addons/buy-creds/myCRED-
2610
- #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
2611
  msgid "Transaction ID"
2612
  msgstr ""
2613
 
2614
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-
2615
- #: addon-buy-creds.php:1074
2616
  msgid "Buyer"
2617
  msgstr ""
2618
 
2619
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
2620
- #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
2621
  #: gateway.php:594
2622
  msgid "Cost"
2623
  msgstr ""
2624
 
2625
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:347
2626
  msgid "Type"
2627
  msgstr ""
2628
 
2629
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:440
2630
  msgid "Pay Out"
2631
  msgstr ""
2632
 
2633
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474
2634
  msgid "buyCRED Purchase Log"
2635
  msgstr ""
2636
 
2637
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:475 ../addons/buy-creds/myCRED-
2638
- #: addon-buy-creds.php:726 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
2639
  msgid "Purchase Log"
2640
  msgstr ""
2641
 
2642
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655
2643
  msgid "Select the point types that users can buy. You must select at least one!"
2644
  msgstr ""
2645
 
2646
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:728
2647
  #, php-format
2648
  msgid "Show seperate log for %_plural% purchases."
2649
  msgstr ""
2650
 
2651
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:831
2652
  #, php-format
2653
  msgid "%s Exchange Rate"
2654
  msgstr ""
2655
 
2656
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
2657
  msgid "Save Exchange Rates"
2658
  msgstr ""
2659
 
2660
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
2661
  msgid "Exchange rate override saved"
2662
  msgstr ""
2663
 
2664
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
2665
  msgid "Payment completed"
2666
  msgstr ""
2667
 
2668
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
2669
- #: addon-buy-creds.php:1085
2670
  msgid "buyCRED Settings"
2671
  msgstr ""
2672
 
2673
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
2674
  msgid "Enable for test purchases."
2675
  msgstr ""
2676
 
2677
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
2678
  msgid "More Gateways"
2679
  msgstr ""
2680
 
2681
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
2682
  msgid "Payed"
2683
  msgstr ""
2684
 
2685
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
2686
  msgid "<strong>buy</strong>CRED Purchase Log"
2687
  msgstr ""
2688
 
2689
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
2690
  #, php-format
2691
  msgid "Buy with %gateway%"
2692
  msgstr ""
@@ -2945,50 +2968,50 @@ msgstr ""
2945
  msgid "myCRED"
2946
  msgstr "افزونه \"اعتبار من\""
2947
 
2948
- #: ../mycred.php:581
2949
  #, php-format
2950
  msgid "About %s"
2951
  msgstr "درباره %s"
2952
 
2953
- #: ../mycred.php:590
2954
  msgid "Awesome People"
2955
  msgstr "\"اعتبار من\""
2956
 
2957
- #: ../mycred.php:678 ../mycred.php:703 ../mycred.php:721 ../includes/mycred-
2958
- #: shortcodes.php:640 ../addons/gateway/event-booking/mycred-eventsmanager.php:
2959
  #: 478 ../addons/transfer/myCRED-addon-transfer.php:146 ../addons/ranks/myCRED-
2960
- #: addon-ranks.php:423 ../addons/ranks/myCRED-addon-ranks.php:1523 ..
2961
- #: addons/badges/myCRED-addon-badges.php:605 ../addons/sell-content/myCRED-addon-
2962
- #: sell-content.php:371
2963
  msgid "Processing..."
2964
  msgstr "در حال پردازش ..."
2965
 
2966
- #: ../mycred.php:681
2967
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
2968
  msgstr ""
2969
  "اخطار ! تمام میزان امتیازات کاربران شما روی صفر تنظیم خواهند شد ! این عمل "
2970
  "غیرقابل بازگشت می باشد !"
2971
 
2972
- #: ../mycred.php:682
2973
  msgid "Done!"
2974
  msgstr "انجام شد !"
2975
 
2976
- #: ../mycred.php:683 ../mycred.php:702 ../mycred.php:720
2977
  msgid "Close"
2978
  msgstr "بستن"
2979
 
2980
- #: ../mycred.php:684
2981
  #, php-format
2982
  msgid "Export users %plural%"
2983
  msgstr "خروجی گرفتن از %plural% کاربران"
2984
 
2985
- #: ../mycred.php:781 ../mycred.php:803 ../addons/gateway/event-booking/mycred-
2986
  #: eventsmanager.php:537 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
2987
- #: php:499 ../addons/email-notices/myCRED-addon-email-notices.php:811
2988
  msgid "Setup"
2989
  msgstr "نصب"
2990
 
2991
- #: ../mycred.php:783 ../modules/mycred-module-settings.php:21 ../modules/mycred-
2992
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23 ..
2993
  #: includes/mycred-network.php:170 ../addons/gateway/carts/mycred-marketpress.
2994
  #: php:371 ../addons/stats/abstracts/mycred-abstract-stat-widget.php:108
@@ -3000,8 +3023,8 @@ msgid "This Hook has no settings"
3000
  msgstr "این پنل تنظیمات ، چیزی برای تنظیم ندارد"
3001
 
3002
  #: ../abstracts/mycred-abstract-hook.php:283 ../abstracts/mycred-abstract-hook.
3003
- #: php:354 ../modules/mycred-module-hooks.php:1816 ../includes/mycred-functions.
3004
- #: php:2845
3005
  msgid "No limit"
3006
  msgstr "بدون محدودیت"
3007
 
@@ -3019,29 +3042,29 @@ msgstr "روزی یک بار ( نیمه شب ریست می شود )"
3019
 
3020
  #: ../abstracts/mycred-abstract-hook.php:364 ../addons/banking/abstracts/mycred-
3021
  #: abstract-service.php:498 ../addons/email-notices/myCRED-addon-email-notices.
3022
- #: php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992 ..
3023
- #: addons/buy-creds/myCRED-addon-buy-creds.php:696 ../addons/buy-creds/myCRED-
3024
- #: addon-buy-creds.php:719 ../addons/buy-creds/abstracts/mycred-abstract-payment-
3025
  #: gateway.php:1023 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
3026
  #: php:1046 ../addons/buy-creds/gateways/zombaio.php:356
3027
  msgid "Select"
3028
  msgstr "انتخاب"
3029
 
3030
- #: ../abstracts/mycred-abstract-module.php:400 ../abstracts/mycred-abstract-
3031
- #: module.php:410
3032
  msgid "Surprise"
3033
  msgstr "غافلگیری"
3034
 
3035
- #: ../abstracts/mycred-abstract-module.php:511 ../includes/mycred-network.php:93
3036
  msgid "click to close"
3037
  msgstr "برای بستن کلیک کنید ."
3038
 
3039
- #: ../abstracts/mycred-abstract-module.php:512 ../includes/mycred-network.php:94
3040
  msgid "click to open"
3041
  msgstr "برای باز شدن کلیک کنید ."
3042
 
3043
- #: ../abstracts/mycred-abstract-module.php:545 ../addons/buy-creds/myCRED-addon-
3044
- #: buy-creds.php:927
3045
  msgid "Settings Updated"
3046
  msgstr "تنظیمات به روز شد"
3047
 
@@ -3064,11 +3087,11 @@ msgid "Tip"
3064
  msgstr "نکته"
3065
 
3066
  #: ../modules/mycred-module-settings.php:484 ../modules/mycred-module-addons.php:
3067
- #: 303 ../modules/mycred-module-log.php:358 ../modules/mycred-module-log.php:647 .
3068
- #: ./modules/mycred-module-hooks.php:193 ../includes/mycred-network.php:141 ..
3069
- #: includes/mycred-admin.php:584 ../addons/banking/myCRED-addon-banking.php:219 .
3070
- #: ./addons/stats/myCRED-addon-stats.php:182 ../addons/buy-creds/myCRED-addon-buy-
3071
- #: creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
3072
  msgid "Access Denied"
3073
  msgstr "دسترسی غیرمجاز می باشد"
3074
 
@@ -3214,7 +3237,7 @@ msgstr "داده های ورودی"
3214
 
3215
  #: ../modules/mycred-module-settings.php:625 ../modules/mycred-module-settings.
3216
  #: php:640 ../modules/mycred-module-log.php:407 ../addons/ranks/myCRED-addon-
3217
- #: ranks.php:1613 ../addons/buy-creds/myCRED-addon-buy-creds.php:1715
3218
  msgid "Actions"
3219
  msgstr "عملیات ها"
3220
 
@@ -3223,12 +3246,12 @@ msgid "Empty Log"
3223
  msgstr "لیست گزارشات ( لوگ ) خالی"
3224
 
3225
  #: ../modules/mycred-module-settings.php:632 ../addons/ranks/myCRED-addon-ranks.
3226
- #: php:1605
3227
  msgid "User Meta Key"
3228
  msgstr "کلید اطلاعات کاربر ( Meta key ("
3229
 
3230
  #: ../modules/mycred-module-settings.php:636 ../addons/ranks/myCRED-addon-ranks.
3231
- #: php:1043 ../addons/badges/myCRED-addon-badges.php:442
3232
  msgid "Users"
3233
  msgstr "کاربران"
3234
 
@@ -3248,7 +3271,7 @@ msgstr "کلید اطلاعات"
3248
  #: ../modules/mycred-module-settings.php:674 ../modules/mycred-module-settings.
3249
  #: php:695 ../modules/mycred-module-settings.php:720 ..
3250
  #: addons/gateway/carts/mycred-woocommerce.php:160 ../addons/email-
3251
- #: notices/myCRED-addon-email-notices.php:1025
3252
  msgid "Label"
3253
  msgstr "برچسب ( اتیکت )"
3254
 
@@ -3260,7 +3283,7 @@ msgstr "پاک کردن"
3260
 
3261
  #: ../modules/mycred-module-settings.php:739 ../addons/gateway/event-
3262
  #: booking/mycred-eventespresso3.php:502 ../addons/buy-creds/myCRED-addon-buy-
3263
- #: creds.php:986
3264
  msgid "Update Settings"
3265
  msgstr "به روزرسانی تنظیمات"
3266
 
@@ -3302,7 +3325,7 @@ msgstr "خروجی گرفتن"
3302
  msgid "Add-ons"
3303
  msgstr "افزونه های جانبی"
3304
 
3305
- #: ../modules/mycred-module-addons.php:182
3306
  msgid ""
3307
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
3308
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
@@ -3314,11 +3337,11 @@ msgstr ""
3314
  "فراهم کنید تا برای سایر اعضای سایت هم امتیاز بخرند . ( آقای ایکس برای آقای "
3315
  "ایگرگ امتیاز بخرد ! )"
3316
 
3317
- #: ../modules/mycred-module-addons.php:204
3318
  msgid "Create email notices for any type of myCRED instance."
3319
  msgstr "برای هر یک از بخش های \"اعتبار من\" ، اطلاعیه ایمیلی بسازید ."
3320
 
3321
- #: ../modules/mycred-module-addons.php:249
3322
  msgid ""
3323
  "This add-on allows you to sell posts, pages or any public post types on your "
3324
  "website. You can either sell the entire content or using our shortcode, sell "
@@ -3330,7 +3353,7 @@ msgstr ""
3330
  "محتوای مورد نظرتان را از دسترس عموم خارج کرده و آن ها را تحت عناوین مختلف ، "
3331
  "مثل \"تیزر\" و یا \"پیش نمایش\" به فروش رسانید ."
3332
 
3333
- #: ../modules/mycred-module-addons.php:271
3334
  msgid ""
3335
  "Allow your users to send or \"donate\" points to other members by either using "
3336
  "the mycred_transfer shortcode or the myCRED Transfer widget."
@@ -3339,59 +3362,59 @@ msgstr ""
3339
  "\"اهدا\" کنند . از دو طریق می توان این کار را انجام داد ، استفاده از کد "
3340
  "mycred_transfer و یا ابزارک جابجایی امتیاز \"اعتبار من\" ."
3341
 
3342
- #: ../modules/mycred-module-addons.php:313
3343
  #, php-format
3344
  msgid "%s Add-ons"
3345
  msgstr "افزونه های جانبی %s"
3346
 
3347
- #: ../modules/mycred-module-addons.php:320
3348
  msgid "Add-on Activated"
3349
  msgstr "افزونه جانبی فعال شد"
3350
 
3351
- #: ../modules/mycred-module-addons.php:323
3352
  msgid "Add-on Deactivated"
3353
  msgstr "افزونه جانبی غیرفعال شد"
3354
 
3355
- #: ../modules/mycred-module-addons.php:331
3356
  msgid "Add-ons can expand your current installation with further features."
3357
  msgstr ""
3358
  "افزونه های جانبی می توانند قابلیت های جدید و مفیدی را به افزونه ی فعلی شما "
3359
  "ببخشند ."
3360
 
3361
- #: ../modules/mycred-module-addons.php:359
3362
  #, php-format
3363
  msgid "You can find more add-ons in our %s."
3364
  msgstr "می توانید افزونه های بیشتر را در %s ما بیابید ."
3365
 
3366
- #: ../modules/mycred-module-addons.php:359
3367
  msgid "online store"
3368
  msgstr "فروشگاه آنلاین"
3369
 
3370
- #: ../modules/mycred-module-addons.php:382
3371
  msgid "Deactivate Add-on"
3372
  msgstr "غیرفعال کردن افزونه ی جانبی"
3373
 
3374
- #: ../modules/mycred-module-addons.php:383
3375
  msgid "Deactivate"
3376
  msgstr "غیرفعالسازی"
3377
 
3378
- #: ../modules/mycred-module-addons.php:390
3379
  msgid "Activate Add-on"
3380
  msgstr "فعال کردن افزونه جانبی"
3381
 
3382
- #: ../modules/mycred-module-addons.php:391
3383
  msgid "Activate"
3384
  msgstr "فعالسازی"
3385
 
3386
- #: ../modules/mycred-module-addons.php:409
3387
  msgid "Version"
3388
  msgstr "نسخه"
3389
 
3390
- #: ../modules/mycred-module-addons.php:413
3391
  msgid "By"
3392
  msgstr "توسط"
3393
 
3394
- #: ../modules/mycred-module-addons.php:417
3395
  msgid "About"
3396
  msgstr "درباره"
3397
 
@@ -3401,7 +3424,7 @@ msgid "Log"
3401
  msgstr "لیست گزارش ( لوگ )"
3402
 
3403
  #: ../modules/mycred-module-log.php:276 ../modules/mycred-module-log.php:277 ..
3404
- #: includes/mycred-admin.php:423 ../addons/banking/services/mycred-bank-service-
3405
  #: payouts.php:246
3406
  msgid "History"
3407
  msgstr "لیست تغییرات"
@@ -3410,13 +3433,13 @@ msgstr "لیست تغییرات"
3410
  msgid "Search results for"
3411
  msgstr "نتایج جستجو برای عبارت"
3412
 
3413
- #: ../modules/mycred-module-log.php:525 ../includes/mycred-log.php:874
3414
  msgid "User Missing"
3415
  msgstr "یافت نشدن کاربر"
3416
 
3417
- #: ../modules/mycred-module-log.php:609 ../includes/mycred-log.php:755 ..
3418
- #: includes/mycred-admin.php:796 ../addons/email-notices/myCRED-addon-email-
3419
- #: notices.php:866 ../addons/email-notices/myCRED-addon-email-notices.php:1019
3420
  msgid "User"
3421
  msgstr "کاربر"
3422
 
@@ -3426,22 +3449,22 @@ msgstr "کاربر"
3426
  msgid "Hooks"
3427
  msgstr "پنل تنظیمات امتیازها"
3428
 
3429
- #: ../modules/mycred-module-hooks.php:107
3430
  #, php-format
3431
  msgid "%plural% for registrations"
3432
  msgstr "اهدای %_plural% برای ثبت نام"
3433
 
3434
- #: ../modules/mycred-module-hooks.php:108
3435
  #, php-format
3436
  msgid "Award %_plural% for users joining your website."
3437
  msgstr "برای کاربرانی که عضوی از سایت شما می شوند %_plural% جایزه دهید"
3438
 
3439
- #: ../modules/mycred-module-hooks.php:128
3440
  #, php-format
3441
  msgid "%plural% for logins"
3442
  msgstr "اهدای %_plural% برای وارد شدن به سایت"
3443
 
3444
- #: ../modules/mycred-module-hooks.php:129
3445
  #, php-format
3446
  msgid ""
3447
  "Award %_plural% for logging in to your website. You can also set an optional "
@@ -3450,12 +3473,12 @@ msgstr ""
3450
  "به کاربرانی که در سایت شما لوگین می کنند %_plural% جایزه دهید . البته می "
3451
  "توانید محدودیت های اختیاری هم برای این بخش تعیین کنید ."
3452
 
3453
- #: ../modules/mycred-module-hooks.php:135
3454
  #, php-format
3455
  msgid "%plural% for publishing content"
3456
  msgstr "اهدای %_plural% به کاربران ، برای انتشار مطلب در سایت شما"
3457
 
3458
- #: ../modules/mycred-module-hooks.php:136
3459
  #, php-format
3460
  msgid ""
3461
  "Award %_plural% for publishing content on your website. If your custom post "
@@ -3465,22 +3488,22 @@ msgstr ""
3465
  "کند ) ، %_plural% جایزه دهید . اگر نوع مطلبی که می خواهید در زیر نیامده است "
3466
  "، ابتدا اطمینان حاصل کنید که نوع مطلب مورد نظرتان \"عمومی\" باشد ."
3467
 
3468
- #: ../modules/mycred-module-hooks.php:142
3469
  #, php-format
3470
  msgid "%plural% for comments"
3471
  msgstr "اهدای %_plural% برای ثبت دیدگاه"
3472
 
3473
- #: ../modules/mycred-module-hooks.php:143
3474
  #, php-format
3475
  msgid "Award %_plural% for making comments."
3476
  msgstr "به کاربرانی که در بخش های مختلف سایت شما نظر می دهند ، %_plural% جایزه دهید ."
3477
 
3478
- #: ../modules/mycred-module-hooks.php:149
3479
  #, php-format
3480
  msgid "%plural% for clicking on links"
3481
  msgstr "اهدای %_plural% برای کلیک کردن بر روی لینک ها"
3482
 
3483
- #: ../modules/mycred-module-hooks.php:150
3484
  msgid ""
3485
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
3486
  "shortcode."
@@ -3488,12 +3511,12 @@ msgstr ""
3488
  "به کاربرانی که روی لینک های تولید شده با کد [mycred_link] ، کلیک می کنند ، "
3489
  "%_plural% جایزه دهید ."
3490
 
3491
- #: ../modules/mycred-module-hooks.php:156
3492
  #, php-format
3493
  msgid "%plural% for viewing Videos"
3494
  msgstr "اهدای %_plural% برای تماشای ویدیوها"
3495
 
3496
- #: ../modules/mycred-module-hooks.php:157
3497
  msgid ""
3498
  "Award %_plural% to users who watches videos embedded using the "
3499
  "[mycred_video] shortcode."
@@ -3501,12 +3524,12 @@ msgstr ""
3501
  "به کاربرانی که ویدیوهای تولید شده با کد-کوتاه [mycred_video] را تماشا می "
3502
  "کنند ، %_plural% جایزه دهید ."
3503
 
3504
- #: ../modules/mycred-module-hooks.php:199
3505
  #, php-format
3506
  msgid "%s Hooks"
3507
  msgstr "پنل تنظیمات امتیازهای %s"
3508
 
3509
- #: ../modules/mycred-module-hooks.php:203
3510
  #, php-format
3511
  msgid ""
3512
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
@@ -3515,167 +3538,167 @@ msgstr ""
3515
  "پنل تنظیماتی امتیازها محلی است که شما تعیین می کنید چه مقدار %_plural% بر "
3516
  "اساس انجام انواع عملیات ها ، به کاربرانتان اهدا شده و یا از آن ها کسر گردد ."
3517
 
3518
- #: ../modules/mycred-module-hooks.php:222 ../addons/banking/myCRED-addon-banking.
3519
- #: php:248 ../addons/buy-creds/myCRED-addon-buy-creds.php:954
3520
  msgid "Enable"
3521
  msgstr "فعالسازی"
3522
 
3523
- #: ../modules/mycred-module-hooks.php:240 ../addons/banking/myCRED-addon-banking.
3524
- #: php:261
3525
  msgid "Update Changes"
3526
  msgstr "به روزرسانی تغییرات"
3527
 
3528
- #: ../modules/mycred-module-hooks.php:417 ../modules/mycred-module-hooks.php:523 .
3529
- #: ./modules/mycred-module-hooks.php:690 ../modules/mycred-module-hooks.php:721 ..
3530
- #: modules/mycred-module-hooks.php:798 ../modules/mycred-module-hooks.php:1164 ..
3531
- #: modules/mycred-module-hooks.php:1181 ../modules/mycred-module-hooks.php:1230 .
3532
- #: ./modules/mycred-module-hooks.php:1682 ../modules/mycred-module-hooks.php:1699
3533
- #: ../modules/mycred-module-hooks.php:1716 ../modules/mycred-module-hooks.php:
3534
- #: 3007 ../modules/mycred-module-hooks.php:3027 ../plugins/mycred-hook-invite-
3535
- #: anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ../plugins/mycred-
3536
- #: hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-postratings.php:183 ..
3537
- #: plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-hook-simplepress.
3538
- #: php:289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
3539
- #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
3540
- #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
3541
- #: buddypress.php:513 ../plugins/mycred-hook-buddypress.php:530 ../plugins/mycred-
3542
- #: hook-buddypress.php:547 ../plugins/mycred-hook-buddypress.php:567 ..
3543
- #: plugins/mycred-hook-buddypress.php:580 ../plugins/mycred-hook-buddypress.php:
3544
- #: 597 ../plugins/mycred-hook-buddypress.php:610 ../plugins/mycred-hook-
3545
- #: buddypress.php:627 ../plugins/mycred-hook-buddypress.php:644 ../plugins/mycred-
3546
- #: hook-buddypress.php:1218 ../plugins/mycred-hook-buddypress.php:1231 ..
3547
- #: plugins/mycred-hook-buddypress.php:1248 ../plugins/mycred-hook-buddypress.php:
3548
- #: 1265 ../plugins/mycred-hook-buddypress.php:1282 ../plugins/mycred-hook-
3549
- #: buddypress.php:1299 ../plugins/mycred-hook-buddypress.php:1317 ..
3550
- #: plugins/mycred-hook-buddypress.php:1330 ../plugins/mycred-hook-buddypress.php:
3551
- #: 1347 ../plugins/mycred-hook-buddypress.php:1364 ../plugins/mycred-hook-
3552
- #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
3553
- #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
3554
- #: buddypress-links.php:308 ../plugins/mycred-hook-buddypress-links.php:325 ..
3555
- #: plugins/mycred-hook-buddypress-links.php:338 ../plugins/mycred-hook-
3556
- #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
3557
  #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-buddypress-media.
3558
- #: php:213 ../plugins/mycred-hook-buddypress-media.php:227 ../plugins/mycred-hook-
3559
- #: buddypress-media.php:241 ../plugins/mycred-hook-buddypress-media.php:254 ..
3560
- #: plugins/mycred-hook-buddypress-media.php:264 ../plugins/mycred-hook-
3561
- #: buddypress-media.php:274 ../plugins/mycred-hook-contact-form7.php:152 ..
3562
- #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
3563
- #: plugins/mycred-hook-bbPress.php:415 ../plugins/mycred-hook-bbPress.php:428 ..
3564
- #: plugins/mycred-hook-bbPress.php:445 ../plugins/mycred-hook-bbPress.php:463 ..
3565
- #: plugins/mycred-hook-bbPress.php:480 ../plugins/mycred-hook-bbPress.php:497 ..
3566
- #: plugins/mycred-hook-bbPress.php:519 ../plugins/mycred-hook-badgeOS.php:298
3567
  msgid "Log template"
3568
  msgstr "نمونه ی لیست گزارش ( لوگ )"
3569
 
3570
- #: ../modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:686 .
3571
- #: ./modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:717 ..
3572
- #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:794 ..
3573
- #: modules/mycred-module-hooks.php:1018 ../modules/mycred-module-hooks.php:1160 .
3574
- #: ./modules/mycred-module-hooks.php:1177 ../modules/mycred-module-hooks.php:1226
3575
- #: ../modules/mycred-module-hooks.php:3015 ../modules/mycred-module-hooks.php:
3576
- #: 3035 ../plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-
3577
- #: invite-anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ..
3578
- #: plugins/mycred-hook-invite-anyone.php:226 ../plugins/mycred-hook-wp-
3579
- #: postratings.php:156 ../plugins/mycred-hook-wp-postratings.php:175 ..
3580
- #: plugins/mycred-hook-gravityforms.php:148 ../plugins/mycred-hook-simplepress.
3581
- #: php:284 ../plugins/mycred-hook-simplepress.php:314 ../plugins/mycred-hook-
3582
- #: buddypress-gallery.php:102 ../plugins/mycred-hook-buddypress.php:508 ..
3583
- #: plugins/mycred-hook-buddypress.php:525 ../plugins/mycred-hook-buddypress.php:
3584
- #: 542 ../plugins/mycred-hook-buddypress.php:559 ../plugins/mycred-hook-
3585
- #: buddypress.php:592 ../plugins/mycred-hook-buddypress.php:622 ../plugins/mycred-
3586
- #: hook-buddypress.php:639 ../plugins/mycred-hook-buddypress.php:1243 ..
3587
- #: plugins/mycred-hook-buddypress.php:1260 ../plugins/mycred-hook-buddypress.php:
3588
- #: 1277 ../plugins/mycred-hook-buddypress.php:1294 ../plugins/mycred-hook-
3589
- #: buddypress.php:1312 ../plugins/mycred-hook-buddypress.php:1342 ..
3590
- #: plugins/mycred-hook-buddypress.php:1359 ../plugins/mycred-hook-buddypress-
3591
- #: links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
3592
- #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
3593
- #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
3594
- #: plugins/mycred-hook-buddypress-links.php:320 ../plugins/mycred-hook-
3595
- #: affiliatewp.php:237 ../plugins/mycred-hook-events-manager-light.php:192 ..
3596
  #: plugins/mycred-hook-sharethis.php:302 ../plugins/mycred-hook-buddypress-media.
3597
- #: php:209 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
3598
- #: buddypress-media.php:237 ../plugins/mycred-hook-wp-favorite-posts.php:213 ..
3599
- #: plugins/mycred-hook-wp-favorite-posts.php:231 ../plugins/mycred-hook-contact-
3600
- #: form7.php:147 ../plugins/mycred-hook-bbPress.php:410 ../plugins/mycred-hook-
3601
- #: bbPress.php:440 ../plugins/mycred-hook-bbPress.php:475 ../plugins/mycred-hook-
3602
- #: bbPress.php:492 ../plugins/mycred-hook-woocommerce.php:317 ../includes/mycred-
3603
- #: shortcodes.php:1132
3604
  msgid "Limit"
3605
  msgstr "محدوده"
3606
 
3607
- #: ../modules/mycred-module-hooks.php:683 ../modules/mycred-module-hooks.php:699 .
3608
- #: ./modules/mycred-module-hooks.php:714 ../modules/mycred-module-hooks.php:730 ..
3609
- #: modules/mycred-module-hooks.php:791 ../modules/mycred-module-hooks.php:807 ..
3610
- #: modules/mycred-module-hooks.php:1677 ../modules/mycred-module-hooks.php:1694 .
3611
- #: ./modules/mycred-module-hooks.php:1711
3612
  msgid "Content Author"
3613
  msgstr "نویسنده ی مطلب"
3614
 
3615
- #: ../modules/mycred-module-hooks.php:1011 ../modules/mycred-module-hooks.php:
3616
- #: 2032 ../modules/mycred-module-hooks.php:2402 ../plugins/mycred-hook-wp-polls.
3617
- #: php:136 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
3618
- #: gd-star-rating.php:122 ../plugins/mycred-hook-events-manager-light.php:196 ..
3619
- #: plugins/mycred-hook-events-manager-light.php:209 ../plugins/mycred-hook-wp-
3620
- #: favorite-posts.php:217 ../plugins/mycred-hook-wp-favorite-posts.php:235 ..
3621
- #: plugins/mycred-hook-wp-favorite-posts.php:249 ../plugins/mycred-hook-wp-
3622
- #: favorite-posts.php:262 ../plugins/mycred-hook-woocommerce.php:321 ..
3623
- #: plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-hook-badgeOS.php:126 ..
3624
- #: plugins/mycred-hook-badgeOS.php:135 ../addons/banking/services/mycred-bank-
3625
  #: service-payouts.php:283 ../addons/banking/services/mycred-bank-service-
3626
  #: interest.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:371 ..
3627
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
3628
  #: addons/gateway/carts/mycred-woocommerce.php:176 ..
3629
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
3630
  #: addons/gateway/carts/mycred-marketpress.php:428 ../addons/coupons/myCRED-
3631
- #: addon-coupons.php:557 ../addons/buy-creds/myCRED-addon-buy-creds.php:673 ..
3632
- #: addons/buy-creds/myCRED-addon-buy-creds.php:736
3633
  msgid "Log Template"
3634
  msgstr "نمونه لیست گزارش ( لوگ )"
3635
 
3636
- #: ../modules/mycred-module-hooks.php:1154
3637
  #, php-format
3638
  msgid "%plural% for Posts"
3639
  msgstr "اهدای %plural% برای پست ها"
3640
 
3641
- #: ../modules/mycred-module-hooks.php:1171
3642
  #, php-format
3643
  msgid "%plural% for Pages"
3644
  msgstr "اهدای %plural% برای ایجاد صفحات"
3645
 
3646
- #: ../modules/mycred-module-hooks.php:1220
3647
  #, php-format
3648
  msgid "%plural% for %s"
3649
  msgstr "اهدای %plural% برای %s"
3650
 
3651
- #: ../modules/mycred-module-hooks.php:1670 ../includes/mycred-functions.php:2524
3652
  msgid "Approved Comment"
3653
  msgstr "نظرات تایید شده"
3654
 
3655
- #: ../modules/mycred-module-hooks.php:1673 ../modules/mycred-module-hooks.php:
3656
- #: 1690 ../modules/mycred-module-hooks.php:1707
3657
  msgid "Comment Author"
3658
  msgstr "نویسنده ی دیدگاه"
3659
 
3660
- #: ../modules/mycred-module-hooks.php:1687
3661
  msgid "Comment Marked SPAM"
3662
  msgstr "دیدگاه هایی که به عنوان اسپم نشانه گذاری شده اند"
3663
 
3664
- #: ../modules/mycred-module-hooks.php:1704
3665
  msgid "Trashed / Unapproved Comments"
3666
  msgstr "دیدگاه ها تایید نشده یا منتقل شده به زباله دان"
3667
 
3668
- #: ../modules/mycred-module-hooks.php:1721 ../modules/mycred-module-hooks.php:
3669
- #: 2039 ../addons/transfer/myCRED-addon-transfer.php:259 ../addons/coupons/myCRED-
3670
  #: addon-coupons.php:175
3671
  msgid "Limits"
3672
  msgstr "محدودیت ها"
3673
 
3674
- #: ../modules/mycred-module-hooks.php:1724
3675
  msgid "Limit per post"
3676
  msgstr "محدودیت برای هر پست"
3677
 
3678
- #: ../modules/mycred-module-hooks.php:1726
3679
  msgid ""
3680
  "The number of comments per post that grants %_plural% to the comment author. "
3681
  "Use zero for unlimited."
@@ -3683,17 +3706,17 @@ msgstr ""
3683
  "تعداد دیدگاه های مجاز برای هر پست ، که باعث کسب %_plural% برای کاربر خواهد "
3684
  "شد . برای برداشتن این محدودیت عدد صفر را وارد کنید ."
3685
 
3686
- #: ../modules/mycred-module-hooks.php:1730
3687
  msgid "Limit per day"
3688
  msgstr "محدودیت هر روزه"
3689
 
3690
- #: ../modules/mycred-module-hooks.php:1732
3691
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
3692
  msgstr ""
3693
  "تعداد دیدگاه های مجاز در روز ، که باعث کسب %_plural% خواهد شد . برای برداشتن "
3694
  "این محدودیت عدد صفر را وارد کنید ."
3695
 
3696
- #: ../modules/mycred-module-hooks.php:1737
3697
  #, php-format
3698
  msgid ""
3699
  "%plural% is to be awarded even when comment authors reply to their own "
@@ -3702,15 +3725,15 @@ msgstr ""
3702
  "اهدای %_plural% حتی برای زمانی که کاربر به نظر قبلی خودش پاسخ بدهد ( نظرهای "
3703
  "تو در تو )"
3704
 
3705
- #: ../modules/mycred-module-hooks.php:1817
3706
  msgid "Once for each unique URL"
3707
  msgstr "یک بار برای هر لینک یکتا"
3708
 
3709
- #: ../modules/mycred-module-hooks.php:1818
3710
  msgid "Once for each unique link id"
3711
  msgstr "یک بار برای هر شناسه ( آی دی ) لینک یکتا"
3712
 
3713
- #: ../modules/mycred-module-hooks.php:2029
3714
  msgid ""
3715
  "The default amount to award for clicking on links. You can override this in "
3716
  "the shortcode."
@@ -3718,11 +3741,11 @@ msgstr ""
3718
  "مقدار پیش فرضی که برای کلیک بر روی لینک ها اهدا می گردد . می توانید این "
3719
  "مقدار را در شورت کد مربوطه ، مجددا تنظیم نمایید ."
3720
 
3721
- #: ../modules/mycred-module-hooks.php:2049 ../modules/mycred-module-hooks.php:3103
3722
  msgid "Note!"
3723
  msgstr "نکته !"
3724
 
3725
- #: ../modules/mycred-module-hooks.php:2049
3726
  msgid ""
3727
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
3728
  "generate one automatically based on the value set under href. If you are "
@@ -3734,45 +3757,45 @@ msgstr ""
3734
  "href ، شناسه ای ایجاد می کند . اگر از این ویژگی برای به اشتراک گذاری محتوا "
3735
  "استفاده می کنید ، پیشنهاد می گردد با شناسه کار کنید ."
3736
 
3737
- #: ../modules/mycred-module-hooks.php:2399
3738
  msgid "Amount to award for viewing videos."
3739
  msgstr "مقداری که به ازای تماشای ویدیوها به کاربر اهدا می گردد ."
3740
 
3741
- #: ../modules/mycred-module-hooks.php:2409
3742
  msgid "Award Logic"
3743
  msgstr "منطق اهدای امتیازات"
3744
 
3745
- #: ../modules/mycred-module-hooks.php:2411
3746
  #, php-format
3747
  msgid "Select when %_plural% should be awarded or deducted."
3748
  msgstr "مشخص کنید چه موقع باید %_plural% اهدا و یا کسر بشود ."
3749
 
3750
- #: ../modules/mycred-module-hooks.php:2412
3751
  msgid "Play - As soon as video starts playing."
3752
  msgstr "پخش - به محض شروع به پخش ویدیو"
3753
 
3754
- #: ../modules/mycred-module-hooks.php:2413
3755
  msgid "Full - First when the entire video has played."
3756
  msgstr "کامل - بعد از اینکه کل ویدیو به صورت کامل پخش بشود"
3757
 
3758
- #: ../modules/mycred-module-hooks.php:2414
3759
  msgid "Interval - For each x number of seconds watched."
3760
  msgstr "بازه ای - برای هر تعداد ثانیه ی مشخصی از ویدیو که تماشا می شود ."
3761
 
3762
- #: ../modules/mycred-module-hooks.php:2417 ../addons/banking/services/mycred-bank-
3763
  #: service-payouts.php:271
3764
  msgid "Interval"
3765
  msgstr "فاصله زمانی"
3766
 
3767
- #: ../modules/mycred-module-hooks.php:2419
3768
  msgid "Number of seconds"
3769
  msgstr "تعداد ثانیه ها"
3770
 
3771
- #: ../modules/mycred-module-hooks.php:2426
3772
  msgid "Leniency"
3773
  msgstr "نرمی و ملایمت"
3774
 
3775
- #: ../modules/mycred-module-hooks.php:2428
3776
  msgid ""
3777
  "The maximum percentage a users view of a movie can differ from the actual "
3778
  "length."
@@ -3780,7 +3803,7 @@ msgstr ""
3780
  "بیشترین درصد ممکنی که طول یک ویدیو ممکنه با چیزی که برای کاربران نمایش داده "
3781
  "می شه ، تفاوت پیدا کنه"
3782
 
3783
- #: ../modules/mycred-module-hooks.php:2431
3784
  msgid ""
3785
  "Do not set this value to zero! A lot of thing can happen while a user "
3786
  "watches a movie and sometimes a few seconds can drop of the counter due to "
@@ -3791,11 +3814,11 @@ msgstr ""
3791
  "در طی بارگذاری و یا پخش مجدد می گیره ، ممکنه چند ثانیه ش اینور و اونور بشه ( "
3792
  "روی ثانیه شمار ویدیو تغییر ایجاد کنه )"
3793
 
3794
- #: ../modules/mycred-module-hooks.php:3080 ../includes/mycred-widgets.php:196 ..
3795
  #: includes/mycred-widgets.php:385 ../includes/mycred-widgets.php:594 ..
3796
  #: addons/gateway/carts/mycred-woocommerce.php:92 ..
3797
  #: addons/transfer/includes/mycred-transfer-widgets.php:120 ..
3798
- #: addons/ranks/myCRED-addon-ranks.php:1319 ../addons/buy-creds/gateways/skrill.
3799
  #: php:339
3800
  msgid "Title"
3801
  msgstr "عنوان"
@@ -3810,227 +3833,230 @@ msgid "%s's History"
3810
  msgstr "لیست اعمال و گزارشات %s"
3811
 
3812
  #: ../modules/mycred-module-buddypress.php:236 ../modules/mycred-module-
3813
- #: buddypress.php:249 ../includes/mycred-log.php:992
3814
  msgid "All"
3815
  msgstr "همگی"
3816
 
3817
- #: ../modules/mycred-module-buddypress.php:237 ../includes/mycred-log.php:993 ..
3818
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:189
 
3819
  msgid "Today"
3820
  msgstr "امروز"
3821
 
3822
- #: ../modules/mycred-module-buddypress.php:238 ../includes/mycred-log.php:994
3823
  msgid "Yesterday"
3824
  msgstr "دیروز"
3825
 
3826
- #: ../modules/mycred-module-buddypress.php:239 ../includes/mycred-log.php:995 ..
3827
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:190
 
3828
  msgid "This Week"
3829
  msgstr "این هفته"
3830
 
3831
- #: ../modules/mycred-module-buddypress.php:240 ../includes/mycred-log.php:996 ..
3832
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:191
 
3833
  msgid "This Month"
3834
  msgstr "این ماه"
3835
 
3836
- #: ../modules/mycred-module-buddypress.php:417 ../addons/gateway/carts/mycred-
3837
- #: woocommerce.php:152 ../addons/badges/myCRED-addon-badges.php:970 ..
3838
- #: addons/badges/myCRED-addon-badges.php:1001
3839
  msgid "Do not show"
3840
  msgstr "نمایش نده !"
3841
 
3842
- #: ../modules/mycred-module-buddypress.php:419 ../addons/ranks/myCRED-addon-ranks.
3843
- #: php:1408 ../addons/badges/myCRED-addon-badges.php:972
3844
  msgid "Include under the \"Profile\" tab"
3845
  msgstr "شامل ( نمایش در ) زیر تب \"پروفایل کاربر\" "
3846
 
3847
- #: ../modules/mycred-module-buddypress.php:424 ../addons/ranks/myCRED-addon-ranks.
3848
- #: php:1406 ../addons/ranks/myCRED-addon-ranks.php:1451
3849
  msgid "Do not show."
3850
  msgstr "عدم نمایش"
3851
 
3852
- #: ../modules/mycred-module-buddypress.php:425
3853
  msgid "Show in Profile"
3854
  msgstr "نمایش در پروفایل"
3855
 
3856
- #: ../modules/mycred-module-buddypress.php:442
3857
  #, php-format
3858
  msgid "%singular% Balance"
3859
  msgstr "میزان %singular%"
3860
 
3861
- #: ../modules/mycred-module-buddypress.php:464 ../addons/ranks/myCRED-addon-ranks.
3862
- #: php:1428 ../addons/ranks/myCRED-addon-ranks.php:1473 ..
3863
- #: addons/notifications/myCRED-addon-notifications.php:201
3864
  msgid "Template"
3865
  msgstr "نمونه ( الگو )"
3866
 
3867
- #: ../modules/mycred-module-buddypress.php:469
3868
  #, php-format
3869
  msgid "%plural% History"
3870
  msgstr "گزارش جابجایی %plural%"
3871
 
3872
- #: ../modules/mycred-module-buddypress.php:486
3873
  msgid "Members can view each others %_plural% history."
3874
  msgstr "اعضا می توانند گزارشات لیست شده از جابجایی %_plural% دیگران را ببینند ."
3875
 
3876
- #: ../modules/mycred-module-buddypress.php:491
3877
  msgid "Menu Title"
3878
  msgstr "عنوان منو"
3879
 
3880
- #: ../modules/mycred-module-buddypress.php:493
3881
  msgid "Title shown to me"
3882
  msgstr "عنوان به من نمایش داده شد"
3883
 
3884
- #: ../modules/mycred-module-buddypress.php:498
3885
  #, php-format
3886
  msgid "Title shown to others. Use %s to show the first name."
3887
  msgstr ""
3888
  "عنوان به کاربران نمایش داده شد . برای اینکه فقط نام اول نمایش داده شود از %s "
3889
  "استفاده کنید ."
3890
 
3891
- #: ../modules/mycred-module-buddypress.php:503
3892
  msgid "Menu Position"
3893
  msgstr "جایگاه منو"
3894
 
3895
- #: ../modules/mycred-module-buddypress.php:505
3896
  msgid "Current menu positions:"
3897
  msgstr "جایگاه فعلی منو :"
3898
 
3899
- #: ../modules/mycred-module-buddypress.php:510
3900
  msgid "History URL slug"
3901
  msgstr "لیست تغییرات قسمت پایانی و معنی دار نشانی های اینترنتی"
3902
 
3903
- #: ../modules/mycred-module-buddypress.php:512
3904
  msgid "Do not use empty spaces!"
3905
  msgstr "از فضاهای خالی استفاده نکنید ( اسپیس نزنید ! )"
3906
 
3907
- #: ../modules/mycred-module-buddypress.php:517
3908
  msgid "Number of history entries to show"
3909
  msgstr "تعداد داده های ورودی (تغییرات) قابل نمایش لیست"
3910
 
3911
- #: ../plugins/mycred-hook-invite-anyone.php:18
3912
  msgid "Invite Anyone Plugin"
3913
  msgstr "افزونه ی Invite Anyone"
3914
 
3915
- #: ../plugins/mycred-hook-invite-anyone.php:19
3916
  #, php-format
3917
  msgid ""
3918
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
3919
  "accepted."
3920
  msgstr "اهدای %_plural% برای فرستادن و یا قبول کردن دعوتنامه"
3921
 
3922
- #: ../plugins/mycred-hook-invite-anyone.php:190
3923
  #, php-format
3924
  msgid "%plural% for Sending An Invite"
3925
  msgstr "اهدای %plural% برای ارسال دعوتنامه"
3926
 
3927
- #: ../plugins/mycred-hook-invite-anyone.php:210
3928
  #, php-format
3929
  msgid "%plural% for Accepting An Invite"
3930
  msgstr "اهدای %plural% برای قبول دعتنامه"
3931
 
3932
- #: ../plugins/mycred-hook-invite-anyone.php:214
3933
  #, php-format
3934
  msgid "%plural% for each invited user that accepts an invitation."
3935
  msgstr "اهدای %plural% به ازای هر کاربرِ دعوت شده ای که دعوتنامه را قبول کند ."
3936
 
3937
- #: ../plugins/mycred-hook-wp-polls.php:18
3938
  msgid "WP-Polls"
3939
  msgstr "نظرسنجی های وردپرس | WP-Polls"
3940
 
3941
- #: ../plugins/mycred-hook-wp-polls.php:19
3942
  #, php-format
3943
  msgid "Awards %_plural% for users voting in polls."
3944
  msgstr "اهدای %_plural% برای کاربرانی که در نظرسنجی ها رای می دهند ."
3945
 
3946
- #: ../plugins/mycred-hook-gravityforms.php:118 ../plugins/mycred-hook-contact-
3947
- #: form7.php:117
3948
  msgid "No forms found."
3949
  msgstr "فرمی یافت نشد ."
3950
 
3951
- #: ../plugins/mycred-hook-gd-star-rating.php:18
3952
  msgid "GD Star Rating"
3953
  msgstr "افزونه ی GD Star Rating"
3954
 
3955
- #: ../plugins/mycred-hook-gd-star-rating.php:19
3956
  #, php-format
3957
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
3958
  msgstr ""
3959
  "اهدای %_plural% برای کسانی که توسط افزونه ی GD Star Rating به انواع محتوای "
3960
  "سایت امتیاز می دهند ."
3961
 
3962
- #: ../plugins/mycred-hook-gd-star-rating.php:103
3963
  msgid "Rating"
3964
  msgstr "رتبه بندی"
3965
 
3966
- #: ../plugins/mycred-hook-gd-star-rating.php:116
3967
  msgid "Up / Down Vote"
3968
  msgstr "رای موافق / مخالف"
3969
 
3970
- #: ../plugins/mycred-hook-simplepress.php:19
3971
  #, php-format
3972
  msgid "Awards %_plural% for Simple:Press actions."
3973
  msgstr "اهدای %_plural% برای فعالیت در سیمپل پرس ( افزونه ای انجمن ساز برای وردپرس )"
3974
 
3975
- #: ../plugins/mycred-hook-simplepress.php:278 ../plugins/mycred-hook-bbPress.php:
3976
- #: 434
3977
  #, php-format
3978
  msgid "%plural% for New Topic"
3979
  msgstr "اهدای %plural% برای تاپیک جدید"
3980
 
3981
- #: ../plugins/mycred-hook-simplepress.php:295 ../plugins/mycred-hook-bbPress.php:
3982
- #: 456
3983
  #, php-format
3984
  msgid "%plural% for Topic Deletion"
3985
  msgstr "اهدای %plural% برای پاکسازی و یا ادیت تاپیک"
3986
 
3987
- #: ../plugins/mycred-hook-simplepress.php:308
3988
  #, php-format
3989
  msgid "%plural% for New Topic Post"
3990
  msgstr "اهدای %_plural% برای پست تاپیک جدید"
3991
 
3992
- #: ../plugins/mycred-hook-simplepress.php:326
3993
  #, php-format
3994
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
3995
  msgstr ""
3996
  "نویسندگان تاپیک می توانند برای قرار دادن پست بر روی تاپیک خودشان %_plural% "
3997
  "کسب کنند ."
3998
 
3999
- #: ../plugins/mycred-hook-simplepress.php:330
4000
  #, php-format
4001
  msgid "%plural% for Topic Post Deletion"
4002
  msgstr "اهدا یا کسر %plural% برای حذف کامل یا بخشی از پست تاپیک"
4003
 
4004
- #: ../plugins/mycred-hook-buddypress-gallery.php:19
4005
  msgid "BuddyPress: Gallery Actions"
4006
  msgstr "بادی پرس : فعالیت های گالری"
4007
 
4008
- #: ../plugins/mycred-hook-buddypress-gallery.php:20
4009
  #, php-format
4010
  msgid ""
4011
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
4012
  "Gallery."
4013
  msgstr "اهدای %_plural% برای ساختن گالری جدید ، چه با BP Album+ ، چه با BP Gallery ."
4014
 
4015
- #: ../plugins/mycred-hook-buddypress-gallery.php:96
4016
  #, php-format
4017
  msgid "%plural% for New Gallery"
4018
  msgstr "اهدای %plural% برای گالری جدید"
4019
 
4020
- #: ../plugins/mycred-hook-buddypress.php:14
4021
  msgid "BuddyPress: Members"
4022
  msgstr "بادی پرس : اعضا"
4023
 
4024
- #: ../plugins/mycred-hook-buddypress.php:15
4025
  #, php-format
4026
  msgid "Awards %_plural% for profile related actions."
4027
  msgstr "اهدای %_plural% برای انجام فعالیت های مرتبط با پروفایل کاربری ."
4028
 
4029
- #: ../plugins/mycred-hook-buddypress.php:22
4030
  msgid "BuddyPress: Groups"
4031
  msgstr "بادی پرس : گروه ها"
4032
 
4033
- #: ../plugins/mycred-hook-buddypress.php:23
4034
  #, php-format
4035
  msgid ""
4036
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
@@ -4039,59 +4065,59 @@ msgstr ""
4039
  "اهدای %_plural% برای انواع فعالیت های مربوط به گروه . می توانید از عدد منفی "
4040
  "برای کسر %_plural% و عدد صفر برای غیرفعالسازی تنظیماتی خاص ، استفاده نمایید ."
4041
 
4042
- #: ../plugins/mycred-hook-buddypress.php:252 ../addons/gateway/event-
4043
  #: booking/mycred-eventsmanager.php:636 ../addons/gateway/event-booking/mycred-
4044
  #: eventsmanager-pro.php:617 ../addons/gateway/carts/mycred-wpecommerce.php:386 ..
4045
  #: addons/gateway/carts/mycred-marketpress.php:438
4046
  msgid "Insufficient Funds"
4047
  msgstr "موجودی کافی نیست !"
4048
 
4049
- #: ../plugins/mycred-hook-buddypress.php:502
4050
  #, php-format
4051
  msgid "%plural% for Profile Updates"
4052
  msgstr "اهدای %plural% برای به روزرسانی پروفایل کاربری"
4053
 
4054
- #: ../plugins/mycred-hook-buddypress.php:536
4055
  #, php-format
4056
  msgid "%plural% for New Avatar"
4057
  msgstr "اهدای %plural% برای آواتار جدید"
4058
 
4059
- #: ../plugins/mycred-hook-buddypress.php:553
4060
  #, php-format
4061
  msgid "%plural% for New Friendships"
4062
  msgstr "اهدای %plural% برای رابطه ی دوستی جدید"
4063
 
4064
- #: ../plugins/mycred-hook-buddypress.php:573
4065
  #, php-format
4066
  msgid "%plural% for Leaving Friendship"
4067
  msgstr "اهدا یا کسر %plural% برای حذف رابطه دوستی"
4068
 
4069
- #: ../plugins/mycred-hook-buddypress.php:586
4070
  #, php-format
4071
  msgid "%plural% for New Comment"
4072
  msgstr "اهدای %plural% برای دیدگاه جدید"
4073
 
4074
- #: ../plugins/mycred-hook-buddypress.php:603
4075
  #, php-format
4076
  msgid "%plural% for Deleting Comment"
4077
  msgstr "اهدا یا کسر %plural% برای پاک کردن دیدگاه"
4078
 
4079
- #: ../plugins/mycred-hook-buddypress.php:616
4080
  #, php-format
4081
  msgid "%plural% for New Messages"
4082
  msgstr "اهدای %plural% برای پیام جدید"
4083
 
4084
- #: ../plugins/mycred-hook-buddypress.php:633
4085
  #, php-format
4086
  msgid "%plural% for Sending Gift"
4087
  msgstr "اهدای %plural% برای ارسال هدیه"
4088
 
4089
- #: ../plugins/mycred-hook-buddypress.php:1204
4090
  #, php-format
4091
  msgid "%plural% for Creating Groups"
4092
  msgstr "اهدای %plural% برای ساخت گروه ها"
4093
 
4094
- #: ../plugins/mycred-hook-buddypress.php:1208
4095
  msgid ""
4096
  "If you use a negative value and the user does not have enough %_plural% the "
4097
  "\"Create Group\" button will be disabled."
@@ -4099,45 +4125,45 @@ msgstr ""
4099
  "اگر از مقداری منفی استفاده کنید و کاربر هم %_plural% کافی برای کسر شدن "
4100
  "نداشته باشد ، کلید \"ساخت گروه\" غیرفعال خواهد شد ."
4101
 
4102
- #: ../plugins/mycred-hook-buddypress.php:1212
4103
  msgid "Number of members before awarding %_plural%"
4104
  msgstr "تعداد کاربران قبل از اهدای %_plural%"
4105
 
4106
- #: ../plugins/mycred-hook-buddypress.php:1214
4107
  msgid "Use zero to award %_plural% when group is created."
4108
  msgstr "برای اهدای %_plural% به هنگامی که گروه ساخته شد ، از عدد صفر استفاده نمایید ."
4109
 
4110
- #: ../plugins/mycred-hook-buddypress.php:1224
4111
  #, php-format
4112
  msgid "%plural% for Deleting Groups"
4113
  msgstr "اهدای %plural% برای حذف گروه ها"
4114
 
4115
- #: ../plugins/mycred-hook-buddypress.php:1237
4116
  #, php-format
4117
  msgid "%plural% for New Forum Topic"
4118
  msgstr "اهدای %plural% برای ایجاد تاپیک جدید در انجمن"
4119
 
4120
- #: ../plugins/mycred-hook-buddypress.php:1254
4121
  #, php-format
4122
  msgid "%plural% for Editing Forum Topic"
4123
  msgstr "اهدای %plural% برای ویرایش تاپیک های انجمن"
4124
 
4125
- #: ../plugins/mycred-hook-buddypress.php:1271
4126
  #, php-format
4127
  msgid "%plural% for New Forum Post"
4128
  msgstr "اهدای %plural% برای پست جدید در انجمن"
4129
 
4130
- #: ../plugins/mycred-hook-buddypress.php:1288
4131
  #, php-format
4132
  msgid "%plural% for Editing Forum Post"
4133
  msgstr "اهدای %plural% برای ویرایش پست های انجمن"
4134
 
4135
- #: ../plugins/mycred-hook-buddypress.php:1305
4136
  #, php-format
4137
  msgid "%plural% for Joining Groups"
4138
  msgstr "اهدای %plural% برای عضویت در گروه ها"
4139
 
4140
- #: ../plugins/mycred-hook-buddypress.php:1309
4141
  msgid ""
4142
  "If you use a negative value and the user does not have enough %_plural% the "
4143
  "\"Join Group\" button will be disabled."
@@ -4145,108 +4171,108 @@ msgstr ""
4145
  "اگر از مقداری منفی استفاده کنید و کاربر هم %_plural% کافی برای کسر شدن "
4146
  "نداشته باشد ، کلید \"عضویت در گروه\" غیرفعال خواهد شد ."
4147
 
4148
- #: ../plugins/mycred-hook-buddypress.php:1323
4149
  #, php-format
4150
  msgid "%plural% for Leaving Groups"
4151
  msgstr "اهدا یا کسر %plural% برای ترک گروه ها"
4152
 
4153
- #: ../plugins/mycred-hook-buddypress.php:1336
4154
  #, php-format
4155
  msgid "%plural% for New Group Avatar"
4156
  msgstr "اهدای %plural% برای آپلود آواتار جدید در گروه "
4157
 
4158
- #: ../plugins/mycred-hook-buddypress.php:1353
4159
  #, php-format
4160
  msgid "%plural% for New Group Comment"
4161
  msgstr "اهدای %plural% برای دیدگاه جدید در گروه"
4162
 
4163
- #: ../plugins/mycred-hook-buddypress-links.php:19
4164
  msgid "BuddyPress: Links"
4165
  msgstr "بادی پرس : لینک ها"
4166
 
4167
- #: ../plugins/mycred-hook-buddypress-links.php:20
4168
  #, php-format
4169
  msgid "Awards %_plural% for link related actions."
4170
  msgstr "اهدای %_plural% برای انجام فعالیت های مرتبط با لینک ، توسط کاربر"
4171
 
4172
- #: ../plugins/mycred-hook-buddypress-links.php:244
4173
  #, php-format
4174
  msgid "%plural% for New Links"
4175
  msgstr "اهدای %plural% برای لینک های جدید"
4176
 
4177
- #: ../plugins/mycred-hook-buddypress-links.php:261
4178
  #, php-format
4179
  msgid "%plural% for Vote on Link"
4180
  msgstr "اهدای %plural% برای رای دادن روی لینک ها"
4181
 
4182
- #: ../plugins/mycred-hook-buddypress-links.php:314
4183
  #, php-format
4184
  msgid "%plural% for Updating Links"
4185
  msgstr "اهدای %plural% برای به روزرسانی لینک ها"
4186
 
4187
- #: ../plugins/mycred-hook-buddypress-links.php:331
4188
  #, php-format
4189
  msgid "%plural% for Deleting Links"
4190
  msgstr "اهدا یا کسر اهدای %plural% برای پاک کردن لینک ها"
4191
 
4192
- #: ../plugins/mycred-hook-affiliatewp.php:256 ../includes/mycred-shortcodes.php:
4193
- #: 988 ../includes/mycred-shortcodes.php:1131 ../includes/mycred-admin.php:749 ..
4194
- #: includes/mycred-admin.php:801 ../addons/banking/services/mycred-bank-service-
4195
- #: payouts.php:266 ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ..
4196
- #: addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/buy-creds/myCRED-
4197
- #: addon-buy-creds.php:1713 ../addons/buy-creds/abstracts/mycred-abstract-payment-
4198
  #: gateway.php:593
4199
  msgid "Amount"
4200
  msgstr "مقدار"
4201
 
4202
- #: ../plugins/mycred-hook-events-manager-light.php:18
4203
  msgid "Events Manager"
4204
  msgstr "مدیریت رویدادها"
4205
 
4206
- #: ../plugins/mycred-hook-events-manager-light.php:19
4207
  #, php-format
4208
  msgid "Awards %_plural% for users attending events."
4209
  msgstr "اهدای %_plural% برای شرکت در رویدادها ."
4210
 
4211
- #: ../plugins/mycred-hook-events-manager-light.php:186
4212
  msgid "Attending Event"
4213
  msgstr "رویداد مشارکتی"
4214
 
4215
- #: ../plugins/mycred-hook-events-manager-light.php:203
4216
  msgid "Cancelling Attendance"
4217
  msgstr "لغو حضور"
4218
 
4219
- #: ../plugins/mycred-hook-wp-favorite-posts.php:18
4220
  msgid "WP Favorite Posts"
4221
  msgstr "پست های لیست علاقمندی ها"
4222
 
4223
- #: ../plugins/mycred-hook-wp-favorite-posts.php:19
4224
  #, php-format
4225
  msgid "Awards %_plural% for users adding posts to their favorites."
4226
  msgstr "اهدای %_plural% به کاربرانی که در لیست علاقمندی های خود پستی اضافه می کنند ."
4227
 
4228
- #: ../plugins/mycred-hook-wp-favorite-posts.php:207
4229
  msgid "Adding Content to Favorites"
4230
  msgstr "اضافه کردن مطلب به لیست علاقمندی ها"
4231
 
4232
- #: ../plugins/mycred-hook-wp-favorite-posts.php:243
4233
  msgid "Removing Content from Favorites"
4234
  msgstr "برداشتن مطلب از لیست علاقمندی ها"
4235
 
4236
- #: ../plugins/mycred-hook-contact-form7.php:18
4237
  msgid "Contact Form 7 Form Submissions"
4238
  msgstr "پر کردن فرم و فرستادن فرم برای افزونه ی Contact Form 7"
4239
 
4240
- #: ../plugins/mycred-hook-contact-form7.php:19
4241
  #, php-format
4242
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
4243
  msgstr "اهدای %_plural% برای پر کردن و فرستادن فرم ( فقط کاربران لوگین شده )"
4244
 
4245
- #: ../plugins/mycred-hook-jetpack.php:18
4246
  msgid "Jetpack Subscriptions"
4247
  msgstr "اشتراک در افزونه جت پک"
4248
 
4249
- #: ../plugins/mycred-hook-jetpack.php:19
4250
  #, php-format
4251
  msgid ""
4252
  "Awards %_plural% for users signing up for site or comment updates using "
@@ -4255,65 +4281,65 @@ msgstr ""
4255
  "اهدای %_plural% برای کاربرانی که توسط افزونه ی جت پک و برای دریافت آپدیت های "
4256
  "بخش نظرات یا حتی خود سایت ثبت نام می کنند ."
4257
 
4258
- #: ../plugins/mycred-hook-jetpack.php:499
4259
  msgid "Site Subscriptions"
4260
  msgstr "اشتراک در سایت"
4261
 
4262
- #: ../plugins/mycred-hook-jetpack.php:512
4263
  msgid "Comment Subscriptions"
4264
  msgstr "اشتراک در دیدگاه ها"
4265
 
4266
- #: ../plugins/mycred-hook-bbPress.php:18
4267
  msgid "bbPress"
4268
  msgstr "افزونه ی انجمن ساز بی بی پرس"
4269
 
4270
- #: ../plugins/mycred-hook-bbPress.php:19
4271
  #, php-format
4272
  msgid "Awards %_plural% for bbPress actions."
4273
  msgstr "اهدای %_plural% برای فعالیت در بی بی پرس ( افزونه ی انجمن ساز برای وردپرس )"
4274
 
4275
- #: ../plugins/mycred-hook-bbPress.php:404
4276
  #, php-format
4277
  msgid "%plural% for New Forum"
4278
  msgstr "اهدای %plural% برای انجمن جدید"
4279
 
4280
- #: ../plugins/mycred-hook-bbPress.php:421
4281
  #, php-format
4282
  msgid "%plural% for Forum Deletion"
4283
  msgstr "اهدای %plural% برای حذف یا ادیت انجمن"
4284
 
4285
- #: ../plugins/mycred-hook-bbPress.php:452
4286
  #, php-format
4287
  msgid "Forum authors can receive %_plural% for creating new topics."
4288
  msgstr "نویسندگان انجمن می توانند برای ساختن تاپیک %plural% دریافت کنند ."
4289
 
4290
- #: ../plugins/mycred-hook-bbPress.php:469
4291
  #, php-format
4292
  msgid "%plural% for Favorited Topic"
4293
  msgstr "اهدای %plural% برای تاپیک های مورد علاقه شده"
4294
 
4295
- #: ../plugins/mycred-hook-bbPress.php:486
4296
  #, php-format
4297
  msgid "%plural% for New Reply"
4298
  msgstr "اهدای %plural% برای پاسخ دادن به تاپیک"
4299
 
4300
- #: ../plugins/mycred-hook-bbPress.php:504
4301
  #, php-format
4302
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
4303
  msgstr "نویسندگان تاپیک می توانند برای پاسخ به تاپیک خودشان %_plural% دریافت کنند"
4304
 
4305
- #: ../plugins/mycred-hook-bbPress.php:508
4306
  #, php-format
4307
  msgid "Show users %_plural% balance in replies"
4308
  msgstr "نمایش دادن %_plural% کاربران در جواب"
4309
 
4310
- #: ../plugins/mycred-hook-badgeOS.php:18
4311
  msgid "BadgeOS"
4312
  msgstr ""
4313
  "افزونه ی BadgeOS ( افزونه ی پیشرفته ی مدال دهی و اعطای تقدیرنامه یا "
4314
  "گواهینامه )"
4315
 
4316
- #: ../plugins/mycred-hook-badgeOS.php:19
4317
  msgid ""
4318
  "Default settings for each BadgeOS Achievement type. These settings may be "
4319
  "overridden for individual achievement type."
@@ -4321,7 +4347,7 @@ msgstr ""
4321
  "تنظیمات پیش فرض برای هر کدام از مدال های badgeOS . می توان این تنظیمات را "
4322
  "برای مدال ها و گواهینامه های شخصی ، مجددا ویرایش نمود ."
4323
 
4324
- #: ../plugins/mycred-hook-badgeOS.php:105
4325
  #, php-format
4326
  msgid ""
4327
  "Please setup your <a href=\"%s\">default settings</a> before using this "
@@ -4330,29 +4356,29 @@ msgstr ""
4330
  "برای استفاده از این ویژگی ، لطفا ابتدا <a href=\"%s\"> تنظیمات پیش فرض </a> "
4331
  "خود را سفارشی سازی کنید"
4332
 
4333
- #: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
4334
  #, php-format
4335
  msgid "%plural% to Award"
4336
  msgstr "%plural% برای اهدا"
4337
 
4338
- #: ../plugins/mycred-hook-badgeOS.php:122
4339
  msgid "Use zero to disable"
4340
  msgstr "برای غیرفعالسازی عدد صفر را وارد کنید"
4341
 
4342
- #: ../plugins/mycred-hook-badgeOS.php:133
4343
  msgid "Deduction Log Template"
4344
  msgstr "نمونه گزارشاتِ ( لوگ ) کسر امتیاز"
4345
 
4346
- #: ../plugins/mycred-hook-badgeOS.php:278
4347
  #, php-format
4348
  msgid "Default %s for %s"
4349
  msgstr "%s پیش فرض برای %s"
4350
 
4351
- #: ../plugins/mycred-hook-badgeOS.php:284
4352
  msgid "Use zero to disable users gaining %_plural%"
4353
  msgstr "برای غیرفعالسازی کسب %_plural% توسط کاربران ، عدد صفر را وارد کنید"
4354
 
4355
- #: ../plugins/mycred-hook-badgeOS.php:288
4356
  msgid "Default Log template"
4357
  msgstr "نمونه ی گزارشات ( لوگ ) پیش فرض"
4358
 
@@ -4385,24 +4411,24 @@ msgstr "نزولی"
4385
  msgid "Filter"
4386
  msgstr "فیــلتر"
4387
 
4388
- #: ../includes/mycred-log.php:756 ../addons/buy-creds/myCRED-addon-buy-creds.php:
4389
- #: 1075
4390
  msgid "Date"
4391
  msgstr "تاریخ"
4392
 
4393
- #: ../includes/mycred-log.php:758
4394
  msgid "Entry"
4395
  msgstr "ورودی"
4396
 
4397
- #: ../includes/mycred-log.php:958
4398
  msgid "No log entries found"
4399
  msgstr "گزارشی یافت نشد !"
4400
 
4401
- #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
4402
  msgid "Search Log"
4403
  msgstr "جستجو در میان لیست گزارش"
4404
 
4405
- #: ../includes/mycred-log.php:977
4406
  msgid "search log entries"
4407
  msgstr "جستجو در بین داده ها"
4408
 
@@ -4554,36 +4580,32 @@ msgstr ""
4554
  msgid "Save Network Settings"
4555
  msgstr "ذخیره تنظیمات شبکه"
4556
 
4557
- #: ../includes/mycred-about.php:77
4558
  #, php-format
4559
  msgid "Welcome to %s %s"
4560
  msgstr "به افزونه \"اعتبار من\" ( %s ) نسخه %s خوش آمدید ."
4561
 
4562
- #: ../includes/mycred-shortcodes.php:175
4563
  msgid "Leaderboard is empty."
4564
  msgstr "لیست برترین ها خالیست"
4565
 
4566
- #: ../includes/mycred-shortcodes.php:525
4567
- msgid "error"
4568
- msgstr "خطا"
4569
-
4570
- #: ../includes/mycred-shortcodes.php:525
4571
  msgid "Anchor missing URL!"
4572
  msgstr "آدرس اینترنتی از نوع Anchor ، در کدها موجود نیست !"
4573
 
4574
- #: ../includes/mycred-shortcodes.php:641
4575
  msgid "Sent"
4576
  msgstr "ارسال شده"
4577
 
4578
- #: ../includes/mycred-shortcodes.php:642
4579
  msgid "Error - Try Again"
4580
  msgstr "خطا - لطفا مجددا تلاش کنید"
4581
 
4582
- #: ../includes/mycred-shortcodes.php:780
4583
  msgid "A video ID is required for this shortcode"
4584
  msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می باشد"
4585
 
4586
- #: ../includes/mycred-shortcodes.php:993 ../addons/gateway/event-booking/mycred-
4587
  #: eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager.
4588
  #: php:578 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:540 ..
4589
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ..
@@ -4593,13 +4615,13 @@ msgid "Exchange Rate"
4593
  msgstr "نرخ مبادلات"
4594
 
4595
  #: ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ..
4596
- #: addons/sell-content/myCRED-addon-sell-content.php:401
4597
  msgid "Sell Content"
4598
  msgstr "فروش محتوا"
4599
 
4600
  #: ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ..
4601
- #: addons/buy-creds/myCRED-addon-buy-creds.php:346 ../addons/buy-creds/myCRED-
4602
- #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712
4603
  msgid "Gateway"
4604
  msgstr "درگاه"
4605
 
@@ -4666,7 +4688,7 @@ msgid "Cancel Setup"
4666
  msgstr "لغو عملیات راه اندازی"
4667
 
4668
  #: ../includes/mycred-install.php:536 ../addons/buy-creds/myCRED-addon-buy-creds.
4669
- #: php:1687
4670
  msgid "Cancel"
4671
  msgstr "لغو"
4672
 
@@ -4697,27 +4719,27 @@ msgstr ""
4697
  msgid "Install & Run"
4698
  msgstr "نصب و راه اندازی"
4699
 
4700
- #: ../includes/mycred-admin.php:239
4701
  msgid "User is excluded"
4702
  msgstr "کاربر بن شد !"
4703
 
4704
- #: ../includes/mycred-admin.php:244
4705
  msgid "Log Entry can not be empty"
4706
  msgstr "داده های لیست گزارش نباید خالی باشد"
4707
 
4708
- #: ../includes/mycred-admin.php:248
4709
  msgid "Amount can not be zero"
4710
  msgstr "این مقدار نباید صفر باشد"
4711
 
4712
- #: ../includes/mycred-admin.php:403
4713
  msgid "Excluded"
4714
  msgstr "بن شده ( محروم شده )"
4715
 
4716
- #: ../includes/mycred-admin.php:424
4717
  msgid "Adjust"
4718
  msgstr "تطبیق"
4719
 
4720
- #: ../includes/mycred-admin.php:626 ../includes/mycred-admin.php:797 ..
4721
  #: addons/gateway/event-booking/mycred-eventespresso3.php:277 ..
4722
  #: addons/gateway/event-booking/mycred-eventespresso3.php:301 ..
4723
  #: addons/gateway/event-booking/mycred-eventsmanager.php:412 ..
@@ -4725,30 +4747,30 @@ msgstr "تطبیق"
4725
  msgid "Current Balance"
4726
  msgstr "میزان امتیازات اخیر"
4727
 
4728
- #: ../includes/mycred-admin.php:742 ../includes/mycred-admin.php:786 ..
4729
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503
4730
  msgid "required"
4731
  msgstr "ضروری"
4732
 
4733
- #: ../includes/mycred-admin.php:744 ../includes/mycred-admin.php:788 ..
4734
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504
4735
  msgid "optional"
4736
  msgstr "اختیاری"
4737
 
4738
- #: ../includes/mycred-admin.php:758 ../includes/mycred-admin.php:802 ..
4739
  #: addons/gateway/event-booking/mycred-eventespresso3.php:470
4740
  msgid "Log Entry"
4741
  msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
4742
 
4743
- #: ../includes/mycred-admin.php:762 ../includes/mycred-admin.php:803
4744
  msgid "Update Balance"
4745
  msgstr "به روزرسانی میزان امتیاز"
4746
 
4747
- #: ../includes/mycred-admin.php:795
4748
  msgid "ID"
4749
  msgstr "شناسه"
4750
 
4751
- #: ../includes/mycred-admin.php:801
4752
  msgid "A positive or negative value"
4753
  msgstr "مقدار مثبت یا منفی"
4754
 
@@ -4822,68 +4844,68 @@ msgstr ""
4822
  msgid "Order"
4823
  msgstr "ترتیب"
4824
 
4825
- #: ../includes/mycred-functions.php:85
4826
  msgid "Point"
4827
  msgstr "امتیاز"
4828
 
4829
- #: ../includes/mycred-functions.php:86
4830
  msgid "Points"
4831
  msgstr "امتیازها"
4832
 
4833
- #: ../includes/mycred-functions.php:447
4834
  msgid "Deleted"
4835
  msgstr "پاک شده"
4836
 
4837
- #: ../includes/mycred-functions.php:594
4838
  msgid "Deleted Item"
4839
  msgstr "موردهای پاک شده"
4840
 
4841
- #: ../includes/mycred-functions.php:658 ../addons/gateway/carts/mycred-
4842
- #: wpecommerce.php:341 ../addons/email-notices/myCRED-addon-email-notices.php:200
4843
  msgid "General"
4844
  msgstr "بخش عمومی"
4845
 
4846
- #: ../includes/mycred-functions.php:665
4847
  msgid "User Related"
4848
  msgstr "مرتبط با کاربر"
4849
 
4850
- #: ../includes/mycred-functions.php:672
4851
  msgid "Post Related"
4852
  msgstr "مرتبط با پست"
4853
 
4854
- #: ../includes/mycred-functions.php:2658 ../addons/transfer/myCRED-addon-transfer.
4855
  #: php:51
4856
  msgid "Transfer"
4857
  msgstr "جابجایی"
4858
 
4859
- #: ../includes/importers/mycred-cubepoints.php:351
4860
  msgid "Import"
4861
  msgstr "درون ریزی"
4862
 
4863
- #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
4864
- #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
4865
  msgid "Banking"
4866
  msgstr "بانکداری"
4867
 
4868
- #: ../addons/banking/myCRED-addon-banking.php:165 ..
4869
  #: addons/banking/services/mycred-bank-service-interest.php:512
4870
  msgid "Compound Interest"
4871
  msgstr "محاسبه ی سود ( بهره )"
4872
 
4873
- #: ../addons/banking/myCRED-addon-banking.php:172
4874
  msgid "Recurring Payouts"
4875
  msgstr "پرداخت های مکرر"
4876
 
4877
- #: ../addons/banking/myCRED-addon-banking.php:225
4878
  #, php-format
4879
  msgid "%s Banking"
4880
  msgstr "بانکداری %s"
4881
 
4882
- #: ../addons/banking/myCRED-addon-banking.php:231
4883
  msgid "WP-Cron deactivation detected!"
4884
  msgstr "غیرفعالسازی WP-Cron یافت شد !"
4885
 
4886
- #: ../addons/banking/myCRED-addon-banking.php:232
4887
  msgid "Warning! This add-on requires WP - Cron to work."
4888
  msgstr ""
4889
  "اخطار ! این افزونه ی جانبی برای فعالسازی به WP-Cron احتیاج دارد .<br/>WP-"
@@ -4984,15 +5006,15 @@ msgstr "پرداخت"
4984
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ..
4985
  #: addons/gateway/event-booking/mycred-eventsmanager.php:540 ..
4986
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/sell-
4987
- #: content/myCRED-addon-sell-content.php:423 ../addons/buy-creds/myCRED-addon-buy-
4988
- #: creds.php:579
4989
  msgid "Payments"
4990
  msgstr "پرداخت ها"
4991
 
4992
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
4993
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35 ..
4994
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/buy-
4995
- #: creds/myCRED-addon-buy-creds.php:1686
4996
  msgid "Pay Now"
4997
  msgstr "همین حالا بپردازید"
4998
 
@@ -5025,7 +5047,7 @@ msgid "Deactivate %s"
5025
  msgstr "غیرفعالسازی %s"
5026
 
5027
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:367 ../addons/buy-
5028
- #: creds/myCRED-addon-buy-creds.php:1085
5029
  msgid "Gateway Settings"
5030
  msgstr "تنظیمات درگاه پرداخت"
5031
 
@@ -5066,8 +5088,8 @@ msgstr "عنوانی که در رسیدها و لیست گزارش ها ( لوگ
5066
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ..
5067
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
5068
  #: addons/transfer/includes/mycred-transfer-widgets.php:132 ../addons/sell-
5069
- #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
5070
- #: sell-content.php:686
5071
  msgid "Button Label"
5072
  msgstr "برچسب کلید"
5073
 
@@ -5080,8 +5102,8 @@ msgstr "کلید پرداخت"
5080
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ..
5081
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:139 ..
5082
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ../addons/sell-
5083
- #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
5084
- #: sell-content.php:682
5085
  msgid "Price"
5086
  msgstr "هزینه"
5087
 
@@ -5111,7 +5133,7 @@ msgid "Profit Sharing"
5111
  msgstr "سهم سود"
5112
 
5113
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
5114
- #: content/myCRED-addon-sell-content.php:473
5115
  msgid "Templates"
5116
  msgstr "نمونه ها ( الگوها )"
5117
 
@@ -5650,39 +5672,39 @@ msgstr "نام کاربری کاربر ( user_login )"
5650
  msgid "User Email (user_email)"
5651
  msgstr "ایمیل کاربر ( user_email )"
5652
 
5653
- #: ../addons/transfer/myCRED-addon-transfer.php:224
5654
  msgid "Log template for sending"
5655
  msgstr "الگوی لیست گزارش برای ارسال"
5656
 
5657
- #: ../addons/transfer/myCRED-addon-transfer.php:231
5658
  msgid "Log template for receiving"
5659
  msgstr "الگوی لیست گزارش برای دریافت"
5660
 
5661
- #: ../addons/transfer/myCRED-addon-transfer.php:238
5662
  msgid "Autofill Recipient"
5663
  msgstr "شناسایی خودکار گیرنده"
5664
 
5665
- #: ../addons/transfer/myCRED-addon-transfer.php:250
5666
  msgid "Select what user details recipients should be autofilled by."
5667
  msgstr "انتخاب کنید کدام بخش از اطلاعات کاربران گیرنده باید به صورت خودکار پر شود ."
5668
 
5669
- #: ../addons/transfer/myCRED-addon-transfer.php:253
5670
  msgid "Reload"
5671
  msgstr "بارگذاری مجدد"
5672
 
5673
- #: ../addons/transfer/myCRED-addon-transfer.php:256
5674
  msgid "Reload page on successful transfers."
5675
  msgstr "در جابجایی های موفق ، صفحه را دوباره بارگذاری کن ."
5676
 
5677
- #: ../addons/transfer/myCRED-addon-transfer.php:280
5678
  msgid "Form Templates"
5679
  msgstr "الگوی نمونه ی فرم"
5680
 
5681
- #: ../addons/transfer/myCRED-addon-transfer.php:283
5682
  msgid "Not logged in Template"
5683
  msgstr "الگوی کاربر وارد نشده"
5684
 
5685
- #: ../addons/transfer/myCRED-addon-transfer.php:285
5686
  msgid ""
5687
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
5688
  "elements allowed!"
@@ -5690,11 +5712,11 @@ msgstr ""
5690
  "متنی که برای کاربران وارد نشده نمایش داده می شود . برای نمایش داده نشدن کادر "
5691
  "را خالی بگذارید . استفاده از کدهای HTML مجاز نمی باشد ."
5692
 
5693
- #: ../addons/transfer/myCRED-addon-transfer.php:289
5694
  msgid "Balance Template"
5695
  msgstr "الگوی میزان امتیاز"
5696
 
5697
- #: ../addons/transfer/myCRED-addon-transfer.php:291
5698
  msgid ""
5699
  "Template to use when displaying the users balance (if included). No HTML "
5700
  "elements allowed!"
@@ -5702,33 +5724,33 @@ msgstr ""
5702
  "الگویی که به هنگام نمایش میزان امتیاز کاربر ( در صورت داشتن ) ، استفاده می "
5703
  "شود . استفاده از کدهای HTML مجاز نیست !"
5704
 
5705
- #: ../addons/transfer/myCRED-addon-transfer.php:295
5706
  msgid "Limit Template"
5707
  msgstr "الگوی محدودیت"
5708
 
5709
- #: ../addons/transfer/myCRED-addon-transfer.php:297
5710
  msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
5711
  msgstr ""
5712
  "الگویی که به هنگام نمایش محدودیت ( در صورت داشتن ) استفاده می شود . کدهای "
5713
  "HTML مجاز نخواهند بود ."
5714
 
5715
- #: ../addons/transfer/myCRED-addon-transfer.php:301
5716
  msgid "Button Template"
5717
  msgstr "الگوی کلید"
5718
 
5719
- #: ../addons/transfer/myCRED-addon-transfer.php:303
5720
  msgid "Send Transfer button template. No HTML elements allowed!"
5721
  msgstr "الگوی کلید ارسال جابجایی امتیاز . استفاده از کدهای HTML مجاز نیست !"
5722
 
5723
- #: ../addons/transfer/myCRED-addon-transfer.php:306
5724
  msgid "Error Messages"
5725
  msgstr "پیام های خطا"
5726
 
5727
- #: ../addons/transfer/myCRED-addon-transfer.php:309
5728
  msgid "Balance to low to send."
5729
  msgstr "میزان امتیاز برای ارسال کافی نیست ."
5730
 
5731
- #: ../addons/transfer/myCRED-addon-transfer.php:311
5732
  msgid ""
5733
  "Text to show when a users balance is to low for transfers. Leave empty to "
5734
  "hide. No HTML elements allowed!"
@@ -5737,11 +5759,11 @@ msgstr ""
5737
  "شود . برای عدم نمایش کادر را خالی بگذارید . استفاده از کدهای HTML هم مجاز "
5738
  "نیستند !"
5739
 
5740
- #: ../addons/transfer/myCRED-addon-transfer.php:315
5741
  msgid "Transfer Limit Reached."
5742
  msgstr "رسیدن به سقف مجاز جابجایی ها"
5743
 
5744
- #: ../addons/transfer/myCRED-addon-transfer.php:317
5745
  msgid ""
5746
  "Text to show when a user has reached their transfer limit (if used). Leave "
5747
  "empty to hide. No HTML elements allowed!"
@@ -5771,190 +5793,190 @@ msgstr "نمایش میزان امتیاز کاربران"
5771
  msgid "Show users limit"
5772
  msgstr "نمایش محدودیت جابجایی امتیاز برای کاربران"
5773
 
5774
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:130
5775
  msgid "username"
5776
  msgstr "نام کاربری"
5777
 
5778
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:133
5779
  msgid "email"
5780
  msgstr "ایمیل"
5781
 
5782
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:135
5783
  #, php-format
5784
  msgid "recipients %s"
5785
  msgstr "گیرندگان %s"
5786
 
5787
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
5788
  msgid "To:"
5789
  msgstr "به :"
5790
 
5791
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:231
5792
  msgid "Amount:"
5793
  msgstr "مقدار امتیاز :"
5794
 
5795
  #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
5796
- #: php:213 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-
5797
- #: addon-ranks.php:452 ../addons/ranks/myCRED-addon-ranks.php:458 ..
5798
- #: addons/ranks/myCRED-addon-ranks.php:834 ../addons/ranks/myCRED-addon-ranks.
5799
- #: php:1311 ../addons/ranks/myCRED-addon-ranks.php:1602
5800
  msgid "Ranks"
5801
  msgstr "رنک و مدال ها"
5802
 
5803
- #: ../addons/ranks/myCRED-addon-ranks.php:424
5804
  msgid "Warning! All ranks will be deleted! This can not be undone!"
5805
  msgstr "اخطار ! کل مدال ها پاکسازی خواهند شد ! این عمل غیرقابل بازگشت است !"
5806
 
5807
- #: ../addons/ranks/myCRED-addon-ranks.php:425
5808
  msgid "Are you sure you want to re-assign user ranks?"
5809
  msgstr "مطمئنید که می خواهید دوباره عمل تخصیص مدال های کاربری را انجام دهید ؟"
5810
 
5811
- #: ../addons/ranks/myCRED-addon-ranks.php:447 ../addons/ranks/myCRED-addon-ranks.
5812
- #: php:834
5813
  msgid "Rank"
5814
  msgstr "رنک و مدال"
5815
 
5816
- #: ../addons/ranks/myCRED-addon-ranks.php:448 ../addons/email-notices/myCRED-
5817
- #: addon-email-notices.php:167 ../addons/badges/myCRED-addon-badges.php:385 ..
5818
  #: addons/buy-creds/myCRED-addon-buy-creds.php:279 ../addons/buy-creds/myCRED-
5819
  #: addon-buy-creds.php:280
5820
  msgid "Add New"
5821
  msgstr "ساختن مورد جدید"
5822
 
5823
- #: ../addons/ranks/myCRED-addon-ranks.php:449
5824
  msgid "Add New Rank"
5825
  msgstr "اضافه کردن مدال جدید"
5826
 
5827
- #: ../addons/ranks/myCRED-addon-ranks.php:450
5828
  msgid "Edit Rank"
5829
  msgstr "ویرایش مدال"
5830
 
5831
- #: ../addons/ranks/myCRED-addon-ranks.php:451
5832
  msgid "New Rank"
5833
  msgstr "مدال جدید"
5834
 
5835
- #: ../addons/ranks/myCRED-addon-ranks.php:453
5836
  msgid "View Rank"
5837
  msgstr "نمایش مدال"
5838
 
5839
- #: ../addons/ranks/myCRED-addon-ranks.php:454
5840
  msgid "Search Ranks"
5841
  msgstr "جستجو در میان مدال ها"
5842
 
5843
- #: ../addons/ranks/myCRED-addon-ranks.php:455
5844
  msgid "No ranks found"
5845
  msgstr "هیچ مدالی یافت نشد"
5846
 
5847
- #: ../addons/ranks/myCRED-addon-ranks.php:456
5848
  msgid "No ranks found in Trash"
5849
  msgstr "هیچ رنکی در زباله دان یافت نشد"
5850
 
5851
- #: ../addons/ranks/myCRED-addon-ranks.php:541
5852
  #, php-format
5853
  msgid "Completed - Total of %d users effected"
5854
  msgstr "اتمام عملیات - کل %d کاربر ترتیب اثر داده شدند"
5855
 
5856
- #: ../addons/ranks/myCRED-addon-ranks.php:985
5857
  msgid "Rank Saved"
5858
  msgstr "مدال ذخیره شد"
5859
 
5860
- #: ../addons/ranks/myCRED-addon-ranks.php:1040 ../addons/ranks/myCRED-addon-ranks.
5861
- #: php:1123
5862
  msgid "Rank Title"
5863
  msgstr "عنوان مدال"
5864
 
5865
- #: ../addons/ranks/myCRED-addon-ranks.php:1041
5866
  msgid "Logo"
5867
  msgstr "لوگو"
5868
 
5869
- #: ../addons/ranks/myCRED-addon-ranks.php:1042
5870
  msgid "Requirement"
5871
  msgstr "پیش نیاز"
5872
 
5873
- #: ../addons/ranks/myCRED-addon-ranks.php:1068
5874
  msgid "No Logo Set"
5875
  msgstr "لوگویی ست نشده است"
5876
 
5877
- #: ../addons/ranks/myCRED-addon-ranks.php:1083 ../addons/ranks/myCRED-addon-ranks.
5878
- #: php:1088
5879
  msgid "Any Value"
5880
  msgstr "هر مقداری"
5881
 
5882
- #: ../addons/ranks/myCRED-addon-ranks.php:1085 ../addons/buy-creds/myCRED-addon-
5883
- #: buy-creds.php:643
5884
  #, php-format
5885
  msgid "Minimum %plural%"
5886
  msgstr "کمترین مفدار %plural%"
5887
 
5888
- #: ../addons/ranks/myCRED-addon-ranks.php:1090
5889
  #, php-format
5890
  msgid "Maximum %plural%"
5891
  msgstr "بیشترین مقدار %plural%"
5892
 
5893
- #: ../addons/ranks/myCRED-addon-ranks.php:1138
5894
  msgid "Rank Settings"
5895
  msgstr "تنظیمات مدال"
5896
 
5897
- #: ../addons/ranks/myCRED-addon-ranks.php:1192
5898
  #, php-format
5899
  msgid "Minimum %plural% to reach this rank"
5900
  msgstr "کمترین مقدار %plural% برای دستیابی به این مدال"
5901
 
5902
- #: ../addons/ranks/myCRED-addon-ranks.php:1196
5903
  #, php-format
5904
  msgid "Maximum %plural% to be included in this rank"
5905
  msgstr "بیشترین مقدار %plural% که این مدال شامل آن می شود"
5906
 
5907
- #: ../addons/ranks/myCRED-addon-ranks.php:1214
5908
  msgid "All Published Ranks"
5909
  msgstr "همه ی مدال های منتشر شده"
5910
 
5911
- #: ../addons/ranks/myCRED-addon-ranks.php:1224 ../addons/ranks/myCRED-addon-ranks.
5912
- #: php:1226
5913
  msgid "Not Set"
5914
  msgstr "تنظیم نشده"
5915
 
5916
- #: ../addons/ranks/myCRED-addon-ranks.php:1232
5917
  msgid "No Ranks found"
5918
  msgstr "مدالی پیدا نشد"
5919
 
5920
- #: ../addons/ranks/myCRED-addon-ranks.php:1316
5921
  msgid "Rank Features"
5922
  msgstr "ویژگی های مدال"
5923
 
5924
- #: ../addons/ranks/myCRED-addon-ranks.php:1320
5925
  #, php-format
5926
  msgid "%plural% requirement"
5927
  msgstr "پیش نیاز %plural%"
5928
 
5929
- #: ../addons/ranks/myCRED-addon-ranks.php:1321
5930
  msgid "Featured Image (Logo)"
5931
  msgstr "عکس شاخص ( لوگو )"
5932
 
5933
- #: ../addons/ranks/myCRED-addon-ranks.php:1323
5934
  msgid "Content"
5935
  msgstr "محتوا"
5936
 
5937
- #: ../addons/ranks/myCRED-addon-ranks.php:1325
5938
  msgid "Excerpt"
5939
  msgstr "توضیح کوتاه ( نقل قول )"
5940
 
5941
- #: ../addons/ranks/myCRED-addon-ranks.php:1327
5942
  msgid "Comments"
5943
  msgstr "دیدگاه ها"
5944
 
5945
- #: ../addons/ranks/myCRED-addon-ranks.php:1329
5946
  msgid "Page Attributes"
5947
  msgstr "خصوصیت های صفحه"
5948
 
5949
- #: ../addons/ranks/myCRED-addon-ranks.php:1331
5950
  msgid "Custom Fields"
5951
  msgstr "فیلدهای اضافی"
5952
 
5953
- #: ../addons/ranks/myCRED-addon-ranks.php:1335
5954
  msgid "Public"
5955
  msgstr "عمومی"
5956
 
5957
- #: ../addons/ranks/myCRED-addon-ranks.php:1339
5958
  msgid ""
5959
  "If you want to create a template archive for each rank, you must select to "
5960
  "have ranks public. Defaults to disabled."
@@ -5962,27 +5984,27 @@ msgstr ""
5962
  "اگر می خواهید آرشیو نمونه ای برای هر مدال بسازید ، باید انتخاب کنید که مدال "
5963
  "ها عمومی باشند . در حالت پیش فرض این حالت غیرفعال می باشد ."
5964
 
5965
- #: ../addons/ranks/myCRED-addon-ranks.php:1342
5966
  msgid "Archive URL"
5967
  msgstr "نشانی اینترنتی آرشیو"
5968
 
5969
- #: ../addons/ranks/myCRED-addon-ranks.php:1346
5970
  msgid "Ignored if Ranks are not public"
5971
  msgstr "اگر مدال ها منتشر نشده اند ، آن ها را نادیده بگیر"
5972
 
5973
- #: ../addons/ranks/myCRED-addon-ranks.php:1349
5974
  msgid "Display Order"
5975
  msgstr "ترتیب نمایش"
5976
 
5977
- #: ../addons/ranks/myCRED-addon-ranks.php:1357
5978
  msgid "Ascending - Lowest rank to highest"
5979
  msgstr "صعودی - از پایین ترین مدال ها ، به بالاترین مدال ها"
5980
 
5981
- #: ../addons/ranks/myCRED-addon-ranks.php:1358
5982
  msgid "Descending - Highest rank to lowest"
5983
  msgstr "نزولی - از بالاترین مدال ها ، به پایین ترین مدال ها"
5984
 
5985
- #: ../addons/ranks/myCRED-addon-ranks.php:1369
5986
  msgid ""
5987
  "Select in what order ranks should be displayed in your admin area and/or "
5988
  "front if ranks are \"Public\""
@@ -5990,26 +6012,26 @@ msgstr ""
5990
  "انتخاب کنید که مدال ها به چه ترتیبی در ناحیه ی مدیریتی و/یا کاربری نمایش "
5991
  "داده شوند ، البته اگر مدال ها \"منتشر شده\" ( عمومی ) باشند ."
5992
 
5993
- #: ../addons/ranks/myCRED-addon-ranks.php:1375
5994
  msgid "Rank Basis"
5995
  msgstr "روش مدال دهی"
5996
 
5997
- #: ../addons/ranks/myCRED-addon-ranks.php:1378
5998
  msgid "Users are ranked according to their current balance."
5999
  msgstr "کاربران بر اساس میزان امتیاز فعلیشان مدال می گیرند ."
6000
 
6001
- #: ../addons/ranks/myCRED-addon-ranks.php:1381
6002
  msgid ""
6003
  "Users are ranked according to the total amount of %_plural% they have "
6004
  "accumulated."
6005
  msgstr "کاربران بر اساس کل %_plural% ای که جمع کرده اند مدال می گیرند ."
6006
 
6007
- #: ../addons/ranks/myCRED-addon-ranks.php:1385 ../addons/ranks/myCRED-addon-ranks.
6008
- #: php:1390
6009
  msgid "Calculate Totals"
6010
  msgstr "محاسبه ی کل امتیازها"
6011
 
6012
- #: ../addons/ranks/myCRED-addon-ranks.php:1388
6013
  msgid ""
6014
  "Once a users total has been calculated, they will be assigned to their "
6015
  "appropriate roles. For this reason, it is highly recommended that you first "
@@ -6019,7 +6041,7 @@ msgstr ""
6019
  "امتیازشان منصوب می شوند . به همین منظور ، شدیدا پیشنهاد می گردد که ابتدا "
6020
  "مدال های خودتان را پیاده سازی کنید ."
6021
 
6022
- #: ../addons/ranks/myCRED-addon-ranks.php:1389
6023
  msgid ""
6024
  "Depending on your log size and number of users this process may take a while."
6025
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
@@ -6029,189 +6051,189 @@ msgstr ""
6029
  "طول بکشد . لطفا تا پایان عملیات ، صفحه را رفرش نکنید ، آن را نبسته و یا بر "
6030
  "روی \"به روزرسانی تنظیمات\" کلیک نفرمایید ."
6031
 
6032
- #: ../addons/ranks/myCRED-addon-ranks.php:1407
6033
  msgid "Include in Profile Header."
6034
  msgstr "شامل ( نمایش در ) هِدر ( سربرگ ) پروفایل کاربری"
6035
 
6036
- #: ../addons/ranks/myCRED-addon-ranks.php:1409
6037
  msgid "Include under the \"Profile\" tab and Profile Header."
6038
  msgstr "نمایش در زیر تب \"Profile\" و همچنین سربرگ پروفایل کاربری ."
6039
 
6040
- #: ../addons/ranks/myCRED-addon-ranks.php:1413
6041
  msgid "Rank in BuddyPress"
6042
  msgstr "مدال در بادی پرس"
6043
 
6044
- #: ../addons/ranks/myCRED-addon-ranks.php:1537
6045
  msgid "Script Communication Error"
6046
  msgstr "خطا در ارتباط با اسکریپت"
6047
 
6048
- #: ../addons/ranks/myCRED-addon-ranks.php:1609
6049
  msgid "No. of ranks"
6050
  msgstr "تعداد مدال ها"
6051
 
6052
- #: ../addons/ranks/myCRED-addon-ranks.php:1614
6053
  msgid "Remove All Ranks"
6054
  msgstr "پاکسازی همه ی مدال ها"
6055
 
6056
- #: ../addons/ranks/myCRED-addon-ranks.php:1614
6057
  msgid "Assign Ranks to Users"
6058
  msgstr "تخصیص دادن مدال به کاربران"
6059
 
6060
- #: ../addons/ranks/includes/mycred-rank-functions.php:257
6061
  msgid "mycred_get_users_rank() : Missing required user id"
6062
  msgstr "mycred_get_users_rank() : شناسه کاربر خواسته شده ، یافت نشد !"
6063
 
6064
- #: ../addons/ranks/includes/mycred-rank-functions.php:270
6065
  msgid "no rank"
6066
  msgstr "مدالی یافت نشد"
6067
 
6068
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:115 ..
6069
- #: addons/ranks/includes/mycred-rank-shortcodes.php:210
6070
  msgid "No users found with this rank"
6071
  msgstr "کاربری با این مدال یافت نشد"
6072
 
6073
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122
6074
  msgid "Rank ID is required!"
6075
  msgstr "داشتن شناسه مدال ضروریست !"
6076
 
6077
- #: ../addons/notifications/myCRED-addon-notifications.php:193
6078
  msgid "Notifications"
6079
  msgstr "آگاه سازها"
6080
 
6081
- #: ../addons/notifications/myCRED-addon-notifications.php:195
6082
  msgid "Styling"
6083
  msgstr "زیبا سازی ( قالب بندی )"
6084
 
6085
- #: ../addons/notifications/myCRED-addon-notifications.php:198
6086
  msgid "Use the included CSS Styling for notifications."
6087
  msgstr "از قالب ها و کدهای CSS موجود ، برای زیباسازی آگاه سازها استفاده کنید ."
6088
 
6089
- #: ../addons/notifications/myCRED-addon-notifications.php:205
6090
  #, php-format
6091
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
6092
  msgstr ""
6093
  "از کد %entry% برای نشان دادن داده های لیست گزارش و همچنین %amount% برای "
6094
  "مقدار آن در آگاه ساز استفاده کنید ."
6095
 
6096
- #: ../addons/notifications/myCRED-addon-notifications.php:208
6097
  msgid "Transient Lifespan"
6098
  msgstr "عمر موقتی"
6099
 
6100
- #: ../addons/notifications/myCRED-addon-notifications.php:212
6101
  msgid ""
6102
  "The number of days a users notification is saved before being automatically "
6103
  "deleted."
6104
  msgstr "تعداد روزهایی که یک آگاه ساز ، ذخیره مانده و بعد پاک می شود ."
6105
 
6106
- #: ../addons/notifications/myCRED-addon-notifications.php:215
6107
  msgid "Duration"
6108
  msgstr "مدت"
6109
 
6110
- #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ../addons/email-
6111
- #: notices/myCRED-addon-email-notices.php:171 ../addons/email-notices/myCRED-
6112
- #: addon-email-notices.php:177 ../addons/email-notices/myCRED-addon-email-notices.
6113
- #: php:283 ../addons/coupons/myCRED-addon-coupons.php:105
6114
  msgid "Email Notices"
6115
  msgstr "اطلاعیه های ایمیلی"
6116
 
6117
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
6118
- #: notices/myCRED-addon-email-notices.php:1270
6119
  msgid "Email Notice"
6120
  msgstr "اطلاعیه ایمیلی"
6121
 
6122
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
6123
  msgid "Add New Notice"
6124
  msgstr "ساختن اطلاعیه ایمیل جدید"
6125
 
6126
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
6127
  msgid "Edit Notice"
6128
  msgstr "ویرایش اطلاعیه"
6129
 
6130
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
6131
  msgid "New Notice"
6132
  msgstr "اطلاعیه جدید"
6133
 
6134
- #: ../addons/email-notices/myCRED-addon-email-notices.php:172
6135
  msgid "View Notice"
6136
  msgstr "نمایش اطلاعیه"
6137
 
6138
- #: ../addons/email-notices/myCRED-addon-email-notices.php:173
6139
  msgid "Search Email Notices"
6140
  msgstr "جستجو در بین اطلاعیه های ایمیلی"
6141
 
6142
- #: ../addons/email-notices/myCRED-addon-email-notices.php:174
6143
  msgid "No email notices found"
6144
  msgstr "هیچ اطلاعیه ای یافت نشد"
6145
 
6146
- #: ../addons/email-notices/myCRED-addon-email-notices.php:175
6147
  msgid "No email notices found in Trash"
6148
  msgstr "هیچ اطلاعیه ای در زباله دان یافت نشد"
6149
 
6150
- #: ../addons/email-notices/myCRED-addon-email-notices.php:201
6151
  msgid "users balance changes"
6152
  msgstr "میزان امتیازات کاربران تغییر کند"
6153
 
6154
- #: ../addons/email-notices/myCRED-addon-email-notices.php:202
6155
  msgid "user gains %_plural%"
6156
  msgstr "کاربران %_plural% کسب کنند"
6157
 
6158
- #: ../addons/email-notices/myCRED-addon-email-notices.php:203
6159
  msgid "user lose %_plural%"
6160
  msgstr "کاربران %_plural% از دست بدهند"
6161
 
6162
- #: ../addons/email-notices/myCRED-addon-email-notices.php:204
6163
  msgid "users balance reaches zero"
6164
  msgstr "میزان امتیازات کاربر به صفر برسد"
6165
 
6166
- #: ../addons/email-notices/myCRED-addon-email-notices.php:205
6167
  msgid "users balance goes minus"
6168
  msgstr "میزان امتیازات کاربر به عددی منفی برسد"
6169
 
6170
- #: ../addons/email-notices/myCRED-addon-email-notices.php:219
6171
  msgid "Sell Content Add-on"
6172
  msgstr "بخش مربوط به \"افزونه فروش محتوا\""
6173
 
6174
- #: ../addons/email-notices/myCRED-addon-email-notices.php:220
6175
  msgid "user buys content"
6176
  msgstr "کاربران محتوایی را بخرند"
6177
 
6178
- #: ../addons/email-notices/myCRED-addon-email-notices.php:221
6179
  msgid "authors content gets sold"
6180
  msgstr "متن نویسندگان به فروش برود"
6181
 
6182
- #: ../addons/email-notices/myCRED-addon-email-notices.php:228
6183
  msgid "buyCREDs Add-on"
6184
  msgstr "بخش مربوط به \"افزونه خرید امتیاز\""
6185
 
6186
- #: ../addons/email-notices/myCRED-addon-email-notices.php:229
6187
  msgid "user buys %_plural%"
6188
  msgstr "کاربران %_plural% بخرند"
6189
 
6190
- #: ../addons/email-notices/myCRED-addon-email-notices.php:236
6191
  msgid "Transfer Add-on"
6192
  msgstr "بخش مربوط به \"افزونه انتقال امتیاز\""
6193
 
6194
- #: ../addons/email-notices/myCRED-addon-email-notices.php:237
6195
  msgid "user sends %_plural%"
6196
  msgstr "کاربران %_plural% ارسال کنند"
6197
 
6198
- #: ../addons/email-notices/myCRED-addon-email-notices.php:238
6199
  msgid "user receives %_plural%"
6200
  msgstr "کاربران %_plural% دریافت کنند"
6201
 
6202
- #: ../addons/email-notices/myCRED-addon-email-notices.php:245
6203
  msgid "Ranks Add-on"
6204
  msgstr "بخش مربوط به \"افزونه مدال دهی\""
6205
 
6206
- #: ../addons/email-notices/myCRED-addon-email-notices.php:246
6207
  msgid "user is demoted"
6208
  msgstr "کاربر تنزل درجه پیدا کند ( رنک از دست بدهد )"
6209
 
6210
- #: ../addons/email-notices/myCRED-addon-email-notices.php:247
6211
  msgid "user is promoted"
6212
  msgstr "کاربر ترفیع درجه پیدا کند ( رنک بدست بیاورد )"
6213
 
6214
- #: ../addons/email-notices/myCRED-addon-email-notices.php:285
6215
  msgid ""
6216
  "Settings that apply to all email notices and can not be overridden for "
6217
  "individual emails."
@@ -6222,25 +6244,25 @@ msgstr ""
6222
  "تنظیم رو تغییر بدی که کد اچ تی ام ال هم قبول بکنه یا نکنه ، فقط از همینجا می "
6223
  "تونی تغییر بدی ! دیگه ببخشید خودمونی گفتم :دی )"
6224
 
6225
- #: ../addons/email-notices/myCRED-addon-email-notices.php:286
6226
  msgid "Email Format"
6227
  msgstr "فرمت ایمیل"
6228
 
6229
- #: ../addons/email-notices/myCRED-addon-email-notices.php:290
6230
  msgid "Plain text emails only."
6231
  msgstr "ایمیل هایی که فقط متن معمولی را در خود دارند ، بدون هیچ صفحه آرایی"
6232
 
6233
- #: ../addons/email-notices/myCRED-addon-email-notices.php:294
6234
  msgid "HTML or Plain text emails."
6235
  msgstr ""
6236
  "ایمیل های حاوی کدهای HTML و متن های عادی که با ترکیب این دو می توان ایمیل "
6237
  "هایی با صفحه بندی زیبا تولید کرد ."
6238
 
6239
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297
6240
  msgid "Filters"
6241
  msgstr "پالایش ایمیل ها"
6242
 
6243
- #: ../addons/email-notices/myCRED-addon-email-notices.php:301
6244
  msgid ""
6245
  "Allow WordPress and Third Party Plugins to filter the email subject before "
6246
  "an email is sent."
@@ -6248,7 +6270,7 @@ msgstr ""
6248
  "به وردپرس و سایر پلاگین های شخص ثالث ، اجازه دهید تا عنوان ایمیل ها را قبل "
6249
  "از ارسال پالایش کنند ."
6250
 
6251
- #: ../addons/email-notices/myCRED-addon-email-notices.php:305
6252
  msgid ""
6253
  "Allow WordPress and Third Party Plugins to filter the email content before "
6254
  "an email is sent."
@@ -6256,7 +6278,7 @@ msgstr ""
6256
  "به وردپرس و سایر پلاگین های شخص ثالث ، اجازه دهید تا متن ایمیل ها را قبل از "
6257
  "ارسال پالایش کنند ."
6258
 
6259
- #: ../addons/email-notices/myCRED-addon-email-notices.php:345
6260
  msgid ""
6261
  "Default email settings. These settings can be individually overridden when "
6262
  "editing emails."
@@ -6264,160 +6286,160 @@ msgstr ""
6264
  "تنظیمات پیش فرض ایمیل . این تنظیماتی که در زیر می آیند ، برای هر ایمیل تکی "
6265
  "نیز قابل ویرایش هستند ."
6266
 
6267
- #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
6268
- #: notices/myCRED-addon-email-notices.php:900
6269
  msgid "Email Settings"
6270
  msgstr "تنظیمات ایمیل"
6271
 
6272
- #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
6273
- #: notices/myCRED-addon-email-notices.php:1053
6274
  msgid "Senders Name:"
6275
  msgstr "نام ارسا
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Mon Jan 11 2016 22:10:01 GMT+0100 (CET)\n"
7
  "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
29
  msgstr ""
30
 
31
  #. Description of the plugin
32
+ msgid "An adaptive points management system for WordPress powered websites."
 
 
 
33
  msgstr ""
34
 
35
  #. Author of the plugin
40
  msgid "http://www.merovingi.com"
41
  msgstr ""
42
 
43
+ #: ../mycred.php:443
44
  msgid "Balance"
45
  msgstr ""
46
 
47
+ #: ../mycred.php:468
48
  msgid "%label% History"
49
  msgstr ""
50
 
51
+ #: ../mycred.php:660
52
  msgid ""
53
  "Warning! All entries in your log will be permanently removed! This can not "
54
  "be undone!"
55
  msgstr ""
56
 
57
+ #: ../mycred.php:661
58
  msgid ""
59
  "All log entries belonging to deleted users will be permanently deleted! This "
60
  "can not be undone!"
61
  msgstr ""
62
 
63
+ #: ../mycred.php:666
64
  msgid ""
65
  "In order to adjust the number of decimal places you want to use we must "
66
  "update your log. It is highly recommended that you backup your current log "
67
  "before continuing!"
68
  msgstr ""
69
 
70
+ #: ../mycred.php:682
71
  msgid "Edit Users Balance"
72
  msgstr ""
73
 
74
+ #: ../mycred.php:700
75
  msgid "Edit Log Entry"
76
  msgstr ""
77
 
78
+ #: ../mycred.php:704
79
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
80
  msgstr ""
81
 
82
+ #: ../mycred.php:705
83
  msgid "Log entry updated"
84
  msgstr ""
85
 
86
+ #: ../mycred.php:807
87
  msgid ""
88
  "Make sure to backup your database and files before updating, in case "
89
  "anything goes wrong!"
155
  msgstr ""
156
 
157
  #: ../modules/mycred-module-settings.php:656 ../includes/mycred-widgets.php:600 ..
158
+ #: addons/transfer/myCRED-addon-transfer.php:212 ../addons/buy-creds/myCRED-
159
+ #: addon-buy-creds.php:651
160
  msgid "Point Types"
161
  msgstr ""
162
 
188
  "while Email is recommended if you want to export to a different site."
189
  msgstr ""
190
 
191
+ #: ../modules/mycred-module-addons.php:167
192
  msgid "Give your users badges based on their interaction with your website."
193
  msgstr ""
194
 
195
+ #: ../modules/mycred-module-addons.php:178
196
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
197
  msgstr ""
198
 
199
+ #: ../modules/mycred-module-addons.php:200
200
  msgid ""
201
  "The coupons add-on allows you to create coupons that users can use to add "
202
  "points to their accounts."
203
  msgstr ""
204
 
205
+ #: ../modules/mycred-module-addons.php:222
206
  msgid ""
207
  "Let your users pay using their <strong>my</strong>CRED points balance. "
208
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
209
  "Bookings: Event Espresso and Events Manager (free & pro)."
210
  msgstr ""
211
 
212
+ #: ../modules/mycred-module-addons.php:233
213
  msgid "Create pop-up notifications for when users gain or loose points."
214
  msgstr ""
215
 
216
+ #: ../modules/mycred-module-addons.php:245
217
  msgid ""
218
  "Create ranks for users reaching a certain number of %_plural% with the "
219
  "option to add logos for each rank."
220
  msgstr ""
221
 
222
+ #: ../modules/mycred-module-addons.php:267
223
  msgid ""
224
  "Gives you access to your myCRED Staticstics based on your users gains and "
225
  "loses."
226
  msgstr ""
227
 
228
+ #: ../modules/mycred-module-addons.php:336
229
  msgid "Add-ons Reloaded"
230
  msgstr ""
231
 
232
+ #: ../modules/mycred-module-addons.php:366
233
  msgid "Reload Add-ons"
234
  msgstr ""
235
 
236
+ #: ../modules/mycred-module-addons.php:429
237
  msgid "Get Pro"
238
  msgstr ""
239
 
293
  msgid "My %s History"
294
  msgstr ""
295
 
296
+ #: ../modules/mycred-module-hooks.php:117
297
  #, php-format
298
  msgid "%plural% for daily visits"
299
  msgstr ""
300
 
301
+ #: ../modules/mycred-module-hooks.php:118
302
  #, php-format
303
  msgid "Award %_plural% for users visiting your website on a daily basis."
304
  msgstr ""
305
 
306
+ #: ../modules/mycred-module-hooks.php:124
307
  #, php-format
308
  msgid "%plural% for viewing content"
309
  msgstr ""
310
 
311
+ #: ../modules/mycred-module-hooks.php:125
312
  #, php-format
313
  msgid ""
314
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
315
  "authors for members viewing their content."
316
  msgstr ""
317
 
318
+ #: ../modules/mycred-module-hooks.php:145
319
  #, php-format
320
  msgid "%plural% for Disqus comments"
321
  msgstr ""
322
 
323
+ #: ../modules/mycred-module-hooks.php:166
324
  #, php-format
325
  msgid "%plural% for referrals"
326
  msgstr ""
327
 
328
+ #: ../modules/mycred-module-hooks.php:167
329
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
330
  msgstr ""
331
 
332
+ #: ../modules/mycred-module-hooks.php:676
333
  #, php-format
334
  msgid "%plural% for viewing Posts"
335
  msgstr ""
336
 
337
+ #: ../modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:696 .
338
+ #: ./modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:727 ..
339
+ #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:804
340
  msgid "Member"
341
  msgstr ""
342
 
343
+ #: ../modules/mycred-module-hooks.php:707
344
  #, php-format
345
  msgid "%plural% for viewing Pages"
346
  msgstr ""
347
 
348
+ #: ../modules/mycred-module-hooks.php:784
349
  #, php-format
350
  msgid "%plural% for viewing %s"
351
  msgstr ""
352
 
353
+ #: ../modules/mycred-module-hooks.php:1670
354
  #, php-format
355
  msgid ""
356
  "%plural% are only awarded when your website has been synced with the Disqus "
357
  "server!"
358
  msgstr ""
359
 
360
+ #: ../modules/mycred-module-hooks.php:2039
361
  #, php-format
362
  msgid "Custom tags: %url%, %title% or %id%."
363
  msgstr ""
364
 
365
+ #: ../modules/mycred-module-hooks.php:2054 ../modules/mycred-module-hooks.php:2438
366
  msgid "Available Shortcode"
367
  msgstr ""
368
 
369
+ #: ../modules/mycred-module-hooks.php:2509
370
  msgid "Affiliate Program"
371
  msgstr ""
372
 
373
+ #: ../modules/mycred-module-hooks.php:2517 ../includes/mycred-admin.php:419 ..
374
  #: addons/coupons/myCRED-addon-coupons.php:232
375
  msgid "Total"
376
  msgstr ""
377
 
378
+ #: ../modules/mycred-module-hooks.php:2518
379
  msgid "Per Day"
380
  msgstr ""
381
 
382
+ #: ../modules/mycred-module-hooks.php:2677
383
  msgid "Link"
384
  msgstr ""
385
 
386
+ #: ../modules/mycred-module-hooks.php:2681
387
  msgid "Visitors Referred"
388
  msgstr ""
389
 
390
+ #: ../modules/mycred-module-hooks.php:2685
391
  msgid "Signups Referred"
392
  msgstr ""
393
 
394
+ #: ../modules/mycred-module-hooks.php:3004 ../plugins/mycred-hook-affiliatewp.php:
395
+ #: 235
396
  msgid "Referring Visitors"
397
  msgstr ""
398
 
399
+ #: ../modules/mycred-module-hooks.php:3023 ../modules/mycred-module-hooks.php:3043
400
  msgid "Referring Signups"
401
  msgstr ""
402
 
403
+ #: ../modules/mycred-module-hooks.php:3027
404
  msgid "Visitors who have Cookies disabled will not award %_plural%."
405
  msgstr ""
406
 
407
+ #: ../modules/mycred-module-hooks.php:3045
408
  msgid "Registrations are disabled."
409
  msgstr ""
410
 
411
+ #: ../modules/mycred-module-hooks.php:3053
412
  msgid "Referral Links"
413
  msgstr ""
414
 
415
+ #: ../modules/mycred-module-hooks.php:3057
416
  msgid "Assign numeric referral IDs to each user."
417
  msgstr ""
418
 
419
+ #: ../modules/mycred-module-hooks.php:3058 ../modules/mycred-module-hooks.php:3064
420
  msgid "Example"
421
  msgstr ""
422
 
423
+ #: ../modules/mycred-module-hooks.php:3063
424
  msgid "Assign usernames as IDs for each user."
425
  msgstr ""
426
 
427
+ #: ../modules/mycred-module-hooks.php:3067
428
  msgid "IP Limit"
429
  msgstr ""
430
 
431
+ #: ../modules/mycred-module-hooks.php:3071
432
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
433
  msgstr ""
434
 
435
+ #: ../modules/mycred-module-hooks.php:3075 ../modules/mycred-module-hooks.php:3110
436
  msgid "BuddyPress Profile"
437
  msgstr ""
438
 
439
+ #: ../modules/mycred-module-hooks.php:3078
440
  msgid "Insert Link in users Profile"
441
  msgstr ""
442
 
443
+ #: ../modules/mycred-module-hooks.php:3079
444
  msgid ""
445
  "Option to inser the referral link in users profiles. Links will only be "
446
  "visible to users viewing their own profiles or administrators."
447
  msgstr ""
448
 
449
+ #: ../modules/mycred-module-hooks.php:3085
450
  msgid "Leave empty to hide."
451
  msgstr ""
452
 
453
+ #: ../modules/mycred-module-hooks.php:3088
454
  msgid "Description"
455
  msgstr ""
456
 
457
+ #: ../modules/mycred-module-hooks.php:3089
458
  msgid "Optional description to insert under the link."
459
  msgstr ""
460
 
461
+ #: ../modules/mycred-module-hooks.php:3103
462
  msgid "Profile Positioning"
463
  msgstr ""
464
 
465
+ #: ../modules/mycred-module-hooks.php:3105
466
  msgid ""
467
  "You can move around the referral link on your users profile by changing the "
468
  "position. Increase to move up, decrease to move down."
469
  msgstr ""
470
 
471
+ #: ../modules/mycred-module-hooks.php:3106
472
  msgid "You can not move the referral link above the users \"Base\" profile details!"
473
  msgstr ""
474
 
475
+ #: ../modules/mycred-module-hooks.php:3112
476
  msgid "Requires BuddyPress Extended Profiles to be enabled."
477
  msgstr ""
478
 
479
+ #: ../modules/mycred-module-hooks.php:3120 ../addons/buy-creds/myCRED-addon-buy-
480
+ #: creds.php:740
481
  msgid "Available Shortcodes"
482
  msgstr ""
483
 
489
  msgid "Go"
490
  msgstr ""
491
 
492
+ #: ../modules/mycred-module-buddypress.php:424 ../addons/badges/myCRED-addon-
493
+ #: badges.php:1011
494
  msgid "Include in Profile Header"
495
  msgstr ""
496
 
497
+ #: ../modules/mycred-module-buddypress.php:426 ../addons/badges/myCRED-addon-
498
+ #: badges.php:1013
499
  msgid "Include under the \"Profile\" tab and Profile Header"
500
  msgstr ""
501
 
502
+ #: ../modules/mycred-module-buddypress.php:465
503
  #, php-format
504
  msgid "Members and visitors can other members %_singular% balance."
505
  msgstr ""
506
 
507
+ #: ../plugins/mycred-hook-wp-postratings.php:15
508
  msgid "Post Ratings"
509
  msgstr ""
510
 
511
+ #: ../plugins/mycred-hook-wp-postratings.php:16
512
  #, php-format
513
  msgid ""
514
  "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
515
  "author and the user rating."
516
  msgstr ""
517
 
518
+ #: ../plugins/mycred-hook-wp-postratings.php:84
519
  msgid "Based on rating"
520
  msgstr ""
521
 
522
+ #: ../plugins/mycred-hook-wp-postratings.php:159 ../includes/mycred-functions.php:
523
+ #: 2675
524
  msgid "Adding a Rating"
525
  msgstr ""
526
 
527
+ #: ../plugins/mycred-hook-wp-postratings.php:169 ../plugins/mycred-hook-wp-
528
+ #: postratings.php:188
529
  msgid "Use the Rating Value instead of the amount set here."
530
  msgstr ""
531
 
532
+ #: ../plugins/mycred-hook-wp-postratings.php:178 ../includes/mycred-functions.php:
533
+ #: 2676
534
  msgid "Receiving a Rating"
535
  msgstr ""
536
 
537
+ #: ../plugins/mycred-hook-gravityforms.php:15
538
  msgid "Gravityform Submissions"
539
  msgstr ""
540
 
541
+ #: ../plugins/mycred-hook-gravityforms.php:16
542
  #, php-format
543
  msgid "Awards %_plural% for successful form submissions."
544
  msgstr ""
545
 
546
+ #: ../plugins/mycred-hook-marketpress.php:70 ../plugins/mycred-hook-woocommerce.
547
+ #: php:87
548
  #, php-format
549
  msgid "Reward with %plural%"
550
  msgstr ""
551
 
552
+ #: ../plugins/mycred-hook-buddypress.php:526
553
  #, php-format
554
  msgid "%plural% for Removing Profile Update"
555
  msgstr ""
556
 
557
+ #: ../plugins/mycred-hook-buddypress.php:570
558
  #, php-format
559
  msgid ""
560
  "Users with zero balance can not add friends. Requires that you deduct "
561
  "%_plural% for adding a new friend."
562
  msgstr ""
563
 
564
+ #: ../plugins/mycred-hook-buddypress-links.php:293
565
  #, php-format
566
  msgid "%plural% per received Vote"
567
  msgstr ""
568
 
569
+ #: ../plugins/mycred-hook-buddypress-links.php:296
570
  msgid "Vote Up"
571
  msgstr ""
572
 
573
+ #: ../plugins/mycred-hook-buddypress-links.php:315
574
  msgid "Vote Down"
575
  msgstr ""
576
 
577
+ #: ../plugins/mycred-hook-affiliatewp.php:15
578
  msgid "AffiliateWP"
579
  msgstr ""
580
 
581
+ #: ../plugins/mycred-hook-affiliatewp.php:16
582
  #, php-format
583
  msgid ""
584
  "Awards %_plural% for affiliate signups, referring visitors and store sale "
585
  "referrals."
586
  msgstr ""
587
 
588
+ #: ../plugins/mycred-hook-affiliatewp.php:222
589
  msgid "Affiliate Signup"
590
  msgstr ""
591
 
592
+ #: ../plugins/mycred-hook-affiliatewp.php:252
593
  msgid "Referring Sales"
594
  msgstr ""
595
 
596
+ #: ../plugins/mycred-hook-affiliatewp.php:255
597
  msgid "Pay a set amount for all referrals."
598
  msgstr ""
599
 
600
+ #: ../plugins/mycred-hook-affiliatewp.php:256
601
  #, php-format
602
  msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
603
  msgstr ""
604
 
605
+ #: ../plugins/mycred-hook-affiliatewp.php:257
606
  msgid "Apply an exchange rate against the referral amount."
607
  msgstr ""
608
 
609
+ #: ../plugins/mycred-hook-affiliatewp.php:265
610
  msgid "Log template - Payout"
611
  msgstr ""
612
 
613
+ #: ../plugins/mycred-hook-affiliatewp.php:270
614
  msgid "Log template - Refund"
615
  msgstr ""
616
 
617
+ #: ../plugins/mycred-hook-sharethis.php:15
618
  #, php-format
619
  msgid "%plural% for Sharing"
620
  msgstr ""
621
 
622
+ #: ../plugins/mycred-hook-sharethis.php:16
623
  #, php-format
624
  msgid ""
625
  "Awards %_plural% for users sharing / liking your website content to popular "
634
  msgid "No ShareThis services detected. Please check your installation."
635
  msgstr ""
636
 
637
+ #: ../plugins/mycred-hook-buddypress-media.php:15
638
  msgid "rtMedia Galleries"
639
  msgstr ""
640
 
641
+ #: ../plugins/mycred-hook-buddypress-media.php:16
642
  #, php-format
643
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
644
  msgstr ""
645
 
646
+ #: ../plugins/mycred-hook-buddypress-media.php:213
647
  msgid "New Media Upload"
648
  msgstr ""
649
 
650
+ #: ../plugins/mycred-hook-buddypress-media.php:216 ../includes/mycred-functions.
651
+ #: php:2633
652
  msgid "Photo Upload"
653
  msgstr ""
654
 
655
+ #: ../plugins/mycred-hook-buddypress-media.php:230 ../includes/mycred-functions.
656
+ #: php:2634
657
  msgid "Video Upload"
658
  msgstr ""
659
 
660
+ #: ../plugins/mycred-hook-buddypress-media.php:244 ../includes/mycred-functions.
661
+ #: php:2635
662
  msgid "Music Upload"
663
  msgstr ""
664
 
665
+ #: ../plugins/mycred-hook-buddypress-media.php:258
666
  msgid "Delete Media"
667
  msgstr ""
668
 
669
+ #: ../plugins/mycred-hook-buddypress-media.php:261
670
  msgid "Delete Photo"
671
  msgstr ""
672
 
673
+ #: ../plugins/mycred-hook-buddypress-media.php:271
674
  msgid "Delete Video"
675
  msgstr ""
676
 
677
+ #: ../plugins/mycred-hook-buddypress-media.php:281
678
  msgid "Delete Music"
679
  msgstr ""
680
 
681
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:234
682
  msgid "Authors Content added to favorites"
683
  msgstr ""
684
 
685
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:265
686
  msgid "Removing Content from Favorites (Author)"
687
  msgstr ""
688
 
689
+ #: ../plugins/mycred-hook-bbPress.php:540
690
+ #, php-format
691
+ msgid "Show users %_plural% balance in their bbPress profiles."
692
+ msgstr ""
693
+
694
+ #: ../plugins/mycred-hook-bbPress.php:544
695
  #, php-format
696
  msgid "%plural% for Reply Deletion"
697
  msgstr ""
698
 
699
+ #: ../plugins/mycred-hook-woocommerce.php:216
700
  msgid "WooCommerce Product Reviews"
701
  msgstr ""
702
 
703
+ #: ../plugins/mycred-hook-woocommerce.php:217
704
  #, php-format
705
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
706
  msgstr ""
729
  msgstr ""
730
 
731
  #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
732
+ #: 379
733
  msgid "Import CubePoints log entries and / or balances."
734
  msgstr ""
735
 
781
  msgid "16, 24 or 32 characters"
782
  msgstr ""
783
 
784
+ #: ../includes/mycred-shortcodes.php:468 ../includes/mycred-shortcodes.php:532 ..
785
+ #: includes/mycred-shortcodes.php:594 ../includes/mycred-shortcodes.php:953 ..
786
+ #: includes/mycred-shortcodes.php:1080
787
+ msgid "Point type not found."
788
  msgstr ""
789
 
790
+ #: ../includes/mycred-shortcodes.php:959 ../includes/mycred-shortcodes.php:967 ..
791
+ #: includes/mycred-functions.php:2827 ../includes/mycred-functions.php:2847
792
  #, php-format
793
  msgid "You are excluded from using %s."
794
  msgstr ""
795
 
796
+ #: ../includes/mycred-shortcodes.php:963 ../includes/mycred-functions.php:2837
797
  msgid "Your balance is too low to use this feature."
798
  msgstr ""
799
 
800
+ #: ../includes/mycred-shortcodes.php:985
801
  #, php-format
802
  msgid "Convert <span>%s</span> to <span>%s</span>"
803
  msgstr ""
804
 
805
+ #: ../includes/mycred-shortcodes.php:994
806
  #, php-format
807
  msgid "Your current %s balance"
808
  msgstr ""
809
 
810
+ #: ../includes/mycred-shortcodes.php:1002
811
  #, php-format
812
  msgid "Minimum %s"
813
  msgstr ""
814
 
815
+ #: ../includes/mycred-shortcodes.php:1006
816
  #, php-format
817
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
818
  msgstr ""
819
 
820
+ #: ../includes/mycred-shortcodes.php:1012
821
  msgid "Exchange"
822
  msgstr ""
823
 
824
+ #: ../includes/mycred-shortcodes.php:1077
825
  msgid "No instances found for this point type"
826
  msgstr ""
827
 
828
+ #: ../includes/mycred-shortcodes.php:1141
 
 
 
 
829
  msgid "Instance"
830
  msgstr ""
831
 
835
  msgstr ""
836
 
837
  #: ../includes/mycred-overview.php:78 ../addons/stats/widgets/mycred-stats-widget-
838
+ #: circulation.php:136 ../addons/stats/widgets/mycred-stats-widget-circulation.
839
+ #: php:265
840
  msgid "Total amount in circulation"
841
  msgstr ""
842
 
883
  msgid "Use zero for no decimals or maximum 20."
884
  msgstr ""
885
 
886
+ #: ../includes/mycred-admin.php:201
887
  msgid "A log entry is required in order to adjust this users balance"
888
  msgstr ""
889
 
890
+ #: ../includes/mycred-admin.php:203
891
  msgid "Users balance saved"
892
  msgstr ""
893
 
894
+ #: ../includes/mycred-admin.php:211
895
  msgid "Users excluded"
896
  msgstr ""
897
 
898
+ #: ../includes/mycred-admin.php:216
899
  msgid ""
900
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
901
  "rate settings and update all premium payment gateways!"
902
  msgstr ""
903
 
904
+ #: ../includes/mycred-admin.php:275
905
  msgid "Failed to update this uses balance."
906
  msgstr ""
907
 
908
+ #: ../includes/mycred-admin.php:472 ../includes/mycred-admin.php:473
909
  msgid "Edit Balance"
910
  msgstr ""
911
 
912
+ #: ../includes/mycred-admin.php:493
913
  msgid "Profile"
914
  msgstr ""
915
 
916
+ #: ../includes/mycred-admin.php:500
917
  msgid "Extended Profile"
918
  msgstr ""
919
 
920
+ #: ../includes/mycred-admin.php:594
921
  #, php-format
922
  msgid "This user is excluded from using %s"
923
  msgstr ""
924
 
925
+ #: ../includes/mycred-admin.php:618
926
  msgid "Edit User"
927
  msgstr ""
928
 
929
+ #: ../includes/mycred-admin.php:620
930
  msgctxt "user"
931
  msgid "Add New"
932
  msgstr ""
933
 
934
+ #: ../includes/mycred-admin.php:622
935
  msgctxt "user"
936
  msgid "Add Existing"
937
  msgstr ""
938
 
939
+ #: ../includes/mycred-admin.php:633
940
  #, php-format
941
  msgid "Total %s Accumulated"
942
  msgstr ""
943
 
944
+ #: ../includes/mycred-admin.php:634
945
  #, php-format
946
  msgid "Total %s Spent"
947
  msgstr ""
948
 
949
+ #: ../includes/mycred-admin.php:645
950
  msgid "View History"
951
  msgstr ""
952
 
953
+ #: ../includes/mycred-admin.php:646
954
  msgid "Exclude User"
955
  msgstr ""
956
 
957
+ #: ../includes/mycred-admin.php:650
958
  msgid "Adjust Balance"
959
  msgstr ""
960
 
961
+ #: ../includes/mycred-admin.php:659
962
  msgid ""
963
  "Warning! Excluding this user will result in their balance being deleted "
964
  "along with any entries currently in your log! This can not be undone!"
965
  msgstr ""
966
 
967
+ #: ../includes/mycred-admin.php:724
968
  #, php-format
969
  msgid "%singular% balance"
970
  msgstr ""
971
 
972
  #: ../includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:391 ..
973
+ #: includes/importers/mycred-cubepoints.php:401 ../addons/gateway/event-
974
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
975
  #: eventsmanager.php:550 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
976
  #: php:504 ../addons/gateway/carts/mycred-wpecommerce.php:354 ..
977
  #: addons/gateway/carts/mycred-woocommerce.php:120 ..
978
  #: addons/gateway/carts/mycred-marketpress.php:389 ../addons/ranks/myCRED-addon-
979
+ #: ranks.php:1052 ../addons/ranks/myCRED-addon-ranks.php:1209 ../addons/email-
980
+ #: notices/myCRED-addon-email-notices.php:844 ../addons/email-notices/myCRED-
981
+ #: addon-email-notices.php:1089 ../addons/coupons/myCRED-addon-coupons.php:179 ..
982
  #: addons/coupons/myCRED-addon-coupons.php:388 ../addons/sell-content/myCRED-
983
+ #: addon-sell-content.php:442
984
  msgid "Point Type"
985
  msgstr ""
986
 
1021
  msgid "Row Layout"
1022
  msgstr ""
1023
 
1024
+ #: ../includes/mycred-functions.php:680
1025
  msgid "Comment Related"
1026
  msgstr ""
1027
 
1028
+ #: ../includes/mycred-functions.php:687
1029
  msgid "Widget Related"
1030
  msgstr ""
1031
 
1032
+ #: ../includes/mycred-functions.php:694
1033
  msgid "Amount Related"
1034
  msgstr ""
1035
 
1036
+ #: ../includes/mycred-functions.php:701
1037
  msgid "Video Related"
1038
  msgstr ""
1039
 
1040
+ #: ../includes/mycred-functions.php:712
1041
  msgid "and"
1042
  msgstr ""
1043
 
1044
+ #: ../includes/mycred-functions.php:714
1045
  msgid "Available Template Tags:"
1046
  msgstr ""
1047
 
1048
+ #: ../includes/mycred-functions.php:1956
1049
  msgid "Entire Log"
1050
  msgstr ""
1051
 
1052
+ #: ../includes/mycred-functions.php:1961 ../includes/mycred-functions.php:1962
1053
  msgid "Displayed Rows"
1054
  msgstr ""
1055
 
1056
+ #: ../includes/mycred-functions.php:1969
1057
  msgid "Search Results"
1058
  msgstr ""
1059
 
1060
+ #: ../includes/mycred-functions.php:1970
1061
  msgid "My Entire Log"
1062
  msgstr ""
1063
 
1064
+ #: ../includes/mycred-functions.php:2594
1065
  msgid "Website Registration"
1066
  msgstr ""
1067
 
1068
+ #: ../includes/mycred-functions.php:2595
1069
  msgid "Website Visit"
1070
  msgstr ""
1071
 
1072
+ #: ../includes/mycred-functions.php:2596
1073
  msgid "Viewing Content (Member)"
1074
  msgstr ""
1075
 
1076
+ #: ../includes/mycred-functions.php:2597
1077
  msgid "Viewing Content (Author)"
1078
  msgstr ""
1079
 
1080
+ #: ../includes/mycred-functions.php:2598
1081
  msgid "Logging in"
1082
  msgstr ""
1083
 
1084
+ #: ../includes/mycred-functions.php:2599
1085
  msgid "Publishing Content"
1086
  msgstr ""
1087
 
1088
+ #: ../includes/mycred-functions.php:2601
1089
  msgid "Unapproved Comment"
1090
  msgstr ""
1091
 
1092
+ #: ../includes/mycred-functions.php:2602
1093
  msgid "SPAM Comment"
1094
  msgstr ""
1095
 
1096
+ #: ../includes/mycred-functions.php:2603
1097
  msgid "Deleted Comment"
1098
  msgstr ""
1099
 
1100
+ #: ../includes/mycred-functions.php:2604
1101
  msgid "Link Click"
1102
  msgstr ""
1103
 
1104
+ #: ../includes/mycred-functions.php:2605
1105
  msgid "Watching Video"
1106
  msgstr ""
1107
 
1108
+ #: ../includes/mycred-functions.php:2606
1109
  msgid "Visitor Referral"
1110
  msgstr ""
1111
 
1112
+ #: ../includes/mycred-functions.php:2607
1113
  msgid "Signup Referral"
1114
  msgstr ""
1115
 
1116
+ #: ../includes/mycred-functions.php:2611
1117
  msgid "New Profile Update"
1118
  msgstr ""
1119
 
1120
+ #: ../includes/mycred-functions.php:2612
1121
  msgid "Profile Update Removal"
1122
  msgstr ""
1123
 
1124
+ #: ../includes/mycred-functions.php:2613
1125
  msgid "Avatar Upload"
1126
  msgstr ""
1127
 
1128
+ #: ../includes/mycred-functions.php:2614
1129
  msgid "New Friendship"
1130
  msgstr ""
1131
 
1132
+ #: ../includes/mycred-functions.php:2615
1133
  msgid "Ended Friendship"
1134
  msgstr ""
1135
 
1136
+ #: ../includes/mycred-functions.php:2616
1137
  msgid "New Profile Comment"
1138
  msgstr ""
1139
 
1140
+ #: ../includes/mycred-functions.php:2617
1141
  msgid "Profile Comment Deletion"
1142
  msgstr ""
1143
 
1144
+ #: ../includes/mycred-functions.php:2618
1145
  msgid "New Message"
1146
  msgstr ""
1147
 
1148
+ #: ../includes/mycred-functions.php:2619
1149
  msgid "Sending Gift"
1150
  msgstr ""
1151
 
1152
+ #: ../includes/mycred-functions.php:2620
1153
  msgid "New Group"
1154
  msgstr ""
1155
 
1156
+ #: ../includes/mycred-functions.php:2621
1157
  msgid "Deleted Group"
1158
  msgstr ""
1159
 
1160
+ #: ../includes/mycred-functions.php:2622
1161
  msgid "New Group Forum Topic"
1162
  msgstr ""
1163
 
1164
+ #: ../includes/mycred-functions.php:2623
1165
  msgid "Edit Group Forum Topic"
1166
  msgstr ""
1167
 
1168
+ #: ../includes/mycred-functions.php:2624
1169
  msgid "New Group Forum Post"
1170
  msgstr ""
1171
 
1172
+ #: ../includes/mycred-functions.php:2625
1173
  msgid "Edit Group Forum Post"
1174
  msgstr ""
1175
 
1176
+ #: ../includes/mycred-functions.php:2626
1177
  msgid "Joining Group"
1178
  msgstr ""
1179
 
1180
+ #: ../includes/mycred-functions.php:2627
1181
  msgid "Leaving Group"
1182
  msgstr ""
1183
 
1184
+ #: ../includes/mycred-functions.php:2628
1185
  msgid "New Group Avatar"
1186
  msgstr ""
1187
 
1188
+ #: ../includes/mycred-functions.php:2629
1189
  msgid "New Group Comment"
1190
  msgstr ""
1191
 
1192
+ #: ../includes/mycred-functions.php:2639
1193
  msgid "New Link"
1194
  msgstr ""
1195
 
1196
+ #: ../includes/mycred-functions.php:2640
1197
  msgid "Link Voting"
1198
  msgstr ""
1199
 
1200
+ #: ../includes/mycred-functions.php:2641
1201
  msgid "Link Update"
1202
  msgstr ""
1203
 
1204
+ #: ../includes/mycred-functions.php:2645
1205
  msgid "New Forum (bbPress)"
1206
  msgstr ""
1207
 
1208
+ #: ../includes/mycred-functions.php:2646
1209
  msgid "New Forum Topic (bbPress)"
1210
  msgstr ""
1211
 
1212
+ #: ../includes/mycred-functions.php:2647
1213
  msgid "Favorited Topic (bbPress)"
1214
  msgstr ""
1215
 
1216
+ #: ../includes/mycred-functions.php:2648
1217
  msgid "New Topic Reply (bbPress)"
1218
  msgstr ""
1219
 
1220
+ #: ../includes/mycred-functions.php:2652
1221
  msgid "Form Submission (Contact Form 7)"
1222
  msgstr ""
1223
 
1224
+ #: ../includes/mycred-functions.php:2655
1225
  msgid "Form Submission (Gravity Form)"
1226
  msgstr ""
1227
 
1228
+ #: ../includes/mycred-functions.php:2658
1229
  msgid "New Forum Topic (SimplePress)"
1230
  msgstr ""
1231
 
1232
+ #: ../includes/mycred-functions.php:2659
1233
  msgid "New Forum Post (SimplePress)"
1234
  msgstr ""
1235
 
1236
+ #: ../includes/mycred-functions.php:2668
1237
  msgid "Affiliate Signup (AffiliateWP)"
1238
  msgstr ""
1239
 
1240
+ #: ../includes/mycred-functions.php:2669
1241
  msgid "Referred Visit (AffiliateWP)"
1242
  msgstr ""
1243
 
1244
+ #: ../includes/mycred-functions.php:2670
1245
  msgid "Affiliate Referral (AffiliateWP)"
1246
  msgstr ""
1247
 
1248
+ #: ../includes/mycred-functions.php:2671
1249
  msgid "Referral Refund (AffiliateWP)"
1250
  msgstr ""
1251
 
1252
+ #: ../includes/mycred-functions.php:2680
1253
  msgid "Poll Voting"
1254
  msgstr ""
1255
 
1256
+ #: ../includes/mycred-functions.php:2683
1257
  msgid "Sending an Invite"
1258
  msgstr ""
1259
 
1260
+ #: ../includes/mycred-functions.php:2684
1261
  msgid "Accepting an Invite"
1262
  msgstr ""
1263
 
1264
+ #: ../includes/mycred-functions.php:2690
1265
  msgid "Banking Payout"
1266
  msgstr ""
1267
 
1268
+ #: ../includes/mycred-functions.php:2693
1269
  msgid "buyCRED Purchase (PayPal Standard)"
1270
  msgstr ""
1271
 
1272
+ #: ../includes/mycred-functions.php:2694
1273
  msgid "buyCRED Purchase (Skrill)"
1274
  msgstr ""
1275
 
1276
+ #: ../includes/mycred-functions.php:2695
1277
  msgid "buyCRED Purchase (Zombaio)"
1278
  msgstr ""
1279
 
1280
+ #: ../includes/mycred-functions.php:2696
1281
  msgid "buyCRED Purchase (NETBilling)"
1282
  msgstr ""
1283
 
1284
+ #: ../includes/mycred-functions.php:2697
1285
  msgid "buyCRED Purchase (BitPay)"
1286
  msgstr ""
1287
 
1288
+ #: ../includes/mycred-functions.php:2702
1289
  msgid "Coupon Purchase"
1290
  msgstr ""
1291
 
1292
+ #: ../includes/mycred-functions.php:2706
1293
  msgid "Store Purchase (WooCommerce)"
1294
  msgstr ""
1295
 
1296
+ #: ../includes/mycred-functions.php:2707
1297
  msgid "Store Reward (WooCommerce)"
1298
  msgstr ""
1299
 
1300
+ #: ../includes/mycred-functions.php:2708
1301
  msgid "Product Review (WooCommerce)"
1302
  msgstr ""
1303
 
1304
+ #: ../includes/mycred-functions.php:2711
1305
  msgid "Store Purchase (MarketPress)"
1306
  msgstr ""
1307
 
1308
+ #: ../includes/mycred-functions.php:2712
1309
  msgid "Store Reward (MarketPress)"
1310
  msgstr ""
1311
 
1312
+ #: ../includes/mycred-functions.php:2715
1313
  msgid "Store Purchase (WP E-Commerce)"
1314
  msgstr ""
1315
 
1316
+ #: ../includes/mycred-functions.php:2721
1317
  msgid "Event Payment (Event Espresso)"
1318
  msgstr ""
1319
 
1320
+ #: ../includes/mycred-functions.php:2722
1321
  msgid "Event Sale (Event Espresso)"
1322
  msgstr ""
1323
 
1324
+ #: ../includes/mycred-functions.php:2726
1325
  msgid "Event Payment (Events Manager)"
1326
  msgstr ""
1327
 
1328
+ #: ../includes/mycred-functions.php:2727
1329
  msgid "Event Sale (Events Manager)"
1330
  msgstr ""
1331
 
1332
+ #: ../includes/mycred-functions.php:2731
1333
+ msgid "Content Purchase"
1334
+ msgstr ""
1335
+
1336
+ #: ../includes/mycred-functions.php:2732
1337
+ msgid "Content Sale"
1338
  msgstr ""
1339
 
1340
+ #: ../includes/mycred-functions.php:2740
1341
  msgid "Manual Adjustment by Admin"
1342
  msgstr ""
1343
 
1344
+ #: ../includes/mycred-functions.php:2815
1345
+ msgid "Point types not found."
1346
+ msgstr ""
1347
+
1348
+ #: ../includes/mycred-functions.php:2860
1349
  #, php-format
1350
  msgid "You must exchange at least %s!"
1351
  msgstr ""
1352
 
1353
+ #: ../includes/mycred-functions.php:2869 ../addons/transfer/myCRED-addon-transfer.
1354
  #: php:161
1355
  msgid "Insufficient Funds. Please try a lower amount."
1356
  msgstr ""
1357
 
1358
+ #: ../includes/mycred-functions.php:2882
1359
  #, php-format
1360
  msgid "Exchange from %s"
1361
  msgstr ""
1362
 
1363
+ #: ../includes/mycred-functions.php:2894
1364
  #, php-format
1365
  msgid "Exchange to %s"
1366
  msgstr ""
1367
 
1368
+ #: ../includes/mycred-functions.php:2902
1369
  #, php-format
1370
  msgid "You have successfully exchanged %s into %s."
1371
  msgstr ""
1372
 
1373
+ #: ../includes/mycred-functions.php:2934
1374
  msgid "per day"
1375
  msgstr ""
1376
 
1377
+ #: ../includes/mycred-functions.php:2936
1378
  msgid "per week"
1379
  msgstr ""
1380
 
1381
+ #: ../includes/mycred-functions.php:2938
1382
  msgid "per month"
1383
  msgstr ""
1384
 
1385
+ #: ../includes/mycred-functions.php:2940
1386
  msgid "in total"
1387
  msgstr ""
1388
 
1389
+ #: ../includes/mycred-functions.php:2942 ../includes/mycred-functions.php:2946
1390
  #, php-format
1391
  msgid "Maximum once"
1392
  msgid_plural "Maximum %d times"
1393
  msgstr[0] ""
1394
  msgstr[1] ""
1395
 
1396
+ #: ../includes/importers/mycred-cubepoints.php:298
1397
  msgid "No balances were imported."
1398
  msgstr ""
1399
 
1400
+ #: ../includes/importers/mycred-cubepoints.php:298
1401
  msgid "No log entries were imported!"
1402
  msgstr ""
1403
 
1404
+ #: ../includes/importers/mycred-cubepoints.php:306 ../includes/importers/mycred-
1405
+ #: log-entries.php:168
1406
  #, php-format
1407
  msgid ""
1408
  "Import complete - A total of <strong>%d</strong> entries were successfully "
1409
  "imported. <strong>%d</strong> was skipped."
1410
  msgstr ""
1411
 
1412
+ #: ../includes/importers/mycred-cubepoints.php:320 ../includes/importers/mycred-
1413
+ #: balances.php:211 ../includes/importers/mycred-log-entries.php:180 ..
1414
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:102
1415
  msgid "View Log"
1416
  msgstr ""
1417
 
1418
+ #: ../includes/importers/mycred-cubepoints.php:320 ../includes/importers/mycred-
1419
+ #: balances.php:211 ../includes/importers/mycred-log-entries.php:180
1420
  msgid "Import More"
1421
  msgstr ""
1422
 
1423
+ #: ../includes/importers/mycred-cubepoints.php:335
1424
  msgid "No CubePoints log."
1425
  msgstr ""
1426
 
1427
+ #: ../includes/importers/mycred-cubepoints.php:348
1428
  msgid "Import CubePoints Log"
1429
  msgstr ""
1430
 
1431
+ #: ../includes/importers/mycred-cubepoints.php:369
1432
  msgid "Select what to import"
1433
  msgstr ""
1434
 
1435
+ #: ../includes/importers/mycred-cubepoints.php:370
1436
  msgid "Log Entries Only"
1437
  msgstr ""
1438
 
1439
+ #: ../includes/importers/mycred-cubepoints.php:371
1440
  msgid "CubePoints Balances Only"
1441
  msgstr ""
1442
 
1443
+ #: ../includes/importers/mycred-cubepoints.php:372
1444
  msgid "Log Entries and Balances"
1445
  msgstr ""
1446
 
1447
+ #: ../includes/importers/mycred-cubepoints.php:396
1448
  msgid ""
1449
  "Warning! Importing CubePoints balances will replace your users myCRED "
1450
  "balance!"
1451
  msgstr ""
1452
 
1453
+ #: ../includes/importers/mycred-cubepoints.php:420
1454
  msgid "Import Log"
1455
  msgstr ""
1456
 
1457
+ #: ../includes/importers/mycred-balances.php:104 ../includes/importers/mycred-
1458
+ #: balances.php:186 ../includes/importers/mycred-balances.php:229 ..
1459
+ #: includes/importers/mycred-balances.php:244 ../includes/importers/mycred-log-
1460
+ #: entries.php:104 ../includes/importers/mycred-log-entries.php:153 ..
1461
+ #: includes/importers/mycred-log-entries.php:199 ../includes/importers/mycred-
1462
+ #: log-entries.php:216
1463
  msgid "Sorry, there has been an error."
1464
  msgstr ""
1465
 
1466
+ #: ../includes/importers/mycred-balances.php:105 ../includes/importers/mycred-log-
1467
+ #: entries.php:105
1468
  msgid "The file does not exist, please try again."
1469
  msgstr ""
1470
 
1471
+ #: ../includes/importers/mycred-balances.php:187 ../includes/importers/mycred-log-
1472
+ #: entries.php:154
1473
  msgid "The CSV is invalid."
1474
  msgstr ""
1475
 
1476
+ #: ../includes/importers/mycred-balances.php:199
1477
  #, php-format
1478
  msgid ""
1479
  "Import complete - A total of <strong>%d</strong> balances were successfully "
1480
  "imported. <strong>%d</strong> was skipped."
1481
  msgstr ""
1482
 
1483
+ #: ../includes/importers/mycred-balances.php:260
1484
  msgid "Import Balances"
1485
  msgstr ""
1486
 
1487
+ #: ../includes/importers/mycred-balances.php:281
1488
  msgid "Import balances from a CSV file."
1489
  msgstr ""
1490
 
1491
+ #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
1492
+ #: entries.php:263
1493
  msgid ""
1494
  "Before you can upload your import file, you will need to fix the following "
1495
  "error:"
1496
  msgstr ""
1497
 
1498
+ #: ../includes/importers/mycred-balances.php:304 ../includes/importers/mycred-log-
1499
+ #: entries.php:275
1500
  msgid "Choose a file from your computer:"
1501
  msgstr ""
1502
 
1503
+ #: ../includes/importers/mycred-balances.php:310 ../includes/importers/mycred-log-
1504
+ #: entries.php:281
1505
  #, php-format
1506
  msgid "Maximum size: %s"
1507
  msgstr ""
1508
 
1509
+ #: ../includes/importers/mycred-balances.php:315 ../includes/importers/mycred-log-
1510
+ #: entries.php:286
1511
  msgid "OR enter path to file:"
1512
  msgstr ""
1513
 
1514
+ #: ../includes/importers/mycred-balances.php:322 ../includes/importers/mycred-log-
1515
+ #: entries.php:293
1516
  msgid "Delimiter"
1517
  msgstr ""
1518
 
1519
+ #: ../includes/importers/mycred-balances.php:326
1520
  msgid "Method"
1521
  msgstr ""
1522
 
1523
+ #: ../includes/importers/mycred-balances.php:328
1524
  msgid "Replace current balances with the amount in this CSV file"
1525
  msgstr ""
1526
 
1527
+ #: ../includes/importers/mycred-balances.php:329
1528
  msgid "Adjust current balances according to the amount in this CSV file"
1529
  msgstr ""
1530
 
1531
+ #: ../includes/importers/mycred-balances.php:335 ../includes/importers/mycred-log-
1532
+ #: entries.php:299
1533
  msgid "Upload file and import"
1534
  msgstr ""
1535
 
1536
+ #: ../includes/importers/mycred-log-entries.php:232
1537
  msgid "Import Log Entries"
1538
  msgstr ""
1539
 
1540
+ #: ../includes/importers/mycred-log-entries.php:253
1541
  msgid "Import log entries from a CSV file."
1542
  msgstr ""
1543
 
1544
+ #: ../addons/banking/myCRED-addon-banking.php:172
1545
  msgid "Central Banking"
1546
  msgstr ""
1547
 
1548
+ #: ../addons/banking/myCRED-addon-banking.php:173
1549
  #, php-format
1550
  msgid ""
1551
  "Instead of creating %_plural% out of thin-air, all payouts are made from a "
1553
  "deposited back into this account."
1554
  msgstr ""
1555
 
1556
+ #: ../addons/banking/myCRED-addon-banking.php:180
1557
  #, php-format
1558
  msgid "Apply a positive or negative interest rate on your users %_plural% balances."
1559
  msgstr ""
1560
 
1561
+ #: ../addons/banking/myCRED-addon-banking.php:187
1562
  #, php-format
1563
  msgid "Setup mass %_singular% payouts for your users."
1564
  msgstr ""
1565
 
1566
+ #: ../addons/banking/myCRED-addon-banking.php:249
1567
  #, php-format
1568
  msgid "Your banking setup for %plural%."
1569
  msgstr ""
1669
  msgstr ""
1670
 
1671
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/sell-
1672
+ #: content/myCRED-addon-sell-content.php:117 ../addons/buy-creds/myCRED-addon-buy-
1673
+ #: creds.php:836
1674
  msgid "Leave empty to use the default value."
1675
  msgstr ""
1676
 
1788
  msgid "Go Back"
1789
  msgstr ""
1790
 
1791
+ #: ../addons/transfer/myCRED-addon-transfer.php:217
1792
  msgid "Select the point types that users can transfer."
1793
  msgstr ""
1794
 
1795
+ #: ../addons/transfer/myCRED-addon-transfer.php:285
1796
  msgid "Limit Amount"
1797
  msgstr ""
1798
 
1802
  "multiple point types."
1803
  msgstr ""
1804
 
1805
+ #: ../addons/ranks/myCRED-addon-ranks.php:444
1806
  #, php-format
1807
  msgid "Ranks for %s"
1808
  msgstr ""
1809
 
1810
+ #: ../addons/ranks/myCRED-addon-ranks.php:984 ../addons/ranks/myCRED-addon-ranks.
1811
+ #: php:985 ../addons/ranks/myCRED-addon-ranks.php:986 ../addons/ranks/myCRED-
1812
+ #: addon-ranks.php:987 ../addons/ranks/myCRED-addon-ranks.php:988 ..
1813
+ #: addons/ranks/myCRED-addon-ranks.php:991 ../addons/ranks/myCRED-addon-ranks.
1814
+ #: php:992
1815
  msgid "Rank Updated."
1816
  msgstr ""
1817
 
1818
+ #: ../addons/ranks/myCRED-addon-ranks.php:989
1819
  msgid "Rank Enabled"
1820
  msgstr ""
1821
 
1822
+ #: ../addons/ranks/myCRED-addon-ranks.php:1030
1823
  #, php-format
1824
  msgid "<strong>Rank:</strong> %s"
1825
  msgstr ""
1826
 
1827
+ #: ../addons/ranks/myCRED-addon-ranks.php:1399
1828
  msgid ""
1829
  "Use this button to calculate or recalculate your users totals. If not used, "
1830
  "the users current balance will be used as a starting point."
1831
  msgstr ""
1832
 
1833
+ #: ../addons/ranks/myCRED-addon-ranks.php:1441 ../addons/ranks/myCRED-addon-ranks.
1834
+ #: php:1486
1835
  #, php-format
1836
  msgid ""
1837
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
1838
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
1839
  msgstr ""
1840
 
1841
+ #: ../addons/ranks/myCRED-addon-ranks.php:1463
1842
  msgid "Include in Topic Replies"
1843
  msgstr ""
1844
 
1845
+ #: ../addons/ranks/myCRED-addon-ranks.php:1464 ../addons/badges/myCRED-addon-
1846
+ #: badges.php:1047
1847
  msgid "Include in Profile"
1848
  msgstr ""
1849
 
1850
+ #: ../addons/ranks/myCRED-addon-ranks.php:1465
1851
  msgid "Include in Topic Replies and Profile"
1852
  msgstr ""
1853
 
1854
+ #: ../addons/ranks/myCRED-addon-ranks.php:1469
1855
  msgid "Rank in bbPress"
1856
  msgstr ""
1857
 
1858
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:148
1859
  msgid "Rank not found. Please check the id and try again."
1860
  msgstr ""
1861
 
1863
  msgid "Notify your users when their balances changes."
1864
  msgstr ""
1865
 
1866
+ #: ../addons/notifications/myCRED-addon-notifications.php:206
1867
  msgid "Restore to default"
1868
  msgstr ""
1869
 
1870
+ #: ../addons/notifications/myCRED-addon-notifications.php:220
1871
  msgid ""
1872
  "Number of seconds before a notice is automatically removed after being shown "
1873
  "to user. Use zero to disable."
1874
  msgstr ""
1875
 
1876
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:221
1877
  msgid "Badge Add-on"
1878
  msgstr ""
1879
 
1880
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:222
1881
  msgid "user gains a badge"
1882
  msgstr ""
1883
 
1884
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:325 ../addons/email-
1885
+ #: notices/myCRED-addon-email-notices.php:331
1886
  msgid "Email Schedule"
1887
  msgstr ""
1888
 
1889
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:327
1890
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1891
  msgstr ""
1892
 
1893
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:335
1894
  msgid "Send emails immediately"
1895
  msgstr ""
1896
 
1897
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:339
1898
  msgid "Send emails once an hour"
1899
  msgstr ""
1900
 
1901
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:343
1902
  msgid "Send emails once a day"
1903
  msgstr ""
1904
 
1905
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346
1906
  msgid "Subscriptions"
1907
  msgstr ""
1908
 
1909
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1910
  #, php-format
1911
  msgid ""
1912
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1913
  "updates."
1914
  msgstr ""
1915
 
1916
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:353
1917
  msgid "SMTP Override"
1918
  msgstr ""
1919
 
1920
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
1921
  msgid ""
1922
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1923
  "use a SMTP plugin for emails."
1924
  msgstr ""
1925
 
1926
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:741
1927
  #, php-format
1928
  msgctxt "Badge Title - Level 1,2,3.."
1929
  msgid "%s - Level %d"
1930
  msgstr ""
1931
 
1932
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:915 ../addons/email-
1933
+ #: notices/myCRED-addon-email-notices.php:1095
1934
  msgid "All types"
1935
  msgstr ""
1936
 
1937
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1166
1938
  msgid "The users new balance"
1939
  msgstr ""
1940
 
1941
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1167
1942
  msgid "The users old balance"
1943
  msgstr ""
1944
 
1945
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1168
1946
  msgid "The amount of points gained or lost in this instance"
1947
  msgstr ""
1948
 
1949
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1169
1950
  msgid "The log entry"
1951
  msgstr ""
1952
 
1953
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1248 ../addons/email-
1954
+ #: notices/myCRED-addon-email-notices.php:1251 ../addons/email-notices/myCRED-
1955
+ #: addon-email-notices.php:1257
1956
  msgid "Email Notice Updated."
1957
  msgstr ""
1958
 
1959
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1292
1960
  msgid "Settings saved."
1961
  msgstr ""
1962
 
1963
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1343
1964
  msgid "Unsubscribe"
1965
  msgstr ""
1966
 
1967
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1365
1968
  msgid "There are no email notifications yet."
1969
  msgstr ""
1970
 
1971
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1372 ..
1972
+ #: addons/badges/myCRED-addon-badges.php:1248
1973
  msgid "Save Changes"
1974
  msgstr ""
1975
 
1976
+ #: ../addons/stats/myCRED-addon-stats.php:56
1977
  msgid "Statistics"
1978
  msgstr ""
1979
 
1980
+ #: ../addons/stats/myCRED-addon-stats.php:174
1981
  msgid "Overview"
1982
  msgstr ""
1983
 
1984
+ #: ../addons/stats/myCRED-addon-stats.php:240
1985
  msgid "Refresh"
1986
  msgstr ""
1987
 
1988
+ #: ../addons/stats/myCRED-addon-stats.php:296
1989
  msgid "Your log is empty. No statistics can be shown."
1990
  msgstr ""
1991
 
1994
  msgid "Total %s:"
1995
  msgstr ""
1996
 
1997
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138 ..
1998
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:267
1999
  #, php-format
2000
  msgid "Total amount of %s in circulation"
2001
  msgstr ""
2002
 
2003
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:171 ..
2004
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:299
2005
  msgid "Total gains (%)"
2006
  msgstr ""
2007
 
2008
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:175 ..
2009
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:303
2010
  msgid "Total loses (%)"
2011
  msgstr ""
2012
 
2013
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
2014
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:307
2015
  #, php-format
2016
  msgid "Total Gained: %s"
2017
  msgstr ""
2018
 
2019
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
2020
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:307
2021
  #, php-format
2022
  msgid "Total Spent: %s"
2023
  msgstr ""
2024
 
2025
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:193 ..
2026
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:321
2027
  msgid "This Year"
2028
  msgstr ""
2029
 
 
 
 
 
 
 
 
2030
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
2031
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
2032
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
2033
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:203 ..
2034
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:325 ..
2035
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:327 ..
2036
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:329 ..
2037
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:331
2038
+ msgid "Gained"
2039
+ msgstr ""
2040
+
2041
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
2042
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
2043
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:202 ..
2044
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:204 ..
2045
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:326 ..
2046
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:328 ..
2047
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:330 ..
2048
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:332
2049
  msgid "Lost"
2050
  msgstr ""
2051
 
2085
  msgid "Gains in the last 10 days"
2086
  msgstr ""
2087
 
2088
+ #: ../addons/badges/myCRED-addon-badges.php:49 ../addons/badges/myCRED-addon-
2089
+ #: badges.php:50 ../addons/badges/myCRED-addon-badges.php:51 ..
2090
+ #: addons/badges/myCRED-addon-badges.php:157 ../addons/badges/myCRED-addon-
2091
+ #: badges.php:158 ../addons/badges/myCRED-addon-badges.php:404 ..
2092
+ #: addons/badges/myCRED-addon-badges.php:410 ../addons/badges/myCRED-addon-
2093
+ #: badges.php:416
2094
  msgid "Badges"
2095
  msgstr ""
2096
 
2097
+ #: ../addons/badges/myCRED-addon-badges.php:183
2098
  #, php-format
2099
  msgid "Badges (%d)"
2100
  msgstr ""
2101
 
2102
+ #: ../addons/badges/myCRED-addon-badges.php:277
2103
  #, php-format
2104
  msgid "%d Users earned this badge."
2105
  msgstr ""
2106
 
2107
+ #: ../addons/badges/myCRED-addon-badges.php:281
2108
  msgid "No users has yet earned this badge."
2109
  msgstr ""
2110
 
2111
+ #: ../addons/badges/myCRED-addon-badges.php:305
2112
  msgid "No connections where removed."
2113
  msgstr ""
2114
 
2115
+ #: ../addons/badges/myCRED-addon-badges.php:307
2116
  #, php-format
2117
  msgid "%s connections where removed."
2118
  msgstr ""
2119
 
2120
+ #: ../addons/badges/myCRED-addon-badges.php:405
2121
  msgid "Badge"
2122
  msgstr ""
2123
 
2124
+ #: ../addons/badges/myCRED-addon-badges.php:407
2125
  msgid "Add New Badge"
2126
  msgstr ""
2127
 
2128
+ #: ../addons/badges/myCRED-addon-badges.php:408
2129
  msgid "Edit Badge"
2130
  msgstr ""
2131
 
2132
+ #: ../addons/badges/myCRED-addon-badges.php:409
2133
  msgid "New Badge"
2134
  msgstr ""
2135
 
2136
+ #: ../addons/badges/myCRED-addon-badges.php:411
2137
  msgid "View Badge"
2138
  msgstr ""
2139
 
2140
+ #: ../addons/badges/myCRED-addon-badges.php:412
2141
  msgid "Search Badge"
2142
  msgstr ""
2143
 
2144
+ #: ../addons/badges/myCRED-addon-badges.php:413
2145
  msgid "No badges found"
2146
  msgstr ""
2147
 
2148
+ #: ../addons/badges/myCRED-addon-badges.php:414
2149
  msgid "No badges found in Trash"
2150
  msgstr ""
2151
 
2152
+ #: ../addons/badges/myCRED-addon-badges.php:460 ../addons/badges/myCRED-addon-
2153
+ #: badges.php:568
2154
  msgid "Badge Name"
2155
  msgstr ""
2156
 
2157
+ #: ../addons/badges/myCRED-addon-badges.php:461
2158
  msgid "Badge Images"
2159
  msgstr ""
2160
 
2161
+ #: ../addons/badges/myCRED-addon-badges.php:462
2162
  msgid "Requirements"
2163
  msgstr ""
2164
 
2165
+ #: ../addons/badges/myCRED-addon-badges.php:504
2166
  msgid "A user must have gained or lost:"
2167
  msgstr ""
2168
 
2169
+ #: ../addons/badges/myCRED-addon-badges.php:543 ../addons/badges/myCRED-addon-
2170
+ #: badges.php:546 ../addons/badges/myCRED-addon-badges.php:550 ..
2171
+ #: addons/badges/myCRED-addon-badges.php:551 ../addons/badges/myCRED-addon-
2172
+ #: badges.php:552
2173
  msgid "Badge Updated."
2174
  msgstr ""
2175
 
2176
+ #: ../addons/badges/myCRED-addon-badges.php:548
2177
  msgid "Badge Enabled"
2178
  msgstr ""
2179
 
2180
+ #: ../addons/badges/myCRED-addon-badges.php:549
2181
  msgid "Badge Saved"
2182
  msgstr ""
2183
 
2184
+ #: ../addons/badges/myCRED-addon-badges.php:582
2185
  msgid "Badge Setup"
2186
  msgstr ""
2187
 
2188
+ #: ../addons/badges/myCRED-addon-badges.php:611
2189
  msgid "Assign Badge"
2190
  msgstr ""
2191
 
2192
+ #: ../addons/badges/myCRED-addon-badges.php:612
2193
  msgid "Remove Connections"
2194
  msgstr ""
2195
 
2196
+ #: ../addons/badges/myCRED-addon-badges.php:671
2197
  msgid "Time(s)"
2198
  msgstr ""
2199
 
2200
+ #: ../addons/badges/myCRED-addon-badges.php:672
2201
  msgid "In total"
2202
  msgstr ""
2203
 
2204
+ #: ../addons/badges/myCRED-addon-badges.php:706 ../addons/badges/myCRED-addon-
2205
+ #: badges.php:809 ../addons/badges/myCRED-addon-badges.php:869 ..
2206
+ #: addons/badges/myCRED-addon-badges.php:884
2207
  msgid "Badge Image"
2208
  msgstr ""
2209
 
2210
+ #: ../addons/badges/myCRED-addon-badges.php:707 ../addons/badges/myCRED-addon-
2211
+ #: badges.php:707
2212
  msgid "Set badge image"
2213
  msgstr ""
2214
 
2215
+ #: ../addons/badges/myCRED-addon-badges.php:718
2216
  msgid "Default Image"
2217
  msgstr ""
2218
 
2219
+ #: ../addons/badges/myCRED-addon-badges.php:719 ../addons/badges/myCRED-addon-
2220
+ #: badges.php:779 ../addons/badges/myCRED-addon-badges.php:810 ..
2221
+ #: addons/badges/myCRED-addon-badges.php:869
2222
  msgid "image url"
2223
  msgstr ""
2224
 
2225
+ #: ../addons/badges/myCRED-addon-badges.php:720 ../addons/badges/myCRED-addon-
2226
+ #: badges.php:780 ../addons/badges/myCRED-addon-badges.php:811 ..
2227
+ #: addons/badges/myCRED-addon-badges.php:869
2228
  msgid "Add Image"
2229
  msgstr ""
2230
 
2231
+ #: ../addons/badges/myCRED-addon-badges.php:721
2232
  msgid "Optional image to show when a user has not yet earned this badge."
2233
  msgstr ""
2234
 
2235
+ #: ../addons/badges/myCRED-addon-badges.php:741 ../addons/badges/myCRED-addon-
2236
+ #: badges.php:794
2237
  #, php-format
2238
  msgid "Level %d"
2239
  msgstr ""
2240
 
2241
+ #: ../addons/badges/myCRED-addon-badges.php:746 ../addons/badges/myCRED-addon-
2242
+ #: badges.php:799 ../addons/badges/myCRED-addon-badges.php:869
2243
  msgid "for"
2244
  msgstr ""
2245
 
2246
+ #: ../addons/badges/myCRED-addon-badges.php:778
2247
  msgid "Main Image"
2248
  msgstr ""
2249
 
2250
+ #: ../addons/badges/myCRED-addon-badges.php:812 ../addons/badges/myCRED-addon-
2251
+ #: badges.php:869
2252
  msgid "Leave empty if you do not want to assign a custom image for this level."
2253
  msgstr ""
2254
 
2255
+ #: ../addons/badges/myCRED-addon-badges.php:812 ../addons/badges/myCRED-addon-
2256
+ #: badges.php:869
2257
  msgid "Remove this level"
2258
  msgstr ""
2259
 
2260
+ #: ../addons/badges/myCRED-addon-badges.php:826
2261
  msgid "Add Level"
2262
  msgstr ""
2263
 
2264
+ #: ../addons/badges/myCRED-addon-badges.php:869 ../addons/badges/myCRED-addon-
2265
+ #: badges.php:1214
2266
  msgid "Level"
2267
  msgstr ""
2268
 
2269
+ #: ../addons/badges/myCRED-addon-badges.php:886
2270
  msgid "Use as Badge"
2271
  msgstr ""
2272
 
2273
+ #: ../addons/badges/myCRED-addon-badges.php:1027 ../addons/badges/myCRED-addon-
2274
+ #: badges.php:1063
2275
  msgid "Show all badges, including badges users have not yet earned."
2276
  msgstr ""
2277
 
2278
+ #: ../addons/badges/myCRED-addon-badges.php:1048
2279
  msgid "Include in Forum Replies"
2280
  msgstr ""
2281
 
2282
+ #: ../addons/badges/myCRED-addon-badges.php:1049
2283
  msgid "Include in Profile and Forum Replies"
2284
  msgstr ""
2285
 
2286
+ #: ../addons/badges/myCRED-addon-badges.php:1164
2287
  msgid "User Badges"
2288
  msgstr ""
2289
 
2290
+ #: ../addons/badges/myCRED-addon-badges.php:1173
2291
  msgid ""
2292
  "Here you can view the badges this user has earned and if needed, manually "
2293
  "give or take away a badge from a user."
2294
  msgstr ""
2295
 
2296
+ #: ../addons/badges/myCRED-addon-badges.php:1182
2297
  msgid "Not earned"
2298
  msgstr ""
2299
 
2300
+ #: ../addons/badges/myCRED-addon-badges.php:1189 ../addons/badges/myCRED-addon-
2301
+ #: badges.php:1232
2302
  msgid "Earned"
2303
  msgstr ""
2304
 
2305
+ #: ../addons/badges/myCRED-addon-badges.php:1201
2306
  msgid "No image"
2307
  msgstr ""
2308
 
2309
+ #: ../addons/badges/myCRED-addon-badges.php:1209
2310
  msgid "Select a level"
2311
  msgstr ""
2312
 
2313
+ #: ../addons/badges/includes/mycred-badge-functions.php:69
2314
  #, php-format
2315
  msgid "Level %s"
2316
  msgstr ""
2317
 
2318
+ #: ../addons/badges/includes/mycred-badge-functions.php:72
2319
  #, php-format
2320
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
2321
  msgid "%s for %s %s - %s"
2322
  msgstr ""
2323
 
2324
+ #: ../addons/badges/includes/mycred-badge-functions.php:72 ..
2325
  #: addons/coupons/myCRED-addon-coupons.php:221 ../addons/coupons/myCRED-addon-
2326
  #: coupons.php:516
2327
  #, php-format
2330
  msgstr[0] ""
2331
  msgstr[1] ""
2332
 
2333
+ #: ../addons/badges/includes/mycred-badge-functions.php:74
2334
  #, php-format
2335
  msgctxt "\"x points\" for \"reference\" in total"
2336
  msgid "%s for %s in total"
2564
  msgid "Apply Coupon"
2565
  msgstr ""
2566
 
2567
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:114
2568
  msgid "Profit Share"
2569
  msgstr ""
2570
 
2571
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:122
2572
  msgid "Save Profit Share"
2573
  msgstr ""
2574
 
2575
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:175
2576
  msgid "Profit Share override saved"
2577
  msgstr ""
2578
 
2579
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:517
2580
  msgid "For Visitors"
2581
  msgstr ""
2582
 
2583
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:534
2584
  msgid "For Members"
2585
  msgstr ""
2586
 
2587
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:549
2588
  msgid "For members that can not afford to buy"
2589
  msgstr ""
2590
 
2591
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:739
2592
  #, php-format
2593
  msgid "Enable sale of this %s"
2594
  msgstr ""
2621
  msgstr ""
2622
 
2623
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:284 ../addons/buy-creds/myCRED-
2624
+ #: addon-buy-creds.php:1754
2625
  msgid "No pending payments found"
2626
  msgstr ""
2627
 
2629
  msgid "Not found in Trash"
2630
  msgstr ""
2631
 
2632
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
2633
+ #: addon-buy-creds.php:1077 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713
2634
  msgid "Transaction ID"
2635
  msgstr ""
2636
 
2637
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
2638
+ #: addon-buy-creds.php:1073
2639
  msgid "Buyer"
2640
  msgstr ""
2641
 
2642
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
2643
+ #: addon-buy-creds.php:1716 ../addons/buy-creds/abstracts/mycred-abstract-payment-
2644
  #: gateway.php:594
2645
  msgid "Cost"
2646
  msgstr ""
2647
 
2648
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
2649
  msgid "Type"
2650
  msgstr ""
2651
 
2652
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
2653
  msgid "Pay Out"
2654
  msgstr ""
2655
 
2656
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
2657
  msgid "buyCRED Purchase Log"
2658
  msgstr ""
2659
 
2660
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
2661
+ #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:921
2662
  msgid "Purchase Log"
2663
  msgstr ""
2664
 
2665
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
2666
  msgid "Select the point types that users can buy. You must select at least one!"
2667
  msgstr ""
2668
 
2669
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
2670
  #, php-format
2671
  msgid "Show seperate log for %_plural% purchases."
2672
  msgstr ""
2673
 
2674
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
2675
  #, php-format
2676
  msgid "%s Exchange Rate"
2677
  msgstr ""
2678
 
2679
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
2680
  msgid "Save Exchange Rates"
2681
  msgstr ""
2682
 
2683
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899
2684
  msgid "Exchange rate override saved"
2685
  msgstr ""
2686
 
2687
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
2688
  msgid "Payment completed"
2689
  msgstr ""
2690
 
2691
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:921 ../addons/buy-creds/myCRED-
2692
+ #: addon-buy-creds.php:1084
2693
  msgid "buyCRED Settings"
2694
  msgstr ""
2695
 
2696
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:964
2697
  msgid "Enable for test purchases."
2698
  msgstr ""
2699
 
2700
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986
2701
  msgid "More Gateways"
2702
  msgstr ""
2703
 
2704
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1076
2705
  msgid "Payed"
2706
  msgstr ""
2707
 
2708
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1084
2709
  msgid "<strong>buy</strong>CRED Purchase Log"
2710
  msgstr ""
2711
 
2712
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1535
2713
  #, php-format
2714
  msgid "Buy with %gateway%"
2715
  msgstr ""
2968
  msgid "myCRED"
2969
  msgstr "افزونه \"اعتبار من\""
2970
 
2971
+ #: ../mycred.php:562
2972
  #, php-format
2973
  msgid "About %s"
2974
  msgstr "درباره %s"
2975
 
2976
+ #: ../mycred.php:571
2977
  msgid "Awesome People"
2978
  msgstr "\"اعتبار من\""
2979
 
2980
+ #: ../mycred.php:659 ../mycred.php:684 ../mycred.php:702 ../includes/mycred-
2981
+ #: shortcodes.php:653 ../addons/gateway/event-booking/mycred-eventsmanager.php:
2982
  #: 478 ../addons/transfer/myCRED-addon-transfer.php:146 ../addons/ranks/myCRED-
2983
+ #: addon-ranks.php:426 ../addons/ranks/myCRED-addon-ranks.php:1534 ..
2984
+ #: addons/badges/myCRED-addon-badges.php:635 ../addons/sell-content/myCRED-addon-
2985
+ #: sell-content.php:397
2986
  msgid "Processing..."
2987
  msgstr "در حال پردازش ..."
2988
 
2989
+ #: ../mycred.php:662
2990
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
2991
  msgstr ""
2992
  "اخطار ! تمام میزان امتیازات کاربران شما روی صفر تنظیم خواهند شد ! این عمل "
2993
  "غیرقابل بازگشت می باشد !"
2994
 
2995
+ #: ../mycred.php:663
2996
  msgid "Done!"
2997
  msgstr "انجام شد !"
2998
 
2999
+ #: ../mycred.php:664 ../mycred.php:683 ../mycred.php:701
3000
  msgid "Close"
3001
  msgstr "بستن"
3002
 
3003
+ #: ../mycred.php:665
3004
  #, php-format
3005
  msgid "Export users %plural%"
3006
  msgstr "خروجی گرفتن از %plural% کاربران"
3007
 
3008
+ #: ../mycred.php:762 ../mycred.php:784 ../addons/gateway/event-booking/mycred-
3009
  #: eventsmanager.php:537 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
3010
+ #: php:499 ../addons/email-notices/myCRED-addon-email-notices.php:841
3011
  msgid "Setup"
3012
  msgstr "نصب"
3013
 
3014
+ #: ../mycred.php:764 ../modules/mycred-module-settings.php:21 ../modules/mycred-
3015
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23 ..
3016
  #: includes/mycred-network.php:170 ../addons/gateway/carts/mycred-marketpress.
3017
  #: php:371 ../addons/stats/abstracts/mycred-abstract-stat-widget.php:108
3023
  msgstr "این پنل تنظیمات ، چیزی برای تنظیم ندارد"
3024
 
3025
  #: ../abstracts/mycred-abstract-hook.php:283 ../abstracts/mycred-abstract-hook.
3026
+ #: php:354 ../modules/mycred-module-hooks.php:1819 ../includes/mycred-functions.
3027
+ #: php:2928
3028
  msgid "No limit"
3029
  msgstr "بدون محدودیت"
3030
 
3042
 
3043
  #: ../abstracts/mycred-abstract-hook.php:364 ../addons/banking/abstracts/mycred-
3044
  #: abstract-service.php:498 ../addons/email-notices/myCRED-addon-email-notices.
3045
+ #: php:208 ../addons/email-notices/myCRED-addon-email-notices.php:1040 ..
3046
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:695 ../addons/buy-creds/myCRED-
3047
+ #: addon-buy-creds.php:718 ../addons/buy-creds/abstracts/mycred-abstract-payment-
3048
  #: gateway.php:1023 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
3049
  #: php:1046 ../addons/buy-creds/gateways/zombaio.php:356
3050
  msgid "Select"
3051
  msgstr "انتخاب"
3052
 
3053
+ #: ../abstracts/mycred-abstract-module.php:401 ../abstracts/mycred-abstract-
3054
+ #: module.php:411
3055
  msgid "Surprise"
3056
  msgstr "غافلگیری"
3057
 
3058
+ #: ../abstracts/mycred-abstract-module.php:512 ../includes/mycred-network.php:93
3059
  msgid "click to close"
3060
  msgstr "برای بستن کلیک کنید ."
3061
 
3062
+ #: ../abstracts/mycred-abstract-module.php:513 ../includes/mycred-network.php:94
3063
  msgid "click to open"
3064
  msgstr "برای باز شدن کلیک کنید ."
3065
 
3066
+ #: ../abstracts/mycred-abstract-module.php:546 ../addons/buy-creds/myCRED-addon-
3067
+ #: buy-creds.php:926
3068
  msgid "Settings Updated"
3069
  msgstr "تنظیمات به روز شد"
3070
 
3087
  msgstr "نکته"
3088
 
3089
  #: ../modules/mycred-module-settings.php:484 ../modules/mycred-module-addons.php:
3090
+ #: 311 ../modules/mycred-module-log.php:358 ../modules/mycred-module-log.php:647 .
3091
+ #: ./modules/mycred-module-hooks.php:196 ../includes/mycred-network.php:141 ..
3092
+ #: includes/mycred-admin.php:590 ../addons/banking/myCRED-addon-banking.php:238 .
3093
+ #: ./addons/stats/myCRED-addon-stats.php:230 ../addons/buy-creds/myCRED-addon-buy-
3094
+ #: creds.php:915 ../addons/buy-creds/myCRED-addon-buy-creds.php:1021
3095
  msgid "Access Denied"
3096
  msgstr "دسترسی غیرمجاز می باشد"
3097
 
3237
 
3238
  #: ../modules/mycred-module-settings.php:625 ../modules/mycred-module-settings.
3239
  #: php:640 ../modules/mycred-module-log.php:407 ../addons/ranks/myCRED-addon-
3240
+ #: ranks.php:1623 ../addons/buy-creds/myCRED-addon-buy-creds.php:1717
3241
  msgid "Actions"
3242
  msgstr "عملیات ها"
3243
 
3246
  msgstr "لیست گزارشات ( لوگ ) خالی"
3247
 
3248
  #: ../modules/mycred-module-settings.php:632 ../addons/ranks/myCRED-addon-ranks.
3249
+ #: php:1615
3250
  msgid "User Meta Key"
3251
  msgstr "کلید اطلاعات کاربر ( Meta key ("
3252
 
3253
  #: ../modules/mycred-module-settings.php:636 ../addons/ranks/myCRED-addon-ranks.
3254
+ #: php:1049 ../addons/badges/myCRED-addon-badges.php:463
3255
  msgid "Users"
3256
  msgstr "کاربران"
3257
 
3271
  #: ../modules/mycred-module-settings.php:674 ../modules/mycred-module-settings.
3272
  #: php:695 ../modules/mycred-module-settings.php:720 ..
3273
  #: addons/gateway/carts/mycred-woocommerce.php:160 ../addons/email-
3274
+ #: notices/myCRED-addon-email-notices.php:1082
3275
  msgid "Label"
3276
  msgstr "برچسب ( اتیکت )"
3277
 
3283
 
3284
  #: ../modules/mycred-module-settings.php:739 ../addons/gateway/event-
3285
  #: booking/mycred-eventespresso3.php:502 ../addons/buy-creds/myCRED-addon-buy-
3286
+ #: creds.php:985
3287
  msgid "Update Settings"
3288
  msgstr "به روزرسانی تنظیمات"
3289
 
3325
  msgid "Add-ons"
3326
  msgstr "افزونه های جانبی"
3327
 
3328
+ #: ../modules/mycred-module-addons.php:189
3329
  msgid ""
3330
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
3331
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
3337
  "فراهم کنید تا برای سایر اعضای سایت هم امتیاز بخرند . ( آقای ایکس برای آقای "
3338
  "ایگرگ امتیاز بخرد ! )"
3339
 
3340
+ #: ../modules/mycred-module-addons.php:211
3341
  msgid "Create email notices for any type of myCRED instance."
3342
  msgstr "برای هر یک از بخش های \"اعتبار من\" ، اطلاعیه ایمیلی بسازید ."
3343
 
3344
+ #: ../modules/mycred-module-addons.php:256
3345
  msgid ""
3346
  "This add-on allows you to sell posts, pages or any public post types on your "
3347
  "website. You can either sell the entire content or using our shortcode, sell "
3353
  "محتوای مورد نظرتان را از دسترس عموم خارج کرده و آن ها را تحت عناوین مختلف ، "
3354
  "مثل \"تیزر\" و یا \"پیش نمایش\" به فروش رسانید ."
3355
 
3356
+ #: ../modules/mycred-module-addons.php:278
3357
  msgid ""
3358
  "Allow your users to send or \"donate\" points to other members by either using "
3359
  "the mycred_transfer shortcode or the myCRED Transfer widget."
3362
  "\"اهدا\" کنند . از دو طریق می توان این کار را انجام داد ، استفاده از کد "
3363
  "mycred_transfer و یا ابزارک جابجایی امتیاز \"اعتبار من\" ."
3364
 
3365
+ #: ../modules/mycred-module-addons.php:321
3366
  #, php-format
3367
  msgid "%s Add-ons"
3368
  msgstr "افزونه های جانبی %s"
3369
 
3370
+ #: ../modules/mycred-module-addons.php:328
3371
  msgid "Add-on Activated"
3372
  msgstr "افزونه جانبی فعال شد"
3373
 
3374
+ #: ../modules/mycred-module-addons.php:331
3375
  msgid "Add-on Deactivated"
3376
  msgstr "افزونه جانبی غیرفعال شد"
3377
 
3378
+ #: ../modules/mycred-module-addons.php:339
3379
  msgid "Add-ons can expand your current installation with further features."
3380
  msgstr ""
3381
  "افزونه های جانبی می توانند قابلیت های جدید و مفیدی را به افزونه ی فعلی شما "
3382
  "ببخشند ."
3383
 
3384
+ #: ../modules/mycred-module-addons.php:367
3385
  #, php-format
3386
  msgid "You can find more add-ons in our %s."
3387
  msgstr "می توانید افزونه های بیشتر را در %s ما بیابید ."
3388
 
3389
+ #: ../modules/mycred-module-addons.php:367
3390
  msgid "online store"
3391
  msgstr "فروشگاه آنلاین"
3392
 
3393
+ #: ../modules/mycred-module-addons.php:390
3394
  msgid "Deactivate Add-on"
3395
  msgstr "غیرفعال کردن افزونه ی جانبی"
3396
 
3397
+ #: ../modules/mycred-module-addons.php:391
3398
  msgid "Deactivate"
3399
  msgstr "غیرفعالسازی"
3400
 
3401
+ #: ../modules/mycred-module-addons.php:398
3402
  msgid "Activate Add-on"
3403
  msgstr "فعال کردن افزونه جانبی"
3404
 
3405
+ #: ../modules/mycred-module-addons.php:399
3406
  msgid "Activate"
3407
  msgstr "فعالسازی"
3408
 
3409
+ #: ../modules/mycred-module-addons.php:417
3410
  msgid "Version"
3411
  msgstr "نسخه"
3412
 
3413
+ #: ../modules/mycred-module-addons.php:421
3414
  msgid "By"
3415
  msgstr "توسط"
3416
 
3417
+ #: ../modules/mycred-module-addons.php:425
3418
  msgid "About"
3419
  msgstr "درباره"
3420
 
3424
  msgstr "لیست گزارش ( لوگ )"
3425
 
3426
  #: ../modules/mycred-module-log.php:276 ../modules/mycred-module-log.php:277 ..
3427
+ #: includes/mycred-admin.php:429 ../addons/banking/services/mycred-bank-service-
3428
  #: payouts.php:246
3429
  msgid "History"
3430
  msgstr "لیست تغییرات"
3433
  msgid "Search results for"
3434
  msgstr "نتایج جستجو برای عبارت"
3435
 
3436
+ #: ../modules/mycred-module-log.php:525 ../includes/mycred-log.php:872
3437
  msgid "User Missing"
3438
  msgstr "یافت نشدن کاربر"
3439
 
3440
+ #: ../modules/mycred-module-log.php:609 ../includes/mycred-log.php:754 ..
3441
+ #: includes/mycred-admin.php:802 ../addons/email-notices/myCRED-addon-email-
3442
+ #: notices.php:900 ../addons/email-notices/myCRED-addon-email-notices.php:1076
3443
  msgid "User"
3444
  msgstr "کاربر"
3445
 
3449
  msgid "Hooks"
3450
  msgstr "پنل تنظیمات امتیازها"
3451
 
3452
+ #: ../modules/mycred-module-hooks.php:110
3453
  #, php-format
3454
  msgid "%plural% for registrations"
3455
  msgstr "اهدای %_plural% برای ثبت نام"
3456
 
3457
+ #: ../modules/mycred-module-hooks.php:111
3458
  #, php-format
3459
  msgid "Award %_plural% for users joining your website."
3460
  msgstr "برای کاربرانی که عضوی از سایت شما می شوند %_plural% جایزه دهید"
3461
 
3462
+ #: ../modules/mycred-module-hooks.php:131
3463
  #, php-format
3464
  msgid "%plural% for logins"
3465
  msgstr "اهدای %_plural% برای وارد شدن به سایت"
3466
 
3467
+ #: ../modules/mycred-module-hooks.php:132
3468
  #, php-format
3469
  msgid ""
3470
  "Award %_plural% for logging in to your website. You can also set an optional "
3473
  "به کاربرانی که در سایت شما لوگین می کنند %_plural% جایزه دهید . البته می "
3474
  "توانید محدودیت های اختیاری هم برای این بخش تعیین کنید ."
3475
 
3476
+ #: ../modules/mycred-module-hooks.php:138
3477
  #, php-format
3478
  msgid "%plural% for publishing content"
3479
  msgstr "اهدای %_plural% به کاربران ، برای انتشار مطلب در سایت شما"
3480
 
3481
+ #: ../modules/mycred-module-hooks.php:139
3482
  #, php-format
3483
  msgid ""
3484
  "Award %_plural% for publishing content on your website. If your custom post "
3488
  "کند ) ، %_plural% جایزه دهید . اگر نوع مطلبی که می خواهید در زیر نیامده است "
3489
  "، ابتدا اطمینان حاصل کنید که نوع مطلب مورد نظرتان \"عمومی\" باشد ."
3490
 
3491
+ #: ../modules/mycred-module-hooks.php:145
3492
  #, php-format
3493
  msgid "%plural% for comments"
3494
  msgstr "اهدای %_plural% برای ثبت دیدگاه"
3495
 
3496
+ #: ../modules/mycred-module-hooks.php:146
3497
  #, php-format
3498
  msgid "Award %_plural% for making comments."
3499
  msgstr "به کاربرانی که در بخش های مختلف سایت شما نظر می دهند ، %_plural% جایزه دهید ."
3500
 
3501
+ #: ../modules/mycred-module-hooks.php:152
3502
  #, php-format
3503
  msgid "%plural% for clicking on links"
3504
  msgstr "اهدای %_plural% برای کلیک کردن بر روی لینک ها"
3505
 
3506
+ #: ../modules/mycred-module-hooks.php:153
3507
  msgid ""
3508
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
3509
  "shortcode."
3511
  "به کاربرانی که روی لینک های تولید شده با کد [mycred_link] ، کلیک می کنند ، "
3512
  "%_plural% جایزه دهید ."
3513
 
3514
+ #: ../modules/mycred-module-hooks.php:159
3515
  #, php-format
3516
  msgid "%plural% for viewing Videos"
3517
  msgstr "اهدای %_plural% برای تماشای ویدیوها"
3518
 
3519
+ #: ../modules/mycred-module-hooks.php:160
3520
  msgid ""
3521
  "Award %_plural% to users who watches videos embedded using the "
3522
  "[mycred_video] shortcode."
3524
  "به کاربرانی که ویدیوهای تولید شده با کد-کوتاه [mycred_video] را تماشا می "
3525
  "کنند ، %_plural% جایزه دهید ."
3526
 
3527
+ #: ../modules/mycred-module-hooks.php:202
3528
  #, php-format
3529
  msgid "%s Hooks"
3530
  msgstr "پنل تنظیمات امتیازهای %s"
3531
 
3532
+ #: ../modules/mycred-module-hooks.php:206
3533
  #, php-format
3534
  msgid ""
3535
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
3538
  "پنل تنظیماتی امتیازها محلی است که شما تعیین می کنید چه مقدار %_plural% بر "
3539
  "اساس انجام انواع عملیات ها ، به کاربرانتان اهدا شده و یا از آن ها کسر گردد ."
3540
 
3541
+ #: ../modules/mycred-module-hooks.php:225 ../addons/banking/myCRED-addon-banking.
3542
+ #: php:274 ../addons/buy-creds/myCRED-addon-buy-creds.php:953
3543
  msgid "Enable"
3544
  msgstr "فعالسازی"
3545
 
3546
+ #: ../modules/mycred-module-hooks.php:243 ../addons/banking/myCRED-addon-banking.
3547
+ #: php:293
3548
  msgid "Update Changes"
3549
  msgstr "به روزرسانی تغییرات"
3550
 
3551
+ #: ../modules/mycred-module-hooks.php:420 ../modules/mycred-module-hooks.php:526 .
3552
+ #: ./modules/mycred-module-hooks.php:693 ../modules/mycred-module-hooks.php:724 ..
3553
+ #: modules/mycred-module-hooks.php:801 ../modules/mycred-module-hooks.php:1167 ..
3554
+ #: modules/mycred-module-hooks.php:1184 ../modules/mycred-module-hooks.php:1233 .
3555
+ #: ./modules/mycred-module-hooks.php:1685 ../modules/mycred-module-hooks.php:1702
3556
+ #: ../modules/mycred-module-hooks.php:1719 ../modules/mycred-module-hooks.php:
3557
+ #: 3010 ../modules/mycred-module-hooks.php:3030 ../plugins/mycred-hook-invite-
3558
+ #: anyone.php:211 ../plugins/mycred-hook-invite-anyone.php:232 ../plugins/mycred-
3559
+ #: hook-wp-postratings.php:173 ../plugins/mycred-hook-wp-postratings.php:192 ..
3560
+ #: plugins/mycred-hook-gravityforms.php:165 ../plugins/mycred-hook-simplepress.
3561
+ #: php:309 ../plugins/mycred-hook-simplepress.php:322 ../plugins/mycred-hook-
3562
+ #: simplepress.php:339 ../plugins/mycred-hook-simplepress.php:357 ..
3563
+ #: plugins/mycred-hook-buddypress-gallery.php:116 ../plugins/mycred-hook-
3564
+ #: buddypress.php:520 ../plugins/mycred-hook-buddypress.php:537 ../plugins/mycred-
3565
+ #: hook-buddypress.php:554 ../plugins/mycred-hook-buddypress.php:574 ..
3566
+ #: plugins/mycred-hook-buddypress.php:587 ../plugins/mycred-hook-buddypress.php:
3567
+ #: 604 ../plugins/mycred-hook-buddypress.php:617 ../plugins/mycred-hook-
3568
+ #: buddypress.php:634 ../plugins/mycred-hook-buddypress.php:651 ../plugins/mycred-
3569
+ #: hook-buddypress.php:1231 ../plugins/mycred-hook-buddypress.php:1244 ..
3570
+ #: plugins/mycred-hook-buddypress.php:1261 ../plugins/mycred-hook-buddypress.php:
3571
+ #: 1278 ../plugins/mycred-hook-buddypress.php:1295 ../plugins/mycred-hook-
3572
+ #: buddypress.php:1312 ../plugins/mycred-hook-buddypress.php:1330 ..
3573
+ #: plugins/mycred-hook-buddypress.php:1343 ../plugins/mycred-hook-buddypress.php:
3574
+ #: 1360 ../plugins/mycred-hook-buddypress.php:1377 ../plugins/mycred-hook-
3575
+ #: buddypress-links.php:271 ../plugins/mycred-hook-buddypress-links.php:288 ..
3576
+ #: plugins/mycred-hook-buddypress-links.php:305 ../plugins/mycred-hook-
3577
+ #: buddypress-links.php:324 ../plugins/mycred-hook-buddypress-links.php:341 ..
3578
+ #: plugins/mycred-hook-buddypress-links.php:354 ../plugins/mycred-hook-
3579
+ #: affiliatewp.php:229 ../plugins/mycred-hook-affiliatewp.php:246 ..
3580
  #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-buddypress-media.
3581
+ #: php:224 ../plugins/mycred-hook-buddypress-media.php:238 ../plugins/mycred-hook-
3582
+ #: buddypress-media.php:252 ../plugins/mycred-hook-buddypress-media.php:265 ..
3583
+ #: plugins/mycred-hook-buddypress-media.php:275 ../plugins/mycred-hook-
3584
+ #: buddypress-media.php:285 ../plugins/mycred-hook-contact-form7.php:168 ..
3585
+ #: plugins/mycred-hook-jetpack.php:545 ../plugins/mycred-hook-jetpack.php:558 ..
3586
+ #: plugins/mycred-hook-bbPress.php:443 ../plugins/mycred-hook-bbPress.php:456 ..
3587
+ #: plugins/mycred-hook-bbPress.php:473 ../plugins/mycred-hook-bbPress.php:491 ..
3588
+ #: plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:525 ..
3589
+ #: plugins/mycred-hook-bbPress.php:551 ../plugins/mycred-hook-badgeOS.php:336
3590
  msgid "Log template"
3591
  msgstr "نمونه ی لیست گزارش ( لوگ )"
3592
 
3593
+ #: ../modules/mycred-module-hooks.php:682 ../modules/mycred-module-hooks.php:689 .
3594
+ #: ./modules/mycred-module-hooks.php:713 ../modules/mycred-module-hooks.php:720 ..
3595
+ #: modules/mycred-module-hooks.php:790 ../modules/mycred-module-hooks.php:797 ..
3596
+ #: modules/mycred-module-hooks.php:1021 ../modules/mycred-module-hooks.php:1163 .
3597
+ #: ./modules/mycred-module-hooks.php:1180 ../modules/mycred-module-hooks.php:1229
3598
+ #: ../modules/mycred-module-hooks.php:3018 ../modules/mycred-module-hooks.php:
3599
+ #: 3038 ../plugins/mycred-hook-invite-anyone.php:216 ../plugins/mycred-hook-
3600
+ #: invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:237 ..
3601
+ #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-wp-
3602
+ #: postratings.php:165 ../plugins/mycred-hook-wp-postratings.php:184 ..
3603
+ #: plugins/mycred-hook-gravityforms.php:160 ../plugins/mycred-hook-simplepress.
3604
+ #: php:304 ../plugins/mycred-hook-simplepress.php:334 ../plugins/mycred-hook-
3605
+ #: buddypress-gallery.php:111 ../plugins/mycred-hook-buddypress.php:515 ..
3606
+ #: plugins/mycred-hook-buddypress.php:532 ../plugins/mycred-hook-buddypress.php:
3607
+ #: 549 ../plugins/mycred-hook-buddypress.php:566 ../plugins/mycred-hook-
3608
+ #: buddypress.php:599 ../plugins/mycred-hook-buddypress.php:629 ../plugins/mycred-
3609
+ #: hook-buddypress.php:646 ../plugins/mycred-hook-buddypress.php:1256 ..
3610
+ #: plugins/mycred-hook-buddypress.php:1273 ../plugins/mycred-hook-buddypress.php:
3611
+ #: 1290 ../plugins/mycred-hook-buddypress.php:1307 ../plugins/mycred-hook-
3612
+ #: buddypress.php:1325 ../plugins/mycred-hook-buddypress.php:1355 ..
3613
+ #: plugins/mycred-hook-buddypress.php:1372 ../plugins/mycred-hook-buddypress-
3614
+ #: links.php:266 ../plugins/mycred-hook-buddypress-links.php:283 ..
3615
+ #: plugins/mycred-hook-buddypress-links.php:300 ../plugins/mycred-hook-
3616
+ #: buddypress-links.php:310 ../plugins/mycred-hook-buddypress-links.php:319 ..
3617
+ #: plugins/mycred-hook-buddypress-links.php:336 ../plugins/mycred-hook-
3618
+ #: affiliatewp.php:241 ../plugins/mycred-hook-events-manager-light.php:205 ..
3619
  #: plugins/mycred-hook-sharethis.php:302 ../plugins/mycred-hook-buddypress-media.
3620
+ #: php:220 ../plugins/mycred-hook-buddypress-media.php:234 ../plugins/mycred-hook-
3621
+ #: buddypress-media.php:248 ../plugins/mycred-hook-wp-favorite-posts.php:222 ..
3622
+ #: plugins/mycred-hook-wp-favorite-posts.php:240 ../plugins/mycred-hook-contact-
3623
+ #: form7.php:163 ../plugins/mycred-hook-bbPress.php:438 ../plugins/mycred-hook-
3624
+ #: bbPress.php:468 ../plugins/mycred-hook-bbPress.php:503 ../plugins/mycred-hook-
3625
+ #: bbPress.php:520 ../plugins/mycred-hook-woocommerce.php:336 ../includes/mycred-
3626
+ #: shortcodes.php:1143
3627
  msgid "Limit"
3628
  msgstr "محدوده"
3629
 
3630
+ #: ../modules/mycred-module-hooks.php:686 ../modules/mycred-module-hooks.php:702 .
3631
+ #: ./modules/mycred-module-hooks.php:717 ../modules/mycred-module-hooks.php:733 ..
3632
+ #: modules/mycred-module-hooks.php:794 ../modules/mycred-module-hooks.php:810 ..
3633
+ #: modules/mycred-module-hooks.php:1680 ../modules/mycred-module-hooks.php:1697 .
3634
+ #: ./modules/mycred-module-hooks.php:1714
3635
  msgid "Content Author"
3636
  msgstr "نویسنده ی مطلب"
3637
 
3638
+ #: ../modules/mycred-module-hooks.php:1014 ../modules/mycred-module-hooks.php:
3639
+ #: 2035 ../modules/mycred-module-hooks.php:2405 ../plugins/mycred-hook-wp-polls.
3640
+ #: php:154 ../plugins/mycred-hook-gd-star-rating.php:121 ../plugins/mycred-hook-
3641
+ #: gd-star-rating.php:134 ../plugins/mycred-hook-events-manager-light.php:209 ..
3642
+ #: plugins/mycred-hook-events-manager-light.php:222 ../plugins/mycred-hook-wp-
3643
+ #: favorite-posts.php:226 ../plugins/mycred-hook-wp-favorite-posts.php:244 ..
3644
+ #: plugins/mycred-hook-wp-favorite-posts.php:258 ../plugins/mycred-hook-wp-
3645
+ #: favorite-posts.php:271 ../plugins/mycred-hook-woocommerce.php:340 ..
3646
+ #: plugins/mycred-hook-badgeOS.php:143 ../plugins/mycred-hook-badgeOS.php:145 ..
3647
+ #: plugins/mycred-hook-badgeOS.php:156 ../addons/banking/services/mycred-bank-
3648
  #: service-payouts.php:283 ../addons/banking/services/mycred-bank-service-
3649
  #: interest.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:371 ..
3650
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
3651
  #: addons/gateway/carts/mycred-woocommerce.php:176 ..
3652
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
3653
  #: addons/gateway/carts/mycred-marketpress.php:428 ../addons/coupons/myCRED-
3654
+ #: addon-coupons.php:557 ../addons/buy-creds/myCRED-addon-buy-creds.php:672 ..
3655
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:735
3656
  msgid "Log Template"
3657
  msgstr "نمونه لیست گزارش ( لوگ )"
3658
 
3659
+ #: ../modules/mycred-module-hooks.php:1157
3660
  #, php-format
3661
  msgid "%plural% for Posts"
3662
  msgstr "اهدای %plural% برای پست ها"
3663
 
3664
+ #: ../modules/mycred-module-hooks.php:1174
3665
  #, php-format
3666
  msgid "%plural% for Pages"
3667
  msgstr "اهدای %plural% برای ایجاد صفحات"
3668
 
3669
+ #: ../modules/mycred-module-hooks.php:1223
3670
  #, php-format
3671
  msgid "%plural% for %s"
3672
  msgstr "اهدای %plural% برای %s"
3673
 
3674
+ #: ../modules/mycred-module-hooks.php:1673 ../includes/mycred-functions.php:2600
3675
  msgid "Approved Comment"
3676
  msgstr "نظرات تایید شده"
3677
 
3678
+ #: ../modules/mycred-module-hooks.php:1676 ../modules/mycred-module-hooks.php:
3679
+ #: 1693 ../modules/mycred-module-hooks.php:1710
3680
  msgid "Comment Author"
3681
  msgstr "نویسنده ی دیدگاه"
3682
 
3683
+ #: ../modules/mycred-module-hooks.php:1690
3684
  msgid "Comment Marked SPAM"
3685
  msgstr "دیدگاه هایی که به عنوان اسپم نشانه گذاری شده اند"
3686
 
3687
+ #: ../modules/mycred-module-hooks.php:1707
3688
  msgid "Trashed / Unapproved Comments"
3689
  msgstr "دیدگاه ها تایید نشده یا منتقل شده به زباله دان"
3690
 
3691
+ #: ../modules/mycred-module-hooks.php:1724 ../modules/mycred-module-hooks.php:
3692
+ #: 2042 ../addons/transfer/myCRED-addon-transfer.php:264 ../addons/coupons/myCRED-
3693
  #: addon-coupons.php:175
3694
  msgid "Limits"
3695
  msgstr "محدودیت ها"
3696
 
3697
+ #: ../modules/mycred-module-hooks.php:1727
3698
  msgid "Limit per post"
3699
  msgstr "محدودیت برای هر پست"
3700
 
3701
+ #: ../modules/mycred-module-hooks.php:1729
3702
  msgid ""
3703
  "The number of comments per post that grants %_plural% to the comment author. "
3704
  "Use zero for unlimited."
3706
  "تعداد دیدگاه های مجاز برای هر پست ، که باعث کسب %_plural% برای کاربر خواهد "
3707
  "شد . برای برداشتن این محدودیت عدد صفر را وارد کنید ."
3708
 
3709
+ #: ../modules/mycred-module-hooks.php:1733
3710
  msgid "Limit per day"
3711
  msgstr "محدودیت هر روزه"
3712
 
3713
+ #: ../modules/mycred-module-hooks.php:1735
3714
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
3715
  msgstr ""
3716
  "تعداد دیدگاه های مجاز در روز ، که باعث کسب %_plural% خواهد شد . برای برداشتن "
3717
  "این محدودیت عدد صفر را وارد کنید ."
3718
 
3719
+ #: ../modules/mycred-module-hooks.php:1740
3720
  #, php-format
3721
  msgid ""
3722
  "%plural% is to be awarded even when comment authors reply to their own "
3725
  "اهدای %_plural% حتی برای زمانی که کاربر به نظر قبلی خودش پاسخ بدهد ( نظرهای "
3726
  "تو در تو )"
3727
 
3728
+ #: ../modules/mycred-module-hooks.php:1820
3729
  msgid "Once for each unique URL"
3730
  msgstr "یک بار برای هر لینک یکتا"
3731
 
3732
+ #: ../modules/mycred-module-hooks.php:1821
3733
  msgid "Once for each unique link id"
3734
  msgstr "یک بار برای هر شناسه ( آی دی ) لینک یکتا"
3735
 
3736
+ #: ../modules/mycred-module-hooks.php:2032
3737
  msgid ""
3738
  "The default amount to award for clicking on links. You can override this in "
3739
  "the shortcode."
3741
  "مقدار پیش فرضی که برای کلیک بر روی لینک ها اهدا می گردد . می توانید این "
3742
  "مقدار را در شورت کد مربوطه ، مجددا تنظیم نمایید ."
3743
 
3744
+ #: ../modules/mycred-module-hooks.php:2052 ../modules/mycred-module-hooks.php:3106
3745
  msgid "Note!"
3746
  msgstr "نکته !"
3747
 
3748
+ #: ../modules/mycred-module-hooks.php:2052
3749
  msgid ""
3750
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
3751
  "generate one automatically based on the value set under href. If you are "
3757
  "href ، شناسه ای ایجاد می کند . اگر از این ویژگی برای به اشتراک گذاری محتوا "
3758
  "استفاده می کنید ، پیشنهاد می گردد با شناسه کار کنید ."
3759
 
3760
+ #: ../modules/mycred-module-hooks.php:2402
3761
  msgid "Amount to award for viewing videos."
3762
  msgstr "مقداری که به ازای تماشای ویدیوها به کاربر اهدا می گردد ."
3763
 
3764
+ #: ../modules/mycred-module-hooks.php:2412
3765
  msgid "Award Logic"
3766
  msgstr "منطق اهدای امتیازات"
3767
 
3768
+ #: ../modules/mycred-module-hooks.php:2414
3769
  #, php-format
3770
  msgid "Select when %_plural% should be awarded or deducted."
3771
  msgstr "مشخص کنید چه موقع باید %_plural% اهدا و یا کسر بشود ."
3772
 
3773
+ #: ../modules/mycred-module-hooks.php:2415
3774
  msgid "Play - As soon as video starts playing."
3775
  msgstr "پخش - به محض شروع به پخش ویدیو"
3776
 
3777
+ #: ../modules/mycred-module-hooks.php:2416
3778
  msgid "Full - First when the entire video has played."
3779
  msgstr "کامل - بعد از اینکه کل ویدیو به صورت کامل پخش بشود"
3780
 
3781
+ #: ../modules/mycred-module-hooks.php:2417
3782
  msgid "Interval - For each x number of seconds watched."
3783
  msgstr "بازه ای - برای هر تعداد ثانیه ی مشخصی از ویدیو که تماشا می شود ."
3784
 
3785
+ #: ../modules/mycred-module-hooks.php:2420 ../addons/banking/services/mycred-bank-
3786
  #: service-payouts.php:271
3787
  msgid "Interval"
3788
  msgstr "فاصله زمانی"
3789
 
3790
+ #: ../modules/mycred-module-hooks.php:2422
3791
  msgid "Number of seconds"
3792
  msgstr "تعداد ثانیه ها"
3793
 
3794
+ #: ../modules/mycred-module-hooks.php:2429
3795
  msgid "Leniency"
3796
  msgstr "نرمی و ملایمت"
3797
 
3798
+ #: ../modules/mycred-module-hooks.php:2431
3799
  msgid ""
3800
  "The maximum percentage a users view of a movie can differ from the actual "
3801
  "length."
3803
  "بیشترین درصد ممکنی که طول یک ویدیو ممکنه با چیزی که برای کاربران نمایش داده "
3804
  "می شه ، تفاوت پیدا کنه"
3805
 
3806
+ #: ../modules/mycred-module-hooks.php:2434
3807
  msgid ""
3808
  "Do not set this value to zero! A lot of thing can happen while a user "
3809
  "watches a movie and sometimes a few seconds can drop of the counter due to "
3814
  "در طی بارگذاری و یا پخش مجدد می گیره ، ممکنه چند ثانیه ش اینور و اونور بشه ( "
3815
  "روی ثانیه شمار ویدیو تغییر ایجاد کنه )"
3816
 
3817
+ #: ../modules/mycred-module-hooks.php:3083 ../includes/mycred-widgets.php:196 ..
3818
  #: includes/mycred-widgets.php:385 ../includes/mycred-widgets.php:594 ..
3819
  #: addons/gateway/carts/mycred-woocommerce.php:92 ..
3820
  #: addons/transfer/includes/mycred-transfer-widgets.php:120 ..
3821
+ #: addons/ranks/myCRED-addon-ranks.php:1330 ../addons/buy-creds/gateways/skrill.
3822
  #: php:339
3823
  msgid "Title"
3824
  msgstr "عنوان"
3833
  msgstr "لیست اعمال و گزارشات %s"
3834
 
3835
  #: ../modules/mycred-module-buddypress.php:236 ../modules/mycred-module-
3836
+ #: buddypress.php:249 ../includes/mycred-log.php:990
3837
  msgid "All"
3838
  msgstr "همگی"
3839
 
3840
+ #: ../modules/mycred-module-buddypress.php:237 ../includes/mycred-log.php:991 ..
3841
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3842
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:318
3843
  msgid "Today"
3844
  msgstr "امروز"
3845
 
3846
+ #: ../modules/mycred-module-buddypress.php:238 ../includes/mycred-log.php:992
3847
  msgid "Yesterday"
3848
  msgstr "دیروز"
3849
 
3850
+ #: ../modules/mycred-module-buddypress.php:239 ../includes/mycred-log.php:993 ..
3851
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3852
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:319
3853
  msgid "This Week"
3854
  msgstr "این هفته"
3855
 
3856
+ #: ../modules/mycred-module-buddypress.php:240 ../includes/mycred-log.php:994 ..
3857
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:192 ..
3858
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:320
3859
  msgid "This Month"
3860
  msgstr "این ماه"
3861
 
3862
+ #: ../modules/mycred-module-buddypress.php:423 ../addons/gateway/carts/mycred-
3863
+ #: woocommerce.php:152 ../addons/badges/myCRED-addon-badges.php:1010 ..
3864
+ #: addons/badges/myCRED-addon-badges.php:1046
3865
  msgid "Do not show"
3866
  msgstr "نمایش نده !"
3867
 
3868
+ #: ../modules/mycred-module-buddypress.php:425 ../addons/ranks/myCRED-addon-ranks.
3869
+ #: php:1419 ../addons/badges/myCRED-addon-badges.php:1012
3870
  msgid "Include under the \"Profile\" tab"
3871
  msgstr "شامل ( نمایش در ) زیر تب \"پروفایل کاربر\" "
3872
 
3873
+ #: ../modules/mycred-module-buddypress.php:430 ../addons/ranks/myCRED-addon-ranks.
3874
+ #: php:1417 ../addons/ranks/myCRED-addon-ranks.php:1462
3875
  msgid "Do not show."
3876
  msgstr "عدم نمایش"
3877
 
3878
+ #: ../modules/mycred-module-buddypress.php:431
3879
  msgid "Show in Profile"
3880
  msgstr "نمایش در پروفایل"
3881
 
3882
+ #: ../modules/mycred-module-buddypress.php:448
3883
  #, php-format
3884
  msgid "%singular% Balance"
3885
  msgstr "میزان %singular%"
3886
 
3887
+ #: ../modules/mycred-module-buddypress.php:470 ../addons/ranks/myCRED-addon-ranks.
3888
+ #: php:1439 ../addons/ranks/myCRED-addon-ranks.php:1484 ..
3889
+ #: addons/notifications/myCRED-addon-notifications.php:202
3890
  msgid "Template"
3891
  msgstr "نمونه ( الگو )"
3892
 
3893
+ #: ../modules/mycred-module-buddypress.php:475
3894
  #, php-format
3895
  msgid "%plural% History"
3896
  msgstr "گزارش جابجایی %plural%"
3897
 
3898
+ #: ../modules/mycred-module-buddypress.php:492
3899
  msgid "Members can view each others %_plural% history."
3900
  msgstr "اعضا می توانند گزارشات لیست شده از جابجایی %_plural% دیگران را ببینند ."
3901
 
3902
+ #: ../modules/mycred-module-buddypress.php:497
3903
  msgid "Menu Title"
3904
  msgstr "عنوان منو"
3905
 
3906
+ #: ../modules/mycred-module-buddypress.php:499
3907
  msgid "Title shown to me"
3908
  msgstr "عنوان به من نمایش داده شد"
3909
 
3910
+ #: ../modules/mycred-module-buddypress.php:504
3911
  #, php-format
3912
  msgid "Title shown to others. Use %s to show the first name."
3913
  msgstr ""
3914
  "عنوان به کاربران نمایش داده شد . برای اینکه فقط نام اول نمایش داده شود از %s "
3915
  "استفاده کنید ."
3916
 
3917
+ #: ../modules/mycred-module-buddypress.php:509
3918
  msgid "Menu Position"
3919
  msgstr "جایگاه منو"
3920
 
3921
+ #: ../modules/mycred-module-buddypress.php:511
3922
  msgid "Current menu positions:"
3923
  msgstr "جایگاه فعلی منو :"
3924
 
3925
+ #: ../modules/mycred-module-buddypress.php:516
3926
  msgid "History URL slug"
3927
  msgstr "لیست تغییرات قسمت پایانی و معنی دار نشانی های اینترنتی"
3928
 
3929
+ #: ../modules/mycred-module-buddypress.php:518
3930
  msgid "Do not use empty spaces!"
3931
  msgstr "از فضاهای خالی استفاده نکنید ( اسپیس نزنید ! )"
3932
 
3933
+ #: ../modules/mycred-module-buddypress.php:523
3934
  msgid "Number of history entries to show"
3935
  msgstr "تعداد داده های ورودی (تغییرات) قابل نمایش لیست"
3936
 
3937
+ #: ../plugins/mycred-hook-invite-anyone.php:15
3938
  msgid "Invite Anyone Plugin"
3939
  msgstr "افزونه ی Invite Anyone"
3940
 
3941
+ #: ../plugins/mycred-hook-invite-anyone.php:16
3942
  #, php-format
3943
  msgid ""
3944
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
3945
  "accepted."
3946
  msgstr "اهدای %_plural% برای فرستادن و یا قبول کردن دعوتنامه"
3947
 
3948
+ #: ../plugins/mycred-hook-invite-anyone.php:204
3949
  #, php-format
3950
  msgid "%plural% for Sending An Invite"
3951
  msgstr "اهدای %plural% برای ارسال دعوتنامه"
3952
 
3953
+ #: ../plugins/mycred-hook-invite-anyone.php:224
3954
  #, php-format
3955
  msgid "%plural% for Accepting An Invite"
3956
  msgstr "اهدای %plural% برای قبول دعتنامه"
3957
 
3958
+ #: ../plugins/mycred-hook-invite-anyone.php:228
3959
  #, php-format
3960
  msgid "%plural% for each invited user that accepts an invitation."
3961
  msgstr "اهدای %plural% به ازای هر کاربرِ دعوت شده ای که دعوتنامه را قبول کند ."
3962
 
3963
+ #: ../plugins/mycred-hook-wp-polls.php:15
3964
  msgid "WP-Polls"
3965
  msgstr "نظرسنجی های وردپرس | WP-Polls"
3966
 
3967
+ #: ../plugins/mycred-hook-wp-polls.php:16
3968
  #, php-format
3969
  msgid "Awards %_plural% for users voting in polls."
3970
  msgstr "اهدای %_plural% برای کاربرانی که در نظرسنجی ها رای می دهند ."
3971
 
3972
+ #: ../plugins/mycred-hook-gravityforms.php:129 ../plugins/mycred-hook-contact-
3973
+ #: form7.php:130
3974
  msgid "No forms found."
3975
  msgstr "فرمی یافت نشد ."
3976
 
3977
+ #: ../plugins/mycred-hook-gd-star-rating.php:15
3978
  msgid "GD Star Rating"
3979
  msgstr "افزونه ی GD Star Rating"
3980
 
3981
+ #: ../plugins/mycred-hook-gd-star-rating.php:16
3982
  #, php-format
3983
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
3984
  msgstr ""
3985
  "اهدای %_plural% برای کسانی که توسط افزونه ی GD Star Rating به انواع محتوای "
3986
  "سایت امتیاز می دهند ."
3987
 
3988
+ #: ../plugins/mycred-hook-gd-star-rating.php:115
3989
  msgid "Rating"
3990
  msgstr "رتبه بندی"
3991
 
3992
+ #: ../plugins/mycred-hook-gd-star-rating.php:128
3993
  msgid "Up / Down Vote"
3994
  msgstr "رای موافق / مخالف"
3995
 
3996
+ #: ../plugins/mycred-hook-simplepress.php:16
3997
  #, php-format
3998
  msgid "Awards %_plural% for Simple:Press actions."
3999
  msgstr "اهدای %_plural% برای فعالیت در سیمپل پرس ( افزونه ای انجمن ساز برای وردپرس )"
4000
 
4001
+ #: ../plugins/mycred-hook-simplepress.php:298 ../plugins/mycred-hook-bbPress.php:
4002
+ #: 462
4003
  #, php-format
4004
  msgid "%plural% for New Topic"
4005
  msgstr "اهدای %plural% برای تاپیک جدید"
4006
 
4007
+ #: ../plugins/mycred-hook-simplepress.php:315 ../plugins/mycred-hook-bbPress.php:
4008
+ #: 484
4009
  #, php-format
4010
  msgid "%plural% for Topic Deletion"
4011
  msgstr "اهدای %plural% برای پاکسازی و یا ادیت تاپیک"
4012
 
4013
+ #: ../plugins/mycred-hook-simplepress.php:328
4014
  #, php-format
4015
  msgid "%plural% for New Topic Post"
4016
  msgstr "اهدای %_plural% برای پست تاپیک جدید"
4017
 
4018
+ #: ../plugins/mycred-hook-simplepress.php:346
4019
  #, php-format
4020
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
4021
  msgstr ""
4022
  "نویسندگان تاپیک می توانند برای قرار دادن پست بر روی تاپیک خودشان %_plural% "
4023
  "کسب کنند ."
4024
 
4025
+ #: ../plugins/mycred-hook-simplepress.php:350
4026
  #, php-format
4027
  msgid "%plural% for Topic Post Deletion"
4028
  msgstr "اهدا یا کسر %plural% برای حذف کامل یا بخشی از پست تاپیک"
4029
 
4030
+ #: ../plugins/mycred-hook-buddypress-gallery.php:15
4031
  msgid "BuddyPress: Gallery Actions"
4032
  msgstr "بادی پرس : فعالیت های گالری"
4033
 
4034
+ #: ../plugins/mycred-hook-buddypress-gallery.php:16
4035
  #, php-format
4036
  msgid ""
4037
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
4038
  "Gallery."
4039
  msgstr "اهدای %_plural% برای ساختن گالری جدید ، چه با BP Album+ ، چه با BP Gallery ."
4040
 
4041
+ #: ../plugins/mycred-hook-buddypress-gallery.php:105
4042
  #, php-format
4043
  msgid "%plural% for New Gallery"
4044
  msgstr "اهدای %plural% برای گالری جدید"
4045
 
4046
+ #: ../plugins/mycred-hook-buddypress.php:16
4047
  msgid "BuddyPress: Members"
4048
  msgstr "بادی پرس : اعضا"
4049
 
4050
+ #: ../plugins/mycred-hook-buddypress.php:17
4051
  #, php-format
4052
  msgid "Awards %_plural% for profile related actions."
4053
  msgstr "اهدای %_plural% برای انجام فعالیت های مرتبط با پروفایل کاربری ."
4054
 
4055
+ #: ../plugins/mycred-hook-buddypress.php:24
4056
  msgid "BuddyPress: Groups"
4057
  msgstr "بادی پرس : گروه ها"
4058
 
4059
+ #: ../plugins/mycred-hook-buddypress.php:25
4060
  #, php-format
4061
  msgid ""
4062
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
4065
  "اهدای %_plural% برای انواع فعالیت های مربوط به گروه . می توانید از عدد منفی "
4066
  "برای کسر %_plural% و عدد صفر برای غیرفعالسازی تنظیماتی خاص ، استفاده نمایید ."
4067
 
4068
+ #: ../plugins/mycred-hook-buddypress.php:259 ../addons/gateway/event-
4069
  #: booking/mycred-eventsmanager.php:636 ../addons/gateway/event-booking/mycred-
4070
  #: eventsmanager-pro.php:617 ../addons/gateway/carts/mycred-wpecommerce.php:386 ..
4071
  #: addons/gateway/carts/mycred-marketpress.php:438
4072
  msgid "Insufficient Funds"
4073
  msgstr "موجودی کافی نیست !"
4074
 
4075
+ #: ../plugins/mycred-hook-buddypress.php:509
4076
  #, php-format
4077
  msgid "%plural% for Profile Updates"
4078
  msgstr "اهدای %plural% برای به روزرسانی پروفایل کاربری"
4079
 
4080
+ #: ../plugins/mycred-hook-buddypress.php:543
4081
  #, php-format
4082
  msgid "%plural% for New Avatar"
4083
  msgstr "اهدای %plural% برای آواتار جدید"
4084
 
4085
+ #: ../plugins/mycred-hook-buddypress.php:560
4086
  #, php-format
4087
  msgid "%plural% for New Friendships"
4088
  msgstr "اهدای %plural% برای رابطه ی دوستی جدید"
4089
 
4090
+ #: ../plugins/mycred-hook-buddypress.php:580
4091
  #, php-format
4092
  msgid "%plural% for Leaving Friendship"
4093
  msgstr "اهدا یا کسر %plural% برای حذف رابطه دوستی"
4094
 
4095
+ #: ../plugins/mycred-hook-buddypress.php:593
4096
  #, php-format
4097
  msgid "%plural% for New Comment"
4098
  msgstr "اهدای %plural% برای دیدگاه جدید"
4099
 
4100
+ #: ../plugins/mycred-hook-buddypress.php:610
4101
  #, php-format
4102
  msgid "%plural% for Deleting Comment"
4103
  msgstr "اهدا یا کسر %plural% برای پاک کردن دیدگاه"
4104
 
4105
+ #: ../plugins/mycred-hook-buddypress.php:623
4106
  #, php-format
4107
  msgid "%plural% for New Messages"
4108
  msgstr "اهدای %plural% برای پیام جدید"
4109
 
4110
+ #: ../plugins/mycred-hook-buddypress.php:640
4111
  #, php-format
4112
  msgid "%plural% for Sending Gift"
4113
  msgstr "اهدای %plural% برای ارسال هدیه"
4114
 
4115
+ #: ../plugins/mycred-hook-buddypress.php:1217
4116
  #, php-format
4117
  msgid "%plural% for Creating Groups"
4118
  msgstr "اهدای %plural% برای ساخت گروه ها"
4119
 
4120
+ #: ../plugins/mycred-hook-buddypress.php:1221
4121
  msgid ""
4122
  "If you use a negative value and the user does not have enough %_plural% the "
4123
  "\"Create Group\" button will be disabled."
4125
  "اگر از مقداری منفی استفاده کنید و کاربر هم %_plural% کافی برای کسر شدن "
4126
  "نداشته باشد ، کلید \"ساخت گروه\" غیرفعال خواهد شد ."
4127
 
4128
+ #: ../plugins/mycred-hook-buddypress.php:1225
4129
  msgid "Number of members before awarding %_plural%"
4130
  msgstr "تعداد کاربران قبل از اهدای %_plural%"
4131
 
4132
+ #: ../plugins/mycred-hook-buddypress.php:1227
4133
  msgid "Use zero to award %_plural% when group is created."
4134
  msgstr "برای اهدای %_plural% به هنگامی که گروه ساخته شد ، از عدد صفر استفاده نمایید ."
4135
 
4136
+ #: ../plugins/mycred-hook-buddypress.php:1237
4137
  #, php-format
4138
  msgid "%plural% for Deleting Groups"
4139
  msgstr "اهدای %plural% برای حذف گروه ها"
4140
 
4141
+ #: ../plugins/mycred-hook-buddypress.php:1250
4142
  #, php-format
4143
  msgid "%plural% for New Forum Topic"
4144
  msgstr "اهدای %plural% برای ایجاد تاپیک جدید در انجمن"
4145
 
4146
+ #: ../plugins/mycred-hook-buddypress.php:1267
4147
  #, php-format
4148
  msgid "%plural% for Editing Forum Topic"
4149
  msgstr "اهدای %plural% برای ویرایش تاپیک های انجمن"
4150
 
4151
+ #: ../plugins/mycred-hook-buddypress.php:1284
4152
  #, php-format
4153
  msgid "%plural% for New Forum Post"
4154
  msgstr "اهدای %plural% برای پست جدید در انجمن"
4155
 
4156
+ #: ../plugins/mycred-hook-buddypress.php:1301
4157
  #, php-format
4158
  msgid "%plural% for Editing Forum Post"
4159
  msgstr "اهدای %plural% برای ویرایش پست های انجمن"
4160
 
4161
+ #: ../plugins/mycred-hook-buddypress.php:1318
4162
  #, php-format
4163
  msgid "%plural% for Joining Groups"
4164
  msgstr "اهدای %plural% برای عضویت در گروه ها"
4165
 
4166
+ #: ../plugins/mycred-hook-buddypress.php:1322
4167
  msgid ""
4168
  "If you use a negative value and the user does not have enough %_plural% the "
4169
  "\"Join Group\" button will be disabled."
4171
  "اگر از مقداری منفی استفاده کنید و کاربر هم %_plural% کافی برای کسر شدن "
4172
  "نداشته باشد ، کلید \"عضویت در گروه\" غیرفعال خواهد شد ."
4173
 
4174
+ #: ../plugins/mycred-hook-buddypress.php:1336
4175
  #, php-format
4176
  msgid "%plural% for Leaving Groups"
4177
  msgstr "اهدا یا کسر %plural% برای ترک گروه ها"
4178
 
4179
+ #: ../plugins/mycred-hook-buddypress.php:1349
4180
  #, php-format
4181
  msgid "%plural% for New Group Avatar"
4182
  msgstr "اهدای %plural% برای آپلود آواتار جدید در گروه "
4183
 
4184
+ #: ../plugins/mycred-hook-buddypress.php:1366
4185
  #, php-format
4186
  msgid "%plural% for New Group Comment"
4187
  msgstr "اهدای %plural% برای دیدگاه جدید در گروه"
4188
 
4189
+ #: ../plugins/mycred-hook-buddypress-links.php:15
4190
  msgid "BuddyPress: Links"
4191
  msgstr "بادی پرس : لینک ها"
4192
 
4193
+ #: ../plugins/mycred-hook-buddypress-links.php:16
4194
  #, php-format
4195
  msgid "Awards %_plural% for link related actions."
4196
  msgstr "اهدای %_plural% برای انجام فعالیت های مرتبط با لینک ، توسط کاربر"
4197
 
4198
+ #: ../plugins/mycred-hook-buddypress-links.php:260
4199
  #, php-format
4200
  msgid "%plural% for New Links"
4201
  msgstr "اهدای %plural% برای لینک های جدید"
4202
 
4203
+ #: ../plugins/mycred-hook-buddypress-links.php:277
4204
  #, php-format
4205
  msgid "%plural% for Vote on Link"
4206
  msgstr "اهدای %plural% برای رای دادن روی لینک ها"
4207
 
4208
+ #: ../plugins/mycred-hook-buddypress-links.php:330
4209
  #, php-format
4210
  msgid "%plural% for Updating Links"
4211
  msgstr "اهدای %plural% برای به روزرسانی لینک ها"
4212
 
4213
+ #: ../plugins/mycred-hook-buddypress-links.php:347
4214
  #, php-format
4215
  msgid "%plural% for Deleting Links"
4216
  msgstr "اهدا یا کسر اهدای %plural% برای پاک کردن لینک ها"
4217
 
4218
+ #: ../plugins/mycred-hook-affiliatewp.php:260 ../includes/mycred-shortcodes.php:
4219
+ #: 1000 ../includes/mycred-shortcodes.php:1142 ../includes/mycred-admin.php:755 ..
4220
+ #: includes/mycred-admin.php:807 ../addons/banking/services/mycred-bank-service-
4221
+ #: payouts.php:266 ../addons/buy-creds/myCRED-addon-buy-creds.php:343 ..
4222
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:1635 ../addons/buy-creds/myCRED-
4223
+ #: addon-buy-creds.php:1715 ../addons/buy-creds/abstracts/mycred-abstract-payment-
4224
  #: gateway.php:593
4225
  msgid "Amount"
4226
  msgstr "مقدار"
4227
 
4228
+ #: ../plugins/mycred-hook-events-manager-light.php:15
4229
  msgid "Events Manager"
4230
  msgstr "مدیریت رویدادها"
4231
 
4232
+ #: ../plugins/mycred-hook-events-manager-light.php:16
4233
  #, php-format
4234
  msgid "Awards %_plural% for users attending events."
4235
  msgstr "اهدای %_plural% برای شرکت در رویدادها ."
4236
 
4237
+ #: ../plugins/mycred-hook-events-manager-light.php:199
4238
  msgid "Attending Event"
4239
  msgstr "رویداد مشارکتی"
4240
 
4241
+ #: ../plugins/mycred-hook-events-manager-light.php:216
4242
  msgid "Cancelling Attendance"
4243
  msgstr "لغو حضور"
4244
 
4245
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:15
4246
  msgid "WP Favorite Posts"
4247
  msgstr "پست های لیست علاقمندی ها"
4248
 
4249
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:16
4250
  #, php-format
4251
  msgid "Awards %_plural% for users adding posts to their favorites."
4252
  msgstr "اهدای %_plural% به کاربرانی که در لیست علاقمندی های خود پستی اضافه می کنند ."
4253
 
4254
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:216
4255
  msgid "Adding Content to Favorites"
4256
  msgstr "اضافه کردن مطلب به لیست علاقمندی ها"
4257
 
4258
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:252
4259
  msgid "Removing Content from Favorites"
4260
  msgstr "برداشتن مطلب از لیست علاقمندی ها"
4261
 
4262
+ #: ../plugins/mycred-hook-contact-form7.php:15
4263
  msgid "Contact Form 7 Form Submissions"
4264
  msgstr "پر کردن فرم و فرستادن فرم برای افزونه ی Contact Form 7"
4265
 
4266
+ #: ../plugins/mycred-hook-contact-form7.php:16
4267
  #, php-format
4268
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
4269
  msgstr "اهدای %_plural% برای پر کردن و فرستادن فرم ( فقط کاربران لوگین شده )"
4270
 
4271
+ #: ../plugins/mycred-hook-jetpack.php:15
4272
  msgid "Jetpack Subscriptions"
4273
  msgstr "اشتراک در افزونه جت پک"
4274
 
4275
+ #: ../plugins/mycred-hook-jetpack.php:16
4276
  #, php-format
4277
  msgid ""
4278
  "Awards %_plural% for users signing up for site or comment updates using "
4281
  "اهدای %_plural% برای کاربرانی که توسط افزونه ی جت پک و برای دریافت آپدیت های "
4282
  "بخش نظرات یا حتی خود سایت ثبت نام می کنند ."
4283
 
4284
+ #: ../plugins/mycred-hook-jetpack.php:538
4285
  msgid "Site Subscriptions"
4286
  msgstr "اشتراک در سایت"
4287
 
4288
+ #: ../plugins/mycred-hook-jetpack.php:551
4289
  msgid "Comment Subscriptions"
4290
  msgstr "اشتراک در دیدگاه ها"
4291
 
4292
+ #: ../plugins/mycred-hook-bbPress.php:15
4293
  msgid "bbPress"
4294
  msgstr "افزونه ی انجمن ساز بی بی پرس"
4295
 
4296
+ #: ../plugins/mycred-hook-bbPress.php:16
4297
  #, php-format
4298
  msgid "Awards %_plural% for bbPress actions."
4299
  msgstr "اهدای %_plural% برای فعالیت در بی بی پرس ( افزونه ی انجمن ساز برای وردپرس )"
4300
 
4301
+ #: ../plugins/mycred-hook-bbPress.php:432
4302
  #, php-format
4303
  msgid "%plural% for New Forum"
4304
  msgstr "اهدای %plural% برای انجمن جدید"
4305
 
4306
+ #: ../plugins/mycred-hook-bbPress.php:449
4307
  #, php-format
4308
  msgid "%plural% for Forum Deletion"
4309
  msgstr "اهدای %plural% برای حذف یا ادیت انجمن"
4310
 
4311
+ #: ../plugins/mycred-hook-bbPress.php:480
4312
  #, php-format
4313
  msgid "Forum authors can receive %_plural% for creating new topics."
4314
  msgstr "نویسندگان انجمن می توانند برای ساختن تاپیک %plural% دریافت کنند ."
4315
 
4316
+ #: ../plugins/mycred-hook-bbPress.php:497
4317
  #, php-format
4318
  msgid "%plural% for Favorited Topic"
4319
  msgstr "اهدای %plural% برای تاپیک های مورد علاقه شده"
4320
 
4321
+ #: ../plugins/mycred-hook-bbPress.php:514
4322
  #, php-format
4323
  msgid "%plural% for New Reply"
4324
  msgstr "اهدای %plural% برای پاسخ دادن به تاپیک"
4325
 
4326
+ #: ../plugins/mycred-hook-bbPress.php:532
4327
  #, php-format
4328
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
4329
  msgstr "نویسندگان تاپیک می توانند برای پاسخ به تاپیک خودشان %_plural% دریافت کنند"
4330
 
4331
+ #: ../plugins/mycred-hook-bbPress.php:536
4332
  #, php-format
4333
  msgid "Show users %_plural% balance in replies"
4334
  msgstr "نمایش دادن %_plural% کاربران در جواب"
4335
 
4336
+ #: ../plugins/mycred-hook-badgeOS.php:15
4337
  msgid "BadgeOS"
4338
  msgstr ""
4339
  "افزونه ی BadgeOS ( افزونه ی پیشرفته ی مدال دهی و اعطای تقدیرنامه یا "
4340
  "گواهینامه )"
4341
 
4342
+ #: ../plugins/mycred-hook-badgeOS.php:16
4343
  msgid ""
4344
  "Default settings for each BadgeOS Achievement type. These settings may be "
4345
  "overridden for individual achievement type."
4347
  "تنظیمات پیش فرض برای هر کدام از مدال های badgeOS . می توان این تنظیمات را "
4348
  "برای مدال ها و گواهینامه های شخصی ، مجددا ویرایش نمود ."
4349
 
4350
+ #: ../plugins/mycred-hook-badgeOS.php:121
4351
  #, php-format
4352
  msgid ""
4353
  "Please setup your <a href=\"%s\">default settings</a> before using this "
4356
  "برای استفاده از این ویژگی ، لطفا ابتدا <a href=\"%s\"> تنظیمات پیش فرض </a> "
4357
  "خود را سفارشی سازی کنید"
4358
 
4359
+ #: ../plugins/mycred-hook-badgeOS.php:137 ../plugins/mycred-hook-badgeOS.php:139
4360
  #, php-format
4361
  msgid "%plural% to Award"
4362
  msgstr "%plural% برای اهدا"
4363
 
4364
+ #: ../plugins/mycred-hook-badgeOS.php:141
4365
  msgid "Use zero to disable"
4366
  msgstr "برای غیرفعالسازی عدد صفر را وارد کنید"
4367
 
4368
+ #: ../plugins/mycred-hook-badgeOS.php:154
4369
  msgid "Deduction Log Template"
4370
  msgstr "نمونه گزارشاتِ ( لوگ ) کسر امتیاز"
4371
 
4372
+ #: ../plugins/mycred-hook-badgeOS.php:315
4373
  #, php-format
4374
  msgid "Default %s for %s"
4375
  msgstr "%s پیش فرض برای %s"
4376
 
4377
+ #: ../plugins/mycred-hook-badgeOS.php:322
4378
  msgid "Use zero to disable users gaining %_plural%"
4379
  msgstr "برای غیرفعالسازی کسب %_plural% توسط کاربران ، عدد صفر را وارد کنید"
4380
 
4381
+ #: ../plugins/mycred-hook-badgeOS.php:326
4382
  msgid "Default Log template"
4383
  msgstr "نمونه ی گزارشات ( لوگ ) پیش فرض"
4384
 
4411
  msgid "Filter"
4412
  msgstr "فیــلتر"
4413
 
4414
+ #: ../includes/mycred-log.php:755 ../addons/buy-creds/myCRED-addon-buy-creds.php:
4415
+ #: 1074
4416
  msgid "Date"
4417
  msgstr "تاریخ"
4418
 
4419
+ #: ../includes/mycred-log.php:757
4420
  msgid "Entry"
4421
  msgstr "ورودی"
4422
 
4423
+ #: ../includes/mycred-log.php:956
4424
  msgid "No log entries found"
4425
  msgstr "گزارشی یافت نشد !"
4426
 
4427
+ #: ../includes/mycred-log.php:974 ../includes/mycred-log.php:976
4428
  msgid "Search Log"
4429
  msgstr "جستجو در میان لیست گزارش"
4430
 
4431
+ #: ../includes/mycred-log.php:975
4432
  msgid "search log entries"
4433
  msgstr "جستجو در بین داده ها"
4434
 
4580
  msgid "Save Network Settings"
4581
  msgstr "ذخیره تنظیمات شبکه"
4582
 
4583
+ #: ../includes/mycred-about.php:89
4584
  #, php-format
4585
  msgid "Welcome to %s %s"
4586
  msgstr "به افزونه \"اعتبار من\" ( %s ) نسخه %s خوش آمدید ."
4587
 
4588
+ #: ../includes/mycred-shortcodes.php:178
4589
  msgid "Leaderboard is empty."
4590
  msgstr "لیست برترین ها خالیست"
4591
 
4592
+ #: ../includes/mycred-shortcodes.php:536
 
 
 
 
4593
  msgid "Anchor missing URL!"
4594
  msgstr "آدرس اینترنتی از نوع Anchor ، در کدها موجود نیست !"
4595
 
4596
+ #: ../includes/mycred-shortcodes.php:654
4597
  msgid "Sent"
4598
  msgstr "ارسال شده"
4599
 
4600
+ #: ../includes/mycred-shortcodes.php:655
4601
  msgid "Error - Try Again"
4602
  msgstr "خطا - لطفا مجددا تلاش کنید"
4603
 
4604
+ #: ../includes/mycred-shortcodes.php:793
4605
  msgid "A video ID is required for this shortcode"
4606
  msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می باشد"
4607
 
4608
+ #: ../includes/mycred-shortcodes.php:1005 ../addons/gateway/event-booking/mycred-
4609
  #: eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager.
4610
  #: php:578 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:540 ..
4611
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ..
4615
  msgstr "نرخ مبادلات"
4616
 
4617
  #: ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ..
4618
+ #: addons/sell-content/myCRED-addon-sell-content.php:430
4619
  msgid "Sell Content"
4620
  msgstr "فروش محتوا"
4621
 
4622
  #: ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ..
4623
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
4624
+ #: addon-buy-creds.php:1072 ../addons/buy-creds/myCRED-addon-buy-creds.php:1714
4625
  msgid "Gateway"
4626
  msgstr "درگاه"
4627
 
4688
  msgstr "لغو عملیات راه اندازی"
4689
 
4690
  #: ../includes/mycred-install.php:536 ../addons/buy-creds/myCRED-addon-buy-creds.
4691
+ #: php:1689
4692
  msgid "Cancel"
4693
  msgstr "لغو"
4694
 
4719
  msgid "Install & Run"
4720
  msgstr "نصب و راه اندازی"
4721
 
4722
+ #: ../includes/mycred-admin.php:245
4723
  msgid "User is excluded"
4724
  msgstr "کاربر بن شد !"
4725
 
4726
+ #: ../includes/mycred-admin.php:250
4727
  msgid "Log Entry can not be empty"
4728
  msgstr "داده های لیست گزارش نباید خالی باشد"
4729
 
4730
+ #: ../includes/mycred-admin.php:254
4731
  msgid "Amount can not be zero"
4732
  msgstr "این مقدار نباید صفر باشد"
4733
 
4734
+ #: ../includes/mycred-admin.php:409
4735
  msgid "Excluded"
4736
  msgstr "بن شده ( محروم شده )"
4737
 
4738
+ #: ../includes/mycred-admin.php:430
4739
  msgid "Adjust"
4740
  msgstr "تطبیق"
4741
 
4742
+ #: ../includes/mycred-admin.php:632 ../includes/mycred-admin.php:803 ..
4743
  #: addons/gateway/event-booking/mycred-eventespresso3.php:277 ..
4744
  #: addons/gateway/event-booking/mycred-eventespresso3.php:301 ..
4745
  #: addons/gateway/event-booking/mycred-eventsmanager.php:412 ..
4747
  msgid "Current Balance"
4748
  msgstr "میزان امتیازات اخیر"
4749
 
4750
+ #: ../includes/mycred-admin.php:748 ../includes/mycred-admin.php:792 ..
4751
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503
4752
  msgid "required"
4753
  msgstr "ضروری"
4754
 
4755
+ #: ../includes/mycred-admin.php:750 ../includes/mycred-admin.php:794 ..
4756
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504
4757
  msgid "optional"
4758
  msgstr "اختیاری"
4759
 
4760
+ #: ../includes/mycred-admin.php:764 ../includes/mycred-admin.php:808 ..
4761
  #: addons/gateway/event-booking/mycred-eventespresso3.php:470
4762
  msgid "Log Entry"
4763
  msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
4764
 
4765
+ #: ../includes/mycred-admin.php:768 ../includes/mycred-admin.php:809
4766
  msgid "Update Balance"
4767
  msgstr "به روزرسانی میزان امتیاز"
4768
 
4769
+ #: ../includes/mycred-admin.php:801
4770
  msgid "ID"
4771
  msgstr "شناسه"
4772
 
4773
+ #: ../includes/mycred-admin.php:807
4774
  msgid "A positive or negative value"
4775
  msgstr "مقدار مثبت یا منفی"
4776
 
4844
  msgid "Order"
4845
  msgstr "ترتیب"
4846
 
4847
+ #: ../includes/mycred-functions.php:86
4848
  msgid "Point"
4849
  msgstr "امتیاز"
4850
 
4851
+ #: ../includes/mycred-functions.php:87
4852
  msgid "Points"
4853
  msgstr "امتیازها"
4854
 
4855
+ #: ../includes/mycred-functions.php:448
4856
  msgid "Deleted"
4857
  msgstr "پاک شده"
4858
 
4859
+ #: ../includes/mycred-functions.php:595
4860
  msgid "Deleted Item"
4861
  msgstr "موردهای پاک شده"
4862
 
4863
+ #: ../includes/mycred-functions.php:659 ../addons/gateway/carts/mycred-
4864
+ #: wpecommerce.php:341 ../addons/email-notices/myCRED-addon-email-notices.php:210
4865
  msgid "General"
4866
  msgstr "بخش عمومی"
4867
 
4868
+ #: ../includes/mycred-functions.php:666
4869
  msgid "User Related"
4870
  msgstr "مرتبط با کاربر"
4871
 
4872
+ #: ../includes/mycred-functions.php:673
4873
  msgid "Post Related"
4874
  msgstr "مرتبط با پست"
4875
 
4876
+ #: ../includes/mycred-functions.php:2736 ../addons/transfer/myCRED-addon-transfer.
4877
  #: php:51
4878
  msgid "Transfer"
4879
  msgstr "جابجایی"
4880
 
4881
+ #: ../includes/importers/mycred-cubepoints.php:387
4882
  msgid "Import"
4883
  msgstr "درون ریزی"
4884
 
4885
+ #: ../addons/banking/myCRED-addon-banking.php:45 ../addons/banking/myCRED-addon-
4886
+ #: banking.php:46 ../addons/banking/myCRED-addon-banking.php:47
4887
  msgid "Banking"
4888
  msgstr "بانکداری"
4889
 
4890
+ #: ../addons/banking/myCRED-addon-banking.php:179 ..
4891
  #: addons/banking/services/mycred-bank-service-interest.php:512
4892
  msgid "Compound Interest"
4893
  msgstr "محاسبه ی سود ( بهره )"
4894
 
4895
+ #: ../addons/banking/myCRED-addon-banking.php:186
4896
  msgid "Recurring Payouts"
4897
  msgstr "پرداخت های مکرر"
4898
 
4899
+ #: ../addons/banking/myCRED-addon-banking.php:245
4900
  #, php-format
4901
  msgid "%s Banking"
4902
  msgstr "بانکداری %s"
4903
 
4904
+ #: ../addons/banking/myCRED-addon-banking.php:253
4905
  msgid "WP-Cron deactivation detected!"
4906
  msgstr "غیرفعالسازی WP-Cron یافت شد !"
4907
 
4908
+ #: ../addons/banking/myCRED-addon-banking.php:254
4909
  msgid "Warning! This add-on requires WP - Cron to work."
4910
  msgstr ""
4911
  "اخطار ! این افزونه ی جانبی برای فعالسازی به WP-Cron احتیاج دارد .<br/>WP-"
5006
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ..
5007
  #: addons/gateway/event-booking/mycred-eventsmanager.php:540 ..
5008
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/sell-
5009
+ #: content/myCRED-addon-sell-content.php:457 ../addons/buy-creds/myCRED-addon-buy-
5010
+ #: creds.php:578
5011
  msgid "Payments"
5012
  msgstr "پرداخت ها"
5013
 
5014
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
5015
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35 ..
5016
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/buy-
5017
+ #: creds/myCRED-addon-buy-creds.php:1688
5018
  msgid "Pay Now"
5019
  msgstr "همین حالا بپردازید"
5020
 
5047
  msgstr "غیرفعالسازی %s"
5048
 
5049
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:367 ../addons/buy-
5050
+ #: creds/myCRED-addon-buy-creds.php:1084
5051
  msgid "Gateway Settings"
5052
  msgstr "تنظیمات درگاه پرداخت"
5053
 
5088
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ..
5089
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
5090
  #: addons/transfer/includes/mycred-transfer-widgets.php:132 ../addons/sell-
5091
+ #: content/myCRED-addon-sell-content.php:500 ../addons/sell-content/myCRED-addon-
5092
+ #: sell-content.php:749
5093
  msgid "Button Label"
5094
  msgstr "برچسب کلید"
5095
 
5102
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ..
5103
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:139 ..
5104
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ../addons/sell-
5105
+ #: content/myCRED-addon-sell-content.php:491 ../addons/sell-content/myCRED-addon-
5106
+ #: sell-content.php:745
5107
  msgid "Price"
5108
  msgstr "هزینه"
5109
 
5133
  msgstr "سهم سود"
5134
 
5135
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
5136
+ #: content/myCRED-addon-sell-content.php:514
5137
  msgid "Templates"
5138
  msgstr "نمونه ها ( الگوها )"
5139
 
5672
  msgid "User Email (user_email)"
5673
  msgstr "ایمیل کاربر ( user_email )"
5674
 
5675
+ #: ../addons/transfer/myCRED-addon-transfer.php:227
5676
  msgid "Log template for sending"
5677
  msgstr "الگوی لیست گزارش برای ارسال"
5678
 
5679
+ #: ../addons/transfer/myCRED-addon-transfer.php:234
5680
  msgid "Log template for receiving"
5681
  msgstr "الگوی لیست گزارش برای دریافت"
5682
 
5683
+ #: ../addons/transfer/myCRED-addon-transfer.php:241
5684
  msgid "Autofill Recipient"
5685
  msgstr "شناسایی خودکار گیرنده"
5686
 
5687
+ #: ../addons/transfer/myCRED-addon-transfer.php:255
5688
  msgid "Select what user details recipients should be autofilled by."
5689
  msgstr "انتخاب کنید کدام بخش از اطلاعات کاربران گیرنده باید به صورت خودکار پر شود ."
5690
 
5691
+ #: ../addons/transfer/myCRED-addon-transfer.php:258
5692
  msgid "Reload"
5693
  msgstr "بارگذاری مجدد"
5694
 
5695
+ #: ../addons/transfer/myCRED-addon-transfer.php:261
5696
  msgid "Reload page on successful transfers."
5697
  msgstr "در جابجایی های موفق ، صفحه را دوباره بارگذاری کن ."
5698
 
5699
+ #: ../addons/transfer/myCRED-addon-transfer.php:289
5700
  msgid "Form Templates"
5701
  msgstr "الگوی نمونه ی فرم"
5702
 
5703
+ #: ../addons/transfer/myCRED-addon-transfer.php:292
5704
  msgid "Not logged in Template"
5705
  msgstr "الگوی کاربر وارد نشده"
5706
 
5707
+ #: ../addons/transfer/myCRED-addon-transfer.php:294
5708
  msgid ""
5709
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
5710
  "elements allowed!"
5712
  "متنی که برای کاربران وارد نشده نمایش داده می شود . برای نمایش داده نشدن کادر "
5713
  "را خالی بگذارید . استفاده از کدهای HTML مجاز نمی باشد ."
5714
 
5715
+ #: ../addons/transfer/myCRED-addon-transfer.php:298
5716
  msgid "Balance Template"
5717
  msgstr "الگوی میزان امتیاز"
5718
 
5719
+ #: ../addons/transfer/myCRED-addon-transfer.php:300
5720
  msgid ""
5721
  "Template to use when displaying the users balance (if included). No HTML "
5722
  "elements allowed!"
5724
  "الگویی که به هنگام نمایش میزان امتیاز کاربر ( در صورت داشتن ) ، استفاده می "
5725
  "شود . استفاده از کدهای HTML مجاز نیست !"
5726
 
5727
+ #: ../addons/transfer/myCRED-addon-transfer.php:304
5728
  msgid "Limit Template"
5729
  msgstr "الگوی محدودیت"
5730
 
5731
+ #: ../addons/transfer/myCRED-addon-transfer.php:306
5732
  msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
5733
  msgstr ""
5734
  "الگویی که به هنگام نمایش محدودیت ( در صورت داشتن ) استفاده می شود . کدهای "
5735
  "HTML مجاز نخواهند بود ."
5736
 
5737
+ #: ../addons/transfer/myCRED-addon-transfer.php:310
5738
  msgid "Button Template"
5739
  msgstr "الگوی کلید"
5740
 
5741
+ #: ../addons/transfer/myCRED-addon-transfer.php:312
5742
  msgid "Send Transfer button template. No HTML elements allowed!"
5743
  msgstr "الگوی کلید ارسال جابجایی امتیاز . استفاده از کدهای HTML مجاز نیست !"
5744
 
5745
+ #: ../addons/transfer/myCRED-addon-transfer.php:315
5746
  msgid "Error Messages"
5747
  msgstr "پیام های خطا"
5748
 
5749
+ #: ../addons/transfer/myCRED-addon-transfer.php:318
5750
  msgid "Balance to low to send."
5751
  msgstr "میزان امتیاز برای ارسال کافی نیست ."
5752
 
5753
+ #: ../addons/transfer/myCRED-addon-transfer.php:320
5754
  msgid ""
5755
  "Text to show when a users balance is to low for transfers. Leave empty to "
5756
  "hide. No HTML elements allowed!"
5759
  "شود . برای عدم نمایش کادر را خالی بگذارید . استفاده از کدهای HTML هم مجاز "
5760
  "نیستند !"
5761
 
5762
+ #: ../addons/transfer/myCRED-addon-transfer.php:324
5763
  msgid "Transfer Limit Reached."
5764
  msgstr "رسیدن به سقف مجاز جابجایی ها"
5765
 
5766
+ #: ../addons/transfer/myCRED-addon-transfer.php:326
5767
  msgid ""
5768
  "Text to show when a user has reached their transfer limit (if used). Leave "
5769
  "empty to hide. No HTML elements allowed!"
5793
  msgid "Show users limit"
5794
  msgstr "نمایش محدودیت جابجایی امتیاز برای کاربران"
5795
 
5796
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:144
5797
  msgid "username"
5798
  msgstr "نام کاربری"
5799
 
5800
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:147
5801
  msgid "email"
5802
  msgstr "ایمیل"
5803
 
5804
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:149
5805
  #, php-format
5806
  msgid "recipients %s"
5807
  msgstr "گیرندگان %s"
5808
 
5809
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:243
5810
  msgid "To:"
5811
  msgstr "به :"
5812
 
5813
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:249
5814
  msgid "Amount:"
5815
  msgstr "مقدار امتیاز :"
5816
 
5817
  #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
5818
+ #: php:213 ../addons/ranks/myCRED-addon-ranks.php:446 ../addons/ranks/myCRED-
5819
+ #: addon-ranks.php:455 ../addons/ranks/myCRED-addon-ranks.php:461 ..
5820
+ #: addons/ranks/myCRED-addon-ranks.php:837 ../addons/ranks/myCRED-addon-ranks.
5821
+ #: php:1322 ../addons/ranks/myCRED-addon-ranks.php:1612
5822
  msgid "Ranks"
5823
  msgstr "رنک و مدال ها"
5824
 
5825
+ #: ../addons/ranks/myCRED-addon-ranks.php:427
5826
  msgid "Warning! All ranks will be deleted! This can not be undone!"
5827
  msgstr "اخطار ! کل مدال ها پاکسازی خواهند شد ! این عمل غیرقابل بازگشت است !"
5828
 
5829
+ #: ../addons/ranks/myCRED-addon-ranks.php:428
5830
  msgid "Are you sure you want to re-assign user ranks?"
5831
  msgstr "مطمئنید که می خواهید دوباره عمل تخصیص مدال های کاربری را انجام دهید ؟"
5832
 
5833
+ #: ../addons/ranks/myCRED-addon-ranks.php:450 ../addons/ranks/myCRED-addon-ranks.
5834
+ #: php:837
5835
  msgid "Rank"
5836
  msgstr "رنک و مدال"
5837
 
5838
+ #: ../addons/ranks/myCRED-addon-ranks.php:451 ../addons/email-notices/myCRED-
5839
+ #: addon-email-notices.php:175 ../addons/badges/myCRED-addon-badges.php:406 ..
5840
  #: addons/buy-creds/myCRED-addon-buy-creds.php:279 ../addons/buy-creds/myCRED-
5841
  #: addon-buy-creds.php:280
5842
  msgid "Add New"
5843
  msgstr "ساختن مورد جدید"
5844
 
5845
+ #: ../addons/ranks/myCRED-addon-ranks.php:452
5846
  msgid "Add New Rank"
5847
  msgstr "اضافه کردن مدال جدید"
5848
 
5849
+ #: ../addons/ranks/myCRED-addon-ranks.php:453
5850
  msgid "Edit Rank"
5851
  msgstr "ویرایش مدال"
5852
 
5853
+ #: ../addons/ranks/myCRED-addon-ranks.php:454
5854
  msgid "New Rank"
5855
  msgstr "مدال جدید"
5856
 
5857
+ #: ../addons/ranks/myCRED-addon-ranks.php:456
5858
  msgid "View Rank"
5859
  msgstr "نمایش مدال"
5860
 
5861
+ #: ../addons/ranks/myCRED-addon-ranks.php:457
5862
  msgid "Search Ranks"
5863
  msgstr "جستجو در میان مدال ها"
5864
 
5865
+ #: ../addons/ranks/myCRED-addon-ranks.php:458
5866
  msgid "No ranks found"
5867
  msgstr "هیچ مدالی یافت نشد"
5868
 
5869
+ #: ../addons/ranks/myCRED-addon-ranks.php:459
5870
  msgid "No ranks found in Trash"
5871
  msgstr "هیچ رنکی در زباله دان یافت نشد"
5872
 
5873
+ #: ../addons/ranks/myCRED-addon-ranks.php:544
5874
  #, php-format
5875
  msgid "Completed - Total of %d users effected"
5876
  msgstr "اتمام عملیات - کل %d کاربر ترتیب اثر داده شدند"
5877
 
5878
+ #: ../addons/ranks/myCRED-addon-ranks.php:990
5879
  msgid "Rank Saved"
5880
  msgstr "مدال ذخیره شد"
5881
 
5882
+ #: ../addons/ranks/myCRED-addon-ranks.php:1046 ../addons/ranks/myCRED-addon-ranks.
5883
+ #: php:1129
5884
  msgid "Rank Title"
5885
  msgstr "عنوان مدال"
5886
 
5887
+ #: ../addons/ranks/myCRED-addon-ranks.php:1047
5888
  msgid "Logo"
5889
  msgstr "لوگو"
5890
 
5891
+ #: ../addons/ranks/myCRED-addon-ranks.php:1048
5892
  msgid "Requirement"
5893
  msgstr "پیش نیاز"
5894
 
5895
+ #: ../addons/ranks/myCRED-addon-ranks.php:1074
5896
  msgid "No Logo Set"
5897
  msgstr "لوگویی ست نشده است"
5898
 
5899
+ #: ../addons/ranks/myCRED-addon-ranks.php:1089 ../addons/ranks/myCRED-addon-ranks.
5900
+ #: php:1094
5901
  msgid "Any Value"
5902
  msgstr "هر مقداری"
5903
 
5904
+ #: ../addons/ranks/myCRED-addon-ranks.php:1091 ../addons/buy-creds/myCRED-addon-
5905
+ #: buy-creds.php:642
5906
  #, php-format
5907
  msgid "Minimum %plural%"
5908
  msgstr "کمترین مفدار %plural%"
5909
 
5910
+ #: ../addons/ranks/myCRED-addon-ranks.php:1096
5911
  #, php-format
5912
  msgid "Maximum %plural%"
5913
  msgstr "بیشترین مقدار %plural%"
5914
 
5915
+ #: ../addons/ranks/myCRED-addon-ranks.php:1144
5916
  msgid "Rank Settings"
5917
  msgstr "تنظیمات مدال"
5918
 
5919
+ #: ../addons/ranks/myCRED-addon-ranks.php:1198
5920
  #, php-format
5921
  msgid "Minimum %plural% to reach this rank"
5922
  msgstr "کمترین مقدار %plural% برای دستیابی به این مدال"
5923
 
5924
+ #: ../addons/ranks/myCRED-addon-ranks.php:1202
5925
  #, php-format
5926
  msgid "Maximum %plural% to be included in this rank"
5927
  msgstr "بیشترین مقدار %plural% که این مدال شامل آن می شود"
5928
 
5929
+ #: ../addons/ranks/myCRED-addon-ranks.php:1225
5930
  msgid "All Published Ranks"
5931
  msgstr "همه ی مدال های منتشر شده"
5932
 
5933
+ #: ../addons/ranks/myCRED-addon-ranks.php:1235 ../addons/ranks/myCRED-addon-ranks.
5934
+ #: php:1237
5935
  msgid "Not Set"
5936
  msgstr "تنظیم نشده"
5937
 
5938
+ #: ../addons/ranks/myCRED-addon-ranks.php:1243
5939
  msgid "No Ranks found"
5940
  msgstr "مدالی پیدا نشد"
5941
 
5942
+ #: ../addons/ranks/myCRED-addon-ranks.php:1327
5943
  msgid "Rank Features"
5944
  msgstr "ویژگی های مدال"
5945
 
5946
+ #: ../addons/ranks/myCRED-addon-ranks.php:1331
5947
  #, php-format
5948
  msgid "%plural% requirement"
5949
  msgstr "پیش نیاز %plural%"
5950
 
5951
+ #: ../addons/ranks/myCRED-addon-ranks.php:1332
5952
  msgid "Featured Image (Logo)"
5953
  msgstr "عکس شاخص ( لوگو )"
5954
 
5955
+ #: ../addons/ranks/myCRED-addon-ranks.php:1334
5956
  msgid "Content"
5957
  msgstr "محتوا"
5958
 
5959
+ #: ../addons/ranks/myCRED-addon-ranks.php:1336
5960
  msgid "Excerpt"
5961
  msgstr "توضیح کوتاه ( نقل قول )"
5962
 
5963
+ #: ../addons/ranks/myCRED-addon-ranks.php:1338
5964
  msgid "Comments"
5965
  msgstr "دیدگاه ها"
5966
 
5967
+ #: ../addons/ranks/myCRED-addon-ranks.php:1340
5968
  msgid "Page Attributes"
5969
  msgstr "خصوصیت های صفحه"
5970
 
5971
+ #: ../addons/ranks/myCRED-addon-ranks.php:1342
5972
  msgid "Custom Fields"
5973
  msgstr "فیلدهای اضافی"
5974
 
5975
+ #: ../addons/ranks/myCRED-addon-ranks.php:1346
5976
  msgid "Public"
5977
  msgstr "عمومی"
5978
 
5979
+ #: ../addons/ranks/myCRED-addon-ranks.php:1350
5980
  msgid ""
5981
  "If you want to create a template archive for each rank, you must select to "
5982
  "have ranks public. Defaults to disabled."
5984
  "اگر می خواهید آرشیو نمونه ای برای هر مدال بسازید ، باید انتخاب کنید که مدال "
5985
  "ها عمومی باشند . در حالت پیش فرض این حالت غیرفعال می باشد ."
5986
 
5987
+ #: ../addons/ranks/myCRED-addon-ranks.php:1353
5988
  msgid "Archive URL"
5989
  msgstr "نشانی اینترنتی آرشیو"
5990
 
5991
+ #: ../addons/ranks/myCRED-addon-ranks.php:1357
5992
  msgid "Ignored if Ranks are not public"
5993
  msgstr "اگر مدال ها منتشر نشده اند ، آن ها را نادیده بگیر"
5994
 
5995
+ #: ../addons/ranks/myCRED-addon-ranks.php:1360
5996
  msgid "Display Order"
5997
  msgstr "ترتیب نمایش"
5998
 
5999
+ #: ../addons/ranks/myCRED-addon-ranks.php:1368
6000
  msgid "Ascending - Lowest rank to highest"
6001
  msgstr "صعودی - از پایین ترین مدال ها ، به بالاترین مدال ها"
6002
 
6003
+ #: ../addons/ranks/myCRED-addon-ranks.php:1369
6004
  msgid "Descending - Highest rank to lowest"
6005
  msgstr "نزولی - از بالاترین مدال ها ، به پایین ترین مدال ها"
6006
 
6007
+ #: ../addons/ranks/myCRED-addon-ranks.php:1380
6008
  msgid ""
6009
  "Select in what order ranks should be displayed in your admin area and/or "
6010
  "front if ranks are \"Public\""
6012
  "انتخاب کنید که مدال ها به چه ترتیبی در ناحیه ی مدیریتی و/یا کاربری نمایش "
6013
  "داده شوند ، البته اگر مدال ها \"منتشر شده\" ( عمومی ) باشند ."
6014
 
6015
+ #: ../addons/ranks/myCRED-addon-ranks.php:1386
6016
  msgid "Rank Basis"
6017
  msgstr "روش مدال دهی"
6018
 
6019
+ #: ../addons/ranks/myCRED-addon-ranks.php:1389
6020
  msgid "Users are ranked according to their current balance."
6021
  msgstr "کاربران بر اساس میزان امتیاز فعلیشان مدال می گیرند ."
6022
 
6023
+ #: ../addons/ranks/myCRED-addon-ranks.php:1392
6024
  msgid ""
6025
  "Users are ranked according to the total amount of %_plural% they have "
6026
  "accumulated."
6027
  msgstr "کاربران بر اساس کل %_plural% ای که جمع کرده اند مدال می گیرند ."
6028
 
6029
+ #: ../addons/ranks/myCRED-addon-ranks.php:1396 ../addons/ranks/myCRED-addon-ranks.
6030
+ #: php:1401
6031
  msgid "Calculate Totals"
6032
  msgstr "محاسبه ی کل امتیازها"
6033
 
6034
+ #: ../addons/ranks/myCRED-addon-ranks.php:1399
6035
  msgid ""
6036
  "Once a users total has been calculated, they will be assigned to their "
6037
  "appropriate roles. For this reason, it is highly recommended that you first "
6041
  "امتیازشان منصوب می شوند . به همین منظور ، شدیدا پیشنهاد می گردد که ابتدا "
6042
  "مدال های خودتان را پیاده سازی کنید ."
6043
 
6044
+ #: ../addons/ranks/myCRED-addon-ranks.php:1400
6045
  msgid ""
6046
  "Depending on your log size and number of users this process may take a while."
6047
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
6051
  "طول بکشد . لطفا تا پایان عملیات ، صفحه را رفرش نکنید ، آن را نبسته و یا بر "
6052
  "روی \"به روزرسانی تنظیمات\" کلیک نفرمایید ."
6053
 
6054
+ #: ../addons/ranks/myCRED-addon-ranks.php:1418
6055
  msgid "Include in Profile Header."
6056
  msgstr "شامل ( نمایش در ) هِدر ( سربرگ ) پروفایل کاربری"
6057
 
6058
+ #: ../addons/ranks/myCRED-addon-ranks.php:1420
6059
  msgid "Include under the \"Profile\" tab and Profile Header."
6060
  msgstr "نمایش در زیر تب \"Profile\" و همچنین سربرگ پروفایل کاربری ."
6061
 
6062
+ #: ../addons/ranks/myCRED-addon-ranks.php:1424
6063
  msgid "Rank in BuddyPress"
6064
  msgstr "مدال در بادی پرس"
6065
 
6066
+ #: ../addons/ranks/myCRED-addon-ranks.php:1548
6067
  msgid "Script Communication Error"
6068
  msgstr "خطا در ارتباط با اسکریپت"
6069
 
6070
+ #: ../addons/ranks/myCRED-addon-ranks.php:1619
6071
  msgid "No. of ranks"
6072
  msgstr "تعداد مدال ها"
6073
 
6074
+ #: ../addons/ranks/myCRED-addon-ranks.php:1624
6075
  msgid "Remove All Ranks"
6076
  msgstr "پاکسازی همه ی مدال ها"
6077
 
6078
+ #: ../addons/ranks/myCRED-addon-ranks.php:1624
6079
  msgid "Assign Ranks to Users"
6080
  msgstr "تخصیص دادن مدال به کاربران"
6081
 
6082
+ #: ../addons/ranks/includes/mycred-rank-functions.php:260
6083
  msgid "mycred_get_users_rank() : Missing required user id"
6084
  msgstr "mycred_get_users_rank() : شناسه کاربر خواسته شده ، یافت نشد !"
6085
 
6086
+ #: ../addons/ranks/includes/mycred-rank-functions.php:273
6087
  msgid "no rank"
6088
  msgstr "مدالی یافت نشد"
6089
 
6090
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:118 ..
6091
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:213
6092
  msgid "No users found with this rank"
6093
  msgstr "کاربری با این مدال یافت نشد"
6094
 
6095
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:125
6096
  msgid "Rank ID is required!"
6097
  msgstr "داشتن شناسه مدال ضروریست !"
6098
 
6099
+ #: ../addons/notifications/myCRED-addon-notifications.php:194
6100
  msgid "Notifications"
6101
  msgstr "آگاه سازها"
6102
 
6103
+ #: ../addons/notifications/myCRED-addon-notifications.php:196
6104
  msgid "Styling"
6105
  msgstr "زیبا سازی ( قالب بندی )"
6106
 
6107
+ #: ../addons/notifications/myCRED-addon-notifications.php:199
6108
  msgid "Use the included CSS Styling for notifications."
6109
  msgstr "از قالب ها و کدهای CSS موجود ، برای زیباسازی آگاه سازها استفاده کنید ."
6110
 
6111
+ #: ../addons/notifications/myCRED-addon-notifications.php:206
6112
  #, php-format
6113
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
6114
  msgstr ""
6115
  "از کد %entry% برای نشان دادن داده های لیست گزارش و همچنین %amount% برای "
6116
  "مقدار آن در آگاه ساز استفاده کنید ."
6117
 
6118
+ #: ../addons/notifications/myCRED-addon-notifications.php:209
6119
  msgid "Transient Lifespan"
6120
  msgstr "عمر موقتی"
6121
 
6122
+ #: ../addons/notifications/myCRED-addon-notifications.php:213
6123
  msgid ""
6124
  "The number of days a users notification is saved before being automatically "
6125
  "deleted."
6126
  msgstr "تعداد روزهایی که یک آگاه ساز ، ذخیره مانده و بعد پاک می شود ."
6127
 
6128
+ #: ../addons/notifications/myCRED-addon-notifications.php:216
6129
  msgid "Duration"
6130
  msgstr "مدت"
6131
 
6132
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173 ../addons/email-
6133
+ #: notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-
6134
+ #: addon-email-notices.php:185 ../addons/email-notices/myCRED-addon-email-notices.
6135
+ #: php:297 ../addons/coupons/myCRED-addon-coupons.php:105
6136
  msgid "Email Notices"
6137
  msgstr "اطلاعیه های ایمیلی"
6138
 
6139
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:174 ../addons/email-
6140
+ #: notices/myCRED-addon-email-notices.php:1344
6141
  msgid "Email Notice"
6142
  msgstr "اطلاعیه ایمیلی"
6143
 
6144
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:176
6145
  msgid "Add New Notice"
6146
  msgstr "ساختن اطلاعیه ایمیل جدید"
6147
 
6148
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:177
6149
  msgid "Edit Notice"
6150
  msgstr "ویرایش اطلاعیه"
6151
 
6152
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:178
6153
  msgid "New Notice"
6154
  msgstr "اطلاعیه جدید"
6155
 
6156
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:180
6157
  msgid "View Notice"
6158
  msgstr "نمایش اطلاعیه"
6159
 
6160
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:181
6161
  msgid "Search Email Notices"
6162
  msgstr "جستجو در بین اطلاعیه های ایمیلی"
6163
 
6164
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:182
6165
  msgid "No email notices found"
6166
  msgstr "هیچ اطلاعیه ای یافت نشد"
6167
 
6168
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:183
6169
  msgid "No email notices found in Trash"
6170
  msgstr "هیچ اطلاعیه ای در زباله دان یافت نشد"
6171
 
6172
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:211
6173
  msgid "users balance changes"
6174
  msgstr "میزان امتیازات کاربران تغییر کند"
6175
 
6176
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:212
6177
  msgid "user gains %_plural%"
6178
  msgstr "کاربران %_plural% کسب کنند"
6179
 
6180
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:213
6181
  msgid "user lose %_plural%"
6182
  msgstr "کاربران %_plural% از دست بدهند"
6183
 
6184
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:214
6185
  msgid "users balance reaches zero"
6186
  msgstr "میزان امتیازات کاربر به صفر برسد"
6187
 
6188
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:215
6189
  msgid "users balance goes minus"
6190
  msgstr "میزان امتیازات کاربر به عددی منفی برسد"
6191
 
6192
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:229
6193
  msgid "Sell Content Add-on"
6194
  msgstr "بخش مربوط به \"افزونه فروش محتوا\""
6195
 
6196
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:230
6197
  msgid "user buys content"
6198
  msgstr "کاربران محتوایی را بخرند"
6199
 
6200
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:231
6201
  msgid "authors content gets sold"
6202
  msgstr "متن نویسندگان به فروش برود"
6203
 
6204
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:238
6205
  msgid "buyCREDs Add-on"
6206
  msgstr "بخش مربوط به \"افزونه خرید امتیاز\""
6207
 
6208
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:239
6209
  msgid "user buys %_plural%"
6210
  msgstr "کاربران %_plural% بخرند"
6211
 
6212
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:246
6213
  msgid "Transfer Add-on"
6214
  msgstr "بخش مربوط به \"افزونه انتقال امتیاز\""
6215
 
6216
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:247
6217
  msgid "user sends %_plural%"
6218
  msgstr "کاربران %_plural% ارسال کنند"
6219
 
6220
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:248
6221
  msgid "user receives %_plural%"
6222
  msgstr "کاربران %_plural% دریافت کنند"
6223
 
6224
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:255
6225
  msgid "Ranks Add-on"
6226
  msgstr "بخش مربوط به \"افزونه مدال دهی\""
6227
 
6228
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:256
6229
  msgid "user is demoted"
6230
  msgstr "کاربر تنزل درجه پیدا کند ( رنک از دست بدهد )"
6231
 
6232
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:257
6233
  msgid "user is promoted"
6234
  msgstr "کاربر ترفیع درجه پیدا کند ( رنک بدست بیاورد )"
6235
 
6236
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299
6237
  msgid ""
6238
  "Settings that apply to all email notices and can not be overridden for "
6239
  "individual emails."
6244
  "تنظیم رو تغییر بدی که کد اچ تی ام ال هم قبول بکنه یا نکنه ، فقط از همینجا می "
6245
  "تونی تغییر بدی ! دیگه ببخشید خودمونی گفتم :دی )"
6246
 
6247
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:300
6248
  msgid "Email Format"
6249
  msgstr "فرمت ایمیل"
6250
 
6251
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:304
6252
  msgid "Plain text emails only."
6253
  msgstr "ایمیل هایی که فقط متن معمولی را در خود دارند ، بدون هیچ صفحه آرایی"
6254
 
6255
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:308
6256
  msgid "HTML or Plain text emails."
6257
  msgstr ""
6258
  "ایمیل های حاوی کدهای HTML و متن های عادی که با ترکیب این دو می توان ایمیل "
6259
  "هایی با صفحه بندی زیبا تولید کرد ."
6260
 
6261
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:311
6262
  msgid "Filters"
6263
  msgstr "پالایش ایمیل ها"
6264
 
6265
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:315
6266
  msgid ""
6267
  "Allow WordPress and Third Party Plugins to filter the email subject before "
6268
  "an email is sent."
6270
  "به وردپرس و سایر پلاگین های شخص ثالث ، اجازه دهید تا عنوان ایمیل ها را قبل "
6271
  "از ارسال پالایش کنند ."
6272
 
6273
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:319
6274
  msgid ""
6275
  "Allow WordPress and Third Party Plugins to filter the email content before "
6276
  "an email is sent."
6278
  "به وردپرس و سایر پلاگین های شخص ثالث ، اجازه دهید تا متن ایمیل ها را قبل از "
6279
  "ارسال پالایش کنند ."
6280
 
6281
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:360
6282
  msgid ""
6283
  "Default email settings. These settings can be individually overridden when "
6284
  "editing emails."
6286
  "تنظیمات پیش فرض ایمیل . این تنظیماتی که در زیر می آیند ، برای هر ایمیل تکی "
6287
  "نیز قابل ویرایش هستند ."
6288
 
6289
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361 ../addons/email-
6290
+ #: notices/myCRED-addon-email-notices.php:936
6291
  msgid "Email Settings"
6292
  msgstr "تنظیمات ایمیل"
6293
 
6294
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:364 ../addons/email-
6295
+ #: notices/myCRED-addon-email-notices.php:1114
6296
  msgid "Senders Name:"
6297
  msgstr "نام ارسا