myCRED - Version 1.5.2

Version Description

Important bug fixes and new version of the Banking add-on.

=

Download this release

Release Info

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

Code changes from version 1.5.1 to 1.5.2

Files changed (42) hide show
  1. addons/banking/abstracts/mycred-abstract-service.php +280 -41
  2. addons/banking/myCRED-addon-banking.php +104 -36
  3. addons/banking/services/mycred-bank-service-central.php +139 -0
  4. addons/banking/services/mycred-bank-service-interest.php +586 -251
  5. addons/banking/services/mycred-bank-service-payouts.php +265 -222
  6. addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php +2 -2
  7. addons/buy-creds/myCRED-addon-buy-creds.php +8 -2
  8. addons/email-notices/myCRED-addon-email-notices.php +8 -3
  9. addons/gateway/carts/mycred-woocommerce.php +4 -4
  10. addons/gateway/event-booking/mycred-eventsmanager-pro.php +2 -2
  11. addons/gateway/myCRED-addon-gateway.php +1 -1
  12. addons/transfer/myCRED-addon-transfer.php +2 -2
  13. includes/mycred-functions.php +6 -6
  14. includes/mycred-install.php +3 -2
  15. includes/mycred-log.php +2 -2
  16. includes/mycred-shortcodes.php +63 -32
  17. includes/mycred-widgets.php +3 -3
  18. lang/mycred-en_US.mo +0 -0
  19. lang/mycred-en_US.po +457 -387
  20. lang/mycred-es_ES.mo +0 -0
  21. lang/mycred-es_ES.po +467 -415
  22. lang/mycred-es_VE.mo +0 -0
  23. lang/mycred-es_VE.po +467 -415
  24. lang/mycred-fa_IR.mo +0 -0
  25. lang/mycred-fa_IR.po +463 -414
  26. lang/mycred-fr_FR.mo +0 -0
  27. lang/mycred-fr_FR.po +467 -417
  28. lang/mycred-pt_BR.mo +0 -0
  29. lang/mycred-pt_BR.po +470 -417
  30. lang/mycred-ru_RU.mo +0 -0
  31. lang/mycred-ru_RU.po +466 -416
  32. lang/mycred-sv_SE.mo +0 -0
  33. lang/mycred-sv_SE.po +462 -409
  34. lang/mycred-zh_CN.mo +0 -0
  35. lang/mycred-zh_CN.po +467 -399
  36. lang/mycred.pot +456 -386
  37. modules/mycred-module-hooks.php +64 -39
  38. modules/mycred-module-log.php +27 -15
  39. modules/mycred-module-settings.php +2 -1
  40. mycred.php +4 -4
  41. plugins/mycred-hook-badgeOS.php +56 -39
  42. readme.txt +18 -18
addons/banking/abstracts/mycred-abstract-service.php CHANGED
@@ -1,10 +1,11 @@
1
  <?php
2
- if ( !defined( 'myCRED_VERSION' ) ) exit;
 
3
  /**
4
  * myCRED_Service class
5
  * @see http://mycred.me/classes/mycred_service/
6
  * @since 1.2
7
- * @version 1.0
8
  */
9
  if ( ! class_exists( 'myCRED_Service' ) ) {
10
  abstract class myCRED_Service {
@@ -15,13 +16,17 @@ if ( ! class_exists( 'myCRED_Service' ) ) {
15
  // myCRED_Settings Class
16
  public $core;
17
 
 
 
 
 
18
  // Service Prefs
19
  public $prefs = false;
20
 
21
  /**
22
  * Construct
23
  */
24
- function __construct( $args = array(), $service_prefs = NULL ) {
25
  if ( ! empty( $args ) ) {
26
  foreach ( $args as $key => $value ) {
27
  $this->$key = $value;
@@ -29,22 +34,30 @@ if ( ! class_exists( 'myCRED_Service' ) ) {
29
  }
30
 
31
  // Grab myCRED Settings
32
- $this->core = mycred();
 
 
 
 
 
 
 
 
33
 
34
  // Grab settings
35
  if ( $service_prefs !== NULL ) {
36
  // Assign prefs if set
37
- if ( isset( $service_prefs[ $this->id] ) )
38
  $this->prefs = $service_prefs[ $this->id ];
39
 
40
  // Defaults must be set
41
- if ( ! isset( $this->defaults ) || empty( $this->defaults ) )
42
  $this->defaults = array();
43
  }
44
 
45
  // Apply default settings if needed
46
  if ( ! empty( $this->defaults ) )
47
- $this->prefs = wp_parse_args( $this->prefs, $this->defaults );
48
  }
49
 
50
  /**
@@ -54,7 +67,7 @@ if ( ! class_exists( 'myCRED_Service' ) ) {
54
  * @version 1.0
55
  */
56
  function run() {
57
- wp_die( __( 'function myCRED_Service::run() must be over-ridden in a sub-class.', 'mycred' ) );
58
  }
59
 
60
  /**
@@ -75,29 +88,55 @@ if ( ! class_exists( 'myCRED_Service' ) ) {
75
  return $post;
76
  }
77
 
 
 
 
 
 
 
 
78
  /**
79
  * Deactivate
80
  * @since 1.2
81
  * @version 1.0
82
  */
83
- function deactivate() {
84
-
85
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
 
87
  /**
88
  * Get Field Name
89
  * Returns the field name for the current service
90
  * @since 1.2
91
- * @version 1.0
92
  */
93
  function field_name( $field = '' ) {
94
  if ( is_array( $field ) ) {
95
  $array = array();
96
  foreach ( $field as $parent => $child ) {
97
- if ( !is_numeric( $parent ) )
98
  $array[] = $parent;
99
 
100
- if ( !empty( $child ) && !is_array( $child ) )
101
  $array[] = $child;
102
  }
103
  $field = '[' . implode( '][', $array ) . ']';
@@ -105,23 +144,28 @@ if ( ! class_exists( 'myCRED_Service' ) ) {
105
  else {
106
  $field = '[' . $field . ']';
107
  }
108
- return 'mycred_pref_bank[service_prefs][' . $this->id . ']' . $field;
 
 
 
 
 
109
  }
110
 
111
  /**
112
  * Get Field ID
113
  * Returns the field id for the current service
114
  * @since 1.2
115
- * @version 1.0
116
  */
117
  function field_id( $field = '' ) {
118
  if ( is_array( $field ) ) {
119
  $array = array();
120
  foreach ( $field as $parent => $child ) {
121
- if ( !is_numeric( $parent ) )
122
  $array[] = str_replace( '_', '-', $parent );
123
 
124
- if ( !empty( $child ) && !is_array( $child ) )
125
  $array[] = str_replace( '_', '-', $child );
126
  }
127
  $field = implode( '-', $array );
@@ -129,7 +173,53 @@ if ( ! class_exists( 'myCRED_Service' ) ) {
129
  else {
130
  $field = str_replace( '_', '-', $field );
131
  }
132
- return 'mycred-bank-service-prefs-' . str_replace( '_', '-', $this->id ) . '-' . $field;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  }
134
 
135
  /**
@@ -177,6 +267,7 @@ if ( ! class_exists( 'myCRED_Service' ) ) {
177
  * @version 1.0
178
  */
179
  public function get_now( $rate = '' ) {
 
180
  $timeframes = $this->get_timeframes();
181
  if ( array_key_exists( $rate, $timeframes ) ) {
182
  // Quarterly
@@ -192,76 +283,140 @@ if ( ! class_exists( 'myCRED_Service' ) ) {
192
  return date_i18n( $timeframes[ $rate ]['date_format'] );
193
  }
194
  }
195
- else
196
- return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
197
  }
198
 
199
  /**
200
  * Last Run
201
  * @since 1.2
 
 
 
 
 
 
 
 
 
 
202
  * @version 1.0
203
  */
204
- public function get_last_run( $timestamp, $rate ) {
205
- $timeframes = $this->get_timeframes();
206
- if ( array_key_exists( $rate, $timeframes ) ) {
207
- // Quarterly
208
- if ( $rate == 'quarterly' ) {
209
- $month = date_i18n( 'n', $timestamp );
210
- return 'Q' . ceil( $month/3 );
211
- }
212
- elseif ( $rate == 'semiannually' ) {
213
- $month = date_i18n( 'm', $timestamp );
214
- return ( $month <= 5 ) ? 'first' : 'second';
215
- }
216
- else {
217
- return date_i18n( $timeframes[ $rate ]['date_format'], $timestamp );
218
- }
219
- }
220
- else
221
- return false;
222
  }
223
 
224
  /**
225
  * Time To Run
226
  * @since 1.2.2
227
- * @version 1.0
228
  */
229
  public function time_to_run( $rate, $last_run ) {
230
  $now = $this->get_now( $rate );
 
 
 
 
 
231
  switch ( $rate ) {
 
232
  case 'hourly' :
 
233
  if ( $now == 0 && $last_run == 23 ) return true;
234
  elseif ( $now-1 == $last_run ) return true;
 
235
  break;
 
236
  case 'daily' :
 
237
  if ( $now == 0 && $last_run >= 365 ) return true;
238
  elseif ( $now-1 == $last_run ) return true;
 
239
  break;
 
240
  case 'weekly' :
 
241
  if ( $now == 0 && $last_run >= 52 ) return true;
242
  elseif ( $now-1 == $last_run ) return true;
 
243
  break;
 
244
  case 'monthly' :
 
245
  if ( $now == 1 && $last_run == 12 ) return true;
246
  elseif ( $now-1 == $last_run ) return true;
 
247
  break;
 
248
  case 'quarterly' :
 
249
  $current_quarter = substr( $now, 0, -1 );
250
  if ( $current_quarter == 1 )
251
  $last_quarter = 4;
252
  else
253
  $last_quarter = $current_quarter-1;
254
  if ( 'Q' . $last_quarter == $last_run ) return true;
 
255
  break;
 
256
  case 'semiannually' :
 
257
  if ( $now != $last_run ) return true;
 
258
  break;
 
259
  case 'annually' :
 
260
  if ( $now-1 == $last_run ) return true;
 
261
  break;
 
262
  default :
 
263
  return apply_filters( 'mycred_banking_time_to_run', false, $rate, $last_run );
 
264
  break;
 
265
  }
266
 
267
  return false;
@@ -333,7 +488,7 @@ if ( ! class_exists( 'myCRED_Service' ) ) {
333
  function timeframe_dropdown( $pref_id = '', $use_select = true, $hourly = true ) {
334
 
335
  $timeframes = $this->get_timeframes();
336
- if ( !$hourly )
337
  unset( $timeframes['hourly'] );
338
 
339
  echo '<select name="' . $this->field_name( $pref_id ) . '" id="' . $this->field_id( $pref_id ) . '">';
@@ -358,6 +513,90 @@ if ( ! class_exists( 'myCRED_Service' ) ) {
358
  }
359
  echo '</select>';
360
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361
  }
362
  }
363
  ?>
1
  <?php
2
+ if ( ! defined( 'myCRED_VERSION' ) ) exit;
3
+
4
  /**
5
  * myCRED_Service class
6
  * @see http://mycred.me/classes/mycred_service/
7
  * @since 1.2
8
+ * @version 1.1
9
  */
10
  if ( ! class_exists( 'myCRED_Service' ) ) {
11
  abstract class myCRED_Service {
16
  // myCRED_Settings Class
17
  public $core;
18
 
19
+ // Multipoint types
20
+ public $is_main_type = true;
21
+ public $mycred_type = 'mycred_default';
22
+
23
  // Service Prefs
24
  public $prefs = false;
25
 
26
  /**
27
  * Construct
28
  */
29
+ function __construct( $args = array(), $service_prefs = NULL, $type = 'mycred_default' ) {
30
  if ( ! empty( $args ) ) {
31
  foreach ( $args as $key => $value ) {
32
  $this->$key = $value;
34
  }
35
 
36
  // Grab myCRED Settings
37
+ $this->core = mycred( $type );
38
+
39
+ if ( $type != '' ) {
40
+ $this->core->cred_id = sanitize_text_field( $type );
41
+ $this->mycred_type = $this->core->cred_id;
42
+ }
43
+
44
+ if ( $this->mycred_type != 'mycred_default' )
45
+ $this->is_main_type = false;
46
 
47
  // Grab settings
48
  if ( $service_prefs !== NULL ) {
49
  // Assign prefs if set
50
+ if ( isset( $service_prefs[ $this->id ] ) )
51
  $this->prefs = $service_prefs[ $this->id ];
52
 
53
  // Defaults must be set
54
+ if ( ! isset( $this->defaults ) )
55
  $this->defaults = array();
56
  }
57
 
58
  // Apply default settings if needed
59
  if ( ! empty( $this->defaults ) )
60
+ $this->prefs = mycred_apply_defaults( $this->defaults, $this->prefs );
61
  }
62
 
63
  /**
67
  * @version 1.0
68
  */
69
  function run() {
70
+ wp_die( 'function myCRED_Service::run() must be over-ridden in a sub-class.' );
71
  }
72
 
73
  /**
88
  return $post;
89
  }
90
 
91
+ /**
92
+ * Activate
93
+ * @since 1.5.2
94
+ * @version 1.0
95
+ */
96
+ function activate() { }
97
+
98
  /**
99
  * Deactivate
100
  * @since 1.2
101
  * @version 1.0
102
  */
103
+ function deactivate() { }
104
+
105
+ /**
106
+ * User Override
107
+ * @since 1.5.2
108
+ * @version 1.0
109
+ */
110
+ function user_override( $user = NULL, $type = 'mycred_default' ) { }
111
+
112
+ /**
113
+ * Save User Override
114
+ * @since 1.5.2
115
+ * @version 1.0
116
+ */
117
+ function save_user_override() { }
118
+
119
+ /**
120
+ * User Override Notice
121
+ * @since 1.5.2
122
+ * @version 1.0
123
+ */
124
+ function user_override_notice() { }
125
 
126
  /**
127
  * Get Field Name
128
  * Returns the field name for the current service
129
  * @since 1.2
130
+ * @version 1.1
131
  */
132
  function field_name( $field = '' ) {
133
  if ( is_array( $field ) ) {
134
  $array = array();
135
  foreach ( $field as $parent => $child ) {
136
+ if ( ! is_numeric( $parent ) )
137
  $array[] = $parent;
138
 
139
+ if ( ! empty( $child ) && !is_array( $child ) )
140
  $array[] = $child;
141
  }
142
  $field = '[' . implode( '][', $array ) . ']';
144
  else {
145
  $field = '[' . $field . ']';
146
  }
147
+
148
+ $option_id = 'mycred_pref_bank';
149
+ if ( ! $this->is_main_type )
150
+ $option_id = $option_id . '_' . $this->mycred_type;
151
+
152
+ return $option_id . '[service_prefs][' . $this->id . ']' . $field;
153
  }
154
 
155
  /**
156
  * Get Field ID
157
  * Returns the field id for the current service
158
  * @since 1.2
159
+ * @version 1.1
160
  */
161
  function field_id( $field = '' ) {
162
  if ( is_array( $field ) ) {
163
  $array = array();
164
  foreach ( $field as $parent => $child ) {
165
+ if ( ! is_numeric( $parent ) )
166
  $array[] = str_replace( '_', '-', $parent );
167
 
168
+ if ( ! empty( $child ) && !is_array( $child ) )
169
  $array[] = str_replace( '_', '-', $child );
170
  }
171
  $field = implode( '-', $array );
173
  else {
174
  $field = str_replace( '_', '-', $field );
175
  }
176
+
177
+ $option_id = 'mycred_pref_bank';
178
+ if ( ! $this->is_main_type )
179
+ $option_id = $option_id . '_' . $this->mycred_type;
180
+
181
+ $option_id = str_replace( '_', '-', $option_id );
182
+ return $option_id . '-' . str_replace( '_', '-', $this->id ) . '-' . $field;
183
+ }
184
+
185
+ /**
186
+ * Exclude User Check
187
+ * @since 1.5.2
188
+ * @version 1.0
189
+ */
190
+ function exclude_user( $user_id = NULL ) {
191
+
192
+ $reply = false;
193
+
194
+ // Check if we are excluded based on ID
195
+ if ( isset( $this->prefs['exclude_ids'] ) && $this->prefs['exclude_ids'] != '' ) {
196
+
197
+ $excluded_ids = explode( ',', $this->prefs['exclude_ids'] );
198
+ if ( ! empty( $excluded_ids ) ) {
199
+ $clean_ids = array();
200
+ foreach ( $excluded_ids as $id )
201
+ $clean_ids[] = (int) trim( $id );
202
+
203
+ if ( in_array( $user_id, $clean_ids ) )
204
+ $reply = 'list';
205
+ }
206
+
207
+ }
208
+
209
+ // Check if we are excluded based on role
210
+ if ( $reply === false && isset( $this->prefs['exclude_roles'] ) && ! empty( $this->prefs['exclude_roles'] ) ) {
211
+
212
+ $user = new WP_User( $user_id );
213
+ if ( ! empty( $user->roles ) && is_array( $user->roles ) ) {
214
+ foreach ( $user->roles as $role ) {
215
+ if ( in_array( $role, $this->prefs['exclude_roles'] ) )
216
+ $reply = 'role';
217
+ }
218
+ }
219
+
220
+ }
221
+
222
+ return apply_filters( 'mycred_banking_exclude_user', $reply, $user_id, $this );
223
  }
224
 
225
  /**
267
  * @version 1.0
268
  */
269
  public function get_now( $rate = '' ) {
270
+
271
  $timeframes = $this->get_timeframes();
272
  if ( array_key_exists( $rate, $timeframes ) ) {
273
  // Quarterly
283
  return date_i18n( $timeframes[ $rate ]['date_format'] );
284
  }
285
  }
286
+
287
+ return false;
288
+
289
+ }
290
+
291
+ /**
292
+ * Get Run Count
293
+ * @since 1.5.2
294
+ * @version 1.0
295
+ */
296
+ public function get_run_count( $instance = '' ) {
297
+ $key = 'mycred_brc_' . $instance . '_' . $this->mycred_type;
298
+ return mycred_get_option( $key, 0 );
299
+ }
300
+
301
+ /**
302
+ * Update Run Count
303
+ * @since 1.5.2
304
+ * @version 1.0
305
+ */
306
+ public function update_run_count( $instance = '' ) {
307
+
308
+ $count = $this->get_run_count( $instance );
309
+ $count ++;
310
+ mycred_update_option( 'mycred_brc_' . $instance . '_' . $this->mycred_type, $count );
311
+
312
  }
313
 
314
  /**
315
  * Last Run
316
  * @since 1.2
317
+ * @version 1.1
318
+ */
319
+ public function get_last_run( $instance = '' ) {
320
+ $key = 'mycred_banking_' . $this->id . '_' . $instance . $this->mycred_type;
321
+ return mycred_get_option( $key, 'n/a' );
322
+ }
323
+
324
+ /**
325
+ * Save Last Run
326
+ * @since 1.5.2
327
  * @version 1.0
328
  */
329
+ public function save_last_run( $instance = '', $time = NULL ) {
330
+
331
+ if ( $time === NULL ) $time = date_i18n( 'U' );
332
+ mycred_update_option( 'mycred_banking_' . $this->id . '_' . $instance . $this->mycred_type, $time );
333
+
334
+ }
335
+
336
+ /**
337
+ * Display Last Run
338
+ * @since 1.5.2
339
+ * @version 1.0
340
+ */
341
+ public function display_last_run( $instance = '' ) {
342
+ $last_run = $this->get_last_run( $instance );
343
+ if ( $last_run != 'n/a' )
344
+ $last_run = date( 'Y-m-d G:i', $last_run );
345
+
346
+ return $last_run;
347
  }
348
 
349
  /**
350
  * Time To Run
351
  * @since 1.2.2
352
+ * @version 1.1
353
  */
354
  public function time_to_run( $rate, $last_run ) {
355
  $now = $this->get_now( $rate );
356
+ if ( $last_run == 'n/a' ) return false;
357
+
358
+ $timeframes = $this->get_timeframes();
359
+ $last_run = date_i18n( $timeframes[ $rate ]['date_format'], $last_run );
360
+
361
  switch ( $rate ) {
362
+
363
  case 'hourly' :
364
+
365
  if ( $now == 0 && $last_run == 23 ) return true;
366
  elseif ( $now-1 == $last_run ) return true;
367
+
368
  break;
369
+
370
  case 'daily' :
371
+
372
  if ( $now == 0 && $last_run >= 365 ) return true;
373
  elseif ( $now-1 == $last_run ) return true;
374
+
375
  break;
376
+
377
  case 'weekly' :
378
+
379
  if ( $now == 0 && $last_run >= 52 ) return true;
380
  elseif ( $now-1 == $last_run ) return true;
381
+
382
  break;
383
+
384
  case 'monthly' :
385
+
386
  if ( $now == 1 && $last_run == 12 ) return true;
387
  elseif ( $now-1 == $last_run ) return true;
388
+
389
  break;
390
+
391
  case 'quarterly' :
392
+
393
  $current_quarter = substr( $now, 0, -1 );
394
  if ( $current_quarter == 1 )
395
  $last_quarter = 4;
396
  else
397
  $last_quarter = $current_quarter-1;
398
  if ( 'Q' . $last_quarter == $last_run ) return true;
399
+
400
  break;
401
+
402
  case 'semiannually' :
403
+
404
  if ( $now != $last_run ) return true;
405
+
406
  break;
407
+
408
  case 'annually' :
409
+
410
  if ( $now-1 == $last_run ) return true;
411
+
412
  break;
413
+
414
  default :
415
+
416
  return apply_filters( 'mycred_banking_time_to_run', false, $rate, $last_run );
417
+
418
  break;
419
+
420
  }
421
 
422
  return false;
488
  function timeframe_dropdown( $pref_id = '', $use_select = true, $hourly = true ) {
489
 
490
  $timeframes = $this->get_timeframes();
491
+ if ( ! $hourly )
492
  unset( $timeframes['hourly'] );
493
 
494
  echo '<select name="' . $this->field_name( $pref_id ) . '" id="' . $this->field_id( $pref_id ) . '">';
513
  }
514
  echo '</select>';
515
  }
516
+
517
+ /**
518
+ * Get Eligeble Users
519
+ * Returns an array of user IDs that are not excluded
520
+ * from this service.
521
+ * @since 1.5.2
522
+ * @version 1.0
523
+ */
524
+ public function get_eligeble_users() {
525
+
526
+ global $wpdb;
527
+ $joins = $wheres = array();
528
+
529
+ // Minimum Balance
530
+ if ( isset( $this->prefs['min_balance'] ) && $this->prefs['min_balance'] != '' && $this->prefs['min_balance'] != 0 ) {
531
+
532
+ $balance_key = $this->mycred_type;
533
+ if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! $this->core->use_central_logging )
534
+ $balance_key .= '_' . $GLOBALS['blog_id'];
535
+
536
+ $joins[] = "INNER JOIN {$wpdb->usermeta} balance ON ( users.ID = balance.user_id AND balance.meta_key = '{$balance_key}' )";
537
+ $wheres[] = "balance.meta_value > " . $this->prefs['min_balance'];
538
+
539
+ }
540
+
541
+ // Exclude IDs
542
+ if ( isset( $this->prefs['exclude_ids'] ) && $this->prefs['exclude_ids'] != '' ) {
543
+ $clean_ids = array();
544
+ $the_list = explode( ',', $this->prefs['exclude_ids'] );
545
+ foreach ( $the_list as $user_id ) {
546
+ $user_id = trim( $user_id );
547
+ if ( $user_id == '' || $user_id == 0 ) continue;
548
+ $clean_ids[] = (int) $user_id;
549
+ }
550
+
551
+ if ( count( $clean_ids ) > 0 )
552
+ $wheres[] = "users.ID NOT IN (" . implode( ', ', $clean_ids ) . ")";
553
+ }
554
+
555
+ // Core Excludes
556
+ if ( $this->core->exclude['list'] != '' ) {
557
+ $clean_ids = array();
558
+ $the_list = explode( ',', $this->core->exclude['list'] );
559
+ foreach ( $the_list as $user_id ) {
560
+ $user_id = trim( $user_id );
561
+ if ( $user_id == '' || $user_id == 0 ) continue;
562
+ $clean_ids[] = (int) $user_id;
563
+ }
564
+
565
+ if ( count( $clean_ids ) > 0 )
566
+ $wheres[] = "users.ID NOT IN (" . implode( ', ', $clean_ids ) . ")";
567
+ }
568
+
569
+ // Exclude roles
570
+ if ( isset( $this->prefs['exclude_roles'] ) && ! empty( $this->prefs['exclude_roles'] ) ) {
571
+ $cap_id = $wpdb->prefix . 'capabilities';
572
+
573
+ $joins[] = "INNER JOIN {$wpdb->usermeta} role ON ( users.ID = role.user_id AND role.meta_key = '{$cap_id}' )";
574
+
575
+ $excluded_roles = array();
576
+ foreach ( $this->prefs['exclude_roles'] as $role_id )
577
+ $excluded_roles[] = "'%" . $role_id . "%'";
578
+
579
+ $wheres[] = "role.meta_value NOT LIKE " . implode( " AND role.meta_value NOT LIKE ", $excluded_roles );
580
+ }
581
+
582
+ // Construct Query
583
+ $SQL = "SELECT DISTINCT users.ID FROM {$wpdb->users} users ";
584
+
585
+ if ( ! empty( $joins ) )
586
+ $SQL .= implode( " ", $joins ) . " ";
587
+
588
+ if ( ! empty( $wheres ) )
589
+ $SQL .= "WHERE " . implode( " AND ", $wheres ) . " ";
590
+
591
+ // The Query
592
+ $users = $wpdb->get_col( $SQL );
593
+ if ( $users === NULL )
594
+ $users = array();
595
+
596
+ return $users;
597
+
598
+ }
599
+
600
  }
601
  }
602
  ?>
addons/banking/myCRED-addon-banking.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Addon: Banking
4
  * Addon URI: http://mycred.me/add-ons/banking/
5
- * Version: 1.0
6
  * Description: Setup recurring payouts or offer / charge interest on user account balances.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
@@ -15,6 +15,8 @@ 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
  require_once( myCRED_BANK_SERVICES_DIR . 'mycred-bank-service-interest.php' );
19
  require_once( myCRED_BANK_SERVICES_DIR . 'mycred-bank-service-payouts.php' );
20
 
@@ -29,7 +31,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
29
  /**
30
  * Constructor
31
  */
32
- public function __construct() {
33
  parent::__construct( 'myCRED_Banking_Module', array(
34
  'module_name' => 'banking',
35
  'option_id' => 'mycred_pref_bank',
@@ -46,7 +48,11 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
46
  'screen_id' => 'myCRED_page_banking',
47
  'accordion' => true,
48
  'menu_pos' => 30
49
- ) );
 
 
 
 
50
  }
51
 
52
  /**
@@ -55,6 +61,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
55
  * @version 1.0
56
  */
57
  public function module_init() {
 
58
  if ( ! empty( $this->services ) ) {
59
  foreach ( $this->services as $key => $gdata ) {
60
  if ( $this->is_active( $key ) && isset( $gdata['callback'] ) ) {
@@ -62,6 +69,54 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
62
  }
63
  }
64
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
  }
66
 
67
  /**
@@ -70,19 +125,19 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
70
  * @since 1.2
71
  * @version 1.1
72
  */
73
- public function call( $call, $callback, $return = NULL ) {
74
  // Class
75
  if ( is_array( $callback ) && class_exists( $callback[0] ) ) {
76
  $class = $callback[0];
77
  $methods = get_class_methods( $class );
78
  if ( in_array( $call, $methods ) ) {
79
- $new = new $class( ( isset( $this->service_prefs ) ) ? $this->service_prefs : array() );
80
- return $new->$call( $return );
81
  }
82
  }
83
 
84
  // Function
85
- if ( ! is_array( $callback ) ) {
86
  if ( function_exists( $callback ) ) {
87
  if ( $return !== NULL )
88
  return call_user_func( $callback, $return, $this );
@@ -99,27 +154,35 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
99
  */
100
  public function get( $save = false ) {
101
  // Savings
 
 
 
 
 
 
 
102
  $services['interest'] = array(
103
  'title' => __( 'Compound Interest', 'mycred' ),
104
- 'description' => __( 'Apply an interest rate on your users %_plural% balances. Interest rate is annual and is compounded daily as long as this service is enabled. Positive interest rate leads to users gaining %_plural% while a negative interest rate will to users loosing %_plural%.', 'mycred' ),
105
  'callback' => array( 'myCRED_Banking_Service_Interest' )
106
  );
107
 
108
  // Inflation
109
  $services['payouts'] = array(
110
  'title' => __( 'Recurring Payouts', 'mycred' ),
111
- 'description' => __( 'Give your users %_plural% on a regular basis with the option to set the number of times you want this payout to run (cycles).', 'mycred' ),
112
  'callback' => array( 'myCRED_Banking_Service_Payouts' )
113
  );
114
 
115
  $services = apply_filters( 'mycred_setup_banking', $services );
116
 
117
  if ( $save === true && $this->core->can_edit_plugin() ) {
118
- mycred_update_option( 'mycred_pref_bank', array(
119
  'active' => $this->active,
120
  'services' => $services,
121
  'service_prefs' => $this->service_prefs
122
- ) );
 
123
  }
124
 
125
  $this->services = $services;
@@ -131,7 +194,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
131
  * @since 1.3
132
  * @version 1.0
133
  */
134
- public function add_to_page_enqueue() {
135
  $banking_icons = plugins_url( 'assets/images/gateway-icons.png', myCRED_THIS ); ?>
136
 
137
  <!-- Banking Add-on -->
@@ -156,16 +219,13 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
156
  wp_die( __( 'Access Denied', 'mycred' ) );
157
 
158
  // Get installed
159
- $installed = $this->get( true );
160
-
161
- // Message
162
- if ( isset( $_GET['settings-updated'] ) && $_GET['settings-updated'] == true ) {
163
- echo '<div class="updated settings-error"><p>' . __( 'Settings Updated', 'mycred' ) . '</p></div>';
164
- } ?>
165
 
166
  <div class="wrap" id="myCRED-wrap">
167
  <h2><?php echo sprintf( __( '%s Banking', 'mycred' ), mycred_label() ); ?></h2>
168
- <p><?php echo $this->core->template_tags_general( __( 'Setup recurring payouts or offer / charge interest on user account balances.', 'mycred' ) ); ?></p>
 
 
169
  <?php if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) : ?>
170
 
171
  <p><strong><?php _e( 'WP-Cron deactivation detected!', 'mycred' ); ?></strong></p>
@@ -173,7 +233,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
173
  <?php return; endif; ?>
174
 
175
  <form method="post" action="options.php">
176
- <?php settings_fields( 'myCRED-banking' ); ?>
177
 
178
  <!-- Loop though Services -->
179
  <div class="list-items expandable-li" id="accordion">
@@ -188,7 +248,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
188
  <label class="subheader"><?php _e( 'Enable', 'mycred' ); ?></label>
189
  <ol>
190
  <li>
191
- <input type="checkbox" name="mycred_pref_bank[active][]" id="mycred-bank-service-<?php echo $key; ?>" value="<?php echo $key; ?>"<?php if ( $this->is_active( $key ) ) echo ' checked="checked"'; ?> />
192
  </li>
193
  </ol>
194
  <?php echo $this->call( 'preferences', $data['callback'] ); ?>
@@ -208,7 +268,7 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
208
  /**
209
  * Sanititze Settings
210
  * @since 1.2
211
- * @version 1.0
212
  */
213
  public function sanitize_settings( $post ) {
214
  // Loop though all installed hooks
@@ -216,13 +276,13 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
216
 
217
  // Construct new settings
218
  $new_post['services'] = $installed;
219
- if ( empty( $post['active'] ) || ! isset( $post['active'] ) ) $post['active'] = array();
 
 
220
  $new_post['active'] = $post['active'];
221
 
222
  if ( ! empty( $installed ) ) {
223
- // Loop though all installed
224
  foreach ( $installed as $key => $data ) {
225
- // Callback and settings are required
226
  if ( isset( $data['callback'] ) && isset( $post['service_prefs'][ $key ] ) ) {
227
  // Old settings
228
  $old_settings = $post['service_prefs'][ $key ];
@@ -233,30 +293,38 @@ if ( ! class_exists( 'myCRED_Banking_Module' ) ) {
233
  // If something went wrong use the old settings
234
  if ( empty( $new_settings ) || $new_settings === NULL || ! is_array( $new_settings ) )
235
  $new_post['service_prefs'][ $key ] = $old_settings;
236
-
237
  // Else we got ourselves new settings
238
  else
239
  $new_post['service_prefs'][ $key ] = $new_settings;
240
 
241
  // Handle de-activation
242
- if ( isset( $this->active ) && ! empty( $this->active ) ) {
243
- foreach ( $this->active as $id ) {
244
- // If a previously active id is no longer in the new active array call deactivate
245
- if ( ! in_array( $id, $new_post['active'] ) ) {
246
- $this->call( 'deactivate', $data['callback'] );
247
- }
248
- }
249
- }
250
  // Next item
251
  }
252
  }
253
  }
254
 
 
255
  return $new_post;
256
  }
257
  }
 
 
 
 
 
 
258
 
259
- $bank = new myCRED_Banking_Module();
260
- $bank->load();
 
 
 
261
  }
262
  ?>
2
  /**
3
  * Addon: Banking
4
  * Addon URI: http://mycred.me/add-ons/banking/
5
+ * Version: 1.2
6
  * Description: Setup recurring payouts or offer / charge interest on user account balances.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
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
 
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',
48
  'screen_id' => 'myCRED_page_banking',
49
  'accordion' => true,
50
  'menu_pos' => 30
51
+ ), $type );
52
+
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
  /**
61
  * @version 1.0
62
  */
63
  public function module_init() {
64
+
65
  if ( ! empty( $this->services ) ) {
66
  foreach ( $this->services as $key => $gdata ) {
67
  if ( $this->is_active( $key ) && isset( $gdata['callback'] ) ) {
69
  }
70
  }
71
  }
72
+
73
+ }
74
+
75
+ /**
76
+ * User Level Override
77
+ * @since 1.5.2
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 ) ) {
84
+ foreach ( $this->services as $key => $gdata ) {
85
+ if ( $this->is_active( $key ) && isset( $gdata['callback'] ) ) {
86
+ $this->call( 'user_override', $gdata['callback'], $user, $type );
87
+ }
88
+ }
89
+ }
90
+ }
91
+
92
+ /**
93
+ * Save User Level Override
94
+ * @since 1.5.2
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'] ) ) {
101
+ $this->call( 'save_user_override', $gdata['callback'] );
102
+ }
103
+ }
104
+ }
105
+ }
106
+
107
+ /**
108
+ * User Level Profile Notice
109
+ * @since 1.5.2
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'] ) ) {
116
+ $this->call( 'user_override_notice', $gdata['callback'] );
117
+ }
118
+ }
119
+ }
120
  }
121
 
122
  /**
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];
132
  $methods = get_class_methods( $class );
133
  if ( in_array( $call, $methods ) ) {
134
+ $new = new $class( ( isset( $this->service_prefs ) ) ? $this->service_prefs : array(), $this->mycred_type );
135
+ return $new->$call( $return, $var1, $var2, $var3 );
136
  }
137
  }
138
 
139
  // Function
140
+ elseif ( ! is_array( $callback ) ) {
141
  if ( function_exists( $callback ) ) {
142
  if ( $return !== NULL )
143
  return call_user_func( $callback, $return, $this );
154
  */
155
  public function get( $save = false ) {
156
  // Savings
157
+ $services['central'] = array(
158
+ 'title' => __( 'Central Banking', 'mycred' ),
159
+ 'description' => __( 'Instead of creating %_plural% out of thin-air, all payouts are made from a nominated "Central Bank" account. Any %_plural% a user spends or loses are deposited back into this account.', 'mycred' ),
160
+ 'callback' => array( 'myCRED_Banking_Service_Central' )
161
+ );
162
+
163
+ // Interest
164
  $services['interest'] = array(
165
  'title' => __( 'Compound Interest', 'mycred' ),
166
+ 'description' => __( 'Apply a positive or negative interest rate on your users %_plural% balances.', 'mycred' ),
167
  'callback' => array( 'myCRED_Banking_Service_Interest' )
168
  );
169
 
170
  // Inflation
171
  $services['payouts'] = array(
172
  'title' => __( 'Recurring Payouts', 'mycred' ),
173
+ 'description' => __( 'Setup mass %_singular% payouts for your users.', 'mycred' ),
174
  'callback' => array( 'myCRED_Banking_Service_Payouts' )
175
  );
176
 
177
  $services = apply_filters( 'mycred_setup_banking', $services );
178
 
179
  if ( $save === true && $this->core->can_edit_plugin() ) {
180
+ $new_data = array(
181
  'active' => $this->active,
182
  'services' => $services,
183
  'service_prefs' => $this->service_prefs
184
+ );
185
+ mycred_update_option( $this->option_id, $new_data );
186
  }
187
 
188
  $this->services = $services;
194
  * @since 1.3
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 -->
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>
233
  <?php return; 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">
248
  <label class="subheader"><?php _e( 'Enable', 'mycred' ); ?></label>
249
  <ol>
250
  <li>
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'] ); ?>
268
  /**
269
  * Sanititze Settings
270
  * @since 1.2
271
+ * @version 1.1
272
  */
273
  public function sanitize_settings( $post ) {
274
  // Loop though all installed hooks
276
 
277
  // Construct new settings
278
  $new_post['services'] = $installed;
279
+ if ( empty( $post['active'] ) || ! isset( $post['active'] ) )
280
+ $post['active'] = array();
281
+
282
  $new_post['active'] = $post['active'];
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 ];
293
  // If something went wrong use the old settings
294
  if ( empty( $new_settings ) || $new_settings === NULL || ! is_array( $new_settings ) )
295
  $new_post['service_prefs'][ $key ] = $old_settings;
 
296
  // Else we got ourselves new settings
297
  else
298
  $new_post['service_prefs'][ $key ] = $new_settings;
299
 
300
  // Handle de-activation
301
+ if ( in_array( $key, (array) $this->active ) && ! in_array( $key, $new_post['active'] ) )
302
+ $this->call( 'deactivate', $data['callback'], $new_post['service_prefs'][ $key ] );
303
+
304
+ // Handle activation
305
+ if ( ! in_array( $key, (array) $this->active ) && in_array( $key, $new_post['active'] ) )
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();
325
+ foreach ( $mycred_types as $type => $title ) {
326
+ $mycred_modules[ $type ]['banking'] = new myCRED_Banking_Module( $type );
327
+ $mycred_modules[ $type ]['banking']->load();
328
+ }
329
  }
330
  ?>
addons/banking/services/mycred-bank-service-central.php ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * myCRED Bank Service - Central Bank
4
+ * @since 1.5.2
5
+ * @version 1.0
6
+ */
7
+ if ( ! defined( 'myCRED_VERSION' ) ) exit;
8
+
9
+ if ( ! class_exists( 'myCRED_Banking_Service_Central' ) ) :
10
+ class myCRED_Banking_Service_Central extends myCRED_Service {
11
+
12
+ /**
13
+ * Construct
14
+ */
15
+ function __construct( $service_prefs, $type = 'mycred_default' ) {
16
+ parent::__construct( array(
17
+ 'id' => 'central',
18
+ 'defaults' => array(
19
+ 'bank_id' => '',
20
+ 'ignore_manual' => 1
21
+ )
22
+ ), $service_prefs, $type );
23
+ }
24
+
25
+ /**
26
+ * Run
27
+ * @since 1.5.2
28
+ * @version 1.0
29
+ */
30
+ public function run() {
31
+
32
+ if ( ! function_exists( 'charge_bank_account' ) )
33
+ add_filter( 'mycred_add', array( $this, 'mycred_add' ), 1, 3 );
34
+
35
+ }
36
+
37
+ /**
38
+ * Add
39
+ * @since 1.5.2
40
+ * @version 1.0
41
+ */
42
+ public function mycred_add( $reply, $request, $mycred ) {
43
+ // Make sure we are in the correct point type
44
+ if ( $this->mycred_type != $mycred->cred_id || $reply === false ) return $reply;
45
+
46
+ // Check manual
47
+ if ( isset( $this->prefs['ignore_manual'] ) && $this->prefs['ignore_manual'] == 0 && $request['ref'] == 'manual' ) return $reply;
48
+
49
+ // Instances to ignore
50
+ $ignore = apply_filters( 'mycred_central_banking_ignore', array( 'interest', 'recurring_payout' ), $this );
51
+ if ( in_array( $request['ref'], $ignore ) ) return $reply;
52
+
53
+ extract( $request );
54
+
55
+ // Make sure that the request is not for our bank account
56
+ if ( $user_id == $this->prefs['bank_id'] ) return $reply;
57
+
58
+ // Get the banks balance
59
+ $bank_balance = $mycred->get_users_cred( $this->prefs['bank_id'], $type );
60
+
61
+ // User is to lose points
62
+ if ( $amount < 0 ) {
63
+ // Add the points getting deducted to our bank account
64
+ $mycred->update_users_balance( $this->prefs['bank_id'], abs( $amount ), $type );
65
+
66
+ // Log event
67
+ $mycred->add_to_log( $ref, $this->prefs['bank_id'], abs( $amount ), $entry, $ref_id, $data, $type );
68
+ }
69
+
70
+ // User is to gain points
71
+ else {
72
+ // First make sure the bank is not bust
73
+ if ( $bank_balance <= $mycred->zero() ) return false;
74
+
75
+ // Second we check if the bank is solvent
76
+ if ( $bank_balance-$amount < $mycred->zero() ) return false;
77
+
78
+ // If we have come this far, the bank has sufficient funds so lets deduct
79
+ $mycred->update_users_balance( $this->prefs['bank_id'], 0-$amount, $type );
80
+
81
+ // Log event
82
+ $mycred->add_to_log( $ref, $this->prefs['bank_id'], 0-$amount, $entry, $ref_id, $data, $type );
83
+ }
84
+
85
+ // Return the result
86
+ return $reply;
87
+
88
+ }
89
+
90
+ /**
91
+ * Preference for Central Bank
92
+ * @since 1.5.2
93
+ * @version 1.0
94
+ */
95
+ public function preferences() {
96
+ $prefs = $this->prefs;
97
+ if ( function_exists( 'charge_bank_account' ) ) : ?>
98
+
99
+ <p><strong>Warning!</strong>Please remove the charge_bank_account function from your themes functions.php file to use this service!</p>
100
+ <?php
101
+
102
+ endif;
103
+
104
+ ?>
105
+ <label class="subheader"><?php _e( 'Bank User', 'mycred' ); ?></label>
106
+ <ol class="inline">
107
+ <li>
108
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'bank_id' ); ?>" id="<?php echo $this->field_id( 'bank_id' ); ?>" value="<?php echo $prefs['bank_id']; ?>" size="8" /></div>
109
+ <span class="description"><?php _e( 'The user ID of the central bank account. This user can not be excluded!', 'mycred' ); ?></span>
110
+ </li>
111
+ </ol>
112
+ <label class="subheader"><?php _e( 'Ignore Manual Adjustments', 'mycred' ); ?></label>
113
+ <ol class="inline">
114
+ <li>
115
+ <div class="h2"><input type="checkbox" name="<?php echo $this->field_name( 'ignore_manual' ); ?>" id="<?php echo $this->field_id( 'ignore_manual' ); ?>" value="1"<?php checked( $prefs['ignore_manual'], 1 ); ?> /></div>
116
+ </li>
117
+ </ol>
118
+
119
+ <?php do_action( 'mycred_banking_central', $this ); ?>
120
+
121
+ <?php
122
+ }
123
+
124
+ /**
125
+ * Sanitise Preferences
126
+ * @since 1.5.2
127
+ * @version 1.0
128
+ */
129
+ function sanitise_preferences( $post ) {
130
+
131
+ $new_settings = $post;
132
+ $new_settings['bank_id'] = absint( $post['bank_id'] );
133
+ $new_settings['ignore_manual'] = ( isset( $post['ignore_manual'] ) ) ? $post['ignore_manual'] : 0;
134
+ return apply_filters( 'mycred_banking_save_central', $new_settings, $this );
135
+
136
+ }
137
+ }
138
+ endif;
139
+ ?>
addons/banking/services/mycred-bank-service-interest.php CHANGED
@@ -2,17 +2,17 @@
2
  /**
3
  * myCRED Bank Service - Interest
4
  * @since 1.2
5
- * @version 1.1
6
  */
7
  if ( ! defined( 'myCRED_VERSION' ) ) exit;
8
 
9
- if ( ! class_exists( 'myCRED_Banking_Service_Interest' ) ) {
10
  class myCRED_Banking_Service_Interest extends myCRED_Service {
11
 
12
  /**
13
  * Construct
14
  */
15
- function __construct( $service_prefs ) {
16
  parent::__construct( array(
17
  'id' => 'interest',
18
  'defaults' => array(
@@ -21,324 +21,659 @@ if ( ! class_exists( 'myCRED_Banking_Service_Interest' ) ) {
21
  'period' => 1,
22
  'pay_out' => 'monthly'
23
  ),
24
- 'last_payout' => '',
25
  'log' => __( '%plural% interest rate payment', 'mycred' ),
26
  'min_balance' => 1,
27
- 'run_time' => 60
 
28
  )
29
- ), $service_prefs );
 
 
 
30
  }
31
 
32
  /**
33
- * Run
34
- * @since 1.2
35
  * @version 1.0
36
  */
37
- public function run() {
38
- add_action( 'wp_loaded', array( $this, 'process' ) );
39
- add_action( 'mycred_banking_interest_compound', array( $this, 'do_compound' ) );
40
- add_action( 'mycred_banking_do_compound_batch', array( $this, 'do_compound_batch' ) );
41
-
42
- add_action( 'mycred_banking_interest_payout', array( $this, 'do_payouts' ) );
43
- add_action( 'mycred_banking_interest_do_batch', array( $this, 'do_interest_batch' ) );
44
  }
45
 
46
  /**
47
- * Deactivation
48
- * @since 1.2
49
  * @version 1.0
50
  */
51
  public function deactivate() {
52
- // Unschedule compounding
53
- $timestamp = wp_next_scheduled( 'mycred_banking_interest_compound' );
 
54
  if ( $timestamp !== false )
55
- wp_clear_scheduled_hook( $timestamp, 'mycred_banking_interest_compound' );
56
 
57
- // Unschedule payouts
58
- $timestamp = wp_next_scheduled( 'mycred_banking_interest_payout' );
59
  if ( $timestamp !== false )
60
- wp_clear_scheduled_hook( $timestamp, 'mycred_banking_interest_payout' );
 
61
  }
62
-
63
  /**
64
- * Process
65
- * Determines if we should run a payout or not and schedule the daily
66
- * compounding.
67
  * @since 1.2
68
- * @version 1.0
69
  */
70
- public function process() {
71
- // Unschedule if amount is set to zero
72
- if ( $this->prefs['rate']['amount'] == $this->core->zero() ) {
73
- $timestamp = wp_next_scheduled( 'mycred_banking_interest_compound' );
74
- if ( $timestamp !== false )
75
- wp_clear_scheduled_hook( $timestamp, 'mycred_banking_interest_compound' );
76
- }
77
 
78
- // Schedule if none exist
79
- if ( ! wp_next_scheduled( 'mycred_banking_interest_compound' ) ) {
80
- wp_schedule_event( time(), 'daily', 'mycred_banking_interest_compound' );
81
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
 
83
- $unow = date_i18n( 'U' );
84
- // Cant pay interest on zero
85
- if ( $this->prefs['rate']['amount'] == $this->core->zero() ) return;
86
-
87
- // Should we payout
88
- $payout_now = $this->get_now( $this->prefs['rate']['pay_out'] );
89
- if ( empty( $this->prefs['last_payout'] ) || $this->prefs['last_payout'] === NULL ) {
90
- $last_payout = $this->get_last_run( $unow, $this->prefs['rate']['pay_out'] );
91
- $this->save( 'last_payout', $unow );
92
- }
93
- else {
94
- $last_payout = $this->get_last_run( $this->prefs['last_payout'], $this->prefs['rate']['pay_out'] );
95
  }
96
- if ( $payout_now === false || $last_payout === false ) return;
97
-
98
- // Time to run?
99
- if ( $this->time_to_run( $this->prefs['rate']['pay_out'], $last_payout ) ) {
100
- // Save
101
- $this->save( 'last_payout', $unow );
102
-
103
- // Schedule Payouts
104
- if ( wp_next_scheduled( 'mycred_banking_interest_payout' ) === false )
105
- wp_schedule_single_event( time(), 'mycred_banking_interest_payout' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  }
 
107
  }
108
 
109
  /**
110
- * Do Compound
111
- * Either runs compounding on every single user in one go, or split the users
112
- * up into groups of 2000 IDs and do them in batches.
113
- * @since 1.2
114
  * @version 1.0
115
  */
116
- public function do_compound() {
117
- if ( $this->prefs['rate']['amount'] == $this->core->zero() ) return;
118
- // Get users
119
- $users = $this->get_users();
120
- $total = count( $users );
121
- $threshold = (int) apply_filters( 'mycred_do_banking_limit', 2000 );
122
-
123
- if ( (int) $total > $threshold ) {
124
- $batches = array_chunk( $users, $threshold );
125
- $time = time();
126
-
127
- $set = 0;
128
- foreach ( $batches as $batch_id => $batch ) {
129
- $set = $set+1;
130
- $run_time = ( $time + ( 60*$set ) );
131
- if ( wp_next_scheduled( $run_time, 'mycred_banking_do_compound_batch', array( $batch ) ) === false )
132
- wp_schedule_single_event( $run_time, 'mycred_banking_do_compound_batch', array( $batch ) );
133
- }
134
  }
135
- else {
136
- $this->do_compound_batch( $users );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
  }
 
138
  }
139
-
140
  /**
141
- * Do Compound Batch
142
- * Compounds interest for each user ID given in batch.
143
- * @since 1.2
144
- * @version 1.2.1
145
  */
146
- public function do_compound_batch( $batch ) {
147
- if ( !empty( $batch ) && is_array( $batch ) ) {
148
-
149
- set_time_limit( $this->prefs['run_time'] );
150
-
151
- foreach ( $batch as $user_id ) {
152
- $user_id = intval( $user_id );
153
-
154
- // Current balance
155
- $balance = $this->core->get_users_cred( $user_id );
156
- if ( $balance == 0 ) continue;
157
-
158
- // Get past interest
159
- $past_interest = mycred_get_user_meta( $user_id, $this->core->get_cred_id() . '_comp', '', true );
160
- if ( empty( $past_interest ) ) $past_interest = 0;
161
-
162
- // Min Balance Limit
163
- if ( $balance < $this->core->number( $this->prefs['min_balance'] ) ) continue;
164
-
165
- // Convert rate
166
- $rate = $this->prefs['rate']['amount']/100;
167
-
168
- // Period
169
- $period = $this->prefs['rate']['period']/$this->get_days_in_year();
170
-
171
- // Compound
172
- $interest = ( $balance + $past_interest ) * $rate * $period;
173
- $interest = round( $interest, 2 );
174
-
175
- // Save interest
176
- mycred_update_user_meta( $user_id, $this->core->get_cred_id() . '_comp', '', $interest );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
177
  }
 
178
  }
 
179
  }
180
 
181
  /**
182
- * Payout
183
- * Will either payout to all users in one go or if there is more then
184
- * 2000 members, do them in batches of 2000 at a time.
185
- * @since 1.2
186
- * @version 1.1
187
  */
188
- public function do_payouts() {
189
- // Make sure to clear any stray schedules to prevent duplicates
190
- wp_clear_scheduled_hook( 'mycred_banking_interest_payout' );
191
-
192
- // Query
193
- $users = $this->get_users();
194
- $total = count( $users );
195
- $threshold = (int) apply_filters( 'mycred_do_banking_limit', 2000 );
196
-
197
- if ( (int) $total > $threshold ) {
198
- $batches = array_chunk( $users, $threshold );
199
- $time = time();
200
-
201
- $set = 0;
202
- foreach ( $batches as $batch_id => $batch ) {
203
- $set = $set+1;
204
- $run_time = ( $time + ( 60*$set ) );
205
- if ( wp_next_scheduled( $run_time, 'mycred_banking_interest_do_batch', array( $batch ) ) === false )
206
- wp_schedule_single_event( $run_time, 'mycred_banking_interest_do_batch', array( $batch ) );
207
- }
208
- }
209
- else {
210
- $this->do_interest_batch( $users );
211
- }
212
  }
213
-
214
  /**
215
- * Do Payout
216
- * Runs though all user compounded interest and pays.
217
- * @since 1.2
218
- * @version 1.2.1
 
219
  */
220
- public function do_interest_batch( $batch ) {
221
- if ( !empty( $batch ) && is_array( $batch ) ) {
222
-
223
- set_time_limit( $this->prefs['run_time'] );
224
-
225
- foreach ( $batch as $user_id ) {
226
- $user_id = intval( $user_id );
227
-
228
- // Get past interest
229
- $past_interest = mycred_get_user_meta( $user_id, $this->core->get_cred_id() . '_comp', '', true );
230
- if ( empty( $past_interest ) || $past_interest == 0 ) continue;
231
-
232
- // Pay / Charge
233
- $this->core->add_creds(
234
- 'payout',
235
- $user_id,
236
- $past_interest,
237
- $this->prefs['log']
238
- );
239
-
240
- // Reset past interest
241
- mycred_update_user_meta( $user_id, $this->core->get_cred_id() . '_comp', '', 0 );
242
- }
243
- }
244
  }
245
-
246
  /**
247
- * Save
248
- * Saves the given preference id for rates.
249
- * from the active list.
250
- * @since 1.2
251
- * @version 1.1
252
  */
253
- public function save( $id, $now ) {
254
- if ( !isset( $this->prefs[ $id ] ) ) return;
255
- $this->prefs[ $id ] = $now;
256
-
257
- // Get Bank settings
258
- $bank = mycred_get_option( 'mycred_pref_bank' );
259
-
260
- // Update settings
261
- $bank['service_prefs'][$this->id] = $this->prefs;
262
-
263
- // Save new settings
264
- mycred_update_option( 'mycred_pref_bank', $bank );
 
 
 
 
265
  }
266
 
267
  /**
268
- * Preference for Savings
269
  * @since 1.2
270
- * @version 1.2
271
  */
272
  public function preferences() {
273
- $prefs = $this->prefs; ?>
274
-
275
- <label class="subheader"><?php _e( 'Interest Rate', 'mycred' ); ?></label>
276
- <ol class="inline">
277
- <li>
278
- <label>&nbsp;</label>
279
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'rate' => 'amount' ) ); ?>" id="<?php echo $this->field_id( array( 'rate' => 'amount' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['rate']['amount'] ); ?>" size="4" /> %</div>
280
- </li>
281
- <li>
282
- <label for="<?php echo $this->field_id( array( 'rate' => 'pay_out' ) ); ?>"><?php _e( 'Payed / Charged', 'mycred' ); ?></label><br />
283
- <?php $this->timeframe_dropdown( array( 'rate' => 'pay_out' ), false, false ); ?>
284
-
285
- </li>
286
- <li class="block">
287
- <input type="hidden" name="<?php echo $this->field_name( 'last_payout' ); ?>" value="<?php echo $prefs['last_payout']; ?>" />
288
- <span class="description"><?php _e( 'The interest rate can be either positive or negative and is compounded daily.', 'mycred' ); ?></span>
289
- </li>
290
- </ol>
291
- <label class="subheader"><?php _e( 'Minimum Balance', 'mycred' ); ?></label>
292
- <ol>
293
- <li>
294
- <div class="h2"><?php if ( $this->core->before != '' ) echo $this->core->before . ' '; ?><input type="text" name="<?php echo $this->field_name( 'min_balance' ); ?>" id="<?php echo $this->field_id( 'min_balance' ); ?>" value="<?php echo $this->core->format_number( $prefs['min_balance'] ); ?>" size="8" /><?php if ( $this->core->after != '' ) echo ' ' . $this->core->after; ?></div>
295
- <span class="description"><?php _e( 'The minimum requires balance for interest to apply.', 'mycred' ); ?></span>
296
- </li>
297
- </ol>
298
- <label class="subheader"><?php _e( 'Log Template', 'mycred' ); ?></label>
299
- <ol>
300
- <li>
301
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo $prefs['log']; ?>" style="width: 65%;" /></div>
302
- <span class="description"><?php echo $this->core->available_template_tags( array( 'general' ), '%timeframe%, %rate%, %base%' ); ?></span>
303
- </li>
304
- </ol>
305
- <label class="subheader" for="<?php echo $this->field_id( 'run_time' ); ?>"><?php _e( 'Run Time', 'mycred' ); ?></label>
306
- <ol>
307
- <li>
308
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'run_time' ); ?>" id="<?php echo $this->field_id( 'run_time' ); ?>" value="<?php echo $prefs['run_time']; ?>" size="4" /></div>
309
- <span class="description"><?php _e( 'For large websites, if you are running into time out issues during payouts, you can set the number of seconds a process can run. Use zero for unlimited, but be careful especially if you are on a shared server.', 'mycred' ); ?></span>
310
- </li>
311
- </ol>
312
- <?php do_action( 'mycred_banking_compound_interest', $this->prefs ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
313
  <?php
314
  }
315
 
316
  /**
317
  * Sanitise Preferences
318
  * @since 1.2
319
- * @version 1.2
320
  */
321
  function sanitise_preferences( $post ) {
322
- $new_settings = $post;
323
 
 
324
  $new_settings['rate']['amount'] = str_replace( ',', '.', trim( $post['rate']['amount'] ) );
325
-
326
  $new_settings['rate']['period'] = $this->get_days_in_year();
327
-
328
  $new_settings['rate']['pay_out'] = sanitize_text_field( $post['rate']['pay_out'] );
329
 
 
330
  $new_settings['min_balance'] = str_replace( ',', '.', trim( $post['min_balance'] ) );
331
-
332
- $new_settings['last_payout'] = trim( $post['last_payout'] );
333
 
334
- $new_settings['log'] = trim( $post['log'] );
335
 
336
- $post['run_time'] = abs( $post['run_time'] );
337
- $new_settings['run_time'] = sanitize_text_field( $post['run_time'] );
 
 
 
338
 
339
- return apply_filters( 'mycred_banking_save_interest', $new_settings, $this->prefs );
340
  }
341
- }
342
- }
343
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
344
  ?>
2
  /**
3
  * myCRED Bank Service - Interest
4
  * @since 1.2
5
+ * @version 1.2
6
  */
7
  if ( ! defined( 'myCRED_VERSION' ) ) exit;
8
 
9
+ if ( ! class_exists( 'myCRED_Banking_Service_Interest' ) ) :
10
  class myCRED_Banking_Service_Interest extends myCRED_Service {
11
 
12
  /**
13
  * Construct
14
  */
15
+ function __construct( $service_prefs, $type = 'mycred_default' ) {
16
  parent::__construct( array(
17
  'id' => 'interest',
18
  'defaults' => array(
21
  'period' => 1,
22
  'pay_out' => 'monthly'
23
  ),
 
24
  'log' => __( '%plural% interest rate payment', 'mycred' ),
25
  'min_balance' => 1,
26
+ 'exclude_ids' => '',
27
+ 'exclude_roles' => array()
28
  )
29
+ ), $service_prefs, $type );
30
+
31
+ add_action( 'mycred_bank_interest_comp' . $this->mycred_type, array( $this, 'do_compounding' ) );
32
+ add_action( 'mycred_bank_interest_pay' . $this->mycred_type, array( $this, 'do_interest_payout' ) );
33
  }
34
 
35
  /**
36
+ * Activate Service
37
+ * @since 1.5.2
38
  * @version 1.0
39
  */
40
+ public function activate() {
41
+
42
+ $this->save_last_run( 'compound' );
43
+ $this->save_last_run( 'payout' );
44
+
 
 
45
  }
46
 
47
  /**
48
+ * Deactivate Service
49
+ * @since 1.5.2
50
  * @version 1.0
51
  */
52
  public function deactivate() {
53
+
54
+ $option_id = 'mycred_bank_interest_comp' . $this->mycred_type;
55
+ $timestamp = wp_next_scheduled( $option_id );
56
  if ( $timestamp !== false )
57
+ wp_clear_scheduled_hook( $timestamp, $option_id );
58
 
59
+ $option_id = 'mycred_bank_interest_pay' . $this->mycred_type;
60
+ $timestamp = wp_next_scheduled( $option_id );
61
  if ( $timestamp !== false )
62
+ wp_clear_scheduled_hook( $timestamp, $option_id );
63
+
64
  }
65
+
66
  /**
67
+ * Run
 
 
68
  * @since 1.2
69
+ * @version 1.1
70
  */
71
+ public function run() {
 
 
 
 
 
 
72
 
73
+ // Time to compound interest?
74
+ $compound_rate = apply_filters( 'mycred_compound_interest', 'daily', $this );
75
+ $time_to_compound = $this->time_to_run( $compound_rate, $this->get_last_run( 'compound' ) );
76
+ if ( $time_to_compound ) {
77
+
78
+ // Get Work
79
+ $option_id = 'mycred_bank_interest_comp' . $this->mycred_type;
80
+ $work_marker = 'MYCRED_BANK_COMPOUND_' . $this->mycred_type;
81
+
82
+ $eligeble_users = $this->get_eligeble_users();
83
+
84
+ // Work to do?
85
+ if ( ! empty( $eligeble_users ) ) {
86
+
87
+ // Get current workload
88
+ $current_work = mycred_get_option( $option_id, false );
89
+
90
+ // Currently working?
91
+ if ( ! defined( $work_marker ) ) {
92
+
93
+ // Cron is scheduled?
94
+ if ( wp_next_scheduled( $option_id ) === false ) {
95
+ if ( $current_work === false )
96
+ mycred_update_option( $option_id, $eligeble_users );
97
+
98
+ wp_schedule_single_event( time(), $option_id );
99
+ }
100
+
101
+ // Work left to do?
102
+ elseif ( $current_work === false ) {
103
+
104
+ // Mark completed
105
+ $this->update_run_count( 'compound' );
106
+ $this->save_last_run( 'compound' );
107
+
108
+ }
109
+
110
+ }
111
+
112
+ }
113
+ else {
114
+
115
+ // Mark completed
116
+ $this->update_run_count( 'compound' );
117
+ $this->save_last_run( 'compound' );
118
+
119
+ }
120
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  }
122
+
123
+ // Time to Payout?
124
+ $time_to_payout = $this->time_to_run( $this->prefs['rate']['pay_out'], $this->get_last_run( 'payout' ) );
125
+ if ( $time_to_payout ) {
126
+
127
+ // Get Work
128
+ $option_id = 'mycred_bank_interest_pay' . $this->mycred_type;
129
+ $work_marker = 'MYCRED_BANK_COMPPAY_' . $this->mycred_type;
130
+
131
+ $eligeble_users = $this->get_eligeble_users_payout();
132
+
133
+ // Work to do?
134
+ if ( ! empty( $eligeble_users ) ) {
135
+
136
+ // Get current workload
137
+ $current_work = mycred_get_option( $option_id, false );
138
+
139
+ // Currently working?
140
+ if ( ! defined( $work_marker ) ) {
141
+
142
+ // Cron is scheduled?
143
+ if ( wp_next_scheduled( $option_id ) === false ) {
144
+ if ( $current_work === false )
145
+ mycred_update_option( $option_id, $eligeble_users );
146
+
147
+ wp_schedule_single_event( time(), $option_id );
148
+ }
149
+
150
+ // Work left to do?
151
+ elseif ( $current_work === false ) {
152
+
153
+ // Mark completed
154
+ $this->update_run_count( 'payout' );
155
+ $this->save_last_run( 'payout' );
156
+
157
+ }
158
+
159
+ }
160
+
161
+ }
162
+ else {
163
+
164
+ // Mark completed
165
+ $this->update_run_count( 'payout' );
166
+ $this->save_last_run( 'payout' );
167
+
168
+ }
169
+
170
  }
171
+
172
  }
173
 
174
  /**
175
+ * Do Interest Compounding
176
+ * @since 1.5.2
 
 
177
  * @version 1.0
178
  */
179
+ public function do_compounding() {
180
+
181
+ $work_marker = 'MYCRED_BANK_COMPOUND_' . $this->mycred_type;
182
+ define( $work_marker, time() );
183
+
184
+ $option_id = 'mycred_bank_interest_comp' . $this->mycred_type;
185
+ $current_work = mycred_get_option( $option_id, false );
186
+ if ( $current_work === false ) {
187
+ $this->update_run_count( 'compound' );
188
+ $this->save_last_run( 'compound' );
189
+ return;
 
 
 
 
 
 
 
190
  }
191
+
192
+ $work = $current_work;
193
+ foreach ( $current_work as $row => $user_id ) {
194
+
195
+ // Get users balance
196
+ $balance = mycred_get_user_meta( $user_id, $this->mycred_type );
197
+
198
+ // Get past interest to add up to
199
+ $past_interest = mycred_get_user_meta( $user_id, $this->mycred_type . '_comp' );
200
+ if ( $past_interest == '' ) $past_interest = 0;
201
+
202
+ // Get interest rate
203
+ $user_override = mycred_get_user_meta( $user_id, 'mycred_banking_rate_' . $this->mycred_type );
204
+ if ( $user_override != '' )
205
+ $rate = $user_override / 100;
206
+ else
207
+ $rate = $this->prefs['rate']['amount'] / 100;
208
+
209
+ // Period
210
+ $period = $this->prefs['rate']['period'] / $this->get_days_in_year();
211
+
212
+ // Compound
213
+ $interest = ( $balance + $past_interest ) * $rate * $period;
214
+ $interest = round( $interest, 2 );
215
+
216
+ // Save interest
217
+ mycred_update_user_meta( $user_id, $this->mycred_type . '_comp', '', $interest );
218
+
219
+ // Remove from workload
220
+ unset( $work[ $row ] );
221
+
222
+ if ( ! empty( $work ) )
223
+ mycred_update_option( $option_id, $work );
224
+ else {
225
+ mycred_delete_option( $option_id );
226
+ $this->update_run_count( 'compound' );
227
+ $this->save_last_run( 'compound' );
228
+ }
229
+
230
  }
231
+
232
  }
233
+
234
  /**
235
+ * Do Interest Payout
236
+ * @since 1.5.2
237
+ * @version 1.0
 
238
  */
239
+ public function do_interest_payout() {
240
+
241
+ $work_marker = 'MYCRED_BANK_COMPPAY_' . $this->mycred_type;
242
+ define( $work_marker, time() );
243
+
244
+ $option_id = 'mycred_bank_interest_pay' . $this->mycred_type;
245
+ $current_work = mycred_get_option( $option_id, false );
246
+ if ( $current_work === false ) {
247
+ $this->update_run_count( 'payout' );
248
+ $this->save_last_run( 'payout' );
249
+ return;
250
+ }
251
+
252
+ $now = date_i18n( 'U' );
253
+ $work = $current_work;
254
+ foreach ( $current_work as $row => $user_id ) {
255
+
256
+ // Get past interest to add up to
257
+ $accumulated_interest = mycred_get_user_meta( $user_id, $this->mycred_type . '_comp', '', true );
258
+ if ( $accumulated_interest != '' ) {
259
+
260
+ // Add a unique Payout ID
261
+ $data = array( 'payout_id' => $now . $user_id );
262
+
263
+ // Prevent duplicates
264
+ if ( ! $this->core->has_entry( 'interest', 0, $user_id, $data, $this->mycred_type ) )
265
+ $this->core->add_creds(
266
+ 'interest',
267
+ $user_id,
268
+ $accumulated_interest,
269
+ $this->prefs['log'],
270
+ 0,
271
+ $data,
272
+ $this->mycred_type
273
+ );
274
+
275
+ }
276
+
277
+ // Remove from workload
278
+ unset( $work[ $row ] );
279
+
280
+ if ( ! empty( $work ) )
281
+ mycred_update_option( $option_id, $work );
282
+ else {
283
+ mycred_delete_option( $option_id );
284
+ $this->update_run_count( 'payout' );
285
+ $this->save_last_run( 'payout' );
286
  }
287
+
288
  }
289
+
290
  }
291
 
292
  /**
293
+ * Get Eligeble User Payouts
294
+ * @since 1.5.2
295
+ * @version 1.0
 
 
296
  */
297
+ public function get_eligeble_users_payout() {
298
+
299
+ global $wpdb;
300
+
301
+ $key = $this->mycred_type . '_comp';
302
+ if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! $this->core->use_central_logging )
303
+ $key .= '_' . $GLOBALS['blog_id'];
304
+
305
+ $users = $wpdb->get_col( $wpdb->prepare( "
306
+ SELECT DISTINCT user_id
307
+ FROM {$wpdb->usermeta}
308
+ WHERE meta_key = %s;", $key ) );
309
+
310
+ if ( $users === NULL )
311
+ $users = array();
312
+
313
+ return $users;
314
+
 
 
 
 
 
 
315
  }
316
+
317
  /**
318
+ * Get Total Pending for Payout
319
+ * Returns the total amount of compounded interest that is currently
320
+ * pending to be paid out.
321
+ * @since 1.5.2
322
+ * @version 1.0
323
  */
324
+ public function get_total_pending_payout() {
325
+
326
+ global $wpdb;
327
+ $key = $this->mycred_type . '_comp';
328
+
329
+ $total = $wpdb->get_var( "
330
+ SELECT SUM( meta_value )
331
+ FROM {$wpdb->usermeta}
332
+ WHERE meta_key = '{$key}';" );
333
+
334
+ if ( $total === NULL )
335
+ $total = $this->core->zero();
336
+
337
+ return $total;
338
+
 
 
 
 
 
 
 
 
 
339
  }
340
+
341
  /**
342
+ * Get Total Payouts
343
+ * @since 1.5.2
344
+ * @version 1.0
 
 
345
  */
346
+ public function get_total_interest_payouts() {
347
+
348
+ global $wpdb;
349
+ $log = $this->core->log_table;
350
+
351
+ $total = $wpdb->get_var( "
352
+ SELECT SUM( creds )
353
+ FROM {$log}
354
+ WHERE ref = 'interest'
355
+ AND ctype = '{$this->mycred_type}';" );
356
+
357
+ if ( $total === NULL )
358
+ $total = $this->core->zero();
359
+
360
+ return $total;
361
+
362
  }
363
 
364
  /**
365
+ * Preference for interest rates
366
  * @since 1.2
367
+ * @version 1.3
368
  */
369
  public function preferences() {
370
+
371
+ $prefs = $this->prefs;
372
+ $editable_roles = array_reverse( get_editable_roles() );
373
+
374
+ // Inform user when compounding is running
375
+ $comp_work_marker = 'MYCRED_BANK_COMPOUND_' . $this->mycred_type;
376
+ if ( defined( $comp_work_marker ) ) :
377
+ $current_work = mycred_get_option( 'mycred_bank_interest_comp' . $this->mycred_type, false ); ?>
378
+
379
+ <p><strong><?php _e( 'Compounding Interest', 'mycred' ); ?></strong> <?php print_r( __( '%d Users are left to process.', 'mycred' ), count( $current_work ) ); ?></p>
380
+ <?php
381
+
382
+ endif;
383
+
384
+ $pay_count = $this->get_run_count( 'payout' );
385
+ $comp_count = $this->get_run_count( 'compound' );
386
+
387
+ ?>
388
+ <label class="subheader"><?php _e( 'Payout History', 'mycred' ); ?></label>
389
+ <ol class="inline">
390
+ <?php if ( $pay_count > 0 ) : ?>
391
+ <li style="min-width: 100px;">
392
+ <label><?php _e( 'Run Count', 'mycred' ); ?></label>
393
+ <div class="h2"><?php echo $pay_count; ?></div>
394
+ </li>
395
+ <?php endif; ?>
396
+ <li style="min-width: 200px;">
397
+ <label><?php if ( $pay_count > 0 ) _e( 'Last Payout', 'mycred' ); else _e( 'Activated', 'mycred' ); ?></label>
398
+ <div class="h2"><?php echo $this->display_last_run( 'payout' ); ?></div>
399
+ </li>
400
+ <li>
401
+ <label><?php _e( 'Total Payed Interest', 'mycred' ); ?></label>
402
+ <div class="h2"><?php echo $this->core->format_creds( $this->get_total_interest_payouts() ); ?></div>
403
+ </li>
404
+ </ol>
405
+ <label class="subheader"><?php _e( 'Compound History', 'mycred' ); ?></label>
406
+ <ol class="inline">
407
+ <?php if ( $comp_count > 0 ) : ?>
408
+ <li style="min-width: 100px;">
409
+ <label><?php _e( 'Run Count', 'mycred' ); ?></label>
410
+ <div class="h2"><?php echo $comp_count; ?></div>
411
+ </li>
412
+ <?php endif; ?>
413
+ <li style="min-width: 200px;">
414
+ <label><?php if ( $comp_count > 0 ) _e( 'Last Interest Compound', 'mycred' ); else _e( 'Activated', 'mycred' ); ?></label>
415
+ <div class="h2"><?php echo $this->display_last_run( 'compound' ); ?></div>
416
+ </li>
417
+ <li>
418
+ <label><?php _e( 'Total Compounded Interest', 'mycred' ); ?></label>
419
+ <div class="h2"><?php echo $this->core->format_creds( $this->get_total_pending_payout() ); ?></div>
420
+ </li>
421
+ </ol>
422
+ <label class="subheader"><?php _e( 'Interest Rate', 'mycred' ); ?></label>
423
+ <ol class="inline">
424
+ <li>
425
+ <label><?php _e( 'Default Rate', 'mycred' ); ?></label>
426
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'rate' => 'amount' ) ); ?>" id="<?php echo $this->field_id( array( 'rate' => 'amount' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['rate']['amount'] ); ?>" size="8" />%</div>
427
+ <span class="description"><?php _e( 'Can not be zero.', 'mycred' ); ?></span>
428
+ </li>
429
+ <li>
430
+ <label for="<?php echo $this->field_id( 'rate' ); ?>"><?php _e( 'Payout', 'mycred' ); ?></label><br />
431
+ <?php $this->timeframe_dropdown( array( 'rate' => 'pay_out' ), false, false ); ?>
432
+
433
+ </li>
434
+ </ol>
435
+ <label class="subheader"><?php _e( 'Log Template', 'mycred' ); ?></label>
436
+ <ol>
437
+ <li>
438
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo $prefs['log']; ?>" style="width: 65%;" /></div>
439
+ <span class="description"><?php echo $this->core->available_template_tags( array( 'general' ), '%timeframe%, %rate%, %base%' ); ?></span>
440
+ </li>
441
+ </ol>
442
+ <label class="subheader"><?php _e( 'Minimum Balance', 'mycred' ); ?></label>
443
+ <ol>
444
+ <li>
445
+ <div class="h2"><?php if ( $this->core->before != '' ) echo $this->core->before . ' '; ?><input type="text" name="<?php echo $this->field_name( 'min_balance' ); ?>" id="<?php echo $this->field_id( 'min_balance' ); ?>" value="<?php echo $this->core->format_number( $prefs['min_balance'] ); ?>" size="8" placeholder="<?php echo $this->core->zero(); ?>" /><?php if ( $this->core->after != '' ) echo ' ' . $this->core->after; ?></div>
446
+ <span class="description"><?php _e( 'Optional minimum balance requirement.', 'mycred' ); ?></span>
447
+ </li>
448
+ </ol>
449
+ <label class="subheader"><?php _e( 'Exclude', 'mycred' ); ?></label>
450
+ <ol>
451
+ <li>
452
+ <label><?php _e( 'Comma separated list of user IDs', 'mycred' ); ?></label>
453
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'exclude_ids' ); ?>" id="<?php echo $this->field_id( 'exclude_ids' ); ?>" value="<?php echo $prefs['exclude_ids']; ?>" class="long" /></div>
454
+ </li>
455
+ <li>
456
+ <label><?php _e( 'Roles', 'mycred' ); ?></label><br />
457
+
458
+ <?php
459
+
460
+ foreach ( $editable_roles as $role => $details ) {
461
+ $name = translate_user_role( $details['name'] );
462
+
463
+ echo '<label for="' . $this->field_id( 'exclude-roles-' . $role ) . '"><input type="checkbox" name="' . $this->field_name( 'exclude_roles][' ) . '" id="' . $this->field_id( 'exclude-roles-' . $role ) . '" value="' . esc_attr( $role ) . '"';
464
+ if ( in_array( $role, (array) $prefs['exclude_roles'] ) ) echo ' checked="checked"';
465
+ echo ' />' . $name . '</label><br />';
466
+ }
467
+
468
+ ?>
469
+
470
+ </li>
471
+ </ol>
472
+ <?php do_action( 'mycred_banking_compound_interest', $this ); ?>
473
+
474
  <?php
475
  }
476
 
477
  /**
478
  * Sanitise Preferences
479
  * @since 1.2
480
+ * @version 1.3
481
  */
482
  function sanitise_preferences( $post ) {
 
483
 
484
+ $new_settings = $post;
485
  $new_settings['rate']['amount'] = str_replace( ',', '.', trim( $post['rate']['amount'] ) );
 
486
  $new_settings['rate']['period'] = $this->get_days_in_year();
 
487
  $new_settings['rate']['pay_out'] = sanitize_text_field( $post['rate']['pay_out'] );
488
 
489
+ $new_settings['log'] = trim( $post['log'] );
490
  $new_settings['min_balance'] = str_replace( ',', '.', trim( $post['min_balance'] ) );
 
 
491
 
492
+ $new_settings['exclude_ids'] = sanitize_text_field( $post['exclude_ids'] );
493
 
494
+ if ( ! isset( $post['exclude_roles'] ) )
495
+ $post['exclude_roles'] = array();
496
+
497
+ $new_settings['exclude_roles'] = $post['exclude_roles'];
498
+ return apply_filters( 'mycred_banking_save_interest', $new_settings, $this );
499
 
 
500
  }
 
 
501
 
502
+ /**
503
+ * User Override
504
+ * @since 1.5.2
505
+ * @version 1.0
506
+ */
507
+ function user_override( $user = NULL, $type = 'mycred_default' ) {
508
+
509
+ $users_rate = mycred_get_user_meta( $user->ID, 'mycred_banking_rate_' . $type );
510
+ $excluded = $this->exclude_user( $user->ID ); ?>
511
+
512
+ <h3><?php _e( 'Compound Interest', 'mycred' ); ?></h3>
513
+
514
+ <?php
515
+
516
+ if ( $excluded == 'list' ) :
517
+
518
+ ?>
519
+
520
+ <table class="form-table">
521
+ <tr>
522
+ <td colspan="2"><?php _e( 'This user is excluded from receiving interest on this balance.', 'mycred' ); ?></td>
523
+ </tr>
524
+ <tr>
525
+ <td colspan="2"><?php submit_button( __( 'Remove from Excluded List', 'mycred' ), 'primary medium', 'mycred_include_users_interest_rate', false ); ?></td>
526
+ </tr>
527
+ </table>
528
+
529
+ <?php
530
+
531
+ elseif ( $excluded == 'role' ) :
532
+
533
+ ?>
534
+
535
+ <table class="form-table">
536
+ <tr>
537
+ <td colspan="2"><?php _e( 'This user role is excluded from receiving interest on this balance.', 'mycred' ); ?></td>
538
+ </tr>
539
+ </table>
540
+
541
+ <?php
542
+
543
+ else :
544
+
545
+ ?>
546
+
547
+ <table class="form-table">
548
+ <tr>
549
+ <th scope="row"><?php _e( 'Interest Rate', 'mycred' ); ?></th>
550
+ <td>
551
+ <input type="text" name="mycred_adjust_users_interest_rate" id="mycred-adjust-users-interest-rate" value="<?php echo $users_rate; ?>" placeholder="<?php echo $this->prefs['rate']['amount']; ?>" size="8" /> %<br />
552
+ <span class="description"><?php _e( 'Leave empty to use the default value.', 'mycred' ); ?></span>
553
+ </td>
554
+ </tr>
555
+ <tr>
556
+ <th scope="row"></th>
557
+ <td>
558
+ <?php submit_button( __( 'Save Interest Rate', 'mycred' ), 'primary medium', 'mycred_adjust_users_interest_rate_run', false ); ?>
559
+ <?php submit_button( __( 'Exclude from receiving interest', 'mycred' ), 'primary medium', 'mycred_exclude_users_interest_rate', false ); ?>
560
+ </td>
561
+ </tr>
562
+ </table>
563
+ <?php
564
+ endif;
565
+
566
+ }
567
+
568
+ /**
569
+ * Save User Override
570
+ * @since 1.5.2
571
+ * @version 1.0
572
+ */
573
+ function save_user_override() {
574
+
575
+ $ctype = sanitize_key( $_GET['ctype'] );
576
+ $user_id = absint( $_GET['user_id'] );
577
+
578
+ // Save interest rate
579
+ if ( isset( $_POST['mycred_adjust_users_interest_rate_run'] ) && isset( $_POST['mycred_adjust_users_interest_rate'] ) ) {
580
+
581
+ $rate = $_POST['mycred_adjust_users_interest_rate'];
582
+ if ( $rate != '' ) {
583
+ if ( isfloat( $rate ) )
584
+ $rate = (float) $rate;
585
+ else
586
+ $rate = (int) $rate;
587
+
588
+ mycred_update_user_meta( $user_id, 'mycred_banking_rate_' . $ctype, '', $rate );
589
+ }
590
+ else {
591
+ mycred_delete_user_meta( $user_id, 'mycred_banking_rate_' . $ctype );
592
+ }
593
+
594
+ wp_safe_redirect( add_query_arg( array( 'result' => 'banking_interest_rate' ) ) );
595
+ exit;
596
+
597
+ }
598
+
599
+ // Exclude
600
+ elseif ( isset( $_POST['mycred_exclude_users_interest_rate'] ) ) {
601
+
602
+ $excluded = explode( ',', $this->prefs['exclude_ids'] );
603
+ $clean_ids = array();
604
+ if ( ! empty( $excluded ) ) {
605
+ foreach ( $excluded as $id ) {
606
+ if ( $id == 0 ) continue;
607
+ $clean_ids[] = (int) trim( $id );
608
+ }
609
+ }
610
+
611
+ if ( ! in_array( $user_id, $clean_ids ) && $user_id != 0 )
612
+ $clean_ids[] = $user_id;
613
+
614
+ $option_id = 'mycred_pref_bank';
615
+ if ( ! $this->is_main_type )
616
+ $option_id .= '_' . $ctype;
617
+
618
+ $data = mycred_get_option( $option_id );
619
+ $data['service_prefs'][ $this->id ]['exclude_ids'] = implode( ',', $clean_ids );
620
+
621
+ mycred_update_option( $option_id, $data );
622
+
623
+ wp_safe_redirect( add_query_arg( array( 'result' => 'banking_interest_excluded' ) ) );
624
+ exit;
625
+
626
+ }
627
+
628
+ // Include
629
+ elseif ( isset( $_POST['mycred_include_users_interest_rate'] ) ) {
630
+
631
+ $excluded = explode( ',', $this->prefs['exclude_ids'] );
632
+ if ( ! empty( $excluded ) ) {
633
+ $clean_ids = array();
634
+ foreach ( $excluded as $id ) {
635
+ $clean_id = (int) trim( $id );
636
+ if ( $clean_id != $user_id && $user_id != 0 )
637
+ $clean_ids[] = $clean_id;
638
+ }
639
+
640
+ $option_id = 'mycred_pref_bank';
641
+ if ( ! $this->is_main_type )
642
+ $option_id .= '_' . $ctype;
643
+
644
+ $data = mycred_get_option( $option_id );
645
+ $data['service_prefs'][ $this->id ]['exclude_ids'] = implode( ',', $clean_ids );
646
+
647
+ mycred_update_option( $option_id, $data );
648
+
649
+ wp_safe_redirect( add_query_arg( array( 'result' => 'banking_interest_included' ) ) );
650
+ exit;
651
+ }
652
+
653
+ }
654
+
655
+ }
656
+
657
+ /**
658
+ * User Override Notice
659
+ * @since 1.5.2
660
+ * @version 1.0
661
+ */
662
+ function user_override_notice() {
663
+
664
+ if ( isset( $_GET['page'] ) && $_GET['page'] == 'mycred-edit-balance' && isset( $_GET['result'] ) ) {
665
+
666
+ if ( $_GET['result'] == 'banking_interest_rate' )
667
+ echo '<div class="updated"><p>' . __( 'Compound interest rate saved.', 'mycred' ) . '</p></div>';
668
+ elseif ( $_GET['result'] == 'banking_interest_excluded' )
669
+ echo '<div class="updated"><p>' . __( 'User excluded from receiving interest.', 'mycred' ) . '</p></div>';
670
+ elseif ( $_GET['result'] == 'banking_interest_included' )
671
+ echo '<div class="updated"><p>' . __( 'User included in receiving interest.', 'mycred' ) . '</p></div>';
672
+
673
+ }
674
+
675
+ }
676
+
677
+ }
678
+ endif;
679
  ?>
addons/banking/services/mycred-bank-service-payouts.php CHANGED
@@ -2,268 +2,323 @@
2
  /**
3
  * myCRED Bank Service - Recurring Payouts
4
  * @since 1.2
5
- * @version 1.1
6
  */
7
- if ( !defined( 'myCRED_VERSION' ) ) exit;
8
 
9
- if ( !class_exists( 'myCRED_Banking_Service_Payouts' ) ) {
10
  class myCRED_Banking_Service_Payouts extends myCRED_Service {
11
 
12
  /**
13
  * Construct
14
  */
15
- function __construct( $service_prefs ) {
16
  parent::__construct( array(
17
  'id' => 'payouts',
18
  'defaults' => array(
19
- 'amount' => 10,
20
- 'rate' => 'daily',
21
- 'log' => __( 'Daily %_plural%', 'mycred' ),
22
- 'excludes' => '',
23
- 'cycles' => 0,
24
- 'last_run' => '',
25
- 'run_time' => 60
26
  )
27
- ), $service_prefs );
 
 
28
  }
29
 
30
  /**
31
- * Run
32
- * @since 1.2
33
  * @version 1.0
34
  */
35
- public function run() {
36
- add_action( 'wp_loaded', array( $this, 'process' ) );
37
- add_action( 'mycred_banking_recurring_payout', array( $this, 'do_payouts' ) );
38
- add_action( 'mycred_banking_do_batch', array( $this, 'do_payout_batch' ), 10, 3 );
39
  }
40
 
41
  /**
42
  * Deactivation
43
  * @since 1.2
44
- * @version 1.0
45
  */
46
  public function deactivate() {
 
47
  // Unschedule payouts
48
- wp_clear_scheduled_hook( 'mycred_banking_recurring_payout' );
 
49
  }
50
 
51
  /**
52
- * Process
53
- * Determines if we should run a payout or not.
54
  * @since 1.2
55
  * @version 1.1
56
  */
57
- public function process() {
58
- // Get cycles
59
- $cycles = (int) $this->prefs['cycles'];
60
- // Zero cycles left, bail
61
- if ( $cycles == 0 ) return;
62
-
63
- // No amount = no payout
64
- if ( !isset( $this->prefs['amount'] ) || $this->prefs['amount'] == 0 ) return;
65
-
66
- $unow = date_i18n( 'U' );
67
- $now = $this->get_now( $this->prefs['rate'] );
68
- // No last run, save now as last run
69
- if ( empty( $this->prefs['last_run'] ) || $this->prefs['last_run'] === NULL ) {
70
- $last_run = $this->get_last_run( $unow, $this->prefs['rate'] );
71
- $this->save( $unow, $cycles );
72
- }
73
- // Last run
74
- else {
75
- $last_run = $this->get_last_run( $this->prefs['last_run'], $this->prefs['rate'] );
76
- }
77
- // If now or last run returns false bail
78
- if ( $now === false || $last_run === false ) return;
79
-
80
- // Is it time to run?
81
- if ( $this->time_to_run( $this->prefs['rate'], $last_run ) ) {
82
- // Cycles (-1 means no limit)
83
- if ( $cycles > 0-1 ) {
84
- $cycles = $cycles-1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  }
86
- // Save
87
- $this->save( $unow, $cycles );
88
 
89
- // Schedule payouts
90
- if ( wp_next_scheduled( 'mycred_banking_recurring_payout', array( $cycles ) ) === false )
91
- wp_schedule_single_event( time(), 'mycred_banking_recurring_payout', array( $cycles ) );
92
- }
93
- }
94
 
95
- /**
96
- * Payout
97
- * In this first step, we start by gathering all user ID's.
98
- * If the amount is higher then our threshold, we split up the ID's
99
- * into batches and schedule then seperate. This is due to the maximum
100
- * execution limit which will not be enough to handle a lot of users in one go.
101
- * @since 1.2
102
- * @version 1.1
103
- */
104
- public function do_payouts( $cycle = NULL ) {
105
- // Make sure to clear any stray schedules to prevent duplicates
106
- wp_clear_scheduled_hook( 'mycred_banking_recurring_payout' );
107
-
108
- // Query
109
- $users = $this->get_users();
110
- $total = count( $users );
111
- $threshold = (int) apply_filters( 'mycred_do_banking_limit', 2000 );
112
-
113
- // If we are over the threshold we need to batch
114
- if ( (int) $total > $threshold ) {
115
- $batches = array_chunk( $users, $threshold );
116
- $time = time();
117
-
118
- $set = 0;
119
- foreach ( $batches as $batch_id => $batch ) {
120
- $set = $set+1;
121
- // Run time = current time + 60 seconds for each set
122
- $run_time = ( $time + ( 60*$set ) );
123
- if ( wp_next_scheduled( $run_time, 'mycred_banking_do_batch', array( $batch, $set, $cycle ) ) === false )
124
- wp_schedule_single_event( $run_time, 'mycred_banking_do_batch', array( $batch, $set, $cycle ) );
125
  }
126
- set_transient( 'mycred_banking_num_payout_batches', $set, HOUR_IN_SECONDS );
127
- }
128
- // Run single batch now
129
- else {
130
- $this->do_payout_batch( $users, NULL, $cycle );
131
  }
 
132
  }
133
-
134
  /**
135
- * Do Batch
136
- * Applies points to a batch of user ID's. This is also where we check for exclusions.
137
- * @since 1.2
138
- * @version 1.2.1
139
  */
140
- public function do_payout_batch( $batch, $set = NULL, $cycle = NULL ) {
141
- if ( !empty( $batch ) && is_array( $batch ) ) {
 
 
 
 
 
 
 
 
 
 
 
142
 
143
- set_time_limit( $this->prefs['run_time'] );
 
 
144
 
145
- foreach ( $batch as $user_id ) {
146
- $user_id = intval( $user_id );
147
 
148
- // Add / Deduct points
149
- $this->core->update_users_balance( $user_id, $this->prefs['amount'] );
150
- $this->core->add_to_log(
151
- 'payout',
152
  $user_id,
153
  $this->prefs['amount'],
154
- $this->prefs['log']
 
 
 
155
  );
 
 
 
 
 
 
 
 
 
 
 
156
  }
157
- // If multiple sets, check if this is the last one to deactivate
158
- if ( $set !== NULL ) {
159
- $total = get_transient( 'mycred_banking_num_payout_batches' );
160
- if ( $total !== false && $set == $total ) {
161
- delete_transient( 'mycred_banking_num_payout_batches' );
162
-
163
- if ( $cycle == 0 )
164
- $this->save( date_i18n( 'U' ), 0, true );
165
- }
166
- }
167
- // Single set, check if cycle is zero to deactivate
168
- elseif ( $set === NULL && $cycle == 0 )
169
- $this->save( date_i18n( 'U' ), 0, true );
170
  }
 
171
  }
172
 
173
  /**
174
- * Save
175
- * Saves the last run and the number of cycles run.
176
- * @since 1.2
177
- * @version 1.1.1
178
  */
179
- public function save( $now = 0, $cycles = 0, $deactivate = false ) {
180
- // Update last run
181
- $this->prefs['last_run'] = $now;
182
- // Update cycles count
183
- $this->prefs['cycles'] = $cycles;
184
-
185
- // Get Bank settings
186
- $bank = get_option( 'mycred_pref_bank' );
187
-
188
- // Update settings
189
- $bank['service_prefs'][ $this->id ] = $this->prefs;
190
-
191
- // Deactivate this service if this is the last run
192
- if ( $cycles == 0 && $deactivate ) {
193
- // Should return the service id as a key for us to unset
194
- if ( ( $key = array_search( $this->id, $bank['active'] ) ) !== false ) {
195
- unset( $bank['active'][ $key ] );
 
 
 
 
 
 
 
 
 
196
  }
 
 
 
 
197
  }
198
 
199
- // Save new settings
200
- update_option( 'mycred_pref_bank', $bank );
201
  }
202
 
203
  /**
204
- * Preference for Savings
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
205
  * @since 1.2
206
  * @version 1.1
207
  */
208
  public function preferences() {
209
  $prefs = $this->prefs;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
 
211
- // Last run
212
- $last_run = $prefs['last_run'];
213
- if ( empty( $last_run ) )
214
- $last_run = __( 'Not yet run', 'mycred' );
215
- else
216
- $last_run = date_i18n( get_option( 'date_format' ) . ' : ' . get_option( 'time_format' ), $last_run ); ?>
217
-
218
-
219
- <label class="subheader"><?php _e( 'Pay Users', 'mycred' ); ?></label>
220
- <ol class="inline">
221
- <li>
222
- <label><?php _e( 'Amount', 'mycred' ); ?></label>
223
- <div class="h2"><?php if ( !empty( $this->core->before ) ) echo $this->core->before . ' '; ?><input type="text" name="<?php echo $this->field_name( 'amount' ); ?>" id="<?php echo $this->field_id( 'amount' ); ?>" value="<?php echo $this->core->format_number( $prefs['amount'] ); ?>" size="8" /><?php if ( !empty( $this->core->after ) ) echo ' ' . $this->core->after; ?></div>
224
- <span class="description"><?php _e( 'Can not be zero.', 'mycred' ); ?></span>
225
- <input type="hidden" name="<?php echo $this->field_name( 'last_run' ); ?>" value="<?php echo $prefs['last_run']; ?>" />
226
- </li>
227
- <li>
228
- <label for="<?php echo $this->field_id( 'rate' ); ?>"><?php _e( 'Interval', 'mycred' ); ?></label><br />
229
- <?php $this->timeframe_dropdown( 'rate', false ); ?>
230
-
231
- </li>
232
- <li>
233
- <label><?php _e( 'Cycles', 'mycred' ); ?></label>
234
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'cycles' ); ?>" id="<?php echo $this->field_id( 'cycles' ); ?>" value="<?php echo $prefs['cycles']; ?>" size="8" /></div>
235
- <span class="description"><?php _e( 'Set to -1 for unlimited', 'mycred' ); ?></span>
236
- </li>
237
- <li>
238
- <label><?php _e( 'Last Run / Activated', 'mycred' ); ?></label><br />
239
- <div class="h2"><?php echo $last_run; ?></div>
240
- </li>
241
- <li class="block"><strong><?php _e( 'Interval', 'mycred' ); ?></strong><br /><?php echo $this->core->template_tags_general( __( 'Select how often you want to award %_plural%. Note that when this service is enabled, the first payout will be in the beginning of the next period. So with a "Daily" interval, the first payout will occur first thing in the morning.', 'mycred' ) ); ?></li>
242
- <li class="block"><strong><?php _e( 'Cycles', 'mycred' ); ?></strong><br /><?php _e( 'Cycles let you choose how many intervals this service should run. Each time a cycle runs, the value will decrease until it hits zero, in which case this service will deactivate itself. Use -1 to run unlimited times.', 'mycred' ); ?></li>
243
- <li class="block"><strong><?php _e( 'Important', 'mycred' ); ?></strong><br /><?php _e( 'You can always stop payouts by deactivating this service. Just remember that if you deactivate while there are cycles left, this service will continue on when it gets re-activated. Set cycles to zero to reset.', 'mycred' ); ?></li>
244
- </ol>
245
- <label class="subheader" for="<?php echo $this->field_id( 'excludes' ); ?>"><?php _e( 'Excludes', 'mycred' ); ?></label>
246
- <ol>
247
- <li>
248
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'excludes' ); ?>" id="<?php echo $this->field_id( 'excludes' ); ?>" value="<?php echo $prefs['excludes']; ?>" style="width: 65%;" /></div>
249
- <span class="description"><?php _e( 'Comma separated list of user IDs to exclude from this service. No spaces allowed!', 'mycred' ); ?></span>
250
- </li>
251
- </ol>
252
- <label class="subheader" for="<?php echo $this->field_id( 'log' ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
253
- <ol>
254
- <li>
255
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo $prefs['log']; ?>" style="width: 65%;" /></div>
256
- <span class="description"><?php echo $this->core->available_template_tags( array( 'general' ) ); ?></span>
257
- </li>
258
- </ol>
259
- <label class="subheader" for="<?php echo $this->field_id( 'run_time' ); ?>"><?php _e( 'Run Time', 'mycred' ); ?></label>
260
- <ol>
261
- <li>
262
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'run_time' ); ?>" id="<?php echo $this->field_id( 'run_time' ); ?>" value="<?php echo $prefs['run_time']; ?>" size="4" /></div>
263
- <span class="description"><?php _e( 'For large websites, if you are running into time out issues during payouts, you can set the number of seconds a process can run. Use zero for unlimited, but be careful especially if you are on a shared server.', 'mycred' ); ?></span>
264
- </li>
265
- </ol>
266
- <?php do_action( 'mycred_banking_recurring_payouts', $this->prefs ); ?>
267
  <?php
268
  }
269
 
@@ -273,36 +328,24 @@ if ( !class_exists( 'myCRED_Banking_Service_Payouts' ) ) {
273
  * @version 1.1
274
  */
275
  function sanitise_preferences( $post ) {
276
- // Amount
277
- $new_settings['amount'] = trim( $post['amount'] );
278
 
279
- // Rate
 
280
  $new_settings['rate'] = sanitize_text_field( $post['rate'] );
281
-
282
- // Cycles
283
  $new_settings['cycles'] = sanitize_text_field( $post['cycles'] );
284
 
285
- // Last Run
286
- $new_settings['last_run'] = $post['last_run'];
287
- $current_cycles = $this->prefs['cycles'];
288
- // Moving from -1 or 0 to any higher number indicates a new start. In these cases, we will
289
- // reset the last run timestamp to prevent this service from running right away.
290
- if ( ( $current_cycles == 0 || $current_cycles == 0-1 ) && $new_settings['cycles'] > 0 )
291
- $new_settings['last_run'] = '';
292
 
293
- // Excludes
294
- $excludes = str_replace( ' ', '', $post['excludes'] );
295
- $new_settings['excludes'] = sanitize_text_field( $excludes );
296
 
297
- // Log
298
- $new_settings['log'] = trim( $post['log'] );
299
 
300
- // Run Time
301
- $post['run_time'] = abs( $post['run_time'] );
302
- $new_settings['run_time'] = sanitize_text_field( $post['run_time'] );
303
 
304
- return apply_filters( 'mycred_banking_save_recurring', $new_settings, $this->prefs );
305
  }
306
  }
307
- }
308
  ?>
2
  /**
3
  * myCRED Bank Service - Recurring Payouts
4
  * @since 1.2
5
+ * @version 1.2
6
  */
7
+ if ( ! defined( 'myCRED_VERSION' ) ) exit;
8
 
9
+ if ( ! class_exists( 'myCRED_Banking_Service_Payouts' ) ) :
10
  class myCRED_Banking_Service_Payouts extends myCRED_Service {
11
 
12
  /**
13
  * Construct
14
  */
15
+ function __construct( $service_prefs, $type = 'mycred_default' ) {
16
  parent::__construct( array(
17
  'id' => 'payouts',
18
  'defaults' => array(
19
+ 'amount' => 10,
20
+ 'rate' => 'daily',
21
+ 'log' => __( 'Daily %_plural%', 'mycred' ),
22
+ 'cycles' => 0,
23
+ 'min_balance' => 1,
24
+ 'exclude_ids' => '',
25
+ 'exclude_roles' => array()
26
  )
27
+ ), $service_prefs, $type );
28
+
29
+ add_action( 'mycred_bank_recurring_pay' . $this->mycred_type, array( $this, 'do_masspayout' ) );
30
  }
31
 
32
  /**
33
+ * Activate Service
34
+ * @since 1.5.2
35
  * @version 1.0
36
  */
37
+ public function activate() {
38
+
39
+ $this->save_last_run( 'masspayout' );
40
+
41
  }
42
 
43
  /**
44
  * Deactivation
45
  * @since 1.2
46
+ * @version 1.0.1
47
  */
48
  public function deactivate() {
49
+
50
  // Unschedule payouts
51
+ wp_clear_scheduled_hook( 'mycred_bank_recurring_pay' . $this->mycred_type );
52
+
53
  }
54
 
55
  /**
56
+ * Run
 
57
  * @since 1.2
58
  * @version 1.1
59
  */
60
+ public function run() {
61
+
62
+ // Max Cycles
63
+ if ( $this->prefs['cycles'] == 0 ) return;
64
+
65
+ // Time to Payout?
66
+ $time_to_payout = $this->time_to_run( $this->prefs['rate'], $this->get_last_run( 'masspayout' ) );
67
+ if ( $time_to_payout ) {
68
+
69
+ // Get Work
70
+ $option_id = 'mycred_bank_recurring_pay' . $this->mycred_type;
71
+ $work_marker = 'MYCRED_BANK_RECPAY_' . $this->mycred_type;
72
+
73
+ $eligeble_users = $this->get_eligeble_users();
74
+
75
+ // Work to do?
76
+ if ( ! empty( $eligeble_users ) ) {
77
+
78
+ // Get current workload
79
+ $current_work = mycred_get_option( $option_id, false );
80
+
81
+ // Currently working?
82
+ if ( ! defined( $work_marker ) ) {
83
+
84
+ // Cron is scheduled?
85
+ if ( wp_next_scheduled( $option_id ) === false ) {
86
+ if ( $current_work === false )
87
+ mycred_update_option( $option_id, $eligeble_users );
88
+
89
+ wp_schedule_single_event( time(), $option_id );
90
+ }
91
+
92
+ // Work left to do?
93
+ elseif ( $current_work === false ) {
94
+
95
+ // Mark completed
96
+ $this->update_run_count( 'masspayout' );
97
+ $this->save_last_run( 'masspayout' );
98
+ $this->update_cycles();
99
+
100
+ }
101
+
102
+ }
103
+
104
  }
105
+ else {
 
106
 
107
+ // Mark completed
108
+ $this->update_run_count( 'masspayout' );
109
+ $this->save_last_run( 'masspayout' );
110
+ $this->update_cycles();
 
111
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  }
113
+
 
 
 
 
114
  }
115
+
116
  }
117
+
118
  /**
119
+ * Do Payout
120
+ * @since 1.5.2
121
+ * @version 1.0
 
122
  */
123
+ public function do_masspayout() {
124
+
125
+ $work_marker = 'MYCRED_BANK_RECPAY_' . $this->mycred_type;
126
+ define( $work_marker, time() );
127
+
128
+ $option_id = 'mycred_bank_recurring_pay' . $this->mycred_type;
129
+ $current_work = mycred_get_option( $option_id, false );
130
+ if ( $current_work === false ) {
131
+ $this->update_run_count( 'masspayout' );
132
+ $this->save_last_run( 'masspayout' );
133
+ $this->update_cycles();
134
+ return;
135
+ }
136
 
137
+ $now = date_i18n( 'U' );
138
+ $work = $current_work;
139
+ foreach ( $current_work as $row => $user_id ) {
140
 
141
+ // Add a unique Payout ID
142
+ $data = array( 'payout_id' => $now . $user_id );
143
 
144
+ // Prevent duplicates
145
+ if ( ! $this->core->has_entry( 'interest', 0, $user_id, $data, $this->mycred_type ) )
146
+ $this->core->add_creds(
147
+ 'recurring_payout',
148
  $user_id,
149
  $this->prefs['amount'],
150
+ $this->prefs['log'],
151
+ 0,
152
+ $data,
153
+ $this->mycred_type
154
  );
155
+
156
+ // Remove from workload
157
+ unset( $work[ $row ] );
158
+
159
+ if ( ! empty( $work ) )
160
+ mycred_update_option( $option_id, $work );
161
+ else {
162
+ mycred_delete_option( $option_id );
163
+ $this->update_run_count( 'masspayout' );
164
+ $this->save_last_run( 'masspayout' );
165
+ $this->update_cycles();
166
  }
167
+
 
 
 
 
 
 
 
 
 
 
 
 
168
  }
169
+
170
  }
171
 
172
  /**
173
+ * Update Cycles
174
+ * @since 1.5.2
175
+ * @version 1.0
 
176
  */
177
+ public function update_cycles() {
178
+
179
+ // Manage cycles if it's not set to unlimited
180
+ if ( $this->prefs['cycles'] != '-1' && $this->prefs['cycles'] != 0 ) {
181
+
182
+ // Prep option id for this addon.
183
+ $option_id = 'mycred_pref_bank';
184
+ if ( ! $this->is_main_type )
185
+ $option_id .= '_' . $this->mycred_type;
186
+
187
+ // Get addon settings
188
+ $addon = mycred_get_option( $option_id );
189
+
190
+ // Deduct cycle
191
+ $current_cycle = (int) $this->prefs['cycles'];
192
+ $current_cycle --;
193
+ $addon['service_prefs'][ $this->id ]['cycles'] = $current_cycle;
194
+
195
+ // If we reach zero, disable this service
196
+ if ( $current_cycle == 0 && in_array( $this->id, $addon['active'] ) ) {
197
+ $new_active = array();
198
+ foreach ( $addon['active'] as $active ) {
199
+ if ( $active == $this->id || in_array( $active, $new_active ) ) continue;
200
+ $new_active[] = $active;
201
+ }
202
+ $addon['active'] = $new_active;
203
  }
204
+
205
+ // Update settings
206
+ mycred_update_option( $option_id, $addon );
207
+
208
  }
209
 
 
 
210
  }
211
 
212
  /**
213
+ * Get Total Payed out
214
+ * @since 1.5.2
215
+ * @version 1.0
216
+ */
217
+ public function get_total_payedout() {
218
+
219
+ global $wpdb;
220
+ $log = $this->core->log_table;
221
+
222
+ $total = $wpdb->get_var( "
223
+ SELECT SUM( creds )
224
+ FROM {$log}
225
+ WHERE ref = 'recurring_payout'
226
+ AND ctype = '{$this->mycred_type}';" );
227
+
228
+ if ( $total === NULL )
229
+ $total = $this->core->zero();
230
+
231
+ return $total;
232
+
233
+ }
234
+
235
+ /**
236
+ * Preference for recurring payouts
237
  * @since 1.2
238
  * @version 1.1
239
  */
240
  public function preferences() {
241
  $prefs = $this->prefs;
242
+ $editable_roles = array_reverse( get_editable_roles() );
243
+ $pay_count = $this->get_run_count( 'masspayout' ); ?>
244
+
245
+ <label class="subheader"><?php _e( 'History', 'mycred' ); ?></label>
246
+ <ol class="inline">
247
+ <?php if ( $pay_count > 0 ) : ?>
248
+ <li style="min-width: 100px;">
249
+ <label><?php _e( 'Run Count', 'mycred' ); ?></label>
250
+ <div class="h2"><?php echo $pay_count; ?></div>
251
+ </li>
252
+ <?php endif; ?>
253
+ <li style="min-width: 200px;">
254
+ <label><?php _e( 'Last Run', 'mycred' ); ?></label>
255
+ <div class="h2"><?php echo $this->display_last_run( 'masspayout' ); ?></div>
256
+ </li>
257
+ <li>
258
+ <label><?php _e( 'Total Payouts', 'mycred' ); ?></label>
259
+ <div class="h2"><?php echo $this->core->format_creds( $this->get_total_payedout() ); ?></div>
260
+ </li>
261
+ </ol>
262
+ <label class="subheader"><?php _e( 'Pay Users', 'mycred' ); ?></label>
263
+ <ol class="inline">
264
+ <li>
265
+ <label><?php _e( 'Amount', 'mycred' ); ?></label>
266
+ <div class="h2"><?php if ( !empty( $this->core->before ) ) echo $this->core->before . ' '; ?><input type="text" name="<?php echo $this->field_name( 'amount' ); ?>" id="<?php echo $this->field_id( 'amount' ); ?>" value="<?php echo $this->core->format_number( $prefs['amount'] ); ?>" size="8" /><?php if ( !empty( $this->core->after ) ) echo ' ' . $this->core->after; ?></div>
267
+ <span class="description"><?php _e( 'Can not be zero.', 'mycred' ); ?></span>
268
+ </li>
269
+ <li>
270
+ <label for="<?php echo $this->field_id( 'rate' ); ?>"><?php _e( 'Interval', 'mycred' ); ?></label><br />
271
+ <?php $this->timeframe_dropdown( 'rate', false ); ?>
272
+
273
+ </li>
274
+ <li>
275
+ <label><?php _e( 'Cycles', 'mycred' ); ?></label>
276
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'cycles' ); ?>" id="<?php echo $this->field_id( 'cycles' ); ?>" value="<?php echo $prefs['cycles']; ?>" size="8" /></div>
277
+ <span class="description"><?php _e( 'Set to -1 for unlimited', 'mycred' ); ?></span>
278
+ </li>
279
+ <li>
280
+ <li class="block"><strong><?php _e( 'Important', 'mycred' ); ?></strong><br /><?php _e( 'You can always stop payouts by deactivating this service. Just remember that if you deactivate while there are cycles left, this service will continue on when it gets re-activated. Set cycles to zero to reset.', 'mycred' ); ?></li>
281
+ </ol>
282
+ <label class="subheader" for="<?php echo $this->field_id( 'log' ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
283
+ <ol>
284
+ <li>
285
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo $prefs['log']; ?>" style="width: 65%;" /></div>
286
+ <span class="description"><?php echo $this->core->available_template_tags( array( 'general' ) ); ?></span>
287
+ </li>
288
+ </ol>
289
+ <label class="subheader"><?php _e( 'Minimum Balance', 'mycred' ); ?></label>
290
+ <ol>
291
+ <li>
292
+ <div class="h2"><?php if ( $this->core->before != '' ) echo $this->core->before . ' '; ?><input type="text" name="<?php echo $this->field_name( 'min_balance' ); ?>" id="<?php echo $this->field_id( 'min_balance' ); ?>" value="<?php echo $this->core->format_number( $prefs['min_balance'] ); ?>" size="8" placeholder="<?php echo $this->core->zero(); ?>" /><?php if ( $this->core->after != '' ) echo ' ' . $this->core->after; ?></div>
293
+ <span class="description"><?php _e( 'Optional minimum balance requirement.', 'mycred' ); ?></span>
294
+ </li>
295
+ </ol>
296
+ <label class="subheader"><?php _e( 'Exclude', 'mycred' ); ?></label>
297
+ <ol>
298
+ <li>
299
+ <label><?php _e( 'Comma separated list of user IDs', 'mycred' ); ?></label>
300
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'exclude_ids' ); ?>" id="<?php echo $this->field_id( 'exclude_ids' ); ?>" value="<?php echo $prefs['exclude_ids']; ?>" class="long" /></div>
301
+ </li>
302
+ <li>
303
+ <label><?php _e( 'Roles', 'mycred' ); ?></label><br />
304
+
305
+ <?php
306
+
307
+ foreach ( $editable_roles as $role => $details ) {
308
+ $name = translate_user_role( $details['name'] );
309
+
310
+ echo '<label for="' . $this->field_id( 'exclude-roles-' . $role ) . '"><input type="checkbox" name="' . $this->field_name( 'exclude_roles][' ) . '" id="' . $this->field_id( 'exclude-roles-' . $role ) . '" value="' . esc_attr( $role ) . '"';
311
+ if ( in_array( $role, (array) $prefs['exclude_roles'] ) ) echo ' checked="checked"';
312
+ echo ' />' . $name . '</label><br />';
313
+ }
314
+
315
+ ?>
316
+
317
+ </li>
318
+ </ol>
319
+
320
+ <?php do_action( 'mycred_banking_recurring_payouts', $this ); ?>
321
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
322
  <?php
323
  }
324
 
328
  * @version 1.1
329
  */
330
  function sanitise_preferences( $post ) {
 
 
331
 
332
+ $new_settings = $post;
333
+ $new_settings['amount'] = trim( $post['amount'] );
334
  $new_settings['rate'] = sanitize_text_field( $post['rate'] );
 
 
335
  $new_settings['cycles'] = sanitize_text_field( $post['cycles'] );
336
 
337
+ $new_settings['log'] = trim( $post['log'] );
338
+ $new_settings['min_balance'] = str_replace( ',', '.', trim( $post['min_balance'] ) );
 
 
 
 
 
339
 
340
+ $new_settings['exclude_ids'] = sanitize_text_field( $post['exclude_ids'] );
 
 
341
 
342
+ if ( ! isset( $post['exclude_roles'] ) )
343
+ $post['exclude_roles'] = array();
344
 
345
+ $new_settings['exclude_roles'] = $post['exclude_roles'];
346
+ return apply_filters( 'mycred_banking_save_recurring', $new_settings, $this );
 
347
 
 
348
  }
349
  }
350
+ endif;
351
  ?>
addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php CHANGED
@@ -1495,7 +1495,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
1495
  /**
1496
  * Complete Payment
1497
  * @since 1.4
1498
- * @version 1.2
1499
  */
1500
  function complete_payment( $pending_payment = array(), $transaction_id = '' ) {
1501
  $reference = 'buy_creds_with_' . str_replace( array( ' ', '-' ), '_', $this->id );
@@ -1521,7 +1521,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
1521
  $pending_payment['ctype']
1522
  );
1523
 
1524
- return apply_filters( 'mycred_buycred_complete_payment', $pending_payment, $transaction_id, $this );
1525
  }
1526
  }
1527
  }
1495
  /**
1496
  * Complete Payment
1497
  * @since 1.4
1498
+ * @version 1.2.1
1499
  */
1500
  function complete_payment( $pending_payment = array(), $transaction_id = '' ) {
1501
  $reference = 'buy_creds_with_' . str_replace( array( ' ', '-' ), '_', $this->id );
1521
  $pending_payment['ctype']
1522
  );
1523
 
1524
+ return apply_filters( 'mycred_buycred_complete_payment', $reply, $transaction_id, $this );
1525
  }
1526
  }
1527
  }
addons/buy-creds/myCRED-addon-buy-creds.php CHANGED
@@ -918,7 +918,7 @@ jQuery(function($) {
918
  /**
919
  * Custom Log Page
920
  * @since 1.4
921
- * @version 1.2
922
  */
923
  public function purchase_log_page() {
924
  $type = substr( $_GET['page'], 25 );
@@ -965,7 +965,10 @@ jQuery(function($) {
965
 
966
  if ( isset( $_GET['order'] ) && ! empty( $_GET['order'] ) )
967
  $args['order'] = $_GET['order'];
968
-
 
 
 
969
  if ( isset( $_GET['start'] ) && isset( $_GET['end'] ) )
970
  $args['amount'] = array( 'start' => $_GET['start'], 'end' => $_GET['end'] );
971
 
@@ -1009,6 +1012,9 @@ jQuery(function($) {
1009
  if ( isset( $_GET['order'] ) && ! empty( $_GET['order'] ) )
1010
  echo '<input type="hidden" name="order" value="' . $_GET['order'] . '" />';
1011
 
 
 
 
1012
  $log->search(); ?>
1013
 
1014
  <input type="hidden" name="page" value="<?php echo $_GET['page']; ?>" />
918
  /**
919
  * Custom Log Page
920
  * @since 1.4
921
+ * @version 1.3
922
  */
923
  public function purchase_log_page() {
924
  $type = substr( $_GET['page'], 25 );
965
 
966
  if ( isset( $_GET['order'] ) && ! empty( $_GET['order'] ) )
967
  $args['order'] = $_GET['order'];
968
+
969
+ if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) )
970
+ $args['paged'] = $_GET['paged'];
971
+
972
  if ( isset( $_GET['start'] ) && isset( $_GET['end'] ) )
973
  $args['amount'] = array( 'start' => $_GET['start'], 'end' => $_GET['end'] );
974
 
1012
  if ( isset( $_GET['order'] ) && ! empty( $_GET['order'] ) )
1013
  echo '<input type="hidden" name="order" value="' . $_GET['order'] . '" />';
1014
 
1015
+ if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) )
1016
+ echo '<input type="hidden" name="paged" value="' . $_GET['paged'] . '" />';
1017
+
1018
  $log->search(); ?>
1019
 
1020
  <input type="hidden" name="page" value="<?php echo $_GET['page']; ?>" />
addons/email-notices/myCRED-addon-email-notices.php CHANGED
@@ -580,7 +580,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
580
  /**
581
  * WP Mail
582
  * @since 1.1
583
- * @version 1.2
584
  */
585
  public function wp_mail( $to, $subject, $message, $headers, $attachments, $request, $email_id ) {
586
 
@@ -596,8 +596,13 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
596
  foreach ( $filtered['request'] as $key => $value )
597
  $entry->$key = $value;
598
 
599
- $subject = $this->core->parse_template_tags( $subject, $entry );
600
- $message = $this->core->parse_template_tags( $message, $entry );
 
 
 
 
 
601
 
602
  // Construct HTML Content
603
  if ( $this->emailnotices['use_html'] === true ) {
580
  /**
581
  * WP Mail
582
  * @since 1.1
583
+ * @version 1.3
584
  */
585
  public function wp_mail( $to, $subject, $message, $headers, $attachments, $request, $email_id ) {
586
 
596
  foreach ( $filtered['request'] as $key => $value )
597
  $entry->$key = $value;
598
 
599
+ $mycred = mycred( $filtered['request']['type'] );
600
+
601
+ $subject = $mycred->template_tags_user( $subject, $filtered['request']['user_id'] );
602
+ $message = $mycred->template_tags_user( $message, $filtered['request']['user_id'] );
603
+
604
+ $subject = $mycred->parse_template_tags( $subject, $entry );
605
+ $message = $mycred->parse_template_tags( $message, $entry );
606
 
607
  // Construct HTML Content
608
  if ( $this->emailnotices['use_html'] === true ) {
addons/gateway/carts/mycred-woocommerce.php CHANGED
@@ -311,7 +311,7 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) {
311
  /**
312
  * Log Entry
313
  * @since 0.1
314
- * @version 1.1
315
  */
316
  add_filter( 'mycred_parse_log_entry_woocommerce_payment', 'mycred_woo_log_entry', 90, 2 );
317
  function mycred_woo_log_entry( $content, $log_entry )
@@ -321,7 +321,7 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) {
321
  if ( isset( $log_entry->ctype ) )
322
  $type = $log_entry->ctype;
323
 
324
- if ( ! isset( $log_entry->ref_id ) )
325
  return str_replace( array( '%order_id%', '%order_link%', __( 'Order Missing', 'mycred' ), $content ) );
326
 
327
  $mycred = mycred( $type );
@@ -346,12 +346,12 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) {
346
  /**
347
  * Parse Email Notice
348
  * @since 1.2.2
349
- * @version 1.0
350
  */
351
  add_filter( 'mycred_email_before_send', 'mycred_woo_parse_email' );
352
  function mycred_woo_parse_email( $email )
353
  {
354
- if ( $email['request']['ref'] == 'woocommerce_payment' ) {
355
  $order = new WC_Order( (int) $email['request']['ref_id'] );
356
  if ( isset( $order->id ) ) {
357
  $url = esc_url( add_query_arg( 'order', $order->id, get_permalink( woocommerce_get_page_id( 'view_order' ) ) ) );
311
  /**
312
  * Log Entry
313
  * @since 0.1
314
+ * @version 1.2
315
  */
316
  add_filter( 'mycred_parse_log_entry_woocommerce_payment', 'mycred_woo_log_entry', 90, 2 );
317
  function mycred_woo_log_entry( $content, $log_entry )
321
  if ( isset( $log_entry->ctype ) )
322
  $type = $log_entry->ctype;
323
 
324
+ if ( ! isset( $log_entry->ref_id ) || ! class_exists( 'WC_Order' ) )
325
  return str_replace( array( '%order_id%', '%order_link%', __( 'Order Missing', 'mycred' ), $content ) );
326
 
327
  $mycred = mycred( $type );
346
  /**
347
  * Parse Email Notice
348
  * @since 1.2.2
349
+ * @version 1.0.1
350
  */
351
  add_filter( 'mycred_email_before_send', 'mycred_woo_parse_email' );
352
  function mycred_woo_parse_email( $email )
353
  {
354
+ if ( $email['request']['ref'] == 'woocommerce_payment' && class_exists( 'WC_Order' ) ) {
355
  $order = new WC_Order( (int) $email['request']['ref_id'] );
356
  if ( isset( $order->id ) ) {
357
  $url = esc_url( add_query_arg( 'order', $order->id, get_permalink( woocommerce_get_page_id( 'view_order' ) ) ) );
addons/gateway/event-booking/mycred-eventsmanager-pro.php CHANGED
@@ -4,9 +4,9 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
4
  /**
5
  * Events Manager Pro Gateway
6
  * @since 1.3
7
- * @version 1.1
8
  */
9
- if ( ! class_exists( 'EM_Gateway_myCRED' ) ) {
10
  class EM_Gateway_myCRED extends EM_Gateway {
11
 
12
  public $gateway = 'mycred';
4
  /**
5
  * Events Manager Pro Gateway
6
  * @since 1.3
7
+ * @version 1.1.1
8
  */
9
+ if ( ! class_exists( 'EM_Gateway_myCRED' ) && class_exists( 'EM_Gateway' ) ) {
10
  class EM_Gateway_myCRED extends EM_Gateway {
11
 
12
  public $gateway = 'mycred';
addons/gateway/myCRED-addon-gateway.php CHANGED
@@ -43,7 +43,7 @@ function mycred_load_events_manager() {
43
  if ( ! defined( 'EM_VERSION' ) ) return;
44
 
45
  // Pro
46
- if ( class_exists( 'EM_Pro' ) ) {
47
  require_once( myCRED_GATE_EVENT_DIR . 'mycred-eventsmanager-pro.php' );
48
  EM_Gateways::register_gateway( 'mycred', 'EM_Gateway_myCRED' );
49
  }
43
  if ( ! defined( 'EM_VERSION' ) ) return;
44
 
45
  // Pro
46
+ if ( class_exists( 'EM_Pro' ) && class_exists( 'EM_Gateways' ) ) {
47
  require_once( myCRED_GATE_EVENT_DIR . 'mycred-eventsmanager-pro.php' );
48
  EM_Gateways::register_gateway( 'mycred', 'EM_Gateway_myCRED' );
49
  }
addons/transfer/myCRED-addon-transfer.php CHANGED
@@ -688,7 +688,7 @@ if ( ! class_exists( 'myCRED_Widget_Transfer' ) ) {
688
  * @attribute $show_balance (bool) set to true to show current users balance, defaults to true
689
  * @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
690
  * @since 0.1
691
- * @version 1.4.1
692
  */
693
  if ( ! function_exists( 'mycred_transfer_render' ) ) {
694
  function mycred_transfer_render( $atts, $content = NULL )
@@ -724,7 +724,7 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) {
724
  }
725
 
726
  // Who to charge
727
- $chat_other = false;
728
  if ( $charge_from == '' ) {
729
  $charge_other = true;
730
  $charge_from = get_current_user_id();
688
  * @attribute $show_balance (bool) set to true to show current users balance, defaults to true
689
  * @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
690
  * @since 0.1
691
+ * @version 1.4.2
692
  */
693
  if ( ! function_exists( 'mycred_transfer_render' ) ) {
694
  function mycred_transfer_render( $atts, $content = NULL )
724
  }
725
 
726
  // Who to charge
727
+ $charge_other = false;
728
  if ( $charge_from == '' ) {
729
  $charge_other = true;
730
  $charge_from = get_current_user_id();
includes/mycred-functions.php CHANGED
@@ -365,7 +365,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
365
  public function template_tags_amount( $content = '', $amount = 0 ) {
366
  $content = $this->template_tags_general( $content );
367
  if ( ! $this->has_tags( 'amount', 'cred|cred_f', $content ) ) return $content;
368
- $content = apply_filters( 'mycred_parse_tags_amount', $content, $amount );
369
  $content = str_replace( '%cred_f%', $this->format_creds( $amount ), $content );
370
  $content = str_replace( '%cred%', $amount, $content );
371
  return $content;
@@ -1626,7 +1626,7 @@ endif;
1626
  * @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
1627
  * @returns boolean true on success or false on fail
1628
  * @since 0.1
1629
- * @version 1.1
1630
  */
1631
  if ( ! function_exists( 'mycred_add' ) ) :
1632
  function mycred_add( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' )
@@ -1634,7 +1634,7 @@ if ( ! function_exists( 'mycred_add' ) ) :
1634
  // $ref, $user_id and $cred is required
1635
  if ( $ref == '' || $user_id == '' || $amount == '' ) return false;
1636
 
1637
- if ( $type == '' ) $type = $mycred->get_cred_id();
1638
  $mycred = mycred( $type );
1639
 
1640
  // Add creds
@@ -1648,13 +1648,13 @@ endif;
1648
  * @see http://codex.mycred.me/functions/mycred_subtract/
1649
  * @uses mycred_add()
1650
  * @since 0.1
1651
- * @version 1.0
1652
  */
1653
  if ( ! function_exists( 'mycred_subtract' ) ) :
1654
  function mycred_subtract( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' )
1655
  {
1656
- if ( empty( $ref ) || empty( $user_id ) || empty( $amount ) ) return false;
1657
- if ( (int) $amount > 0 ) $amount = 0-$amount;
1658
  return mycred_add( $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
1659
  }
1660
  endif;
365
  public function template_tags_amount( $content = '', $amount = 0 ) {
366
  $content = $this->template_tags_general( $content );
367
  if ( ! $this->has_tags( 'amount', 'cred|cred_f', $content ) ) return $content;
368
+ $content = apply_filters( 'mycred_parse_tags_amount', $content, $amount, $this );
369
  $content = str_replace( '%cred_f%', $this->format_creds( $amount ), $content );
370
  $content = str_replace( '%cred%', $amount, $content );
371
  return $content;
1626
  * @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
1627
  * @returns boolean true on success or false on fail
1628
  * @since 0.1
1629
+ * @version 1.2
1630
  */
1631
  if ( ! function_exists( 'mycred_add' ) ) :
1632
  function mycred_add( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' )
1634
  // $ref, $user_id and $cred is required
1635
  if ( $ref == '' || $user_id == '' || $amount == '' ) return false;
1636
 
1637
+ // Init myCRED
1638
  $mycred = mycred( $type );
1639
 
1640
  // Add creds
1648
  * @see http://codex.mycred.me/functions/mycred_subtract/
1649
  * @uses mycred_add()
1650
  * @since 0.1
1651
+ * @version 1.1
1652
  */
1653
  if ( ! function_exists( 'mycred_subtract' ) ) :
1654
  function mycred_subtract( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' )
1655
  {
1656
+ if ( $ref == '' || $user_id == '' || $amount == '' ) return false;
1657
+ if ( $amount > 0 ) $amount = 0-$amount;
1658
  return mycred_add( $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
1659
  }
1660
  endif;
includes/mycred-install.php CHANGED
@@ -27,7 +27,7 @@ if ( ! class_exists( 'myCRED_Install' ) ) {
27
  * Compat
28
  * Check to make sure we reach minimum requirements for this plugin to work propery.
29
  * @since 0.1
30
- * @version 1.2
31
  */
32
  public function compat() {
33
  global $wpdb;
@@ -49,7 +49,8 @@ if ( ! class_exists( 'myCRED_Install' ) ) {
49
  $message[] = __( 'myCRED requires SQL 5.0 or higher. Version detected: ', 'mycred' ) . ' ' . $sql_version;
50
 
51
  // mcrypt library check (if missing, this will cause a fatal error)
52
- if ( ! function_exists( 'mcrypt_get_iv_size' ) )
 
53
  $message[] = __( 'The mcrypt PHP library must be enabled in order to use this plugin! Please check your PHP configuration or contact your host and ask them to enable it for you!', 'mycred' );
54
 
55
  // Not empty $message means there are issues
27
  * Compat
28
  * Check to make sure we reach minimum requirements for this plugin to work propery.
29
  * @since 0.1
30
+ * @version 1.2.1
31
  */
32
  public function compat() {
33
  global $wpdb;
49
  $message[] = __( 'myCRED requires SQL 5.0 or higher. Version detected: ', 'mycred' ) . ' ' . $sql_version;
50
 
51
  // mcrypt library check (if missing, this will cause a fatal error)
52
+ $extensions = get_loaded_extensions();
53
+ if ( ! in_array( 'mcrypt', $extensions ) )
54
  $message[] = __( 'The mcrypt PHP library must be enabled in order to use this plugin! Please check your PHP configuration or contact your host and ask them to enable it for you!', 'mycred' );
55
 
56
  // Not empty $message means there are issues
includes/mycred-log.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * Query Log
6
  * @see http://codex.mycred.me/classes/mycred_query_log/
7
  * @since 0.1
8
- * @version 1.4.1
9
  */
10
  if ( ! class_exists( 'myCRED_Query_Log' ) ) :
11
  class myCRED_Query_Log {
@@ -246,7 +246,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
246
  $page = 1;
247
  }
248
 
249
- if ( $this->args['offset'] != '' ) {
250
  $pgstrt = ($page - 1) * $number . ', ';
251
  }
252
  else {
5
  * Query Log
6
  * @see http://codex.mycred.me/classes/mycred_query_log/
7
  * @since 0.1
8
+ * @version 1.4.2
9
  */
10
  if ( ! class_exists( 'myCRED_Query_Log' ) ) :
11
  class myCRED_Query_Log {
246
  $page = 1;
247
  }
248
 
249
+ if ( $this->args['offset'] == '' ) {
250
  $pgstrt = ($page - 1) * $number . ', ';
251
  }
252
  else {
includes/mycred-shortcodes.php CHANGED
@@ -83,53 +83,78 @@ endif;
83
  * Returns the points history.
84
  * @see http://codex.mycred.me/shortcodes/mycred_history/
85
  * @since 1.0.9
86
- * @version 1.1.1
87
  */
88
  if ( ! function_exists( 'mycred_render_shortcode_history' ) ) :
89
  function mycred_render_shortcode_history( $atts )
90
  {
91
  extract( shortcode_atts( array(
92
- 'user_id' => NULL,
93
- 'number' => NULL,
94
- 'time' => NULL,
95
- 'ref' => NULL,
96
- 'order' => NULL,
97
- 'show_user' => false,
98
  'login' => '',
99
  'type' => 'mycred_default'
100
  ), $atts ) );
101
 
102
  // If we are not logged in
103
- if ( ! is_user_logged_in() && ! empty( $login ) ) return '<p class="mycred-history login">' . $login . '</p>';
104
 
105
- if ( $user_id === NULL )
106
  $user_id = get_current_user_id();
107
 
108
- $args = array(
109
- 'user_id' => $user_id,
110
- 'ctype' => $type
111
- );
112
 
113
- if ( $number !== NULL )
114
  $args['number'] = $number;
115
 
116
- if ( $time !== NULL )
117
  $args['time'] = $time;
118
 
119
- if ( $ref !== NULL )
120
  $args['ref'] = $ref;
121
 
122
- if ( $order !== NULL )
123
  $args['order'] = $order;
124
 
 
 
 
125
  $log = new myCRED_Query_Log( $args );
126
 
127
- if ( $show_user !== true )
128
  unset( $log->headers['column-username'] );
129
 
130
- $result = $log->get_display();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  $log->reset_query();
132
- return $result;
 
133
  }
134
  endif;
135
 
@@ -404,7 +429,7 @@ endif;
404
  * this shortcode exectutes!
405
  * @see http://codex.mycred.me/shortcodes/mycred_give/
406
  * @since 1.1
407
- * @version 1.1.1
408
  */
409
  if ( ! function_exists( 'mycred_render_shortcode_give' ) ) :
410
  function mycred_render_shortcode_give( $atts )
@@ -423,22 +448,23 @@ if ( ! function_exists( 'mycred_render_shortcode_give' ) ) :
423
  if ( $amount === NULL )
424
  return '<strong>' . __( 'error', 'mycred' ) . '</strong> ' . __( 'Amount missing!', 'mycred' );
425
 
426
- if ( empty( $log ) )
427
  return '<strong>' . __( 'error', 'mycred' ) . '</strong> ' . __( 'Log Template Missing!', 'mycred' );
428
 
429
  $mycred = mycred();
430
 
431
- if ( empty( $user_id ) )
432
  $user_id = get_current_user_id();
 
 
433
 
434
  // Check for exclusion
435
  if ( $mycred->exclude_user( $user_id ) ) return;
436
 
437
  // Limit
438
- $limit = abs( $limit );
439
  if ( $limit != 0 && mycred_count_ref_instances( $ref, $user_id ) >= $limit ) return;
440
 
441
- $amount = $mycred->number( $amount );
442
  $mycred->add_creds(
443
  $ref,
444
  $user_id,
@@ -774,7 +800,7 @@ endif;
774
  * of types.
775
  * @see http://codex.mycred.me/shortcodes/mycred_total_balance/
776
  * @since 1.4.3
777
- * @version 1.2
778
  */
779
  if ( ! function_exists( 'mycred_render_shortcode_total' ) ) :
780
  function mycred_render_shortcode_total( $atts, $content = '' )
@@ -782,7 +808,8 @@ if ( ! function_exists( 'mycred_render_shortcode_total' ) ) :
782
  extract( shortcode_atts( array(
783
  'user_id' => NULL,
784
  'types' => 'mycred_default',
785
- 'raw' => 0
 
786
  ), $atts ) );
787
 
788
  // If user ID is not set, get the current users ID
@@ -818,21 +845,25 @@ if ( ! function_exists( 'mycred_render_shortcode_total' ) ) :
818
  $types_to_addup = array( 'mycred_default' );
819
 
820
  // Add up all point type balances
821
- $total = 0;
822
  foreach ( $types_to_addup as $type ) {
823
  // Get the balance for this type
824
- $balance = mycred_query_users_total( $user_id, $type );
 
 
 
 
825
 
826
- $total = $total+$balance;
827
  }
828
 
829
  // If results should be formatted
830
  if ( $raw == 0 ) {
831
  $mycred = mycred();
832
- $total = $mycred->number( $total );
833
  }
834
 
835
- return apply_filters( 'mycred_total_balances_output', $total, $atts );
836
  }
837
  endif;
838
 
83
  * Returns the points history.
84
  * @see http://codex.mycred.me/shortcodes/mycred_history/
85
  * @since 1.0.9
86
+ * @version 1.2
87
  */
88
  if ( ! function_exists( 'mycred_render_shortcode_history' ) ) :
89
  function mycred_render_shortcode_history( $atts )
90
  {
91
  extract( shortcode_atts( array(
92
+ 'user_id' => '',
93
+ 'number' => '',
94
+ 'time' => '',
95
+ 'ref' => '',
96
+ 'order' => '',
97
+ 'show_user' => 0,
98
  'login' => '',
99
  'type' => 'mycred_default'
100
  ), $atts ) );
101
 
102
  // If we are not logged in
103
+ if ( ! is_user_logged_in() && $login != '' ) return '<p class="mycred-history login">' . $login . '</p>';
104
 
105
+ if ( $user_id == 'current' )
106
  $user_id = get_current_user_id();
107
 
108
+ $args = array( 'ctype' => $type );
109
+
110
+ if ( $user_id != '' )
111
+ $args['user_id'] = $user_id;
112
 
113
+ if ( $number != '' )
114
  $args['number'] = $number;
115
 
116
+ if ( $time != '' )
117
  $args['time'] = $time;
118
 
119
+ if ( $ref != '' )
120
  $args['ref'] = $ref;
121
 
122
+ if ( $order != '' )
123
  $args['order'] = $order;
124
 
125
+ if ( isset( $_GET['paged'] ) && $_GET['paged'] != '' )
126
+ $args['paged'] = absint( $_GET['paged'] );
127
+
128
  $log = new myCRED_Query_Log( $args );
129
 
130
+ if ( $show_user != 1 )
131
  unset( $log->headers['column-username'] );
132
 
133
+ ob_start(); ?>
134
+
135
+ <form class="form" role="form" method="get" action="">
136
+ <div class="tablenav top">
137
+
138
+ <?php if ( $log->have_entries() && $log->max_num_pages > 1 ) $log->navigation( 'top' ); ?>
139
+
140
+ </div>
141
+
142
+ <?php $log->display(); ?>
143
+
144
+ <div class="tablenav bottom">
145
+
146
+ <?php if ( $log->have_entries() && $log->max_num_pages > 1 ) $log->navigation( 'bottom' ); ?>
147
+
148
+ </div>
149
+ </form>
150
+ <?php
151
+
152
+ $content = ob_get_contents();
153
+ ob_end_clean();
154
+
155
  $log->reset_query();
156
+
157
+ return $content;
158
  }
159
  endif;
160
 
429
  * this shortcode exectutes!
430
  * @see http://codex.mycred.me/shortcodes/mycred_give/
431
  * @since 1.1
432
+ * @version 1.2
433
  */
434
  if ( ! function_exists( 'mycred_render_shortcode_give' ) ) :
435
  function mycred_render_shortcode_give( $atts )
448
  if ( $amount === NULL )
449
  return '<strong>' . __( 'error', 'mycred' ) . '</strong> ' . __( 'Amount missing!', 'mycred' );
450
 
451
+ if ( $log == '' )
452
  return '<strong>' . __( 'error', 'mycred' ) . '</strong> ' . __( 'Log Template Missing!', 'mycred' );
453
 
454
  $mycred = mycred();
455
 
456
+ if ( $user_id == '' )
457
  $user_id = get_current_user_id();
458
+ else
459
+ $user_id = absint( $user_id );
460
 
461
  // Check for exclusion
462
  if ( $mycred->exclude_user( $user_id ) ) return;
463
 
464
  // Limit
465
+ $limit = absint( $limit );
466
  if ( $limit != 0 && mycred_count_ref_instances( $ref, $user_id ) >= $limit ) return;
467
 
 
468
  $mycred->add_creds(
469
  $ref,
470
  $user_id,
800
  * of types.
801
  * @see http://codex.mycred.me/shortcodes/mycred_total_balance/
802
  * @since 1.4.3
803
+ * @version 1.2.1
804
  */
805
  if ( ! function_exists( 'mycred_render_shortcode_total' ) ) :
806
  function mycred_render_shortcode_total( $atts, $content = '' )
808
  extract( shortcode_atts( array(
809
  'user_id' => NULL,
810
  'types' => 'mycred_default',
811
+ 'raw' => 0,
812
+ 'total' => 0
813
  ), $atts ) );
814
 
815
  // If user ID is not set, get the current users ID
845
  $types_to_addup = array( 'mycred_default' );
846
 
847
  // Add up all point type balances
848
+ $total_balance = 0;
849
  foreach ( $types_to_addup as $type ) {
850
  // Get the balance for this type
851
+ $mycred = mycred( $type );
852
+ if ( $total == 1 )
853
+ $balance = mycred_query_users_total( $user_id, $type );
854
+ else
855
+ $balance = $mycred->get_users_balance( $user_id, $type );
856
 
857
+ $total_balance = $total_balance+$balance;
858
  }
859
 
860
  // If results should be formatted
861
  if ( $raw == 0 ) {
862
  $mycred = mycred();
863
+ $total_balance = $mycred->number( $total_balance );
864
  }
865
 
866
+ return apply_filters( 'mycred_total_balances_output', $total_balance, $atts );
867
  }
868
  endif;
869
 
includes/mycred-widgets.php CHANGED
@@ -36,7 +36,7 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) {
36
  $user_id = get_current_user_id();
37
 
38
  // Load myCRED Now
39
- if ( ! isset( $instance['type'] ) || empty( $instance['type'] ) )
40
  $instance['type'] = 'mycred_default';
41
 
42
  $mycred = mycred( $instance['type'] );
@@ -277,7 +277,7 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) {
277
  $instance = $old_instance;
278
 
279
  $instance['title'] = trim( $new_instance['title'] );
280
- $instance['type'] = sanitize_key( $new_instance['type'] );
281
 
282
  $instance['cred_format'] = trim( $new_instance['cred_format'] );
283
 
@@ -626,7 +626,7 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) {
626
  */
627
  function update( $new_instance, $old_instance ) {
628
  $instance = $old_instance;
629
- update_option( 'gabe_widget', $new_instance );
630
  $instance['title'] = trim( $new_instance['title'] );
631
 
632
  $instance['types'] = (array) $new_instance['types'];
36
  $user_id = get_current_user_id();
37
 
38
  // Load myCRED Now
39
+ if ( ! isset( $instance['type'] ) || $instance['type'] == '' )
40
  $instance['type'] = 'mycred_default';
41
 
42
  $mycred = mycred( $instance['type'] );
277
  $instance = $old_instance;
278
 
279
  $instance['title'] = trim( $new_instance['title'] );
280
+ $instance['type'] = trim( $new_instance['type'] );
281
 
282
  $instance['cred_format'] = trim( $new_instance['cred_format'] );
283
 
626
  */
627
  function update( $new_instance, $old_instance ) {
628
  $instance = $old_instance;
629
+
630
  $instance['title'] = trim( $new_instance['title'] );
631
 
632
  $instance['types'] = (array) $new_instance['types'];
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 Jul 28 2014 16:20:04 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: English (USA)\n"
@@ -15,7 +15,7 @@ msgstr ""
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_nngettext_noop:1,2;"
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
@@ -44,8 +44,8 @@ msgstr ""
44
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
45
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
46
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
47
- #: sell-content.php:364 ../addons/transfer/myCRED-addon-transfer.php:132 ..
48
- #: includes/mycred-shortcodes.php:605
49
  msgid "Processing..."
50
  msgstr ""
51
 
@@ -141,7 +141,7 @@ msgid "Once per day (reset at midnight)"
141
  msgstr ""
142
 
143
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
144
- #: abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
145
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
146
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
147
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
@@ -167,8 +167,8 @@ msgstr ""
167
  msgid "click to open"
168
  msgstr ""
169
 
170
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-
171
- #: banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:849
172
  msgid "Settings Updated"
173
  msgstr ""
174
 
@@ -373,135 +373,190 @@ msgstr ""
373
  msgid "in total"
374
  msgstr ""
375
 
376
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-
377
- #: banking.php:43 ../addons/banking/myCRED-addon-banking.php:44
378
  msgid "Banking"
379
  msgstr ""
380
 
381
- #: ../addons/banking/myCRED-addon-banking.php:103
382
- msgid "Compound Interest"
383
  msgstr ""
384
 
385
- #: ../addons/banking/myCRED-addon-banking.php:104
386
  #, php-format
387
  msgid ""
388
- "Apply an interest rate on your users %_plural% balances. Interest rate is "
389
- "annual and is compounded daily as long as this service is enabled. Positive "
390
- "interest rate leads to users gaining %_plural% while a negative interest "
391
- "rate will to users loosing %_plural%."
392
  msgstr ""
393
 
394
- #: ../addons/banking/myCRED-addon-banking.php:110
395
- msgid "Recurring Payouts"
 
396
  msgstr ""
397
 
398
- #: ../addons/banking/myCRED-addon-banking.php:111
399
  #, php-format
400
- msgid ""
401
- "Give your users %_plural% on a regular basis with the option to set the "
402
- "number of times you want this payout to run (cycles)."
403
  msgstr ""
404
 
405
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-
406
- #: addon-buy-creds.php:839 ../addons/buy-creds/myCRED-addon-buy-creds.php:935 ..
407
- #: includes/mycred-admin.php:573 ../includes/mycred-network.php:148 ..
 
 
 
 
 
 
 
 
408
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
409
- #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:579 ..
410
  #: modules/mycred-module-settings.php:312
411
  msgid "Access Denied"
412
  msgstr ""
413
 
414
- #: ../addons/banking/myCRED-addon-banking.php:167
415
  #, php-format
416
  msgid "%s Banking"
417
  msgstr ""
418
 
419
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.
420
- #: php:158
421
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
422
  msgstr ""
423
 
424
- #: ../addons/banking/myCRED-addon-banking.php:171
425
  msgid "WP-Cron deactivation detected!"
426
  msgstr ""
427
 
428
- #: ../addons/banking/myCRED-addon-banking.php:172
429
  msgid "Warning! This add-on requires WP - Cron to work."
430
  msgstr ""
431
 
432
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-
433
- #: addon-buy-creds.php:873 ../modules/mycred-module-hooks.php:196
434
  msgid "Enable"
435
  msgstr ""
436
 
437
- #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
438
  #: php:211
439
  msgid "Update Changes"
440
  msgstr ""
441
 
442
- #: ../addons/banking/abstracts/mycred-abstract-service.php:57
443
- msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
444
- msgstr ""
445
-
446
- #: ../addons/banking/abstracts/mycred-abstract-service.php:66
447
  msgid "This Service has no settings"
448
  msgstr ""
449
 
450
- #: ../addons/banking/abstracts/mycred-abstract-service.php:143
451
  msgid "Hourly"
452
  msgstr ""
453
 
454
- #: ../addons/banking/abstracts/mycred-abstract-service.php:147
455
  msgid "Daily"
456
  msgstr ""
457
 
458
- #: ../addons/banking/abstracts/mycred-abstract-service.php:151
459
  msgid "Weekly"
460
  msgstr ""
461
 
462
- #: ../addons/banking/abstracts/mycred-abstract-service.php:155
463
  msgid "Monthly"
464
  msgstr ""
465
 
466
- #: ../addons/banking/abstracts/mycred-abstract-service.php:159
467
  msgid "Quarterly"
468
  msgstr ""
469
 
470
- #: ../addons/banking/abstracts/mycred-abstract-service.php:163
471
  msgid "Semiannually"
472
  msgstr ""
473
 
474
- #: ../addons/banking/abstracts/mycred-abstract-service.php:167
475
  msgid "Annually"
476
  msgstr ""
477
 
478
- #: ../addons/banking/services/mycred-bank-service-interest.php:25
 
 
 
 
 
 
 
 
 
 
 
 
479
  msgid "%plural% interest rate payment"
480
  msgstr ""
481
 
482
- #: ../addons/banking/services/mycred-bank-service-interest.php:275
483
- msgid "Interest Rate"
484
  msgstr ""
485
 
486
- #: ../addons/banking/services/mycred-bank-service-interest.php:282
487
- msgid "Payed / Charged"
 
488
  msgstr ""
489
 
490
- #: ../addons/banking/services/mycred-bank-service-interest.php:288
491
- msgid "The interest rate can be either positive or negative and is compounded daily."
492
  msgstr ""
493
 
494
- #: ../addons/banking/services/mycred-bank-service-interest.php:291 ..
495
- #: addons/coupons/myCRED-addon-coupons.php:392
496
- msgid "Minimum Balance"
 
497
  msgstr ""
498
 
499
- #: ../addons/banking/services/mycred-bank-service-interest.php:295
500
- msgid "The minimum requires balance for interest to apply."
501
  msgstr ""
502
 
503
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ..
504
- #: addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
505
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
506
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
507
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
@@ -519,98 +574,123 @@ msgstr ""
519
  msgid "Log Template"
520
  msgstr ""
521
 
522
- #: ../addons/banking/services/mycred-bank-service-interest.php:305 ..
523
- #: addons/banking/services/mycred-bank-service-payouts.php:259
524
- msgid "Run Time"
 
525
  msgstr ""
526
 
527
- #: ../addons/banking/services/mycred-bank-service-interest.php:309 ..
528
- #: addons/banking/services/mycred-bank-service-payouts.php:263
529
- msgid ""
530
- "For large websites, if you are running into time out issues during payouts, "
531
- "you can set the number of seconds a process can run. Use zero for unlimited, "
532
- "but be careful especially if you are on a shared server."
533
  msgstr ""
534
 
535
- #: ../addons/banking/services/mycred-bank-service-payouts.php:21
536
- msgid "Daily %_plural%"
 
537
  msgstr ""
538
 
539
- #: ../addons/banking/services/mycred-bank-service-payouts.php:214
540
- msgid "Not yet run"
 
541
  msgstr ""
542
 
543
- #: ../addons/banking/services/mycred-bank-service-payouts.php:219
544
- msgid "Pay Users"
 
545
  msgstr ""
546
 
547
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
548
- #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
549
- #: creds.php:1520 ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ..
550
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
551
- #: includes/mycred-admin.php:726 ../includes/mycred-admin.php:771 ..
552
- #: includes/mycred-shortcodes.php:908
553
- msgid "Amount"
554
  msgstr ""
555
 
556
- #: ../addons/banking/services/mycred-bank-service-payouts.php:224
557
- msgid "Can not be zero."
558
  msgstr ""
559
 
560
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ..
561
- #: addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-
562
- #: module-hooks.php:2113
563
- msgid "Interval"
564
  msgstr ""
565
 
566
- #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ..
567
- #: addons/banking/services/mycred-bank-service-payouts.php:242
568
- msgid "Cycles"
 
569
  msgstr ""
570
 
571
- #: ../addons/banking/services/mycred-bank-service-payouts.php:235
572
- msgid "Set to -1 for unlimited"
573
  msgstr ""
574
 
575
- #: ../addons/banking/services/mycred-bank-service-payouts.php:238
576
- msgid "Last Run / Activated"
577
  msgstr ""
578
 
579
- #: ../addons/banking/services/mycred-bank-service-payouts.php:241
580
- msgid ""
581
- "Select how often you want to award %_plural%. Note that when this service is "
582
- "enabled, the first payout will be in the beginning of the next period. So "
583
- "with a \"Daily\" interval, the first payout will occur first thing in the "
584
- "morning."
585
  msgstr ""
586
 
587
- #: ../addons/banking/services/mycred-bank-service-payouts.php:242
588
- msgid ""
589
- "Cycles let you choose how many intervals this service should run. Each time "
590
- "a cycle runs, the value will decrease until it hits zero, in which case this "
591
- "service will deactivate itself. Use -1 to run unlimited times."
592
  msgstr ""
593
 
594
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
595
- msgid "Important"
596
  msgstr ""
597
 
598
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
599
- msgid ""
600
- "You can always stop payouts by deactivating this service. Just remember that "
601
- "if you deactivate while there are cycles left, this service will continue on "
602
- "when it gets re-activated. Set cycles to zero to reset."
603
  msgstr ""
604
 
605
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
606
- #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
607
- msgid "Excludes"
 
608
  msgstr ""
609
 
610
- #: ../addons/banking/services/mycred-bank-service-payouts.php:249
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
611
  msgid ""
612
- "Comma separated list of user IDs to exclude from this service. No spaces "
613
- "allowed!"
 
614
  msgstr ""
615
 
616
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
@@ -638,7 +718,7 @@ msgid "Edit Pending Payment"
638
  msgstr ""
639
 
640
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
641
- #: addon-buy-creds.php:1631
642
  msgid "No pending payments found"
643
  msgstr ""
644
 
@@ -647,23 +727,23 @@ msgid "Not found in Trash"
647
  msgstr ""
648
 
649
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
650
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595
651
  msgid "Transaction ID"
652
  msgstr ""
653
 
654
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
655
- #: addon-buy-creds.php:984
656
  msgid "Buyer"
657
  msgstr ""
658
 
659
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
660
- #: addon-buy-creds.php:1598 ../addons/buy-creds/abstracts/mycred-abstract-payment-
661
  #: gateway.php:563
662
  msgid "Cost"
663
  msgstr ""
664
 
665
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
666
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1596 ..
667
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
668
  msgid "Gateway"
669
  msgstr ""
@@ -681,14 +761,14 @@ msgid "buyCRED Purchase Log"
681
  msgstr ""
682
 
683
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
684
- #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:845
685
  msgid "Purchase Log"
686
  msgstr ""
687
 
688
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
689
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
690
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
691
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:416
692
  msgid "Payments"
693
  msgstr ""
694
 
@@ -765,7 +845,7 @@ msgid "Allow users to buy %_plural% for content authors."
765
  msgstr ""
766
 
767
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
768
- #: hooks.php:2748
769
  msgid "Available Shortcodes"
770
  msgstr ""
771
 
@@ -774,156 +854,151 @@ msgstr ""
774
  msgid "%s Exchange Rate"
775
  msgstr ""
776
 
777
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:759 ../addons/sell-
778
- #: content/myCRED-addon-sell-content.php:113
779
- msgid "Leave empty to use the default value."
780
- msgstr ""
781
-
782
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
783
  msgid "Save Exchange Rates"
784
  msgstr ""
785
 
786
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
787
  msgid "Exchange rate override saved"
788
  msgstr ""
789
 
790
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:827
791
  msgid "Payment completed"
792
  msgstr ""
793
 
794
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
795
  #, php-format
796
  msgid "%s Payment Gateways"
797
  msgstr ""
798
 
799
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845 ../addons/buy-creds/myCRED-
800
- #: addon-buy-creds.php:992
801
  msgid "buyCRED Settings"
802
  msgstr ""
803
 
804
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
805
  msgid "Test Mode"
806
  msgstr ""
807
 
808
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
809
  msgid "Enabled"
810
  msgstr ""
811
 
812
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:871
813
  msgid "Disabled"
814
  msgstr ""
815
 
816
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
817
  msgid "Sandbox Mode"
818
  msgstr ""
819
 
820
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:884
821
  msgid "Enable for test purchases."
822
  msgstr ""
823
 
824
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:901 ../addons/gateway/event-
825
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
826
  msgid "Update Settings"
827
  msgstr ""
828
 
829
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
830
  msgid "More Gateways"
831
  msgstr ""
832
 
833
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
834
  #: 634
835
  msgid "Date"
836
  msgstr ""
837
 
838
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
839
  msgid "Payed"
840
  msgstr ""
841
 
842
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
843
  msgid "<strong>buy</strong>CRED Purchase Log"
844
  msgstr ""
845
 
846
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
847
  #: booking/mycred-eventespresso3.php:367
848
  msgid "Gateway Settings"
849
  msgstr ""
850
 
851
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1168 ../addons/sell-
852
- #: content/myCRED-addon-sell-content.php:1184
853
  msgid "No purchases found"
854
  msgstr ""
855
 
856
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1238 ../addons/buy-creds/myCRED-
857
- #: addon-buy-creds.php:1351
858
  msgid "This Add-on needs to setup before you can use this shortcode."
859
  msgstr ""
860
 
861
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1257 ../addons/buy-creds/myCRED-
862
- #: addon-buy-creds.php:1370
863
  msgid "No gateways installed."
864
  msgstr ""
865
 
866
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1258 ../addons/buy-creds/myCRED-
867
- #: addon-buy-creds.php:1371
868
  msgid "Gateway does not exist."
869
  msgstr ""
870
 
871
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1306
872
  msgid "Yourself"
873
  msgstr ""
874
 
875
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1372
876
  msgid "No active gateways found."
877
  msgstr ""
878
 
879
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1373
880
  msgid "The selected gateway is not active."
881
  msgstr ""
882
 
883
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1420
884
  #, php-format
885
  msgid "Buy with %gateway%"
886
  msgstr ""
887
 
888
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1426 ../addons/sell-
889
  #: content/myCRED-addon-sell-content.php:44
890
  msgid "Buy Now"
891
  msgstr ""
892
 
893
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1471
894
  msgid "No users found"
895
  msgstr ""
896
 
897
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1481
898
  msgid "To"
899
  msgstr ""
900
 
901
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1498
902
  msgid "Select Amount"
903
  msgstr ""
904
 
905
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1522
906
  msgid "min."
907
  msgstr ""
908
 
909
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1530
910
  msgid "Select Gateway"
911
  msgstr ""
912
 
913
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1571 ../addons/gateway/event-
914
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
915
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
916
  #: php:35
917
  msgid "Pay Now"
918
  msgstr ""
919
 
920
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1572 ../includes/mycred-install.
921
  #: php:515
922
  msgid "Cancel"
923
  msgstr ""
924
 
925
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ../addons/ranks/myCRED-
926
- #: addon-ranks.php:990 ../modules/mycred-module-log.php:372 ../modules/mycred-
927
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
928
  msgid "Actions"
929
  msgstr ""
@@ -963,12 +1038,12 @@ msgid "Cancel purchase"
963
  msgstr ""
964
 
965
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
966
- #: includes/mycred-admin.php:720 ../includes/mycred-admin.php:757
967
  msgid "required"
968
  msgstr ""
969
 
970
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
971
- #: includes/mycred-admin.php:722 ../includes/mycred-admin.php:759
972
  msgid "optional"
973
  msgstr ""
974
 
@@ -1351,7 +1426,7 @@ msgstr ""
1351
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1352
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1353
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1354
- #: modules/mycred-module-hooks.php:2713
1355
  msgid "Title"
1356
  msgstr ""
1357
 
@@ -1581,7 +1656,7 @@ msgstr ""
1581
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1582
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1583
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1584
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:404 ..
1585
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1586
  #: includes/importers/mycred-cubepoints.php:365
1587
  msgid "Point Type"
@@ -1962,8 +2037,8 @@ msgid "Sent To"
1962
  msgstr ""
1963
 
1964
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
1965
- #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:766 ..
1966
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:544
1967
  msgid "User"
1968
  msgstr ""
1969
 
@@ -2087,7 +2162,7 @@ msgstr ""
2087
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2088
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2089
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2090
- #: php:412 ../includes/mycred-admin.php:614 ../includes/mycred-admin.php:767
2091
  msgid "Current Balance"
2092
  msgstr ""
2093
 
@@ -2201,7 +2276,7 @@ msgstr ""
2201
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2202
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2203
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2204
- #: php:578 ../includes/mycred-shortcodes.php:913
2205
  msgid "Exchange Rate"
2206
  msgstr ""
2207
 
@@ -2417,10 +2492,6 @@ msgstr ""
2417
  msgid "How much is 1 %s worth in %s"
2418
  msgstr ""
2419
 
2420
- #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2421
- msgid "Payout"
2422
- msgstr ""
2423
-
2424
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2425
  msgid "Instructions"
2426
  msgstr ""
@@ -2491,8 +2562,8 @@ msgstr ""
2491
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2492
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2493
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2494
- #: content/myCRED-addon-sell-content.php:452 ../addons/sell-content/myCRED-addon-
2495
- #: sell-content.php:662
2496
  msgid "Button Label"
2497
  msgstr ""
2498
 
@@ -2505,8 +2576,8 @@ msgstr ""
2505
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2506
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2507
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2508
- #: content/myCRED-addon-sell-content.php:443 ../addons/sell-content/myCRED-addon-
2509
- #: sell-content.php:658
2510
  msgid "Price"
2511
  msgstr ""
2512
 
@@ -2526,12 +2597,12 @@ msgid "Log"
2526
  msgstr ""
2527
 
2528
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2529
- #: includes/mycred-admin.php:735 ../includes/mycred-admin.php:772
2530
  msgid "Log Entry"
2531
  msgstr ""
2532
 
2533
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2534
- #: content/myCRED-addon-sell-content.php:466
2535
  msgid "Templates"
2536
  msgstr ""
2537
 
@@ -2607,7 +2678,7 @@ msgid "Reject"
2607
  msgstr ""
2608
 
2609
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2610
- #: modules/mycred-module-log.php:504 ../modules/mycred-module-settings.php:488 ..
2611
  #: modules/mycred-module-settings.php:507
2612
  msgid "Delete"
2613
  msgstr ""
@@ -3035,9 +3106,9 @@ msgid "No users found with this rank"
3035
  msgstr ""
3036
 
3037
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3038
- #: shortcodes.php:424 ../includes/mycred-shortcodes.php:427 ../includes/mycred-
3039
- #: shortcodes.php:489 ../includes/mycred-shortcodes.php:547 ../includes/mycred-
3040
- #: shortcodes.php:551 ../includes/mycred-shortcodes.php:555
3041
  msgid "error"
3042
  msgstr ""
3043
 
@@ -3057,139 +3128,139 @@ msgstr ""
3057
  msgid "Save Profit Share"
3058
  msgstr ""
3059
 
3060
- #: ../addons/sell-content/myCRED-addon-sell-content.php:158
3061
  msgid "Profit Share override saved"
3062
  msgstr ""
3063
 
3064
- #: ../addons/sell-content/myCRED-addon-sell-content.php:320
3065
  msgid "You can not buy this content."
3066
  msgstr ""
3067
 
3068
- #: ../addons/sell-content/myCRED-addon-sell-content.php:365
3069
  msgid "Error. Try Again"
3070
  msgstr ""
3071
 
3072
- #: ../addons/sell-content/myCRED-addon-sell-content.php:387
3073
  msgid "No Payout. Just charge."
3074
  msgstr ""
3075
 
3076
- #: ../addons/sell-content/myCRED-addon-sell-content.php:388
3077
  msgid "Pay Content Author."
3078
  msgstr ""
3079
 
3080
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394 ../includes/mycred-
3081
  #: overview.php:141 ../includes/mycred-overview.php:148
3082
  msgid "Sell Content"
3083
  msgstr ""
3084
 
3085
- #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3086
  msgid "Post Types"
3087
  msgstr ""
3088
 
3089
- #: ../addons/sell-content/myCRED-addon-sell-content.php:400
3090
  msgid "Comma separated list of post types that can be sold."
3091
  msgstr ""
3092
 
3093
- #: ../addons/sell-content/myCRED-addon-sell-content.php:430
3094
  msgid "Percentage to pay Author"
3095
  msgstr ""
3096
 
3097
- #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3098
  msgid ""
3099
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3100
  "authors are not paid."
3101
  msgstr ""
3102
 
3103
- #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3104
  msgid "Defaults"
3105
  msgstr ""
3106
 
3107
- #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3108
  msgid "Allow authors to change price."
3109
  msgstr ""
3110
 
3111
- #: ../addons/sell-content/myCRED-addon-sell-content.php:457
3112
  msgid "Allow authors to change button label."
3113
  msgstr ""
3114
 
3115
- #: ../addons/sell-content/myCRED-addon-sell-content.php:461
3116
  msgid "Purchases expire after"
3117
  msgstr ""
3118
 
3119
- #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3120
  msgid "Use zero for permanent sales."
3121
  msgstr ""
3122
 
3123
- #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3124
  msgid "For Visitors"
3125
  msgstr ""
3126
 
3127
- #: ../addons/sell-content/myCRED-addon-sell-content.php:474
3128
  #, php-format
3129
  msgid ""
3130
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3131
  "be logged in to buy content!"
3132
  msgstr ""
3133
 
3134
- #: ../addons/sell-content/myCRED-addon-sell-content.php:479
3135
  msgid "For Members"
3136
  msgstr ""
3137
 
3138
- #: ../addons/sell-content/myCRED-addon-sell-content.php:484 ../addons/sell-
3139
- #: content/myCRED-addon-sell-content.php:494
3140
  #, php-format
3141
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3142
  msgstr ""
3143
 
3144
- #: ../addons/sell-content/myCRED-addon-sell-content.php:489
3145
  msgid "For members that can not afford to buy"
3146
  msgstr ""
3147
 
3148
- #: ../addons/sell-content/myCRED-addon-sell-content.php:498
3149
  msgid "Log template for Purchases"
3150
  msgstr ""
3151
 
3152
- #: ../addons/sell-content/myCRED-addon-sell-content.php:505
3153
  msgid "Log template for Sales"
3154
  msgstr ""
3155
 
3156
- #: ../addons/sell-content/myCRED-addon-sell-content.php:557
3157
  #, php-format
3158
  msgid "%s Sell This"
3159
  msgstr ""
3160
 
3161
- #: ../addons/sell-content/myCRED-addon-sell-content.php:611
3162
  #, php-format
3163
  msgid "%s Sell Content needs to be setup before you can use this feature."
3164
  msgstr ""
3165
 
3166
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3167
  msgid "Setup add-on"
3168
  msgstr ""
3169
 
3170
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3171
  msgid "Lets do it"
3172
  msgstr ""
3173
 
3174
- #: ../addons/sell-content/myCRED-addon-sell-content.php:652
3175
  #, php-format
3176
  msgid "Enable sale of this %s"
3177
  msgstr ""
3178
 
3179
- #: ../addons/sell-content/myCRED-addon-sell-content.php:666
3180
  msgid "Purchase expires after"
3181
  msgstr ""
3182
 
3183
- #: ../addons/sell-content/myCRED-addon-sell-content.php:992
3184
  msgid "Thank you for your purchase!"
3185
  msgstr ""
3186
 
3187
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1080 ../addons/sell-
3188
- #: content/myCRED-addon-sell-content.php:1166
3189
  msgid "The following content is set for sale:"
3190
  msgstr ""
3191
 
3192
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1226
3193
  msgid "Purchased"
3194
  msgstr ""
3195
 
@@ -3202,7 +3273,7 @@ msgid "You have exceeded your %limit% transfer limit."
3202
  msgstr ""
3203
 
3204
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3205
- #: php:2295
3206
  msgid "Transfer"
3207
  msgstr ""
3208
 
@@ -3237,7 +3308,7 @@ msgid ""
3237
  msgstr ""
3238
 
3239
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3240
- #: php:1010
3241
  msgid "Insufficient Funds. Please try a lower amount."
3242
  msgstr ""
3243
 
@@ -3451,97 +3522,92 @@ msgstr ""
3451
  msgid "Failed to update this uses balance."
3452
  msgstr ""
3453
 
3454
- #: ../includes/mycred-admin.php:404
3455
  msgid "Excluded"
3456
  msgstr ""
3457
 
3458
- #: ../includes/mycred-admin.php:414
3459
  #, php-format
3460
  msgid "Total: %s"
3461
  msgstr ""
3462
 
3463
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:254 ..
3464
- #: modules/mycred-module-log.php:255
3465
- msgid "History"
3466
- msgstr ""
3467
-
3468
- #: ../includes/mycred-admin.php:423
3469
  msgid "Adjust"
3470
  msgstr ""
3471
 
3472
- #: ../includes/mycred-admin.php:461 ../includes/mycred-admin.php:462
3473
  msgid "Edit Balance"
3474
  msgstr ""
3475
 
3476
- #: ../includes/mycred-admin.php:480
3477
  msgid "Profile"
3478
  msgstr ""
3479
 
3480
- #: ../includes/mycred-admin.php:487
3481
  msgid "Extended Profile"
3482
  msgstr ""
3483
 
3484
- #: ../includes/mycred-admin.php:577
3485
  #, php-format
3486
  msgid "This user is excluded from using %s"
3487
  msgstr ""
3488
 
3489
- #: ../includes/mycred-admin.php:600
3490
  msgid "Edit User"
3491
  msgstr ""
3492
 
3493
- #: ../includes/mycred-admin.php:602
3494
  msgctxt "user"
3495
  msgid "Add New"
3496
  msgstr ""
3497
 
3498
- #: ../includes/mycred-admin.php:604
3499
  msgctxt "user"
3500
  msgid "Add Existing"
3501
  msgstr ""
3502
 
3503
- #: ../includes/mycred-admin.php:615
3504
  #, php-format
3505
  msgid "Total %s Accumulated"
3506
  msgstr ""
3507
 
3508
- #: ../includes/mycred-admin.php:616
3509
  #, php-format
3510
  msgid "Total %s Spent"
3511
  msgstr ""
3512
 
3513
- #: ../includes/mycred-admin.php:627
3514
  msgid "View History"
3515
  msgstr ""
3516
 
3517
- #: ../includes/mycred-admin.php:628
3518
  msgid "Exclude User"
3519
  msgstr ""
3520
 
3521
- #: ../includes/mycred-admin.php:632
3522
  msgid "Adjust Balance"
3523
  msgstr ""
3524
 
3525
- #: ../includes/mycred-admin.php:641
3526
  msgid ""
3527
  "Warning! Excluding this user will result in their balance being deleted "
3528
  "along with any entries currently in your log! This can not be undone!"
3529
  msgstr ""
3530
 
3531
- #: ../includes/mycred-admin.php:699
3532
  #, php-format
3533
  msgid "%singular% balance"
3534
  msgstr ""
3535
 
3536
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:773
3537
  msgid "Update Balance"
3538
  msgstr ""
3539
 
3540
- #: ../includes/mycred-admin.php:765
3541
  msgid "ID"
3542
  msgstr ""
3543
 
3544
- #: ../includes/mycred-admin.php:771
3545
  msgid "A positive or negative value"
3546
  msgstr ""
3547
 
@@ -3593,298 +3659,298 @@ msgstr ""
3593
  msgid "Available Template Tags:"
3594
  msgstr ""
3595
 
3596
- #: ../includes/mycred-functions.php:1655
3597
  msgid "Entire Log"
3598
  msgstr ""
3599
 
3600
- #: ../includes/mycred-functions.php:1660 ../includes/mycred-functions.php:1661
3601
  msgid "Displayed Rows"
3602
  msgstr ""
3603
 
3604
- #: ../includes/mycred-functions.php:1668
3605
  msgid "Search Results"
3606
  msgstr ""
3607
 
3608
- #: ../includes/mycred-functions.php:1669
3609
  msgid "My Entire Log"
3610
  msgstr ""
3611
 
3612
- #: ../includes/mycred-functions.php:1790
3613
  msgid "ref empty"
3614
  msgstr ""
3615
 
3616
- #: ../includes/mycred-functions.php:1798
3617
  msgid "incorrect user id format"
3618
  msgstr ""
3619
 
3620
- #: ../includes/mycred-functions.php:1811
3621
  msgid "incorrect unix timestamp (from):"
3622
  msgstr ""
3623
 
3624
- #: ../includes/mycred-functions.php:1820
3625
  msgid "incorrect unix timestamp (to):"
3626
  msgstr ""
3627
 
3628
- #: ../includes/mycred-functions.php:2182
3629
  msgid "Website Registration"
3630
  msgstr ""
3631
 
3632
- #: ../includes/mycred-functions.php:2183
3633
  msgid "Website Visit"
3634
  msgstr ""
3635
 
3636
- #: ../includes/mycred-functions.php:2184
3637
  msgid "Viewing Content (Member)"
3638
  msgstr ""
3639
 
3640
- #: ../includes/mycred-functions.php:2185
3641
  msgid "Viewing Content (Author)"
3642
  msgstr ""
3643
 
3644
- #: ../includes/mycred-functions.php:2186
3645
  msgid "Logging in"
3646
  msgstr ""
3647
 
3648
- #: ../includes/mycred-functions.php:2187
3649
  msgid "Publishing Content"
3650
  msgstr ""
3651
 
3652
- #: ../includes/mycred-functions.php:2188 ../modules/mycred-module-hooks.php:1421
3653
  msgid "Approved Comment"
3654
  msgstr ""
3655
 
3656
- #: ../includes/mycred-functions.php:2189
3657
  msgid "Unapproved Comment"
3658
  msgstr ""
3659
 
3660
- #: ../includes/mycred-functions.php:2190
3661
  msgid "SPAM Comment"
3662
  msgstr ""
3663
 
3664
- #: ../includes/mycred-functions.php:2191
3665
  msgid "Deleted Comment"
3666
  msgstr ""
3667
 
3668
- #: ../includes/mycred-functions.php:2192
3669
  msgid "Link Click"
3670
  msgstr ""
3671
 
3672
- #: ../includes/mycred-functions.php:2193
3673
  msgid "Watching Video"
3674
  msgstr ""
3675
 
3676
- #: ../includes/mycred-functions.php:2194
3677
  msgid "Visitor Referral"
3678
  msgstr ""
3679
 
3680
- #: ../includes/mycred-functions.php:2195
3681
  msgid "Signup Referral"
3682
  msgstr ""
3683
 
3684
- #: ../includes/mycred-functions.php:2199
3685
  msgid "New Profile Update"
3686
  msgstr ""
3687
 
3688
- #: ../includes/mycred-functions.php:2200
3689
  msgid "Avatar Upload"
3690
  msgstr ""
3691
 
3692
- #: ../includes/mycred-functions.php:2201
3693
  msgid "New Friendship"
3694
  msgstr ""
3695
 
3696
- #: ../includes/mycred-functions.php:2202
3697
  msgid "Ended Friendship"
3698
  msgstr ""
3699
 
3700
- #: ../includes/mycred-functions.php:2203
3701
  msgid "New Profile Comment"
3702
  msgstr ""
3703
 
3704
- #: ../includes/mycred-functions.php:2204
3705
  msgid "Profile Comment Deletion"
3706
  msgstr ""
3707
 
3708
- #: ../includes/mycred-functions.php:2205
3709
  msgid "New Message"
3710
  msgstr ""
3711
 
3712
- #: ../includes/mycred-functions.php:2206
3713
  msgid "Sending Gift"
3714
  msgstr ""
3715
 
3716
- #: ../includes/mycred-functions.php:2207
3717
  msgid "New Group"
3718
  msgstr ""
3719
 
3720
- #: ../includes/mycred-functions.php:2208
3721
  msgid "Deleted Group"
3722
  msgstr ""
3723
 
3724
- #: ../includes/mycred-functions.php:2209
3725
  msgid "New Group Forum Topic"
3726
  msgstr ""
3727
 
3728
- #: ../includes/mycred-functions.php:2210
3729
  msgid "Edit Group Forum Topic"
3730
  msgstr ""
3731
 
3732
- #: ../includes/mycred-functions.php:2211
3733
  msgid "New Group Forum Post"
3734
  msgstr ""
3735
 
3736
- #: ../includes/mycred-functions.php:2212
3737
  msgid "Edit Group Forum Post"
3738
  msgstr ""
3739
 
3740
- #: ../includes/mycred-functions.php:2213
3741
  msgid "Joining Group"
3742
  msgstr ""
3743
 
3744
- #: ../includes/mycred-functions.php:2214
3745
  msgid "Leaving Group"
3746
  msgstr ""
3747
 
3748
- #: ../includes/mycred-functions.php:2215
3749
  msgid "New Group Avatar"
3750
  msgstr ""
3751
 
3752
- #: ../includes/mycred-functions.php:2216
3753
  msgid "New Group Comment"
3754
  msgstr ""
3755
 
3756
- #: ../includes/mycred-functions.php:2220 ../plugins/mycred-hook-buddypress-media.
3757
  #: php:166
3758
  msgid "Photo Upload"
3759
  msgstr ""
3760
 
3761
- #: ../includes/mycred-functions.php:2221 ../plugins/mycred-hook-buddypress-media.
3762
  #: php:176
3763
  msgid "Video Upload"
3764
  msgstr ""
3765
 
3766
- #: ../includes/mycred-functions.php:2222 ../plugins/mycred-hook-buddypress-media.
3767
  #: php:186
3768
  msgid "Music Upload"
3769
  msgstr ""
3770
 
3771
- #: ../includes/mycred-functions.php:2226
3772
  msgid "New Link"
3773
  msgstr ""
3774
 
3775
- #: ../includes/mycred-functions.php:2227
3776
  msgid "Link Voting"
3777
  msgstr ""
3778
 
3779
- #: ../includes/mycred-functions.php:2228
3780
  msgid "Link Update"
3781
  msgstr ""
3782
 
3783
- #: ../includes/mycred-functions.php:2232
3784
  msgid "New Forum (bbPress)"
3785
  msgstr ""
3786
 
3787
- #: ../includes/mycred-functions.php:2233
3788
  msgid "New Forum Topic (bbPress)"
3789
  msgstr ""
3790
 
3791
- #: ../includes/mycred-functions.php:2234
3792
  msgid "Favorited Topic (bbPress)"
3793
  msgstr ""
3794
 
3795
- #: ../includes/mycred-functions.php:2235
3796
  msgid "New Topic Reply (bbPress)"
3797
  msgstr ""
3798
 
3799
- #: ../includes/mycred-functions.php:2239
3800
  msgid "Form Submission (Contact Form 7)"
3801
  msgstr ""
3802
 
3803
- #: ../includes/mycred-functions.php:2242
3804
  msgid "Form Submission (Gravity Form)"
3805
  msgstr ""
3806
 
3807
- #: ../includes/mycred-functions.php:2245
3808
  msgid "New Forum Topic (SimplePress)"
3809
  msgstr ""
3810
 
3811
- #: ../includes/mycred-functions.php:2246
3812
  msgid "New Forum Post (SimplePress)"
3813
  msgstr ""
3814
 
3815
- #: ../includes/mycred-functions.php:2250
3816
  msgid "Poll Voting"
3817
  msgstr ""
3818
 
3819
- #: ../includes/mycred-functions.php:2253
3820
  msgid "Sending an Invite"
3821
  msgstr ""
3822
 
3823
- #: ../includes/mycred-functions.php:2254
3824
  msgid "Accepting an Invite"
3825
  msgstr ""
3826
 
3827
- #: ../includes/mycred-functions.php:2260
3828
  msgid "Banking Payout"
3829
  msgstr ""
3830
 
3831
- #: ../includes/mycred-functions.php:2263
3832
  msgid "buyCRED Purchase (PayPal Standard)"
3833
  msgstr ""
3834
 
3835
- #: ../includes/mycred-functions.php:2264
3836
  msgid "buyCRED Purchase (Skrill)"
3837
  msgstr ""
3838
 
3839
- #: ../includes/mycred-functions.php:2265
3840
  msgid "buyCRED Purchase (Zombaio)"
3841
  msgstr ""
3842
 
3843
- #: ../includes/mycred-functions.php:2266
3844
  msgid "buyCRED Purchase (NETBilling)"
3845
  msgstr ""
3846
 
3847
- #: ../includes/mycred-functions.php:2267
3848
  msgid "buyCRED Purchase (BitPay)"
3849
  msgstr ""
3850
 
3851
- #: ../includes/mycred-functions.php:2272
3852
  msgid "Coupon Purchase"
3853
  msgstr ""
3854
 
3855
- #: ../includes/mycred-functions.php:2275
3856
  msgid "Store Purchase (WooCommerce)"
3857
  msgstr ""
3858
 
3859
- #: ../includes/mycred-functions.php:2276
3860
  msgid "Store Purchase (MarketPress)"
3861
  msgstr ""
3862
 
3863
- #: ../includes/mycred-functions.php:2277
3864
  msgid "Store Purchase (WP E-Commerce)"
3865
  msgstr ""
3866
 
3867
- #: ../includes/mycred-functions.php:2282
3868
  msgid "Event Payment (Event Espresso)"
3869
  msgstr ""
3870
 
3871
- #: ../includes/mycred-functions.php:2283
3872
  msgid "Event Sale (Event Espresso)"
3873
  msgstr ""
3874
 
3875
- #: ../includes/mycred-functions.php:2287
3876
  msgid "Event Payment (Events Manager)"
3877
  msgstr ""
3878
 
3879
- #: ../includes/mycred-functions.php:2288
3880
  msgid "Event Sale (Events Manager)"
3881
  msgstr ""
3882
 
3883
- #: ../includes/mycred-functions.php:2292
3884
  msgid "Content Purchase / Sale"
3885
  msgstr ""
3886
 
3887
- #: ../includes/mycred-functions.php:2299
3888
  msgid "Manual Adjustment by Admin"
3889
  msgstr ""
3890
 
@@ -4048,6 +4114,10 @@ msgid ""
4048
  "disable."
4049
  msgstr ""
4050
 
 
 
 
 
4051
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4052
  msgid "Exclude those who can \"Edit Settings\"."
4053
  msgstr ""
@@ -4155,7 +4225,7 @@ msgstr ""
4155
  msgid "Entry"
4156
  msgstr ""
4157
 
4158
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:466
4159
  msgid "User Missing"
4160
  msgstr ""
4161
 
@@ -4335,92 +4405,92 @@ msgid ""
4335
  "about your setup!"
4336
  msgstr ""
4337
 
4338
- #: ../includes/mycred-shortcodes.php:153
4339
  msgid "Leaderboard is empty."
4340
  msgstr ""
4341
 
4342
- #: ../includes/mycred-shortcodes.php:424 ../includes/mycred-shortcodes.php:547
4343
  msgid "Amount missing!"
4344
  msgstr ""
4345
 
4346
- #: ../includes/mycred-shortcodes.php:427 ../includes/mycred-shortcodes.php:555
4347
  msgid "Log Template Missing!"
4348
  msgstr ""
4349
 
4350
- #: ../includes/mycred-shortcodes.php:489
4351
  msgid "Anchor missing URL!"
4352
  msgstr ""
4353
 
4354
- #: ../includes/mycred-shortcodes.php:551
4355
  msgid "User ID missing for recipient."
4356
  msgstr ""
4357
 
4358
- #: ../includes/mycred-shortcodes.php:606
4359
  msgid "Sent"
4360
  msgstr ""
4361
 
4362
- #: ../includes/mycred-shortcodes.php:607
4363
  msgid "Error - Try Again"
4364
  msgstr ""
4365
 
4366
- #: ../includes/mycred-shortcodes.php:716
4367
  msgid "A video ID is required for this shortcode"
4368
  msgstr ""
4369
 
4370
- #: ../includes/mycred-shortcodes.php:862 ../includes/mycred-shortcodes.php:956
4371
  msgid "Point types not found."
4372
  msgstr ""
4373
 
4374
- #: ../includes/mycred-shortcodes.php:868 ../includes/mycred-shortcodes.php:876 ..
4375
- #: includes/mycred-shortcodes.php:968 ../includes/mycred-shortcodes.php:988
4376
  #, php-format
4377
  msgid "You are excluded from using %s."
4378
  msgstr ""
4379
 
4380
- #: ../includes/mycred-shortcodes.php:872 ../includes/mycred-shortcodes.php:978
4381
  msgid "Your balance is too low to use this feature."
4382
  msgstr ""
4383
 
4384
- #: ../includes/mycred-shortcodes.php:893
4385
  #, php-format
4386
  msgid "Convert <span>%s</span> to <span>%s</span>"
4387
  msgstr ""
4388
 
4389
- #: ../includes/mycred-shortcodes.php:902
4390
  #, php-format
4391
  msgid "Your current %s balance"
4392
  msgstr ""
4393
 
4394
- #: ../includes/mycred-shortcodes.php:910
4395
  #, php-format
4396
  msgid "Minimum %s"
4397
  msgstr ""
4398
 
4399
- #: ../includes/mycred-shortcodes.php:914
4400
  #, php-format
4401
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4402
  msgstr ""
4403
 
4404
- #: ../includes/mycred-shortcodes.php:920
4405
  msgid "Exchange"
4406
  msgstr ""
4407
 
4408
- #: ../includes/mycred-shortcodes.php:1001
4409
  #, php-format
4410
  msgid "You must exchange at least %s!"
4411
  msgstr ""
4412
 
4413
- #: ../includes/mycred-shortcodes.php:1023
4414
  #, php-format
4415
  msgid "Exchange from %s"
4416
  msgstr ""
4417
 
4418
- #: ../includes/mycred-shortcodes.php:1035
4419
  #, php-format
4420
  msgid "Exchange to %s"
4421
  msgstr ""
4422
 
4423
- #: ../includes/mycred-shortcodes.php:1043
4424
  #, php-format
4425
  msgid "You have successfully exchanged %s into %s."
4426
  msgstr ""
@@ -4717,6 +4787,10 @@ msgstr ""
4717
  msgid "Give your users badges based on their interaction with your website."
4718
  msgstr ""
4719
 
 
 
 
 
4720
  #: ../modules/mycred-module-addons.php:169
4721
  msgid ""
4722
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
@@ -5017,7 +5091,7 @@ msgstr ""
5017
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5018
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5019
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5020
- #: 2623 ../modules/mycred-module-hooks.php:2652 ../plugins/mycred-hook-badgeOS.
5021
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5022
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5023
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
@@ -5079,8 +5153,8 @@ msgstr ""
5079
  msgid "%plural% for viewing %s"
5080
  msgstr ""
5081
 
5082
- #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2631
5083
- #: ../modules/mycred-module-hooks.php:2660 ../plugins/mycred-hook-invite-anyone.
5084
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5085
  msgid "Limit"
5086
  msgstr ""
@@ -5162,7 +5236,7 @@ msgstr ""
5162
  msgid "Custom tags: %url%, %title% or %id%."
5163
  msgstr ""
5164
 
5165
- #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2734
5166
  msgid "Note!"
5167
  msgstr ""
5168
 
@@ -5236,91 +5310,91 @@ msgstr ""
5236
  msgid "Link"
5237
  msgstr ""
5238
 
5239
- #: ../modules/mycred-module-hooks.php:2617
5240
  msgid "Referring Visitors"
5241
  msgstr ""
5242
 
5243
- #: ../modules/mycred-module-hooks.php:2641 ../modules/mycred-module-hooks.php:2670
5244
  msgid "The number of referrals each member can make. Use zero for unlimited."
5245
  msgstr ""
5246
 
5247
- #: ../modules/mycred-module-hooks.php:2645 ../modules/mycred-module-hooks.php:2674
5248
  msgid "Referring Signups"
5249
  msgstr ""
5250
 
5251
- #: ../modules/mycred-module-hooks.php:2649
5252
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5253
  msgstr ""
5254
 
5255
- #: ../modules/mycred-module-hooks.php:2676
5256
  msgid "Registrations are disabled."
5257
  msgstr ""
5258
 
5259
- #: ../modules/mycred-module-hooks.php:2683
5260
  msgid "Referral Links"
5261
  msgstr ""
5262
 
5263
- #: ../modules/mycred-module-hooks.php:2687
5264
  msgid "Assign numeric referral IDs to each user."
5265
  msgstr ""
5266
 
5267
- #: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2694
5268
  msgid "Example"
5269
  msgstr ""
5270
 
5271
- #: ../modules/mycred-module-hooks.php:2693
5272
  msgid "Assign usernames as IDs for each user."
5273
  msgstr ""
5274
 
5275
- #: ../modules/mycred-module-hooks.php:2697
5276
  msgid "IP Limit"
5277
  msgstr ""
5278
 
5279
- #: ../modules/mycred-module-hooks.php:2701
5280
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5281
  msgstr ""
5282
 
5283
- #: ../modules/mycred-module-hooks.php:2705 ../modules/mycred-module-hooks.php:2738
5284
  msgid "BuddyPress Profile"
5285
  msgstr ""
5286
 
5287
- #: ../modules/mycred-module-hooks.php:2708
5288
  msgid "Insert Link in users Profile"
5289
  msgstr ""
5290
 
5291
- #: ../modules/mycred-module-hooks.php:2709
5292
  msgid ""
5293
  "Option to inser the referral link in users profiles. Links will only be "
5294
  "visible to users viewing their own profiles or administrators."
5295
  msgstr ""
5296
 
5297
- #: ../modules/mycred-module-hooks.php:2715
5298
  msgid "Leave empty to hide."
5299
  msgstr ""
5300
 
5301
- #: ../modules/mycred-module-hooks.php:2718
5302
  msgid "Description"
5303
  msgstr ""
5304
 
5305
- #: ../modules/mycred-module-hooks.php:2719
5306
  msgid "Optional description to insert under the link."
5307
  msgstr ""
5308
 
5309
- #: ../modules/mycred-module-hooks.php:2731
5310
  msgid "Profile Positioning"
5311
  msgstr ""
5312
 
5313
- #: ../modules/mycred-module-hooks.php:2733
5314
  msgid ""
5315
  "You can move around the referral link on your users profile by changing the "
5316
  "position. Increase to move up, decrease to move down."
5317
  msgstr ""
5318
 
5319
- #: ../modules/mycred-module-hooks.php:2734
5320
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5321
  msgstr ""
5322
 
5323
- #: ../modules/mycred-module-hooks.php:2740
5324
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5325
  msgstr ""
5326
 
@@ -5345,8 +5419,8 @@ msgstr ""
5345
  msgid "Entries"
5346
  msgstr ""
5347
 
5348
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:385 ..
5349
- #: modules/mycred-module-log.php:629 ../modules/mycred-module-settings.php:574
5350
  msgid "Export"
5351
  msgstr ""
5352
 
@@ -5354,40 +5428,40 @@ msgstr ""
5354
  msgid "Search results for"
5355
  msgstr ""
5356
 
5357
- #: ../modules/mycred-module-log.php:379
5358
  #, php-format
5359
  msgid "%s Log"
5360
  msgstr ""
5361
 
5362
- #: ../modules/mycred-module-log.php:504
5363
  msgid "Edit"
5364
  msgstr ""
5365
 
5366
- #: ../modules/mycred-module-log.php:545
5367
  msgid "Time"
5368
  msgstr ""
5369
 
5370
- #: ../modules/mycred-module-log.php:549
5371
  msgid "Current Log Entry"
5372
  msgstr ""
5373
 
5374
- #: ../modules/mycred-module-log.php:551
5375
  msgid "The current saved log entry"
5376
  msgstr ""
5377
 
5378
- #: ../modules/mycred-module-log.php:554
5379
  msgid "Adjust Log Entry"
5380
  msgstr ""
5381
 
5382
- #: ../modules/mycred-module-log.php:556
5383
  msgid "The new log entry"
5384
  msgstr ""
5385
 
5386
- #: ../modules/mycred-module-log.php:559
5387
  msgid "Update Log Entry"
5388
  msgstr ""
5389
 
5390
- #: ../modules/mycred-module-log.php:623
5391
  #, php-format
5392
  msgid "My %s History"
5393
  msgstr ""
@@ -6074,7 +6148,3 @@ msgstr ""
6074
  #, php-format
6075
  msgid "Awards %_plural% for users voting in polls."
6076
  msgstr ""
6077
- -wp-polls.php:19
6078
- #, php-format
6079
- msgid "Awards %_plural% for users voting in polls."
6080
- 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: Thu Aug 07 2014 20:34:14 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: English (USA)\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
44
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
45
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
46
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
47
+ #: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
48
+ #: includes/mycred-shortcodes.php:607
49
  msgid "Processing..."
50
  msgstr ""
51
 
141
  msgstr ""
142
 
143
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
144
+ #: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
145
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
146
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
147
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
167
  msgid "click to open"
168
  msgstr ""
169
 
170
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/buy-creds/myCRED-addon-
171
+ #: buy-creds.php:847
172
  msgid "Settings Updated"
173
  msgstr ""
174
 
373
  msgid "in total"
374
  msgstr ""
375
 
376
+ #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
377
+ #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
378
  msgid "Banking"
379
  msgstr ""
380
 
381
+ #: ../addons/banking/myCRED-addon-banking.php:158
382
+ msgid "Central Banking"
383
  msgstr ""
384
 
385
+ #: ../addons/banking/myCRED-addon-banking.php:159
386
  #, php-format
387
  msgid ""
388
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
389
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
390
+ "deposited back into this account."
 
391
  msgstr ""
392
 
393
+ #: ../addons/banking/myCRED-addon-banking.php:165 ..
394
+ #: addons/banking/services/mycred-bank-service-interest.php:512
395
+ msgid "Compound Interest"
396
  msgstr ""
397
 
398
+ #: ../addons/banking/myCRED-addon-banking.php:166
399
  #, php-format
400
+ msgid "Apply a positive or negative interest rate on your users %_plural% balances."
 
 
401
  msgstr ""
402
 
403
+ #: ../addons/banking/myCRED-addon-banking.php:172
404
+ msgid "Recurring Payouts"
405
+ msgstr ""
406
+
407
+ #: ../addons/banking/myCRED-addon-banking.php:173
408
+ msgid "Setup mass %_singular% payouts for your users."
409
+ msgstr ""
410
+
411
+ #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
412
+ #: addon-buy-creds.php:837 ../addons/buy-creds/myCRED-addon-buy-creds.php:933 ..
413
+ #: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
414
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
415
+ #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
416
  #: modules/mycred-module-settings.php:312
417
  msgid "Access Denied"
418
  msgstr ""
419
 
420
+ #: ../addons/banking/myCRED-addon-banking.php:225
421
  #, php-format
422
  msgid "%s Banking"
423
  msgstr ""
424
 
425
+ #: ../addons/banking/myCRED-addon-banking.php:228
426
+ msgid "Your banking setup for %plural%."
 
427
  msgstr ""
428
 
429
+ #: ../addons/banking/myCRED-addon-banking.php:231
430
  msgid "WP-Cron deactivation detected!"
431
  msgstr ""
432
 
433
+ #: ../addons/banking/myCRED-addon-banking.php:232
434
  msgid "Warning! This add-on requires WP - Cron to work."
435
  msgstr ""
436
 
437
+ #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
438
+ #: addon-buy-creds.php:871 ../modules/mycred-module-hooks.php:196
439
  msgid "Enable"
440
  msgstr ""
441
 
442
+ #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
443
  #: php:211
444
  msgid "Update Changes"
445
  msgstr ""
446
 
447
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:79
 
 
 
 
448
  msgid "This Service has no settings"
449
  msgstr ""
450
 
451
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:233
452
  msgid "Hourly"
453
  msgstr ""
454
 
455
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:237
456
  msgid "Daily"
457
  msgstr ""
458
 
459
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:241
460
  msgid "Weekly"
461
  msgstr ""
462
 
463
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:245
464
  msgid "Monthly"
465
  msgstr ""
466
 
467
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:249
468
  msgid "Quarterly"
469
  msgstr ""
470
 
471
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:253
472
  msgid "Semiannually"
473
  msgstr ""
474
 
475
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:257
476
  msgid "Annually"
477
  msgstr ""
478
 
479
+ #: ../addons/banking/services/mycred-bank-service-central.php:105
480
+ msgid "Bank User"
481
+ msgstr ""
482
+
483
+ #: ../addons/banking/services/mycred-bank-service-central.php:109
484
+ msgid "The user ID of the central bank account. This user can not be excluded!"
485
+ msgstr ""
486
+
487
+ #: ../addons/banking/services/mycred-bank-service-central.php:112
488
+ msgid "Ignore Manual Adjustments"
489
+ msgstr ""
490
+
491
+ #: ../addons/banking/services/mycred-bank-service-interest.php:24
492
  msgid "%plural% interest rate payment"
493
  msgstr ""
494
 
495
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
496
+ msgid "Compounding Interest"
497
  msgstr ""
498
 
499
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
500
+ #, php-format
501
+ msgid "%d Users are left to process."
502
  msgstr ""
503
 
504
+ #: ../addons/banking/services/mycred-bank-service-interest.php:388
505
+ msgid "Payout History"
506
  msgstr ""
507
 
508
+ #: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
509
+ #: addons/banking/services/mycred-bank-service-interest.php:409 ..
510
+ #: addons/banking/services/mycred-bank-service-payouts.php:249
511
+ msgid "Run Count"
512
  msgstr ""
513
 
514
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
515
+ msgid "Last Payout"
516
  msgstr ""
517
 
518
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
519
+ #: addons/banking/services/mycred-bank-service-interest.php:414
520
+ msgid "Activated"
521
+ msgstr ""
522
+
523
+ #: ../addons/banking/services/mycred-bank-service-interest.php:401
524
+ msgid "Total Payed Interest"
525
+ msgstr ""
526
+
527
+ #: ../addons/banking/services/mycred-bank-service-interest.php:405
528
+ msgid "Compound History"
529
+ msgstr ""
530
+
531
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
532
+ msgid "Last Interest Compound"
533
+ msgstr ""
534
+
535
+ #: ../addons/banking/services/mycred-bank-service-interest.php:418
536
+ msgid "Total Compounded Interest"
537
+ msgstr ""
538
+
539
+ #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
540
+ #: addons/banking/services/mycred-bank-service-interest.php:549
541
+ msgid "Interest Rate"
542
+ msgstr ""
543
+
544
+ #: ../addons/banking/services/mycred-bank-service-interest.php:425
545
+ msgid "Default Rate"
546
+ msgstr ""
547
+
548
+ #: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
549
+ #: addons/banking/services/mycred-bank-service-payouts.php:267
550
+ msgid "Can not be zero."
551
+ msgstr ""
552
+
553
+ #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
554
+ #: addons/gateway/carts/mycred-wpecommerce.php:364
555
+ msgid "Payout"
556
+ msgstr ""
557
+
558
+ #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
559
+ #: addons/banking/services/mycred-bank-service-payouts.php:282 ../addons/buy-
560
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
561
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
562
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
574
  msgid "Log Template"
575
  msgstr ""
576
 
577
+ #: ../addons/banking/services/mycred-bank-service-interest.php:442 ..
578
+ #: addons/banking/services/mycred-bank-service-payouts.php:289 ..
579
+ #: addons/coupons/myCRED-addon-coupons.php:392
580
+ msgid "Minimum Balance"
581
  msgstr ""
582
 
583
+ #: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
584
+ #: addons/banking/services/mycred-bank-service-payouts.php:293
585
+ msgid "Optional minimum balance requirement."
 
 
 
586
  msgstr ""
587
 
588
+ #: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
589
+ #: addons/banking/services/mycred-bank-service-payouts.php:296
590
+ msgid "Exclude"
591
  msgstr ""
592
 
593
+ #: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
594
+ #: addons/banking/services/mycred-bank-service-payouts.php:299
595
+ msgid "Comma separated list of user IDs"
596
  msgstr ""
597
 
598
+ #: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
599
+ #: addons/banking/services/mycred-bank-service-payouts.php:303
600
+ msgid "Roles"
601
  msgstr ""
602
 
603
+ #: ../addons/banking/services/mycred-bank-service-interest.php:522
604
+ msgid "This user is excluded from receiving interest on this balance."
 
 
 
 
 
605
  msgstr ""
606
 
607
+ #: ../addons/banking/services/mycred-bank-service-interest.php:525
608
+ msgid "Remove from Excluded List"
609
  msgstr ""
610
 
611
+ #: ../addons/banking/services/mycred-bank-service-interest.php:537
612
+ msgid "This user role is excluded from receiving interest on this balance."
 
 
613
  msgstr ""
614
 
615
+ #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
616
+ #: creds/myCRED-addon-buy-creds.php:759 ../addons/sell-content/myCRED-addon-sell-
617
+ #: content.php:113
618
+ msgid "Leave empty to use the default value."
619
  msgstr ""
620
 
621
+ #: ../addons/banking/services/mycred-bank-service-interest.php:558
622
+ msgid "Save Interest Rate"
623
  msgstr ""
624
 
625
+ #: ../addons/banking/services/mycred-bank-service-interest.php:559
626
+ msgid "Exclude from receiving interest"
627
  msgstr ""
628
 
629
+ #: ../addons/banking/services/mycred-bank-service-interest.php:667
630
+ msgid "Compound interest rate saved."
 
 
 
 
631
  msgstr ""
632
 
633
+ #: ../addons/banking/services/mycred-bank-service-interest.php:669
634
+ msgid "User excluded from receiving interest."
 
 
 
635
  msgstr ""
636
 
637
+ #: ../addons/banking/services/mycred-bank-service-interest.php:671
638
+ msgid "User included in receiving interest."
639
  msgstr ""
640
 
641
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:21
642
+ msgid "Daily %_plural%"
 
 
 
643
  msgstr ""
644
 
645
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
646
+ #: includes/mycred-admin.php:404 ../modules/mycred-module-log.php:254 ..
647
+ #: modules/mycred-module-log.php:255
648
+ msgid "History"
649
  msgstr ""
650
 
651
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:254
652
+ msgid "Last Run"
653
+ msgstr ""
654
+
655
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:258
656
+ msgid "Total Payouts"
657
+ msgstr ""
658
+
659
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:262
660
+ msgid "Pay Users"
661
+ msgstr ""
662
+
663
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
664
+ #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
665
+ #: creds.php:1518 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595 ..
666
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
667
+ #: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
668
+ #: includes/mycred-shortcodes.php:910
669
+ msgid "Amount"
670
+ msgstr ""
671
+
672
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
673
+ #: modules/mycred-module-hooks.php:2113
674
+ msgid "Interval"
675
+ msgstr ""
676
+
677
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:275
678
+ msgid "Cycles"
679
+ msgstr ""
680
+
681
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:277
682
+ msgid "Set to -1 for unlimited"
683
+ msgstr ""
684
+
685
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
686
+ msgid "Important"
687
+ msgstr ""
688
+
689
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
690
  msgid ""
691
+ "You can always stop payouts by deactivating this service. Just remember that "
692
+ "if you deactivate while there are cycles left, this service will continue on "
693
+ "when it gets re-activated. Set cycles to zero to reset."
694
  msgstr ""
695
 
696
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
718
  msgstr ""
719
 
720
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
721
+ #: addon-buy-creds.php:1629
722
  msgid "No pending payments found"
723
  msgstr ""
724
 
727
  msgstr ""
728
 
729
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
730
+ #: addon-buy-creds.php:986 ../addons/buy-creds/myCRED-addon-buy-creds.php:1593
731
  msgid "Transaction ID"
732
  msgstr ""
733
 
734
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
735
+ #: addon-buy-creds.php:982
736
  msgid "Buyer"
737
  msgstr ""
738
 
739
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
740
+ #: addon-buy-creds.php:1596 ../addons/buy-creds/abstracts/mycred-abstract-payment-
741
  #: gateway.php:563
742
  msgid "Cost"
743
  msgstr ""
744
 
745
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
746
+ #: addon-buy-creds.php:981 ../addons/buy-creds/myCRED-addon-buy-creds.php:1594 ..
747
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
748
  msgid "Gateway"
749
  msgstr ""
761
  msgstr ""
762
 
763
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
764
+ #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:843
765
  msgid "Purchase Log"
766
  msgstr ""
767
 
768
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
769
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
770
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
771
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:422
772
  msgid "Payments"
773
  msgstr ""
774
 
845
  msgstr ""
846
 
847
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
848
+ #: hooks.php:2770
849
  msgid "Available Shortcodes"
850
  msgstr ""
851
 
854
  msgid "%s Exchange Rate"
855
  msgstr ""
856
 
 
 
 
 
 
857
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
858
  msgid "Save Exchange Rates"
859
  msgstr ""
860
 
861
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:822
862
  msgid "Exchange rate override saved"
863
  msgstr ""
864
 
865
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:825
866
  msgid "Payment completed"
867
  msgstr ""
868
 
869
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843
870
  #, php-format
871
  msgid "%s Payment Gateways"
872
  msgstr ""
873
 
874
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
875
+ #: addon-buy-creds.php:990
876
  msgid "buyCRED Settings"
877
  msgstr ""
878
 
879
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:864
880
  msgid "Test Mode"
881
  msgstr ""
882
 
883
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
884
  msgid "Enabled"
885
  msgstr ""
886
 
887
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:869
888
  msgid "Disabled"
889
  msgstr ""
890
 
891
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
892
  msgid "Sandbox Mode"
893
  msgstr ""
894
 
895
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:882
896
  msgid "Enable for test purchases."
897
  msgstr ""
898
 
899
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
900
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
901
  msgid "Update Settings"
902
  msgstr ""
903
 
904
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
905
  msgid "More Gateways"
906
  msgstr ""
907
 
908
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:983 ../includes/mycred-log.php:
909
  #: 634
910
  msgid "Date"
911
  msgstr ""
912
 
913
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985
914
  msgid "Payed"
915
  msgstr ""
916
 
917
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990
918
  msgid "<strong>buy</strong>CRED Purchase Log"
919
  msgstr ""
920
 
921
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990 ../addons/gateway/event-
922
  #: booking/mycred-eventespresso3.php:367
923
  msgid "Gateway Settings"
924
  msgstr ""
925
 
926
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166 ../addons/sell-
927
+ #: content/myCRED-addon-sell-content.php:1190
928
  msgid "No purchases found"
929
  msgstr ""
930
 
931
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1236 ../addons/buy-creds/myCRED-
932
+ #: addon-buy-creds.php:1349
933
  msgid "This Add-on needs to setup before you can use this shortcode."
934
  msgstr ""
935
 
936
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1255 ../addons/buy-creds/myCRED-
937
+ #: addon-buy-creds.php:1368
938
  msgid "No gateways installed."
939
  msgstr ""
940
 
941
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1256 ../addons/buy-creds/myCRED-
942
+ #: addon-buy-creds.php:1369
943
  msgid "Gateway does not exist."
944
  msgstr ""
945
 
946
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1304
947
  msgid "Yourself"
948
  msgstr ""
949
 
950
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1370
951
  msgid "No active gateways found."
952
  msgstr ""
953
 
954
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1371
955
  msgid "The selected gateway is not active."
956
  msgstr ""
957
 
958
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1418
959
  #, php-format
960
  msgid "Buy with %gateway%"
961
  msgstr ""
962
 
963
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424 ../addons/sell-
964
  #: content/myCRED-addon-sell-content.php:44
965
  msgid "Buy Now"
966
  msgstr ""
967
 
968
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1469
969
  msgid "No users found"
970
  msgstr ""
971
 
972
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1479
973
  msgid "To"
974
  msgstr ""
975
 
976
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1496
977
  msgid "Select Amount"
978
  msgstr ""
979
 
980
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1520
981
  msgid "min."
982
  msgstr ""
983
 
984
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1528
985
  msgid "Select Gateway"
986
  msgstr ""
987
 
988
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1569 ../addons/gateway/event-
989
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
990
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
991
  #: php:35
992
  msgid "Pay Now"
993
  msgstr ""
994
 
995
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1570 ../includes/mycred-install.
996
  #: php:515
997
  msgid "Cancel"
998
  msgstr ""
999
 
1000
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ../addons/ranks/myCRED-
1001
+ #: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
1002
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
1003
  msgid "Actions"
1004
  msgstr ""
1038
  msgstr ""
1039
 
1040
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1041
+ #: includes/mycred-admin.php:702 ../includes/mycred-admin.php:739
1042
  msgid "required"
1043
  msgstr ""
1044
 
1045
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1046
+ #: includes/mycred-admin.php:704 ../includes/mycred-admin.php:741
1047
  msgid "optional"
1048
  msgstr ""
1049
 
1426
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1427
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1428
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1429
+ #: modules/mycred-module-hooks.php:2735
1430
  msgid "Title"
1431
  msgstr ""
1432
 
1656
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1657
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1658
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1659
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:410 ..
1660
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1661
  #: includes/importers/mycred-cubepoints.php:365
1662
  msgid "Point Type"
2037
  msgstr ""
2038
 
2039
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2040
+ #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:748 ..
2041
+ #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
2042
  msgid "User"
2043
  msgstr ""
2044
 
2162
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2163
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2164
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2165
+ #: php:412 ../includes/mycred-admin.php:596 ../includes/mycred-admin.php:749
2166
  msgid "Current Balance"
2167
  msgstr ""
2168
 
2276
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2277
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2278
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2279
+ #: php:578 ../includes/mycred-shortcodes.php:915
2280
  msgid "Exchange Rate"
2281
  msgstr ""
2282
 
2492
  msgid "How much is 1 %s worth in %s"
2493
  msgstr ""
2494
 
 
 
 
 
2495
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2496
  msgid "Instructions"
2497
  msgstr ""
2562
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2563
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2564
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2565
+ #: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
2566
+ #: sell-content.php:668
2567
  msgid "Button Label"
2568
  msgstr ""
2569
 
2576
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2577
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2578
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2579
+ #: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
2580
+ #: sell-content.php:664
2581
  msgid "Price"
2582
  msgstr ""
2583
 
2597
  msgstr ""
2598
 
2599
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2600
+ #: includes/mycred-admin.php:717 ../includes/mycred-admin.php:754
2601
  msgid "Log Entry"
2602
  msgstr ""
2603
 
2604
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2605
+ #: content/myCRED-addon-sell-content.php:472
2606
  msgid "Templates"
2607
  msgstr ""
2608
 
2678
  msgstr ""
2679
 
2680
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2681
+ #: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:488 ..
2682
  #: modules/mycred-module-settings.php:507
2683
  msgid "Delete"
2684
  msgstr ""
3106
  msgstr ""
3107
 
3108
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3109
+ #: shortcodes.php:425 ../includes/mycred-shortcodes.php:428 ../includes/mycred-
3110
+ #: shortcodes.php:491 ../includes/mycred-shortcodes.php:549 ../includes/mycred-
3111
+ #: shortcodes.php:553 ../includes/mycred-shortcodes.php:557
3112
  msgid "error"
3113
  msgstr ""
3114
 
3128
  msgid "Save Profit Share"
3129
  msgstr ""
3130
 
3131
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:164
3132
  msgid "Profit Share override saved"
3133
  msgstr ""
3134
 
3135
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:326
3136
  msgid "You can not buy this content."
3137
  msgstr ""
3138
 
3139
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:371
3140
  msgid "Error. Try Again"
3141
  msgstr ""
3142
 
3143
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3144
  msgid "No Payout. Just charge."
3145
  msgstr ""
3146
 
3147
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3148
  msgid "Pay Content Author."
3149
  msgstr ""
3150
 
3151
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:400 ../includes/mycred-
3152
  #: overview.php:141 ../includes/mycred-overview.php:148
3153
  msgid "Sell Content"
3154
  msgstr ""
3155
 
3156
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3157
  msgid "Post Types"
3158
  msgstr ""
3159
 
3160
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3161
  msgid "Comma separated list of post types that can be sold."
3162
  msgstr ""
3163
 
3164
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:436
3165
  msgid "Percentage to pay Author"
3166
  msgstr ""
3167
 
3168
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3169
  msgid ""
3170
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3171
  "authors are not paid."
3172
  msgstr ""
3173
 
3174
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:446
3175
  msgid "Defaults"
3176
  msgstr ""
3177
 
3178
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:454
3179
  msgid "Allow authors to change price."
3180
  msgstr ""
3181
 
3182
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3183
  msgid "Allow authors to change button label."
3184
  msgstr ""
3185
 
3186
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:467
3187
  msgid "Purchases expire after"
3188
  msgstr ""
3189
 
3190
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3191
  msgid "Use zero for permanent sales."
3192
  msgstr ""
3193
 
3194
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:475
3195
  msgid "For Visitors"
3196
  msgstr ""
3197
 
3198
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:480
3199
  #, php-format
3200
  msgid ""
3201
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3202
  "be logged in to buy content!"
3203
  msgstr ""
3204
 
3205
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:485
3206
  msgid "For Members"
3207
  msgstr ""
3208
 
3209
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:490 ../addons/sell-
3210
+ #: content/myCRED-addon-sell-content.php:500
3211
  #, php-format
3212
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3213
  msgstr ""
3214
 
3215
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:495
3216
  msgid "For members that can not afford to buy"
3217
  msgstr ""
3218
 
3219
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:504
3220
  msgid "Log template for Purchases"
3221
  msgstr ""
3222
 
3223
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:511
3224
  msgid "Log template for Sales"
3225
  msgstr ""
3226
 
3227
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:563
3228
  #, php-format
3229
  msgid "%s Sell This"
3230
  msgstr ""
3231
 
3232
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:617
3233
  #, php-format
3234
  msgid "%s Sell Content needs to be setup before you can use this feature."
3235
  msgstr ""
3236
 
3237
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3238
  msgid "Setup add-on"
3239
  msgstr ""
3240
 
3241
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3242
  msgid "Lets do it"
3243
  msgstr ""
3244
 
3245
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:658
3246
  #, php-format
3247
  msgid "Enable sale of this %s"
3248
  msgstr ""
3249
 
3250
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:672
3251
  msgid "Purchase expires after"
3252
  msgstr ""
3253
 
3254
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:998
3255
  msgid "Thank you for your purchase!"
3256
  msgstr ""
3257
 
3258
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1086 ../addons/sell-
3259
+ #: content/myCRED-addon-sell-content.php:1172
3260
  msgid "The following content is set for sale:"
3261
  msgstr ""
3262
 
3263
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1232
3264
  msgid "Purchased"
3265
  msgstr ""
3266
 
3273
  msgstr ""
3274
 
3275
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3276
+ #: php:2313
3277
  msgid "Transfer"
3278
  msgstr ""
3279
 
3308
  msgstr ""
3309
 
3310
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3311
+ #: php:1012
3312
  msgid "Insufficient Funds. Please try a lower amount."
3313
  msgstr ""
3314
 
3522
  msgid "Failed to update this uses balance."
3523
  msgstr ""
3524
 
3525
+ #: ../includes/mycred-admin.php:386
3526
  msgid "Excluded"
3527
  msgstr ""
3528
 
3529
+ #: ../includes/mycred-admin.php:396
3530
  #, php-format
3531
  msgid "Total: %s"
3532
  msgstr ""
3533
 
3534
+ #: ../includes/mycred-admin.php:405
 
 
 
 
 
3535
  msgid "Adjust"
3536
  msgstr ""
3537
 
3538
+ #: ../includes/mycred-admin.php:443 ../includes/mycred-admin.php:444
3539
  msgid "Edit Balance"
3540
  msgstr ""
3541
 
3542
+ #: ../includes/mycred-admin.php:462
3543
  msgid "Profile"
3544
  msgstr ""
3545
 
3546
+ #: ../includes/mycred-admin.php:469
3547
  msgid "Extended Profile"
3548
  msgstr ""
3549
 
3550
+ #: ../includes/mycred-admin.php:559
3551
  #, php-format
3552
  msgid "This user is excluded from using %s"
3553
  msgstr ""
3554
 
3555
+ #: ../includes/mycred-admin.php:582
3556
  msgid "Edit User"
3557
  msgstr ""
3558
 
3559
+ #: ../includes/mycred-admin.php:584
3560
  msgctxt "user"
3561
  msgid "Add New"
3562
  msgstr ""
3563
 
3564
+ #: ../includes/mycred-admin.php:586
3565
  msgctxt "user"
3566
  msgid "Add Existing"
3567
  msgstr ""
3568
 
3569
+ #: ../includes/mycred-admin.php:597
3570
  #, php-format
3571
  msgid "Total %s Accumulated"
3572
  msgstr ""
3573
 
3574
+ #: ../includes/mycred-admin.php:598
3575
  #, php-format
3576
  msgid "Total %s Spent"
3577
  msgstr ""
3578
 
3579
+ #: ../includes/mycred-admin.php:609
3580
  msgid "View History"
3581
  msgstr ""
3582
 
3583
+ #: ../includes/mycred-admin.php:610
3584
  msgid "Exclude User"
3585
  msgstr ""
3586
 
3587
+ #: ../includes/mycred-admin.php:614
3588
  msgid "Adjust Balance"
3589
  msgstr ""
3590
 
3591
+ #: ../includes/mycred-admin.php:623
3592
  msgid ""
3593
  "Warning! Excluding this user will result in their balance being deleted "
3594
  "along with any entries currently in your log! This can not be undone!"
3595
  msgstr ""
3596
 
3597
+ #: ../includes/mycred-admin.php:681
3598
  #, php-format
3599
  msgid "%singular% balance"
3600
  msgstr ""
3601
 
3602
+ #: ../includes/mycred-admin.php:721 ../includes/mycred-admin.php:755
3603
  msgid "Update Balance"
3604
  msgstr ""
3605
 
3606
+ #: ../includes/mycred-admin.php:747
3607
  msgid "ID"
3608
  msgstr ""
3609
 
3610
+ #: ../includes/mycred-admin.php:753
3611
  msgid "A positive or negative value"
3612
  msgstr ""
3613
 
3659
  msgid "Available Template Tags:"
3660
  msgstr ""
3661
 
3662
+ #: ../includes/mycred-functions.php:1673
3663
  msgid "Entire Log"
3664
  msgstr ""
3665
 
3666
+ #: ../includes/mycred-functions.php:1678 ../includes/mycred-functions.php:1679
3667
  msgid "Displayed Rows"
3668
  msgstr ""
3669
 
3670
+ #: ../includes/mycred-functions.php:1686
3671
  msgid "Search Results"
3672
  msgstr ""
3673
 
3674
+ #: ../includes/mycred-functions.php:1687
3675
  msgid "My Entire Log"
3676
  msgstr ""
3677
 
3678
+ #: ../includes/mycred-functions.php:1808
3679
  msgid "ref empty"
3680
  msgstr ""
3681
 
3682
+ #: ../includes/mycred-functions.php:1816
3683
  msgid "incorrect user id format"
3684
  msgstr ""
3685
 
3686
+ #: ../includes/mycred-functions.php:1829
3687
  msgid "incorrect unix timestamp (from):"
3688
  msgstr ""
3689
 
3690
+ #: ../includes/mycred-functions.php:1838
3691
  msgid "incorrect unix timestamp (to):"
3692
  msgstr ""
3693
 
3694
+ #: ../includes/mycred-functions.php:2200
3695
  msgid "Website Registration"
3696
  msgstr ""
3697
 
3698
+ #: ../includes/mycred-functions.php:2201
3699
  msgid "Website Visit"
3700
  msgstr ""
3701
 
3702
+ #: ../includes/mycred-functions.php:2202
3703
  msgid "Viewing Content (Member)"
3704
  msgstr ""
3705
 
3706
+ #: ../includes/mycred-functions.php:2203
3707
  msgid "Viewing Content (Author)"
3708
  msgstr ""
3709
 
3710
+ #: ../includes/mycred-functions.php:2204
3711
  msgid "Logging in"
3712
  msgstr ""
3713
 
3714
+ #: ../includes/mycred-functions.php:2205
3715
  msgid "Publishing Content"
3716
  msgstr ""
3717
 
3718
+ #: ../includes/mycred-functions.php:2206 ../modules/mycred-module-hooks.php:1421
3719
  msgid "Approved Comment"
3720
  msgstr ""
3721
 
3722
+ #: ../includes/mycred-functions.php:2207
3723
  msgid "Unapproved Comment"
3724
  msgstr ""
3725
 
3726
+ #: ../includes/mycred-functions.php:2208
3727
  msgid "SPAM Comment"
3728
  msgstr ""
3729
 
3730
+ #: ../includes/mycred-functions.php:2209
3731
  msgid "Deleted Comment"
3732
  msgstr ""
3733
 
3734
+ #: ../includes/mycred-functions.php:2210
3735
  msgid "Link Click"
3736
  msgstr ""
3737
 
3738
+ #: ../includes/mycred-functions.php:2211
3739
  msgid "Watching Video"
3740
  msgstr ""
3741
 
3742
+ #: ../includes/mycred-functions.php:2212
3743
  msgid "Visitor Referral"
3744
  msgstr ""
3745
 
3746
+ #: ../includes/mycred-functions.php:2213
3747
  msgid "Signup Referral"
3748
  msgstr ""
3749
 
3750
+ #: ../includes/mycred-functions.php:2217
3751
  msgid "New Profile Update"
3752
  msgstr ""
3753
 
3754
+ #: ../includes/mycred-functions.php:2218
3755
  msgid "Avatar Upload"
3756
  msgstr ""
3757
 
3758
+ #: ../includes/mycred-functions.php:2219
3759
  msgid "New Friendship"
3760
  msgstr ""
3761
 
3762
+ #: ../includes/mycred-functions.php:2220
3763
  msgid "Ended Friendship"
3764
  msgstr ""
3765
 
3766
+ #: ../includes/mycred-functions.php:2221
3767
  msgid "New Profile Comment"
3768
  msgstr ""
3769
 
3770
+ #: ../includes/mycred-functions.php:2222
3771
  msgid "Profile Comment Deletion"
3772
  msgstr ""
3773
 
3774
+ #: ../includes/mycred-functions.php:2223
3775
  msgid "New Message"
3776
  msgstr ""
3777
 
3778
+ #: ../includes/mycred-functions.php:2224
3779
  msgid "Sending Gift"
3780
  msgstr ""
3781
 
3782
+ #: ../includes/mycred-functions.php:2225
3783
  msgid "New Group"
3784
  msgstr ""
3785
 
3786
+ #: ../includes/mycred-functions.php:2226
3787
  msgid "Deleted Group"
3788
  msgstr ""
3789
 
3790
+ #: ../includes/mycred-functions.php:2227
3791
  msgid "New Group Forum Topic"
3792
  msgstr ""
3793
 
3794
+ #: ../includes/mycred-functions.php:2228
3795
  msgid "Edit Group Forum Topic"
3796
  msgstr ""
3797
 
3798
+ #: ../includes/mycred-functions.php:2229
3799
  msgid "New Group Forum Post"
3800
  msgstr ""
3801
 
3802
+ #: ../includes/mycred-functions.php:2230
3803
  msgid "Edit Group Forum Post"
3804
  msgstr ""
3805
 
3806
+ #: ../includes/mycred-functions.php:2231
3807
  msgid "Joining Group"
3808
  msgstr ""
3809
 
3810
+ #: ../includes/mycred-functions.php:2232
3811
  msgid "Leaving Group"
3812
  msgstr ""
3813
 
3814
+ #: ../includes/mycred-functions.php:2233
3815
  msgid "New Group Avatar"
3816
  msgstr ""
3817
 
3818
+ #: ../includes/mycred-functions.php:2234
3819
  msgid "New Group Comment"
3820
  msgstr ""
3821
 
3822
+ #: ../includes/mycred-functions.php:2238 ../plugins/mycred-hook-buddypress-media.
3823
  #: php:166
3824
  msgid "Photo Upload"
3825
  msgstr ""
3826
 
3827
+ #: ../includes/mycred-functions.php:2239 ../plugins/mycred-hook-buddypress-media.
3828
  #: php:176
3829
  msgid "Video Upload"
3830
  msgstr ""
3831
 
3832
+ #: ../includes/mycred-functions.php:2240 ../plugins/mycred-hook-buddypress-media.
3833
  #: php:186
3834
  msgid "Music Upload"
3835
  msgstr ""
3836
 
3837
+ #: ../includes/mycred-functions.php:2244
3838
  msgid "New Link"
3839
  msgstr ""
3840
 
3841
+ #: ../includes/mycred-functions.php:2245
3842
  msgid "Link Voting"
3843
  msgstr ""
3844
 
3845
+ #: ../includes/mycred-functions.php:2246
3846
  msgid "Link Update"
3847
  msgstr ""
3848
 
3849
+ #: ../includes/mycred-functions.php:2250
3850
  msgid "New Forum (bbPress)"
3851
  msgstr ""
3852
 
3853
+ #: ../includes/mycred-functions.php:2251
3854
  msgid "New Forum Topic (bbPress)"
3855
  msgstr ""
3856
 
3857
+ #: ../includes/mycred-functions.php:2252
3858
  msgid "Favorited Topic (bbPress)"
3859
  msgstr ""
3860
 
3861
+ #: ../includes/mycred-functions.php:2253
3862
  msgid "New Topic Reply (bbPress)"
3863
  msgstr ""
3864
 
3865
+ #: ../includes/mycred-functions.php:2257
3866
  msgid "Form Submission (Contact Form 7)"
3867
  msgstr ""
3868
 
3869
+ #: ../includes/mycred-functions.php:2260
3870
  msgid "Form Submission (Gravity Form)"
3871
  msgstr ""
3872
 
3873
+ #: ../includes/mycred-functions.php:2263
3874
  msgid "New Forum Topic (SimplePress)"
3875
  msgstr ""
3876
 
3877
+ #: ../includes/mycred-functions.php:2264
3878
  msgid "New Forum Post (SimplePress)"
3879
  msgstr ""
3880
 
3881
+ #: ../includes/mycred-functions.php:2268
3882
  msgid "Poll Voting"
3883
  msgstr ""
3884
 
3885
+ #: ../includes/mycred-functions.php:2271
3886
  msgid "Sending an Invite"
3887
  msgstr ""
3888
 
3889
+ #: ../includes/mycred-functions.php:2272
3890
  msgid "Accepting an Invite"
3891
  msgstr ""
3892
 
3893
+ #: ../includes/mycred-functions.php:2278
3894
  msgid "Banking Payout"
3895
  msgstr ""
3896
 
3897
+ #: ../includes/mycred-functions.php:2281
3898
  msgid "buyCRED Purchase (PayPal Standard)"
3899
  msgstr ""
3900
 
3901
+ #: ../includes/mycred-functions.php:2282
3902
  msgid "buyCRED Purchase (Skrill)"
3903
  msgstr ""
3904
 
3905
+ #: ../includes/mycred-functions.php:2283
3906
  msgid "buyCRED Purchase (Zombaio)"
3907
  msgstr ""
3908
 
3909
+ #: ../includes/mycred-functions.php:2284
3910
  msgid "buyCRED Purchase (NETBilling)"
3911
  msgstr ""
3912
 
3913
+ #: ../includes/mycred-functions.php:2285
3914
  msgid "buyCRED Purchase (BitPay)"
3915
  msgstr ""
3916
 
3917
+ #: ../includes/mycred-functions.php:2290
3918
  msgid "Coupon Purchase"
3919
  msgstr ""
3920
 
3921
+ #: ../includes/mycred-functions.php:2293
3922
  msgid "Store Purchase (WooCommerce)"
3923
  msgstr ""
3924
 
3925
+ #: ../includes/mycred-functions.php:2294
3926
  msgid "Store Purchase (MarketPress)"
3927
  msgstr ""
3928
 
3929
+ #: ../includes/mycred-functions.php:2295
3930
  msgid "Store Purchase (WP E-Commerce)"
3931
  msgstr ""
3932
 
3933
+ #: ../includes/mycred-functions.php:2300
3934
  msgid "Event Payment (Event Espresso)"
3935
  msgstr ""
3936
 
3937
+ #: ../includes/mycred-functions.php:2301
3938
  msgid "Event Sale (Event Espresso)"
3939
  msgstr ""
3940
 
3941
+ #: ../includes/mycred-functions.php:2305
3942
  msgid "Event Payment (Events Manager)"
3943
  msgstr ""
3944
 
3945
+ #: ../includes/mycred-functions.php:2306
3946
  msgid "Event Sale (Events Manager)"
3947
  msgstr ""
3948
 
3949
+ #: ../includes/mycred-functions.php:2310
3950
  msgid "Content Purchase / Sale"
3951
  msgstr ""
3952
 
3953
+ #: ../includes/mycred-functions.php:2317
3954
  msgid "Manual Adjustment by Admin"
3955
  msgstr ""
3956
 
4114
  "disable."
4115
  msgstr ""
4116
 
4117
+ #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
4118
+ msgid "Excludes"
4119
+ msgstr ""
4120
+
4121
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4122
  msgid "Exclude those who can \"Edit Settings\"."
4123
  msgstr ""
4225
  msgid "Entry"
4226
  msgstr ""
4227
 
4228
+ #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:468
4229
  msgid "User Missing"
4230
  msgstr ""
4231
 
4405
  "about your setup!"
4406
  msgstr ""
4407
 
4408
+ #: ../includes/mycred-shortcodes.php:154
4409
  msgid "Leaderboard is empty."
4410
  msgstr ""
4411
 
4412
+ #: ../includes/mycred-shortcodes.php:425 ../includes/mycred-shortcodes.php:549
4413
  msgid "Amount missing!"
4414
  msgstr ""
4415
 
4416
+ #: ../includes/mycred-shortcodes.php:428 ../includes/mycred-shortcodes.php:557
4417
  msgid "Log Template Missing!"
4418
  msgstr ""
4419
 
4420
+ #: ../includes/mycred-shortcodes.php:491
4421
  msgid "Anchor missing URL!"
4422
  msgstr ""
4423
 
4424
+ #: ../includes/mycred-shortcodes.php:553
4425
  msgid "User ID missing for recipient."
4426
  msgstr ""
4427
 
4428
+ #: ../includes/mycred-shortcodes.php:608
4429
  msgid "Sent"
4430
  msgstr ""
4431
 
4432
+ #: ../includes/mycred-shortcodes.php:609
4433
  msgid "Error - Try Again"
4434
  msgstr ""
4435
 
4436
+ #: ../includes/mycred-shortcodes.php:718
4437
  msgid "A video ID is required for this shortcode"
4438
  msgstr ""
4439
 
4440
+ #: ../includes/mycred-shortcodes.php:864 ../includes/mycred-shortcodes.php:958
4441
  msgid "Point types not found."
4442
  msgstr ""
4443
 
4444
+ #: ../includes/mycred-shortcodes.php:870 ../includes/mycred-shortcodes.php:878 ..
4445
+ #: includes/mycred-shortcodes.php:970 ../includes/mycred-shortcodes.php:990
4446
  #, php-format
4447
  msgid "You are excluded from using %s."
4448
  msgstr ""
4449
 
4450
+ #: ../includes/mycred-shortcodes.php:874 ../includes/mycred-shortcodes.php:980
4451
  msgid "Your balance is too low to use this feature."
4452
  msgstr ""
4453
 
4454
+ #: ../includes/mycred-shortcodes.php:895
4455
  #, php-format
4456
  msgid "Convert <span>%s</span> to <span>%s</span>"
4457
  msgstr ""
4458
 
4459
+ #: ../includes/mycred-shortcodes.php:904
4460
  #, php-format
4461
  msgid "Your current %s balance"
4462
  msgstr ""
4463
 
4464
+ #: ../includes/mycred-shortcodes.php:912
4465
  #, php-format
4466
  msgid "Minimum %s"
4467
  msgstr ""
4468
 
4469
+ #: ../includes/mycred-shortcodes.php:916
4470
  #, php-format
4471
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4472
  msgstr ""
4473
 
4474
+ #: ../includes/mycred-shortcodes.php:922
4475
  msgid "Exchange"
4476
  msgstr ""
4477
 
4478
+ #: ../includes/mycred-shortcodes.php:1003
4479
  #, php-format
4480
  msgid "You must exchange at least %s!"
4481
  msgstr ""
4482
 
4483
+ #: ../includes/mycred-shortcodes.php:1025
4484
  #, php-format
4485
  msgid "Exchange from %s"
4486
  msgstr ""
4487
 
4488
+ #: ../includes/mycred-shortcodes.php:1037
4489
  #, php-format
4490
  msgid "Exchange to %s"
4491
  msgstr ""
4492
 
4493
+ #: ../includes/mycred-shortcodes.php:1045
4494
  #, php-format
4495
  msgid "You have successfully exchanged %s into %s."
4496
  msgstr ""
4787
  msgid "Give your users badges based on their interaction with your website."
4788
  msgstr ""
4789
 
4790
+ #: ../modules/mycred-module-addons.php:158
4791
+ msgid "Setup recurring payouts or offer / charge interest on user account balances."
4792
+ msgstr ""
4793
+
4794
  #: ../modules/mycred-module-addons.php:169
4795
  msgid ""
4796
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5091
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5092
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5093
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5094
+ #: 2645 ../modules/mycred-module-hooks.php:2674 ../plugins/mycred-hook-badgeOS.
5095
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5096
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5097
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
5153
  msgid "%plural% for viewing %s"
5154
  msgstr ""
5155
 
5156
+ #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2653
5157
+ #: ../modules/mycred-module-hooks.php:2682 ../plugins/mycred-hook-invite-anyone.
5158
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5159
  msgid "Limit"
5160
  msgstr ""
5236
  msgid "Custom tags: %url%, %title% or %id%."
5237
  msgstr ""
5238
 
5239
+ #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2756
5240
  msgid "Note!"
5241
  msgstr ""
5242
 
5310
  msgid "Link"
5311
  msgstr ""
5312
 
5313
+ #: ../modules/mycred-module-hooks.php:2639
5314
  msgid "Referring Visitors"
5315
  msgstr ""
5316
 
5317
+ #: ../modules/mycred-module-hooks.php:2663 ../modules/mycred-module-hooks.php:2692
5318
  msgid "The number of referrals each member can make. Use zero for unlimited."
5319
  msgstr ""
5320
 
5321
+ #: ../modules/mycred-module-hooks.php:2667 ../modules/mycred-module-hooks.php:2696
5322
  msgid "Referring Signups"
5323
  msgstr ""
5324
 
5325
+ #: ../modules/mycred-module-hooks.php:2671
5326
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5327
  msgstr ""
5328
 
5329
+ #: ../modules/mycred-module-hooks.php:2698
5330
  msgid "Registrations are disabled."
5331
  msgstr ""
5332
 
5333
+ #: ../modules/mycred-module-hooks.php:2705
5334
  msgid "Referral Links"
5335
  msgstr ""
5336
 
5337
+ #: ../modules/mycred-module-hooks.php:2709
5338
  msgid "Assign numeric referral IDs to each user."
5339
  msgstr ""
5340
 
5341
+ #: ../modules/mycred-module-hooks.php:2710 ../modules/mycred-module-hooks.php:2716
5342
  msgid "Example"
5343
  msgstr ""
5344
 
5345
+ #: ../modules/mycred-module-hooks.php:2715
5346
  msgid "Assign usernames as IDs for each user."
5347
  msgstr ""
5348
 
5349
+ #: ../modules/mycred-module-hooks.php:2719
5350
  msgid "IP Limit"
5351
  msgstr ""
5352
 
5353
+ #: ../modules/mycred-module-hooks.php:2723
5354
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5355
  msgstr ""
5356
 
5357
+ #: ../modules/mycred-module-hooks.php:2727 ../modules/mycred-module-hooks.php:2760
5358
  msgid "BuddyPress Profile"
5359
  msgstr ""
5360
 
5361
+ #: ../modules/mycred-module-hooks.php:2730
5362
  msgid "Insert Link in users Profile"
5363
  msgstr ""
5364
 
5365
+ #: ../modules/mycred-module-hooks.php:2731
5366
  msgid ""
5367
  "Option to inser the referral link in users profiles. Links will only be "
5368
  "visible to users viewing their own profiles or administrators."
5369
  msgstr ""
5370
 
5371
+ #: ../modules/mycred-module-hooks.php:2737
5372
  msgid "Leave empty to hide."
5373
  msgstr ""
5374
 
5375
+ #: ../modules/mycred-module-hooks.php:2740
5376
  msgid "Description"
5377
  msgstr ""
5378
 
5379
+ #: ../modules/mycred-module-hooks.php:2741
5380
  msgid "Optional description to insert under the link."
5381
  msgstr ""
5382
 
5383
+ #: ../modules/mycred-module-hooks.php:2753
5384
  msgid "Profile Positioning"
5385
  msgstr ""
5386
 
5387
+ #: ../modules/mycred-module-hooks.php:2755
5388
  msgid ""
5389
  "You can move around the referral link on your users profile by changing the "
5390
  "position. Increase to move up, decrease to move down."
5391
  msgstr ""
5392
 
5393
+ #: ../modules/mycred-module-hooks.php:2756
5394
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5395
  msgstr ""
5396
 
5397
+ #: ../modules/mycred-module-hooks.php:2762
5398
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5399
  msgstr ""
5400
 
5419
  msgid "Entries"
5420
  msgstr ""
5421
 
5422
+ #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
5423
+ #: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:574
5424
  msgid "Export"
5425
  msgstr ""
5426
 
5428
  msgid "Search results for"
5429
  msgstr ""
5430
 
5431
+ #: ../modules/mycred-module-log.php:378
5432
  #, php-format
5433
  msgid "%s Log"
5434
  msgstr ""
5435
 
5436
+ #: ../modules/mycred-module-log.php:506
5437
  msgid "Edit"
5438
  msgstr ""
5439
 
5440
+ #: ../modules/mycred-module-log.php:547
5441
  msgid "Time"
5442
  msgstr ""
5443
 
5444
+ #: ../modules/mycred-module-log.php:551
5445
  msgid "Current Log Entry"
5446
  msgstr ""
5447
 
5448
+ #: ../modules/mycred-module-log.php:553
5449
  msgid "The current saved log entry"
5450
  msgstr ""
5451
 
5452
+ #: ../modules/mycred-module-log.php:556
5453
  msgid "Adjust Log Entry"
5454
  msgstr ""
5455
 
5456
+ #: ../modules/mycred-module-log.php:558
5457
  msgid "The new log entry"
5458
  msgstr ""
5459
 
5460
+ #: ../modules/mycred-module-log.php:561
5461
  msgid "Update Log Entry"
5462
  msgstr ""
5463
 
5464
+ #: ../modules/mycred-module-log.php:628
5465
  #, php-format
5466
  msgid "My %s History"
5467
  msgstr ""
6148
  #, php-format
6149
  msgid "Awards %_plural% for users voting in polls."
6150
  msgstr ""
 
 
 
 
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 Jul 28 2014 16:20:18 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Spanish\n"
@@ -15,7 +15,7 @@ msgstr ""
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,xt_noop:1,2;"
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
@@ -44,8 +44,8 @@ msgstr "Gente genial"
44
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
45
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
46
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
47
- #: sell-content.php:364 ../addons/transfer/myCRED-addon-transfer.php:132 ..
48
- #: includes/mycred-shortcodes.php:605
49
  msgid "Processing..."
50
  msgstr "Procesando..."
51
 
@@ -151,7 +151,7 @@ msgid "Once per day (reset at midnight)"
151
  msgstr "Una vez al dia (reinicializado al medianoche)"
152
 
153
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
154
- #: abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
155
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
157
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
@@ -177,8 +177,8 @@ msgstr "haga clic para cerrar"
177
  msgid "click to open"
178
  msgstr "haga clic para abrir"
179
 
180
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-
181
- #: banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:849
182
  msgid "Settings Updated"
183
  msgstr "Configuraciones Actualizadas"
184
 
@@ -383,147 +383,192 @@ msgstr ""
383
  msgid "in total"
384
  msgstr ""
385
 
386
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-
387
- #: banking.php:43 ../addons/banking/myCRED-addon-banking.php:44
388
  msgid "Banking"
389
  msgstr "Banco"
390
 
391
- #: ../addons/banking/myCRED-addon-banking.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
392
  msgid "Compound Interest"
393
  msgstr "Interés Compuesto"
394
 
395
- #: ../addons/banking/myCRED-addon-banking.php:104
396
  #, php-format
397
- msgid ""
398
- "Apply an interest rate on your users %_plural% balances. Interest rate is "
399
- "annual and is compounded daily as long as this service is enabled. Positive "
400
- "interest rate leads to users gaining %_plural% while a negative interest "
401
- "rate will to users loosing %_plural%."
402
  msgstr ""
403
- "Aplica una tasa de interés al saldo [.....] de sus usuarios. La tasa es "
404
- "anual y es compuesto diariamente mientras que este servicio esta activada. "
405
- "Un tipo de interés positiva causara a los usuarios a ganar [.....] mientras "
406
- "que un tipo de interés negativa causara a los usuarios a perder %_plural%."
407
 
408
- #: ../addons/banking/myCRED-addon-banking.php:110
409
  msgid "Recurring Payouts"
410
  msgstr "Pagos Recurrentes"
411
 
412
- #: ../addons/banking/myCRED-addon-banking.php:111
413
- #, php-format
414
- msgid ""
415
- "Give your users %_plural% on a regular basis with the option to set the "
416
- "number of times you want this payout to run (cycles)."
417
  msgstr ""
418
- "Da a tus usuarios %_plural% a intervalos regulares con la opción de ajustar "
419
- "cuantas vezes quieres que este pago se repita (ciclos)"
420
 
421
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-
422
- #: addon-buy-creds.php:839 ../addons/buy-creds/myCRED-addon-buy-creds.php:935 ..
423
- #: includes/mycred-admin.php:573 ../includes/mycred-network.php:148 ..
424
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
425
- #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:579 ..
426
  #: modules/mycred-module-settings.php:312
427
  msgid "Access Denied"
428
  msgstr "Acceso Denegado"
429
 
430
- #: ../addons/banking/myCRED-addon-banking.php:167
431
  #, php-format
432
  msgid "%s Banking"
433
  msgstr "%s Bancario"
434
 
435
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.
436
- #: php:158
437
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
438
  msgstr ""
439
- "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
440
- "de las cuentas de usuarios."
441
 
442
- #: ../addons/banking/myCRED-addon-banking.php:171
443
  msgid "WP-Cron deactivation detected!"
444
  msgstr "¡Se detecto la desactivación de WP-Cron!"
445
 
446
- #: ../addons/banking/myCRED-addon-banking.php:172
447
  msgid "Warning! This add-on requires WP - Cron to work."
448
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
449
 
450
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-
451
- #: addon-buy-creds.php:873 ../modules/mycred-module-hooks.php:196
452
  msgid "Enable"
453
  msgstr "Activar"
454
 
455
- #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
456
  #: php:211
457
  msgid "Update Changes"
458
  msgstr "Actualizar Cambios"
459
 
460
- #: ../addons/banking/abstracts/mycred-abstract-service.php:57
461
- msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
462
- msgstr "La función myCRED_Service::run() debe ser anulado en un sub-clase."
463
-
464
- #: ../addons/banking/abstracts/mycred-abstract-service.php:66
465
  msgid "This Service has no settings"
466
  msgstr "Este servicio no ha sido configurado"
467
 
468
  #. also, "Cada Hora"
469
- #: ../addons/banking/abstracts/mycred-abstract-service.php:143
470
  msgid "Hourly"
471
  msgstr "Por Hora"
472
 
473
- #: ../addons/banking/abstracts/mycred-abstract-service.php:147
474
  msgid "Daily"
475
  msgstr "Diario"
476
 
477
- #: ../addons/banking/abstracts/mycred-abstract-service.php:151
478
  msgid "Weekly"
479
  msgstr "Semanal"
480
 
481
- #: ../addons/banking/abstracts/mycred-abstract-service.php:155
482
  msgid "Monthly"
483
  msgstr "Mensual"
484
 
485
- #: ../addons/banking/abstracts/mycred-abstract-service.php:159
486
  msgid "Quarterly"
487
  msgstr "Trimestral"
488
 
489
- #: ../addons/banking/abstracts/mycred-abstract-service.php:163
490
  msgid "Semiannually"
491
  msgstr "Semestral"
492
 
493
- #: ../addons/banking/abstracts/mycred-abstract-service.php:167
494
  msgid "Annually"
495
  msgstr "Anual"
496
 
497
- #: ../addons/banking/services/mycred-bank-service-interest.php:25
 
 
 
 
 
 
 
 
 
 
 
 
498
  msgid "%plural% interest rate payment"
499
  msgstr "%plural% pago de tasa de interés"
500
 
501
- #: ../addons/banking/services/mycred-bank-service-interest.php:275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
502
  msgid "Interest Rate"
503
  msgstr "Tasa de Interés"
504
 
505
- #: ../addons/banking/services/mycred-bank-service-interest.php:282
506
- msgid "Payed / Charged"
507
- msgstr "Pagado / Cobrado"
508
-
509
- #: ../addons/banking/services/mycred-bank-service-interest.php:288
510
- msgid "The interest rate can be either positive or negative and is compounded daily."
511
  msgstr ""
512
- "La tasa de interés puede ser o positivo o negativo y es compuesto "
513
- "diariamente."
514
 
515
- #: ../addons/banking/services/mycred-bank-service-interest.php:291 ..
516
- #: addons/coupons/myCRED-addon-coupons.php:392
517
- msgid "Minimum Balance"
518
- msgstr "Saldo Minimo"
519
 
520
- #: ../addons/banking/services/mycred-bank-service-interest.php:295
521
- msgid "The minimum requires balance for interest to apply."
522
- msgstr "El minimo saldo necesario para aplicar una tasa de interés."
 
523
 
524
  #. can also be "Plantilla de Bitácora"
525
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ..
526
- #: addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-
527
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
528
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
529
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
@@ -541,95 +586,119 @@ msgstr "El minimo saldo necesario para aplicar una tasa de interés."
541
  msgid "Log Template"
542
  msgstr "Plantilla de Registro"
543
 
544
- #: ../addons/banking/services/mycred-bank-service-interest.php:305 ..
545
- #: addons/banking/services/mycred-bank-service-payouts.php:259
546
- msgid "Run Time"
547
- msgstr "Tiempo de Ejecución"
 
548
 
549
- #: ../addons/banking/services/mycred-bank-service-interest.php:309 ..
550
- #: addons/banking/services/mycred-bank-service-payouts.php:263
551
- msgid ""
552
- "For large websites, if you are running into time out issues during payouts, "
553
- "you can set the number of seconds a process can run. Use zero for unlimited, "
554
- "but be careful especially if you are on a shared server."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
555
  msgstr ""
556
- "Para sitios web grandes, si tienes problemas de expiramiento durante pagos, "
557
- "puedes ajustar cuantos segundos un proceso puede operar. Ponga cero si "
558
- "quiere ilimitado, pero tenga cuidado especialmente si esta usando un "
559
- "servidor compartido."
560
 
561
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
562
  msgid "Daily %_plural%"
563
  msgstr "%_plural% diarios"
564
 
565
- #: ../addons/banking/services/mycred-bank-service-payouts.php:214
566
- msgid "Not yet run"
567
- msgstr "Todavia no ejecutado"
 
 
568
 
569
- #: ../addons/banking/services/mycred-bank-service-payouts.php:219
 
 
 
 
 
 
 
 
570
  msgid "Pay Users"
571
  msgstr "Pagar a los Usuarios"
572
 
573
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
574
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
575
- #: creds.php:1520 ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ..
576
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
577
- #: includes/mycred-admin.php:726 ../includes/mycred-admin.php:771 ..
578
- #: includes/mycred-shortcodes.php:908
579
  msgid "Amount"
580
  msgstr "Cantidad"
581
 
582
- #: ../addons/banking/services/mycred-bank-service-payouts.php:224
583
- msgid "Can not be zero."
584
- msgstr "No puede ser cero."
585
-
586
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ..
587
- #: addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-
588
- #: module-hooks.php:2113
589
  msgid "Interval"
590
  msgstr "Interval"
591
 
592
- #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ..
593
- #: addons/banking/services/mycred-bank-service-payouts.php:242
594
  msgid "Cycles"
595
  msgstr "Ciclos"
596
 
597
- #: ../addons/banking/services/mycred-bank-service-payouts.php:235
598
  msgid "Set to -1 for unlimited"
599
  msgstr "Ajusta a -1 para ilimitado"
600
 
601
- #: ../addons/banking/services/mycred-bank-service-payouts.php:238
602
- msgid "Last Run / Activated"
603
- msgstr "Ejecución Reciente / Activado"
604
-
605
- #: ../addons/banking/services/mycred-bank-service-payouts.php:241
606
- msgid ""
607
- "Select how often you want to award %_plural%. Note that when this service is "
608
- "enabled, the first payout will be in the beginning of the next period. So "
609
- "with a \"Daily\" interval, the first payout will occur first thing in the "
610
- "morning."
611
- msgstr ""
612
- "Elige la frecuencia con cual quieres conceder %_plural%. Ten en cuenta que "
613
- "cuando este servicio está activado, el primer pago se realizara al comienzo "
614
- "del siguiente período. Así que con la frecuencia de \"Diario\", el primer pago "
615
- "se realizará a primera hora de la mañana proxima."
616
-
617
- #: ../addons/banking/services/mycred-bank-service-payouts.php:242
618
- msgid ""
619
- "Cycles let you choose how many intervals this service should run. Each time "
620
- "a cycle runs, the value will decrease until it hits zero, in which case this "
621
- "service will deactivate itself. Use -1 to run unlimited times."
622
- msgstr ""
623
- "Ciclos te permiten ajustar por cuantos intervalos este servicio debe "
624
- "ejecutarse. Cada vez que se ejecuta un ciclo, el valor disminuirá hasta que "
625
- "llegue a cero, en cuyo caso este servicio se desactivará a sí mismo. Utilice "
626
- "-1 para que se ejecute ilimitadas veces."
627
-
628
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
629
  msgid "Important"
630
  msgstr "Importante"
631
 
632
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
633
  msgid ""
634
  "You can always stop payouts by deactivating this service. Just remember that "
635
  "if you deactivate while there are cycles left, this service will continue on "
@@ -640,19 +709,6 @@ msgstr ""
640
  "ciclos para completar, este servicio volverá a continuar en cuando se vuelvá "
641
  "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
642
 
643
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
644
- #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
645
- msgid "Excludes"
646
- msgstr "Excluye"
647
-
648
- #: ../addons/banking/services/mycred-bank-service-payouts.php:249
649
- msgid ""
650
- "Comma separated list of user IDs to exclude from this service. No spaces "
651
- "allowed!"
652
- msgstr ""
653
- "Lista separada por comas de los IDs de usuario para excluir de este servicio."
654
- " ¡No se permiten espacios!"
655
-
656
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
657
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
658
  msgid "Payment Gateways"
@@ -678,7 +734,7 @@ msgid "Edit Pending Payment"
678
  msgstr ""
679
 
680
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
681
- #: addon-buy-creds.php:1631
682
  msgid "No pending payments found"
683
  msgstr ""
684
 
@@ -687,23 +743,23 @@ msgid "Not found in Trash"
687
  msgstr ""
688
 
689
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
690
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595
691
  msgid "Transaction ID"
692
  msgstr "Identificación de la Transacción"
693
 
694
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
695
- #: addon-buy-creds.php:984
696
  msgid "Buyer"
697
  msgstr ""
698
 
699
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
700
- #: addon-buy-creds.php:1598 ../addons/buy-creds/abstracts/mycred-abstract-payment-
701
  #: gateway.php:563
702
  msgid "Cost"
703
  msgstr "Costo"
704
 
705
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
706
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1596 ..
707
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
708
  msgid "Gateway"
709
  msgstr "Pasarela"
@@ -721,14 +777,14 @@ msgid "buyCRED Purchase Log"
721
  msgstr "compraCRED Registro de Compras"
722
 
723
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
724
- #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:845
725
  msgid "Purchase Log"
726
  msgstr "Registro de Compras"
727
 
728
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
729
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
730
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
731
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:416
732
  msgid "Payments"
733
  msgstr "Pagos"
734
 
@@ -807,7 +863,7 @@ msgid "Allow users to buy %_plural% for content authors."
807
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
808
 
809
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
810
- #: hooks.php:2748
811
  msgid "Available Shortcodes"
812
  msgstr "Códigos cortos Disponibles"
813
 
@@ -816,159 +872,154 @@ msgstr "Códigos cortos Disponibles"
816
  msgid "%s Exchange Rate"
817
  msgstr ""
818
 
819
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:759 ../addons/sell-
820
- #: content/myCRED-addon-sell-content.php:113
821
- msgid "Leave empty to use the default value."
822
- msgstr ""
823
-
824
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
825
  msgid "Save Exchange Rates"
826
  msgstr ""
827
 
828
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
829
  msgid "Exchange rate override saved"
830
  msgstr ""
831
 
832
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:827
833
  msgid "Payment completed"
834
  msgstr ""
835
 
836
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
837
  #, php-format
838
  msgid "%s Payment Gateways"
839
  msgstr "%s Pasarelas de Pago"
840
 
841
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845 ../addons/buy-creds/myCRED-
842
- #: addon-buy-creds.php:992
843
  msgid "buyCRED Settings"
844
  msgstr "Configuraciones de compraCRED"
845
 
846
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
847
  msgid "Test Mode"
848
  msgstr "Modo de Prueba"
849
 
850
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
851
  msgid "Enabled"
852
  msgstr "Habilitado"
853
 
854
  #. also, "Inhabilitar"
855
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:871
856
  msgid "Disabled"
857
  msgstr "Deshactivado"
858
 
859
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
860
  msgid "Sandbox Mode"
861
  msgstr "Modo Entorno Aislado"
862
 
863
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:884
864
  msgid "Enable for test purchases."
865
  msgstr "Habilitar para compras de prueba."
866
 
867
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:901 ../addons/gateway/event-
868
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
869
  msgid "Update Settings"
870
  msgstr "Actualizar Configuraciones"
871
 
872
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
873
  msgid "More Gateways"
874
  msgstr ""
875
 
876
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
877
  #: 634
878
  msgid "Date"
879
  msgstr "Fecha"
880
 
881
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
882
  msgid "Payed"
883
  msgstr "Pagado"
884
 
885
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
886
  msgid "<strong>buy</strong>CRED Purchase Log"
887
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
888
 
889
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
890
  #: booking/mycred-eventespresso3.php:367
891
  msgid "Gateway Settings"
892
  msgstr "Configuraciones de la Pasarela de Pago"
893
 
894
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1168 ../addons/sell-
895
- #: content/myCRED-addon-sell-content.php:1184
896
  msgid "No purchases found"
897
  msgstr "No se encontro ninguna compra"
898
 
899
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1238 ../addons/buy-creds/myCRED-
900
- #: addon-buy-creds.php:1351
901
  msgid "This Add-on needs to setup before you can use this shortcode."
902
  msgstr ""
903
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
904
  "corto (shortcode)."
905
 
906
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1257 ../addons/buy-creds/myCRED-
907
- #: addon-buy-creds.php:1370
908
  msgid "No gateways installed."
909
  msgstr "Ningun pasarela de pago instalado."
910
 
911
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1258 ../addons/buy-creds/myCRED-
912
- #: addon-buy-creds.php:1371
913
  msgid "Gateway does not exist."
914
  msgstr "Puerta de enlace no existe."
915
 
916
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1306
917
  msgid "Yourself"
918
  msgstr "Tu mismo"
919
 
920
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1372
921
  msgid "No active gateways found."
922
  msgstr "No se encuentra ningun puerta de enlace activo."
923
 
924
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1373
925
  msgid "The selected gateway is not active."
926
  msgstr "La puerta de enlace seleccionada no esta activo."
927
 
928
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1420
929
  #, php-format
930
  msgid "Buy with %gateway%"
931
  msgstr "Compra con %gateway%"
932
 
933
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1426 ../addons/sell-
934
  #: content/myCRED-addon-sell-content.php:44
935
  msgid "Buy Now"
936
  msgstr "Compra Ahora"
937
 
938
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1471
939
  msgid "No users found"
940
  msgstr "Ningun Usuario Encontrado"
941
 
942
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1481
943
  msgid "To"
944
  msgstr "A"
945
 
946
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1498
947
  msgid "Select Amount"
948
  msgstr "Selecciona la Cantidad"
949
 
950
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1522
951
  msgid "min."
952
  msgstr "min."
953
 
954
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1530
955
  msgid "Select Gateway"
956
  msgstr "Selecciona la Pasarela de Pago"
957
 
958
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1571 ../addons/gateway/event-
959
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
960
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
961
  #: php:35
962
  msgid "Pay Now"
963
  msgstr "Pagar Ahora"
964
 
965
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1572 ../includes/mycred-install.
966
  #: php:515
967
  msgid "Cancel"
968
  msgstr "Cancelar"
969
 
970
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ../addons/ranks/myCRED-
971
- #: addon-ranks.php:990 ../modules/mycred-module-log.php:372 ../modules/mycred-
972
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
973
  msgid "Actions"
974
  msgstr "Acciones"
@@ -1009,12 +1060,12 @@ msgid "Cancel purchase"
1009
  msgstr "Cancelar la compra"
1010
 
1011
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1012
- #: includes/mycred-admin.php:720 ../includes/mycred-admin.php:757
1013
  msgid "required"
1014
  msgstr "necesario"
1015
 
1016
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1017
- #: includes/mycred-admin.php:722 ../includes/mycred-admin.php:759
1018
  msgid "optional"
1019
  msgstr "opcional"
1020
 
@@ -1418,7 +1469,7 @@ msgstr "Página de Pago"
1418
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1419
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1420
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1421
- #: modules/mycred-module-hooks.php:2713
1422
  msgid "Title"
1423
  msgstr "Titulo"
1424
 
@@ -1667,7 +1718,7 @@ msgstr "La cantidad de %plural% que vale este cupón."
1667
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1668
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1669
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1670
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:404 ..
1671
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1672
  #: includes/importers/mycred-cubepoints.php:365
1673
  msgid "Point Type"
@@ -2074,8 +2125,8 @@ msgid "Sent To"
2074
  msgstr "Enviado A:"
2075
 
2076
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2077
- #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:766 ..
2078
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:544
2079
  msgid "User"
2080
  msgstr "Usuario"
2081
 
@@ -2201,7 +2252,7 @@ msgstr ""
2201
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2202
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2203
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2204
- #: php:412 ../includes/mycred-admin.php:614 ../includes/mycred-admin.php:767
2205
  msgid "Current Balance"
2206
  msgstr "Saldo Actual"
2207
 
@@ -2324,7 +2375,7 @@ msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
2324
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2325
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2326
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2327
- #: php:578 ../includes/mycred-shortcodes.php:913
2328
  msgid "Exchange Rate"
2329
  msgstr "Tipo de Cambio"
2330
 
@@ -2558,10 +2609,6 @@ msgstr "Plantilla de Registro para Pagos"
2558
  msgid "How much is 1 %s worth in %s"
2559
  msgstr "Cuanto vale 1 %s en %s"
2560
 
2561
- #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2562
- msgid "Payout"
2563
- msgstr "Desembolso"
2564
-
2565
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2566
  msgid "Instructions"
2567
  msgstr "Instrucciones"
@@ -2637,8 +2684,8 @@ msgstr "El titulo a mostrar en la factura y en los registros."
2637
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2638
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2639
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2640
- #: content/myCRED-addon-sell-content.php:452 ../addons/sell-content/myCRED-addon-
2641
- #: sell-content.php:662
2642
  msgid "Button Label"
2643
  msgstr "Eqiqueta Asignada al Botón"
2644
 
@@ -2651,8 +2698,8 @@ msgstr "Botón de Pago"
2651
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2652
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2653
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2654
- #: content/myCRED-addon-sell-content.php:443 ../addons/sell-content/myCRED-addon-
2655
- #: sell-content.php:658
2656
  msgid "Price"
2657
  msgstr "Precio"
2658
 
@@ -2674,12 +2721,12 @@ msgid "Log"
2674
  msgstr "Registro"
2675
 
2676
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2677
- #: includes/mycred-admin.php:735 ../includes/mycred-admin.php:772
2678
  msgid "Log Entry"
2679
  msgstr "Entrada de Registro"
2680
 
2681
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2682
- #: content/myCRED-addon-sell-content.php:466
2683
  msgid "Templates"
2684
  msgstr "Plantillas"
2685
 
@@ -2761,7 +2808,7 @@ msgid "Reject"
2761
  msgstr "Rechazar"
2762
 
2763
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2764
- #: modules/mycred-module-log.php:504 ../modules/mycred-module-settings.php:488 ..
2765
  #: modules/mycred-module-settings.php:507
2766
  msgid "Delete"
2767
  msgstr "Borrar"
@@ -3224,9 +3271,9 @@ msgid "No users found with this rank"
3224
  msgstr "Ningun usuario encontrado con este rango"
3225
 
3226
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3227
- #: shortcodes.php:424 ../includes/mycred-shortcodes.php:427 ../includes/mycred-
3228
- #: shortcodes.php:489 ../includes/mycred-shortcodes.php:547 ../includes/mycred-
3229
- #: shortcodes.php:551 ../includes/mycred-shortcodes.php:555
3230
  msgid "error"
3231
  msgstr "error"
3232
 
@@ -3246,44 +3293,44 @@ msgstr ""
3246
  msgid "Save Profit Share"
3247
  msgstr ""
3248
 
3249
- #: ../addons/sell-content/myCRED-addon-sell-content.php:158
3250
  msgid "Profit Share override saved"
3251
  msgstr ""
3252
 
3253
- #: ../addons/sell-content/myCRED-addon-sell-content.php:320
3254
  msgid "You can not buy this content."
3255
  msgstr "No puedes comprar este contenido."
3256
 
3257
- #: ../addons/sell-content/myCRED-addon-sell-content.php:365
3258
  msgid "Error. Try Again"
3259
  msgstr "Error. Inténtelo de nuevo"
3260
 
3261
- #: ../addons/sell-content/myCRED-addon-sell-content.php:387
3262
  msgid "No Payout. Just charge."
3263
  msgstr "No Desembolsar. Solo cobrar."
3264
 
3265
- #: ../addons/sell-content/myCRED-addon-sell-content.php:388
3266
  msgid "Pay Content Author."
3267
  msgstr "Pagar al Autor del Contenido"
3268
 
3269
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394 ../includes/mycred-
3270
  #: overview.php:141 ../includes/mycred-overview.php:148
3271
  msgid "Sell Content"
3272
  msgstr "Vender Contenido"
3273
 
3274
- #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3275
  msgid "Post Types"
3276
  msgstr "Post Types"
3277
 
3278
- #: ../addons/sell-content/myCRED-addon-sell-content.php:400
3279
  msgid "Comma separated list of post types that can be sold."
3280
  msgstr "Lista separada por comas de post types que se puede vender."
3281
 
3282
- #: ../addons/sell-content/myCRED-addon-sell-content.php:430
3283
  msgid "Percentage to pay Author"
3284
  msgstr "Porcentaje que pagar al Autor"
3285
 
3286
- #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3287
  msgid ""
3288
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3289
  "authors are not paid."
@@ -3292,31 +3339,31 @@ msgstr ""
3292
  "si no se les paga a los autores."
3293
 
3294
  #. also, "por defecto" and "predeterminados"
3295
- #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3296
  msgid "Defaults"
3297
  msgstr "Predefinidos"
3298
 
3299
- #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3300
  msgid "Allow authors to change price."
3301
  msgstr "Permitir que los Autores cambien el precio."
3302
 
3303
- #: ../addons/sell-content/myCRED-addon-sell-content.php:457
3304
  msgid "Allow authors to change button label."
3305
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
3306
 
3307
- #: ../addons/sell-content/myCRED-addon-sell-content.php:461
3308
  msgid "Purchases expire after"
3309
  msgstr "Compras caducan despues de"
3310
 
3311
- #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3312
  msgid "Use zero for permanent sales."
3313
  msgstr "Usa cero para ventas permanentes."
3314
 
3315
- #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3316
  msgid "For Visitors"
3317
  msgstr ""
3318
 
3319
- #: ../addons/sell-content/myCRED-addon-sell-content.php:474
3320
  #, php-format
3321
  msgid ""
3322
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3325,69 +3372,69 @@ msgstr ""
3325
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
3326
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
3327
 
3328
- #: ../addons/sell-content/myCRED-addon-sell-content.php:479
3329
  msgid "For Members"
3330
  msgstr ""
3331
 
3332
- #: ../addons/sell-content/myCRED-addon-sell-content.php:484 ../addons/sell-
3333
- #: content/myCRED-addon-sell-content.php:494
3334
  #, php-format
3335
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3336
  msgstr ""
3337
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
3338
  "realizar compras!"
3339
 
3340
- #: ../addons/sell-content/myCRED-addon-sell-content.php:489
3341
  msgid "For members that can not afford to buy"
3342
  msgstr ""
3343
 
3344
- #: ../addons/sell-content/myCRED-addon-sell-content.php:498
3345
  msgid "Log template for Purchases"
3346
  msgstr "Plantilla de registros para Compras"
3347
 
3348
- #: ../addons/sell-content/myCRED-addon-sell-content.php:505
3349
  msgid "Log template for Sales"
3350
  msgstr "Plantilla de registros para Ventas"
3351
 
3352
- #: ../addons/sell-content/myCRED-addon-sell-content.php:557
3353
  #, php-format
3354
  msgid "%s Sell This"
3355
  msgstr "%s Vende Esto"
3356
 
3357
- #: ../addons/sell-content/myCRED-addon-sell-content.php:611
3358
  #, php-format
3359
  msgid "%s Sell Content needs to be setup before you can use this feature."
3360
  msgstr ""
3361
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
3362
  "esta característica técnica."
3363
 
3364
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3365
  msgid "Setup add-on"
3366
  msgstr "Configurar Extensión"
3367
 
3368
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3369
  msgid "Lets do it"
3370
  msgstr "Vamos a hacerlo."
3371
 
3372
- #: ../addons/sell-content/myCRED-addon-sell-content.php:652
3373
  #, php-format
3374
  msgid "Enable sale of this %s"
3375
  msgstr ""
3376
 
3377
- #: ../addons/sell-content/myCRED-addon-sell-content.php:666
3378
  msgid "Purchase expires after"
3379
  msgstr "Compra caduca despues de"
3380
 
3381
- #: ../addons/sell-content/myCRED-addon-sell-content.php:992
3382
  msgid "Thank you for your purchase!"
3383
  msgstr "¡Gracias por su compra!"
3384
 
3385
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1080 ../addons/sell-
3386
- #: content/myCRED-addon-sell-content.php:1166
3387
  msgid "The following content is set for sale:"
3388
  msgstr "El siguiente contenido esta listo para la venta:"
3389
 
3390
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1226
3391
  msgid "Purchased"
3392
  msgstr "Comprado"
3393
 
@@ -3400,7 +3447,7 @@ msgid "You have exceeded your %limit% transfer limit."
3400
  msgstr "Has excedido tu limite de transferencia de %limit%."
3401
 
3402
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3403
- #: php:2295
3404
  msgid "Transfer"
3405
  msgstr "Transferir"
3406
 
@@ -3439,7 +3486,7 @@ msgstr ""
3439
  "transferencias hasta que se haga esto."
3440
 
3441
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3442
- #: php:1010
3443
  msgid "Insufficient Funds. Please try a lower amount."
3444
  msgstr ""
3445
 
@@ -3669,97 +3716,92 @@ msgstr "La Cantidad no Puede ser Cero"
3669
  msgid "Failed to update this uses balance."
3670
  msgstr "No se pudo actualizar el saldo de este usuario."
3671
 
3672
- #: ../includes/mycred-admin.php:404
3673
  msgid "Excluded"
3674
  msgstr "Excluido"
3675
 
3676
- #: ../includes/mycred-admin.php:414
3677
  #, php-format
3678
  msgid "Total: %s"
3679
  msgstr ""
3680
 
3681
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:254 ..
3682
- #: modules/mycred-module-log.php:255
3683
- msgid "History"
3684
- msgstr "Historial"
3685
-
3686
- #: ../includes/mycred-admin.php:423
3687
  msgid "Adjust"
3688
  msgstr "Modificar"
3689
 
3690
- #: ../includes/mycred-admin.php:461 ../includes/mycred-admin.php:462
3691
  msgid "Edit Balance"
3692
  msgstr ""
3693
 
3694
- #: ../includes/mycred-admin.php:480
3695
  msgid "Profile"
3696
  msgstr ""
3697
 
3698
- #: ../includes/mycred-admin.php:487
3699
  msgid "Extended Profile"
3700
  msgstr ""
3701
 
3702
- #: ../includes/mycred-admin.php:577
3703
  #, php-format
3704
  msgid "This user is excluded from using %s"
3705
  msgstr ""
3706
 
3707
- #: ../includes/mycred-admin.php:600
3708
  msgid "Edit User"
3709
  msgstr ""
3710
 
3711
- #: ../includes/mycred-admin.php:602
3712
  msgctxt "user"
3713
  msgid "Add New"
3714
  msgstr ""
3715
 
3716
- #: ../includes/mycred-admin.php:604
3717
  msgctxt "user"
3718
  msgid "Add Existing"
3719
  msgstr ""
3720
 
3721
- #: ../includes/mycred-admin.php:615
3722
  #, php-format
3723
  msgid "Total %s Accumulated"
3724
  msgstr ""
3725
 
3726
- #: ../includes/mycred-admin.php:616
3727
  #, php-format
3728
  msgid "Total %s Spent"
3729
  msgstr ""
3730
 
3731
- #: ../includes/mycred-admin.php:627
3732
  msgid "View History"
3733
  msgstr ""
3734
 
3735
- #: ../includes/mycred-admin.php:628
3736
  msgid "Exclude User"
3737
  msgstr ""
3738
 
3739
- #: ../includes/mycred-admin.php:632
3740
  msgid "Adjust Balance"
3741
  msgstr ""
3742
 
3743
- #: ../includes/mycred-admin.php:641
3744
  msgid ""
3745
  "Warning! Excluding this user will result in their balance being deleted "
3746
  "along with any entries currently in your log! This can not be undone!"
3747
  msgstr ""
3748
 
3749
- #: ../includes/mycred-admin.php:699
3750
  #, php-format
3751
  msgid "%singular% balance"
3752
  msgstr "%singular% saldo"
3753
 
3754
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:773
3755
  msgid "Update Balance"
3756
  msgstr "Actualizar Saldo"
3757
 
3758
- #: ../includes/mycred-admin.php:765
3759
  msgid "ID"
3760
  msgstr "ID"
3761
 
3762
- #: ../includes/mycred-admin.php:771
3763
  msgid "A positive or negative value"
3764
  msgstr "Un valor positivo o negativo"
3765
 
@@ -3811,298 +3853,298 @@ msgstr "y"
3811
  msgid "Available Template Tags:"
3812
  msgstr "Etiquetas de Plantilla Disponibles:"
3813
 
3814
- #: ../includes/mycred-functions.php:1655
3815
  msgid "Entire Log"
3816
  msgstr "Todo el Registro"
3817
 
3818
- #: ../includes/mycred-functions.php:1660 ../includes/mycred-functions.php:1661
3819
  msgid "Displayed Rows"
3820
  msgstr "Filas Mostradas"
3821
 
3822
- #: ../includes/mycred-functions.php:1668
3823
  msgid "Search Results"
3824
  msgstr "Resultados de la Búsqueda"
3825
 
3826
- #: ../includes/mycred-functions.php:1669
3827
  msgid "My Entire Log"
3828
  msgstr "Mi Registro Entero"
3829
 
3830
- #: ../includes/mycred-functions.php:1790
3831
  msgid "ref empty"
3832
  msgstr "ref vacío"
3833
 
3834
- #: ../includes/mycred-functions.php:1798
3835
  msgid "incorrect user id format"
3836
  msgstr "Formato incorrecto para id del usuario"
3837
 
3838
- #: ../includes/mycred-functions.php:1811
3839
  msgid "incorrect unix timestamp (from):"
3840
  msgstr "erroneo marca de tiempo de unix (desde):"
3841
 
3842
- #: ../includes/mycred-functions.php:1820
3843
  msgid "incorrect unix timestamp (to):"
3844
  msgstr "erroneo marca de tiempo de unix (a):"
3845
 
3846
- #: ../includes/mycred-functions.php:2182
3847
  msgid "Website Registration"
3848
  msgstr ""
3849
 
3850
- #: ../includes/mycred-functions.php:2183
3851
  msgid "Website Visit"
3852
  msgstr ""
3853
 
3854
- #: ../includes/mycred-functions.php:2184
3855
  msgid "Viewing Content (Member)"
3856
  msgstr ""
3857
 
3858
- #: ../includes/mycred-functions.php:2185
3859
  msgid "Viewing Content (Author)"
3860
  msgstr ""
3861
 
3862
- #: ../includes/mycred-functions.php:2186
3863
  msgid "Logging in"
3864
  msgstr ""
3865
 
3866
- #: ../includes/mycred-functions.php:2187
3867
  msgid "Publishing Content"
3868
  msgstr ""
3869
 
3870
- #: ../includes/mycred-functions.php:2188 ../modules/mycred-module-hooks.php:1421
3871
  msgid "Approved Comment"
3872
  msgstr "Comentario Aprobado"
3873
 
3874
- #: ../includes/mycred-functions.php:2189
3875
  msgid "Unapproved Comment"
3876
  msgstr ""
3877
 
3878
- #: ../includes/mycred-functions.php:2190
3879
  msgid "SPAM Comment"
3880
  msgstr ""
3881
 
3882
- #: ../includes/mycred-functions.php:2191
3883
  msgid "Deleted Comment"
3884
  msgstr ""
3885
 
3886
- #: ../includes/mycred-functions.php:2192
3887
  msgid "Link Click"
3888
  msgstr ""
3889
 
3890
- #: ../includes/mycred-functions.php:2193
3891
  msgid "Watching Video"
3892
  msgstr ""
3893
 
3894
- #: ../includes/mycred-functions.php:2194
3895
  msgid "Visitor Referral"
3896
  msgstr ""
3897
 
3898
- #: ../includes/mycred-functions.php:2195
3899
  msgid "Signup Referral"
3900
  msgstr ""
3901
 
3902
- #: ../includes/mycred-functions.php:2199
3903
  msgid "New Profile Update"
3904
  msgstr ""
3905
 
3906
- #: ../includes/mycred-functions.php:2200
3907
  msgid "Avatar Upload"
3908
  msgstr ""
3909
 
3910
- #: ../includes/mycred-functions.php:2201
3911
  msgid "New Friendship"
3912
  msgstr ""
3913
 
3914
- #: ../includes/mycred-functions.php:2202
3915
  msgid "Ended Friendship"
3916
  msgstr ""
3917
 
3918
- #: ../includes/mycred-functions.php:2203
3919
  msgid "New Profile Comment"
3920
  msgstr ""
3921
 
3922
- #: ../includes/mycred-functions.php:2204
3923
  msgid "Profile Comment Deletion"
3924
  msgstr ""
3925
 
3926
- #: ../includes/mycred-functions.php:2205
3927
  msgid "New Message"
3928
  msgstr ""
3929
 
3930
- #: ../includes/mycred-functions.php:2206
3931
  msgid "Sending Gift"
3932
  msgstr ""
3933
 
3934
- #: ../includes/mycred-functions.php:2207
3935
  msgid "New Group"
3936
  msgstr ""
3937
 
3938
- #: ../includes/mycred-functions.php:2208
3939
  msgid "Deleted Group"
3940
  msgstr ""
3941
 
3942
- #: ../includes/mycred-functions.php:2209
3943
  msgid "New Group Forum Topic"
3944
  msgstr ""
3945
 
3946
- #: ../includes/mycred-functions.php:2210
3947
  msgid "Edit Group Forum Topic"
3948
  msgstr ""
3949
 
3950
- #: ../includes/mycred-functions.php:2211
3951
  msgid "New Group Forum Post"
3952
  msgstr ""
3953
 
3954
- #: ../includes/mycred-functions.php:2212
3955
  msgid "Edit Group Forum Post"
3956
  msgstr ""
3957
 
3958
- #: ../includes/mycred-functions.php:2213
3959
  msgid "Joining Group"
3960
  msgstr ""
3961
 
3962
- #: ../includes/mycred-functions.php:2214
3963
  msgid "Leaving Group"
3964
  msgstr ""
3965
 
3966
- #: ../includes/mycred-functions.php:2215
3967
  msgid "New Group Avatar"
3968
  msgstr ""
3969
 
3970
- #: ../includes/mycred-functions.php:2216
3971
  msgid "New Group Comment"
3972
  msgstr ""
3973
 
3974
- #: ../includes/mycred-functions.php:2220 ../plugins/mycred-hook-buddypress-media.
3975
  #: php:166
3976
  msgid "Photo Upload"
3977
  msgstr "Subir Foto"
3978
 
3979
- #: ../includes/mycred-functions.php:2221 ../plugins/mycred-hook-buddypress-media.
3980
  #: php:176
3981
  msgid "Video Upload"
3982
  msgstr "Subir Video"
3983
 
3984
- #: ../includes/mycred-functions.php:2222 ../plugins/mycred-hook-buddypress-media.
3985
  #: php:186
3986
  msgid "Music Upload"
3987
  msgstr "Subir Música"
3988
 
3989
- #: ../includes/mycred-functions.php:2226
3990
  msgid "New Link"
3991
  msgstr ""
3992
 
3993
- #: ../includes/mycred-functions.php:2227
3994
  msgid "Link Voting"
3995
  msgstr ""
3996
 
3997
- #: ../includes/mycred-functions.php:2228
3998
  msgid "Link Update"
3999
  msgstr ""
4000
 
4001
- #: ../includes/mycred-functions.php:2232
4002
  msgid "New Forum (bbPress)"
4003
  msgstr ""
4004
 
4005
- #: ../includes/mycred-functions.php:2233
4006
  msgid "New Forum Topic (bbPress)"
4007
  msgstr ""
4008
 
4009
- #: ../includes/mycred-functions.php:2234
4010
  msgid "Favorited Topic (bbPress)"
4011
  msgstr ""
4012
 
4013
- #: ../includes/mycred-functions.php:2235
4014
  msgid "New Topic Reply (bbPress)"
4015
  msgstr ""
4016
 
4017
- #: ../includes/mycred-functions.php:2239
4018
  msgid "Form Submission (Contact Form 7)"
4019
  msgstr ""
4020
 
4021
- #: ../includes/mycred-functions.php:2242
4022
  msgid "Form Submission (Gravity Form)"
4023
  msgstr ""
4024
 
4025
- #: ../includes/mycred-functions.php:2245
4026
  msgid "New Forum Topic (SimplePress)"
4027
  msgstr ""
4028
 
4029
- #: ../includes/mycred-functions.php:2246
4030
  msgid "New Forum Post (SimplePress)"
4031
  msgstr ""
4032
 
4033
- #: ../includes/mycred-functions.php:2250
4034
  msgid "Poll Voting"
4035
  msgstr ""
4036
 
4037
- #: ../includes/mycred-functions.php:2253
4038
  msgid "Sending an Invite"
4039
  msgstr ""
4040
 
4041
- #: ../includes/mycred-functions.php:2254
4042
  msgid "Accepting an Invite"
4043
  msgstr ""
4044
 
4045
- #: ../includes/mycred-functions.php:2260
4046
  msgid "Banking Payout"
4047
  msgstr ""
4048
 
4049
- #: ../includes/mycred-functions.php:2263
4050
  msgid "buyCRED Purchase (PayPal Standard)"
4051
  msgstr ""
4052
 
4053
- #: ../includes/mycred-functions.php:2264
4054
  msgid "buyCRED Purchase (Skrill)"
4055
  msgstr ""
4056
 
4057
- #: ../includes/mycred-functions.php:2265
4058
  msgid "buyCRED Purchase (Zombaio)"
4059
  msgstr ""
4060
 
4061
- #: ../includes/mycred-functions.php:2266
4062
  msgid "buyCRED Purchase (NETBilling)"
4063
  msgstr ""
4064
 
4065
- #: ../includes/mycred-functions.php:2267
4066
  msgid "buyCRED Purchase (BitPay)"
4067
  msgstr ""
4068
 
4069
- #: ../includes/mycred-functions.php:2272
4070
  msgid "Coupon Purchase"
4071
  msgstr ""
4072
 
4073
- #: ../includes/mycred-functions.php:2275
4074
  msgid "Store Purchase (WooCommerce)"
4075
  msgstr ""
4076
 
4077
- #: ../includes/mycred-functions.php:2276
4078
  msgid "Store Purchase (MarketPress)"
4079
  msgstr ""
4080
 
4081
- #: ../includes/mycred-functions.php:2277
4082
  msgid "Store Purchase (WP E-Commerce)"
4083
  msgstr ""
4084
 
4085
- #: ../includes/mycred-functions.php:2282
4086
  msgid "Event Payment (Event Espresso)"
4087
  msgstr ""
4088
 
4089
- #: ../includes/mycred-functions.php:2283
4090
  msgid "Event Sale (Event Espresso)"
4091
  msgstr ""
4092
 
4093
- #: ../includes/mycred-functions.php:2287
4094
  msgid "Event Payment (Events Manager)"
4095
  msgstr ""
4096
 
4097
- #: ../includes/mycred-functions.php:2288
4098
  msgid "Event Sale (Events Manager)"
4099
  msgstr ""
4100
 
4101
- #: ../includes/mycred-functions.php:2292
4102
  msgid "Content Purchase / Sale"
4103
  msgstr ""
4104
 
4105
- #: ../includes/mycred-functions.php:2299
4106
  msgid "Manual Adjustment by Admin"
4107
  msgstr ""
4108
 
@@ -4275,6 +4317,10 @@ msgstr ""
4275
  "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
4276
  "o gastar en tu tienda. Ponga zero para desactivar."
4277
 
 
 
 
 
4278
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4279
  msgid "Exclude those who can \"Edit Settings\"."
4280
  msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
@@ -4386,7 +4432,7 @@ msgstr "No hay opciones para exportar."
4386
  msgid "Entry"
4387
  msgstr "Entrada"
4388
 
4389
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:466
4390
  msgid "User Missing"
4391
  msgstr "Usuario Ausente"
4392
 
@@ -4584,92 +4630,92 @@ msgstr ""
4584
  "Recuerda a desactivarlo cuando no está en uso para prevenir que llamadas "
4585
  "maliciosas conozcan detalles de tu configuración!"
4586
 
4587
- #: ../includes/mycred-shortcodes.php:153
4588
  msgid "Leaderboard is empty."
4589
  msgstr "La Tabla de Clasificación esta vacía"
4590
 
4591
- #: ../includes/mycred-shortcodes.php:424 ../includes/mycred-shortcodes.php:547
4592
  msgid "Amount missing!"
4593
  msgstr "¡Falta la cantidad!"
4594
 
4595
- #: ../includes/mycred-shortcodes.php:427 ../includes/mycred-shortcodes.php:555
4596
  msgid "Log Template Missing!"
4597
  msgstr "¡Plantilla de Registro No Encontrado!"
4598
 
4599
- #: ../includes/mycred-shortcodes.php:489
4600
  msgid "Anchor missing URL!"
4601
  msgstr "¡La Ancla falta el URL!"
4602
 
4603
- #: ../includes/mycred-shortcodes.php:551
4604
  msgid "User ID missing for recipient."
4605
  msgstr "ID del Usuario falta para el destinatario"
4606
 
4607
- #: ../includes/mycred-shortcodes.php:606
4608
  msgid "Sent"
4609
  msgstr "Enviado"
4610
 
4611
- #: ../includes/mycred-shortcodes.php:607
4612
  msgid "Error - Try Again"
4613
  msgstr "Error - Inténtelo de nuevo."
4614
 
4615
- #: ../includes/mycred-shortcodes.php:716
4616
  msgid "A video ID is required for this shortcode"
4617
  msgstr "Este código corto (shortcode) precisa un ID del video."
4618
 
4619
- #: ../includes/mycred-shortcodes.php:862 ../includes/mycred-shortcodes.php:956
4620
  msgid "Point types not found."
4621
  msgstr ""
4622
 
4623
- #: ../includes/mycred-shortcodes.php:868 ../includes/mycred-shortcodes.php:876 ..
4624
- #: includes/mycred-shortcodes.php:968 ../includes/mycred-shortcodes.php:988
4625
  #, php-format
4626
  msgid "You are excluded from using %s."
4627
  msgstr ""
4628
 
4629
- #: ../includes/mycred-shortcodes.php:872 ../includes/mycred-shortcodes.php:978
4630
  msgid "Your balance is too low to use this feature."
4631
  msgstr ""
4632
 
4633
- #: ../includes/mycred-shortcodes.php:893
4634
  #, php-format
4635
  msgid "Convert <span>%s</span> to <span>%s</span>"
4636
  msgstr ""
4637
 
4638
- #: ../includes/mycred-shortcodes.php:902
4639
  #, php-format
4640
  msgid "Your current %s balance"
4641
  msgstr ""
4642
 
4643
- #: ../includes/mycred-shortcodes.php:910
4644
  #, php-format
4645
  msgid "Minimum %s"
4646
  msgstr ""
4647
 
4648
- #: ../includes/mycred-shortcodes.php:914
4649
  #, php-format
4650
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4651
  msgstr ""
4652
 
4653
- #: ../includes/mycred-shortcodes.php:920
4654
  msgid "Exchange"
4655
  msgstr ""
4656
 
4657
- #: ../includes/mycred-shortcodes.php:1001
4658
  #, php-format
4659
  msgid "You must exchange at least %s!"
4660
  msgstr ""
4661
 
4662
- #: ../includes/mycred-shortcodes.php:1023
4663
  #, php-format
4664
  msgid "Exchange from %s"
4665
  msgstr ""
4666
 
4667
- #: ../includes/mycred-shortcodes.php:1035
4668
  #, php-format
4669
  msgid "Exchange to %s"
4670
  msgstr ""
4671
 
4672
- #: ../includes/mycred-shortcodes.php:1043
4673
  #, php-format
4674
  msgid "You have successfully exchanged %s into %s."
4675
  msgstr ""
@@ -4979,6 +5025,12 @@ msgstr "Extensiones"
4979
  msgid "Give your users badges based on their interaction with your website."
4980
  msgstr ""
4981
 
 
 
 
 
 
 
4982
  #: ../modules/mycred-module-addons.php:169
4983
  msgid ""
4984
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
@@ -5314,7 +5366,7 @@ msgstr ""
5314
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5315
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5316
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5317
- #: 2623 ../modules/mycred-module-hooks.php:2652 ../plugins/mycred-hook-badgeOS.
5318
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5319
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5320
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
@@ -5376,8 +5428,8 @@ msgstr ""
5376
  msgid "%plural% for viewing %s"
5377
  msgstr ""
5378
 
5379
- #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2631
5380
- #: ../modules/mycred-module-hooks.php:2660 ../plugins/mycred-hook-invite-anyone.
5381
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5382
  msgid "Limit"
5383
  msgstr "Límite"
@@ -5470,7 +5522,7 @@ msgstr ""
5470
  msgid "Custom tags: %url%, %title% or %id%."
5471
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
5472
 
5473
- #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2734
5474
  msgid "Note!"
5475
  msgstr "¡Atención!"
5476
 
@@ -5553,63 +5605,63 @@ msgstr "Por Día"
5553
  msgid "Link"
5554
  msgstr "Enlace"
5555
 
5556
- #: ../modules/mycred-module-hooks.php:2617
5557
  msgid "Referring Visitors"
5558
  msgstr "Referiendo Visitantes"
5559
 
5560
- #: ../modules/mycred-module-hooks.php:2641 ../modules/mycred-module-hooks.php:2670
5561
  msgid "The number of referrals each member can make. Use zero for unlimited."
5562
  msgstr ""
5563
  "El numero de referencias que cada miembro puede hacer. Utilice cero para "
5564
  "ilimitado."
5565
 
5566
- #: ../modules/mycred-module-hooks.php:2645 ../modules/mycred-module-hooks.php:2674
5567
  msgid "Referring Signups"
5568
  msgstr "Inscripciones a través de Referencias"
5569
 
5570
- #: ../modules/mycred-module-hooks.php:2649
5571
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5572
  msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
5573
 
5574
- #: ../modules/mycred-module-hooks.php:2676
5575
  msgid "Registrations are disabled."
5576
  msgstr "Se han deshabilitado inscripciones."
5577
 
5578
- #: ../modules/mycred-module-hooks.php:2683
5579
  msgid "Referral Links"
5580
  msgstr "Enlaces Referentes"
5581
 
5582
- #: ../modules/mycred-module-hooks.php:2687
5583
  msgid "Assign numeric referral IDs to each user."
5584
  msgstr "Asignar ID numerica referente a cada usuario."
5585
 
5586
- #: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2694
5587
  msgid "Example"
5588
  msgstr "Ejemplo"
5589
 
5590
- #: ../modules/mycred-module-hooks.php:2693
5591
  msgid "Assign usernames as IDs for each user."
5592
  msgstr "Asignar los nombres de usuario como ID para cada usuario."
5593
 
5594
- #: ../modules/mycred-module-hooks.php:2697
5595
  msgid "IP Limit"
5596
  msgstr "Límite de IP"
5597
 
5598
- #: ../modules/mycred-module-hooks.php:2701
5599
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5600
  msgstr ""
5601
  "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
5602
  "número ilimitado"
5603
 
5604
- #: ../modules/mycred-module-hooks.php:2705 ../modules/mycred-module-hooks.php:2738
5605
  msgid "BuddyPress Profile"
5606
  msgstr "Perfil de BuddyPress"
5607
 
5608
- #: ../modules/mycred-module-hooks.php:2708
5609
  msgid "Insert Link in users Profile"
5610
  msgstr "Insertar enlace en el perfil del usuario"
5611
 
5612
- #: ../modules/mycred-module-hooks.php:2709
5613
  msgid ""
5614
  "Option to inser the referral link in users profiles. Links will only be "
5615
  "visible to users viewing their own profiles or administrators."
@@ -5618,23 +5670,23 @@ msgstr ""
5618
  " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
5619
  "ven a sus propios perfiles."
5620
 
5621
- #: ../modules/mycred-module-hooks.php:2715
5622
  msgid "Leave empty to hide."
5623
  msgstr "Deje el campo vacío para ocultarlo."
5624
 
5625
- #: ../modules/mycred-module-hooks.php:2718
5626
  msgid "Description"
5627
  msgstr "Descripción"
5628
 
5629
- #: ../modules/mycred-module-hooks.php:2719
5630
  msgid "Optional description to insert under the link."
5631
  msgstr "Insertar la descripción opcional debajo del enlace."
5632
 
5633
- #: ../modules/mycred-module-hooks.php:2731
5634
  msgid "Profile Positioning"
5635
  msgstr "Posicionamiento del Perfil"
5636
 
5637
- #: ../modules/mycred-module-hooks.php:2733
5638
  msgid ""
5639
  "You can move around the referral link on your users profile by changing the "
5640
  "position. Increase to move up, decrease to move down."
@@ -5642,13 +5694,13 @@ msgstr ""
5642
  "Puedes moverte por el enlace de referencia en su perfil los usuarios "
5643
  "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
5644
 
5645
- #: ../modules/mycred-module-hooks.php:2734
5646
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5647
  msgstr ""
5648
  "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
5649
  "en el perfil del usuario!"
5650
 
5651
- #: ../modules/mycred-module-hooks.php:2740
5652
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5653
  msgstr "Requiere que BuddyPress Extended Profiles sea activado."
5654
 
@@ -5673,8 +5725,8 @@ msgstr "Entrada Actualizada"
5673
  msgid "Entries"
5674
  msgstr "Entradas"
5675
 
5676
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:385 ..
5677
- #: modules/mycred-module-log.php:629 ../modules/mycred-module-settings.php:574
5678
  msgid "Export"
5679
  msgstr "Exportar"
5680
 
@@ -5682,40 +5734,40 @@ msgstr "Exportar"
5682
  msgid "Search results for"
5683
  msgstr "Buscar entre resultados por"
5684
 
5685
- #: ../modules/mycred-module-log.php:379
5686
  #, php-format
5687
  msgid "%s Log"
5688
  msgstr "Registro de %s"
5689
 
5690
- #: ../modules/mycred-module-log.php:504
5691
  msgid "Edit"
5692
  msgstr "Editar"
5693
 
5694
- #: ../modules/mycred-module-log.php:545
5695
  msgid "Time"
5696
  msgstr "Tiempo"
5697
 
5698
- #: ../modules/mycred-module-log.php:549
5699
  msgid "Current Log Entry"
5700
  msgstr "Entrada Actual de Registro"
5701
 
5702
- #: ../modules/mycred-module-log.php:551
5703
  msgid "The current saved log entry"
5704
  msgstr "La entrada guardada actual del registro"
5705
 
5706
- #: ../modules/mycred-module-log.php:554
5707
  msgid "Adjust Log Entry"
5708
  msgstr "Ajustar entrada de registro"
5709
 
5710
- #: ../modules/mycred-module-log.php:556
5711
  msgid "The new log entry"
5712
  msgstr "La nueva entrada de registro"
5713
 
5714
- #: ../modules/mycred-module-log.php:559
5715
  msgid "Update Log Entry"
5716
  msgstr "Actualiza la entrada de registro"
5717
 
5718
- #: ../modules/mycred-module-log.php:623
5719
  #, php-format
5720
  msgid "My %s History"
5721
  msgstr "Mi Historial de %s"
@@ -6436,6 +6488,6 @@ msgstr "WP-Polls"
6436
  #: ../plugins/mycred-hook-wp-polls.php:19
6437
  #, php-format
6438
  msgid "Awards %_plural% for users voting in polls."
6439
- msgstr "Concede %_plural% a usuarios que han votado en encuestas."
6440
- for users voting in polls."
6441
- msgstr "Concede %_plural% a usuarios que han votado en encuestas."
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Thu Aug 07 2014 20:34:35 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Spanish\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
44
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
45
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
46
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
47
+ #: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
48
+ #: includes/mycred-shortcodes.php:607
49
  msgid "Processing..."
50
  msgstr "Procesando..."
51
 
151
  msgstr "Una vez al dia (reinicializado al medianoche)"
152
 
153
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
154
+ #: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
155
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
157
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
177
  msgid "click to open"
178
  msgstr "haga clic para abrir"
179
 
180
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/buy-creds/myCRED-addon-
181
+ #: buy-creds.php:847
182
  msgid "Settings Updated"
183
  msgstr "Configuraciones Actualizadas"
184
 
383
  msgid "in total"
384
  msgstr ""
385
 
386
+ #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
387
+ #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
388
  msgid "Banking"
389
  msgstr "Banco"
390
 
391
+ #: ../addons/banking/myCRED-addon-banking.php:158
392
+ msgid "Central Banking"
393
+ msgstr ""
394
+
395
+ #: ../addons/banking/myCRED-addon-banking.php:159
396
+ #, php-format
397
+ msgid ""
398
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
399
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
400
+ "deposited back into this account."
401
+ msgstr ""
402
+
403
+ #: ../addons/banking/myCRED-addon-banking.php:165 ..
404
+ #: addons/banking/services/mycred-bank-service-interest.php:512
405
  msgid "Compound Interest"
406
  msgstr "Interés Compuesto"
407
 
408
+ #: ../addons/banking/myCRED-addon-banking.php:166
409
  #, php-format
410
+ msgid "Apply a positive or negative interest rate on your users %_plural% balances."
 
 
 
 
411
  msgstr ""
 
 
 
 
412
 
413
+ #: ../addons/banking/myCRED-addon-banking.php:172
414
  msgid "Recurring Payouts"
415
  msgstr "Pagos Recurrentes"
416
 
417
+ #: ../addons/banking/myCRED-addon-banking.php:173
418
+ msgid "Setup mass %_singular% payouts for your users."
 
 
 
419
  msgstr ""
 
 
420
 
421
+ #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
422
+ #: addon-buy-creds.php:837 ../addons/buy-creds/myCRED-addon-buy-creds.php:933 ..
423
+ #: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
424
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
425
+ #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
426
  #: modules/mycred-module-settings.php:312
427
  msgid "Access Denied"
428
  msgstr "Acceso Denegado"
429
 
430
+ #: ../addons/banking/myCRED-addon-banking.php:225
431
  #, php-format
432
  msgid "%s Banking"
433
  msgstr "%s Bancario"
434
 
435
+ #: ../addons/banking/myCRED-addon-banking.php:228
436
+ msgid "Your banking setup for %plural%."
 
437
  msgstr ""
 
 
438
 
439
+ #: ../addons/banking/myCRED-addon-banking.php:231
440
  msgid "WP-Cron deactivation detected!"
441
  msgstr "¡Se detecto la desactivación de WP-Cron!"
442
 
443
+ #: ../addons/banking/myCRED-addon-banking.php:232
444
  msgid "Warning! This add-on requires WP - Cron to work."
445
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
446
 
447
+ #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
448
+ #: addon-buy-creds.php:871 ../modules/mycred-module-hooks.php:196
449
  msgid "Enable"
450
  msgstr "Activar"
451
 
452
+ #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
453
  #: php:211
454
  msgid "Update Changes"
455
  msgstr "Actualizar Cambios"
456
 
457
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:79
 
 
 
 
458
  msgid "This Service has no settings"
459
  msgstr "Este servicio no ha sido configurado"
460
 
461
  #. also, "Cada Hora"
462
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:233
463
  msgid "Hourly"
464
  msgstr "Por Hora"
465
 
466
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:237
467
  msgid "Daily"
468
  msgstr "Diario"
469
 
470
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:241
471
  msgid "Weekly"
472
  msgstr "Semanal"
473
 
474
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:245
475
  msgid "Monthly"
476
  msgstr "Mensual"
477
 
478
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:249
479
  msgid "Quarterly"
480
  msgstr "Trimestral"
481
 
482
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:253
483
  msgid "Semiannually"
484
  msgstr "Semestral"
485
 
486
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:257
487
  msgid "Annually"
488
  msgstr "Anual"
489
 
490
+ #: ../addons/banking/services/mycred-bank-service-central.php:105
491
+ msgid "Bank User"
492
+ msgstr ""
493
+
494
+ #: ../addons/banking/services/mycred-bank-service-central.php:109
495
+ msgid "The user ID of the central bank account. This user can not be excluded!"
496
+ msgstr ""
497
+
498
+ #: ../addons/banking/services/mycred-bank-service-central.php:112
499
+ msgid "Ignore Manual Adjustments"
500
+ msgstr ""
501
+
502
+ #: ../addons/banking/services/mycred-bank-service-interest.php:24
503
  msgid "%plural% interest rate payment"
504
  msgstr "%plural% pago de tasa de interés"
505
 
506
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
507
+ msgid "Compounding Interest"
508
+ msgstr ""
509
+
510
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
511
+ #, php-format
512
+ msgid "%d Users are left to process."
513
+ msgstr ""
514
+
515
+ #: ../addons/banking/services/mycred-bank-service-interest.php:388
516
+ msgid "Payout History"
517
+ msgstr ""
518
+
519
+ #: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
520
+ #: addons/banking/services/mycred-bank-service-interest.php:409 ..
521
+ #: addons/banking/services/mycred-bank-service-payouts.php:249
522
+ msgid "Run Count"
523
+ msgstr ""
524
+
525
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
526
+ msgid "Last Payout"
527
+ msgstr ""
528
+
529
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
530
+ #: addons/banking/services/mycred-bank-service-interest.php:414
531
+ msgid "Activated"
532
+ msgstr ""
533
+
534
+ #: ../addons/banking/services/mycred-bank-service-interest.php:401
535
+ msgid "Total Payed Interest"
536
+ msgstr ""
537
+
538
+ #: ../addons/banking/services/mycred-bank-service-interest.php:405
539
+ msgid "Compound History"
540
+ msgstr ""
541
+
542
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
543
+ msgid "Last Interest Compound"
544
+ msgstr ""
545
+
546
+ #: ../addons/banking/services/mycred-bank-service-interest.php:418
547
+ msgid "Total Compounded Interest"
548
+ msgstr ""
549
+
550
+ #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
551
+ #: addons/banking/services/mycred-bank-service-interest.php:549
552
  msgid "Interest Rate"
553
  msgstr "Tasa de Interés"
554
 
555
+ #: ../addons/banking/services/mycred-bank-service-interest.php:425
556
+ msgid "Default Rate"
 
 
 
 
557
  msgstr ""
 
 
558
 
559
+ #: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
560
+ #: addons/banking/services/mycred-bank-service-payouts.php:267
561
+ msgid "Can not be zero."
562
+ msgstr "No puede ser cero."
563
 
564
+ #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
565
+ #: addons/gateway/carts/mycred-wpecommerce.php:364
566
+ msgid "Payout"
567
+ msgstr "Desembolso"
568
 
569
  #. can also be "Plantilla de Bitácora"
570
+ #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
571
+ #: addons/banking/services/mycred-bank-service-payouts.php:282 ../addons/buy-
572
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
573
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
574
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
586
  msgid "Log Template"
587
  msgstr "Plantilla de Registro"
588
 
589
+ #: ../addons/banking/services/mycred-bank-service-interest.php:442 ..
590
+ #: addons/banking/services/mycred-bank-service-payouts.php:289 ..
591
+ #: addons/coupons/myCRED-addon-coupons.php:392
592
+ msgid "Minimum Balance"
593
+ msgstr "Saldo Minimo"
594
 
595
+ #: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
596
+ #: addons/banking/services/mycred-bank-service-payouts.php:293
597
+ msgid "Optional minimum balance requirement."
598
+ msgstr ""
599
+
600
+ #: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
601
+ #: addons/banking/services/mycred-bank-service-payouts.php:296
602
+ msgid "Exclude"
603
+ msgstr ""
604
+
605
+ #: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
606
+ #: addons/banking/services/mycred-bank-service-payouts.php:299
607
+ msgid "Comma separated list of user IDs"
608
+ msgstr ""
609
+
610
+ #: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
611
+ #: addons/banking/services/mycred-bank-service-payouts.php:303
612
+ msgid "Roles"
613
+ msgstr ""
614
+
615
+ #: ../addons/banking/services/mycred-bank-service-interest.php:522
616
+ msgid "This user is excluded from receiving interest on this balance."
617
+ msgstr ""
618
+
619
+ #: ../addons/banking/services/mycred-bank-service-interest.php:525
620
+ msgid "Remove from Excluded List"
621
+ msgstr ""
622
+
623
+ #: ../addons/banking/services/mycred-bank-service-interest.php:537
624
+ msgid "This user role is excluded from receiving interest on this balance."
625
+ msgstr ""
626
+
627
+ #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
628
+ #: creds/myCRED-addon-buy-creds.php:759 ../addons/sell-content/myCRED-addon-sell-
629
+ #: content.php:113
630
+ msgid "Leave empty to use the default value."
631
+ msgstr ""
632
+
633
+ #: ../addons/banking/services/mycred-bank-service-interest.php:558
634
+ msgid "Save Interest Rate"
635
+ msgstr ""
636
+
637
+ #: ../addons/banking/services/mycred-bank-service-interest.php:559
638
+ msgid "Exclude from receiving interest"
639
+ msgstr ""
640
+
641
+ #: ../addons/banking/services/mycred-bank-service-interest.php:667
642
+ msgid "Compound interest rate saved."
643
+ msgstr ""
644
+
645
+ #: ../addons/banking/services/mycred-bank-service-interest.php:669
646
+ msgid "User excluded from receiving interest."
647
+ msgstr ""
648
+
649
+ #: ../addons/banking/services/mycred-bank-service-interest.php:671
650
+ msgid "User included in receiving interest."
651
  msgstr ""
 
 
 
 
652
 
653
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
654
  msgid "Daily %_plural%"
655
  msgstr "%_plural% diarios"
656
 
657
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
658
+ #: includes/mycred-admin.php:404 ../modules/mycred-module-log.php:254 ..
659
+ #: modules/mycred-module-log.php:255
660
+ msgid "History"
661
+ msgstr "Historial"
662
 
663
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:254
664
+ msgid "Last Run"
665
+ msgstr ""
666
+
667
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:258
668
+ msgid "Total Payouts"
669
+ msgstr ""
670
+
671
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:262
672
  msgid "Pay Users"
673
  msgstr "Pagar a los Usuarios"
674
 
675
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
676
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
677
+ #: creds.php:1518 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595 ..
678
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
679
+ #: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
680
+ #: includes/mycred-shortcodes.php:910
681
  msgid "Amount"
682
  msgstr "Cantidad"
683
 
684
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
685
+ #: modules/mycred-module-hooks.php:2113
 
 
 
 
 
686
  msgid "Interval"
687
  msgstr "Interval"
688
 
689
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:275
 
690
  msgid "Cycles"
691
  msgstr "Ciclos"
692
 
693
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:277
694
  msgid "Set to -1 for unlimited"
695
  msgstr "Ajusta a -1 para ilimitado"
696
 
697
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
698
  msgid "Important"
699
  msgstr "Importante"
700
 
701
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
702
  msgid ""
703
  "You can always stop payouts by deactivating this service. Just remember that "
704
  "if you deactivate while there are cycles left, this service will continue on "
709
  "ciclos para completar, este servicio volverá a continuar en cuando se vuelvá "
710
  "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
711
 
 
 
 
 
 
 
 
 
 
 
 
 
 
712
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
713
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
714
  msgid "Payment Gateways"
734
  msgstr ""
735
 
736
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
737
+ #: addon-buy-creds.php:1629
738
  msgid "No pending payments found"
739
  msgstr ""
740
 
743
  msgstr ""
744
 
745
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
746
+ #: addon-buy-creds.php:986 ../addons/buy-creds/myCRED-addon-buy-creds.php:1593
747
  msgid "Transaction ID"
748
  msgstr "Identificación de la Transacción"
749
 
750
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
751
+ #: addon-buy-creds.php:982
752
  msgid "Buyer"
753
  msgstr ""
754
 
755
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
756
+ #: addon-buy-creds.php:1596 ../addons/buy-creds/abstracts/mycred-abstract-payment-
757
  #: gateway.php:563
758
  msgid "Cost"
759
  msgstr "Costo"
760
 
761
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
762
+ #: addon-buy-creds.php:981 ../addons/buy-creds/myCRED-addon-buy-creds.php:1594 ..
763
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
764
  msgid "Gateway"
765
  msgstr "Pasarela"
777
  msgstr "compraCRED Registro de Compras"
778
 
779
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
780
+ #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:843
781
  msgid "Purchase Log"
782
  msgstr "Registro de Compras"
783
 
784
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
785
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
786
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
787
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:422
788
  msgid "Payments"
789
  msgstr "Pagos"
790
 
863
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
864
 
865
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
866
+ #: hooks.php:2770
867
  msgid "Available Shortcodes"
868
  msgstr "Códigos cortos Disponibles"
869
 
872
  msgid "%s Exchange Rate"
873
  msgstr ""
874
 
 
 
 
 
 
875
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
876
  msgid "Save Exchange Rates"
877
  msgstr ""
878
 
879
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:822
880
  msgid "Exchange rate override saved"
881
  msgstr ""
882
 
883
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:825
884
  msgid "Payment completed"
885
  msgstr ""
886
 
887
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843
888
  #, php-format
889
  msgid "%s Payment Gateways"
890
  msgstr "%s Pasarelas de Pago"
891
 
892
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
893
+ #: addon-buy-creds.php:990
894
  msgid "buyCRED Settings"
895
  msgstr "Configuraciones de compraCRED"
896
 
897
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:864
898
  msgid "Test Mode"
899
  msgstr "Modo de Prueba"
900
 
901
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
902
  msgid "Enabled"
903
  msgstr "Habilitado"
904
 
905
  #. also, "Inhabilitar"
906
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:869
907
  msgid "Disabled"
908
  msgstr "Deshactivado"
909
 
910
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
911
  msgid "Sandbox Mode"
912
  msgstr "Modo Entorno Aislado"
913
 
914
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:882
915
  msgid "Enable for test purchases."
916
  msgstr "Habilitar para compras de prueba."
917
 
918
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
919
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
920
  msgid "Update Settings"
921
  msgstr "Actualizar Configuraciones"
922
 
923
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
924
  msgid "More Gateways"
925
  msgstr ""
926
 
927
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:983 ../includes/mycred-log.php:
928
  #: 634
929
  msgid "Date"
930
  msgstr "Fecha"
931
 
932
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985
933
  msgid "Payed"
934
  msgstr "Pagado"
935
 
936
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990
937
  msgid "<strong>buy</strong>CRED Purchase Log"
938
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
939
 
940
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990 ../addons/gateway/event-
941
  #: booking/mycred-eventespresso3.php:367
942
  msgid "Gateway Settings"
943
  msgstr "Configuraciones de la Pasarela de Pago"
944
 
945
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166 ../addons/sell-
946
+ #: content/myCRED-addon-sell-content.php:1190
947
  msgid "No purchases found"
948
  msgstr "No se encontro ninguna compra"
949
 
950
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1236 ../addons/buy-creds/myCRED-
951
+ #: addon-buy-creds.php:1349
952
  msgid "This Add-on needs to setup before you can use this shortcode."
953
  msgstr ""
954
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
955
  "corto (shortcode)."
956
 
957
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1255 ../addons/buy-creds/myCRED-
958
+ #: addon-buy-creds.php:1368
959
  msgid "No gateways installed."
960
  msgstr "Ningun pasarela de pago instalado."
961
 
962
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1256 ../addons/buy-creds/myCRED-
963
+ #: addon-buy-creds.php:1369
964
  msgid "Gateway does not exist."
965
  msgstr "Puerta de enlace no existe."
966
 
967
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1304
968
  msgid "Yourself"
969
  msgstr "Tu mismo"
970
 
971
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1370
972
  msgid "No active gateways found."
973
  msgstr "No se encuentra ningun puerta de enlace activo."
974
 
975
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1371
976
  msgid "The selected gateway is not active."
977
  msgstr "La puerta de enlace seleccionada no esta activo."
978
 
979
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1418
980
  #, php-format
981
  msgid "Buy with %gateway%"
982
  msgstr "Compra con %gateway%"
983
 
984
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424 ../addons/sell-
985
  #: content/myCRED-addon-sell-content.php:44
986
  msgid "Buy Now"
987
  msgstr "Compra Ahora"
988
 
989
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1469
990
  msgid "No users found"
991
  msgstr "Ningun Usuario Encontrado"
992
 
993
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1479
994
  msgid "To"
995
  msgstr "A"
996
 
997
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1496
998
  msgid "Select Amount"
999
  msgstr "Selecciona la Cantidad"
1000
 
1001
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1520
1002
  msgid "min."
1003
  msgstr "min."
1004
 
1005
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1528
1006
  msgid "Select Gateway"
1007
  msgstr "Selecciona la Pasarela de Pago"
1008
 
1009
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1569 ../addons/gateway/event-
1010
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1011
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1012
  #: php:35
1013
  msgid "Pay Now"
1014
  msgstr "Pagar Ahora"
1015
 
1016
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1570 ../includes/mycred-install.
1017
  #: php:515
1018
  msgid "Cancel"
1019
  msgstr "Cancelar"
1020
 
1021
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ../addons/ranks/myCRED-
1022
+ #: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
1023
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
1024
  msgid "Actions"
1025
  msgstr "Acciones"
1060
  msgstr "Cancelar la compra"
1061
 
1062
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1063
+ #: includes/mycred-admin.php:702 ../includes/mycred-admin.php:739
1064
  msgid "required"
1065
  msgstr "necesario"
1066
 
1067
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1068
+ #: includes/mycred-admin.php:704 ../includes/mycred-admin.php:741
1069
  msgid "optional"
1070
  msgstr "opcional"
1071
 
1469
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1470
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1471
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1472
+ #: modules/mycred-module-hooks.php:2735
1473
  msgid "Title"
1474
  msgstr "Titulo"
1475
 
1718
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1719
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1720
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1721
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:410 ..
1722
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1723
  #: includes/importers/mycred-cubepoints.php:365
1724
  msgid "Point Type"
2125
  msgstr "Enviado A:"
2126
 
2127
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2128
+ #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:748 ..
2129
+ #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
2130
  msgid "User"
2131
  msgstr "Usuario"
2132
 
2252
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2253
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2254
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2255
+ #: php:412 ../includes/mycred-admin.php:596 ../includes/mycred-admin.php:749
2256
  msgid "Current Balance"
2257
  msgstr "Saldo Actual"
2258
 
2375
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2376
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2377
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2378
+ #: php:578 ../includes/mycred-shortcodes.php:915
2379
  msgid "Exchange Rate"
2380
  msgstr "Tipo de Cambio"
2381
 
2609
  msgid "How much is 1 %s worth in %s"
2610
  msgstr "Cuanto vale 1 %s en %s"
2611
 
 
 
 
 
2612
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2613
  msgid "Instructions"
2614
  msgstr "Instrucciones"
2684
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2685
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2686
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2687
+ #: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
2688
+ #: sell-content.php:668
2689
  msgid "Button Label"
2690
  msgstr "Eqiqueta Asignada al Botón"
2691
 
2698
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2699
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2700
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2701
+ #: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
2702
+ #: sell-content.php:664
2703
  msgid "Price"
2704
  msgstr "Precio"
2705
 
2721
  msgstr "Registro"
2722
 
2723
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2724
+ #: includes/mycred-admin.php:717 ../includes/mycred-admin.php:754
2725
  msgid "Log Entry"
2726
  msgstr "Entrada de Registro"
2727
 
2728
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2729
+ #: content/myCRED-addon-sell-content.php:472
2730
  msgid "Templates"
2731
  msgstr "Plantillas"
2732
 
2808
  msgstr "Rechazar"
2809
 
2810
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2811
+ #: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:488 ..
2812
  #: modules/mycred-module-settings.php:507
2813
  msgid "Delete"
2814
  msgstr "Borrar"
3271
  msgstr "Ningun usuario encontrado con este rango"
3272
 
3273
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3274
+ #: shortcodes.php:425 ../includes/mycred-shortcodes.php:428 ../includes/mycred-
3275
+ #: shortcodes.php:491 ../includes/mycred-shortcodes.php:549 ../includes/mycred-
3276
+ #: shortcodes.php:553 ../includes/mycred-shortcodes.php:557
3277
  msgid "error"
3278
  msgstr "error"
3279
 
3293
  msgid "Save Profit Share"
3294
  msgstr ""
3295
 
3296
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:164
3297
  msgid "Profit Share override saved"
3298
  msgstr ""
3299
 
3300
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:326
3301
  msgid "You can not buy this content."
3302
  msgstr "No puedes comprar este contenido."
3303
 
3304
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:371
3305
  msgid "Error. Try Again"
3306
  msgstr "Error. Inténtelo de nuevo"
3307
 
3308
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3309
  msgid "No Payout. Just charge."
3310
  msgstr "No Desembolsar. Solo cobrar."
3311
 
3312
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3313
  msgid "Pay Content Author."
3314
  msgstr "Pagar al Autor del Contenido"
3315
 
3316
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:400 ../includes/mycred-
3317
  #: overview.php:141 ../includes/mycred-overview.php:148
3318
  msgid "Sell Content"
3319
  msgstr "Vender Contenido"
3320
 
3321
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3322
  msgid "Post Types"
3323
  msgstr "Post Types"
3324
 
3325
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3326
  msgid "Comma separated list of post types that can be sold."
3327
  msgstr "Lista separada por comas de post types que se puede vender."
3328
 
3329
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:436
3330
  msgid "Percentage to pay Author"
3331
  msgstr "Porcentaje que pagar al Autor"
3332
 
3333
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3334
  msgid ""
3335
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3336
  "authors are not paid."
3339
  "si no se les paga a los autores."
3340
 
3341
  #. also, "por defecto" and "predeterminados"
3342
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:446
3343
  msgid "Defaults"
3344
  msgstr "Predefinidos"
3345
 
3346
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:454
3347
  msgid "Allow authors to change price."
3348
  msgstr "Permitir que los Autores cambien el precio."
3349
 
3350
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3351
  msgid "Allow authors to change button label."
3352
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
3353
 
3354
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:467
3355
  msgid "Purchases expire after"
3356
  msgstr "Compras caducan despues de"
3357
 
3358
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3359
  msgid "Use zero for permanent sales."
3360
  msgstr "Usa cero para ventas permanentes."
3361
 
3362
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:475
3363
  msgid "For Visitors"
3364
  msgstr ""
3365
 
3366
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:480
3367
  #, php-format
3368
  msgid ""
3369
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3372
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
3373
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
3374
 
3375
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:485
3376
  msgid "For Members"
3377
  msgstr ""
3378
 
3379
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:490 ../addons/sell-
3380
+ #: content/myCRED-addon-sell-content.php:500
3381
  #, php-format
3382
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3383
  msgstr ""
3384
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
3385
  "realizar compras!"
3386
 
3387
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:495
3388
  msgid "For members that can not afford to buy"
3389
  msgstr ""
3390
 
3391
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:504
3392
  msgid "Log template for Purchases"
3393
  msgstr "Plantilla de registros para Compras"
3394
 
3395
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:511
3396
  msgid "Log template for Sales"
3397
  msgstr "Plantilla de registros para Ventas"
3398
 
3399
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:563
3400
  #, php-format
3401
  msgid "%s Sell This"
3402
  msgstr "%s Vende Esto"
3403
 
3404
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:617
3405
  #, php-format
3406
  msgid "%s Sell Content needs to be setup before you can use this feature."
3407
  msgstr ""
3408
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
3409
  "esta característica técnica."
3410
 
3411
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3412
  msgid "Setup add-on"
3413
  msgstr "Configurar Extensión"
3414
 
3415
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3416
  msgid "Lets do it"
3417
  msgstr "Vamos a hacerlo."
3418
 
3419
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:658
3420
  #, php-format
3421
  msgid "Enable sale of this %s"
3422
  msgstr ""
3423
 
3424
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:672
3425
  msgid "Purchase expires after"
3426
  msgstr "Compra caduca despues de"
3427
 
3428
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:998
3429
  msgid "Thank you for your purchase!"
3430
  msgstr "¡Gracias por su compra!"
3431
 
3432
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1086 ../addons/sell-
3433
+ #: content/myCRED-addon-sell-content.php:1172
3434
  msgid "The following content is set for sale:"
3435
  msgstr "El siguiente contenido esta listo para la venta:"
3436
 
3437
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1232
3438
  msgid "Purchased"
3439
  msgstr "Comprado"
3440
 
3447
  msgstr "Has excedido tu limite de transferencia de %limit%."
3448
 
3449
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3450
+ #: php:2313
3451
  msgid "Transfer"
3452
  msgstr "Transferir"
3453
 
3486
  "transferencias hasta que se haga esto."
3487
 
3488
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3489
+ #: php:1012
3490
  msgid "Insufficient Funds. Please try a lower amount."
3491
  msgstr ""
3492
 
3716
  msgid "Failed to update this uses balance."
3717
  msgstr "No se pudo actualizar el saldo de este usuario."
3718
 
3719
+ #: ../includes/mycred-admin.php:386
3720
  msgid "Excluded"
3721
  msgstr "Excluido"
3722
 
3723
+ #: ../includes/mycred-admin.php:396
3724
  #, php-format
3725
  msgid "Total: %s"
3726
  msgstr ""
3727
 
3728
+ #: ../includes/mycred-admin.php:405
 
 
 
 
 
3729
  msgid "Adjust"
3730
  msgstr "Modificar"
3731
 
3732
+ #: ../includes/mycred-admin.php:443 ../includes/mycred-admin.php:444
3733
  msgid "Edit Balance"
3734
  msgstr ""
3735
 
3736
+ #: ../includes/mycred-admin.php:462
3737
  msgid "Profile"
3738
  msgstr ""
3739
 
3740
+ #: ../includes/mycred-admin.php:469
3741
  msgid "Extended Profile"
3742
  msgstr ""
3743
 
3744
+ #: ../includes/mycred-admin.php:559
3745
  #, php-format
3746
  msgid "This user is excluded from using %s"
3747
  msgstr ""
3748
 
3749
+ #: ../includes/mycred-admin.php:582
3750
  msgid "Edit User"
3751
  msgstr ""
3752
 
3753
+ #: ../includes/mycred-admin.php:584
3754
  msgctxt "user"
3755
  msgid "Add New"
3756
  msgstr ""
3757
 
3758
+ #: ../includes/mycred-admin.php:586
3759
  msgctxt "user"
3760
  msgid "Add Existing"
3761
  msgstr ""
3762
 
3763
+ #: ../includes/mycred-admin.php:597
3764
  #, php-format
3765
  msgid "Total %s Accumulated"
3766
  msgstr ""
3767
 
3768
+ #: ../includes/mycred-admin.php:598
3769
  #, php-format
3770
  msgid "Total %s Spent"
3771
  msgstr ""
3772
 
3773
+ #: ../includes/mycred-admin.php:609
3774
  msgid "View History"
3775
  msgstr ""
3776
 
3777
+ #: ../includes/mycred-admin.php:610
3778
  msgid "Exclude User"
3779
  msgstr ""
3780
 
3781
+ #: ../includes/mycred-admin.php:614
3782
  msgid "Adjust Balance"
3783
  msgstr ""
3784
 
3785
+ #: ../includes/mycred-admin.php:623
3786
  msgid ""
3787
  "Warning! Excluding this user will result in their balance being deleted "
3788
  "along with any entries currently in your log! This can not be undone!"
3789
  msgstr ""
3790
 
3791
+ #: ../includes/mycred-admin.php:681
3792
  #, php-format
3793
  msgid "%singular% balance"
3794
  msgstr "%singular% saldo"
3795
 
3796
+ #: ../includes/mycred-admin.php:721 ../includes/mycred-admin.php:755
3797
  msgid "Update Balance"
3798
  msgstr "Actualizar Saldo"
3799
 
3800
+ #: ../includes/mycred-admin.php:747
3801
  msgid "ID"
3802
  msgstr "ID"
3803
 
3804
+ #: ../includes/mycred-admin.php:753
3805
  msgid "A positive or negative value"
3806
  msgstr "Un valor positivo o negativo"
3807
 
3853
  msgid "Available Template Tags:"
3854
  msgstr "Etiquetas de Plantilla Disponibles:"
3855
 
3856
+ #: ../includes/mycred-functions.php:1673
3857
  msgid "Entire Log"
3858
  msgstr "Todo el Registro"
3859
 
3860
+ #: ../includes/mycred-functions.php:1678 ../includes/mycred-functions.php:1679
3861
  msgid "Displayed Rows"
3862
  msgstr "Filas Mostradas"
3863
 
3864
+ #: ../includes/mycred-functions.php:1686
3865
  msgid "Search Results"
3866
  msgstr "Resultados de la Búsqueda"
3867
 
3868
+ #: ../includes/mycred-functions.php:1687
3869
  msgid "My Entire Log"
3870
  msgstr "Mi Registro Entero"
3871
 
3872
+ #: ../includes/mycred-functions.php:1808
3873
  msgid "ref empty"
3874
  msgstr "ref vacío"
3875
 
3876
+ #: ../includes/mycred-functions.php:1816
3877
  msgid "incorrect user id format"
3878
  msgstr "Formato incorrecto para id del usuario"
3879
 
3880
+ #: ../includes/mycred-functions.php:1829
3881
  msgid "incorrect unix timestamp (from):"
3882
  msgstr "erroneo marca de tiempo de unix (desde):"
3883
 
3884
+ #: ../includes/mycred-functions.php:1838
3885
  msgid "incorrect unix timestamp (to):"
3886
  msgstr "erroneo marca de tiempo de unix (a):"
3887
 
3888
+ #: ../includes/mycred-functions.php:2200
3889
  msgid "Website Registration"
3890
  msgstr ""
3891
 
3892
+ #: ../includes/mycred-functions.php:2201
3893
  msgid "Website Visit"
3894
  msgstr ""
3895
 
3896
+ #: ../includes/mycred-functions.php:2202
3897
  msgid "Viewing Content (Member)"
3898
  msgstr ""
3899
 
3900
+ #: ../includes/mycred-functions.php:2203
3901
  msgid "Viewing Content (Author)"
3902
  msgstr ""
3903
 
3904
+ #: ../includes/mycred-functions.php:2204
3905
  msgid "Logging in"
3906
  msgstr ""
3907
 
3908
+ #: ../includes/mycred-functions.php:2205
3909
  msgid "Publishing Content"
3910
  msgstr ""
3911
 
3912
+ #: ../includes/mycred-functions.php:2206 ../modules/mycred-module-hooks.php:1421
3913
  msgid "Approved Comment"
3914
  msgstr "Comentario Aprobado"
3915
 
3916
+ #: ../includes/mycred-functions.php:2207
3917
  msgid "Unapproved Comment"
3918
  msgstr ""
3919
 
3920
+ #: ../includes/mycred-functions.php:2208
3921
  msgid "SPAM Comment"
3922
  msgstr ""
3923
 
3924
+ #: ../includes/mycred-functions.php:2209
3925
  msgid "Deleted Comment"
3926
  msgstr ""
3927
 
3928
+ #: ../includes/mycred-functions.php:2210
3929
  msgid "Link Click"
3930
  msgstr ""
3931
 
3932
+ #: ../includes/mycred-functions.php:2211
3933
  msgid "Watching Video"
3934
  msgstr ""
3935
 
3936
+ #: ../includes/mycred-functions.php:2212
3937
  msgid "Visitor Referral"
3938
  msgstr ""
3939
 
3940
+ #: ../includes/mycred-functions.php:2213
3941
  msgid "Signup Referral"
3942
  msgstr ""
3943
 
3944
+ #: ../includes/mycred-functions.php:2217
3945
  msgid "New Profile Update"
3946
  msgstr ""
3947
 
3948
+ #: ../includes/mycred-functions.php:2218
3949
  msgid "Avatar Upload"
3950
  msgstr ""
3951
 
3952
+ #: ../includes/mycred-functions.php:2219
3953
  msgid "New Friendship"
3954
  msgstr ""
3955
 
3956
+ #: ../includes/mycred-functions.php:2220
3957
  msgid "Ended Friendship"
3958
  msgstr ""
3959
 
3960
+ #: ../includes/mycred-functions.php:2221
3961
  msgid "New Profile Comment"
3962
  msgstr ""
3963
 
3964
+ #: ../includes/mycred-functions.php:2222
3965
  msgid "Profile Comment Deletion"
3966
  msgstr ""
3967
 
3968
+ #: ../includes/mycred-functions.php:2223
3969
  msgid "New Message"
3970
  msgstr ""
3971
 
3972
+ #: ../includes/mycred-functions.php:2224
3973
  msgid "Sending Gift"
3974
  msgstr ""
3975
 
3976
+ #: ../includes/mycred-functions.php:2225
3977
  msgid "New Group"
3978
  msgstr ""
3979
 
3980
+ #: ../includes/mycred-functions.php:2226
3981
  msgid "Deleted Group"
3982
  msgstr ""
3983
 
3984
+ #: ../includes/mycred-functions.php:2227
3985
  msgid "New Group Forum Topic"
3986
  msgstr ""
3987
 
3988
+ #: ../includes/mycred-functions.php:2228
3989
  msgid "Edit Group Forum Topic"
3990
  msgstr ""
3991
 
3992
+ #: ../includes/mycred-functions.php:2229
3993
  msgid "New Group Forum Post"
3994
  msgstr ""
3995
 
3996
+ #: ../includes/mycred-functions.php:2230
3997
  msgid "Edit Group Forum Post"
3998
  msgstr ""
3999
 
4000
+ #: ../includes/mycred-functions.php:2231
4001
  msgid "Joining Group"
4002
  msgstr ""
4003
 
4004
+ #: ../includes/mycred-functions.php:2232
4005
  msgid "Leaving Group"
4006
  msgstr ""
4007
 
4008
+ #: ../includes/mycred-functions.php:2233
4009
  msgid "New Group Avatar"
4010
  msgstr ""
4011
 
4012
+ #: ../includes/mycred-functions.php:2234
4013
  msgid "New Group Comment"
4014
  msgstr ""
4015
 
4016
+ #: ../includes/mycred-functions.php:2238 ../plugins/mycred-hook-buddypress-media.
4017
  #: php:166
4018
  msgid "Photo Upload"
4019
  msgstr "Subir Foto"
4020
 
4021
+ #: ../includes/mycred-functions.php:2239 ../plugins/mycred-hook-buddypress-media.
4022
  #: php:176
4023
  msgid "Video Upload"
4024
  msgstr "Subir Video"
4025
 
4026
+ #: ../includes/mycred-functions.php:2240 ../plugins/mycred-hook-buddypress-media.
4027
  #: php:186
4028
  msgid "Music Upload"
4029
  msgstr "Subir Música"
4030
 
4031
+ #: ../includes/mycred-functions.php:2244
4032
  msgid "New Link"
4033
  msgstr ""
4034
 
4035
+ #: ../includes/mycred-functions.php:2245
4036
  msgid "Link Voting"
4037
  msgstr ""
4038
 
4039
+ #: ../includes/mycred-functions.php:2246
4040
  msgid "Link Update"
4041
  msgstr ""
4042
 
4043
+ #: ../includes/mycred-functions.php:2250
4044
  msgid "New Forum (bbPress)"
4045
  msgstr ""
4046
 
4047
+ #: ../includes/mycred-functions.php:2251
4048
  msgid "New Forum Topic (bbPress)"
4049
  msgstr ""
4050
 
4051
+ #: ../includes/mycred-functions.php:2252
4052
  msgid "Favorited Topic (bbPress)"
4053
  msgstr ""
4054
 
4055
+ #: ../includes/mycred-functions.php:2253
4056
  msgid "New Topic Reply (bbPress)"
4057
  msgstr ""
4058
 
4059
+ #: ../includes/mycred-functions.php:2257
4060
  msgid "Form Submission (Contact Form 7)"
4061
  msgstr ""
4062
 
4063
+ #: ../includes/mycred-functions.php:2260
4064
  msgid "Form Submission (Gravity Form)"
4065
  msgstr ""
4066
 
4067
+ #: ../includes/mycred-functions.php:2263
4068
  msgid "New Forum Topic (SimplePress)"
4069
  msgstr ""
4070
 
4071
+ #: ../includes/mycred-functions.php:2264
4072
  msgid "New Forum Post (SimplePress)"
4073
  msgstr ""
4074
 
4075
+ #: ../includes/mycred-functions.php:2268
4076
  msgid "Poll Voting"
4077
  msgstr ""
4078
 
4079
+ #: ../includes/mycred-functions.php:2271
4080
  msgid "Sending an Invite"
4081
  msgstr ""
4082
 
4083
+ #: ../includes/mycred-functions.php:2272
4084
  msgid "Accepting an Invite"
4085
  msgstr ""
4086
 
4087
+ #: ../includes/mycred-functions.php:2278
4088
  msgid "Banking Payout"
4089
  msgstr ""
4090
 
4091
+ #: ../includes/mycred-functions.php:2281
4092
  msgid "buyCRED Purchase (PayPal Standard)"
4093
  msgstr ""
4094
 
4095
+ #: ../includes/mycred-functions.php:2282
4096
  msgid "buyCRED Purchase (Skrill)"
4097
  msgstr ""
4098
 
4099
+ #: ../includes/mycred-functions.php:2283
4100
  msgid "buyCRED Purchase (Zombaio)"
4101
  msgstr ""
4102
 
4103
+ #: ../includes/mycred-functions.php:2284
4104
  msgid "buyCRED Purchase (NETBilling)"
4105
  msgstr ""
4106
 
4107
+ #: ../includes/mycred-functions.php:2285
4108
  msgid "buyCRED Purchase (BitPay)"
4109
  msgstr ""
4110
 
4111
+ #: ../includes/mycred-functions.php:2290
4112
  msgid "Coupon Purchase"
4113
  msgstr ""
4114
 
4115
+ #: ../includes/mycred-functions.php:2293
4116
  msgid "Store Purchase (WooCommerce)"
4117
  msgstr ""
4118
 
4119
+ #: ../includes/mycred-functions.php:2294
4120
  msgid "Store Purchase (MarketPress)"
4121
  msgstr ""
4122
 
4123
+ #: ../includes/mycred-functions.php:2295
4124
  msgid "Store Purchase (WP E-Commerce)"
4125
  msgstr ""
4126
 
4127
+ #: ../includes/mycred-functions.php:2300
4128
  msgid "Event Payment (Event Espresso)"
4129
  msgstr ""
4130
 
4131
+ #: ../includes/mycred-functions.php:2301
4132
  msgid "Event Sale (Event Espresso)"
4133
  msgstr ""
4134
 
4135
+ #: ../includes/mycred-functions.php:2305
4136
  msgid "Event Payment (Events Manager)"
4137
  msgstr ""
4138
 
4139
+ #: ../includes/mycred-functions.php:2306
4140
  msgid "Event Sale (Events Manager)"
4141
  msgstr ""
4142
 
4143
+ #: ../includes/mycred-functions.php:2310
4144
  msgid "Content Purchase / Sale"
4145
  msgstr ""
4146
 
4147
+ #: ../includes/mycred-functions.php:2317
4148
  msgid "Manual Adjustment by Admin"
4149
  msgstr ""
4150
 
4317
  "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
4318
  "o gastar en tu tienda. Ponga zero para desactivar."
4319
 
4320
+ #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
4321
+ msgid "Excludes"
4322
+ msgstr "Excluye"
4323
+
4324
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4325
  msgid "Exclude those who can \"Edit Settings\"."
4326
  msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
4432
  msgid "Entry"
4433
  msgstr "Entrada"
4434
 
4435
+ #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:468
4436
  msgid "User Missing"
4437
  msgstr "Usuario Ausente"
4438
 
4630
  "Recuerda a desactivarlo cuando no está en uso para prevenir que llamadas "
4631
  "maliciosas conozcan detalles de tu configuración!"
4632
 
4633
+ #: ../includes/mycred-shortcodes.php:154
4634
  msgid "Leaderboard is empty."
4635
  msgstr "La Tabla de Clasificación esta vacía"
4636
 
4637
+ #: ../includes/mycred-shortcodes.php:425 ../includes/mycred-shortcodes.php:549
4638
  msgid "Amount missing!"
4639
  msgstr "¡Falta la cantidad!"
4640
 
4641
+ #: ../includes/mycred-shortcodes.php:428 ../includes/mycred-shortcodes.php:557
4642
  msgid "Log Template Missing!"
4643
  msgstr "¡Plantilla de Registro No Encontrado!"
4644
 
4645
+ #: ../includes/mycred-shortcodes.php:491
4646
  msgid "Anchor missing URL!"
4647
  msgstr "¡La Ancla falta el URL!"
4648
 
4649
+ #: ../includes/mycred-shortcodes.php:553
4650
  msgid "User ID missing for recipient."
4651
  msgstr "ID del Usuario falta para el destinatario"
4652
 
4653
+ #: ../includes/mycred-shortcodes.php:608
4654
  msgid "Sent"
4655
  msgstr "Enviado"
4656
 
4657
+ #: ../includes/mycred-shortcodes.php:609
4658
  msgid "Error - Try Again"
4659
  msgstr "Error - Inténtelo de nuevo."
4660
 
4661
+ #: ../includes/mycred-shortcodes.php:718
4662
  msgid "A video ID is required for this shortcode"
4663
  msgstr "Este código corto (shortcode) precisa un ID del video."
4664
 
4665
+ #: ../includes/mycred-shortcodes.php:864 ../includes/mycred-shortcodes.php:958
4666
  msgid "Point types not found."
4667
  msgstr ""
4668
 
4669
+ #: ../includes/mycred-shortcodes.php:870 ../includes/mycred-shortcodes.php:878 ..
4670
+ #: includes/mycred-shortcodes.php:970 ../includes/mycred-shortcodes.php:990
4671
  #, php-format
4672
  msgid "You are excluded from using %s."
4673
  msgstr ""
4674
 
4675
+ #: ../includes/mycred-shortcodes.php:874 ../includes/mycred-shortcodes.php:980
4676
  msgid "Your balance is too low to use this feature."
4677
  msgstr ""
4678
 
4679
+ #: ../includes/mycred-shortcodes.php:895
4680
  #, php-format
4681
  msgid "Convert <span>%s</span> to <span>%s</span>"
4682
  msgstr ""
4683
 
4684
+ #: ../includes/mycred-shortcodes.php:904
4685
  #, php-format
4686
  msgid "Your current %s balance"
4687
  msgstr ""
4688
 
4689
+ #: ../includes/mycred-shortcodes.php:912
4690
  #, php-format
4691
  msgid "Minimum %s"
4692
  msgstr ""
4693
 
4694
+ #: ../includes/mycred-shortcodes.php:916
4695
  #, php-format
4696
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4697
  msgstr ""
4698
 
4699
+ #: ../includes/mycred-shortcodes.php:922
4700
  msgid "Exchange"
4701
  msgstr ""
4702
 
4703
+ #: ../includes/mycred-shortcodes.php:1003
4704
  #, php-format
4705
  msgid "You must exchange at least %s!"
4706
  msgstr ""
4707
 
4708
+ #: ../includes/mycred-shortcodes.php:1025
4709
  #, php-format
4710
  msgid "Exchange from %s"
4711
  msgstr ""
4712
 
4713
+ #: ../includes/mycred-shortcodes.php:1037
4714
  #, php-format
4715
  msgid "Exchange to %s"
4716
  msgstr ""
4717
 
4718
+ #: ../includes/mycred-shortcodes.php:1045
4719
  #, php-format
4720
  msgid "You have successfully exchanged %s into %s."
4721
  msgstr ""
5025
  msgid "Give your users badges based on their interaction with your website."
5026
  msgstr ""
5027
 
5028
+ #: ../modules/mycred-module-addons.php:158
5029
+ msgid "Setup recurring payouts or offer / charge interest on user account balances."
5030
+ msgstr ""
5031
+ "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
5032
+ "de las cuentas de usuarios."
5033
+
5034
  #: ../modules/mycred-module-addons.php:169
5035
  msgid ""
5036
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5366
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5367
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5368
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5369
+ #: 2645 ../modules/mycred-module-hooks.php:2674 ../plugins/mycred-hook-badgeOS.
5370
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5371
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5372
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
5428
  msgid "%plural% for viewing %s"
5429
  msgstr ""
5430
 
5431
+ #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2653
5432
+ #: ../modules/mycred-module-hooks.php:2682 ../plugins/mycred-hook-invite-anyone.
5433
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5434
  msgid "Limit"
5435
  msgstr "Límite"
5522
  msgid "Custom tags: %url%, %title% or %id%."
5523
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
5524
 
5525
+ #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2756
5526
  msgid "Note!"
5527
  msgstr "¡Atención!"
5528
 
5605
  msgid "Link"
5606
  msgstr "Enlace"
5607
 
5608
+ #: ../modules/mycred-module-hooks.php:2639
5609
  msgid "Referring Visitors"
5610
  msgstr "Referiendo Visitantes"
5611
 
5612
+ #: ../modules/mycred-module-hooks.php:2663 ../modules/mycred-module-hooks.php:2692
5613
  msgid "The number of referrals each member can make. Use zero for unlimited."
5614
  msgstr ""
5615
  "El numero de referencias que cada miembro puede hacer. Utilice cero para "
5616
  "ilimitado."
5617
 
5618
+ #: ../modules/mycred-module-hooks.php:2667 ../modules/mycred-module-hooks.php:2696
5619
  msgid "Referring Signups"
5620
  msgstr "Inscripciones a través de Referencias"
5621
 
5622
+ #: ../modules/mycred-module-hooks.php:2671
5623
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5624
  msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
5625
 
5626
+ #: ../modules/mycred-module-hooks.php:2698
5627
  msgid "Registrations are disabled."
5628
  msgstr "Se han deshabilitado inscripciones."
5629
 
5630
+ #: ../modules/mycred-module-hooks.php:2705
5631
  msgid "Referral Links"
5632
  msgstr "Enlaces Referentes"
5633
 
5634
+ #: ../modules/mycred-module-hooks.php:2709
5635
  msgid "Assign numeric referral IDs to each user."
5636
  msgstr "Asignar ID numerica referente a cada usuario."
5637
 
5638
+ #: ../modules/mycred-module-hooks.php:2710 ../modules/mycred-module-hooks.php:2716
5639
  msgid "Example"
5640
  msgstr "Ejemplo"
5641
 
5642
+ #: ../modules/mycred-module-hooks.php:2715
5643
  msgid "Assign usernames as IDs for each user."
5644
  msgstr "Asignar los nombres de usuario como ID para cada usuario."
5645
 
5646
+ #: ../modules/mycred-module-hooks.php:2719
5647
  msgid "IP Limit"
5648
  msgstr "Límite de IP"
5649
 
5650
+ #: ../modules/mycred-module-hooks.php:2723
5651
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5652
  msgstr ""
5653
  "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
5654
  "número ilimitado"
5655
 
5656
+ #: ../modules/mycred-module-hooks.php:2727 ../modules/mycred-module-hooks.php:2760
5657
  msgid "BuddyPress Profile"
5658
  msgstr "Perfil de BuddyPress"
5659
 
5660
+ #: ../modules/mycred-module-hooks.php:2730
5661
  msgid "Insert Link in users Profile"
5662
  msgstr "Insertar enlace en el perfil del usuario"
5663
 
5664
+ #: ../modules/mycred-module-hooks.php:2731
5665
  msgid ""
5666
  "Option to inser the referral link in users profiles. Links will only be "
5667
  "visible to users viewing their own profiles or administrators."
5670
  " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
5671
  "ven a sus propios perfiles."
5672
 
5673
+ #: ../modules/mycred-module-hooks.php:2737
5674
  msgid "Leave empty to hide."
5675
  msgstr "Deje el campo vacío para ocultarlo."
5676
 
5677
+ #: ../modules/mycred-module-hooks.php:2740
5678
  msgid "Description"
5679
  msgstr "Descripción"
5680
 
5681
+ #: ../modules/mycred-module-hooks.php:2741
5682
  msgid "Optional description to insert under the link."
5683
  msgstr "Insertar la descripción opcional debajo del enlace."
5684
 
5685
+ #: ../modules/mycred-module-hooks.php:2753
5686
  msgid "Profile Positioning"
5687
  msgstr "Posicionamiento del Perfil"
5688
 
5689
+ #: ../modules/mycred-module-hooks.php:2755
5690
  msgid ""
5691
  "You can move around the referral link on your users profile by changing the "
5692
  "position. Increase to move up, decrease to move down."
5694
  "Puedes moverte por el enlace de referencia en su perfil los usuarios "
5695
  "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
5696
 
5697
+ #: ../modules/mycred-module-hooks.php:2756
5698
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5699
  msgstr ""
5700
  "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
5701
  "en el perfil del usuario!"
5702
 
5703
+ #: ../modules/mycred-module-hooks.php:2762
5704
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5705
  msgstr "Requiere que BuddyPress Extended Profiles sea activado."
5706
 
5725
  msgid "Entries"
5726
  msgstr "Entradas"
5727
 
5728
+ #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
5729
+ #: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:574
5730
  msgid "Export"
5731
  msgstr "Exportar"
5732
 
5734
  msgid "Search results for"
5735
  msgstr "Buscar entre resultados por"
5736
 
5737
+ #: ../modules/mycred-module-log.php:378
5738
  #, php-format
5739
  msgid "%s Log"
5740
  msgstr "Registro de %s"
5741
 
5742
+ #: ../modules/mycred-module-log.php:506
5743
  msgid "Edit"
5744
  msgstr "Editar"
5745
 
5746
+ #: ../modules/mycred-module-log.php:547
5747
  msgid "Time"
5748
  msgstr "Tiempo"
5749
 
5750
+ #: ../modules/mycred-module-log.php:551
5751
  msgid "Current Log Entry"
5752
  msgstr "Entrada Actual de Registro"
5753
 
5754
+ #: ../modules/mycred-module-log.php:553
5755
  msgid "The current saved log entry"
5756
  msgstr "La entrada guardada actual del registro"
5757
 
5758
+ #: ../modules/mycred-module-log.php:556
5759
  msgid "Adjust Log Entry"
5760
  msgstr "Ajustar entrada de registro"
5761
 
5762
+ #: ../modules/mycred-module-log.php:558
5763
  msgid "The new log entry"
5764
  msgstr "La nueva entrada de registro"
5765
 
5766
+ #: ../modules/mycred-module-log.php:561
5767
  msgid "Update Log Entry"
5768
  msgstr "Actualiza la entrada de registro"
5769
 
5770
+ #: ../modules/mycred-module-log.php:628
5771
  #, php-format
5772
  msgid "My %s History"
5773
  msgstr "Mi Historial de %s"
6488
  #: ../plugins/mycred-hook-wp-polls.php:19
6489
  #, php-format
6490
  msgid "Awards %_plural% for users voting in polls."
6491
+ msgstr ""
6492
+ "Concede %_plural% a usuarios que han votado en encuestas.Concede %_plural% a "
6493
+ "usuarios que han votado en encuestas."
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 Jul 28 2014 16:20:34 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Spanish (Venezuela)\n"
@@ -15,7 +15,7 @@ msgstr ""
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__nget1,2;__ngettext_noop:1,2;"
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
@@ -44,8 +44,8 @@ msgstr "Gente genial"
44
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
45
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
46
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
47
- #: sell-content.php:364 ../addons/transfer/myCRED-addon-transfer.php:132 ..
48
- #: includes/mycred-shortcodes.php:605
49
  msgid "Processing..."
50
  msgstr "Procesando..."
51
 
@@ -151,7 +151,7 @@ msgid "Once per day (reset at midnight)"
151
  msgstr "Una vez al dia (reinicializado al medianoche)"
152
 
153
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
154
- #: abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
155
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
157
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
@@ -177,8 +177,8 @@ msgstr "haga clic para cerrar"
177
  msgid "click to open"
178
  msgstr "haga clic para abrir"
179
 
180
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-
181
- #: banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:849
182
  msgid "Settings Updated"
183
  msgstr "Configuraciones Actualizadas"
184
 
@@ -383,147 +383,192 @@ msgstr ""
383
  msgid "in total"
384
  msgstr ""
385
 
386
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-
387
- #: banking.php:43 ../addons/banking/myCRED-addon-banking.php:44
388
  msgid "Banking"
389
  msgstr "Banco"
390
 
391
- #: ../addons/banking/myCRED-addon-banking.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
392
  msgid "Compound Interest"
393
  msgstr "Interés Compuesto"
394
 
395
- #: ../addons/banking/myCRED-addon-banking.php:104
396
  #, php-format
397
- msgid ""
398
- "Apply an interest rate on your users %_plural% balances. Interest rate is "
399
- "annual and is compounded daily as long as this service is enabled. Positive "
400
- "interest rate leads to users gaining %_plural% while a negative interest "
401
- "rate will to users loosing %_plural%."
402
  msgstr ""
403
- "Aplica una tasa de interés al saldo [.....] de sus usuarios. La tasa es "
404
- "anual y es compuesto diariamente mientras que este servicio esta activada. "
405
- "Un tipo de interés positiva causara a los usuarios a ganar [.....] mientras "
406
- "que un tipo de interés negativa causara a los usuarios a perder %_plural%."
407
 
408
- #: ../addons/banking/myCRED-addon-banking.php:110
409
  msgid "Recurring Payouts"
410
  msgstr "Pagos Recurrentes"
411
 
412
- #: ../addons/banking/myCRED-addon-banking.php:111
413
- #, php-format
414
- msgid ""
415
- "Give your users %_plural% on a regular basis with the option to set the "
416
- "number of times you want this payout to run (cycles)."
417
  msgstr ""
418
- "Da a tus usuarios %_plural% a intervalos regulares con la opción de ajustar "
419
- "cuantas vezes quieres que este pago se repita (ciclos)"
420
 
421
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-
422
- #: addon-buy-creds.php:839 ../addons/buy-creds/myCRED-addon-buy-creds.php:935 ..
423
- #: includes/mycred-admin.php:573 ../includes/mycred-network.php:148 ..
424
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
425
- #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:579 ..
426
  #: modules/mycred-module-settings.php:312
427
  msgid "Access Denied"
428
  msgstr "Acceso Denegado"
429
 
430
- #: ../addons/banking/myCRED-addon-banking.php:167
431
  #, php-format
432
  msgid "%s Banking"
433
  msgstr "%s Bancario"
434
 
435
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.
436
- #: php:158
437
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
438
  msgstr ""
439
- "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
440
- "de las cuentas de usuarios."
441
 
442
- #: ../addons/banking/myCRED-addon-banking.php:171
443
  msgid "WP-Cron deactivation detected!"
444
  msgstr "¡Se detecto la desactivación de WP-Cron!"
445
 
446
- #: ../addons/banking/myCRED-addon-banking.php:172
447
  msgid "Warning! This add-on requires WP - Cron to work."
448
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
449
 
450
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-
451
- #: addon-buy-creds.php:873 ../modules/mycred-module-hooks.php:196
452
  msgid "Enable"
453
  msgstr "Activar"
454
 
455
- #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
456
  #: php:211
457
  msgid "Update Changes"
458
  msgstr "Actualizar Cambios"
459
 
460
- #: ../addons/banking/abstracts/mycred-abstract-service.php:57
461
- msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
462
- msgstr "La función myCRED_Service::run() debe ser anulado en un sub-clase."
463
-
464
- #: ../addons/banking/abstracts/mycred-abstract-service.php:66
465
  msgid "This Service has no settings"
466
  msgstr "Este servicio no ha sido configurado"
467
 
468
  #. also, "Cada Hora"
469
- #: ../addons/banking/abstracts/mycred-abstract-service.php:143
470
  msgid "Hourly"
471
  msgstr "Por Hora"
472
 
473
- #: ../addons/banking/abstracts/mycred-abstract-service.php:147
474
  msgid "Daily"
475
  msgstr "Diario"
476
 
477
- #: ../addons/banking/abstracts/mycred-abstract-service.php:151
478
  msgid "Weekly"
479
  msgstr "Semanal"
480
 
481
- #: ../addons/banking/abstracts/mycred-abstract-service.php:155
482
  msgid "Monthly"
483
  msgstr "Mensual"
484
 
485
- #: ../addons/banking/abstracts/mycred-abstract-service.php:159
486
  msgid "Quarterly"
487
  msgstr "Trimestral"
488
 
489
- #: ../addons/banking/abstracts/mycred-abstract-service.php:163
490
  msgid "Semiannually"
491
  msgstr "Semestral"
492
 
493
- #: ../addons/banking/abstracts/mycred-abstract-service.php:167
494
  msgid "Annually"
495
  msgstr "Anual"
496
 
497
- #: ../addons/banking/services/mycred-bank-service-interest.php:25
 
 
 
 
 
 
 
 
 
 
 
 
498
  msgid "%plural% interest rate payment"
499
  msgstr "%plural% pago de tasa de interés"
500
 
501
- #: ../addons/banking/services/mycred-bank-service-interest.php:275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
502
  msgid "Interest Rate"
503
  msgstr "Tasa de Interés"
504
 
505
- #: ../addons/banking/services/mycred-bank-service-interest.php:282
506
- msgid "Payed / Charged"
507
- msgstr "Pagado / Cobrado"
508
-
509
- #: ../addons/banking/services/mycred-bank-service-interest.php:288
510
- msgid "The interest rate can be either positive or negative and is compounded daily."
511
  msgstr ""
512
- "La tasa de interés puede ser o positivo o negativo y es compuesto "
513
- "diariamente."
514
 
515
- #: ../addons/banking/services/mycred-bank-service-interest.php:291 ..
516
- #: addons/coupons/myCRED-addon-coupons.php:392
517
- msgid "Minimum Balance"
518
- msgstr "Saldo Minimo"
519
 
520
- #: ../addons/banking/services/mycred-bank-service-interest.php:295
521
- msgid "The minimum requires balance for interest to apply."
522
- msgstr "El minimo saldo necesario para aplicar una tasa de interés."
 
523
 
524
  #. can also be "Plantilla de Bitácora"
525
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ..
526
- #: addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-
527
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
528
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
529
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
@@ -541,95 +586,119 @@ msgstr "El minimo saldo necesario para aplicar una tasa de interés."
541
  msgid "Log Template"
542
  msgstr "Plantilla de Registro"
543
 
544
- #: ../addons/banking/services/mycred-bank-service-interest.php:305 ..
545
- #: addons/banking/services/mycred-bank-service-payouts.php:259
546
- msgid "Run Time"
547
- msgstr "Tiempo de Ejecución"
 
548
 
549
- #: ../addons/banking/services/mycred-bank-service-interest.php:309 ..
550
- #: addons/banking/services/mycred-bank-service-payouts.php:263
551
- msgid ""
552
- "For large websites, if you are running into time out issues during payouts, "
553
- "you can set the number of seconds a process can run. Use zero for unlimited, "
554
- "but be careful especially if you are on a shared server."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
555
  msgstr ""
556
- "Para sitios web grandes, si tienes problemas de expiramiento durante pagos, "
557
- "puedes ajustar cuantos segundos un proceso puede operar. Ponga cero si "
558
- "quiere ilimitado, pero tenga cuidado especialmente si esta usando un "
559
- "servidor compartido."
560
 
561
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
562
  msgid "Daily %_plural%"
563
  msgstr "%_plural% diarios"
564
 
565
- #: ../addons/banking/services/mycred-bank-service-payouts.php:214
566
- msgid "Not yet run"
567
- msgstr "Todavia no ejecutado"
 
 
568
 
569
- #: ../addons/banking/services/mycred-bank-service-payouts.php:219
 
 
 
 
 
 
 
 
570
  msgid "Pay Users"
571
  msgstr "Pagar a los Usuarios"
572
 
573
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
574
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
575
- #: creds.php:1520 ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ..
576
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
577
- #: includes/mycred-admin.php:726 ../includes/mycred-admin.php:771 ..
578
- #: includes/mycred-shortcodes.php:908
579
  msgid "Amount"
580
  msgstr "Cantidad"
581
 
582
- #: ../addons/banking/services/mycred-bank-service-payouts.php:224
583
- msgid "Can not be zero."
584
- msgstr "No puede ser cero."
585
-
586
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ..
587
- #: addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-
588
- #: module-hooks.php:2113
589
  msgid "Interval"
590
  msgstr "Interval"
591
 
592
- #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ..
593
- #: addons/banking/services/mycred-bank-service-payouts.php:242
594
  msgid "Cycles"
595
  msgstr "Ciclos"
596
 
597
- #: ../addons/banking/services/mycred-bank-service-payouts.php:235
598
  msgid "Set to -1 for unlimited"
599
  msgstr "Ajusta a -1 para ilimitado"
600
 
601
- #: ../addons/banking/services/mycred-bank-service-payouts.php:238
602
- msgid "Last Run / Activated"
603
- msgstr "Ejecución Reciente / Activado"
604
-
605
- #: ../addons/banking/services/mycred-bank-service-payouts.php:241
606
- msgid ""
607
- "Select how often you want to award %_plural%. Note that when this service is "
608
- "enabled, the first payout will be in the beginning of the next period. So "
609
- "with a \"Daily\" interval, the first payout will occur first thing in the "
610
- "morning."
611
- msgstr ""
612
- "Elige la frecuencia con cual quieres conceder %_plural%. Ten en cuenta que "
613
- "cuando este servicio está activado, el primer pago se realizara al comienzo "
614
- "del siguiente período. Así que con la frecuencia de \"Diario\", el primer pago "
615
- "se realizará a primera hora de la mañana proxima."
616
-
617
- #: ../addons/banking/services/mycred-bank-service-payouts.php:242
618
- msgid ""
619
- "Cycles let you choose how many intervals this service should run. Each time "
620
- "a cycle runs, the value will decrease until it hits zero, in which case this "
621
- "service will deactivate itself. Use -1 to run unlimited times."
622
- msgstr ""
623
- "Ciclos te permiten ajustar por cuantos intervalos este servicio debe "
624
- "ejecutarse. Cada vez que se ejecuta un ciclo, el valor disminuirá hasta que "
625
- "llegue a cero, en cuyo caso este servicio se desactivará a sí mismo. Utilice "
626
- "-1 para que se ejecute ilimitadas veces."
627
-
628
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
629
  msgid "Important"
630
  msgstr "Importante"
631
 
632
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
633
  msgid ""
634
  "You can always stop payouts by deactivating this service. Just remember that "
635
  "if you deactivate while there are cycles left, this service will continue on "
@@ -640,19 +709,6 @@ msgstr ""
640
  "ciclos para completar, este servicio volverá a continuar en cuando se vuelvá "
641
  "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
642
 
643
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
644
- #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
645
- msgid "Excludes"
646
- msgstr "Excluye"
647
-
648
- #: ../addons/banking/services/mycred-bank-service-payouts.php:249
649
- msgid ""
650
- "Comma separated list of user IDs to exclude from this service. No spaces "
651
- "allowed!"
652
- msgstr ""
653
- "Lista separada por comas de los IDs de usuario para excluir de este servicio."
654
- " ¡No se permiten espacios!"
655
-
656
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
657
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
658
  msgid "Payment Gateways"
@@ -678,7 +734,7 @@ msgid "Edit Pending Payment"
678
  msgstr ""
679
 
680
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
681
- #: addon-buy-creds.php:1631
682
  msgid "No pending payments found"
683
  msgstr ""
684
 
@@ -687,23 +743,23 @@ msgid "Not found in Trash"
687
  msgstr ""
688
 
689
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
690
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595
691
  msgid "Transaction ID"
692
  msgstr "Identificación de la Transacción"
693
 
694
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
695
- #: addon-buy-creds.php:984
696
  msgid "Buyer"
697
  msgstr ""
698
 
699
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
700
- #: addon-buy-creds.php:1598 ../addons/buy-creds/abstracts/mycred-abstract-payment-
701
  #: gateway.php:563
702
  msgid "Cost"
703
  msgstr "Costo"
704
 
705
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
706
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1596 ..
707
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
708
  msgid "Gateway"
709
  msgstr "Pasarela"
@@ -721,14 +777,14 @@ msgid "buyCRED Purchase Log"
721
  msgstr "compraCRED Registro de Compras"
722
 
723
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
724
- #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:845
725
  msgid "Purchase Log"
726
  msgstr "Registro de Compras"
727
 
728
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
729
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
730
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
731
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:416
732
  msgid "Payments"
733
  msgstr "Pagos"
734
 
@@ -807,7 +863,7 @@ msgid "Allow users to buy %_plural% for content authors."
807
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
808
 
809
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
810
- #: hooks.php:2748
811
  msgid "Available Shortcodes"
812
  msgstr "Códigos cortos Disponibles"
813
 
@@ -816,159 +872,154 @@ msgstr "Códigos cortos Disponibles"
816
  msgid "%s Exchange Rate"
817
  msgstr ""
818
 
819
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:759 ../addons/sell-
820
- #: content/myCRED-addon-sell-content.php:113
821
- msgid "Leave empty to use the default value."
822
- msgstr ""
823
-
824
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
825
  msgid "Save Exchange Rates"
826
  msgstr ""
827
 
828
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
829
  msgid "Exchange rate override saved"
830
  msgstr ""
831
 
832
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:827
833
  msgid "Payment completed"
834
  msgstr ""
835
 
836
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
837
  #, php-format
838
  msgid "%s Payment Gateways"
839
  msgstr "%s Pasarelas de Pago"
840
 
841
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845 ../addons/buy-creds/myCRED-
842
- #: addon-buy-creds.php:992
843
  msgid "buyCRED Settings"
844
  msgstr "Configuraciones de compraCRED"
845
 
846
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
847
  msgid "Test Mode"
848
  msgstr "Modo de Prueba"
849
 
850
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
851
  msgid "Enabled"
852
  msgstr "Habilitado"
853
 
854
  #. also, "Inhabilitar"
855
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:871
856
  msgid "Disabled"
857
  msgstr "Deshactivado"
858
 
859
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
860
  msgid "Sandbox Mode"
861
  msgstr "Modo Entorno Aislado"
862
 
863
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:884
864
  msgid "Enable for test purchases."
865
  msgstr "Habilitar para compras de prueba."
866
 
867
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:901 ../addons/gateway/event-
868
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
869
  msgid "Update Settings"
870
  msgstr "Actualizar Configuraciones"
871
 
872
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
873
  msgid "More Gateways"
874
  msgstr ""
875
 
876
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
877
  #: 634
878
  msgid "Date"
879
  msgstr "Fecha"
880
 
881
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
882
  msgid "Payed"
883
  msgstr "Pagado"
884
 
885
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
886
  msgid "<strong>buy</strong>CRED Purchase Log"
887
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
888
 
889
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
890
  #: booking/mycred-eventespresso3.php:367
891
  msgid "Gateway Settings"
892
  msgstr "Configuraciones de la Pasarela de Pago"
893
 
894
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1168 ../addons/sell-
895
- #: content/myCRED-addon-sell-content.php:1184
896
  msgid "No purchases found"
897
  msgstr "No se encontro ninguna compra"
898
 
899
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1238 ../addons/buy-creds/myCRED-
900
- #: addon-buy-creds.php:1351
901
  msgid "This Add-on needs to setup before you can use this shortcode."
902
  msgstr ""
903
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
904
  "corto (shortcode)."
905
 
906
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1257 ../addons/buy-creds/myCRED-
907
- #: addon-buy-creds.php:1370
908
  msgid "No gateways installed."
909
  msgstr "Ningun pasarela de pago instalado."
910
 
911
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1258 ../addons/buy-creds/myCRED-
912
- #: addon-buy-creds.php:1371
913
  msgid "Gateway does not exist."
914
  msgstr "Puerta de enlace no existe."
915
 
916
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1306
917
  msgid "Yourself"
918
  msgstr "Tu mismo"
919
 
920
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1372
921
  msgid "No active gateways found."
922
  msgstr "No se encuentra ningun puerta de enlace activo."
923
 
924
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1373
925
  msgid "The selected gateway is not active."
926
  msgstr "La puerta de enlace seleccionada no esta activo."
927
 
928
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1420
929
  #, php-format
930
  msgid "Buy with %gateway%"
931
  msgstr "Compra con %gateway%"
932
 
933
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1426 ../addons/sell-
934
  #: content/myCRED-addon-sell-content.php:44
935
  msgid "Buy Now"
936
  msgstr "Compra Ahora"
937
 
938
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1471
939
  msgid "No users found"
940
  msgstr "Ningun Usuario Encontrado"
941
 
942
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1481
943
  msgid "To"
944
  msgstr "A"
945
 
946
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1498
947
  msgid "Select Amount"
948
  msgstr "Selecciona la Cantidad"
949
 
950
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1522
951
  msgid "min."
952
  msgstr "min."
953
 
954
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1530
955
  msgid "Select Gateway"
956
  msgstr "Selecciona la Pasarela de Pago"
957
 
958
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1571 ../addons/gateway/event-
959
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
960
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
961
  #: php:35
962
  msgid "Pay Now"
963
  msgstr "Pagar Ahora"
964
 
965
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1572 ../includes/mycred-install.
966
  #: php:515
967
  msgid "Cancel"
968
  msgstr "Cancelar"
969
 
970
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ../addons/ranks/myCRED-
971
- #: addon-ranks.php:990 ../modules/mycred-module-log.php:372 ../modules/mycred-
972
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
973
  msgid "Actions"
974
  msgstr "Acciones"
@@ -1009,12 +1060,12 @@ msgid "Cancel purchase"
1009
  msgstr "Cancelar la compra"
1010
 
1011
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1012
- #: includes/mycred-admin.php:720 ../includes/mycred-admin.php:757
1013
  msgid "required"
1014
  msgstr "necesario"
1015
 
1016
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1017
- #: includes/mycred-admin.php:722 ../includes/mycred-admin.php:759
1018
  msgid "optional"
1019
  msgstr "opcional"
1020
 
@@ -1418,7 +1469,7 @@ msgstr "Página de Pago"
1418
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1419
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1420
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1421
- #: modules/mycred-module-hooks.php:2713
1422
  msgid "Title"
1423
  msgstr "Titulo"
1424
 
@@ -1667,7 +1718,7 @@ msgstr "La cantidad de %plural% que vale este cupón."
1667
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1668
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1669
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1670
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:404 ..
1671
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1672
  #: includes/importers/mycred-cubepoints.php:365
1673
  msgid "Point Type"
@@ -2074,8 +2125,8 @@ msgid "Sent To"
2074
  msgstr "Enviado A:"
2075
 
2076
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2077
- #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:766 ..
2078
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:544
2079
  msgid "User"
2080
  msgstr "Usuario"
2081
 
@@ -2201,7 +2252,7 @@ msgstr ""
2201
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2202
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2203
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2204
- #: php:412 ../includes/mycred-admin.php:614 ../includes/mycred-admin.php:767
2205
  msgid "Current Balance"
2206
  msgstr "Saldo Actual"
2207
 
@@ -2324,7 +2375,7 @@ msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
2324
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2325
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2326
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2327
- #: php:578 ../includes/mycred-shortcodes.php:913
2328
  msgid "Exchange Rate"
2329
  msgstr "Tipo de Cambio"
2330
 
@@ -2558,10 +2609,6 @@ msgstr "Plantilla de Registro para Pagos"
2558
  msgid "How much is 1 %s worth in %s"
2559
  msgstr "Cuanto vale 1 %s en %s"
2560
 
2561
- #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2562
- msgid "Payout"
2563
- msgstr "Desembolso"
2564
-
2565
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2566
  msgid "Instructions"
2567
  msgstr "Instrucciones"
@@ -2637,8 +2684,8 @@ msgstr "El titulo a mostrar en la factura y en los registros."
2637
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2638
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2639
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2640
- #: content/myCRED-addon-sell-content.php:452 ../addons/sell-content/myCRED-addon-
2641
- #: sell-content.php:662
2642
  msgid "Button Label"
2643
  msgstr "Eqiqueta Asignada al Botón"
2644
 
@@ -2651,8 +2698,8 @@ msgstr "Botón de Pago"
2651
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2652
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2653
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2654
- #: content/myCRED-addon-sell-content.php:443 ../addons/sell-content/myCRED-addon-
2655
- #: sell-content.php:658
2656
  msgid "Price"
2657
  msgstr "Precio"
2658
 
@@ -2674,12 +2721,12 @@ msgid "Log"
2674
  msgstr "Registro"
2675
 
2676
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2677
- #: includes/mycred-admin.php:735 ../includes/mycred-admin.php:772
2678
  msgid "Log Entry"
2679
  msgstr "Entrada de Registro"
2680
 
2681
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2682
- #: content/myCRED-addon-sell-content.php:466
2683
  msgid "Templates"
2684
  msgstr "Plantillas"
2685
 
@@ -2761,7 +2808,7 @@ msgid "Reject"
2761
  msgstr "Rechazar"
2762
 
2763
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2764
- #: modules/mycred-module-log.php:504 ../modules/mycred-module-settings.php:488 ..
2765
  #: modules/mycred-module-settings.php:507
2766
  msgid "Delete"
2767
  msgstr "Borrar"
@@ -3224,9 +3271,9 @@ msgid "No users found with this rank"
3224
  msgstr "Ningun usuario encontrado con este rango"
3225
 
3226
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3227
- #: shortcodes.php:424 ../includes/mycred-shortcodes.php:427 ../includes/mycred-
3228
- #: shortcodes.php:489 ../includes/mycred-shortcodes.php:547 ../includes/mycred-
3229
- #: shortcodes.php:551 ../includes/mycred-shortcodes.php:555
3230
  msgid "error"
3231
  msgstr "error"
3232
 
@@ -3246,44 +3293,44 @@ msgstr ""
3246
  msgid "Save Profit Share"
3247
  msgstr ""
3248
 
3249
- #: ../addons/sell-content/myCRED-addon-sell-content.php:158
3250
  msgid "Profit Share override saved"
3251
  msgstr ""
3252
 
3253
- #: ../addons/sell-content/myCRED-addon-sell-content.php:320
3254
  msgid "You can not buy this content."
3255
  msgstr "No puedes comprar este contenido."
3256
 
3257
- #: ../addons/sell-content/myCRED-addon-sell-content.php:365
3258
  msgid "Error. Try Again"
3259
  msgstr "Error. Inténtelo de nuevo"
3260
 
3261
- #: ../addons/sell-content/myCRED-addon-sell-content.php:387
3262
  msgid "No Payout. Just charge."
3263
  msgstr "No Desembolsar. Solo cobrar."
3264
 
3265
- #: ../addons/sell-content/myCRED-addon-sell-content.php:388
3266
  msgid "Pay Content Author."
3267
  msgstr "Pagar al Autor del Contenido"
3268
 
3269
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394 ../includes/mycred-
3270
  #: overview.php:141 ../includes/mycred-overview.php:148
3271
  msgid "Sell Content"
3272
  msgstr "Vender Contenido"
3273
 
3274
- #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3275
  msgid "Post Types"
3276
  msgstr "Post Types"
3277
 
3278
- #: ../addons/sell-content/myCRED-addon-sell-content.php:400
3279
  msgid "Comma separated list of post types that can be sold."
3280
  msgstr "Lista separada por comas de post types que se puede vender."
3281
 
3282
- #: ../addons/sell-content/myCRED-addon-sell-content.php:430
3283
  msgid "Percentage to pay Author"
3284
  msgstr "Porcentaje que pagar al Autor"
3285
 
3286
- #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3287
  msgid ""
3288
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3289
  "authors are not paid."
@@ -3292,31 +3339,31 @@ msgstr ""
3292
  "si no se les paga a los autores."
3293
 
3294
  #. also, "por defecto" and "predeterminados"
3295
- #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3296
  msgid "Defaults"
3297
  msgstr "Predefinidos"
3298
 
3299
- #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3300
  msgid "Allow authors to change price."
3301
  msgstr "Permitir que los Autores cambien el precio."
3302
 
3303
- #: ../addons/sell-content/myCRED-addon-sell-content.php:457
3304
  msgid "Allow authors to change button label."
3305
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
3306
 
3307
- #: ../addons/sell-content/myCRED-addon-sell-content.php:461
3308
  msgid "Purchases expire after"
3309
  msgstr "Compras caducan despues de"
3310
 
3311
- #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3312
  msgid "Use zero for permanent sales."
3313
  msgstr "Usa cero para ventas permanentes."
3314
 
3315
- #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3316
  msgid "For Visitors"
3317
  msgstr ""
3318
 
3319
- #: ../addons/sell-content/myCRED-addon-sell-content.php:474
3320
  #, php-format
3321
  msgid ""
3322
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3325,69 +3372,69 @@ msgstr ""
3325
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
3326
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
3327
 
3328
- #: ../addons/sell-content/myCRED-addon-sell-content.php:479
3329
  msgid "For Members"
3330
  msgstr ""
3331
 
3332
- #: ../addons/sell-content/myCRED-addon-sell-content.php:484 ../addons/sell-
3333
- #: content/myCRED-addon-sell-content.php:494
3334
  #, php-format
3335
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3336
  msgstr ""
3337
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
3338
  "realizar compras!"
3339
 
3340
- #: ../addons/sell-content/myCRED-addon-sell-content.php:489
3341
  msgid "For members that can not afford to buy"
3342
  msgstr ""
3343
 
3344
- #: ../addons/sell-content/myCRED-addon-sell-content.php:498
3345
  msgid "Log template for Purchases"
3346
  msgstr "Plantilla de registros para Compras"
3347
 
3348
- #: ../addons/sell-content/myCRED-addon-sell-content.php:505
3349
  msgid "Log template for Sales"
3350
  msgstr "Plantilla de registros para Ventas"
3351
 
3352
- #: ../addons/sell-content/myCRED-addon-sell-content.php:557
3353
  #, php-format
3354
  msgid "%s Sell This"
3355
  msgstr "%s Vende Esto"
3356
 
3357
- #: ../addons/sell-content/myCRED-addon-sell-content.php:611
3358
  #, php-format
3359
  msgid "%s Sell Content needs to be setup before you can use this feature."
3360
  msgstr ""
3361
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
3362
  "esta característica técnica."
3363
 
3364
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3365
  msgid "Setup add-on"
3366
  msgstr "Configurar Extensión"
3367
 
3368
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3369
  msgid "Lets do it"
3370
  msgstr "Vamos a hacerlo."
3371
 
3372
- #: ../addons/sell-content/myCRED-addon-sell-content.php:652
3373
  #, php-format
3374
  msgid "Enable sale of this %s"
3375
  msgstr ""
3376
 
3377
- #: ../addons/sell-content/myCRED-addon-sell-content.php:666
3378
  msgid "Purchase expires after"
3379
  msgstr "Compra caduca despues de"
3380
 
3381
- #: ../addons/sell-content/myCRED-addon-sell-content.php:992
3382
  msgid "Thank you for your purchase!"
3383
  msgstr "¡Gracias por su compra!"
3384
 
3385
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1080 ../addons/sell-
3386
- #: content/myCRED-addon-sell-content.php:1166
3387
  msgid "The following content is set for sale:"
3388
  msgstr "El siguiente contenido esta listo para la venta:"
3389
 
3390
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1226
3391
  msgid "Purchased"
3392
  msgstr "Comprado"
3393
 
@@ -3400,7 +3447,7 @@ msgid "You have exceeded your %limit% transfer limit."
3400
  msgstr "Has excedido tu limite de transferencia de %limit%."
3401
 
3402
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3403
- #: php:2295
3404
  msgid "Transfer"
3405
  msgstr "Transferir"
3406
 
@@ -3439,7 +3486,7 @@ msgstr ""
3439
  "transferencias hasta que se haga esto."
3440
 
3441
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3442
- #: php:1010
3443
  msgid "Insufficient Funds. Please try a lower amount."
3444
  msgstr ""
3445
 
@@ -3669,97 +3716,92 @@ msgstr "La Cantidad no Puede ser Cero"
3669
  msgid "Failed to update this uses balance."
3670
  msgstr "No se pudo actualizar el saldo de este usuario."
3671
 
3672
- #: ../includes/mycred-admin.php:404
3673
  msgid "Excluded"
3674
  msgstr "Excluido"
3675
 
3676
- #: ../includes/mycred-admin.php:414
3677
  #, php-format
3678
  msgid "Total: %s"
3679
  msgstr ""
3680
 
3681
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:254 ..
3682
- #: modules/mycred-module-log.php:255
3683
- msgid "History"
3684
- msgstr "Historial"
3685
-
3686
- #: ../includes/mycred-admin.php:423
3687
  msgid "Adjust"
3688
  msgstr "Modificar"
3689
 
3690
- #: ../includes/mycred-admin.php:461 ../includes/mycred-admin.php:462
3691
  msgid "Edit Balance"
3692
  msgstr ""
3693
 
3694
- #: ../includes/mycred-admin.php:480
3695
  msgid "Profile"
3696
  msgstr ""
3697
 
3698
- #: ../includes/mycred-admin.php:487
3699
  msgid "Extended Profile"
3700
  msgstr ""
3701
 
3702
- #: ../includes/mycred-admin.php:577
3703
  #, php-format
3704
  msgid "This user is excluded from using %s"
3705
  msgstr ""
3706
 
3707
- #: ../includes/mycred-admin.php:600
3708
  msgid "Edit User"
3709
  msgstr ""
3710
 
3711
- #: ../includes/mycred-admin.php:602
3712
  msgctxt "user"
3713
  msgid "Add New"
3714
  msgstr ""
3715
 
3716
- #: ../includes/mycred-admin.php:604
3717
  msgctxt "user"
3718
  msgid "Add Existing"
3719
  msgstr ""
3720
 
3721
- #: ../includes/mycred-admin.php:615
3722
  #, php-format
3723
  msgid "Total %s Accumulated"
3724
  msgstr ""
3725
 
3726
- #: ../includes/mycred-admin.php:616
3727
  #, php-format
3728
  msgid "Total %s Spent"
3729
  msgstr ""
3730
 
3731
- #: ../includes/mycred-admin.php:627
3732
  msgid "View History"
3733
  msgstr ""
3734
 
3735
- #: ../includes/mycred-admin.php:628
3736
  msgid "Exclude User"
3737
  msgstr ""
3738
 
3739
- #: ../includes/mycred-admin.php:632
3740
  msgid "Adjust Balance"
3741
  msgstr ""
3742
 
3743
- #: ../includes/mycred-admin.php:641
3744
  msgid ""
3745
  "Warning! Excluding this user will result in their balance being deleted "
3746
  "along with any entries currently in your log! This can not be undone!"
3747
  msgstr ""
3748
 
3749
- #: ../includes/mycred-admin.php:699
3750
  #, php-format
3751
  msgid "%singular% balance"
3752
  msgstr "%singular% saldo"
3753
 
3754
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:773
3755
  msgid "Update Balance"
3756
  msgstr "Actualizar Saldo"
3757
 
3758
- #: ../includes/mycred-admin.php:765
3759
  msgid "ID"
3760
  msgstr "ID"
3761
 
3762
- #: ../includes/mycred-admin.php:771
3763
  msgid "A positive or negative value"
3764
  msgstr "Un valor positivo o negativo"
3765
 
@@ -3811,298 +3853,298 @@ msgstr "y"
3811
  msgid "Available Template Tags:"
3812
  msgstr "Etiquetas de Plantilla Disponibles:"
3813
 
3814
- #: ../includes/mycred-functions.php:1655
3815
  msgid "Entire Log"
3816
  msgstr "Todo el Registro"
3817
 
3818
- #: ../includes/mycred-functions.php:1660 ../includes/mycred-functions.php:1661
3819
  msgid "Displayed Rows"
3820
  msgstr "Filas Mostradas"
3821
 
3822
- #: ../includes/mycred-functions.php:1668
3823
  msgid "Search Results"
3824
  msgstr "Resultados de la Búsqueda"
3825
 
3826
- #: ../includes/mycred-functions.php:1669
3827
  msgid "My Entire Log"
3828
  msgstr "Mi Registro Entero"
3829
 
3830
- #: ../includes/mycred-functions.php:1790
3831
  msgid "ref empty"
3832
  msgstr "ref vacío"
3833
 
3834
- #: ../includes/mycred-functions.php:1798
3835
  msgid "incorrect user id format"
3836
  msgstr "Formato incorrecto para id del usuario"
3837
 
3838
- #: ../includes/mycred-functions.php:1811
3839
  msgid "incorrect unix timestamp (from):"
3840
  msgstr "erroneo marca de tiempo de unix (desde):"
3841
 
3842
- #: ../includes/mycred-functions.php:1820
3843
  msgid "incorrect unix timestamp (to):"
3844
  msgstr "erroneo marca de tiempo de unix (a):"
3845
 
3846
- #: ../includes/mycred-functions.php:2182
3847
  msgid "Website Registration"
3848
  msgstr ""
3849
 
3850
- #: ../includes/mycred-functions.php:2183
3851
  msgid "Website Visit"
3852
  msgstr ""
3853
 
3854
- #: ../includes/mycred-functions.php:2184
3855
  msgid "Viewing Content (Member)"
3856
  msgstr ""
3857
 
3858
- #: ../includes/mycred-functions.php:2185
3859
  msgid "Viewing Content (Author)"
3860
  msgstr ""
3861
 
3862
- #: ../includes/mycred-functions.php:2186
3863
  msgid "Logging in"
3864
  msgstr ""
3865
 
3866
- #: ../includes/mycred-functions.php:2187
3867
  msgid "Publishing Content"
3868
  msgstr ""
3869
 
3870
- #: ../includes/mycred-functions.php:2188 ../modules/mycred-module-hooks.php:1421
3871
  msgid "Approved Comment"
3872
  msgstr "Comentario Aprobado"
3873
 
3874
- #: ../includes/mycred-functions.php:2189
3875
  msgid "Unapproved Comment"
3876
  msgstr ""
3877
 
3878
- #: ../includes/mycred-functions.php:2190
3879
  msgid "SPAM Comment"
3880
  msgstr ""
3881
 
3882
- #: ../includes/mycred-functions.php:2191
3883
  msgid "Deleted Comment"
3884
  msgstr ""
3885
 
3886
- #: ../includes/mycred-functions.php:2192
3887
  msgid "Link Click"
3888
  msgstr ""
3889
 
3890
- #: ../includes/mycred-functions.php:2193
3891
  msgid "Watching Video"
3892
  msgstr ""
3893
 
3894
- #: ../includes/mycred-functions.php:2194
3895
  msgid "Visitor Referral"
3896
  msgstr ""
3897
 
3898
- #: ../includes/mycred-functions.php:2195
3899
  msgid "Signup Referral"
3900
  msgstr ""
3901
 
3902
- #: ../includes/mycred-functions.php:2199
3903
  msgid "New Profile Update"
3904
  msgstr ""
3905
 
3906
- #: ../includes/mycred-functions.php:2200
3907
  msgid "Avatar Upload"
3908
  msgstr ""
3909
 
3910
- #: ../includes/mycred-functions.php:2201
3911
  msgid "New Friendship"
3912
  msgstr ""
3913
 
3914
- #: ../includes/mycred-functions.php:2202
3915
  msgid "Ended Friendship"
3916
  msgstr ""
3917
 
3918
- #: ../includes/mycred-functions.php:2203
3919
  msgid "New Profile Comment"
3920
  msgstr ""
3921
 
3922
- #: ../includes/mycred-functions.php:2204
3923
  msgid "Profile Comment Deletion"
3924
  msgstr ""
3925
 
3926
- #: ../includes/mycred-functions.php:2205
3927
  msgid "New Message"
3928
  msgstr ""
3929
 
3930
- #: ../includes/mycred-functions.php:2206
3931
  msgid "Sending Gift"
3932
  msgstr ""
3933
 
3934
- #: ../includes/mycred-functions.php:2207
3935
  msgid "New Group"
3936
  msgstr ""
3937
 
3938
- #: ../includes/mycred-functions.php:2208
3939
  msgid "Deleted Group"
3940
  msgstr ""
3941
 
3942
- #: ../includes/mycred-functions.php:2209
3943
  msgid "New Group Forum Topic"
3944
  msgstr ""
3945
 
3946
- #: ../includes/mycred-functions.php:2210
3947
  msgid "Edit Group Forum Topic"
3948
  msgstr ""
3949
 
3950
- #: ../includes/mycred-functions.php:2211
3951
  msgid "New Group Forum Post"
3952
  msgstr ""
3953
 
3954
- #: ../includes/mycred-functions.php:2212
3955
  msgid "Edit Group Forum Post"
3956
  msgstr ""
3957
 
3958
- #: ../includes/mycred-functions.php:2213
3959
  msgid "Joining Group"
3960
  msgstr ""
3961
 
3962
- #: ../includes/mycred-functions.php:2214
3963
  msgid "Leaving Group"
3964
  msgstr ""
3965
 
3966
- #: ../includes/mycred-functions.php:2215
3967
  msgid "New Group Avatar"
3968
  msgstr ""
3969
 
3970
- #: ../includes/mycred-functions.php:2216
3971
  msgid "New Group Comment"
3972
  msgstr ""
3973
 
3974
- #: ../includes/mycred-functions.php:2220 ../plugins/mycred-hook-buddypress-media.
3975
  #: php:166
3976
  msgid "Photo Upload"
3977
  msgstr "Subir Foto"
3978
 
3979
- #: ../includes/mycred-functions.php:2221 ../plugins/mycred-hook-buddypress-media.
3980
  #: php:176
3981
  msgid "Video Upload"
3982
  msgstr "Subir Video"
3983
 
3984
- #: ../includes/mycred-functions.php:2222 ../plugins/mycred-hook-buddypress-media.
3985
  #: php:186
3986
  msgid "Music Upload"
3987
  msgstr "Subir Música"
3988
 
3989
- #: ../includes/mycred-functions.php:2226
3990
  msgid "New Link"
3991
  msgstr ""
3992
 
3993
- #: ../includes/mycred-functions.php:2227
3994
  msgid "Link Voting"
3995
  msgstr ""
3996
 
3997
- #: ../includes/mycred-functions.php:2228
3998
  msgid "Link Update"
3999
  msgstr ""
4000
 
4001
- #: ../includes/mycred-functions.php:2232
4002
  msgid "New Forum (bbPress)"
4003
  msgstr ""
4004
 
4005
- #: ../includes/mycred-functions.php:2233
4006
  msgid "New Forum Topic (bbPress)"
4007
  msgstr ""
4008
 
4009
- #: ../includes/mycred-functions.php:2234
4010
  msgid "Favorited Topic (bbPress)"
4011
  msgstr ""
4012
 
4013
- #: ../includes/mycred-functions.php:2235
4014
  msgid "New Topic Reply (bbPress)"
4015
  msgstr ""
4016
 
4017
- #: ../includes/mycred-functions.php:2239
4018
  msgid "Form Submission (Contact Form 7)"
4019
  msgstr ""
4020
 
4021
- #: ../includes/mycred-functions.php:2242
4022
  msgid "Form Submission (Gravity Form)"
4023
  msgstr ""
4024
 
4025
- #: ../includes/mycred-functions.php:2245
4026
  msgid "New Forum Topic (SimplePress)"
4027
  msgstr ""
4028
 
4029
- #: ../includes/mycred-functions.php:2246
4030
  msgid "New Forum Post (SimplePress)"
4031
  msgstr ""
4032
 
4033
- #: ../includes/mycred-functions.php:2250
4034
  msgid "Poll Voting"
4035
  msgstr ""
4036
 
4037
- #: ../includes/mycred-functions.php:2253
4038
  msgid "Sending an Invite"
4039
  msgstr ""
4040
 
4041
- #: ../includes/mycred-functions.php:2254
4042
  msgid "Accepting an Invite"
4043
  msgstr ""
4044
 
4045
- #: ../includes/mycred-functions.php:2260
4046
  msgid "Banking Payout"
4047
  msgstr ""
4048
 
4049
- #: ../includes/mycred-functions.php:2263
4050
  msgid "buyCRED Purchase (PayPal Standard)"
4051
  msgstr ""
4052
 
4053
- #: ../includes/mycred-functions.php:2264
4054
  msgid "buyCRED Purchase (Skrill)"
4055
  msgstr ""
4056
 
4057
- #: ../includes/mycred-functions.php:2265
4058
  msgid "buyCRED Purchase (Zombaio)"
4059
  msgstr ""
4060
 
4061
- #: ../includes/mycred-functions.php:2266
4062
  msgid "buyCRED Purchase (NETBilling)"
4063
  msgstr ""
4064
 
4065
- #: ../includes/mycred-functions.php:2267
4066
  msgid "buyCRED Purchase (BitPay)"
4067
  msgstr ""
4068
 
4069
- #: ../includes/mycred-functions.php:2272
4070
  msgid "Coupon Purchase"
4071
  msgstr ""
4072
 
4073
- #: ../includes/mycred-functions.php:2275
4074
  msgid "Store Purchase (WooCommerce)"
4075
  msgstr ""
4076
 
4077
- #: ../includes/mycred-functions.php:2276
4078
  msgid "Store Purchase (MarketPress)"
4079
  msgstr ""
4080
 
4081
- #: ../includes/mycred-functions.php:2277
4082
  msgid "Store Purchase (WP E-Commerce)"
4083
  msgstr ""
4084
 
4085
- #: ../includes/mycred-functions.php:2282
4086
  msgid "Event Payment (Event Espresso)"
4087
  msgstr ""
4088
 
4089
- #: ../includes/mycred-functions.php:2283
4090
  msgid "Event Sale (Event Espresso)"
4091
  msgstr ""
4092
 
4093
- #: ../includes/mycred-functions.php:2287
4094
  msgid "Event Payment (Events Manager)"
4095
  msgstr ""
4096
 
4097
- #: ../includes/mycred-functions.php:2288
4098
  msgid "Event Sale (Events Manager)"
4099
  msgstr ""
4100
 
4101
- #: ../includes/mycred-functions.php:2292
4102
  msgid "Content Purchase / Sale"
4103
  msgstr ""
4104
 
4105
- #: ../includes/mycred-functions.php:2299
4106
  msgid "Manual Adjustment by Admin"
4107
  msgstr ""
4108
 
@@ -4275,6 +4317,10 @@ msgstr ""
4275
  "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
4276
  "o gastar en tu tienda. Ponga zero para desactivar."
4277
 
 
 
 
 
4278
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4279
  msgid "Exclude those who can \"Edit Settings\"."
4280
  msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
@@ -4386,7 +4432,7 @@ msgstr "No hay opciones para exportar."
4386
  msgid "Entry"
4387
  msgstr "Entrada"
4388
 
4389
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:466
4390
  msgid "User Missing"
4391
  msgstr "Usuario Ausente"
4392
 
@@ -4584,92 +4630,92 @@ msgstr ""
4584
  "Recuerda a desactivarlo cuando no está en uso para prevenir que llamadas "
4585
  "maliciosas conozcan detalles de tu configuración!"
4586
 
4587
- #: ../includes/mycred-shortcodes.php:153
4588
  msgid "Leaderboard is empty."
4589
  msgstr "La Tabla de Clasificación esta vacía"
4590
 
4591
- #: ../includes/mycred-shortcodes.php:424 ../includes/mycred-shortcodes.php:547
4592
  msgid "Amount missing!"
4593
  msgstr "¡Falta la cantidad!"
4594
 
4595
- #: ../includes/mycred-shortcodes.php:427 ../includes/mycred-shortcodes.php:555
4596
  msgid "Log Template Missing!"
4597
  msgstr "¡Plantilla de Registro No Encontrado!"
4598
 
4599
- #: ../includes/mycred-shortcodes.php:489
4600
  msgid "Anchor missing URL!"
4601
  msgstr "¡La Ancla falta el URL!"
4602
 
4603
- #: ../includes/mycred-shortcodes.php:551
4604
  msgid "User ID missing for recipient."
4605
  msgstr "ID del Usuario falta para el destinatario"
4606
 
4607
- #: ../includes/mycred-shortcodes.php:606
4608
  msgid "Sent"
4609
  msgstr "Enviado"
4610
 
4611
- #: ../includes/mycred-shortcodes.php:607
4612
  msgid "Error - Try Again"
4613
  msgstr "Error - Inténtelo de nuevo."
4614
 
4615
- #: ../includes/mycred-shortcodes.php:716
4616
  msgid "A video ID is required for this shortcode"
4617
  msgstr "Este código corto (shortcode) precisa un ID del video."
4618
 
4619
- #: ../includes/mycred-shortcodes.php:862 ../includes/mycred-shortcodes.php:956
4620
  msgid "Point types not found."
4621
  msgstr ""
4622
 
4623
- #: ../includes/mycred-shortcodes.php:868 ../includes/mycred-shortcodes.php:876 ..
4624
- #: includes/mycred-shortcodes.php:968 ../includes/mycred-shortcodes.php:988
4625
  #, php-format
4626
  msgid "You are excluded from using %s."
4627
  msgstr ""
4628
 
4629
- #: ../includes/mycred-shortcodes.php:872 ../includes/mycred-shortcodes.php:978
4630
  msgid "Your balance is too low to use this feature."
4631
  msgstr ""
4632
 
4633
- #: ../includes/mycred-shortcodes.php:893
4634
  #, php-format
4635
  msgid "Convert <span>%s</span> to <span>%s</span>"
4636
  msgstr ""
4637
 
4638
- #: ../includes/mycred-shortcodes.php:902
4639
  #, php-format
4640
  msgid "Your current %s balance"
4641
  msgstr ""
4642
 
4643
- #: ../includes/mycred-shortcodes.php:910
4644
  #, php-format
4645
  msgid "Minimum %s"
4646
  msgstr ""
4647
 
4648
- #: ../includes/mycred-shortcodes.php:914
4649
  #, php-format
4650
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4651
  msgstr ""
4652
 
4653
- #: ../includes/mycred-shortcodes.php:920
4654
  msgid "Exchange"
4655
  msgstr ""
4656
 
4657
- #: ../includes/mycred-shortcodes.php:1001
4658
  #, php-format
4659
  msgid "You must exchange at least %s!"
4660
  msgstr ""
4661
 
4662
- #: ../includes/mycred-shortcodes.php:1023
4663
  #, php-format
4664
  msgid "Exchange from %s"
4665
  msgstr ""
4666
 
4667
- #: ../includes/mycred-shortcodes.php:1035
4668
  #, php-format
4669
  msgid "Exchange to %s"
4670
  msgstr ""
4671
 
4672
- #: ../includes/mycred-shortcodes.php:1043
4673
  #, php-format
4674
  msgid "You have successfully exchanged %s into %s."
4675
  msgstr ""
@@ -4979,6 +5025,12 @@ msgstr "Extensiones"
4979
  msgid "Give your users badges based on their interaction with your website."
4980
  msgstr ""
4981
 
 
 
 
 
 
 
4982
  #: ../modules/mycred-module-addons.php:169
4983
  msgid ""
4984
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
@@ -5314,7 +5366,7 @@ msgstr ""
5314
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5315
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5316
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5317
- #: 2623 ../modules/mycred-module-hooks.php:2652 ../plugins/mycred-hook-badgeOS.
5318
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5319
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5320
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
@@ -5376,8 +5428,8 @@ msgstr ""
5376
  msgid "%plural% for viewing %s"
5377
  msgstr ""
5378
 
5379
- #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2631
5380
- #: ../modules/mycred-module-hooks.php:2660 ../plugins/mycred-hook-invite-anyone.
5381
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5382
  msgid "Limit"
5383
  msgstr "Límite"
@@ -5470,7 +5522,7 @@ msgstr ""
5470
  msgid "Custom tags: %url%, %title% or %id%."
5471
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
5472
 
5473
- #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2734
5474
  msgid "Note!"
5475
  msgstr "¡Atención!"
5476
 
@@ -5553,63 +5605,63 @@ msgstr "Por Día"
5553
  msgid "Link"
5554
  msgstr "Enlace"
5555
 
5556
- #: ../modules/mycred-module-hooks.php:2617
5557
  msgid "Referring Visitors"
5558
  msgstr "Referiendo Visitantes"
5559
 
5560
- #: ../modules/mycred-module-hooks.php:2641 ../modules/mycred-module-hooks.php:2670
5561
  msgid "The number of referrals each member can make. Use zero for unlimited."
5562
  msgstr ""
5563
  "El numero de referencias que cada miembro puede hacer. Utilice cero para "
5564
  "ilimitado."
5565
 
5566
- #: ../modules/mycred-module-hooks.php:2645 ../modules/mycred-module-hooks.php:2674
5567
  msgid "Referring Signups"
5568
  msgstr "Inscripciones a través de Referencias"
5569
 
5570
- #: ../modules/mycred-module-hooks.php:2649
5571
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5572
  msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
5573
 
5574
- #: ../modules/mycred-module-hooks.php:2676
5575
  msgid "Registrations are disabled."
5576
  msgstr "Se han deshabilitado inscripciones."
5577
 
5578
- #: ../modules/mycred-module-hooks.php:2683
5579
  msgid "Referral Links"
5580
  msgstr "Enlaces Referentes"
5581
 
5582
- #: ../modules/mycred-module-hooks.php:2687
5583
  msgid "Assign numeric referral IDs to each user."
5584
  msgstr "Asignar ID numerica referente a cada usuario."
5585
 
5586
- #: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2694
5587
  msgid "Example"
5588
  msgstr "Ejemplo"
5589
 
5590
- #: ../modules/mycred-module-hooks.php:2693
5591
  msgid "Assign usernames as IDs for each user."
5592
  msgstr "Asignar los nombres de usuario como ID para cada usuario."
5593
 
5594
- #: ../modules/mycred-module-hooks.php:2697
5595
  msgid "IP Limit"
5596
  msgstr "Límite de IP"
5597
 
5598
- #: ../modules/mycred-module-hooks.php:2701
5599
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5600
  msgstr ""
5601
  "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
5602
  "número ilimitado"
5603
 
5604
- #: ../modules/mycred-module-hooks.php:2705 ../modules/mycred-module-hooks.php:2738
5605
  msgid "BuddyPress Profile"
5606
  msgstr "Perfil de BuddyPress"
5607
 
5608
- #: ../modules/mycred-module-hooks.php:2708
5609
  msgid "Insert Link in users Profile"
5610
  msgstr "Insertar enlace en el perfil del usuario"
5611
 
5612
- #: ../modules/mycred-module-hooks.php:2709
5613
  msgid ""
5614
  "Option to inser the referral link in users profiles. Links will only be "
5615
  "visible to users viewing their own profiles or administrators."
@@ -5618,23 +5670,23 @@ msgstr ""
5618
  " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
5619
  "ven a sus propios perfiles."
5620
 
5621
- #: ../modules/mycred-module-hooks.php:2715
5622
  msgid "Leave empty to hide."
5623
  msgstr "Deje el campo vacío para ocultarlo."
5624
 
5625
- #: ../modules/mycred-module-hooks.php:2718
5626
  msgid "Description"
5627
  msgstr "Descripción"
5628
 
5629
- #: ../modules/mycred-module-hooks.php:2719
5630
  msgid "Optional description to insert under the link."
5631
  msgstr "Insertar la descripción opcional debajo del enlace."
5632
 
5633
- #: ../modules/mycred-module-hooks.php:2731
5634
  msgid "Profile Positioning"
5635
  msgstr "Posicionamiento del Perfil"
5636
 
5637
- #: ../modules/mycred-module-hooks.php:2733
5638
  msgid ""
5639
  "You can move around the referral link on your users profile by changing the "
5640
  "position. Increase to move up, decrease to move down."
@@ -5642,13 +5694,13 @@ msgstr ""
5642
  "Puedes moverte por el enlace de referencia en su perfil los usuarios "
5643
  "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
5644
 
5645
- #: ../modules/mycred-module-hooks.php:2734
5646
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5647
  msgstr ""
5648
  "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
5649
  "en el perfil del usuario!"
5650
 
5651
- #: ../modules/mycred-module-hooks.php:2740
5652
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5653
  msgstr "Requiere que BuddyPress Extended Profiles sea activado."
5654
 
@@ -5673,8 +5725,8 @@ msgstr "Entrada Actualizada"
5673
  msgid "Entries"
5674
  msgstr "Entradas"
5675
 
5676
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:385 ..
5677
- #: modules/mycred-module-log.php:629 ../modules/mycred-module-settings.php:574
5678
  msgid "Export"
5679
  msgstr "Exportar"
5680
 
@@ -5682,40 +5734,40 @@ msgstr "Exportar"
5682
  msgid "Search results for"
5683
  msgstr "Buscar entre resultados por"
5684
 
5685
- #: ../modules/mycred-module-log.php:379
5686
  #, php-format
5687
  msgid "%s Log"
5688
  msgstr "Registro de %s"
5689
 
5690
- #: ../modules/mycred-module-log.php:504
5691
  msgid "Edit"
5692
  msgstr "Editar"
5693
 
5694
- #: ../modules/mycred-module-log.php:545
5695
  msgid "Time"
5696
  msgstr "Tiempo"
5697
 
5698
- #: ../modules/mycred-module-log.php:549
5699
  msgid "Current Log Entry"
5700
  msgstr "Entrada Actual de Registro"
5701
 
5702
- #: ../modules/mycred-module-log.php:551
5703
  msgid "The current saved log entry"
5704
  msgstr "La entrada guardada actual del registro"
5705
 
5706
- #: ../modules/mycred-module-log.php:554
5707
  msgid "Adjust Log Entry"
5708
  msgstr "Ajustar entrada de registro"
5709
 
5710
- #: ../modules/mycred-module-log.php:556
5711
  msgid "The new log entry"
5712
  msgstr "La nueva entrada de registro"
5713
 
5714
- #: ../modules/mycred-module-log.php:559
5715
  msgid "Update Log Entry"
5716
  msgstr "Actualiza la entrada de registro"
5717
 
5718
- #: ../modules/mycred-module-log.php:623
5719
  #, php-format
5720
  msgid "My %s History"
5721
  msgstr "Mi Historial de %s"
@@ -6436,6 +6488,6 @@ msgstr "WP-Polls"
6436
  #: ../plugins/mycred-hook-wp-polls.php:19
6437
  #, php-format
6438
  msgid "Awards %_plural% for users voting in polls."
6439
- msgstr "Concede %_plural% a usuarios que han votado en encuestas."
6440
- for users voting in polls."
6441
- msgstr "Concede %_plural% a usuarios que han votado en encuestas."
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Thu Aug 07 2014 20:34:50 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Spanish (Venezuela)\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
44
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
45
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
46
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
47
+ #: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
48
+ #: includes/mycred-shortcodes.php:607
49
  msgid "Processing..."
50
  msgstr "Procesando..."
51
 
151
  msgstr "Una vez al dia (reinicializado al medianoche)"
152
 
153
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
154
+ #: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
155
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
157
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
177
  msgid "click to open"
178
  msgstr "haga clic para abrir"
179
 
180
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/buy-creds/myCRED-addon-
181
+ #: buy-creds.php:847
182
  msgid "Settings Updated"
183
  msgstr "Configuraciones Actualizadas"
184
 
383
  msgid "in total"
384
  msgstr ""
385
 
386
+ #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
387
+ #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
388
  msgid "Banking"
389
  msgstr "Banco"
390
 
391
+ #: ../addons/banking/myCRED-addon-banking.php:158
392
+ msgid "Central Banking"
393
+ msgstr ""
394
+
395
+ #: ../addons/banking/myCRED-addon-banking.php:159
396
+ #, php-format
397
+ msgid ""
398
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
399
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
400
+ "deposited back into this account."
401
+ msgstr ""
402
+
403
+ #: ../addons/banking/myCRED-addon-banking.php:165 ..
404
+ #: addons/banking/services/mycred-bank-service-interest.php:512
405
  msgid "Compound Interest"
406
  msgstr "Interés Compuesto"
407
 
408
+ #: ../addons/banking/myCRED-addon-banking.php:166
409
  #, php-format
410
+ msgid "Apply a positive or negative interest rate on your users %_plural% balances."
 
 
 
 
411
  msgstr ""
 
 
 
 
412
 
413
+ #: ../addons/banking/myCRED-addon-banking.php:172
414
  msgid "Recurring Payouts"
415
  msgstr "Pagos Recurrentes"
416
 
417
+ #: ../addons/banking/myCRED-addon-banking.php:173
418
+ msgid "Setup mass %_singular% payouts for your users."
 
 
 
419
  msgstr ""
 
 
420
 
421
+ #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
422
+ #: addon-buy-creds.php:837 ../addons/buy-creds/myCRED-addon-buy-creds.php:933 ..
423
+ #: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
424
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
425
+ #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
426
  #: modules/mycred-module-settings.php:312
427
  msgid "Access Denied"
428
  msgstr "Acceso Denegado"
429
 
430
+ #: ../addons/banking/myCRED-addon-banking.php:225
431
  #, php-format
432
  msgid "%s Banking"
433
  msgstr "%s Bancario"
434
 
435
+ #: ../addons/banking/myCRED-addon-banking.php:228
436
+ msgid "Your banking setup for %plural%."
 
437
  msgstr ""
 
 
438
 
439
+ #: ../addons/banking/myCRED-addon-banking.php:231
440
  msgid "WP-Cron deactivation detected!"
441
  msgstr "¡Se detecto la desactivación de WP-Cron!"
442
 
443
+ #: ../addons/banking/myCRED-addon-banking.php:232
444
  msgid "Warning! This add-on requires WP - Cron to work."
445
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
446
 
447
+ #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
448
+ #: addon-buy-creds.php:871 ../modules/mycred-module-hooks.php:196
449
  msgid "Enable"
450
  msgstr "Activar"
451
 
452
+ #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
453
  #: php:211
454
  msgid "Update Changes"
455
  msgstr "Actualizar Cambios"
456
 
457
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:79
 
 
 
 
458
  msgid "This Service has no settings"
459
  msgstr "Este servicio no ha sido configurado"
460
 
461
  #. also, "Cada Hora"
462
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:233
463
  msgid "Hourly"
464
  msgstr "Por Hora"
465
 
466
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:237
467
  msgid "Daily"
468
  msgstr "Diario"
469
 
470
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:241
471
  msgid "Weekly"
472
  msgstr "Semanal"
473
 
474
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:245
475
  msgid "Monthly"
476
  msgstr "Mensual"
477
 
478
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:249
479
  msgid "Quarterly"
480
  msgstr "Trimestral"
481
 
482
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:253
483
  msgid "Semiannually"
484
  msgstr "Semestral"
485
 
486
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:257
487
  msgid "Annually"
488
  msgstr "Anual"
489
 
490
+ #: ../addons/banking/services/mycred-bank-service-central.php:105
491
+ msgid "Bank User"
492
+ msgstr ""
493
+
494
+ #: ../addons/banking/services/mycred-bank-service-central.php:109
495
+ msgid "The user ID of the central bank account. This user can not be excluded!"
496
+ msgstr ""
497
+
498
+ #: ../addons/banking/services/mycred-bank-service-central.php:112
499
+ msgid "Ignore Manual Adjustments"
500
+ msgstr ""
501
+
502
+ #: ../addons/banking/services/mycred-bank-service-interest.php:24
503
  msgid "%plural% interest rate payment"
504
  msgstr "%plural% pago de tasa de interés"
505
 
506
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
507
+ msgid "Compounding Interest"
508
+ msgstr ""
509
+
510
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
511
+ #, php-format
512
+ msgid "%d Users are left to process."
513
+ msgstr ""
514
+
515
+ #: ../addons/banking/services/mycred-bank-service-interest.php:388
516
+ msgid "Payout History"
517
+ msgstr ""
518
+
519
+ #: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
520
+ #: addons/banking/services/mycred-bank-service-interest.php:409 ..
521
+ #: addons/banking/services/mycred-bank-service-payouts.php:249
522
+ msgid "Run Count"
523
+ msgstr ""
524
+
525
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
526
+ msgid "Last Payout"
527
+ msgstr ""
528
+
529
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
530
+ #: addons/banking/services/mycred-bank-service-interest.php:414
531
+ msgid "Activated"
532
+ msgstr ""
533
+
534
+ #: ../addons/banking/services/mycred-bank-service-interest.php:401
535
+ msgid "Total Payed Interest"
536
+ msgstr ""
537
+
538
+ #: ../addons/banking/services/mycred-bank-service-interest.php:405
539
+ msgid "Compound History"
540
+ msgstr ""
541
+
542
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
543
+ msgid "Last Interest Compound"
544
+ msgstr ""
545
+
546
+ #: ../addons/banking/services/mycred-bank-service-interest.php:418
547
+ msgid "Total Compounded Interest"
548
+ msgstr ""
549
+
550
+ #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
551
+ #: addons/banking/services/mycred-bank-service-interest.php:549
552
  msgid "Interest Rate"
553
  msgstr "Tasa de Interés"
554
 
555
+ #: ../addons/banking/services/mycred-bank-service-interest.php:425
556
+ msgid "Default Rate"
 
 
 
 
557
  msgstr ""
 
 
558
 
559
+ #: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
560
+ #: addons/banking/services/mycred-bank-service-payouts.php:267
561
+ msgid "Can not be zero."
562
+ msgstr "No puede ser cero."
563
 
564
+ #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
565
+ #: addons/gateway/carts/mycred-wpecommerce.php:364
566
+ msgid "Payout"
567
+ msgstr "Desembolso"
568
 
569
  #. can also be "Plantilla de Bitácora"
570
+ #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
571
+ #: addons/banking/services/mycred-bank-service-payouts.php:282 ../addons/buy-
572
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
573
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
574
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
586
  msgid "Log Template"
587
  msgstr "Plantilla de Registro"
588
 
589
+ #: ../addons/banking/services/mycred-bank-service-interest.php:442 ..
590
+ #: addons/banking/services/mycred-bank-service-payouts.php:289 ..
591
+ #: addons/coupons/myCRED-addon-coupons.php:392
592
+ msgid "Minimum Balance"
593
+ msgstr "Saldo Minimo"
594
 
595
+ #: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
596
+ #: addons/banking/services/mycred-bank-service-payouts.php:293
597
+ msgid "Optional minimum balance requirement."
598
+ msgstr ""
599
+
600
+ #: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
601
+ #: addons/banking/services/mycred-bank-service-payouts.php:296
602
+ msgid "Exclude"
603
+ msgstr ""
604
+
605
+ #: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
606
+ #: addons/banking/services/mycred-bank-service-payouts.php:299
607
+ msgid "Comma separated list of user IDs"
608
+ msgstr ""
609
+
610
+ #: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
611
+ #: addons/banking/services/mycred-bank-service-payouts.php:303
612
+ msgid "Roles"
613
+ msgstr ""
614
+
615
+ #: ../addons/banking/services/mycred-bank-service-interest.php:522
616
+ msgid "This user is excluded from receiving interest on this balance."
617
+ msgstr ""
618
+
619
+ #: ../addons/banking/services/mycred-bank-service-interest.php:525
620
+ msgid "Remove from Excluded List"
621
+ msgstr ""
622
+
623
+ #: ../addons/banking/services/mycred-bank-service-interest.php:537
624
+ msgid "This user role is excluded from receiving interest on this balance."
625
+ msgstr ""
626
+
627
+ #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
628
+ #: creds/myCRED-addon-buy-creds.php:759 ../addons/sell-content/myCRED-addon-sell-
629
+ #: content.php:113
630
+ msgid "Leave empty to use the default value."
631
+ msgstr ""
632
+
633
+ #: ../addons/banking/services/mycred-bank-service-interest.php:558
634
+ msgid "Save Interest Rate"
635
+ msgstr ""
636
+
637
+ #: ../addons/banking/services/mycred-bank-service-interest.php:559
638
+ msgid "Exclude from receiving interest"
639
+ msgstr ""
640
+
641
+ #: ../addons/banking/services/mycred-bank-service-interest.php:667
642
+ msgid "Compound interest rate saved."
643
+ msgstr ""
644
+
645
+ #: ../addons/banking/services/mycred-bank-service-interest.php:669
646
+ msgid "User excluded from receiving interest."
647
+ msgstr ""
648
+
649
+ #: ../addons/banking/services/mycred-bank-service-interest.php:671
650
+ msgid "User included in receiving interest."
651
  msgstr ""
 
 
 
 
652
 
653
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
654
  msgid "Daily %_plural%"
655
  msgstr "%_plural% diarios"
656
 
657
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
658
+ #: includes/mycred-admin.php:404 ../modules/mycred-module-log.php:254 ..
659
+ #: modules/mycred-module-log.php:255
660
+ msgid "History"
661
+ msgstr "Historial"
662
 
663
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:254
664
+ msgid "Last Run"
665
+ msgstr ""
666
+
667
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:258
668
+ msgid "Total Payouts"
669
+ msgstr ""
670
+
671
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:262
672
  msgid "Pay Users"
673
  msgstr "Pagar a los Usuarios"
674
 
675
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
676
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
677
+ #: creds.php:1518 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595 ..
678
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
679
+ #: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
680
+ #: includes/mycred-shortcodes.php:910
681
  msgid "Amount"
682
  msgstr "Cantidad"
683
 
684
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
685
+ #: modules/mycred-module-hooks.php:2113
 
 
 
 
 
686
  msgid "Interval"
687
  msgstr "Interval"
688
 
689
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:275
 
690
  msgid "Cycles"
691
  msgstr "Ciclos"
692
 
693
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:277
694
  msgid "Set to -1 for unlimited"
695
  msgstr "Ajusta a -1 para ilimitado"
696
 
697
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
698
  msgid "Important"
699
  msgstr "Importante"
700
 
701
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
702
  msgid ""
703
  "You can always stop payouts by deactivating this service. Just remember that "
704
  "if you deactivate while there are cycles left, this service will continue on "
709
  "ciclos para completar, este servicio volverá a continuar en cuando se vuelvá "
710
  "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
711
 
 
 
 
 
 
 
 
 
 
 
 
 
 
712
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
713
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
714
  msgid "Payment Gateways"
734
  msgstr ""
735
 
736
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
737
+ #: addon-buy-creds.php:1629
738
  msgid "No pending payments found"
739
  msgstr ""
740
 
743
  msgstr ""
744
 
745
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
746
+ #: addon-buy-creds.php:986 ../addons/buy-creds/myCRED-addon-buy-creds.php:1593
747
  msgid "Transaction ID"
748
  msgstr "Identificación de la Transacción"
749
 
750
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
751
+ #: addon-buy-creds.php:982
752
  msgid "Buyer"
753
  msgstr ""
754
 
755
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
756
+ #: addon-buy-creds.php:1596 ../addons/buy-creds/abstracts/mycred-abstract-payment-
757
  #: gateway.php:563
758
  msgid "Cost"
759
  msgstr "Costo"
760
 
761
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
762
+ #: addon-buy-creds.php:981 ../addons/buy-creds/myCRED-addon-buy-creds.php:1594 ..
763
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
764
  msgid "Gateway"
765
  msgstr "Pasarela"
777
  msgstr "compraCRED Registro de Compras"
778
 
779
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
780
+ #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:843
781
  msgid "Purchase Log"
782
  msgstr "Registro de Compras"
783
 
784
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
785
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
786
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
787
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:422
788
  msgid "Payments"
789
  msgstr "Pagos"
790
 
863
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
864
 
865
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
866
+ #: hooks.php:2770
867
  msgid "Available Shortcodes"
868
  msgstr "Códigos cortos Disponibles"
869
 
872
  msgid "%s Exchange Rate"
873
  msgstr ""
874
 
 
 
 
 
 
875
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
876
  msgid "Save Exchange Rates"
877
  msgstr ""
878
 
879
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:822
880
  msgid "Exchange rate override saved"
881
  msgstr ""
882
 
883
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:825
884
  msgid "Payment completed"
885
  msgstr ""
886
 
887
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843
888
  #, php-format
889
  msgid "%s Payment Gateways"
890
  msgstr "%s Pasarelas de Pago"
891
 
892
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
893
+ #: addon-buy-creds.php:990
894
  msgid "buyCRED Settings"
895
  msgstr "Configuraciones de compraCRED"
896
 
897
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:864
898
  msgid "Test Mode"
899
  msgstr "Modo de Prueba"
900
 
901
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
902
  msgid "Enabled"
903
  msgstr "Habilitado"
904
 
905
  #. also, "Inhabilitar"
906
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:869
907
  msgid "Disabled"
908
  msgstr "Deshactivado"
909
 
910
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
911
  msgid "Sandbox Mode"
912
  msgstr "Modo Entorno Aislado"
913
 
914
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:882
915
  msgid "Enable for test purchases."
916
  msgstr "Habilitar para compras de prueba."
917
 
918
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
919
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
920
  msgid "Update Settings"
921
  msgstr "Actualizar Configuraciones"
922
 
923
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
924
  msgid "More Gateways"
925
  msgstr ""
926
 
927
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:983 ../includes/mycred-log.php:
928
  #: 634
929
  msgid "Date"
930
  msgstr "Fecha"
931
 
932
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985
933
  msgid "Payed"
934
  msgstr "Pagado"
935
 
936
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990
937
  msgid "<strong>buy</strong>CRED Purchase Log"
938
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
939
 
940
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990 ../addons/gateway/event-
941
  #: booking/mycred-eventespresso3.php:367
942
  msgid "Gateway Settings"
943
  msgstr "Configuraciones de la Pasarela de Pago"
944
 
945
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166 ../addons/sell-
946
+ #: content/myCRED-addon-sell-content.php:1190
947
  msgid "No purchases found"
948
  msgstr "No se encontro ninguna compra"
949
 
950
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1236 ../addons/buy-creds/myCRED-
951
+ #: addon-buy-creds.php:1349
952
  msgid "This Add-on needs to setup before you can use this shortcode."
953
  msgstr ""
954
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
955
  "corto (shortcode)."
956
 
957
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1255 ../addons/buy-creds/myCRED-
958
+ #: addon-buy-creds.php:1368
959
  msgid "No gateways installed."
960
  msgstr "Ningun pasarela de pago instalado."
961
 
962
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1256 ../addons/buy-creds/myCRED-
963
+ #: addon-buy-creds.php:1369
964
  msgid "Gateway does not exist."
965
  msgstr "Puerta de enlace no existe."
966
 
967
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1304
968
  msgid "Yourself"
969
  msgstr "Tu mismo"
970
 
971
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1370
972
  msgid "No active gateways found."
973
  msgstr "No se encuentra ningun puerta de enlace activo."
974
 
975
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1371
976
  msgid "The selected gateway is not active."
977
  msgstr "La puerta de enlace seleccionada no esta activo."
978
 
979
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1418
980
  #, php-format
981
  msgid "Buy with %gateway%"
982
  msgstr "Compra con %gateway%"
983
 
984
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424 ../addons/sell-
985
  #: content/myCRED-addon-sell-content.php:44
986
  msgid "Buy Now"
987
  msgstr "Compra Ahora"
988
 
989
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1469
990
  msgid "No users found"
991
  msgstr "Ningun Usuario Encontrado"
992
 
993
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1479
994
  msgid "To"
995
  msgstr "A"
996
 
997
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1496
998
  msgid "Select Amount"
999
  msgstr "Selecciona la Cantidad"
1000
 
1001
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1520
1002
  msgid "min."
1003
  msgstr "min."
1004
 
1005
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1528
1006
  msgid "Select Gateway"
1007
  msgstr "Selecciona la Pasarela de Pago"
1008
 
1009
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1569 ../addons/gateway/event-
1010
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1011
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1012
  #: php:35
1013
  msgid "Pay Now"
1014
  msgstr "Pagar Ahora"
1015
 
1016
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1570 ../includes/mycred-install.
1017
  #: php:515
1018
  msgid "Cancel"
1019
  msgstr "Cancelar"
1020
 
1021
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ../addons/ranks/myCRED-
1022
+ #: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
1023
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
1024
  msgid "Actions"
1025
  msgstr "Acciones"
1060
  msgstr "Cancelar la compra"
1061
 
1062
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1063
+ #: includes/mycred-admin.php:702 ../includes/mycred-admin.php:739
1064
  msgid "required"
1065
  msgstr "necesario"
1066
 
1067
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1068
+ #: includes/mycred-admin.php:704 ../includes/mycred-admin.php:741
1069
  msgid "optional"
1070
  msgstr "opcional"
1071
 
1469
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1470
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1471
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1472
+ #: modules/mycred-module-hooks.php:2735
1473
  msgid "Title"
1474
  msgstr "Titulo"
1475
 
1718
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1719
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1720
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1721
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:410 ..
1722
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1723
  #: includes/importers/mycred-cubepoints.php:365
1724
  msgid "Point Type"
2125
  msgstr "Enviado A:"
2126
 
2127
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2128
+ #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:748 ..
2129
+ #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
2130
  msgid "User"
2131
  msgstr "Usuario"
2132
 
2252
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2253
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2254
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2255
+ #: php:412 ../includes/mycred-admin.php:596 ../includes/mycred-admin.php:749
2256
  msgid "Current Balance"
2257
  msgstr "Saldo Actual"
2258
 
2375
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2376
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2377
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2378
+ #: php:578 ../includes/mycred-shortcodes.php:915
2379
  msgid "Exchange Rate"
2380
  msgstr "Tipo de Cambio"
2381
 
2609
  msgid "How much is 1 %s worth in %s"
2610
  msgstr "Cuanto vale 1 %s en %s"
2611
 
 
 
 
 
2612
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2613
  msgid "Instructions"
2614
  msgstr "Instrucciones"
2684
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2685
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2686
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2687
+ #: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
2688
+ #: sell-content.php:668
2689
  msgid "Button Label"
2690
  msgstr "Eqiqueta Asignada al Botón"
2691
 
2698
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2699
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2700
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2701
+ #: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
2702
+ #: sell-content.php:664
2703
  msgid "Price"
2704
  msgstr "Precio"
2705
 
2721
  msgstr "Registro"
2722
 
2723
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2724
+ #: includes/mycred-admin.php:717 ../includes/mycred-admin.php:754
2725
  msgid "Log Entry"
2726
  msgstr "Entrada de Registro"
2727
 
2728
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2729
+ #: content/myCRED-addon-sell-content.php:472
2730
  msgid "Templates"
2731
  msgstr "Plantillas"
2732
 
2808
  msgstr "Rechazar"
2809
 
2810
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2811
+ #: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:488 ..
2812
  #: modules/mycred-module-settings.php:507
2813
  msgid "Delete"
2814
  msgstr "Borrar"
3271
  msgstr "Ningun usuario encontrado con este rango"
3272
 
3273
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3274
+ #: shortcodes.php:425 ../includes/mycred-shortcodes.php:428 ../includes/mycred-
3275
+ #: shortcodes.php:491 ../includes/mycred-shortcodes.php:549 ../includes/mycred-
3276
+ #: shortcodes.php:553 ../includes/mycred-shortcodes.php:557
3277
  msgid "error"
3278
  msgstr "error"
3279
 
3293
  msgid "Save Profit Share"
3294
  msgstr ""
3295
 
3296
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:164
3297
  msgid "Profit Share override saved"
3298
  msgstr ""
3299
 
3300
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:326
3301
  msgid "You can not buy this content."
3302
  msgstr "No puedes comprar este contenido."
3303
 
3304
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:371
3305
  msgid "Error. Try Again"
3306
  msgstr "Error. Inténtelo de nuevo"
3307
 
3308
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3309
  msgid "No Payout. Just charge."
3310
  msgstr "No Desembolsar. Solo cobrar."
3311
 
3312
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3313
  msgid "Pay Content Author."
3314
  msgstr "Pagar al Autor del Contenido"
3315
 
3316
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:400 ../includes/mycred-
3317
  #: overview.php:141 ../includes/mycred-overview.php:148
3318
  msgid "Sell Content"
3319
  msgstr "Vender Contenido"
3320
 
3321
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3322
  msgid "Post Types"
3323
  msgstr "Post Types"
3324
 
3325
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3326
  msgid "Comma separated list of post types that can be sold."
3327
  msgstr "Lista separada por comas de post types que se puede vender."
3328
 
3329
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:436
3330
  msgid "Percentage to pay Author"
3331
  msgstr "Porcentaje que pagar al Autor"
3332
 
3333
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3334
  msgid ""
3335
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3336
  "authors are not paid."
3339
  "si no se les paga a los autores."
3340
 
3341
  #. also, "por defecto" and "predeterminados"
3342
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:446
3343
  msgid "Defaults"
3344
  msgstr "Predefinidos"
3345
 
3346
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:454
3347
  msgid "Allow authors to change price."
3348
  msgstr "Permitir que los Autores cambien el precio."
3349
 
3350
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3351
  msgid "Allow authors to change button label."
3352
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
3353
 
3354
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:467
3355
  msgid "Purchases expire after"
3356
  msgstr "Compras caducan despues de"
3357
 
3358
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3359
  msgid "Use zero for permanent sales."
3360
  msgstr "Usa cero para ventas permanentes."
3361
 
3362
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:475
3363
  msgid "For Visitors"
3364
  msgstr ""
3365
 
3366
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:480
3367
  #, php-format
3368
  msgid ""
3369
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3372
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
3373
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
3374
 
3375
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:485
3376
  msgid "For Members"
3377
  msgstr ""
3378
 
3379
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:490 ../addons/sell-
3380
+ #: content/myCRED-addon-sell-content.php:500
3381
  #, php-format
3382
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3383
  msgstr ""
3384
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
3385
  "realizar compras!"
3386
 
3387
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:495
3388
  msgid "For members that can not afford to buy"
3389
  msgstr ""
3390
 
3391
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:504
3392
  msgid "Log template for Purchases"
3393
  msgstr "Plantilla de registros para Compras"
3394
 
3395
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:511
3396
  msgid "Log template for Sales"
3397
  msgstr "Plantilla de registros para Ventas"
3398
 
3399
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:563
3400
  #, php-format
3401
  msgid "%s Sell This"
3402
  msgstr "%s Vende Esto"
3403
 
3404
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:617
3405
  #, php-format
3406
  msgid "%s Sell Content needs to be setup before you can use this feature."
3407
  msgstr ""
3408
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
3409
  "esta característica técnica."
3410
 
3411
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3412
  msgid "Setup add-on"
3413
  msgstr "Configurar Extensión"
3414
 
3415
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3416
  msgid "Lets do it"
3417
  msgstr "Vamos a hacerlo."
3418
 
3419
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:658
3420
  #, php-format
3421
  msgid "Enable sale of this %s"
3422
  msgstr ""
3423
 
3424
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:672
3425
  msgid "Purchase expires after"
3426
  msgstr "Compra caduca despues de"
3427
 
3428
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:998
3429
  msgid "Thank you for your purchase!"
3430
  msgstr "¡Gracias por su compra!"
3431
 
3432
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1086 ../addons/sell-
3433
+ #: content/myCRED-addon-sell-content.php:1172
3434
  msgid "The following content is set for sale:"
3435
  msgstr "El siguiente contenido esta listo para la venta:"
3436
 
3437
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1232
3438
  msgid "Purchased"
3439
  msgstr "Comprado"
3440
 
3447
  msgstr "Has excedido tu limite de transferencia de %limit%."
3448
 
3449
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3450
+ #: php:2313
3451
  msgid "Transfer"
3452
  msgstr "Transferir"
3453
 
3486
  "transferencias hasta que se haga esto."
3487
 
3488
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3489
+ #: php:1012
3490
  msgid "Insufficient Funds. Please try a lower amount."
3491
  msgstr ""
3492
 
3716
  msgid "Failed to update this uses balance."
3717
  msgstr "No se pudo actualizar el saldo de este usuario."
3718
 
3719
+ #: ../includes/mycred-admin.php:386
3720
  msgid "Excluded"
3721
  msgstr "Excluido"
3722
 
3723
+ #: ../includes/mycred-admin.php:396
3724
  #, php-format
3725
  msgid "Total: %s"
3726
  msgstr ""
3727
 
3728
+ #: ../includes/mycred-admin.php:405
 
 
 
 
 
3729
  msgid "Adjust"
3730
  msgstr "Modificar"
3731
 
3732
+ #: ../includes/mycred-admin.php:443 ../includes/mycred-admin.php:444
3733
  msgid "Edit Balance"
3734
  msgstr ""
3735
 
3736
+ #: ../includes/mycred-admin.php:462
3737
  msgid "Profile"
3738
  msgstr ""
3739
 
3740
+ #: ../includes/mycred-admin.php:469
3741
  msgid "Extended Profile"
3742
  msgstr ""
3743
 
3744
+ #: ../includes/mycred-admin.php:559
3745
  #, php-format
3746
  msgid "This user is excluded from using %s"
3747
  msgstr ""
3748
 
3749
+ #: ../includes/mycred-admin.php:582
3750
  msgid "Edit User"
3751
  msgstr ""
3752
 
3753
+ #: ../includes/mycred-admin.php:584
3754
  msgctxt "user"
3755
  msgid "Add New"
3756
  msgstr ""
3757
 
3758
+ #: ../includes/mycred-admin.php:586
3759
  msgctxt "user"
3760
  msgid "Add Existing"
3761
  msgstr ""
3762
 
3763
+ #: ../includes/mycred-admin.php:597
3764
  #, php-format
3765
  msgid "Total %s Accumulated"
3766
  msgstr ""
3767
 
3768
+ #: ../includes/mycred-admin.php:598
3769
  #, php-format
3770
  msgid "Total %s Spent"
3771
  msgstr ""
3772
 
3773
+ #: ../includes/mycred-admin.php:609
3774
  msgid "View History"
3775
  msgstr ""
3776
 
3777
+ #: ../includes/mycred-admin.php:610
3778
  msgid "Exclude User"
3779
  msgstr ""
3780
 
3781
+ #: ../includes/mycred-admin.php:614
3782
  msgid "Adjust Balance"
3783
  msgstr ""
3784
 
3785
+ #: ../includes/mycred-admin.php:623
3786
  msgid ""
3787
  "Warning! Excluding this user will result in their balance being deleted "
3788
  "along with any entries currently in your log! This can not be undone!"
3789
  msgstr ""
3790
 
3791
+ #: ../includes/mycred-admin.php:681
3792
  #, php-format
3793
  msgid "%singular% balance"
3794
  msgstr "%singular% saldo"
3795
 
3796
+ #: ../includes/mycred-admin.php:721 ../includes/mycred-admin.php:755
3797
  msgid "Update Balance"
3798
  msgstr "Actualizar Saldo"
3799
 
3800
+ #: ../includes/mycred-admin.php:747
3801
  msgid "ID"
3802
  msgstr "ID"
3803
 
3804
+ #: ../includes/mycred-admin.php:753
3805
  msgid "A positive or negative value"
3806
  msgstr "Un valor positivo o negativo"
3807
 
3853
  msgid "Available Template Tags:"
3854
  msgstr "Etiquetas de Plantilla Disponibles:"
3855
 
3856
+ #: ../includes/mycred-functions.php:1673
3857
  msgid "Entire Log"
3858
  msgstr "Todo el Registro"
3859
 
3860
+ #: ../includes/mycred-functions.php:1678 ../includes/mycred-functions.php:1679
3861
  msgid "Displayed Rows"
3862
  msgstr "Filas Mostradas"
3863
 
3864
+ #: ../includes/mycred-functions.php:1686
3865
  msgid "Search Results"
3866
  msgstr "Resultados de la Búsqueda"
3867
 
3868
+ #: ../includes/mycred-functions.php:1687
3869
  msgid "My Entire Log"
3870
  msgstr "Mi Registro Entero"
3871
 
3872
+ #: ../includes/mycred-functions.php:1808
3873
  msgid "ref empty"
3874
  msgstr "ref vacío"
3875
 
3876
+ #: ../includes/mycred-functions.php:1816
3877
  msgid "incorrect user id format"
3878
  msgstr "Formato incorrecto para id del usuario"
3879
 
3880
+ #: ../includes/mycred-functions.php:1829
3881
  msgid "incorrect unix timestamp (from):"
3882
  msgstr "erroneo marca de tiempo de unix (desde):"
3883
 
3884
+ #: ../includes/mycred-functions.php:1838
3885
  msgid "incorrect unix timestamp (to):"
3886
  msgstr "erroneo marca de tiempo de unix (a):"
3887
 
3888
+ #: ../includes/mycred-functions.php:2200
3889
  msgid "Website Registration"
3890
  msgstr ""
3891
 
3892
+ #: ../includes/mycred-functions.php:2201
3893
  msgid "Website Visit"
3894
  msgstr ""
3895
 
3896
+ #: ../includes/mycred-functions.php:2202
3897
  msgid "Viewing Content (Member)"
3898
  msgstr ""
3899
 
3900
+ #: ../includes/mycred-functions.php:2203
3901
  msgid "Viewing Content (Author)"
3902
  msgstr ""
3903
 
3904
+ #: ../includes/mycred-functions.php:2204
3905
  msgid "Logging in"
3906
  msgstr ""
3907
 
3908
+ #: ../includes/mycred-functions.php:2205
3909
  msgid "Publishing Content"
3910
  msgstr ""
3911
 
3912
+ #: ../includes/mycred-functions.php:2206 ../modules/mycred-module-hooks.php:1421
3913
  msgid "Approved Comment"
3914
  msgstr "Comentario Aprobado"
3915
 
3916
+ #: ../includes/mycred-functions.php:2207
3917
  msgid "Unapproved Comment"
3918
  msgstr ""
3919
 
3920
+ #: ../includes/mycred-functions.php:2208
3921
  msgid "SPAM Comment"
3922
  msgstr ""
3923
 
3924
+ #: ../includes/mycred-functions.php:2209
3925
  msgid "Deleted Comment"
3926
  msgstr ""
3927
 
3928
+ #: ../includes/mycred-functions.php:2210
3929
  msgid "Link Click"
3930
  msgstr ""
3931
 
3932
+ #: ../includes/mycred-functions.php:2211
3933
  msgid "Watching Video"
3934
  msgstr ""
3935
 
3936
+ #: ../includes/mycred-functions.php:2212
3937
  msgid "Visitor Referral"
3938
  msgstr ""
3939
 
3940
+ #: ../includes/mycred-functions.php:2213
3941
  msgid "Signup Referral"
3942
  msgstr ""
3943
 
3944
+ #: ../includes/mycred-functions.php:2217
3945
  msgid "New Profile Update"
3946
  msgstr ""
3947
 
3948
+ #: ../includes/mycred-functions.php:2218
3949
  msgid "Avatar Upload"
3950
  msgstr ""
3951
 
3952
+ #: ../includes/mycred-functions.php:2219
3953
  msgid "New Friendship"
3954
  msgstr ""
3955
 
3956
+ #: ../includes/mycred-functions.php:2220
3957
  msgid "Ended Friendship"
3958
  msgstr ""
3959
 
3960
+ #: ../includes/mycred-functions.php:2221
3961
  msgid "New Profile Comment"
3962
  msgstr ""
3963
 
3964
+ #: ../includes/mycred-functions.php:2222
3965
  msgid "Profile Comment Deletion"
3966
  msgstr ""
3967
 
3968
+ #: ../includes/mycred-functions.php:2223
3969
  msgid "New Message"
3970
  msgstr ""
3971
 
3972
+ #: ../includes/mycred-functions.php:2224
3973
  msgid "Sending Gift"
3974
  msgstr ""
3975
 
3976
+ #: ../includes/mycred-functions.php:2225
3977
  msgid "New Group"
3978
  msgstr ""
3979
 
3980
+ #: ../includes/mycred-functions.php:2226
3981
  msgid "Deleted Group"
3982
  msgstr ""
3983
 
3984
+ #: ../includes/mycred-functions.php:2227
3985
  msgid "New Group Forum Topic"
3986
  msgstr ""
3987
 
3988
+ #: ../includes/mycred-functions.php:2228
3989
  msgid "Edit Group Forum Topic"
3990
  msgstr ""
3991
 
3992
+ #: ../includes/mycred-functions.php:2229
3993
  msgid "New Group Forum Post"
3994
  msgstr ""
3995
 
3996
+ #: ../includes/mycred-functions.php:2230
3997
  msgid "Edit Group Forum Post"
3998
  msgstr ""
3999
 
4000
+ #: ../includes/mycred-functions.php:2231
4001
  msgid "Joining Group"
4002
  msgstr ""
4003
 
4004
+ #: ../includes/mycred-functions.php:2232
4005
  msgid "Leaving Group"
4006
  msgstr ""
4007
 
4008
+ #: ../includes/mycred-functions.php:2233
4009
  msgid "New Group Avatar"
4010
  msgstr ""
4011
 
4012
+ #: ../includes/mycred-functions.php:2234
4013
  msgid "New Group Comment"
4014
  msgstr ""
4015
 
4016
+ #: ../includes/mycred-functions.php:2238 ../plugins/mycred-hook-buddypress-media.
4017
  #: php:166
4018
  msgid "Photo Upload"
4019
  msgstr "Subir Foto"
4020
 
4021
+ #: ../includes/mycred-functions.php:2239 ../plugins/mycred-hook-buddypress-media.
4022
  #: php:176
4023
  msgid "Video Upload"
4024
  msgstr "Subir Video"
4025
 
4026
+ #: ../includes/mycred-functions.php:2240 ../plugins/mycred-hook-buddypress-media.
4027
  #: php:186
4028
  msgid "Music Upload"
4029
  msgstr "Subir Música"
4030
 
4031
+ #: ../includes/mycred-functions.php:2244
4032
  msgid "New Link"
4033
  msgstr ""
4034
 
4035
+ #: ../includes/mycred-functions.php:2245
4036
  msgid "Link Voting"
4037
  msgstr ""
4038
 
4039
+ #: ../includes/mycred-functions.php:2246
4040
  msgid "Link Update"
4041
  msgstr ""
4042
 
4043
+ #: ../includes/mycred-functions.php:2250
4044
  msgid "New Forum (bbPress)"
4045
  msgstr ""
4046
 
4047
+ #: ../includes/mycred-functions.php:2251
4048
  msgid "New Forum Topic (bbPress)"
4049
  msgstr ""
4050
 
4051
+ #: ../includes/mycred-functions.php:2252
4052
  msgid "Favorited Topic (bbPress)"
4053
  msgstr ""
4054
 
4055
+ #: ../includes/mycred-functions.php:2253
4056
  msgid "New Topic Reply (bbPress)"
4057
  msgstr ""
4058
 
4059
+ #: ../includes/mycred-functions.php:2257
4060
  msgid "Form Submission (Contact Form 7)"
4061
  msgstr ""
4062
 
4063
+ #: ../includes/mycred-functions.php:2260
4064
  msgid "Form Submission (Gravity Form)"
4065
  msgstr ""
4066
 
4067
+ #: ../includes/mycred-functions.php:2263
4068
  msgid "New Forum Topic (SimplePress)"
4069
  msgstr ""
4070
 
4071
+ #: ../includes/mycred-functions.php:2264
4072
  msgid "New Forum Post (SimplePress)"
4073
  msgstr ""
4074
 
4075
+ #: ../includes/mycred-functions.php:2268
4076
  msgid "Poll Voting"
4077
  msgstr ""
4078
 
4079
+ #: ../includes/mycred-functions.php:2271
4080
  msgid "Sending an Invite"
4081
  msgstr ""
4082
 
4083
+ #: ../includes/mycred-functions.php:2272
4084
  msgid "Accepting an Invite"
4085
  msgstr ""
4086
 
4087
+ #: ../includes/mycred-functions.php:2278
4088
  msgid "Banking Payout"
4089
  msgstr ""
4090
 
4091
+ #: ../includes/mycred-functions.php:2281
4092
  msgid "buyCRED Purchase (PayPal Standard)"
4093
  msgstr ""
4094
 
4095
+ #: ../includes/mycred-functions.php:2282
4096
  msgid "buyCRED Purchase (Skrill)"
4097
  msgstr ""
4098
 
4099
+ #: ../includes/mycred-functions.php:2283
4100
  msgid "buyCRED Purchase (Zombaio)"
4101
  msgstr ""
4102
 
4103
+ #: ../includes/mycred-functions.php:2284
4104
  msgid "buyCRED Purchase (NETBilling)"
4105
  msgstr ""
4106
 
4107
+ #: ../includes/mycred-functions.php:2285
4108
  msgid "buyCRED Purchase (BitPay)"
4109
  msgstr ""
4110
 
4111
+ #: ../includes/mycred-functions.php:2290
4112
  msgid "Coupon Purchase"
4113
  msgstr ""
4114
 
4115
+ #: ../includes/mycred-functions.php:2293
4116
  msgid "Store Purchase (WooCommerce)"
4117
  msgstr ""
4118
 
4119
+ #: ../includes/mycred-functions.php:2294
4120
  msgid "Store Purchase (MarketPress)"
4121
  msgstr ""
4122
 
4123
+ #: ../includes/mycred-functions.php:2295
4124
  msgid "Store Purchase (WP E-Commerce)"
4125
  msgstr ""
4126
 
4127
+ #: ../includes/mycred-functions.php:2300
4128
  msgid "Event Payment (Event Espresso)"
4129
  msgstr ""
4130
 
4131
+ #: ../includes/mycred-functions.php:2301
4132
  msgid "Event Sale (Event Espresso)"
4133
  msgstr ""
4134
 
4135
+ #: ../includes/mycred-functions.php:2305
4136
  msgid "Event Payment (Events Manager)"
4137
  msgstr ""
4138
 
4139
+ #: ../includes/mycred-functions.php:2306
4140
  msgid "Event Sale (Events Manager)"
4141
  msgstr ""
4142
 
4143
+ #: ../includes/mycred-functions.php:2310
4144
  msgid "Content Purchase / Sale"
4145
  msgstr ""
4146
 
4147
+ #: ../includes/mycred-functions.php:2317
4148
  msgid "Manual Adjustment by Admin"
4149
  msgstr ""
4150
 
4317
  "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
4318
  "o gastar en tu tienda. Ponga zero para desactivar."
4319
 
4320
+ #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
4321
+ msgid "Excludes"
4322
+ msgstr "Excluye"
4323
+
4324
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4325
  msgid "Exclude those who can \"Edit Settings\"."
4326
  msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
4432
  msgid "Entry"
4433
  msgstr "Entrada"
4434
 
4435
+ #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:468
4436
  msgid "User Missing"
4437
  msgstr "Usuario Ausente"
4438
 
4630
  "Recuerda a desactivarlo cuando no está en uso para prevenir que llamadas "
4631
  "maliciosas conozcan detalles de tu configuración!"
4632
 
4633
+ #: ../includes/mycred-shortcodes.php:154
4634
  msgid "Leaderboard is empty."
4635
  msgstr "La Tabla de Clasificación esta vacía"
4636
 
4637
+ #: ../includes/mycred-shortcodes.php:425 ../includes/mycred-shortcodes.php:549
4638
  msgid "Amount missing!"
4639
  msgstr "¡Falta la cantidad!"
4640
 
4641
+ #: ../includes/mycred-shortcodes.php:428 ../includes/mycred-shortcodes.php:557
4642
  msgid "Log Template Missing!"
4643
  msgstr "¡Plantilla de Registro No Encontrado!"
4644
 
4645
+ #: ../includes/mycred-shortcodes.php:491
4646
  msgid "Anchor missing URL!"
4647
  msgstr "¡La Ancla falta el URL!"
4648
 
4649
+ #: ../includes/mycred-shortcodes.php:553
4650
  msgid "User ID missing for recipient."
4651
  msgstr "ID del Usuario falta para el destinatario"
4652
 
4653
+ #: ../includes/mycred-shortcodes.php:608
4654
  msgid "Sent"
4655
  msgstr "Enviado"
4656
 
4657
+ #: ../includes/mycred-shortcodes.php:609
4658
  msgid "Error - Try Again"
4659
  msgstr "Error - Inténtelo de nuevo."
4660
 
4661
+ #: ../includes/mycred-shortcodes.php:718
4662
  msgid "A video ID is required for this shortcode"
4663
  msgstr "Este código corto (shortcode) precisa un ID del video."
4664
 
4665
+ #: ../includes/mycred-shortcodes.php:864 ../includes/mycred-shortcodes.php:958
4666
  msgid "Point types not found."
4667
  msgstr ""
4668
 
4669
+ #: ../includes/mycred-shortcodes.php:870 ../includes/mycred-shortcodes.php:878 ..
4670
+ #: includes/mycred-shortcodes.php:970 ../includes/mycred-shortcodes.php:990
4671
  #, php-format
4672
  msgid "You are excluded from using %s."
4673
  msgstr ""
4674
 
4675
+ #: ../includes/mycred-shortcodes.php:874 ../includes/mycred-shortcodes.php:980
4676
  msgid "Your balance is too low to use this feature."
4677
  msgstr ""
4678
 
4679
+ #: ../includes/mycred-shortcodes.php:895
4680
  #, php-format
4681
  msgid "Convert <span>%s</span> to <span>%s</span>"
4682
  msgstr ""
4683
 
4684
+ #: ../includes/mycred-shortcodes.php:904
4685
  #, php-format
4686
  msgid "Your current %s balance"
4687
  msgstr ""
4688
 
4689
+ #: ../includes/mycred-shortcodes.php:912
4690
  #, php-format
4691
  msgid "Minimum %s"
4692
  msgstr ""
4693
 
4694
+ #: ../includes/mycred-shortcodes.php:916
4695
  #, php-format
4696
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4697
  msgstr ""
4698
 
4699
+ #: ../includes/mycred-shortcodes.php:922
4700
  msgid "Exchange"
4701
  msgstr ""
4702
 
4703
+ #: ../includes/mycred-shortcodes.php:1003
4704
  #, php-format
4705
  msgid "You must exchange at least %s!"
4706
  msgstr ""
4707
 
4708
+ #: ../includes/mycred-shortcodes.php:1025
4709
  #, php-format
4710
  msgid "Exchange from %s"
4711
  msgstr ""
4712
 
4713
+ #: ../includes/mycred-shortcodes.php:1037
4714
  #, php-format
4715
  msgid "Exchange to %s"
4716
  msgstr ""
4717
 
4718
+ #: ../includes/mycred-shortcodes.php:1045
4719
  #, php-format
4720
  msgid "You have successfully exchanged %s into %s."
4721
  msgstr ""
5025
  msgid "Give your users badges based on their interaction with your website."
5026
  msgstr ""
5027
 
5028
+ #: ../modules/mycred-module-addons.php:158
5029
+ msgid "Setup recurring payouts or offer / charge interest on user account balances."
5030
+ msgstr ""
5031
+ "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
5032
+ "de las cuentas de usuarios."
5033
+
5034
  #: ../modules/mycred-module-addons.php:169
5035
  msgid ""
5036
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5366
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5367
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5368
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5369
+ #: 2645 ../modules/mycred-module-hooks.php:2674 ../plugins/mycred-hook-badgeOS.
5370
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5371
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5372
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
5428
  msgid "%plural% for viewing %s"
5429
  msgstr ""
5430
 
5431
+ #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2653
5432
+ #: ../modules/mycred-module-hooks.php:2682 ../plugins/mycred-hook-invite-anyone.
5433
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5434
  msgid "Limit"
5435
  msgstr "Límite"
5522
  msgid "Custom tags: %url%, %title% or %id%."
5523
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
5524
 
5525
+ #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2756
5526
  msgid "Note!"
5527
  msgstr "¡Atención!"
5528
 
5605
  msgid "Link"
5606
  msgstr "Enlace"
5607
 
5608
+ #: ../modules/mycred-module-hooks.php:2639
5609
  msgid "Referring Visitors"
5610
  msgstr "Referiendo Visitantes"
5611
 
5612
+ #: ../modules/mycred-module-hooks.php:2663 ../modules/mycred-module-hooks.php:2692
5613
  msgid "The number of referrals each member can make. Use zero for unlimited."
5614
  msgstr ""
5615
  "El numero de referencias que cada miembro puede hacer. Utilice cero para "
5616
  "ilimitado."
5617
 
5618
+ #: ../modules/mycred-module-hooks.php:2667 ../modules/mycred-module-hooks.php:2696
5619
  msgid "Referring Signups"
5620
  msgstr "Inscripciones a través de Referencias"
5621
 
5622
+ #: ../modules/mycred-module-hooks.php:2671
5623
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5624
  msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
5625
 
5626
+ #: ../modules/mycred-module-hooks.php:2698
5627
  msgid "Registrations are disabled."
5628
  msgstr "Se han deshabilitado inscripciones."
5629
 
5630
+ #: ../modules/mycred-module-hooks.php:2705
5631
  msgid "Referral Links"
5632
  msgstr "Enlaces Referentes"
5633
 
5634
+ #: ../modules/mycred-module-hooks.php:2709
5635
  msgid "Assign numeric referral IDs to each user."
5636
  msgstr "Asignar ID numerica referente a cada usuario."
5637
 
5638
+ #: ../modules/mycred-module-hooks.php:2710 ../modules/mycred-module-hooks.php:2716
5639
  msgid "Example"
5640
  msgstr "Ejemplo"
5641
 
5642
+ #: ../modules/mycred-module-hooks.php:2715
5643
  msgid "Assign usernames as IDs for each user."
5644
  msgstr "Asignar los nombres de usuario como ID para cada usuario."
5645
 
5646
+ #: ../modules/mycred-module-hooks.php:2719
5647
  msgid "IP Limit"
5648
  msgstr "Límite de IP"
5649
 
5650
+ #: ../modules/mycred-module-hooks.php:2723
5651
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5652
  msgstr ""
5653
  "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
5654
  "número ilimitado"
5655
 
5656
+ #: ../modules/mycred-module-hooks.php:2727 ../modules/mycred-module-hooks.php:2760
5657
  msgid "BuddyPress Profile"
5658
  msgstr "Perfil de BuddyPress"
5659
 
5660
+ #: ../modules/mycred-module-hooks.php:2730
5661
  msgid "Insert Link in users Profile"
5662
  msgstr "Insertar enlace en el perfil del usuario"
5663
 
5664
+ #: ../modules/mycred-module-hooks.php:2731
5665
  msgid ""
5666
  "Option to inser the referral link in users profiles. Links will only be "
5667
  "visible to users viewing their own profiles or administrators."
5670
  " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
5671
  "ven a sus propios perfiles."
5672
 
5673
+ #: ../modules/mycred-module-hooks.php:2737
5674
  msgid "Leave empty to hide."
5675
  msgstr "Deje el campo vacío para ocultarlo."
5676
 
5677
+ #: ../modules/mycred-module-hooks.php:2740
5678
  msgid "Description"
5679
  msgstr "Descripción"
5680
 
5681
+ #: ../modules/mycred-module-hooks.php:2741
5682
  msgid "Optional description to insert under the link."
5683
  msgstr "Insertar la descripción opcional debajo del enlace."
5684
 
5685
+ #: ../modules/mycred-module-hooks.php:2753
5686
  msgid "Profile Positioning"
5687
  msgstr "Posicionamiento del Perfil"
5688
 
5689
+ #: ../modules/mycred-module-hooks.php:2755
5690
  msgid ""
5691
  "You can move around the referral link on your users profile by changing the "
5692
  "position. Increase to move up, decrease to move down."
5694
  "Puedes moverte por el enlace de referencia en su perfil los usuarios "
5695
  "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
5696
 
5697
+ #: ../modules/mycred-module-hooks.php:2756
5698
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5699
  msgstr ""
5700
  "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
5701
  "en el perfil del usuario!"
5702
 
5703
+ #: ../modules/mycred-module-hooks.php:2762
5704
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5705
  msgstr "Requiere que BuddyPress Extended Profiles sea activado."
5706
 
5725
  msgid "Entries"
5726
  msgstr "Entradas"
5727
 
5728
+ #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
5729
+ #: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:574
5730
  msgid "Export"
5731
  msgstr "Exportar"
5732
 
5734
  msgid "Search results for"
5735
  msgstr "Buscar entre resultados por"
5736
 
5737
+ #: ../modules/mycred-module-log.php:378
5738
  #, php-format
5739
  msgid "%s Log"
5740
  msgstr "Registro de %s"
5741
 
5742
+ #: ../modules/mycred-module-log.php:506
5743
  msgid "Edit"
5744
  msgstr "Editar"
5745
 
5746
+ #: ../modules/mycred-module-log.php:547
5747
  msgid "Time"
5748
  msgstr "Tiempo"
5749
 
5750
+ #: ../modules/mycred-module-log.php:551
5751
  msgid "Current Log Entry"
5752
  msgstr "Entrada Actual de Registro"
5753
 
5754
+ #: ../modules/mycred-module-log.php:553
5755
  msgid "The current saved log entry"
5756
  msgstr "La entrada guardada actual del registro"
5757
 
5758
+ #: ../modules/mycred-module-log.php:556
5759
  msgid "Adjust Log Entry"
5760
  msgstr "Ajustar entrada de registro"
5761
 
5762
+ #: ../modules/mycred-module-log.php:558
5763
  msgid "The new log entry"
5764
  msgstr "La nueva entrada de registro"
5765
 
5766
+ #: ../modules/mycred-module-log.php:561
5767
  msgid "Update Log Entry"
5768
  msgstr "Actualiza la entrada de registro"
5769
 
5770
+ #: ../modules/mycred-module-log.php:628
5771
  #, php-format
5772
  msgid "My %s History"
5773
  msgstr "Mi Historial de %s"
6488
  #: ../plugins/mycred-hook-wp-polls.php:19
6489
  #, php-format
6490
  msgid "Awards %_plural% for users voting in polls."
6491
+ msgstr ""
6492
+ "Concede %_plural% a usuarios que han votado en encuestas.Concede %_plural% a "
6493
+ "usuarios que han votado en encuestas."
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 Jul 28 2014 16:20:57 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Persian (Iran)\n"
@@ -15,7 +15,7 @@ msgstr ""
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:text_noop:1,2;"
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
@@ -43,8 +43,8 @@ msgstr "\"اعتبار من\""
43
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
44
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
45
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
46
- #: sell-content.php:364 ../addons/transfer/myCRED-addon-transfer.php:132 ..
47
- #: includes/mycred-shortcodes.php:605
48
  msgid "Processing..."
49
  msgstr "در حال پردازش ..."
50
 
@@ -142,7 +142,7 @@ msgid "Once per day (reset at midnight)"
142
  msgstr "روزی یک بار ( نیمه شب ریست می شود )"
143
 
144
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
145
- #: abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
146
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
147
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
148
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
@@ -168,8 +168,8 @@ msgstr "برای بستن کلیک کنید ."
168
  msgid "click to open"
169
  msgstr "برای باز شدن کلیک کنید ."
170
 
171
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-
172
- #: banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:849
173
  msgid "Settings Updated"
174
  msgstr "تنظیمات به روز شد"
175
 
@@ -374,144 +374,193 @@ msgstr ""
374
  msgid "in total"
375
  msgstr ""
376
 
377
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-
378
- #: banking.php:43 ../addons/banking/myCRED-addon-banking.php:44
379
  msgid "Banking"
380
  msgstr "بانکداری"
381
 
382
- #: ../addons/banking/myCRED-addon-banking.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
383
  msgid "Compound Interest"
384
  msgstr "محاسبه ی سود ( بهره )"
385
 
386
- #: ../addons/banking/myCRED-addon-banking.php:104
387
  #, php-format
388
- msgid ""
389
- "Apply an interest rate on your users %_plural% balances. Interest rate is "
390
- "annual and is compounded daily as long as this service is enabled. Positive "
391
- "interest rate leads to users gaining %_plural% while a negative interest "
392
- "rate will to users loosing %_plural%."
393
  msgstr ""
394
- "بر روی میزان %_plural% کاربران خود ، نرخ سودی تعیین کنید . این نرخ سود "
395
- "سالیانه بوده و به صورت روزشمار از زمانی که این افزونه فعال باشد محاسبه خواهد "
396
- "شد . نرخ سود مثبت باعث افزایش امتیازات کاربران و نرخ سود منفی باعث کاهش آن "
397
- "می گردد ."
398
 
399
- #: ../addons/banking/myCRED-addon-banking.php:110
400
  msgid "Recurring Payouts"
401
  msgstr "پرداخت های مکرر"
402
 
403
- #: ../addons/banking/myCRED-addon-banking.php:111
404
- #, php-format
405
- msgid ""
406
- "Give your users %_plural% on a regular basis with the option to set the "
407
- "number of times you want this payout to run (cycles)."
408
  msgstr ""
409
- "به کاربران خود بر پایه ی دوره های زمانی معینی %_plural% دهید . همچنین این "
410
- "قابلیت را خواهید داشت که تعیین کنید چند بار این دوره ی زمانی تکرار شود ."
411
 
412
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-
413
- #: addon-buy-creds.php:839 ../addons/buy-creds/myCRED-addon-buy-creds.php:935 ..
414
- #: includes/mycred-admin.php:573 ../includes/mycred-network.php:148 ..
415
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
416
- #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:579 ..
417
  #: modules/mycred-module-settings.php:312
418
  msgid "Access Denied"
419
  msgstr "دسترسی غیرمجاز می باشد"
420
 
421
- #: ../addons/banking/myCRED-addon-banking.php:167
422
  #, php-format
423
  msgid "%s Banking"
424
  msgstr "بانکداری %s"
425
 
426
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.
427
- #: php:158
428
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
429
  msgstr ""
430
 
431
- #: ../addons/banking/myCRED-addon-banking.php:171
432
  msgid "WP-Cron deactivation detected!"
433
  msgstr "غیرفعالسازی WP-Cron یافت شد !"
434
 
435
- #: ../addons/banking/myCRED-addon-banking.php:172
436
  msgid "Warning! This add-on requires WP - Cron to work."
437
  msgstr ""
438
  "اخطار ! این افزونه ی جانبی برای فعالسازی به WP-Cron احتیاج دارد .<br/>WP-"
439
  "Cron چیست ؟<br/>قابلیتی در وردپرس می باشد که امکان زمانبندی های مختلف را به "
440
  "مدیر سایت می دهد"
441
 
442
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-
443
- #: addon-buy-creds.php:873 ../modules/mycred-module-hooks.php:196
444
  msgid "Enable"
445
  msgstr "فعالسازی"
446
 
447
- #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
448
  #: php:211
449
  msgid "Update Changes"
450
  msgstr "به روزرسانی تغییرات"
451
 
452
- #: ../addons/banking/abstracts/mycred-abstract-service.php:57
453
- msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
454
- msgstr "تابع myCRED_Service::run() باید در کلاس زیرین ، تنظیم مجدد شود ."
455
-
456
- #: ../addons/banking/abstracts/mycred-abstract-service.php:66
457
  msgid "This Service has no settings"
458
  msgstr "این سرویس تنظیماتی ندارد"
459
 
460
- #: ../addons/banking/abstracts/mycred-abstract-service.php:143
461
  msgid "Hourly"
462
  msgstr "ساعتی"
463
 
464
- #: ../addons/banking/abstracts/mycred-abstract-service.php:147
465
  msgid "Daily"
466
  msgstr "روزانه"
467
 
468
- #: ../addons/banking/abstracts/mycred-abstract-service.php:151
469
  msgid "Weekly"
470
  msgstr "هفتگی"
471
 
472
- #: ../addons/banking/abstracts/mycred-abstract-service.php:155
473
  msgid "Monthly"
474
  msgstr "ماهانه"
475
 
476
- #: ../addons/banking/abstracts/mycred-abstract-service.php:159
477
  msgid "Quarterly"
478
  msgstr "فصلی ( سه ماه یکبار )"
479
 
480
- #: ../addons/banking/abstracts/mycred-abstract-service.php:163
481
  msgid "Semiannually"
482
  msgstr "شش ماه یک بار"
483
 
484
- #: ../addons/banking/abstracts/mycred-abstract-service.php:167
485
  msgid "Annually"
486
  msgstr "سالانه"
487
 
488
- #: ../addons/banking/services/mycred-bank-service-interest.php:25
 
 
 
 
 
 
 
 
 
 
 
 
489
  msgid "%plural% interest rate payment"
490
  msgstr "پرداخت نرخ سود %plural%"
491
 
492
- #: ../addons/banking/services/mycred-bank-service-interest.php:275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
493
  msgid "Interest Rate"
494
  msgstr "نرخ سود"
495
 
496
- #: ../addons/banking/services/mycred-bank-service-interest.php:282
497
- msgid "Payed / Charged"
498
- msgstr "پرداخت کردن / واریز کردن"
499
-
500
- #: ../addons/banking/services/mycred-bank-service-interest.php:288
501
- msgid "The interest rate can be either positive or negative and is compounded daily."
502
- msgstr "نرخ سود می تواند مثبت یا منفی باشد و به صورت روزانه محاسبه می شود ."
503
 
504
- #: ../addons/banking/services/mycred-bank-service-interest.php:291 ..
505
- #: addons/coupons/myCRED-addon-coupons.php:392
506
- msgid "Minimum Balance"
507
- msgstr "کمترین میزان"
508
 
509
- #: ../addons/banking/services/mycred-bank-service-interest.php:295
510
- msgid "The minimum requires balance for interest to apply."
511
- msgstr "کمترین میزان مورد نیاز برای اعمال سود ."
 
512
 
513
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ..
514
- #: addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-
515
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
516
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
517
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
@@ -529,99 +578,119 @@ msgstr "کمترین میزان مورد نیاز برای اعمال سود ."
529
  msgid "Log Template"
530
  msgstr "نمونه لیست گزارش ( لوگ )"
531
 
532
- #: ../addons/banking/services/mycred-bank-service-interest.php:305 ..
533
- #: addons/banking/services/mycred-bank-service-payouts.php:259
534
- msgid "Run Time"
535
- msgstr "مدت اجرا"
 
536
 
537
- #: ../addons/banking/services/mycred-bank-service-interest.php:309 ..
538
- #: addons/banking/services/mycred-bank-service-payouts.php:263
539
- msgid ""
540
- "For large websites, if you are running into time out issues during payouts, "
541
- "you can set the number of seconds a process can run. Use zero for unlimited, "
542
- "but be careful especially if you are on a shared server."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
543
  msgstr ""
544
- "در وبسایت ها بزرگ ، اگر برای انجام پرداخت محدودیت های زمانی دارید ، می "
545
- "توانید از این قسمت تعداد ثانیه هایی که پروسه می تواند در حالت اجرا باشد را "
546
- "مشخص کنید . برای برداشتن محدودیت زمان می توانید عدد صفر را وارد فرمایید ، "
547
- "اما توجه کنید که اگر از سرورهای اشتراکی و یا هاست های اشتراکی استفاده می "
548
- "نمایید ، عدد مورد نظر باید محدود شود"
549
 
550
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
551
  msgid "Daily %_plural%"
552
  msgstr "%_plural% روزانه"
553
 
554
- #: ../addons/banking/services/mycred-bank-service-payouts.php:214
555
- msgid "Not yet run"
556
- msgstr "هنوز اجرا نشده است"
 
 
 
 
 
 
 
 
 
 
557
 
558
- #: ../addons/banking/services/mycred-bank-service-payouts.php:219
559
  msgid "Pay Users"
560
  msgstr "پرداخت به کاربران :"
561
 
562
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
563
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
564
- #: creds.php:1520 ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ..
565
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
566
- #: includes/mycred-admin.php:726 ../includes/mycred-admin.php:771 ..
567
- #: includes/mycred-shortcodes.php:908
568
  msgid "Amount"
569
  msgstr "مقدار"
570
 
571
- #: ../addons/banking/services/mycred-bank-service-payouts.php:224
572
- msgid "Can not be zero."
573
- msgstr "عدد صفر مجاز نیست"
574
-
575
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ..
576
- #: addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-
577
- #: module-hooks.php:2113
578
  msgid "Interval"
579
  msgstr "فاصله زمانی"
580
 
581
- #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ..
582
- #: addons/banking/services/mycred-bank-service-payouts.php:242
583
  msgid "Cycles"
584
  msgstr "دوره ( چند مرتبه این عمل تکرار شود ؟ )"
585
 
586
- #: ../addons/banking/services/mycred-bank-service-payouts.php:235
587
  msgid "Set to -1 for unlimited"
588
  msgstr "عدد 1- برای بی نهایت تکرار"
589
 
590
- #: ../addons/banking/services/mycred-bank-service-payouts.php:238
591
- msgid "Last Run / Activated"
592
- msgstr "آخرین دفعه ی اجرا / فعالسازی"
593
-
594
- #: ../addons/banking/services/mycred-bank-service-payouts.php:241
595
- msgid ""
596
- "Select how often you want to award %_plural%. Note that when this service is "
597
- "enabled, the first payout will be in the beginning of the next period. So "
598
- "with a \"Daily\" interval, the first payout will occur first thing in the "
599
- "morning."
600
- msgstr ""
601
- "فاصله ی زمانی اجرای این فرآیند را تعیین می کند ، اینکه هر چند وقت یکبار این "
602
- "مقدار %_plural% به کاربران اهدا گردد . البته گفتن این نکته خالی از لطف نیست "
603
- "که واریز اولیه ی امتیاز در ابتدای فاصله زمانی تعیین شده ی بعدی خواهد بود ، "
604
- "به طور مثال اگر فاصله زمانی را روزانه انتخاب کرده باشید ، اولین بار امتیاز "
605
- "تعیین شده بامداد روز بعد واریز می گردد ( مرجع نیمه شب است )"
606
-
607
- #: ../addons/banking/services/mycred-bank-service-payouts.php:242
608
- msgid ""
609
- "Cycles let you choose how many intervals this service should run. Each time "
610
- "a cycle runs, the value will decrease until it hits zero, in which case this "
611
- "service will deactivate itself. Use -1 to run unlimited times."
612
- msgstr ""
613
- "دوره ها به شما این اختیار را می دهند که تعیین فرمایید چند بار عمل واریز "
614
- "تکرار گردد . به طور مثال اگر این مقدار یک باشد فقط یک بار مقدار امتیازی که "
615
- "تعیین می کنید در فاصله زمانی تعیین شده به حساب کاربران واریز می شود . بعد از "
616
- "هر بار واریز هم تعداد دوره ها یک عدد کاهش می یابد تا نهایتا به صفر رسیده و "
617
- "عمل واریز متوقف شود . برای بی نهایت کردن این چرخه عدد 1-( منفی یک ) را وارد "
618
- "فرمایید"
619
-
620
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
621
  msgid "Important"
622
  msgstr "نکته ی مهم"
623
 
624
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
625
  msgid ""
626
  "You can always stop payouts by deactivating this service. Just remember that "
627
  "if you deactivate while there are cycles left, this service will continue on "
@@ -634,19 +703,6 @@ msgstr ""
634
  "نوع مکث تا زمان دلخواه شما ، برای عملیات واریز خواهد بود . برای ریست کردن "
635
  "تعداد دوره ها هم می توانید عدد صفر را وارد فرمایید"
636
 
637
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
638
- #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
639
- msgid "Excludes"
640
- msgstr "کاربران استثنا"
641
-
642
- #: ../addons/banking/services/mycred-bank-service-payouts.php:249
643
- msgid ""
644
- "Comma separated list of user IDs to exclude from this service. No spaces "
645
- "allowed!"
646
- msgstr ""
647
- "کاربرانی که نمی خواهید به آن ها سودی پرداخت کنید ! برای جدا کردن شناسه "
648
- "کاربران از ویرگول استفاده فرمایید ، فاصله ( اسپیس ) مجاز نیست !"
649
-
650
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
651
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
652
  msgid "Payment Gateways"
@@ -672,7 +728,7 @@ msgid "Edit Pending Payment"
672
  msgstr ""
673
 
674
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
675
- #: addon-buy-creds.php:1631
676
  msgid "No pending payments found"
677
  msgstr ""
678
 
@@ -681,23 +737,23 @@ msgid "Not found in Trash"
681
  msgstr ""
682
 
683
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
684
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595
685
  msgid "Transaction ID"
686
  msgstr ""
687
 
688
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
689
- #: addon-buy-creds.php:984
690
  msgid "Buyer"
691
  msgstr ""
692
 
693
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
694
- #: addon-buy-creds.php:1598 ../addons/buy-creds/abstracts/mycred-abstract-payment-
695
  #: gateway.php:563
696
  msgid "Cost"
697
  msgstr ""
698
 
699
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
700
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1596 ..
701
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
702
  msgid "Gateway"
703
  msgstr "درگاه"
@@ -715,14 +771,14 @@ msgid "buyCRED Purchase Log"
715
  msgstr ""
716
 
717
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
718
- #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:845
719
  msgid "Purchase Log"
720
  msgstr ""
721
 
722
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
723
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
724
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
725
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:416
726
  msgid "Payments"
727
  msgstr "پرداخت ها"
728
 
@@ -801,7 +857,7 @@ msgid "Allow users to buy %_plural% for content authors."
801
  msgstr "به کاربران اجازه ی خرید %_plural% برای نویسندگان مطالب را بدهید ."
802
 
803
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
804
- #: hooks.php:2748
805
  msgid "Available Shortcodes"
806
  msgstr ""
807
 
@@ -810,160 +866,155 @@ msgstr ""
810
  msgid "%s Exchange Rate"
811
  msgstr ""
812
 
813
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:759 ../addons/sell-
814
- #: content/myCRED-addon-sell-content.php:113
815
- msgid "Leave empty to use the default value."
816
- msgstr ""
817
-
818
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
819
  msgid "Save Exchange Rates"
820
  msgstr ""
821
 
822
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
823
  msgid "Exchange rate override saved"
824
  msgstr ""
825
 
826
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:827
827
  msgid "Payment completed"
828
  msgstr ""
829
 
830
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
831
  #, php-format
832
  msgid "%s Payment Gateways"
833
  msgstr "درگاه های پرداخت %s"
834
 
835
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845 ../addons/buy-creds/myCRED-
836
- #: addon-buy-creds.php:992
837
  msgid "buyCRED Settings"
838
  msgstr ""
839
 
840
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
841
  msgid "Test Mode"
842
  msgstr "حالت آزمایشی ( تست )"
843
 
844
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
845
  msgid "Enabled"
846
  msgstr "فعال شد"
847
 
848
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:871
849
  msgid "Disabled"
850
  msgstr "غیرفعال شد"
851
 
852
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
853
  msgid "Sandbox Mode"
854
  msgstr ""
855
  "حالت جعبه شنی ( حالت تست بانکی می باشد که در آن بابت تراکنش ها هیچ وجهی کسر "
856
  "نمی گردد )"
857
 
858
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:884
859
  msgid "Enable for test purchases."
860
  msgstr ""
861
 
862
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:901 ../addons/gateway/event-
863
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
864
  msgid "Update Settings"
865
  msgstr "به روزرسانی تنظیمات"
866
 
867
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
868
  msgid "More Gateways"
869
  msgstr ""
870
 
871
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
872
  #: 634
873
  msgid "Date"
874
  msgstr "تاریخ"
875
 
876
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
877
  msgid "Payed"
878
  msgstr ""
879
 
880
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
881
  msgid "<strong>buy</strong>CRED Purchase Log"
882
  msgstr ""
883
 
884
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
885
  #: booking/mycred-eventespresso3.php:367
886
  msgid "Gateway Settings"
887
  msgstr "تنظیمات درگاه پرداخت"
888
 
889
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1168 ../addons/sell-
890
- #: content/myCRED-addon-sell-content.php:1184
891
  msgid "No purchases found"
892
  msgstr "خریدی یافت نشد"
893
 
894
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1238 ../addons/buy-creds/myCRED-
895
- #: addon-buy-creds.php:1351
896
  msgid "This Add-on needs to setup before you can use this shortcode."
897
  msgstr ""
898
  "برای اینکه بتوانید از این شورت کد استفاده نمایید ، باید ابتدا این افزونه ی "
899
  "جانبی را راه اندازی کنید ."
900
 
901
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1257 ../addons/buy-creds/myCRED-
902
- #: addon-buy-creds.php:1370
903
  msgid "No gateways installed."
904
  msgstr "هیچ درگاه پرداختی نصب نگردیده است ."
905
 
906
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1258 ../addons/buy-creds/myCRED-
907
- #: addon-buy-creds.php:1371
908
  msgid "Gateway does not exist."
909
  msgstr "درگاه موجود نیست ."
910
 
911
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1306
912
  msgid "Yourself"
913
  msgstr "خودتان"
914
 
915
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1372
916
  msgid "No active gateways found."
917
  msgstr "درگاه پرداخت فعالی یافت نشد ."
918
 
919
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1373
920
  msgid "The selected gateway is not active."
921
  msgstr "درگاه پرداخت انتخابی فعال نیست ."
922
 
923
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1420
924
  #, php-format
925
  msgid "Buy with %gateway%"
926
  msgstr ""
927
 
928
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1426 ../addons/sell-
929
  #: content/myCRED-addon-sell-content.php:44
930
  msgid "Buy Now"
931
  msgstr "همین الان بخرید"
932
 
933
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1471
934
  msgid "No users found"
935
  msgstr "کاربری یافت نشد"
936
 
937
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1481
938
  msgid "To"
939
  msgstr "به"
940
 
941
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1498
942
  msgid "Select Amount"
943
  msgstr "مقدار را انتخاب کنید"
944
 
945
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1522
946
  msgid "min."
947
  msgstr "حداقل"
948
 
949
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1530
950
  msgid "Select Gateway"
951
  msgstr "درگاه پرداخت را انتخاب کنید"
952
 
953
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1571 ../addons/gateway/event-
954
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
955
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
956
  #: php:35
957
  msgid "Pay Now"
958
  msgstr "همین حالا بپردازید"
959
 
960
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1572 ../includes/mycred-install.
961
  #: php:515
962
  msgid "Cancel"
963
  msgstr "لغو"
964
 
965
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ../addons/ranks/myCRED-
966
- #: addon-ranks.php:990 ../modules/mycred-module-log.php:372 ../modules/mycred-
967
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
968
  msgid "Actions"
969
  msgstr "عملیات ها"
@@ -1003,12 +1054,12 @@ msgid "Cancel purchase"
1003
  msgstr ""
1004
 
1005
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1006
- #: includes/mycred-admin.php:720 ../includes/mycred-admin.php:757
1007
  msgid "required"
1008
  msgstr "ضروری"
1009
 
1010
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1011
- #: includes/mycred-admin.php:722 ../includes/mycred-admin.php:759
1012
  msgid "optional"
1013
  msgstr "اختیاری"
1014
 
@@ -1404,7 +1455,7 @@ msgstr "صفحه تسویه حساب"
1404
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1405
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1406
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1407
- #: modules/mycred-module-hooks.php:2713
1408
  msgid "Title"
1409
  msgstr "عنوان"
1410
 
@@ -1652,7 +1703,7 @@ msgstr ""
1652
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1653
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1654
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1655
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:404 ..
1656
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1657
  #: includes/importers/mycred-cubepoints.php:365
1658
  msgid "Point Type"
@@ -2049,8 +2100,8 @@ msgid "Sent To"
2049
  msgstr "ارسال شده به"
2050
 
2051
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2052
- #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:766 ..
2053
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:544
2054
  msgid "User"
2055
  msgstr "کاربر"
2056
 
@@ -2177,7 +2228,7 @@ msgstr ""
2177
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2178
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2179
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2180
- #: php:412 ../includes/mycred-admin.php:614 ../includes/mycred-admin.php:767
2181
  msgid "Current Balance"
2182
  msgstr "میزان امتیازات اخیر"
2183
 
@@ -2304,7 +2355,7 @@ msgstr ""
2304
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2305
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2306
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2307
- #: php:578 ../includes/mycred-shortcodes.php:913
2308
  msgid "Exchange Rate"
2309
  msgstr "نرخ مبادلات"
2310
 
@@ -2542,10 +2593,6 @@ msgstr "نمونه لیست گزارش ( لوگ ) پرداخت ها"
2542
  msgid "How much is 1 %s worth in %s"
2543
  msgstr "هر 1 %s معادل چند %s است ؟"
2544
 
2545
- #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2546
- msgid "Payout"
2547
- msgstr "پرداخت"
2548
-
2549
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2550
  msgid "Instructions"
2551
  msgstr "دستورالعمل ها"
@@ -2620,8 +2667,8 @@ msgstr "عنوانی که در رسیدها و لیست گزارش ها ( لوگ
2620
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2621
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2622
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2623
- #: content/myCRED-addon-sell-content.php:452 ../addons/sell-content/myCRED-addon-
2624
- #: sell-content.php:662
2625
  msgid "Button Label"
2626
  msgstr "برچسب کلید"
2627
 
@@ -2634,8 +2681,8 @@ msgstr "کلید پرداخت"
2634
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2635
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2636
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2637
- #: content/myCRED-addon-sell-content.php:443 ../addons/sell-content/myCRED-addon-
2638
- #: sell-content.php:658
2639
  msgid "Price"
2640
  msgstr "هزینه"
2641
 
@@ -2657,12 +2704,12 @@ msgid "Log"
2657
  msgstr "لیست گزارش ( لوگ )"
2658
 
2659
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2660
- #: includes/mycred-admin.php:735 ../includes/mycred-admin.php:772
2661
  msgid "Log Entry"
2662
  msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
2663
 
2664
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2665
- #: content/myCRED-addon-sell-content.php:466
2666
  msgid "Templates"
2667
  msgstr "نمونه ها ( الگوها )"
2668
 
@@ -2740,7 +2787,7 @@ msgid "Reject"
2740
  msgstr "رد کردن"
2741
 
2742
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2743
- #: modules/mycred-module-log.php:504 ../modules/mycred-module-settings.php:488 ..
2744
  #: modules/mycred-module-settings.php:507
2745
  msgid "Delete"
2746
  msgstr "پاک کردن"
@@ -3193,9 +3240,9 @@ msgid "No users found with this rank"
3193
  msgstr "کاربری با این مدال یافت نشد"
3194
 
3195
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3196
- #: shortcodes.php:424 ../includes/mycred-shortcodes.php:427 ../includes/mycred-
3197
- #: shortcodes.php:489 ../includes/mycred-shortcodes.php:547 ../includes/mycred-
3198
- #: shortcodes.php:551 ../includes/mycred-shortcodes.php:555
3199
  msgid "error"
3200
  msgstr "خطا"
3201
 
@@ -3215,44 +3262,44 @@ msgstr ""
3215
  msgid "Save Profit Share"
3216
  msgstr ""
3217
 
3218
- #: ../addons/sell-content/myCRED-addon-sell-content.php:158
3219
  msgid "Profit Share override saved"
3220
  msgstr ""
3221
 
3222
- #: ../addons/sell-content/myCRED-addon-sell-content.php:320
3223
  msgid "You can not buy this content."
3224
  msgstr "شما قادر به خرید این محتوا نیستید ."
3225
 
3226
- #: ../addons/sell-content/myCRED-addon-sell-content.php:365
3227
  msgid "Error. Try Again"
3228
  msgstr "خطا . لطفا مجددا امتحان فرمایید ."
3229
 
3230
- #: ../addons/sell-content/myCRED-addon-sell-content.php:387
3231
  msgid "No Payout. Just charge."
3232
  msgstr "هیج پرداختی صورت نمی گیرد ، فقط واریز انجام می شود ."
3233
 
3234
- #: ../addons/sell-content/myCRED-addon-sell-content.php:388
3235
  msgid "Pay Content Author."
3236
  msgstr "پرداخت به نویسنده ی محتوا"
3237
 
3238
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394 ../includes/mycred-
3239
  #: overview.php:141 ../includes/mycred-overview.php:148
3240
  msgid "Sell Content"
3241
  msgstr "فروش محتوا"
3242
 
3243
- #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3244
  msgid "Post Types"
3245
  msgstr "انواع پست"
3246
 
3247
- #: ../addons/sell-content/myCRED-addon-sell-content.php:400
3248
  msgid "Comma separated list of post types that can be sold."
3249
  msgstr "لیستی از انواع پست هایی که امکان فروش دارند و با ویرگول از هم جدا شده اند ."
3250
 
3251
- #: ../addons/sell-content/myCRED-addon-sell-content.php:430
3252
  msgid "Percentage to pay Author"
3253
  msgstr "درصدی برای پرداخت به نویسنده"
3254
 
3255
- #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3256
  msgid ""
3257
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3258
  "authors are not paid."
@@ -3260,31 +3307,31 @@ msgstr ""
3260
  "درصدی از قیمت محتوا برای پرداخت به نویسنده . این مقدار نمی تواند عدد صفر "
3261
  "باشد . همچنین برای عدم پرداخت به نویسنده ، کادر را خالی بگذارید ."
3262
 
3263
- #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3264
  msgid "Defaults"
3265
  msgstr "پیش فرض ها"
3266
 
3267
- #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3268
  msgid "Allow authors to change price."
3269
  msgstr "به نویسندگان اجازه ی تغییر هزینه را بدهید ."
3270
 
3271
- #: ../addons/sell-content/myCRED-addon-sell-content.php:457
3272
  msgid "Allow authors to change button label."
3273
  msgstr "به نویسندگان اجازه ی تغییر متن روی کلید ( لیبل ) را بدهید ."
3274
 
3275
- #: ../addons/sell-content/myCRED-addon-sell-content.php:461
3276
  msgid "Purchases expire after"
3277
  msgstr "خریدها تا چند ساعت دیگر امکان پذیر باشند ؟"
3278
 
3279
- #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3280
  msgid "Use zero for permanent sales."
3281
  msgstr "برای ایجاد عدم محدودیتِ زمانی بر روی خریدها ، عدد صفر را وارد کنید ."
3282
 
3283
- #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3284
  msgid "For Visitors"
3285
  msgstr ""
3286
 
3287
- #: ../addons/sell-content/myCRED-addon-sell-content.php:474
3288
  #, php-format
3289
  msgid ""
3290
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3293,67 +3340,67 @@ msgstr ""
3293
  "توجه کنید که هرگز از %buy_button% در این الگوی نمونه استفاده نفرمایید ، "
3294
  "چراکه برای خرید محتوا ، کاربران حتما باید وارد سایت شوند ."
3295
 
3296
- #: ../addons/sell-content/myCRED-addon-sell-content.php:479
3297
  msgid "For Members"
3298
  msgstr ""
3299
 
3300
- #: ../addons/sell-content/myCRED-addon-sell-content.php:484 ../addons/sell-
3301
- #: content/myCRED-addon-sell-content.php:494
3302
  #, php-format
3303
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3304
  msgstr "الگوی نمونه ی شما ، برای اجرایی شدن باید شامل تگ %buy_button% باشد ."
3305
 
3306
- #: ../addons/sell-content/myCRED-addon-sell-content.php:489
3307
  msgid "For members that can not afford to buy"
3308
  msgstr ""
3309
 
3310
- #: ../addons/sell-content/myCRED-addon-sell-content.php:498
3311
  msgid "Log template for Purchases"
3312
  msgstr "الگوی لیست گزارش برای خریدها"
3313
 
3314
- #: ../addons/sell-content/myCRED-addon-sell-content.php:505
3315
  msgid "Log template for Sales"
3316
  msgstr "الگوی لیست گزارش برای فروش ها"
3317
 
3318
- #: ../addons/sell-content/myCRED-addon-sell-content.php:557
3319
  #, php-format
3320
  msgid "%s Sell This"
3321
  msgstr "فروش %s "
3322
 
3323
- #: ../addons/sell-content/myCRED-addon-sell-content.php:611
3324
  #, php-format
3325
  msgid "%s Sell Content needs to be setup before you can use this feature."
3326
  msgstr ""
3327
  "برای استفاده از این ویژگی ، باید ابتدا افزونه فروش محتوای %s را نصب و راه "
3328
  "اندازی کنید ."
3329
 
3330
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3331
  msgid "Setup add-on"
3332
  msgstr "نصب افزونه"
3333
 
3334
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3335
  msgid "Lets do it"
3336
  msgstr "بریم که داشته باشیم !"
3337
 
3338
- #: ../addons/sell-content/myCRED-addon-sell-content.php:652
3339
  #, php-format
3340
  msgid "Enable sale of this %s"
3341
  msgstr ""
3342
 
3343
- #: ../addons/sell-content/myCRED-addon-sell-content.php:666
3344
  msgid "Purchase expires after"
3345
  msgstr "خرید تا چند ساعت آینده ممکن باشد ؟"
3346
 
3347
- #: ../addons/sell-content/myCRED-addon-sell-content.php:992
3348
  msgid "Thank you for your purchase!"
3349
  msgstr "از خرید شما صمیمانه سپاسگذاریم !"
3350
 
3351
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1080 ../addons/sell-
3352
- #: content/myCRED-addon-sell-content.php:1166
3353
  msgid "The following content is set for sale:"
3354
  msgstr "محتوای زیر برای فروش تنظیم می شود :"
3355
 
3356
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1226
3357
  msgid "Purchased"
3358
  msgstr "خریداری شده"
3359
 
@@ -3368,7 +3415,7 @@ msgstr ""
3368
  "امتیاز بیشتر را ندارید ."
3369
 
3370
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3371
- #: php:2295
3372
  msgid "Transfer"
3373
  msgstr "جابجایی"
3374
 
@@ -3405,7 +3452,7 @@ msgstr ""
3405
  "جابجایی امتیاز امکان پذیر نخواهد بود !"
3406
 
3407
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3408
- #: php:1010
3409
  msgid "Insufficient Funds. Please try a lower amount."
3410
  msgstr ""
3411
 
@@ -3631,97 +3678,92 @@ msgstr "این مقدار نباید صفر باشد"
3631
  msgid "Failed to update this uses balance."
3632
  msgstr ""
3633
 
3634
- #: ../includes/mycred-admin.php:404
3635
  msgid "Excluded"
3636
  msgstr "بن شده ( محروم شده )"
3637
 
3638
- #: ../includes/mycred-admin.php:414
3639
  #, php-format
3640
  msgid "Total: %s"
3641
  msgstr ""
3642
 
3643
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:254 ..
3644
- #: modules/mycred-module-log.php:255
3645
- msgid "History"
3646
- msgstr "لیست تغییرات"
3647
-
3648
- #: ../includes/mycred-admin.php:423
3649
  msgid "Adjust"
3650
  msgstr "تطبیق"
3651
 
3652
- #: ../includes/mycred-admin.php:461 ../includes/mycred-admin.php:462
3653
  msgid "Edit Balance"
3654
  msgstr ""
3655
 
3656
- #: ../includes/mycred-admin.php:480
3657
  msgid "Profile"
3658
  msgstr ""
3659
 
3660
- #: ../includes/mycred-admin.php:487
3661
  msgid "Extended Profile"
3662
  msgstr ""
3663
 
3664
- #: ../includes/mycred-admin.php:577
3665
  #, php-format
3666
  msgid "This user is excluded from using %s"
3667
  msgstr ""
3668
 
3669
- #: ../includes/mycred-admin.php:600
3670
  msgid "Edit User"
3671
  msgstr ""
3672
 
3673
- #: ../includes/mycred-admin.php:602
3674
  msgctxt "user"
3675
  msgid "Add New"
3676
  msgstr ""
3677
 
3678
- #: ../includes/mycred-admin.php:604
3679
  msgctxt "user"
3680
  msgid "Add Existing"
3681
  msgstr ""
3682
 
3683
- #: ../includes/mycred-admin.php:615
3684
  #, php-format
3685
  msgid "Total %s Accumulated"
3686
  msgstr ""
3687
 
3688
- #: ../includes/mycred-admin.php:616
3689
  #, php-format
3690
  msgid "Total %s Spent"
3691
  msgstr ""
3692
 
3693
- #: ../includes/mycred-admin.php:627
3694
  msgid "View History"
3695
  msgstr ""
3696
 
3697
- #: ../includes/mycred-admin.php:628
3698
  msgid "Exclude User"
3699
  msgstr ""
3700
 
3701
- #: ../includes/mycred-admin.php:632
3702
  msgid "Adjust Balance"
3703
  msgstr ""
3704
 
3705
- #: ../includes/mycred-admin.php:641
3706
  msgid ""
3707
  "Warning! Excluding this user will result in their balance being deleted "
3708
  "along with any entries currently in your log! This can not be undone!"
3709
  msgstr ""
3710
 
3711
- #: ../includes/mycred-admin.php:699
3712
  #, php-format
3713
  msgid "%singular% balance"
3714
  msgstr ""
3715
 
3716
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:773
3717
  msgid "Update Balance"
3718
  msgstr "به روزرسانی میزان امتیاز"
3719
 
3720
- #: ../includes/mycred-admin.php:765
3721
  msgid "ID"
3722
  msgstr "شناسه"
3723
 
3724
- #: ../includes/mycred-admin.php:771
3725
  msgid "A positive or negative value"
3726
  msgstr "مقدار مثبت یا منفی"
3727
 
@@ -3773,298 +3815,298 @@ msgstr ""
3773
  msgid "Available Template Tags:"
3774
  msgstr ""
3775
 
3776
- #: ../includes/mycred-functions.php:1655
3777
  msgid "Entire Log"
3778
  msgstr ""
3779
 
3780
- #: ../includes/mycred-functions.php:1660 ../includes/mycred-functions.php:1661
3781
  msgid "Displayed Rows"
3782
  msgstr ""
3783
 
3784
- #: ../includes/mycred-functions.php:1668
3785
  msgid "Search Results"
3786
  msgstr ""
3787
 
3788
- #: ../includes/mycred-functions.php:1669
3789
  msgid "My Entire Log"
3790
  msgstr ""
3791
 
3792
- #: ../includes/mycred-functions.php:1790
3793
  msgid "ref empty"
3794
  msgstr "ارجاع ( استرداد ) خالی می باشد"
3795
 
3796
- #: ../includes/mycred-functions.php:1798
3797
  msgid "incorrect user id format"
3798
  msgstr "فرمت نامعتبر شناسه ی کاربر"
3799
 
3800
- #: ../includes/mycred-functions.php:1811
3801
  msgid "incorrect unix timestamp (from):"
3802
  msgstr ""
3803
 
3804
- #: ../includes/mycred-functions.php:1820
3805
  msgid "incorrect unix timestamp (to):"
3806
  msgstr ""
3807
 
3808
- #: ../includes/mycred-functions.php:2182
3809
  msgid "Website Registration"
3810
  msgstr ""
3811
 
3812
- #: ../includes/mycred-functions.php:2183
3813
  msgid "Website Visit"
3814
  msgstr ""
3815
 
3816
- #: ../includes/mycred-functions.php:2184
3817
  msgid "Viewing Content (Member)"
3818
  msgstr ""
3819
 
3820
- #: ../includes/mycred-functions.php:2185
3821
  msgid "Viewing Content (Author)"
3822
  msgstr ""
3823
 
3824
- #: ../includes/mycred-functions.php:2186
3825
  msgid "Logging in"
3826
  msgstr ""
3827
 
3828
- #: ../includes/mycred-functions.php:2187
3829
  msgid "Publishing Content"
3830
  msgstr ""
3831
 
3832
- #: ../includes/mycred-functions.php:2188 ../modules/mycred-module-hooks.php:1421
3833
  msgid "Approved Comment"
3834
  msgstr "نظرات تایید شده"
3835
 
3836
- #: ../includes/mycred-functions.php:2189
3837
  msgid "Unapproved Comment"
3838
  msgstr ""
3839
 
3840
- #: ../includes/mycred-functions.php:2190
3841
  msgid "SPAM Comment"
3842
  msgstr ""
3843
 
3844
- #: ../includes/mycred-functions.php:2191
3845
  msgid "Deleted Comment"
3846
  msgstr ""
3847
 
3848
- #: ../includes/mycred-functions.php:2192
3849
  msgid "Link Click"
3850
  msgstr ""
3851
 
3852
- #: ../includes/mycred-functions.php:2193
3853
  msgid "Watching Video"
3854
  msgstr ""
3855
 
3856
- #: ../includes/mycred-functions.php:2194
3857
  msgid "Visitor Referral"
3858
  msgstr ""
3859
 
3860
- #: ../includes/mycred-functions.php:2195
3861
  msgid "Signup Referral"
3862
  msgstr ""
3863
 
3864
- #: ../includes/mycred-functions.php:2199
3865
  msgid "New Profile Update"
3866
  msgstr ""
3867
 
3868
- #: ../includes/mycred-functions.php:2200
3869
  msgid "Avatar Upload"
3870
  msgstr ""
3871
 
3872
- #: ../includes/mycred-functions.php:2201
3873
  msgid "New Friendship"
3874
  msgstr ""
3875
 
3876
- #: ../includes/mycred-functions.php:2202
3877
  msgid "Ended Friendship"
3878
  msgstr ""
3879
 
3880
- #: ../includes/mycred-functions.php:2203
3881
  msgid "New Profile Comment"
3882
  msgstr ""
3883
 
3884
- #: ../includes/mycred-functions.php:2204
3885
  msgid "Profile Comment Deletion"
3886
  msgstr ""
3887
 
3888
- #: ../includes/mycred-functions.php:2205
3889
  msgid "New Message"
3890
  msgstr ""
3891
 
3892
- #: ../includes/mycred-functions.php:2206
3893
  msgid "Sending Gift"
3894
  msgstr ""
3895
 
3896
- #: ../includes/mycred-functions.php:2207
3897
  msgid "New Group"
3898
  msgstr ""
3899
 
3900
- #: ../includes/mycred-functions.php:2208
3901
  msgid "Deleted Group"
3902
  msgstr ""
3903
 
3904
- #: ../includes/mycred-functions.php:2209
3905
  msgid "New Group Forum Topic"
3906
  msgstr ""
3907
 
3908
- #: ../includes/mycred-functions.php:2210
3909
  msgid "Edit Group Forum Topic"
3910
  msgstr ""
3911
 
3912
- #: ../includes/mycred-functions.php:2211
3913
  msgid "New Group Forum Post"
3914
  msgstr ""
3915
 
3916
- #: ../includes/mycred-functions.php:2212
3917
  msgid "Edit Group Forum Post"
3918
  msgstr ""
3919
 
3920
- #: ../includes/mycred-functions.php:2213
3921
  msgid "Joining Group"
3922
  msgstr ""
3923
 
3924
- #: ../includes/mycred-functions.php:2214
3925
  msgid "Leaving Group"
3926
  msgstr ""
3927
 
3928
- #: ../includes/mycred-functions.php:2215
3929
  msgid "New Group Avatar"
3930
  msgstr ""
3931
 
3932
- #: ../includes/mycred-functions.php:2216
3933
  msgid "New Group Comment"
3934
  msgstr ""
3935
 
3936
- #: ../includes/mycred-functions.php:2220 ../plugins/mycred-hook-buddypress-media.
3937
  #: php:166
3938
  msgid "Photo Upload"
3939
  msgstr ""
3940
 
3941
- #: ../includes/mycred-functions.php:2221 ../plugins/mycred-hook-buddypress-media.
3942
  #: php:176
3943
  msgid "Video Upload"
3944
  msgstr ""
3945
 
3946
- #: ../includes/mycred-functions.php:2222 ../plugins/mycred-hook-buddypress-media.
3947
  #: php:186
3948
  msgid "Music Upload"
3949
  msgstr ""
3950
 
3951
- #: ../includes/mycred-functions.php:2226
3952
  msgid "New Link"
3953
  msgstr ""
3954
 
3955
- #: ../includes/mycred-functions.php:2227
3956
  msgid "Link Voting"
3957
  msgstr ""
3958
 
3959
- #: ../includes/mycred-functions.php:2228
3960
  msgid "Link Update"
3961
  msgstr ""
3962
 
3963
- #: ../includes/mycred-functions.php:2232
3964
  msgid "New Forum (bbPress)"
3965
  msgstr ""
3966
 
3967
- #: ../includes/mycred-functions.php:2233
3968
  msgid "New Forum Topic (bbPress)"
3969
  msgstr ""
3970
 
3971
- #: ../includes/mycred-functions.php:2234
3972
  msgid "Favorited Topic (bbPress)"
3973
  msgstr ""
3974
 
3975
- #: ../includes/mycred-functions.php:2235
3976
  msgid "New Topic Reply (bbPress)"
3977
  msgstr ""
3978
 
3979
- #: ../includes/mycred-functions.php:2239
3980
  msgid "Form Submission (Contact Form 7)"
3981
  msgstr ""
3982
 
3983
- #: ../includes/mycred-functions.php:2242
3984
  msgid "Form Submission (Gravity Form)"
3985
  msgstr ""
3986
 
3987
- #: ../includes/mycred-functions.php:2245
3988
  msgid "New Forum Topic (SimplePress)"
3989
  msgstr ""
3990
 
3991
- #: ../includes/mycred-functions.php:2246
3992
  msgid "New Forum Post (SimplePress)"
3993
  msgstr ""
3994
 
3995
- #: ../includes/mycred-functions.php:2250
3996
  msgid "Poll Voting"
3997
  msgstr ""
3998
 
3999
- #: ../includes/mycred-functions.php:2253
4000
  msgid "Sending an Invite"
4001
  msgstr ""
4002
 
4003
- #: ../includes/mycred-functions.php:2254
4004
  msgid "Accepting an Invite"
4005
  msgstr ""
4006
 
4007
- #: ../includes/mycred-functions.php:2260
4008
  msgid "Banking Payout"
4009
  msgstr ""
4010
 
4011
- #: ../includes/mycred-functions.php:2263
4012
  msgid "buyCRED Purchase (PayPal Standard)"
4013
  msgstr ""
4014
 
4015
- #: ../includes/mycred-functions.php:2264
4016
  msgid "buyCRED Purchase (Skrill)"
4017
  msgstr ""
4018
 
4019
- #: ../includes/mycred-functions.php:2265
4020
  msgid "buyCRED Purchase (Zombaio)"
4021
  msgstr ""
4022
 
4023
- #: ../includes/mycred-functions.php:2266
4024
  msgid "buyCRED Purchase (NETBilling)"
4025
  msgstr ""
4026
 
4027
- #: ../includes/mycred-functions.php:2267
4028
  msgid "buyCRED Purchase (BitPay)"
4029
  msgstr ""
4030
 
4031
- #: ../includes/mycred-functions.php:2272
4032
  msgid "Coupon Purchase"
4033
  msgstr ""
4034
 
4035
- #: ../includes/mycred-functions.php:2275
4036
  msgid "Store Purchase (WooCommerce)"
4037
  msgstr ""
4038
 
4039
- #: ../includes/mycred-functions.php:2276
4040
  msgid "Store Purchase (MarketPress)"
4041
  msgstr ""
4042
 
4043
- #: ../includes/mycred-functions.php:2277
4044
  msgid "Store Purchase (WP E-Commerce)"
4045
  msgstr ""
4046
 
4047
- #: ../includes/mycred-functions.php:2282
4048
  msgid "Event Payment (Event Espresso)"
4049
  msgstr ""
4050
 
4051
- #: ../includes/mycred-functions.php:2283
4052
  msgid "Event Sale (Event Espresso)"
4053
  msgstr ""
4054
 
4055
- #: ../includes/mycred-functions.php:2287
4056
  msgid "Event Payment (Events Manager)"
4057
  msgstr ""
4058
 
4059
- #: ../includes/mycred-functions.php:2288
4060
  msgid "Event Sale (Events Manager)"
4061
  msgstr ""
4062
 
4063
- #: ../includes/mycred-functions.php:2292
4064
  msgid "Content Purchase / Sale"
4065
  msgstr ""
4066
 
4067
- #: ../includes/mycred-functions.php:2299
4068
  msgid "Manual Adjustment by Admin"
4069
  msgstr ""
4070
 
@@ -4239,6 +4281,10 @@ msgstr ""
4239
  "امتیازی که کاربر می تواند منتقل کند ، بخرد یا در فروشگاه شما خرج کند را هم "
4240
  "تعیین بکنید . برای غیرفعال سازی این ویژگی عدد صفر را در کادر وارد فرمایید ."
4241
 
 
 
 
 
4242
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4243
  msgid "Exclude those who can \"Edit Settings\"."
4244
  msgstr ""
@@ -4352,7 +4398,7 @@ msgstr ""
4352
  msgid "Entry"
4353
  msgstr "ورودی"
4354
 
4355
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:466
4356
  msgid "User Missing"
4357
  msgstr "یافت نشدن کاربر"
4358
 
@@ -4547,92 +4593,92 @@ msgstr ""
4547
  "به یاد داشته باشید که در هنگام بلااستفاده بودن ، آن را غیرفعال کرده تا از "
4548
  "فراخوانی های مخرب جلوگیری به عمل آورید ."
4549
 
4550
- #: ../includes/mycred-shortcodes.php:153
4551
  msgid "Leaderboard is empty."
4552
  msgstr "لیست برترین ها خالیست"
4553
 
4554
- #: ../includes/mycred-shortcodes.php:424 ../includes/mycred-shortcodes.php:547
4555
  msgid "Amount missing!"
4556
  msgstr "مقدار موجود نیست"
4557
 
4558
- #: ../includes/mycred-shortcodes.php:427 ../includes/mycred-shortcodes.php:555
4559
  msgid "Log Template Missing!"
4560
  msgstr "نمونه لوگ موجود نیست"
4561
 
4562
- #: ../includes/mycred-shortcodes.php:489
4563
  msgid "Anchor missing URL!"
4564
  msgstr "آدرس اینترنتی از نوع Anchor ، در کدها موجود نیست !"
4565
 
4566
- #: ../includes/mycred-shortcodes.php:551
4567
  msgid "User ID missing for recipient."
4568
  msgstr "شناسه ی کاربر گیرنده موجود نیست"
4569
 
4570
- #: ../includes/mycred-shortcodes.php:606
4571
  msgid "Sent"
4572
  msgstr "ارسال شده"
4573
 
4574
- #: ../includes/mycred-shortcodes.php:607
4575
  msgid "Error - Try Again"
4576
  msgstr "خطا - لطفا مجددا تلاش کنید"
4577
 
4578
- #: ../includes/mycred-shortcodes.php:716
4579
  msgid "A video ID is required for this shortcode"
4580
  msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می باشد"
4581
 
4582
- #: ../includes/mycred-shortcodes.php:862 ../includes/mycred-shortcodes.php:956
4583
  msgid "Point types not found."
4584
  msgstr ""
4585
 
4586
- #: ../includes/mycred-shortcodes.php:868 ../includes/mycred-shortcodes.php:876 ..
4587
- #: includes/mycred-shortcodes.php:968 ../includes/mycred-shortcodes.php:988
4588
  #, php-format
4589
  msgid "You are excluded from using %s."
4590
  msgstr ""
4591
 
4592
- #: ../includes/mycred-shortcodes.php:872 ../includes/mycred-shortcodes.php:978
4593
  msgid "Your balance is too low to use this feature."
4594
  msgstr ""
4595
 
4596
- #: ../includes/mycred-shortcodes.php:893
4597
  #, php-format
4598
  msgid "Convert <span>%s</span> to <span>%s</span>"
4599
  msgstr ""
4600
 
4601
- #: ../includes/mycred-shortcodes.php:902
4602
  #, php-format
4603
  msgid "Your current %s balance"
4604
  msgstr ""
4605
 
4606
- #: ../includes/mycred-shortcodes.php:910
4607
  #, php-format
4608
  msgid "Minimum %s"
4609
  msgstr ""
4610
 
4611
- #: ../includes/mycred-shortcodes.php:914
4612
  #, php-format
4613
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4614
  msgstr ""
4615
 
4616
- #: ../includes/mycred-shortcodes.php:920
4617
  msgid "Exchange"
4618
  msgstr ""
4619
 
4620
- #: ../includes/mycred-shortcodes.php:1001
4621
  #, php-format
4622
  msgid "You must exchange at least %s!"
4623
  msgstr ""
4624
 
4625
- #: ../includes/mycred-shortcodes.php:1023
4626
  #, php-format
4627
  msgid "Exchange from %s"
4628
  msgstr ""
4629
 
4630
- #: ../includes/mycred-shortcodes.php:1035
4631
  #, php-format
4632
  msgid "Exchange to %s"
4633
  msgstr ""
4634
 
4635
- #: ../includes/mycred-shortcodes.php:1043
4636
  #, php-format
4637
  msgid "You have successfully exchanged %s into %s."
4638
  msgstr ""
@@ -4933,6 +4979,10 @@ msgstr "افزونه های جانبی"
4933
  msgid "Give your users badges based on their interaction with your website."
4934
  msgstr ""
4935
 
 
 
 
 
4936
  #: ../modules/mycred-module-addons.php:169
4937
  msgid ""
4938
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
@@ -5263,7 +5313,7 @@ msgstr ""
5263
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5264
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5265
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5266
- #: 2623 ../modules/mycred-module-hooks.php:2652 ../plugins/mycred-hook-badgeOS.
5267
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5268
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5269
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
@@ -5325,8 +5375,8 @@ msgstr ""
5325
  msgid "%plural% for viewing %s"
5326
  msgstr ""
5327
 
5328
- #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2631
5329
- #: ../modules/mycred-module-hooks.php:2660 ../plugins/mycred-hook-invite-anyone.
5330
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5331
  msgid "Limit"
5332
  msgstr "محدوده"
@@ -5416,7 +5466,7 @@ msgstr ""
5416
  msgid "Custom tags: %url%, %title% or %id%."
5417
  msgstr ""
5418
 
5419
- #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2734
5420
  msgid "Note!"
5421
  msgstr "نکته !"
5422
 
@@ -5500,91 +5550,91 @@ msgstr ""
5500
  msgid "Link"
5501
  msgstr ""
5502
 
5503
- #: ../modules/mycred-module-hooks.php:2617
5504
  msgid "Referring Visitors"
5505
  msgstr ""
5506
 
5507
- #: ../modules/mycred-module-hooks.php:2641 ../modules/mycred-module-hooks.php:2670
5508
  msgid "The number of referrals each member can make. Use zero for unlimited."
5509
  msgstr ""
5510
 
5511
- #: ../modules/mycred-module-hooks.php:2645 ../modules/mycred-module-hooks.php:2674
5512
  msgid "Referring Signups"
5513
  msgstr ""
5514
 
5515
- #: ../modules/mycred-module-hooks.php:2649
5516
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5517
  msgstr ""
5518
 
5519
- #: ../modules/mycred-module-hooks.php:2676
5520
  msgid "Registrations are disabled."
5521
  msgstr ""
5522
 
5523
- #: ../modules/mycred-module-hooks.php:2683
5524
  msgid "Referral Links"
5525
  msgstr ""
5526
 
5527
- #: ../modules/mycred-module-hooks.php:2687
5528
  msgid "Assign numeric referral IDs to each user."
5529
  msgstr ""
5530
 
5531
- #: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2694
5532
  msgid "Example"
5533
  msgstr ""
5534
 
5535
- #: ../modules/mycred-module-hooks.php:2693
5536
  msgid "Assign usernames as IDs for each user."
5537
  msgstr ""
5538
 
5539
- #: ../modules/mycred-module-hooks.php:2697
5540
  msgid "IP Limit"
5541
  msgstr ""
5542
 
5543
- #: ../modules/mycred-module-hooks.php:2701
5544
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5545
  msgstr ""
5546
 
5547
- #: ../modules/mycred-module-hooks.php:2705 ../modules/mycred-module-hooks.php:2738
5548
  msgid "BuddyPress Profile"
5549
  msgstr ""
5550
 
5551
- #: ../modules/mycred-module-hooks.php:2708
5552
  msgid "Insert Link in users Profile"
5553
  msgstr ""
5554
 
5555
- #: ../modules/mycred-module-hooks.php:2709
5556
  msgid ""
5557
  "Option to inser the referral link in users profiles. Links will only be "
5558
  "visible to users viewing their own profiles or administrators."
5559
  msgstr ""
5560
 
5561
- #: ../modules/mycred-module-hooks.php:2715
5562
  msgid "Leave empty to hide."
5563
  msgstr ""
5564
 
5565
- #: ../modules/mycred-module-hooks.php:2718
5566
  msgid "Description"
5567
  msgstr ""
5568
 
5569
- #: ../modules/mycred-module-hooks.php:2719
5570
  msgid "Optional description to insert under the link."
5571
  msgstr ""
5572
 
5573
- #: ../modules/mycred-module-hooks.php:2731
5574
  msgid "Profile Positioning"
5575
  msgstr ""
5576
 
5577
- #: ../modules/mycred-module-hooks.php:2733
5578
  msgid ""
5579
  "You can move around the referral link on your users profile by changing the "
5580
  "position. Increase to move up, decrease to move down."
5581
  msgstr ""
5582
 
5583
- #: ../modules/mycred-module-hooks.php:2734
5584
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5585
  msgstr ""
5586
 
5587
- #: ../modules/mycred-module-hooks.php:2740
5588
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5589
  msgstr ""
5590
 
@@ -5609,8 +5659,8 @@ msgstr ""
5609
  msgid "Entries"
5610
  msgstr "داده های ورودی"
5611
 
5612
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:385 ..
5613
- #: modules/mycred-module-log.php:629 ../modules/mycred-module-settings.php:574
5614
  msgid "Export"
5615
  msgstr "خروجی گرفتن"
5616
 
@@ -5618,40 +5668,40 @@ msgstr "خروجی گرفتن"
5618
  msgid "Search results for"
5619
  msgstr "نتایج جستجو برای عبارت"
5620
 
5621
- #: ../modules/mycred-module-log.php:379
5622
  #, php-format
5623
  msgid "%s Log"
5624
  msgstr ""
5625
 
5626
- #: ../modules/mycred-module-log.php:504
5627
  msgid "Edit"
5628
  msgstr ""
5629
 
5630
- #: ../modules/mycred-module-log.php:545
5631
  msgid "Time"
5632
  msgstr ""
5633
 
5634
- #: ../modules/mycred-module-log.php:549
5635
  msgid "Current Log Entry"
5636
  msgstr ""
5637
 
5638
- #: ../modules/mycred-module-log.php:551
5639
  msgid "The current saved log entry"
5640
  msgstr ""
5641
 
5642
- #: ../modules/mycred-module-log.php:554
5643
  msgid "Adjust Log Entry"
5644
  msgstr ""
5645
 
5646
- #: ../modules/mycred-module-log.php:556
5647
  msgid "The new log entry"
5648
  msgstr ""
5649
 
5650
- #: ../modules/mycred-module-log.php:559
5651
  msgid "Update Log Entry"
5652
  msgstr ""
5653
 
5654
- #: ../modules/mycred-module-log.php:623
5655
  #, php-format
5656
  msgid "My %s History"
5657
  msgstr ""
@@ -6364,4 +6414,3 @@ msgstr "نظرسنجی های وردپرس | WP-Polls"
6364
  #, php-format
6365
  msgid "Awards %_plural% for users voting in polls."
6366
  msgstr "اهدای %_plural% برای کاربرانی که در نظرسنجی ها رای می دهند ."
6367
- �ای %_plural% برای کاربرانی که در نظرسنجی ها رای می دهند ."
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: Thu Aug 07 2014 20:35:06 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Persian (Iran)\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
43
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
44
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
45
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
46
+ #: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
47
+ #: includes/mycred-shortcodes.php:607
48
  msgid "Processing..."
49
  msgstr "در حال پردازش ..."
50
 
142
  msgstr "روزی یک بار ( نیمه شب ریست می شود )"
143
 
144
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
145
+ #: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
146
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
147
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
148
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
168
  msgid "click to open"
169
  msgstr "برای باز شدن کلیک کنید ."
170
 
171
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/buy-creds/myCRED-addon-
172
+ #: buy-creds.php:847
173
  msgid "Settings Updated"
174
  msgstr "تنظیمات به روز شد"
175
 
374
  msgid "in total"
375
  msgstr ""
376
 
377
+ #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
378
+ #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
379
  msgid "Banking"
380
  msgstr "بانکداری"
381
 
382
+ #: ../addons/banking/myCRED-addon-banking.php:158
383
+ msgid "Central Banking"
384
+ msgstr ""
385
+
386
+ #: ../addons/banking/myCRED-addon-banking.php:159
387
+ #, php-format
388
+ msgid ""
389
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
390
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
391
+ "deposited back into this account."
392
+ msgstr ""
393
+
394
+ #: ../addons/banking/myCRED-addon-banking.php:165 ..
395
+ #: addons/banking/services/mycred-bank-service-interest.php:512
396
  msgid "Compound Interest"
397
  msgstr "محاسبه ی سود ( بهره )"
398
 
399
+ #: ../addons/banking/myCRED-addon-banking.php:166
400
  #, php-format
401
+ msgid "Apply a positive or negative interest rate on your users %_plural% balances."
 
 
 
 
402
  msgstr ""
 
 
 
 
403
 
404
+ #: ../addons/banking/myCRED-addon-banking.php:172
405
  msgid "Recurring Payouts"
406
  msgstr "پرداخت های مکرر"
407
 
408
+ #: ../addons/banking/myCRED-addon-banking.php:173
409
+ msgid "Setup mass %_singular% payouts for your users."
 
 
 
410
  msgstr ""
 
 
411
 
412
+ #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
413
+ #: addon-buy-creds.php:837 ../addons/buy-creds/myCRED-addon-buy-creds.php:933 ..
414
+ #: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
415
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
416
+ #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
417
  #: modules/mycred-module-settings.php:312
418
  msgid "Access Denied"
419
  msgstr "دسترسی غیرمجاز می باشد"
420
 
421
+ #: ../addons/banking/myCRED-addon-banking.php:225
422
  #, php-format
423
  msgid "%s Banking"
424
  msgstr "بانکداری %s"
425
 
426
+ #: ../addons/banking/myCRED-addon-banking.php:228
427
+ msgid "Your banking setup for %plural%."
 
428
  msgstr ""
429
 
430
+ #: ../addons/banking/myCRED-addon-banking.php:231
431
  msgid "WP-Cron deactivation detected!"
432
  msgstr "غیرفعالسازی WP-Cron یافت شد !"
433
 
434
+ #: ../addons/banking/myCRED-addon-banking.php:232
435
  msgid "Warning! This add-on requires WP - Cron to work."
436
  msgstr ""
437
  "اخطار ! این افزونه ی جانبی برای فعالسازی به WP-Cron احتیاج دارد .<br/>WP-"
438
  "Cron چیست ؟<br/>قابلیتی در وردپرس می باشد که امکان زمانبندی های مختلف را به "
439
  "مدیر سایت می دهد"
440
 
441
+ #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
442
+ #: addon-buy-creds.php:871 ../modules/mycred-module-hooks.php:196
443
  msgid "Enable"
444
  msgstr "فعالسازی"
445
 
446
+ #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
447
  #: php:211
448
  msgid "Update Changes"
449
  msgstr "به روزرسانی تغییرات"
450
 
451
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:79
 
 
 
 
452
  msgid "This Service has no settings"
453
  msgstr "این سرویس تنظیماتی ندارد"
454
 
455
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:233
456
  msgid "Hourly"
457
  msgstr "ساعتی"
458
 
459
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:237
460
  msgid "Daily"
461
  msgstr "روزانه"
462
 
463
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:241
464
  msgid "Weekly"
465
  msgstr "هفتگی"
466
 
467
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:245
468
  msgid "Monthly"
469
  msgstr "ماهانه"
470
 
471
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:249
472
  msgid "Quarterly"
473
  msgstr "فصلی ( سه ماه یکبار )"
474
 
475
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:253
476
  msgid "Semiannually"
477
  msgstr "شش ماه یک بار"
478
 
479
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:257
480
  msgid "Annually"
481
  msgstr "سالانه"
482
 
483
+ #: ../addons/banking/services/mycred-bank-service-central.php:105
484
+ msgid "Bank User"
485
+ msgstr ""
486
+
487
+ #: ../addons/banking/services/mycred-bank-service-central.php:109
488
+ msgid "The user ID of the central bank account. This user can not be excluded!"
489
+ msgstr ""
490
+
491
+ #: ../addons/banking/services/mycred-bank-service-central.php:112
492
+ msgid "Ignore Manual Adjustments"
493
+ msgstr ""
494
+
495
+ #: ../addons/banking/services/mycred-bank-service-interest.php:24
496
  msgid "%plural% interest rate payment"
497
  msgstr "پرداخت نرخ سود %plural%"
498
 
499
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
500
+ msgid "Compounding Interest"
501
+ msgstr ""
502
+
503
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
504
+ #, php-format
505
+ msgid "%d Users are left to process."
506
+ msgstr ""
507
+
508
+ #: ../addons/banking/services/mycred-bank-service-interest.php:388
509
+ msgid "Payout History"
510
+ msgstr ""
511
+
512
+ #: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
513
+ #: addons/banking/services/mycred-bank-service-interest.php:409 ..
514
+ #: addons/banking/services/mycred-bank-service-payouts.php:249
515
+ msgid "Run Count"
516
+ msgstr ""
517
+
518
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
519
+ msgid "Last Payout"
520
+ msgstr ""
521
+
522
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
523
+ #: addons/banking/services/mycred-bank-service-interest.php:414
524
+ msgid "Activated"
525
+ msgstr ""
526
+
527
+ #: ../addons/banking/services/mycred-bank-service-interest.php:401
528
+ msgid "Total Payed Interest"
529
+ msgstr ""
530
+
531
+ #: ../addons/banking/services/mycred-bank-service-interest.php:405
532
+ msgid "Compound History"
533
+ msgstr ""
534
+
535
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
536
+ msgid "Last Interest Compound"
537
+ msgstr ""
538
+
539
+ #: ../addons/banking/services/mycred-bank-service-interest.php:418
540
+ msgid "Total Compounded Interest"
541
+ msgstr ""
542
+
543
+ #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
544
+ #: addons/banking/services/mycred-bank-service-interest.php:549
545
  msgid "Interest Rate"
546
  msgstr "نرخ سود"
547
 
548
+ #: ../addons/banking/services/mycred-bank-service-interest.php:425
549
+ msgid "Default Rate"
550
+ msgstr ""
 
 
 
 
551
 
552
+ #: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
553
+ #: addons/banking/services/mycred-bank-service-payouts.php:267
554
+ msgid "Can not be zero."
555
+ msgstr "عدد صفر مجاز نیست"
556
 
557
+ #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
558
+ #: addons/gateway/carts/mycred-wpecommerce.php:364
559
+ msgid "Payout"
560
+ msgstr "پرداخت"
561
 
562
+ #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
563
+ #: addons/banking/services/mycred-bank-service-payouts.php:282 ../addons/buy-
564
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
565
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
566
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
578
  msgid "Log Template"
579
  msgstr "نمونه لیست گزارش ( لوگ )"
580
 
581
+ #: ../addons/banking/services/mycred-bank-service-interest.php:442 ..
582
+ #: addons/banking/services/mycred-bank-service-payouts.php:289 ..
583
+ #: addons/coupons/myCRED-addon-coupons.php:392
584
+ msgid "Minimum Balance"
585
+ msgstr "کمترین میزان"
586
 
587
+ #: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
588
+ #: addons/banking/services/mycred-bank-service-payouts.php:293
589
+ msgid "Optional minimum balance requirement."
590
+ msgstr ""
591
+
592
+ #: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
593
+ #: addons/banking/services/mycred-bank-service-payouts.php:296
594
+ msgid "Exclude"
595
+ msgstr ""
596
+
597
+ #: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
598
+ #: addons/banking/services/mycred-bank-service-payouts.php:299
599
+ msgid "Comma separated list of user IDs"
600
+ msgstr ""
601
+
602
+ #: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
603
+ #: addons/banking/services/mycred-bank-service-payouts.php:303
604
+ msgid "Roles"
605
+ msgstr ""
606
+
607
+ #: ../addons/banking/services/mycred-bank-service-interest.php:522
608
+ msgid "This user is excluded from receiving interest on this balance."
609
+ msgstr ""
610
+
611
+ #: ../addons/banking/services/mycred-bank-service-interest.php:525
612
+ msgid "Remove from Excluded List"
613
+ msgstr ""
614
+
615
+ #: ../addons/banking/services/mycred-bank-service-interest.php:537
616
+ msgid "This user role is excluded from receiving interest on this balance."
617
+ msgstr ""
618
+
619
+ #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
620
+ #: creds/myCRED-addon-buy-creds.php:759 ../addons/sell-content/myCRED-addon-sell-
621
+ #: content.php:113
622
+ msgid "Leave empty to use the default value."
623
+ msgstr ""
624
+
625
+ #: ../addons/banking/services/mycred-bank-service-interest.php:558
626
+ msgid "Save Interest Rate"
627
+ msgstr ""
628
+
629
+ #: ../addons/banking/services/mycred-bank-service-interest.php:559
630
+ msgid "Exclude from receiving interest"
631
+ msgstr ""
632
+
633
+ #: ../addons/banking/services/mycred-bank-service-interest.php:667
634
+ msgid "Compound interest rate saved."
635
+ msgstr ""
636
+
637
+ #: ../addons/banking/services/mycred-bank-service-interest.php:669
638
+ msgid "User excluded from receiving interest."
639
+ msgstr ""
640
+
641
+ #: ../addons/banking/services/mycred-bank-service-interest.php:671
642
+ msgid "User included in receiving interest."
643
  msgstr ""
 
 
 
 
 
644
 
645
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
646
  msgid "Daily %_plural%"
647
  msgstr "%_plural% روزانه"
648
 
649
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
650
+ #: includes/mycred-admin.php:404 ../modules/mycred-module-log.php:254 ..
651
+ #: modules/mycred-module-log.php:255
652
+ msgid "History"
653
+ msgstr "لیست تغییرات"
654
+
655
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:254
656
+ msgid "Last Run"
657
+ msgstr ""
658
+
659
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:258
660
+ msgid "Total Payouts"
661
+ msgstr ""
662
 
663
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:262
664
  msgid "Pay Users"
665
  msgstr "پرداخت به کاربران :"
666
 
667
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
668
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
669
+ #: creds.php:1518 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595 ..
670
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
671
+ #: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
672
+ #: includes/mycred-shortcodes.php:910
673
  msgid "Amount"
674
  msgstr "مقدار"
675
 
676
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
677
+ #: modules/mycred-module-hooks.php:2113
 
 
 
 
 
678
  msgid "Interval"
679
  msgstr "فاصله زمانی"
680
 
681
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:275
 
682
  msgid "Cycles"
683
  msgstr "دوره ( چند مرتبه این عمل تکرار شود ؟ )"
684
 
685
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:277
686
  msgid "Set to -1 for unlimited"
687
  msgstr "عدد 1- برای بی نهایت تکرار"
688
 
689
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
690
  msgid "Important"
691
  msgstr "نکته ی مهم"
692
 
693
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
694
  msgid ""
695
  "You can always stop payouts by deactivating this service. Just remember that "
696
  "if you deactivate while there are cycles left, this service will continue on "
703
  "نوع مکث تا زمان دلخواه شما ، برای عملیات واریز خواهد بود . برای ریست کردن "
704
  "تعداد دوره ها هم می توانید عدد صفر را وارد فرمایید"
705
 
 
 
 
 
 
 
 
 
 
 
 
 
 
706
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
707
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
708
  msgid "Payment Gateways"
728
  msgstr ""
729
 
730
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
731
+ #: addon-buy-creds.php:1629
732
  msgid "No pending payments found"
733
  msgstr ""
734
 
737
  msgstr ""
738
 
739
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
740
+ #: addon-buy-creds.php:986 ../addons/buy-creds/myCRED-addon-buy-creds.php:1593
741
  msgid "Transaction ID"
742
  msgstr ""
743
 
744
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
745
+ #: addon-buy-creds.php:982
746
  msgid "Buyer"
747
  msgstr ""
748
 
749
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
750
+ #: addon-buy-creds.php:1596 ../addons/buy-creds/abstracts/mycred-abstract-payment-
751
  #: gateway.php:563
752
  msgid "Cost"
753
  msgstr ""
754
 
755
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
756
+ #: addon-buy-creds.php:981 ../addons/buy-creds/myCRED-addon-buy-creds.php:1594 ..
757
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
758
  msgid "Gateway"
759
  msgstr "درگاه"
771
  msgstr ""
772
 
773
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
774
+ #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:843
775
  msgid "Purchase Log"
776
  msgstr ""
777
 
778
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
779
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
780
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
781
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:422
782
  msgid "Payments"
783
  msgstr "پرداخت ها"
784
 
857
  msgstr "به کاربران اجازه ی خرید %_plural% برای نویسندگان مطالب را بدهید ."
858
 
859
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
860
+ #: hooks.php:2770
861
  msgid "Available Shortcodes"
862
  msgstr ""
863
 
866
  msgid "%s Exchange Rate"
867
  msgstr ""
868
 
 
 
 
 
 
869
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
870
  msgid "Save Exchange Rates"
871
  msgstr ""
872
 
873
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:822
874
  msgid "Exchange rate override saved"
875
  msgstr ""
876
 
877
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:825
878
  msgid "Payment completed"
879
  msgstr ""
880
 
881
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843
882
  #, php-format
883
  msgid "%s Payment Gateways"
884
  msgstr "درگاه های پرداخت %s"
885
 
886
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
887
+ #: addon-buy-creds.php:990
888
  msgid "buyCRED Settings"
889
  msgstr ""
890
 
891
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:864
892
  msgid "Test Mode"
893
  msgstr "حالت آزمایشی ( تست )"
894
 
895
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
896
  msgid "Enabled"
897
  msgstr "فعال شد"
898
 
899
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:869
900
  msgid "Disabled"
901
  msgstr "غیرفعال شد"
902
 
903
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
904
  msgid "Sandbox Mode"
905
  msgstr ""
906
  "حالت جعبه شنی ( حالت تست بانکی می باشد که در آن بابت تراکنش ها هیچ وجهی کسر "
907
  "نمی گردد )"
908
 
909
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:882
910
  msgid "Enable for test purchases."
911
  msgstr ""
912
 
913
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
914
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
915
  msgid "Update Settings"
916
  msgstr "به روزرسانی تنظیمات"
917
 
918
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
919
  msgid "More Gateways"
920
  msgstr ""
921
 
922
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:983 ../includes/mycred-log.php:
923
  #: 634
924
  msgid "Date"
925
  msgstr "تاریخ"
926
 
927
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985
928
  msgid "Payed"
929
  msgstr ""
930
 
931
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990
932
  msgid "<strong>buy</strong>CRED Purchase Log"
933
  msgstr ""
934
 
935
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990 ../addons/gateway/event-
936
  #: booking/mycred-eventespresso3.php:367
937
  msgid "Gateway Settings"
938
  msgstr "تنظیمات درگاه پرداخت"
939
 
940
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166 ../addons/sell-
941
+ #: content/myCRED-addon-sell-content.php:1190
942
  msgid "No purchases found"
943
  msgstr "خریدی یافت نشد"
944
 
945
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1236 ../addons/buy-creds/myCRED-
946
+ #: addon-buy-creds.php:1349
947
  msgid "This Add-on needs to setup before you can use this shortcode."
948
  msgstr ""
949
  "برای اینکه بتوانید از این شورت کد استفاده نمایید ، باید ابتدا این افزونه ی "
950
  "جانبی را راه اندازی کنید ."
951
 
952
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1255 ../addons/buy-creds/myCRED-
953
+ #: addon-buy-creds.php:1368
954
  msgid "No gateways installed."
955
  msgstr "هیچ درگاه پرداختی نصب نگردیده است ."
956
 
957
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1256 ../addons/buy-creds/myCRED-
958
+ #: addon-buy-creds.php:1369
959
  msgid "Gateway does not exist."
960
  msgstr "درگاه موجود نیست ."
961
 
962
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1304
963
  msgid "Yourself"
964
  msgstr "خودتان"
965
 
966
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1370
967
  msgid "No active gateways found."
968
  msgstr "درگاه پرداخت فعالی یافت نشد ."
969
 
970
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1371
971
  msgid "The selected gateway is not active."
972
  msgstr "درگاه پرداخت انتخابی فعال نیست ."
973
 
974
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1418
975
  #, php-format
976
  msgid "Buy with %gateway%"
977
  msgstr ""
978
 
979
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424 ../addons/sell-
980
  #: content/myCRED-addon-sell-content.php:44
981
  msgid "Buy Now"
982
  msgstr "همین الان بخرید"
983
 
984
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1469
985
  msgid "No users found"
986
  msgstr "کاربری یافت نشد"
987
 
988
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1479
989
  msgid "To"
990
  msgstr "به"
991
 
992
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1496
993
  msgid "Select Amount"
994
  msgstr "مقدار را انتخاب کنید"
995
 
996
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1520
997
  msgid "min."
998
  msgstr "حداقل"
999
 
1000
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1528
1001
  msgid "Select Gateway"
1002
  msgstr "درگاه پرداخت را انتخاب کنید"
1003
 
1004
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1569 ../addons/gateway/event-
1005
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1006
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1007
  #: php:35
1008
  msgid "Pay Now"
1009
  msgstr "همین حالا بپردازید"
1010
 
1011
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1570 ../includes/mycred-install.
1012
  #: php:515
1013
  msgid "Cancel"
1014
  msgstr "لغو"
1015
 
1016
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ../addons/ranks/myCRED-
1017
+ #: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
1018
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
1019
  msgid "Actions"
1020
  msgstr "عملیات ها"
1054
  msgstr ""
1055
 
1056
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1057
+ #: includes/mycred-admin.php:702 ../includes/mycred-admin.php:739
1058
  msgid "required"
1059
  msgstr "ضروری"
1060
 
1061
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1062
+ #: includes/mycred-admin.php:704 ../includes/mycred-admin.php:741
1063
  msgid "optional"
1064
  msgstr "اختیاری"
1065
 
1455
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1456
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1457
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1458
+ #: modules/mycred-module-hooks.php:2735
1459
  msgid "Title"
1460
  msgstr "عنوان"
1461
 
1703
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1704
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1705
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1706
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:410 ..
1707
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1708
  #: includes/importers/mycred-cubepoints.php:365
1709
  msgid "Point Type"
2100
  msgstr "ارسال شده به"
2101
 
2102
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2103
+ #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:748 ..
2104
+ #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
2105
  msgid "User"
2106
  msgstr "کاربر"
2107
 
2228
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2229
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2230
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2231
+ #: php:412 ../includes/mycred-admin.php:596 ../includes/mycred-admin.php:749
2232
  msgid "Current Balance"
2233
  msgstr "میزان امتیازات اخیر"
2234
 
2355
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2356
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2357
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2358
+ #: php:578 ../includes/mycred-shortcodes.php:915
2359
  msgid "Exchange Rate"
2360
  msgstr "نرخ مبادلات"
2361
 
2593
  msgid "How much is 1 %s worth in %s"
2594
  msgstr "هر 1 %s معادل چند %s است ؟"
2595
 
 
 
 
 
2596
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2597
  msgid "Instructions"
2598
  msgstr "دستورالعمل ها"
2667
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2668
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2669
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2670
+ #: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
2671
+ #: sell-content.php:668
2672
  msgid "Button Label"
2673
  msgstr "برچسب کلید"
2674
 
2681
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2682
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2683
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2684
+ #: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
2685
+ #: sell-content.php:664
2686
  msgid "Price"
2687
  msgstr "هزینه"
2688
 
2704
  msgstr "لیست گزارش ( لوگ )"
2705
 
2706
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2707
+ #: includes/mycred-admin.php:717 ../includes/mycred-admin.php:754
2708
  msgid "Log Entry"
2709
  msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
2710
 
2711
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2712
+ #: content/myCRED-addon-sell-content.php:472
2713
  msgid "Templates"
2714
  msgstr "نمونه ها ( الگوها )"
2715
 
2787
  msgstr "رد کردن"
2788
 
2789
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2790
+ #: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:488 ..
2791
  #: modules/mycred-module-settings.php:507
2792
  msgid "Delete"
2793
  msgstr "پاک کردن"
3240
  msgstr "کاربری با این مدال یافت نشد"
3241
 
3242
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3243
+ #: shortcodes.php:425 ../includes/mycred-shortcodes.php:428 ../includes/mycred-
3244
+ #: shortcodes.php:491 ../includes/mycred-shortcodes.php:549 ../includes/mycred-
3245
+ #: shortcodes.php:553 ../includes/mycred-shortcodes.php:557
3246
  msgid "error"
3247
  msgstr "خطا"
3248
 
3262
  msgid "Save Profit Share"
3263
  msgstr ""
3264
 
3265
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:164
3266
  msgid "Profit Share override saved"
3267
  msgstr ""
3268
 
3269
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:326
3270
  msgid "You can not buy this content."
3271
  msgstr "شما قادر به خرید این محتوا نیستید ."
3272
 
3273
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:371
3274
  msgid "Error. Try Again"
3275
  msgstr "خطا . لطفا مجددا امتحان فرمایید ."
3276
 
3277
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3278
  msgid "No Payout. Just charge."
3279
  msgstr "هیج پرداختی صورت نمی گیرد ، فقط واریز انجام می شود ."
3280
 
3281
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3282
  msgid "Pay Content Author."
3283
  msgstr "پرداخت به نویسنده ی محتوا"
3284
 
3285
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:400 ../includes/mycred-
3286
  #: overview.php:141 ../includes/mycred-overview.php:148
3287
  msgid "Sell Content"
3288
  msgstr "فروش محتوا"
3289
 
3290
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3291
  msgid "Post Types"
3292
  msgstr "انواع پست"
3293
 
3294
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3295
  msgid "Comma separated list of post types that can be sold."
3296
  msgstr "لیستی از انواع پست هایی که امکان فروش دارند و با ویرگول از هم جدا شده اند ."
3297
 
3298
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:436
3299
  msgid "Percentage to pay Author"
3300
  msgstr "درصدی برای پرداخت به نویسنده"
3301
 
3302
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3303
  msgid ""
3304
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3305
  "authors are not paid."
3307
  "درصدی از قیمت محتوا برای پرداخت به نویسنده . این مقدار نمی تواند عدد صفر "
3308
  "باشد . همچنین برای عدم پرداخت به نویسنده ، کادر را خالی بگذارید ."
3309
 
3310
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:446
3311
  msgid "Defaults"
3312
  msgstr "پیش فرض ها"
3313
 
3314
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:454
3315
  msgid "Allow authors to change price."
3316
  msgstr "به نویسندگان اجازه ی تغییر هزینه را بدهید ."
3317
 
3318
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3319
  msgid "Allow authors to change button label."
3320
  msgstr "به نویسندگان اجازه ی تغییر متن روی کلید ( لیبل ) را بدهید ."
3321
 
3322
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:467
3323
  msgid "Purchases expire after"
3324
  msgstr "خریدها تا چند ساعت دیگر امکان پذیر باشند ؟"
3325
 
3326
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3327
  msgid "Use zero for permanent sales."
3328
  msgstr "برای ایجاد عدم محدودیتِ زمانی بر روی خریدها ، عدد صفر را وارد کنید ."
3329
 
3330
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:475
3331
  msgid "For Visitors"
3332
  msgstr ""
3333
 
3334
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:480
3335
  #, php-format
3336
  msgid ""
3337
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3340
  "توجه کنید که هرگز از %buy_button% در این الگوی نمونه استفاده نفرمایید ، "
3341
  "چراکه برای خرید محتوا ، کاربران حتما باید وارد سایت شوند ."
3342
 
3343
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:485
3344
  msgid "For Members"
3345
  msgstr ""
3346
 
3347
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:490 ../addons/sell-
3348
+ #: content/myCRED-addon-sell-content.php:500
3349
  #, php-format
3350
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3351
  msgstr "الگوی نمونه ی شما ، برای اجرایی شدن باید شامل تگ %buy_button% باشد ."
3352
 
3353
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:495
3354
  msgid "For members that can not afford to buy"
3355
  msgstr ""
3356
 
3357
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:504
3358
  msgid "Log template for Purchases"
3359
  msgstr "الگوی لیست گزارش برای خریدها"
3360
 
3361
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:511
3362
  msgid "Log template for Sales"
3363
  msgstr "الگوی لیست گزارش برای فروش ها"
3364
 
3365
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:563
3366
  #, php-format
3367
  msgid "%s Sell This"
3368
  msgstr "فروش %s "
3369
 
3370
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:617
3371
  #, php-format
3372
  msgid "%s Sell Content needs to be setup before you can use this feature."
3373
  msgstr ""
3374
  "برای استفاده از این ویژگی ، باید ابتدا افزونه فروش محتوای %s را نصب و راه "
3375
  "اندازی کنید ."
3376
 
3377
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3378
  msgid "Setup add-on"
3379
  msgstr "نصب افزونه"
3380
 
3381
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3382
  msgid "Lets do it"
3383
  msgstr "بریم که داشته باشیم !"
3384
 
3385
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:658
3386
  #, php-format
3387
  msgid "Enable sale of this %s"
3388
  msgstr ""
3389
 
3390
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:672
3391
  msgid "Purchase expires after"
3392
  msgstr "خرید تا چند ساعت آینده ممکن باشد ؟"
3393
 
3394
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:998
3395
  msgid "Thank you for your purchase!"
3396
  msgstr "از خرید شما صمیمانه سپاسگذاریم !"
3397
 
3398
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1086 ../addons/sell-
3399
+ #: content/myCRED-addon-sell-content.php:1172
3400
  msgid "The following content is set for sale:"
3401
  msgstr "محتوای زیر برای فروش تنظیم می شود :"
3402
 
3403
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1232
3404
  msgid "Purchased"
3405
  msgstr "خریداری شده"
3406
 
3415
  "امتیاز بیشتر را ندارید ."
3416
 
3417
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3418
+ #: php:2313
3419
  msgid "Transfer"
3420
  msgstr "جابجایی"
3421
 
3452
  "جابجایی امتیاز امکان پذیر نخواهد بود !"
3453
 
3454
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3455
+ #: php:1012
3456
  msgid "Insufficient Funds. Please try a lower amount."
3457
  msgstr ""
3458
 
3678
  msgid "Failed to update this uses balance."
3679
  msgstr ""
3680
 
3681
+ #: ../includes/mycred-admin.php:386
3682
  msgid "Excluded"
3683
  msgstr "بن شده ( محروم شده )"
3684
 
3685
+ #: ../includes/mycred-admin.php:396
3686
  #, php-format
3687
  msgid "Total: %s"
3688
  msgstr ""
3689
 
3690
+ #: ../includes/mycred-admin.php:405
 
 
 
 
 
3691
  msgid "Adjust"
3692
  msgstr "تطبیق"
3693
 
3694
+ #: ../includes/mycred-admin.php:443 ../includes/mycred-admin.php:444
3695
  msgid "Edit Balance"
3696
  msgstr ""
3697
 
3698
+ #: ../includes/mycred-admin.php:462
3699
  msgid "Profile"
3700
  msgstr ""
3701
 
3702
+ #: ../includes/mycred-admin.php:469
3703
  msgid "Extended Profile"
3704
  msgstr ""
3705
 
3706
+ #: ../includes/mycred-admin.php:559
3707
  #, php-format
3708
  msgid "This user is excluded from using %s"
3709
  msgstr ""
3710
 
3711
+ #: ../includes/mycred-admin.php:582
3712
  msgid "Edit User"
3713
  msgstr ""
3714
 
3715
+ #: ../includes/mycred-admin.php:584
3716
  msgctxt "user"
3717
  msgid "Add New"
3718
  msgstr ""
3719
 
3720
+ #: ../includes/mycred-admin.php:586
3721
  msgctxt "user"
3722
  msgid "Add Existing"
3723
  msgstr ""
3724
 
3725
+ #: ../includes/mycred-admin.php:597
3726
  #, php-format
3727
  msgid "Total %s Accumulated"
3728
  msgstr ""
3729
 
3730
+ #: ../includes/mycred-admin.php:598
3731
  #, php-format
3732
  msgid "Total %s Spent"
3733
  msgstr ""
3734
 
3735
+ #: ../includes/mycred-admin.php:609
3736
  msgid "View History"
3737
  msgstr ""
3738
 
3739
+ #: ../includes/mycred-admin.php:610
3740
  msgid "Exclude User"
3741
  msgstr ""
3742
 
3743
+ #: ../includes/mycred-admin.php:614
3744
  msgid "Adjust Balance"
3745
  msgstr ""
3746
 
3747
+ #: ../includes/mycred-admin.php:623
3748
  msgid ""
3749
  "Warning! Excluding this user will result in their balance being deleted "
3750
  "along with any entries currently in your log! This can not be undone!"
3751
  msgstr ""
3752
 
3753
+ #: ../includes/mycred-admin.php:681
3754
  #, php-format
3755
  msgid "%singular% balance"
3756
  msgstr ""
3757
 
3758
+ #: ../includes/mycred-admin.php:721 ../includes/mycred-admin.php:755
3759
  msgid "Update Balance"
3760
  msgstr "به روزرسانی میزان امتیاز"
3761
 
3762
+ #: ../includes/mycred-admin.php:747
3763
  msgid "ID"
3764
  msgstr "شناسه"
3765
 
3766
+ #: ../includes/mycred-admin.php:753
3767
  msgid "A positive or negative value"
3768
  msgstr "مقدار مثبت یا منفی"
3769
 
3815
  msgid "Available Template Tags:"
3816
  msgstr ""
3817
 
3818
+ #: ../includes/mycred-functions.php:1673
3819
  msgid "Entire Log"
3820
  msgstr ""
3821
 
3822
+ #: ../includes/mycred-functions.php:1678 ../includes/mycred-functions.php:1679
3823
  msgid "Displayed Rows"
3824
  msgstr ""
3825
 
3826
+ #: ../includes/mycred-functions.php:1686
3827
  msgid "Search Results"
3828
  msgstr ""
3829
 
3830
+ #: ../includes/mycred-functions.php:1687
3831
  msgid "My Entire Log"
3832
  msgstr ""
3833
 
3834
+ #: ../includes/mycred-functions.php:1808
3835
  msgid "ref empty"
3836
  msgstr "ارجاع ( استرداد ) خالی می باشد"
3837
 
3838
+ #: ../includes/mycred-functions.php:1816
3839
  msgid "incorrect user id format"
3840
  msgstr "فرمت نامعتبر شناسه ی کاربر"
3841
 
3842
+ #: ../includes/mycred-functions.php:1829
3843
  msgid "incorrect unix timestamp (from):"
3844
  msgstr ""
3845
 
3846
+ #: ../includes/mycred-functions.php:1838
3847
  msgid "incorrect unix timestamp (to):"
3848
  msgstr ""
3849
 
3850
+ #: ../includes/mycred-functions.php:2200
3851
  msgid "Website Registration"
3852
  msgstr ""
3853
 
3854
+ #: ../includes/mycred-functions.php:2201
3855
  msgid "Website Visit"
3856
  msgstr ""
3857
 
3858
+ #: ../includes/mycred-functions.php:2202
3859
  msgid "Viewing Content (Member)"
3860
  msgstr ""
3861
 
3862
+ #: ../includes/mycred-functions.php:2203
3863
  msgid "Viewing Content (Author)"
3864
  msgstr ""
3865
 
3866
+ #: ../includes/mycred-functions.php:2204
3867
  msgid "Logging in"
3868
  msgstr ""
3869
 
3870
+ #: ../includes/mycred-functions.php:2205
3871
  msgid "Publishing Content"
3872
  msgstr ""
3873
 
3874
+ #: ../includes/mycred-functions.php:2206 ../modules/mycred-module-hooks.php:1421
3875
  msgid "Approved Comment"
3876
  msgstr "نظرات تایید شده"
3877
 
3878
+ #: ../includes/mycred-functions.php:2207
3879
  msgid "Unapproved Comment"
3880
  msgstr ""
3881
 
3882
+ #: ../includes/mycred-functions.php:2208
3883
  msgid "SPAM Comment"
3884
  msgstr ""
3885
 
3886
+ #: ../includes/mycred-functions.php:2209
3887
  msgid "Deleted Comment"
3888
  msgstr ""
3889
 
3890
+ #: ../includes/mycred-functions.php:2210
3891
  msgid "Link Click"
3892
  msgstr ""
3893
 
3894
+ #: ../includes/mycred-functions.php:2211
3895
  msgid "Watching Video"
3896
  msgstr ""
3897
 
3898
+ #: ../includes/mycred-functions.php:2212
3899
  msgid "Visitor Referral"
3900
  msgstr ""
3901
 
3902
+ #: ../includes/mycred-functions.php:2213
3903
  msgid "Signup Referral"
3904
  msgstr ""
3905
 
3906
+ #: ../includes/mycred-functions.php:2217
3907
  msgid "New Profile Update"
3908
  msgstr ""
3909
 
3910
+ #: ../includes/mycred-functions.php:2218
3911
  msgid "Avatar Upload"
3912
  msgstr ""
3913
 
3914
+ #: ../includes/mycred-functions.php:2219
3915
  msgid "New Friendship"
3916
  msgstr ""
3917
 
3918
+ #: ../includes/mycred-functions.php:2220
3919
  msgid "Ended Friendship"
3920
  msgstr ""
3921
 
3922
+ #: ../includes/mycred-functions.php:2221
3923
  msgid "New Profile Comment"
3924
  msgstr ""
3925
 
3926
+ #: ../includes/mycred-functions.php:2222
3927
  msgid "Profile Comment Deletion"
3928
  msgstr ""
3929
 
3930
+ #: ../includes/mycred-functions.php:2223
3931
  msgid "New Message"
3932
  msgstr ""
3933
 
3934
+ #: ../includes/mycred-functions.php:2224
3935
  msgid "Sending Gift"
3936
  msgstr ""
3937
 
3938
+ #: ../includes/mycred-functions.php:2225
3939
  msgid "New Group"
3940
  msgstr ""
3941
 
3942
+ #: ../includes/mycred-functions.php:2226
3943
  msgid "Deleted Group"
3944
  msgstr ""
3945
 
3946
+ #: ../includes/mycred-functions.php:2227
3947
  msgid "New Group Forum Topic"
3948
  msgstr ""
3949
 
3950
+ #: ../includes/mycred-functions.php:2228
3951
  msgid "Edit Group Forum Topic"
3952
  msgstr ""
3953
 
3954
+ #: ../includes/mycred-functions.php:2229
3955
  msgid "New Group Forum Post"
3956
  msgstr ""
3957
 
3958
+ #: ../includes/mycred-functions.php:2230
3959
  msgid "Edit Group Forum Post"
3960
  msgstr ""
3961
 
3962
+ #: ../includes/mycred-functions.php:2231
3963
  msgid "Joining Group"
3964
  msgstr ""
3965
 
3966
+ #: ../includes/mycred-functions.php:2232
3967
  msgid "Leaving Group"
3968
  msgstr ""
3969
 
3970
+ #: ../includes/mycred-functions.php:2233
3971
  msgid "New Group Avatar"
3972
  msgstr ""
3973
 
3974
+ #: ../includes/mycred-functions.php:2234
3975
  msgid "New Group Comment"
3976
  msgstr ""
3977
 
3978
+ #: ../includes/mycred-functions.php:2238 ../plugins/mycred-hook-buddypress-media.
3979
  #: php:166
3980
  msgid "Photo Upload"
3981
  msgstr ""
3982
 
3983
+ #: ../includes/mycred-functions.php:2239 ../plugins/mycred-hook-buddypress-media.
3984
  #: php:176
3985
  msgid "Video Upload"
3986
  msgstr ""
3987
 
3988
+ #: ../includes/mycred-functions.php:2240 ../plugins/mycred-hook-buddypress-media.
3989
  #: php:186
3990
  msgid "Music Upload"
3991
  msgstr ""
3992
 
3993
+ #: ../includes/mycred-functions.php:2244
3994
  msgid "New Link"
3995
  msgstr ""
3996
 
3997
+ #: ../includes/mycred-functions.php:2245
3998
  msgid "Link Voting"
3999
  msgstr ""
4000
 
4001
+ #: ../includes/mycred-functions.php:2246
4002
  msgid "Link Update"
4003
  msgstr ""
4004
 
4005
+ #: ../includes/mycred-functions.php:2250
4006
  msgid "New Forum (bbPress)"
4007
  msgstr ""
4008
 
4009
+ #: ../includes/mycred-functions.php:2251
4010
  msgid "New Forum Topic (bbPress)"
4011
  msgstr ""
4012
 
4013
+ #: ../includes/mycred-functions.php:2252
4014
  msgid "Favorited Topic (bbPress)"
4015
  msgstr ""
4016
 
4017
+ #: ../includes/mycred-functions.php:2253
4018
  msgid "New Topic Reply (bbPress)"
4019
  msgstr ""
4020
 
4021
+ #: ../includes/mycred-functions.php:2257
4022
  msgid "Form Submission (Contact Form 7)"
4023
  msgstr ""
4024
 
4025
+ #: ../includes/mycred-functions.php:2260
4026
  msgid "Form Submission (Gravity Form)"
4027
  msgstr ""
4028
 
4029
+ #: ../includes/mycred-functions.php:2263
4030
  msgid "New Forum Topic (SimplePress)"
4031
  msgstr ""
4032
 
4033
+ #: ../includes/mycred-functions.php:2264
4034
  msgid "New Forum Post (SimplePress)"
4035
  msgstr ""
4036
 
4037
+ #: ../includes/mycred-functions.php:2268
4038
  msgid "Poll Voting"
4039
  msgstr ""
4040
 
4041
+ #: ../includes/mycred-functions.php:2271
4042
  msgid "Sending an Invite"
4043
  msgstr ""
4044
 
4045
+ #: ../includes/mycred-functions.php:2272
4046
  msgid "Accepting an Invite"
4047
  msgstr ""
4048
 
4049
+ #: ../includes/mycred-functions.php:2278
4050
  msgid "Banking Payout"
4051
  msgstr ""
4052
 
4053
+ #: ../includes/mycred-functions.php:2281
4054
  msgid "buyCRED Purchase (PayPal Standard)"
4055
  msgstr ""
4056
 
4057
+ #: ../includes/mycred-functions.php:2282
4058
  msgid "buyCRED Purchase (Skrill)"
4059
  msgstr ""
4060
 
4061
+ #: ../includes/mycred-functions.php:2283
4062
  msgid "buyCRED Purchase (Zombaio)"
4063
  msgstr ""
4064
 
4065
+ #: ../includes/mycred-functions.php:2284
4066
  msgid "buyCRED Purchase (NETBilling)"
4067
  msgstr ""
4068
 
4069
+ #: ../includes/mycred-functions.php:2285
4070
  msgid "buyCRED Purchase (BitPay)"
4071
  msgstr ""
4072
 
4073
+ #: ../includes/mycred-functions.php:2290
4074
  msgid "Coupon Purchase"
4075
  msgstr ""
4076
 
4077
+ #: ../includes/mycred-functions.php:2293
4078
  msgid "Store Purchase (WooCommerce)"
4079
  msgstr ""
4080
 
4081
+ #: ../includes/mycred-functions.php:2294
4082
  msgid "Store Purchase (MarketPress)"
4083
  msgstr ""
4084
 
4085
+ #: ../includes/mycred-functions.php:2295
4086
  msgid "Store Purchase (WP E-Commerce)"
4087
  msgstr ""
4088
 
4089
+ #: ../includes/mycred-functions.php:2300
4090
  msgid "Event Payment (Event Espresso)"
4091
  msgstr ""
4092
 
4093
+ #: ../includes/mycred-functions.php:2301
4094
  msgid "Event Sale (Event Espresso)"
4095
  msgstr ""
4096
 
4097
+ #: ../includes/mycred-functions.php:2305
4098
  msgid "Event Payment (Events Manager)"
4099
  msgstr ""
4100
 
4101
+ #: ../includes/mycred-functions.php:2306
4102
  msgid "Event Sale (Events Manager)"
4103
  msgstr ""
4104
 
4105
+ #: ../includes/mycred-functions.php:2310
4106
  msgid "Content Purchase / Sale"
4107
  msgstr ""
4108
 
4109
+ #: ../includes/mycred-functions.php:2317
4110
  msgid "Manual Adjustment by Admin"
4111
  msgstr ""
4112
 
4281
  "امتیازی که کاربر می تواند منتقل کند ، بخرد یا در فروشگاه شما خرج کند را هم "
4282
  "تعیین بکنید . برای غیرفعال سازی این ویژگی عدد صفر را در کادر وارد فرمایید ."
4283
 
4284
+ #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
4285
+ msgid "Excludes"
4286
+ msgstr "کاربران استثنا"
4287
+
4288
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4289
  msgid "Exclude those who can \"Edit Settings\"."
4290
  msgstr ""
4398
  msgid "Entry"
4399
  msgstr "ورودی"
4400
 
4401
+ #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:468
4402
  msgid "User Missing"
4403
  msgstr "یافت نشدن کاربر"
4404
 
4593
  "به یاد داشته باشید که در هنگام بلااستفاده بودن ، آن را غیرفعال کرده تا از "
4594
  "فراخوانی های مخرب جلوگیری به عمل آورید ."
4595
 
4596
+ #: ../includes/mycred-shortcodes.php:154
4597
  msgid "Leaderboard is empty."
4598
  msgstr "لیست برترین ها خالیست"
4599
 
4600
+ #: ../includes/mycred-shortcodes.php:425 ../includes/mycred-shortcodes.php:549
4601
  msgid "Amount missing!"
4602
  msgstr "مقدار موجود نیست"
4603
 
4604
+ #: ../includes/mycred-shortcodes.php:428 ../includes/mycred-shortcodes.php:557
4605
  msgid "Log Template Missing!"
4606
  msgstr "نمونه لوگ موجود نیست"
4607
 
4608
+ #: ../includes/mycred-shortcodes.php:491
4609
  msgid "Anchor missing URL!"
4610
  msgstr "آدرس اینترنتی از نوع Anchor ، در کدها موجود نیست !"
4611
 
4612
+ #: ../includes/mycred-shortcodes.php:553
4613
  msgid "User ID missing for recipient."
4614
  msgstr "شناسه ی کاربر گیرنده موجود نیست"
4615
 
4616
+ #: ../includes/mycred-shortcodes.php:608
4617
  msgid "Sent"
4618
  msgstr "ارسال شده"
4619
 
4620
+ #: ../includes/mycred-shortcodes.php:609
4621
  msgid "Error - Try Again"
4622
  msgstr "خطا - لطفا مجددا تلاش کنید"
4623
 
4624
+ #: ../includes/mycred-shortcodes.php:718
4625
  msgid "A video ID is required for this shortcode"
4626
  msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می باشد"
4627
 
4628
+ #: ../includes/mycred-shortcodes.php:864 ../includes/mycred-shortcodes.php:958
4629
  msgid "Point types not found."
4630
  msgstr ""
4631
 
4632
+ #: ../includes/mycred-shortcodes.php:870 ../includes/mycred-shortcodes.php:878 ..
4633
+ #: includes/mycred-shortcodes.php:970 ../includes/mycred-shortcodes.php:990
4634
  #, php-format
4635
  msgid "You are excluded from using %s."
4636
  msgstr ""
4637
 
4638
+ #: ../includes/mycred-shortcodes.php:874 ../includes/mycred-shortcodes.php:980
4639
  msgid "Your balance is too low to use this feature."
4640
  msgstr ""
4641
 
4642
+ #: ../includes/mycred-shortcodes.php:895
4643
  #, php-format
4644
  msgid "Convert <span>%s</span> to <span>%s</span>"
4645
  msgstr ""
4646
 
4647
+ #: ../includes/mycred-shortcodes.php:904
4648
  #, php-format
4649
  msgid "Your current %s balance"
4650
  msgstr ""
4651
 
4652
+ #: ../includes/mycred-shortcodes.php:912
4653
  #, php-format
4654
  msgid "Minimum %s"
4655
  msgstr ""
4656
 
4657
+ #: ../includes/mycred-shortcodes.php:916
4658
  #, php-format
4659
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4660
  msgstr ""
4661
 
4662
+ #: ../includes/mycred-shortcodes.php:922
4663
  msgid "Exchange"
4664
  msgstr ""
4665
 
4666
+ #: ../includes/mycred-shortcodes.php:1003
4667
  #, php-format
4668
  msgid "You must exchange at least %s!"
4669
  msgstr ""
4670
 
4671
+ #: ../includes/mycred-shortcodes.php:1025
4672
  #, php-format
4673
  msgid "Exchange from %s"
4674
  msgstr ""
4675
 
4676
+ #: ../includes/mycred-shortcodes.php:1037
4677
  #, php-format
4678
  msgid "Exchange to %s"
4679
  msgstr ""
4680
 
4681
+ #: ../includes/mycred-shortcodes.php:1045
4682
  #, php-format
4683
  msgid "You have successfully exchanged %s into %s."
4684
  msgstr ""
4979
  msgid "Give your users badges based on their interaction with your website."
4980
  msgstr ""
4981
 
4982
+ #: ../modules/mycred-module-addons.php:158
4983
+ msgid "Setup recurring payouts or offer / charge interest on user account balances."
4984
+ msgstr ""
4985
+
4986
  #: ../modules/mycred-module-addons.php:169
4987
  msgid ""
4988
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5313
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5314
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5315
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5316
+ #: 2645 ../modules/mycred-module-hooks.php:2674 ../plugins/mycred-hook-badgeOS.
5317
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5318
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5319
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
5375
  msgid "%plural% for viewing %s"
5376
  msgstr ""
5377
 
5378
+ #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2653
5379
+ #: ../modules/mycred-module-hooks.php:2682 ../plugins/mycred-hook-invite-anyone.
5380
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5381
  msgid "Limit"
5382
  msgstr "محدوده"
5466
  msgid "Custom tags: %url%, %title% or %id%."
5467
  msgstr ""
5468
 
5469
+ #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2756
5470
  msgid "Note!"
5471
  msgstr "نکته !"
5472
 
5550
  msgid "Link"
5551
  msgstr ""
5552
 
5553
+ #: ../modules/mycred-module-hooks.php:2639
5554
  msgid "Referring Visitors"
5555
  msgstr ""
5556
 
5557
+ #: ../modules/mycred-module-hooks.php:2663 ../modules/mycred-module-hooks.php:2692
5558
  msgid "The number of referrals each member can make. Use zero for unlimited."
5559
  msgstr ""
5560
 
5561
+ #: ../modules/mycred-module-hooks.php:2667 ../modules/mycred-module-hooks.php:2696
5562
  msgid "Referring Signups"
5563
  msgstr ""
5564
 
5565
+ #: ../modules/mycred-module-hooks.php:2671
5566
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5567
  msgstr ""
5568
 
5569
+ #: ../modules/mycred-module-hooks.php:2698
5570
  msgid "Registrations are disabled."
5571
  msgstr ""
5572
 
5573
+ #: ../modules/mycred-module-hooks.php:2705
5574
  msgid "Referral Links"
5575
  msgstr ""
5576
 
5577
+ #: ../modules/mycred-module-hooks.php:2709
5578
  msgid "Assign numeric referral IDs to each user."
5579
  msgstr ""
5580
 
5581
+ #: ../modules/mycred-module-hooks.php:2710 ../modules/mycred-module-hooks.php:2716
5582
  msgid "Example"
5583
  msgstr ""
5584
 
5585
+ #: ../modules/mycred-module-hooks.php:2715
5586
  msgid "Assign usernames as IDs for each user."
5587
  msgstr ""
5588
 
5589
+ #: ../modules/mycred-module-hooks.php:2719
5590
  msgid "IP Limit"
5591
  msgstr ""
5592
 
5593
+ #: ../modules/mycred-module-hooks.php:2723
5594
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5595
  msgstr ""
5596
 
5597
+ #: ../modules/mycred-module-hooks.php:2727 ../modules/mycred-module-hooks.php:2760
5598
  msgid "BuddyPress Profile"
5599
  msgstr ""
5600
 
5601
+ #: ../modules/mycred-module-hooks.php:2730
5602
  msgid "Insert Link in users Profile"
5603
  msgstr ""
5604
 
5605
+ #: ../modules/mycred-module-hooks.php:2731
5606
  msgid ""
5607
  "Option to inser the referral link in users profiles. Links will only be "
5608
  "visible to users viewing their own profiles or administrators."
5609
  msgstr ""
5610
 
5611
+ #: ../modules/mycred-module-hooks.php:2737
5612
  msgid "Leave empty to hide."
5613
  msgstr ""
5614
 
5615
+ #: ../modules/mycred-module-hooks.php:2740
5616
  msgid "Description"
5617
  msgstr ""
5618
 
5619
+ #: ../modules/mycred-module-hooks.php:2741
5620
  msgid "Optional description to insert under the link."
5621
  msgstr ""
5622
 
5623
+ #: ../modules/mycred-module-hooks.php:2753
5624
  msgid "Profile Positioning"
5625
  msgstr ""
5626
 
5627
+ #: ../modules/mycred-module-hooks.php:2755
5628
  msgid ""
5629
  "You can move around the referral link on your users profile by changing the "
5630
  "position. Increase to move up, decrease to move down."
5631
  msgstr ""
5632
 
5633
+ #: ../modules/mycred-module-hooks.php:2756
5634
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5635
  msgstr ""
5636
 
5637
+ #: ../modules/mycred-module-hooks.php:2762
5638
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5639
  msgstr ""
5640
 
5659
  msgid "Entries"
5660
  msgstr "داده های ورودی"
5661
 
5662
+ #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
5663
+ #: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:574
5664
  msgid "Export"
5665
  msgstr "خروجی گرفتن"
5666
 
5668
  msgid "Search results for"
5669
  msgstr "نتایج جستجو برای عبارت"
5670
 
5671
+ #: ../modules/mycred-module-log.php:378
5672
  #, php-format
5673
  msgid "%s Log"
5674
  msgstr ""
5675
 
5676
+ #: ../modules/mycred-module-log.php:506
5677
  msgid "Edit"
5678
  msgstr ""
5679
 
5680
+ #: ../modules/mycred-module-log.php:547
5681
  msgid "Time"
5682
  msgstr ""
5683
 
5684
+ #: ../modules/mycred-module-log.php:551
5685
  msgid "Current Log Entry"
5686
  msgstr ""
5687
 
5688
+ #: ../modules/mycred-module-log.php:553
5689
  msgid "The current saved log entry"
5690
  msgstr ""
5691
 
5692
+ #: ../modules/mycred-module-log.php:556
5693
  msgid "Adjust Log Entry"
5694
  msgstr ""
5695
 
5696
+ #: ../modules/mycred-module-log.php:558
5697
  msgid "The new log entry"
5698
  msgstr ""
5699
 
5700
+ #: ../modules/mycred-module-log.php:561
5701
  msgid "Update Log Entry"
5702
  msgstr ""
5703
 
5704
+ #: ../modules/mycred-module-log.php:628
5705
  #, php-format
5706
  msgid "My %s History"
5707
  msgstr ""
6414
  #, php-format
6415
  msgid "Awards %_plural% for users voting in polls."
6416
  msgstr "اهدای %_plural% برای کاربرانی که در نظرسنجی ها رای می دهند ."
 
lang/mycred-fr_FR.mo CHANGED
Binary file
lang/mycred-fr_FR.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 Jul 28 2014 16:21:19 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: French\n"
@@ -14,7 +14,7 @@ msgstr ""
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
16
  "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
17
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"s:1,2,3c;"
18
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
19
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
20
  "X-Poedit-Basepath: .\n"
@@ -41,8 +41,8 @@ msgstr "On les remercie"
41
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
42
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
43
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
44
- #: sell-content.php:364 ../addons/transfer/myCRED-addon-transfer.php:132 ..
45
- #: includes/mycred-shortcodes.php:605
46
  msgid "Processing..."
47
  msgstr "Chargement en cours..."
48
 
@@ -150,7 +150,7 @@ msgid "Once per day (reset at midnight)"
150
  msgstr "Une fois par jour (remise à zéro à minuit)"
151
 
152
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
153
- #: abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
154
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
155
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
@@ -176,8 +176,8 @@ msgstr "cliquez pour fermer"
176
  msgid "click to open"
177
  msgstr "cliquez pour ouvrir"
178
 
179
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-
180
- #: banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:849
181
  msgid "Settings Updated"
182
  msgstr "Configuration mise à jour"
183
 
@@ -382,147 +382,190 @@ msgstr ""
382
  msgid "in total"
383
  msgstr ""
384
 
385
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-
386
- #: banking.php:43 ../addons/banking/myCRED-addon-banking.php:44
387
  msgid "Banking"
388
  msgstr "Banque"
389
 
390
- #: ../addons/banking/myCRED-addon-banking.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
391
  msgid "Compound Interest"
392
  msgstr "Appliquer des Intérêts"
393
 
394
- #: ../addons/banking/myCRED-addon-banking.php:104
395
  #, php-format
396
- msgid ""
397
- "Apply an interest rate on your users %_plural% balances. Interest rate is "
398
- "annual and is compounded daily as long as this service is enabled. Positive "
399
- "interest rate leads to users gaining %_plural% while a negative interest "
400
- "rate will to users loosing %_plural%."
401
  msgstr ""
402
- "Appliquez un taux d'intérêt aux comptes de %_plural% de vos utilisateurs. Le "
403
- "taux est annuel et il est recomposé quotidiennement tant que ce service est "
404
- "activé. Un taux d'intérêt positif permettra de créditer les utilisateurs en "
405
- "%_plural%. Si le taux est négatif, ils perdront des %_plural%."
406
 
407
- #: ../addons/banking/myCRED-addon-banking.php:110
408
  msgid "Recurring Payouts"
409
  msgstr "Paiements répétés"
410
 
411
- #: ../addons/banking/myCRED-addon-banking.php:111
412
- #, php-format
413
- msgid ""
414
- "Give your users %_plural% on a regular basis with the option to set the "
415
- "number of times you want this payout to run (cycles)."
416
  msgstr ""
417
- "Attribuez régulièrement des %_plural% à vos utilisateurs, en fixant le cycle "
418
- "de répétition pour les créditer."
419
 
420
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-
421
- #: addon-buy-creds.php:839 ../addons/buy-creds/myCRED-addon-buy-creds.php:935 ..
422
- #: includes/mycred-admin.php:573 ../includes/mycred-network.php:148 ..
423
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
424
- #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:579 ..
425
  #: modules/mycred-module-settings.php:312
426
  msgid "Access Denied"
427
  msgstr "Accès refusé"
428
 
429
- #: ../addons/banking/myCRED-addon-banking.php:167
430
  #, php-format
431
  msgid "%s Banking"
432
  msgstr "Paiement %s"
433
 
434
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.
435
- #: php:158
436
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
437
  msgstr ""
438
- "Paramétrez les paiements réguliers ou offres / pénalités et intérêts "
439
- "relatifs aux soldes de comptes de vos utilisateurs."
440
 
441
- #: ../addons/banking/myCRED-addon-banking.php:171
442
  msgid "WP-Cron deactivation detected!"
443
  msgstr "Détection de la désactivation de WP-Cron !"
444
 
445
- #: ../addons/banking/myCRED-addon-banking.php:172
446
  msgid "Warning! This add-on requires WP - Cron to work."
447
  msgstr "Attention ! Pour utiliser ce module, WP-Cron est obligatoire."
448
 
449
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-
450
- #: addon-buy-creds.php:873 ../modules/mycred-module-hooks.php:196
451
  msgid "Enable"
452
  msgstr "Activer"
453
 
454
- #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
455
  #: php:211
456
  msgid "Update Changes"
457
  msgstr "Enregistrer les modifications"
458
 
459
- #: ../addons/banking/abstracts/mycred-abstract-service.php:57
460
- msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
461
- msgstr ""
462
- "La fonction myCRED_Service::run() doit &ecirc;tre substitu&eacute;e par une "
463
- "sous-classe."
464
-
465
- #: ../addons/banking/abstracts/mycred-abstract-service.php:66
466
  msgid "This Service has no settings"
467
  msgstr "Ce système ne dispose d'aucun réglage"
468
 
469
- #: ../addons/banking/abstracts/mycred-abstract-service.php:143
470
  msgid "Hourly"
471
  msgstr "Horaire"
472
 
473
- #: ../addons/banking/abstracts/mycred-abstract-service.php:147
474
  msgid "Daily"
475
  msgstr "Quotidienne"
476
 
477
- #: ../addons/banking/abstracts/mycred-abstract-service.php:151
478
  msgid "Weekly"
479
  msgstr "Hebdomadaire"
480
 
481
- #: ../addons/banking/abstracts/mycred-abstract-service.php:155
482
  msgid "Monthly"
483
  msgstr "Mensuel"
484
 
485
- #: ../addons/banking/abstracts/mycred-abstract-service.php:159
486
  msgid "Quarterly"
487
  msgstr "Trimestrielle"
488
 
489
- #: ../addons/banking/abstracts/mycred-abstract-service.php:163
490
  msgid "Semiannually"
491
  msgstr "Biannuelle"
492
 
493
- #: ../addons/banking/abstracts/mycred-abstract-service.php:167
494
  msgid "Annually"
495
  msgstr "Annuelle"
496
 
497
- #: ../addons/banking/services/mycred-bank-service-interest.php:25
 
 
 
 
 
 
 
 
 
 
 
 
498
  msgid "%plural% interest rate payment"
499
  msgstr "Versement de %_plural% d'intérêts"
500
 
501
- #: ../addons/banking/services/mycred-bank-service-interest.php:275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
502
  msgid "Interest Rate"
503
  msgstr "Taux d'intérêt"
504
 
505
- #: ../addons/banking/services/mycred-bank-service-interest.php:282
506
- msgid "Payed / Charged"
507
- msgstr "Payé / Facturé"
508
-
509
- #: ../addons/banking/services/mycred-bank-service-interest.php:288
510
- msgid "The interest rate can be either positive or negative and is compounded daily."
511
  msgstr ""
512
- "Le taux d'intérêt est recalculé quotidiennement et peut être positif ou "
513
- "négatif."
514
 
515
- #: ../addons/banking/services/mycred-bank-service-interest.php:291 ..
516
- #: addons/coupons/myCRED-addon-coupons.php:392
517
- msgid "Minimum Balance"
518
- msgstr "Solde minimum"
519
 
520
- #: ../addons/banking/services/mycred-bank-service-interest.php:295
521
- msgid "The minimum requires balance for interest to apply."
522
- msgstr "Le solde minimum pour l'application d'intérêts"
 
523
 
524
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ..
525
- #: addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-
526
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
527
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
528
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
@@ -540,95 +583,119 @@ msgstr "Le solde minimum pour l'application d'intérêts"
540
  msgid "Log Template"
541
  msgstr "Texte à afficher"
542
 
543
- #: ../addons/banking/services/mycred-bank-service-interest.php:305 ..
544
- #: addons/banking/services/mycred-bank-service-payouts.php:259
545
- msgid "Run Time"
546
- msgstr "Délai d'exécution"
 
547
 
548
- #: ../addons/banking/services/mycred-bank-service-interest.php:309 ..
549
- #: addons/banking/services/mycred-bank-service-payouts.php:263
550
- msgid ""
551
- "For large websites, if you are running into time out issues during payouts, "
552
- "you can set the number of seconds a process can run. Use zero for unlimited, "
553
- "but be careful especially if you are on a shared server."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
554
  msgstr ""
555
- "Si vous rencontrez des problèmes d'exécution pendant les paiements sur un "
556
- "gros site, vous pouvez définir le nombre de secondes alloué à l'exécution du "
557
- "processus. Indiquez 0 pour un nombre illimité. Dans ce cas, soyez "
558
- "particulièrement prudent si vous êtes sur un hébergement mutualisé."
559
 
560
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
561
  msgid "Daily %_plural%"
562
  msgstr "%plural% quotidiens"
563
 
564
- #: ../addons/banking/services/mycred-bank-service-payouts.php:214
565
- msgid "Not yet run"
566
- msgstr "N'est pas en service"
 
 
 
 
 
 
567
 
568
- #: ../addons/banking/services/mycred-bank-service-payouts.php:219
 
 
 
 
569
  msgid "Pay Users"
570
  msgstr "Payer les Utilisateurs"
571
 
572
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
573
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
574
- #: creds.php:1520 ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ..
575
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
576
- #: includes/mycred-admin.php:726 ../includes/mycred-admin.php:771 ..
577
- #: includes/mycred-shortcodes.php:908
578
  msgid "Amount"
579
  msgstr "Montant"
580
 
581
- #: ../addons/banking/services/mycred-bank-service-payouts.php:224
582
- msgid "Can not be zero."
583
- msgstr "Ne peut être zéro."
584
-
585
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ..
586
- #: addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-
587
- #: module-hooks.php:2113
588
  msgid "Interval"
589
  msgstr "Intervalle"
590
 
591
- #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ..
592
- #: addons/banking/services/mycred-bank-service-payouts.php:242
593
  msgid "Cycles"
594
  msgstr "Périodicité"
595
 
596
- #: ../addons/banking/services/mycred-bank-service-payouts.php:235
597
  msgid "Set to -1 for unlimited"
598
  msgstr "Indiquez -1 pour illimité"
599
 
600
- #: ../addons/banking/services/mycred-bank-service-payouts.php:238
601
- msgid "Last Run / Activated"
602
- msgstr "Dernière activité / Activé"
603
-
604
- #: ../addons/banking/services/mycred-bank-service-payouts.php:241
605
- msgid ""
606
- "Select how often you want to award %_plural%. Note that when this service is "
607
- "enabled, the first payout will be in the beginning of the next period. So "
608
- "with a \"Daily\" interval, the first payout will occur first thing in the "
609
- "morning."
610
- msgstr ""
611
- "Choisissez le nombre de fois que vous voulez attribuer des %_plural%. Notez "
612
- "que si ce service est activé, le premier paiement ne se fera qu'au début de "
613
- "la période suivante. Par exemple, si vous choissez \"Quotidiennement\", il ne "
614
- "sera effectué que le lendemain matin."
615
-
616
- #: ../addons/banking/services/mycred-bank-service-payouts.php:242
617
- msgid ""
618
- "Cycles let you choose how many intervals this service should run. Each time "
619
- "a cycle runs, the value will decrease until it hits zero, in which case this "
620
- "service will deactivate itself. Use -1 to run unlimited times."
621
- msgstr ""
622
- "Les cycles vous permettent de choisir l'intervalle d'exécution du service. "
623
- "Après chaque cycle, la valeur décroitra jusqu'à atteindre zéro, auquel cas "
624
- "le service se désactivera de lui-même. Utilisez -1 pour un fonctionnement "
625
- "perpétuel."
626
-
627
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
628
  msgid "Important"
629
  msgstr "Important"
630
 
631
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
632
  msgid ""
633
  "You can always stop payouts by deactivating this service. Just remember that "
634
  "if you deactivate while there are cycles left, this service will continue on "
@@ -639,19 +706,6 @@ msgstr ""
639
  "service reprendra à ce stade lorque vous le réactiverez. Indiquez zéro pour "
640
  "réinitialiser les cycles."
641
 
642
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
643
- #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
644
- msgid "Excludes"
645
- msgstr "Exclure"
646
-
647
- #: ../addons/banking/services/mycred-bank-service-payouts.php:249
648
- msgid ""
649
- "Comma separated list of user IDs to exclude from this service. No spaces "
650
- "allowed!"
651
- msgstr ""
652
- "Liste des utilisateurs à exclure. Séparez les ID par une virgule. Espaces "
653
- "interdits !"
654
-
655
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
656
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
657
  msgid "Payment Gateways"
@@ -677,7 +731,7 @@ msgid "Edit Pending Payment"
677
  msgstr ""
678
 
679
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
680
- #: addon-buy-creds.php:1631
681
  msgid "No pending payments found"
682
  msgstr ""
683
 
@@ -686,23 +740,23 @@ msgid "Not found in Trash"
686
  msgstr ""
687
 
688
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
689
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595
690
  msgid "Transaction ID"
691
  msgstr "ID de la transaction"
692
 
693
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
694
- #: addon-buy-creds.php:984
695
  msgid "Buyer"
696
  msgstr ""
697
 
698
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
699
- #: addon-buy-creds.php:1598 ../addons/buy-creds/abstracts/mycred-abstract-payment-
700
  #: gateway.php:563
701
  msgid "Cost"
702
  msgstr "Prix"
703
 
704
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
705
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1596 ..
706
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
707
  msgid "Gateway"
708
  msgstr "Service"
@@ -720,14 +774,14 @@ msgid "buyCRED Purchase Log"
720
  msgstr "Journal d'achat buyCRED"
721
 
722
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
723
- #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:845
724
  msgid "Purchase Log"
725
  msgstr "Journal d'achat"
726
 
727
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
728
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
729
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
730
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:416
731
  msgid "Payments"
732
  msgstr "Paiements"
733
 
@@ -804,7 +858,7 @@ msgid "Allow users to buy %_plural% for content authors."
804
  msgstr "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
805
 
806
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
807
- #: hooks.php:2748
808
  msgid "Available Shortcodes"
809
  msgstr "Shortcodes disponibles"
810
 
@@ -813,158 +867,153 @@ msgstr "Shortcodes disponibles"
813
  msgid "%s Exchange Rate"
814
  msgstr ""
815
 
816
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:759 ../addons/sell-
817
- #: content/myCRED-addon-sell-content.php:113
818
- msgid "Leave empty to use the default value."
819
- msgstr ""
820
-
821
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
822
  msgid "Save Exchange Rates"
823
  msgstr ""
824
 
825
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
826
  msgid "Exchange rate override saved"
827
  msgstr ""
828
 
829
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:827
830
  msgid "Payment completed"
831
  msgstr ""
832
 
833
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
834
  #, php-format
835
  msgid "%s Payment Gateways"
836
  msgstr "%s Services de Paiements"
837
 
838
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845 ../addons/buy-creds/myCRED-
839
- #: addon-buy-creds.php:992
840
  msgid "buyCRED Settings"
841
  msgstr "Configuration buyCRED"
842
 
843
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
844
  msgid "Test Mode"
845
  msgstr "Mode Test"
846
 
847
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
848
  msgid "Enabled"
849
  msgstr "Activé"
850
 
851
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:871
852
  msgid "Disabled"
853
  msgstr "Désactivé"
854
 
855
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
856
  msgid "Sandbox Mode"
857
  msgstr "Mode bac à sable"
858
 
859
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:884
860
  msgid "Enable for test purchases."
861
  msgstr "Activez pour faire des tests d'achats factices."
862
 
863
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:901 ../addons/gateway/event-
864
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
865
  msgid "Update Settings"
866
  msgstr "Enregistrer la configuration"
867
 
868
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
869
  msgid "More Gateways"
870
  msgstr ""
871
 
872
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
873
  #: 634
874
  msgid "Date"
875
  msgstr "Daté"
876
 
877
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
878
  msgid "Payed"
879
  msgstr "Payé"
880
 
881
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
882
  msgid "<strong>buy</strong>CRED Purchase Log"
883
  msgstr "Relevé des achats <strong>buy</strong>CRED"
884
 
885
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
886
  #: booking/mycred-eventespresso3.php:367
887
  msgid "Gateway Settings"
888
  msgstr "Configuration du service de paiement"
889
 
890
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1168 ../addons/sell-
891
- #: content/myCRED-addon-sell-content.php:1184
892
  msgid "No purchases found"
893
  msgstr "Aucun achat trouvé"
894
 
895
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1238 ../addons/buy-creds/myCRED-
896
- #: addon-buy-creds.php:1351
897
  msgid "This Add-on needs to setup before you can use this shortcode."
898
  msgstr ""
899
  "Ce module doit d'abord être paramétré avant que vous ne puissiez utiliser ce "
900
  "shortcode."
901
 
902
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1257 ../addons/buy-creds/myCRED-
903
- #: addon-buy-creds.php:1370
904
  msgid "No gateways installed."
905
  msgstr "Aucun systme de paiement n'est installé."
906
 
907
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1258 ../addons/buy-creds/myCRED-
908
- #: addon-buy-creds.php:1371
909
  msgid "Gateway does not exist."
910
  msgstr "Le service de paiement n'existe pas."
911
 
912
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1306
913
  msgid "Yourself"
914
  msgstr "Vous-même"
915
 
916
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1372
917
  msgid "No active gateways found."
918
  msgstr "Aucun service de paiement n'a été trouvé."
919
 
920
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1373
921
  msgid "The selected gateway is not active."
922
  msgstr "Ce service de paiement n'est pas activé"
923
 
924
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1420
925
  #, php-format
926
  msgid "Buy with %gateway%"
927
  msgstr "Régler avec %gateway%"
928
 
929
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1426 ../addons/sell-
930
  #: content/myCRED-addon-sell-content.php:44
931
  msgid "Buy Now"
932
  msgstr "Acheter maintenant"
933
 
934
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1471
935
  msgid "No users found"
936
  msgstr "Aucun membre n'a été trouvé"
937
 
938
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1481
939
  msgid "To"
940
  msgstr "à"
941
 
942
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1498
943
  msgid "Select Amount"
944
  msgstr "Sélectionnez le montant"
945
 
946
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1522
947
  msgid "min."
948
  msgstr "mini."
949
 
950
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1530
951
  msgid "Select Gateway"
952
  msgstr "Sélectionnez le service de paiement"
953
 
954
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1571 ../addons/gateway/event-
955
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
956
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
957
  #: php:35
958
  msgid "Pay Now"
959
  msgstr "Payer maintenant"
960
 
961
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1572 ../includes/mycred-install.
962
  #: php:515
963
  msgid "Cancel"
964
  msgstr "Annuler"
965
 
966
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ../addons/ranks/myCRED-
967
- #: addon-ranks.php:990 ../modules/mycred-module-log.php:372 ../modules/mycred-
968
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
969
  msgid "Actions"
970
  msgstr "Actions"
@@ -1004,12 +1053,12 @@ msgid "Cancel purchase"
1004
  msgstr "Achat annulé"
1005
 
1006
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1007
- #: includes/mycred-admin.php:720 ../includes/mycred-admin.php:757
1008
  msgid "required"
1009
  msgstr "obligatoire"
1010
 
1011
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1012
- #: includes/mycred-admin.php:722 ../includes/mycred-admin.php:759
1013
  msgid "optional"
1014
  msgstr "optionnel"
1015
 
@@ -1414,7 +1463,7 @@ msgstr "Page de contrôle"
1414
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1415
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1416
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1417
- #: modules/mycred-module-hooks.php:2713
1418
  msgid "Title"
1419
  msgstr "Titre"
1420
 
@@ -1661,7 +1710,7 @@ msgstr "Ce bon vaut %plural%"
1661
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1662
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1663
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1664
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:404 ..
1665
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1666
  #: includes/importers/mycred-cubepoints.php:365
1667
  msgid "Point Type"
@@ -2070,8 +2119,8 @@ msgid "Sent To"
2070
  msgstr "Envoyer à"
2071
 
2072
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2073
- #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:766 ..
2074
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:544
2075
  msgid "User"
2076
  msgstr "Utilisateur"
2077
 
@@ -2198,7 +2247,7 @@ msgstr ""
2198
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2199
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2200
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2201
- #: php:412 ../includes/mycred-admin.php:614 ../includes/mycred-admin.php:767
2202
  msgid "Current Balance"
2203
  msgstr "Solde actuel"
2204
 
@@ -2324,7 +2373,7 @@ msgstr "Combien vaut 1 %_singular% en %currency% ?"
2324
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2325
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2326
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2327
- #: php:578 ../includes/mycred-shortcodes.php:913
2328
  msgid "Exchange Rate"
2329
  msgstr "Taux de change"
2330
 
@@ -2557,10 +2606,6 @@ msgstr "Template de paiements"
2557
  msgid "How much is 1 %s worth in %s"
2558
  msgstr "Combien vaut 1 %s dans %s"
2559
 
2560
- #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2561
- msgid "Payout"
2562
- msgstr "Paiement"
2563
-
2564
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2565
  msgid "Instructions"
2566
  msgstr "Instructions"
@@ -2635,8 +2680,8 @@ msgstr "Titre à afficher pour les rapports et les journaux d'activités"
2635
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2636
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2637
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2638
- #: content/myCRED-addon-sell-content.php:452 ../addons/sell-content/myCRED-addon-
2639
- #: sell-content.php:662
2640
  msgid "Button Label"
2641
  msgstr "Intitulé du bouton"
2642
 
@@ -2649,8 +2694,8 @@ msgstr "Bouton de paiement"
2649
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2650
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2651
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2652
- #: content/myCRED-addon-sell-content.php:443 ../addons/sell-content/myCRED-addon-
2653
- #: sell-content.php:658
2654
  msgid "Price"
2655
  msgstr "Prix"
2656
 
@@ -2672,12 +2717,12 @@ msgid "Log"
2672
  msgstr "Vue d&#39;ensemble"
2673
 
2674
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2675
- #: includes/mycred-admin.php:735 ../includes/mycred-admin.php:772
2676
  msgid "Log Entry"
2677
  msgstr "Journal d'activité"
2678
 
2679
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2680
- #: content/myCRED-addon-sell-content.php:466
2681
  msgid "Templates"
2682
  msgstr "Affichage des éléments"
2683
 
@@ -2755,7 +2800,7 @@ msgid "Reject"
2755
  msgstr "Rejeter"
2756
 
2757
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2758
- #: modules/mycred-module-log.php:504 ../modules/mycred-module-settings.php:488 ..
2759
  #: modules/mycred-module-settings.php:507
2760
  msgid "Delete"
2761
  msgstr "Suppirmer"
@@ -3226,9 +3271,9 @@ msgid "No users found with this rank"
3226
  msgstr "Aucun utilisateur avec ce classement n'a été trouvé."
3227
 
3228
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3229
- #: shortcodes.php:424 ../includes/mycred-shortcodes.php:427 ../includes/mycred-
3230
- #: shortcodes.php:489 ../includes/mycred-shortcodes.php:547 ../includes/mycred-
3231
- #: shortcodes.php:551 ../includes/mycred-shortcodes.php:555
3232
  msgid "error"
3233
  msgstr "erreur"
3234
 
@@ -3248,44 +3293,44 @@ msgstr ""
3248
  msgid "Save Profit Share"
3249
  msgstr ""
3250
 
3251
- #: ../addons/sell-content/myCRED-addon-sell-content.php:158
3252
  msgid "Profit Share override saved"
3253
  msgstr ""
3254
 
3255
- #: ../addons/sell-content/myCRED-addon-sell-content.php:320
3256
  msgid "You can not buy this content."
3257
  msgstr "Vous ne pouvez pas acheter ce contenu."
3258
 
3259
- #: ../addons/sell-content/myCRED-addon-sell-content.php:365
3260
  msgid "Error. Try Again"
3261
  msgstr "Erreur, veuillez recommencer."
3262
 
3263
- #: ../addons/sell-content/myCRED-addon-sell-content.php:387
3264
  msgid "No Payout. Just charge."
3265
  msgstr "Pas de paiement. Uniquement facturer."
3266
 
3267
- #: ../addons/sell-content/myCRED-addon-sell-content.php:388
3268
  msgid "Pay Content Author."
3269
  msgstr "Payer l'auteur du contenu"
3270
 
3271
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394 ../includes/mycred-
3272
  #: overview.php:141 ../includes/mycred-overview.php:148
3273
  msgid "Sell Content"
3274
  msgstr "Vendre du contenu"
3275
 
3276
- #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3277
  msgid "Post Types"
3278
  msgstr "Post Types"
3279
 
3280
- #: ../addons/sell-content/myCRED-addon-sell-content.php:400
3281
  msgid "Comma separated list of post types that can be sold."
3282
  msgstr "Liste des post types, séparés par une virgule, pouvant être vendus"
3283
 
3284
- #: ../addons/sell-content/myCRED-addon-sell-content.php:430
3285
  msgid "Percentage to pay Author"
3286
  msgstr "Pourcentage à verser à l'auteur"
3287
 
3288
- #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3289
  msgid ""
3290
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3291
  "authors are not paid."
@@ -3293,31 +3338,31 @@ msgstr ""
3293
  "Pourcentage du prix à verser à l'auteur. Ne peut être zéro et sera ignoré si "
3294
  "les auteurs ne sont pas payables."
3295
 
3296
- #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3297
  msgid "Defaults"
3298
  msgstr "Par défaut"
3299
 
3300
- #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3301
  msgid "Allow authors to change price."
3302
  msgstr "Autoriser les auteurs à modifier le prix"
3303
 
3304
- #: ../addons/sell-content/myCRED-addon-sell-content.php:457
3305
  msgid "Allow authors to change button label."
3306
  msgstr "Autoriser les auteurs à modifier l'étiquette du bouton"
3307
 
3308
- #: ../addons/sell-content/myCRED-addon-sell-content.php:461
3309
  msgid "Purchases expire after"
3310
  msgstr "L'achat expire après"
3311
 
3312
- #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3313
  msgid "Use zero for permanent sales."
3314
  msgstr "Indiquez zéro pour des ventes permanentes"
3315
 
3316
- #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3317
  msgid "For Visitors"
3318
  msgstr ""
3319
 
3320
- #: ../addons/sell-content/myCRED-addon-sell-content.php:474
3321
  #, php-format
3322
  msgid ""
3323
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3326,69 +3371,69 @@ msgstr ""
3326
  "N&#39;utilisez <strong>pas</strong> %buy_button% sur ce template, puisque "
3327
  "l&#39;utilisateur doit &ecirc;tre connect&eacute; pour acheter du contenu !"
3328
 
3329
- #: ../addons/sell-content/myCRED-addon-sell-content.php:479
3330
  msgid "For Members"
3331
  msgstr ""
3332
 
3333
- #: ../addons/sell-content/myCRED-addon-sell-content.php:484 ../addons/sell-
3334
- #: content/myCRED-addon-sell-content.php:494
3335
  #, php-format
3336
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3337
  msgstr ""
3338
  "Votre template doit contenir le mot-cl&eacute; %buy_button% pour que l&#39;"
3339
  "achat fonctionne !"
3340
 
3341
- #: ../addons/sell-content/myCRED-addon-sell-content.php:489
3342
  msgid "For members that can not afford to buy"
3343
  msgstr ""
3344
 
3345
- #: ../addons/sell-content/myCRED-addon-sell-content.php:498
3346
  msgid "Log template for Purchases"
3347
  msgstr "Template de connexion pour les achats"
3348
 
3349
- #: ../addons/sell-content/myCRED-addon-sell-content.php:505
3350
  msgid "Log template for Sales"
3351
  msgstr "Template de connexion pour les ventes"
3352
 
3353
- #: ../addons/sell-content/myCRED-addon-sell-content.php:557
3354
  #, php-format
3355
  msgid "%s Sell This"
3356
  msgstr "%s a vendu ceci"
3357
 
3358
- #: ../addons/sell-content/myCRED-addon-sell-content.php:611
3359
  #, php-format
3360
  msgid "%s Sell Content needs to be setup before you can use this feature."
3361
  msgstr ""
3362
  "%s Vendre du contenu doit être paramétré avant que vous ne puissiez utiliser "
3363
  "cette fonctionnalité."
3364
 
3365
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3366
  msgid "Setup add-on"
3367
  msgstr "Configuration du module"
3368
 
3369
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3370
  msgid "Lets do it"
3371
  msgstr "Faisons cela"
3372
 
3373
- #: ../addons/sell-content/myCRED-addon-sell-content.php:652
3374
  #, php-format
3375
  msgid "Enable sale of this %s"
3376
  msgstr ""
3377
 
3378
- #: ../addons/sell-content/myCRED-addon-sell-content.php:666
3379
  msgid "Purchase expires after"
3380
  msgstr "Les achats expirent après"
3381
 
3382
- #: ../addons/sell-content/myCRED-addon-sell-content.php:992
3383
  msgid "Thank you for your purchase!"
3384
  msgstr "Merci pour votre achat"
3385
 
3386
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1080 ../addons/sell-
3387
- #: content/myCRED-addon-sell-content.php:1166
3388
  msgid "The following content is set for sale:"
3389
  msgstr "Le contenu suivant est prévu à la vente:"
3390
 
3391
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1226
3392
  msgid "Purchased"
3393
  msgstr "Acheté"
3394
 
@@ -3401,7 +3446,7 @@ msgid "You have exceeded your %limit% transfer limit."
3401
  msgstr "Vous avez dépass&eacute; votre limite de transfert %limit%."
3402
 
3403
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3404
- #: php:2295
3405
  msgid "Transfer"
3406
  msgstr "Transférer"
3407
 
@@ -3440,7 +3485,7 @@ msgstr ""
3440
  "autorisé avant qu'il ne soit activé."
3441
 
3442
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3443
- #: php:1010
3444
  msgid "Insufficient Funds. Please try a lower amount."
3445
  msgstr ""
3446
 
@@ -3668,97 +3713,92 @@ msgstr "Le montant ne peut pas être zéro"
3668
  msgid "Failed to update this uses balance."
3669
  msgstr "&Eacute;chec de la mise à jour de ce solde"
3670
 
3671
- #: ../includes/mycred-admin.php:404
3672
  msgid "Excluded"
3673
  msgstr "Exclus"
3674
 
3675
- #: ../includes/mycred-admin.php:414
3676
  #, php-format
3677
  msgid "Total: %s"
3678
  msgstr ""
3679
 
3680
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:254 ..
3681
- #: modules/mycred-module-log.php:255
3682
- msgid "History"
3683
- msgstr "Mes points"
3684
-
3685
- #: ../includes/mycred-admin.php:423
3686
  msgid "Adjust"
3687
  msgstr "Ajustement"
3688
 
3689
- #: ../includes/mycred-admin.php:461 ../includes/mycred-admin.php:462
3690
  msgid "Edit Balance"
3691
  msgstr ""
3692
 
3693
- #: ../includes/mycred-admin.php:480
3694
  msgid "Profile"
3695
  msgstr ""
3696
 
3697
- #: ../includes/mycred-admin.php:487
3698
  msgid "Extended Profile"
3699
  msgstr ""
3700
 
3701
- #: ../includes/mycred-admin.php:577
3702
  #, php-format
3703
  msgid "This user is excluded from using %s"
3704
  msgstr ""
3705
 
3706
- #: ../includes/mycred-admin.php:600
3707
  msgid "Edit User"
3708
  msgstr ""
3709
 
3710
- #: ../includes/mycred-admin.php:602
3711
  msgctxt "user"
3712
  msgid "Add New"
3713
  msgstr ""
3714
 
3715
- #: ../includes/mycred-admin.php:604
3716
  msgctxt "user"
3717
  msgid "Add Existing"
3718
  msgstr ""
3719
 
3720
- #: ../includes/mycred-admin.php:615
3721
  #, php-format
3722
  msgid "Total %s Accumulated"
3723
  msgstr ""
3724
 
3725
- #: ../includes/mycred-admin.php:616
3726
  #, php-format
3727
  msgid "Total %s Spent"
3728
  msgstr ""
3729
 
3730
- #: ../includes/mycred-admin.php:627
3731
  msgid "View History"
3732
  msgstr ""
3733
 
3734
- #: ../includes/mycred-admin.php:628
3735
  msgid "Exclude User"
3736
  msgstr ""
3737
 
3738
- #: ../includes/mycred-admin.php:632
3739
  msgid "Adjust Balance"
3740
  msgstr ""
3741
 
3742
- #: ../includes/mycred-admin.php:641
3743
  msgid ""
3744
  "Warning! Excluding this user will result in their balance being deleted "
3745
  "along with any entries currently in your log! This can not be undone!"
3746
  msgstr ""
3747
 
3748
- #: ../includes/mycred-admin.php:699
3749
  #, php-format
3750
  msgid "%singular% balance"
3751
  msgstr "solde de %singular%"
3752
 
3753
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:773
3754
  msgid "Update Balance"
3755
  msgstr "Mettre à jour le solde"
3756
 
3757
- #: ../includes/mycred-admin.php:765
3758
  msgid "ID"
3759
  msgstr "ID"
3760
 
3761
- #: ../includes/mycred-admin.php:771
3762
  msgid "A positive or negative value"
3763
  msgstr "Une valeur positive ou négative"
3764
 
@@ -3810,298 +3850,298 @@ msgstr "et"
3810
  msgid "Available Template Tags:"
3811
  msgstr "Mots clés de template disponibles"
3812
 
3813
- #: ../includes/mycred-functions.php:1655
3814
  msgid "Entire Log"
3815
  msgstr "Tout le journal"
3816
 
3817
- #: ../includes/mycred-functions.php:1660 ../includes/mycred-functions.php:1661
3818
  msgid "Displayed Rows"
3819
  msgstr "Colonnes affichées"
3820
 
3821
- #: ../includes/mycred-functions.php:1668
3822
  msgid "Search Results"
3823
  msgstr "Résultats de la recherche"
3824
 
3825
- #: ../includes/mycred-functions.php:1669
3826
  msgid "My Entire Log"
3827
  msgstr "Mon journal complet"
3828
 
3829
- #: ../includes/mycred-functions.php:1790
3830
  msgid "ref empty"
3831
  msgstr "ref est vide"
3832
 
3833
- #: ../includes/mycred-functions.php:1798
3834
  msgid "incorrect user id format"
3835
  msgstr "format du ID utilisateur incorrect"
3836
 
3837
- #: ../includes/mycred-functions.php:1811
3838
  msgid "incorrect unix timestamp (from):"
3839
  msgstr "Horodatage unix incorrect (from):"
3840
 
3841
- #: ../includes/mycred-functions.php:1820
3842
  msgid "incorrect unix timestamp (to):"
3843
  msgstr "Horodatage unix incorrect (to):"
3844
 
3845
- #: ../includes/mycred-functions.php:2182
3846
  msgid "Website Registration"
3847
  msgstr ""
3848
 
3849
- #: ../includes/mycred-functions.php:2183
3850
  msgid "Website Visit"
3851
  msgstr ""
3852
 
3853
- #: ../includes/mycred-functions.php:2184
3854
  msgid "Viewing Content (Member)"
3855
  msgstr ""
3856
 
3857
- #: ../includes/mycred-functions.php:2185
3858
  msgid "Viewing Content (Author)"
3859
  msgstr ""
3860
 
3861
- #: ../includes/mycred-functions.php:2186
3862
  msgid "Logging in"
3863
  msgstr ""
3864
 
3865
- #: ../includes/mycred-functions.php:2187
3866
  msgid "Publishing Content"
3867
  msgstr ""
3868
 
3869
- #: ../includes/mycred-functions.php:2188 ../modules/mycred-module-hooks.php:1421
3870
  msgid "Approved Comment"
3871
  msgstr "Commentaire approuvé"
3872
 
3873
- #: ../includes/mycred-functions.php:2189
3874
  msgid "Unapproved Comment"
3875
  msgstr ""
3876
 
3877
- #: ../includes/mycred-functions.php:2190
3878
  msgid "SPAM Comment"
3879
  msgstr ""
3880
 
3881
- #: ../includes/mycred-functions.php:2191
3882
  msgid "Deleted Comment"
3883
  msgstr ""
3884
 
3885
- #: ../includes/mycred-functions.php:2192
3886
  msgid "Link Click"
3887
  msgstr ""
3888
 
3889
- #: ../includes/mycred-functions.php:2193
3890
  msgid "Watching Video"
3891
  msgstr ""
3892
 
3893
- #: ../includes/mycred-functions.php:2194
3894
  msgid "Visitor Referral"
3895
  msgstr ""
3896
 
3897
- #: ../includes/mycred-functions.php:2195
3898
  msgid "Signup Referral"
3899
  msgstr ""
3900
 
3901
- #: ../includes/mycred-functions.php:2199
3902
  msgid "New Profile Update"
3903
  msgstr ""
3904
 
3905
- #: ../includes/mycred-functions.php:2200
3906
  msgid "Avatar Upload"
3907
  msgstr ""
3908
 
3909
- #: ../includes/mycred-functions.php:2201
3910
  msgid "New Friendship"
3911
  msgstr ""
3912
 
3913
- #: ../includes/mycred-functions.php:2202
3914
  msgid "Ended Friendship"
3915
  msgstr ""
3916
 
3917
- #: ../includes/mycred-functions.php:2203
3918
  msgid "New Profile Comment"
3919
  msgstr ""
3920
 
3921
- #: ../includes/mycred-functions.php:2204
3922
  msgid "Profile Comment Deletion"
3923
  msgstr ""
3924
 
3925
- #: ../includes/mycred-functions.php:2205
3926
  msgid "New Message"
3927
  msgstr ""
3928
 
3929
- #: ../includes/mycred-functions.php:2206
3930
  msgid "Sending Gift"
3931
  msgstr ""
3932
 
3933
- #: ../includes/mycred-functions.php:2207
3934
  msgid "New Group"
3935
  msgstr ""
3936
 
3937
- #: ../includes/mycred-functions.php:2208
3938
  msgid "Deleted Group"
3939
  msgstr ""
3940
 
3941
- #: ../includes/mycred-functions.php:2209
3942
  msgid "New Group Forum Topic"
3943
  msgstr ""
3944
 
3945
- #: ../includes/mycred-functions.php:2210
3946
  msgid "Edit Group Forum Topic"
3947
  msgstr ""
3948
 
3949
- #: ../includes/mycred-functions.php:2211
3950
  msgid "New Group Forum Post"
3951
  msgstr ""
3952
 
3953
- #: ../includes/mycred-functions.php:2212
3954
  msgid "Edit Group Forum Post"
3955
  msgstr ""
3956
 
3957
- #: ../includes/mycred-functions.php:2213
3958
  msgid "Joining Group"
3959
  msgstr ""
3960
 
3961
- #: ../includes/mycred-functions.php:2214
3962
  msgid "Leaving Group"
3963
  msgstr ""
3964
 
3965
- #: ../includes/mycred-functions.php:2215
3966
  msgid "New Group Avatar"
3967
  msgstr ""
3968
 
3969
- #: ../includes/mycred-functions.php:2216
3970
  msgid "New Group Comment"
3971
  msgstr ""
3972
 
3973
- #: ../includes/mycred-functions.php:2220 ../plugins/mycred-hook-buddypress-media.
3974
  #: php:166
3975
  msgid "Photo Upload"
3976
  msgstr "Télécharger la photo"
3977
 
3978
- #: ../includes/mycred-functions.php:2221 ../plugins/mycred-hook-buddypress-media.
3979
  #: php:176
3980
  msgid "Video Upload"
3981
  msgstr "Télécharger la vidéo"
3982
 
3983
- #: ../includes/mycred-functions.php:2222 ../plugins/mycred-hook-buddypress-media.
3984
  #: php:186
3985
  msgid "Music Upload"
3986
  msgstr "Télécharger la musique"
3987
 
3988
- #: ../includes/mycred-functions.php:2226
3989
  msgid "New Link"
3990
  msgstr ""
3991
 
3992
- #: ../includes/mycred-functions.php:2227
3993
  msgid "Link Voting"
3994
  msgstr ""
3995
 
3996
- #: ../includes/mycred-functions.php:2228
3997
  msgid "Link Update"
3998
  msgstr ""
3999
 
4000
- #: ../includes/mycred-functions.php:2232
4001
  msgid "New Forum (bbPress)"
4002
  msgstr ""
4003
 
4004
- #: ../includes/mycred-functions.php:2233
4005
  msgid "New Forum Topic (bbPress)"
4006
  msgstr ""
4007
 
4008
- #: ../includes/mycred-functions.php:2234
4009
  msgid "Favorited Topic (bbPress)"
4010
  msgstr ""
4011
 
4012
- #: ../includes/mycred-functions.php:2235
4013
  msgid "New Topic Reply (bbPress)"
4014
  msgstr ""
4015
 
4016
- #: ../includes/mycred-functions.php:2239
4017
  msgid "Form Submission (Contact Form 7)"
4018
  msgstr ""
4019
 
4020
- #: ../includes/mycred-functions.php:2242
4021
  msgid "Form Submission (Gravity Form)"
4022
  msgstr ""
4023
 
4024
- #: ../includes/mycred-functions.php:2245
4025
  msgid "New Forum Topic (SimplePress)"
4026
  msgstr ""
4027
 
4028
- #: ../includes/mycred-functions.php:2246
4029
  msgid "New Forum Post (SimplePress)"
4030
  msgstr ""
4031
 
4032
- #: ../includes/mycred-functions.php:2250
4033
  msgid "Poll Voting"
4034
  msgstr ""
4035
 
4036
- #: ../includes/mycred-functions.php:2253
4037
  msgid "Sending an Invite"
4038
  msgstr ""
4039
 
4040
- #: ../includes/mycred-functions.php:2254
4041
  msgid "Accepting an Invite"
4042
  msgstr ""
4043
 
4044
- #: ../includes/mycred-functions.php:2260
4045
  msgid "Banking Payout"
4046
  msgstr ""
4047
 
4048
- #: ../includes/mycred-functions.php:2263
4049
  msgid "buyCRED Purchase (PayPal Standard)"
4050
  msgstr ""
4051
 
4052
- #: ../includes/mycred-functions.php:2264
4053
  msgid "buyCRED Purchase (Skrill)"
4054
  msgstr ""
4055
 
4056
- #: ../includes/mycred-functions.php:2265
4057
  msgid "buyCRED Purchase (Zombaio)"
4058
  msgstr ""
4059
 
4060
- #: ../includes/mycred-functions.php:2266
4061
  msgid "buyCRED Purchase (NETBilling)"
4062
  msgstr ""
4063
 
4064
- #: ../includes/mycred-functions.php:2267
4065
  msgid "buyCRED Purchase (BitPay)"
4066
  msgstr ""
4067
 
4068
- #: ../includes/mycred-functions.php:2272
4069
  msgid "Coupon Purchase"
4070
  msgstr ""
4071
 
4072
- #: ../includes/mycred-functions.php:2275
4073
  msgid "Store Purchase (WooCommerce)"
4074
  msgstr ""
4075
 
4076
- #: ../includes/mycred-functions.php:2276
4077
  msgid "Store Purchase (MarketPress)"
4078
  msgstr ""
4079
 
4080
- #: ../includes/mycred-functions.php:2277
4081
  msgid "Store Purchase (WP E-Commerce)"
4082
  msgstr ""
4083
 
4084
- #: ../includes/mycred-functions.php:2282
4085
  msgid "Event Payment (Event Espresso)"
4086
  msgstr ""
4087
 
4088
- #: ../includes/mycred-functions.php:2283
4089
  msgid "Event Sale (Event Espresso)"
4090
  msgstr ""
4091
 
4092
- #: ../includes/mycred-functions.php:2287
4093
  msgid "Event Payment (Events Manager)"
4094
  msgstr ""
4095
 
4096
- #: ../includes/mycred-functions.php:2288
4097
  msgid "Event Sale (Events Manager)"
4098
  msgstr ""
4099
 
4100
- #: ../includes/mycred-functions.php:2292
4101
  msgid "Content Purchase / Sale"
4102
  msgstr ""
4103
 
4104
- #: ../includes/mycred-functions.php:2299
4105
  msgid "Manual Adjustment by Admin"
4106
  msgstr ""
4107
 
@@ -4276,6 +4316,10 @@ msgstr ""
4276
  "maximum pouvant être dépensé, transféré ou reçu. Utilisez zéro pour "
4277
  "désactiver l'option."
4278
 
 
 
 
 
4279
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4280
  msgid "Exclude those who can \"Edit Settings\"."
4281
  msgstr "Exclure ceux qui peuvent \"modifier les réglages\"."
@@ -4385,7 +4429,7 @@ msgstr "Aucune option d'exportation disponible."
4385
  msgid "Entry"
4386
  msgstr "Motif"
4387
 
4388
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:466
4389
  msgid "User Missing"
4390
  msgstr "Utilisateur inexistant"
4391
 
@@ -4584,92 +4628,92 @@ msgstr ""
4584
  "empêcher des appels malicieux qui tenteraient de s'informer sur votre "
4585
  "installation&nbsp;!"
4586
 
4587
- #: ../includes/mycred-shortcodes.php:153
4588
  msgid "Leaderboard is empty."
4589
  msgstr "Aucun classement à afficher."
4590
 
4591
- #: ../includes/mycred-shortcodes.php:424 ../includes/mycred-shortcodes.php:547
4592
  msgid "Amount missing!"
4593
  msgstr "Montant absent !"
4594
 
4595
- #: ../includes/mycred-shortcodes.php:427 ../includes/mycred-shortcodes.php:555
4596
  msgid "Log Template Missing!"
4597
  msgstr "Rapport absent !"
4598
 
4599
- #: ../includes/mycred-shortcodes.php:489
4600
  msgid "Anchor missing URL!"
4601
  msgstr "L'ancre de l'URL est absente !"
4602
 
4603
- #: ../includes/mycred-shortcodes.php:551
4604
  msgid "User ID missing for recipient."
4605
  msgstr "L'ID du destinataire est absente !"
4606
 
4607
- #: ../includes/mycred-shortcodes.php:606
4608
  msgid "Sent"
4609
  msgstr "Envoyer"
4610
 
4611
- #: ../includes/mycred-shortcodes.php:607
4612
  msgid "Error - Try Again"
4613
  msgstr "Erreur - essayez encore une fois"
4614
 
4615
- #: ../includes/mycred-shortcodes.php:716
4616
  msgid "A video ID is required for this shortcode"
4617
  msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
4618
 
4619
- #: ../includes/mycred-shortcodes.php:862 ../includes/mycred-shortcodes.php:956
4620
  msgid "Point types not found."
4621
  msgstr ""
4622
 
4623
- #: ../includes/mycred-shortcodes.php:868 ../includes/mycred-shortcodes.php:876 ..
4624
- #: includes/mycred-shortcodes.php:968 ../includes/mycred-shortcodes.php:988
4625
  #, php-format
4626
  msgid "You are excluded from using %s."
4627
  msgstr ""
4628
 
4629
- #: ../includes/mycred-shortcodes.php:872 ../includes/mycred-shortcodes.php:978
4630
  msgid "Your balance is too low to use this feature."
4631
  msgstr ""
4632
 
4633
- #: ../includes/mycred-shortcodes.php:893
4634
  #, php-format
4635
  msgid "Convert <span>%s</span> to <span>%s</span>"
4636
  msgstr ""
4637
 
4638
- #: ../includes/mycred-shortcodes.php:902
4639
  #, php-format
4640
  msgid "Your current %s balance"
4641
  msgstr ""
4642
 
4643
- #: ../includes/mycred-shortcodes.php:910
4644
  #, php-format
4645
  msgid "Minimum %s"
4646
  msgstr ""
4647
 
4648
- #: ../includes/mycred-shortcodes.php:914
4649
  #, php-format
4650
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4651
  msgstr ""
4652
 
4653
- #: ../includes/mycred-shortcodes.php:920
4654
  msgid "Exchange"
4655
  msgstr ""
4656
 
4657
- #: ../includes/mycred-shortcodes.php:1001
4658
  #, php-format
4659
  msgid "You must exchange at least %s!"
4660
  msgstr ""
4661
 
4662
- #: ../includes/mycred-shortcodes.php:1023
4663
  #, php-format
4664
  msgid "Exchange from %s"
4665
  msgstr ""
4666
 
4667
- #: ../includes/mycred-shortcodes.php:1035
4668
  #, php-format
4669
  msgid "Exchange to %s"
4670
  msgstr ""
4671
 
4672
- #: ../includes/mycred-shortcodes.php:1043
4673
  #, php-format
4674
  msgid "You have successfully exchanged %s into %s."
4675
  msgstr ""
@@ -4976,6 +5020,12 @@ msgstr "Modules"
4976
  msgid "Give your users badges based on their interaction with your website."
4977
  msgstr ""
4978
 
 
 
 
 
 
 
4979
  #: ../modules/mycred-module-addons.php:169
4980
  msgid ""
4981
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
@@ -5317,7 +5367,7 @@ msgstr ""
5317
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5318
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5319
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5320
- #: 2623 ../modules/mycred-module-hooks.php:2652 ../plugins/mycred-hook-badgeOS.
5321
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5322
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5323
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
@@ -5379,8 +5429,8 @@ msgstr ""
5379
  msgid "%plural% for viewing %s"
5380
  msgstr ""
5381
 
5382
- #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2631
5383
- #: ../modules/mycred-module-hooks.php:2660 ../plugins/mycred-hook-invite-anyone.
5384
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5385
  msgid "Limit"
5386
  msgstr "Limite d'attribution"
@@ -5472,7 +5522,7 @@ msgstr ""
5472
  msgid "Custom tags: %url%, %title% or %id%."
5473
  msgstr "Mots clés pouvant être utilisé ici: %url%, %title% ou %id%."
5474
 
5475
- #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2734
5476
  msgid "Note!"
5477
  msgstr "Information&nbsp;!"
5478
 
@@ -5555,65 +5605,65 @@ msgstr "Par jour"
5555
  msgid "Link"
5556
  msgstr "Lien"
5557
 
5558
- #: ../modules/mycred-module-hooks.php:2617
5559
  msgid "Referring Visitors"
5560
  msgstr "Visiteurs réferants"
5561
 
5562
- #: ../modules/mycred-module-hooks.php:2641 ../modules/mycred-module-hooks.php:2670
5563
  msgid "The number of referrals each member can make. Use zero for unlimited."
5564
  msgstr ""
5565
  "Le nombre de renvois que chaque membre peut faire. Utilisez zéro pour "
5566
  "illimité."
5567
 
5568
- #: ../modules/mycred-module-hooks.php:2645 ../modules/mycred-module-hooks.php:2674
5569
  msgid "Referring Signups"
5570
  msgstr "Inscriptions référentes"
5571
 
5572
- #: ../modules/mycred-module-hooks.php:2649
5573
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5574
  msgstr ""
5575
  "Les visiteurs ayant désactivés les cookies ne pourront pas attribuer de "
5576
  "%_plural%."
5577
 
5578
- #: ../modules/mycred-module-hooks.php:2676
5579
  msgid "Registrations are disabled."
5580
  msgstr "Les inscriptions sont désactivées."
5581
 
5582
- #: ../modules/mycred-module-hooks.php:2683
5583
  msgid "Referral Links"
5584
  msgstr "Liens référents"
5585
 
5586
- #: ../modules/mycred-module-hooks.php:2687
5587
  msgid "Assign numeric referral IDs to each user."
5588
  msgstr "Assigner un ID de référence numérique à chaque utilisateur."
5589
 
5590
- #: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2694
5591
  msgid "Example"
5592
  msgstr "Exemple"
5593
 
5594
- #: ../modules/mycred-module-hooks.php:2693
5595
  msgid "Assign usernames as IDs for each user."
5596
  msgstr "Assigner son nom d'utilisateur comme ID à chaque utilisateur."
5597
 
5598
- #: ../modules/mycred-module-hooks.php:2697
5599
  msgid "IP Limit"
5600
  msgstr "Limite IP"
5601
 
5602
- #: ../modules/mycred-module-hooks.php:2701
5603
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5604
  msgstr ""
5605
  "Le nombre de fois que chaque adresse IP se voit attribuer des %_plural%. "
5606
  "Indiquez 0 pour un nombre illimité."
5607
 
5608
- #: ../modules/mycred-module-hooks.php:2705 ../modules/mycred-module-hooks.php:2738
5609
  msgid "BuddyPress Profile"
5610
  msgstr "Profil BuddyPress"
5611
 
5612
- #: ../modules/mycred-module-hooks.php:2708
5613
  msgid "Insert Link in users Profile"
5614
  msgstr "Insérer un lien sur le Profil des utilisateurs"
5615
 
5616
- #: ../modules/mycred-module-hooks.php:2709
5617
  msgid ""
5618
  "Option to inser the referral link in users profiles. Links will only be "
5619
  "visible to users viewing their own profiles or administrators."
@@ -5622,23 +5672,23 @@ msgstr ""
5622
  "visible que par l'utilisateur sur son propre profil et pour les "
5623
  "administrateurs du site."
5624
 
5625
- #: ../modules/mycred-module-hooks.php:2715
5626
  msgid "Leave empty to hide."
5627
  msgstr "Laissez vide pour masquer"
5628
 
5629
- #: ../modules/mycred-module-hooks.php:2718
5630
  msgid "Description"
5631
  msgstr "Description"
5632
 
5633
- #: ../modules/mycred-module-hooks.php:2719
5634
  msgid "Optional description to insert under the link."
5635
  msgstr "Description facultative qui apparaîtra sous le lien"
5636
 
5637
- #: ../modules/mycred-module-hooks.php:2731
5638
  msgid "Profile Positioning"
5639
  msgstr "Position sur le Profil"
5640
 
5641
- #: ../modules/mycred-module-hooks.php:2733
5642
  msgid ""
5643
  "You can move around the referral link on your users profile by changing the "
5644
  "position. Increase to move up, decrease to move down."
@@ -5646,13 +5696,13 @@ msgstr ""
5646
  "Vous pouvez déplacer le lien de référence sur votre profil en modifiant sa "
5647
  "position vers le haut ou le bas."
5648
 
5649
- #: ../modules/mycred-module-hooks.php:2734
5650
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5651
  msgstr ""
5652
  "Vous ne pouvez pas déplacer le lien de référence au-dessus du champ de "
5653
  "profil \"Base\" "
5654
 
5655
- #: ../modules/mycred-module-hooks.php:2740
5656
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5657
  msgstr "Nécessite l'activation du composant Profils Etendus de BuddyPress"
5658
 
@@ -5677,8 +5727,8 @@ msgstr "Entrée mise à jour"
5677
  msgid "Entries"
5678
  msgstr "Entrées"
5679
 
5680
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:385 ..
5681
- #: modules/mycred-module-log.php:629 ../modules/mycred-module-settings.php:574
5682
  msgid "Export"
5683
  msgstr "Exporter"
5684
 
@@ -5686,40 +5736,40 @@ msgstr "Exporter"
5686
  msgid "Search results for"
5687
  msgstr "Résultat de la recherche pour"
5688
 
5689
- #: ../modules/mycred-module-log.php:379
5690
  #, php-format
5691
  msgid "%s Log"
5692
  msgstr "Journal %s"
5693
 
5694
- #: ../modules/mycred-module-log.php:504
5695
  msgid "Edit"
5696
  msgstr "Modifier"
5697
 
5698
- #: ../modules/mycred-module-log.php:545
5699
  msgid "Time"
5700
  msgstr "Durée"
5701
 
5702
- #: ../modules/mycred-module-log.php:549
5703
  msgid "Current Log Entry"
5704
  msgstr "Entrée actuelle"
5705
 
5706
- #: ../modules/mycred-module-log.php:551
5707
  msgid "The current saved log entry"
5708
  msgstr "L'entrée sauvegardée actuelle"
5709
 
5710
- #: ../modules/mycred-module-log.php:554
5711
  msgid "Adjust Log Entry"
5712
  msgstr "Ajuster le journal"
5713
 
5714
- #: ../modules/mycred-module-log.php:556
5715
  msgid "The new log entry"
5716
  msgstr "La nouvelle entrée de journal"
5717
 
5718
- #: ../modules/mycred-module-log.php:559
5719
  msgid "Update Log Entry"
5720
  msgstr "Mettre à jour le journal"
5721
 
5722
- #: ../modules/mycred-module-log.php:623
5723
  #, php-format
5724
  msgid "My %s History"
5725
  msgstr "Mon historique %s"
@@ -6448,6 +6498,6 @@ msgstr "WP-Polls"
6448
  #: ../plugins/mycred-hook-wp-polls.php:19
6449
  #, php-format
6450
  msgid "Awards %_plural% for users voting in polls."
6451
- msgstr "Attribuer des %_plural% aux utilisateurs répondants aux sondages."
6452
- voting in polls."
6453
- msgstr "Attribuer des %_plural% aux utilisateurs répondants aux sondages."
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: Thu Aug 07 2014 20:35:20 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: French\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
16
  "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
17
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
18
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
19
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
20
  "X-Poedit-Basepath: .\n"
41
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
42
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
43
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
44
+ #: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
45
+ #: includes/mycred-shortcodes.php:607
46
  msgid "Processing..."
47
  msgstr "Chargement en cours..."
48
 
150
  msgstr "Une fois par jour (remise à zéro à minuit)"
151
 
152
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
153
+ #: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
154
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
155
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
176
  msgid "click to open"
177
  msgstr "cliquez pour ouvrir"
178
 
179
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/buy-creds/myCRED-addon-
180
+ #: buy-creds.php:847
181
  msgid "Settings Updated"
182
  msgstr "Configuration mise à jour"
183
 
382
  msgid "in total"
383
  msgstr ""
384
 
385
+ #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
386
+ #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
387
  msgid "Banking"
388
  msgstr "Banque"
389
 
390
+ #: ../addons/banking/myCRED-addon-banking.php:158
391
+ msgid "Central Banking"
392
+ msgstr ""
393
+
394
+ #: ../addons/banking/myCRED-addon-banking.php:159
395
+ #, php-format
396
+ msgid ""
397
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
398
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
399
+ "deposited back into this account."
400
+ msgstr ""
401
+
402
+ #: ../addons/banking/myCRED-addon-banking.php:165 ..
403
+ #: addons/banking/services/mycred-bank-service-interest.php:512
404
  msgid "Compound Interest"
405
  msgstr "Appliquer des Intérêts"
406
 
407
+ #: ../addons/banking/myCRED-addon-banking.php:166
408
  #, php-format
409
+ msgid "Apply a positive or negative interest rate on your users %_plural% balances."
 
 
 
 
410
  msgstr ""
 
 
 
 
411
 
412
+ #: ../addons/banking/myCRED-addon-banking.php:172
413
  msgid "Recurring Payouts"
414
  msgstr "Paiements répétés"
415
 
416
+ #: ../addons/banking/myCRED-addon-banking.php:173
417
+ msgid "Setup mass %_singular% payouts for your users."
 
 
 
418
  msgstr ""
 
 
419
 
420
+ #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
421
+ #: addon-buy-creds.php:837 ../addons/buy-creds/myCRED-addon-buy-creds.php:933 ..
422
+ #: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
423
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
424
+ #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
425
  #: modules/mycred-module-settings.php:312
426
  msgid "Access Denied"
427
  msgstr "Accès refusé"
428
 
429
+ #: ../addons/banking/myCRED-addon-banking.php:225
430
  #, php-format
431
  msgid "%s Banking"
432
  msgstr "Paiement %s"
433
 
434
+ #: ../addons/banking/myCRED-addon-banking.php:228
435
+ msgid "Your banking setup for %plural%."
 
436
  msgstr ""
 
 
437
 
438
+ #: ../addons/banking/myCRED-addon-banking.php:231
439
  msgid "WP-Cron deactivation detected!"
440
  msgstr "Détection de la désactivation de WP-Cron !"
441
 
442
+ #: ../addons/banking/myCRED-addon-banking.php:232
443
  msgid "Warning! This add-on requires WP - Cron to work."
444
  msgstr "Attention ! Pour utiliser ce module, WP-Cron est obligatoire."
445
 
446
+ #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
447
+ #: addon-buy-creds.php:871 ../modules/mycred-module-hooks.php:196
448
  msgid "Enable"
449
  msgstr "Activer"
450
 
451
+ #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
452
  #: php:211
453
  msgid "Update Changes"
454
  msgstr "Enregistrer les modifications"
455
 
456
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:79
 
 
 
 
 
 
457
  msgid "This Service has no settings"
458
  msgstr "Ce système ne dispose d'aucun réglage"
459
 
460
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:233
461
  msgid "Hourly"
462
  msgstr "Horaire"
463
 
464
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:237
465
  msgid "Daily"
466
  msgstr "Quotidienne"
467
 
468
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:241
469
  msgid "Weekly"
470
  msgstr "Hebdomadaire"
471
 
472
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:245
473
  msgid "Monthly"
474
  msgstr "Mensuel"
475
 
476
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:249
477
  msgid "Quarterly"
478
  msgstr "Trimestrielle"
479
 
480
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:253
481
  msgid "Semiannually"
482
  msgstr "Biannuelle"
483
 
484
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:257
485
  msgid "Annually"
486
  msgstr "Annuelle"
487
 
488
+ #: ../addons/banking/services/mycred-bank-service-central.php:105
489
+ msgid "Bank User"
490
+ msgstr ""
491
+
492
+ #: ../addons/banking/services/mycred-bank-service-central.php:109
493
+ msgid "The user ID of the central bank account. This user can not be excluded!"
494
+ msgstr ""
495
+
496
+ #: ../addons/banking/services/mycred-bank-service-central.php:112
497
+ msgid "Ignore Manual Adjustments"
498
+ msgstr ""
499
+
500
+ #: ../addons/banking/services/mycred-bank-service-interest.php:24
501
  msgid "%plural% interest rate payment"
502
  msgstr "Versement de %_plural% d'intérêts"
503
 
504
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
505
+ msgid "Compounding Interest"
506
+ msgstr ""
507
+
508
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
509
+ #, php-format
510
+ msgid "%d Users are left to process."
511
+ msgstr ""
512
+
513
+ #: ../addons/banking/services/mycred-bank-service-interest.php:388
514
+ msgid "Payout History"
515
+ msgstr ""
516
+
517
+ #: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
518
+ #: addons/banking/services/mycred-bank-service-interest.php:409 ..
519
+ #: addons/banking/services/mycred-bank-service-payouts.php:249
520
+ msgid "Run Count"
521
+ msgstr ""
522
+
523
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
524
+ msgid "Last Payout"
525
+ msgstr ""
526
+
527
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
528
+ #: addons/banking/services/mycred-bank-service-interest.php:414
529
+ msgid "Activated"
530
+ msgstr ""
531
+
532
+ #: ../addons/banking/services/mycred-bank-service-interest.php:401
533
+ msgid "Total Payed Interest"
534
+ msgstr ""
535
+
536
+ #: ../addons/banking/services/mycred-bank-service-interest.php:405
537
+ msgid "Compound History"
538
+ msgstr ""
539
+
540
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
541
+ msgid "Last Interest Compound"
542
+ msgstr ""
543
+
544
+ #: ../addons/banking/services/mycred-bank-service-interest.php:418
545
+ msgid "Total Compounded Interest"
546
+ msgstr ""
547
+
548
+ #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
549
+ #: addons/banking/services/mycred-bank-service-interest.php:549
550
  msgid "Interest Rate"
551
  msgstr "Taux d'intérêt"
552
 
553
+ #: ../addons/banking/services/mycred-bank-service-interest.php:425
554
+ msgid "Default Rate"
 
 
 
 
555
  msgstr ""
 
 
556
 
557
+ #: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
558
+ #: addons/banking/services/mycred-bank-service-payouts.php:267
559
+ msgid "Can not be zero."
560
+ msgstr "Ne peut être zéro."
561
 
562
+ #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
563
+ #: addons/gateway/carts/mycred-wpecommerce.php:364
564
+ msgid "Payout"
565
+ msgstr "Paiement"
566
 
567
+ #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
568
+ #: addons/banking/services/mycred-bank-service-payouts.php:282 ../addons/buy-
569
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
570
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
571
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
583
  msgid "Log Template"
584
  msgstr "Texte à afficher"
585
 
586
+ #: ../addons/banking/services/mycred-bank-service-interest.php:442 ..
587
+ #: addons/banking/services/mycred-bank-service-payouts.php:289 ..
588
+ #: addons/coupons/myCRED-addon-coupons.php:392
589
+ msgid "Minimum Balance"
590
+ msgstr "Solde minimum"
591
 
592
+ #: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
593
+ #: addons/banking/services/mycred-bank-service-payouts.php:293
594
+ msgid "Optional minimum balance requirement."
595
+ msgstr ""
596
+
597
+ #: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
598
+ #: addons/banking/services/mycred-bank-service-payouts.php:296
599
+ msgid "Exclude"
600
+ msgstr ""
601
+
602
+ #: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
603
+ #: addons/banking/services/mycred-bank-service-payouts.php:299
604
+ msgid "Comma separated list of user IDs"
605
+ msgstr ""
606
+
607
+ #: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
608
+ #: addons/banking/services/mycred-bank-service-payouts.php:303
609
+ msgid "Roles"
610
+ msgstr ""
611
+
612
+ #: ../addons/banking/services/mycred-bank-service-interest.php:522
613
+ msgid "This user is excluded from receiving interest on this balance."
614
+ msgstr ""
615
+
616
+ #: ../addons/banking/services/mycred-bank-service-interest.php:525
617
+ msgid "Remove from Excluded List"
618
+ msgstr ""
619
+
620
+ #: ../addons/banking/services/mycred-bank-service-interest.php:537
621
+ msgid "This user role is excluded from receiving interest on this balance."
622
+ msgstr ""
623
+
624
+ #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
625
+ #: creds/myCRED-addon-buy-creds.php:759 ../addons/sell-content/myCRED-addon-sell-
626
+ #: content.php:113
627
+ msgid "Leave empty to use the default value."
628
+ msgstr ""
629
+
630
+ #: ../addons/banking/services/mycred-bank-service-interest.php:558
631
+ msgid "Save Interest Rate"
632
+ msgstr ""
633
+
634
+ #: ../addons/banking/services/mycred-bank-service-interest.php:559
635
+ msgid "Exclude from receiving interest"
636
+ msgstr ""
637
+
638
+ #: ../addons/banking/services/mycred-bank-service-interest.php:667
639
+ msgid "Compound interest rate saved."
640
+ msgstr ""
641
+
642
+ #: ../addons/banking/services/mycred-bank-service-interest.php:669
643
+ msgid "User excluded from receiving interest."
644
+ msgstr ""
645
+
646
+ #: ../addons/banking/services/mycred-bank-service-interest.php:671
647
+ msgid "User included in receiving interest."
648
  msgstr ""
 
 
 
 
649
 
650
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
651
  msgid "Daily %_plural%"
652
  msgstr "%plural% quotidiens"
653
 
654
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
655
+ #: includes/mycred-admin.php:404 ../modules/mycred-module-log.php:254 ..
656
+ #: modules/mycred-module-log.php:255
657
+ msgid "History"
658
+ msgstr "Mes points"
659
+
660
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:254
661
+ msgid "Last Run"
662
+ msgstr ""
663
 
664
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:258
665
+ msgid "Total Payouts"
666
+ msgstr ""
667
+
668
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:262
669
  msgid "Pay Users"
670
  msgstr "Payer les Utilisateurs"
671
 
672
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
673
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
674
+ #: creds.php:1518 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595 ..
675
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
676
+ #: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
677
+ #: includes/mycred-shortcodes.php:910
678
  msgid "Amount"
679
  msgstr "Montant"
680
 
681
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
682
+ #: modules/mycred-module-hooks.php:2113
 
 
 
 
 
683
  msgid "Interval"
684
  msgstr "Intervalle"
685
 
686
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:275
 
687
  msgid "Cycles"
688
  msgstr "Périodicité"
689
 
690
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:277
691
  msgid "Set to -1 for unlimited"
692
  msgstr "Indiquez -1 pour illimité"
693
 
694
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
695
  msgid "Important"
696
  msgstr "Important"
697
 
698
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
699
  msgid ""
700
  "You can always stop payouts by deactivating this service. Just remember that "
701
  "if you deactivate while there are cycles left, this service will continue on "
706
  "service reprendra à ce stade lorque vous le réactiverez. Indiquez zéro pour "
707
  "réinitialiser les cycles."
708
 
 
 
 
 
 
 
 
 
 
 
 
 
 
709
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
710
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
711
  msgid "Payment Gateways"
731
  msgstr ""
732
 
733
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
734
+ #: addon-buy-creds.php:1629
735
  msgid "No pending payments found"
736
  msgstr ""
737
 
740
  msgstr ""
741
 
742
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
743
+ #: addon-buy-creds.php:986 ../addons/buy-creds/myCRED-addon-buy-creds.php:1593
744
  msgid "Transaction ID"
745
  msgstr "ID de la transaction"
746
 
747
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
748
+ #: addon-buy-creds.php:982
749
  msgid "Buyer"
750
  msgstr ""
751
 
752
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
753
+ #: addon-buy-creds.php:1596 ../addons/buy-creds/abstracts/mycred-abstract-payment-
754
  #: gateway.php:563
755
  msgid "Cost"
756
  msgstr "Prix"
757
 
758
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
759
+ #: addon-buy-creds.php:981 ../addons/buy-creds/myCRED-addon-buy-creds.php:1594 ..
760
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
761
  msgid "Gateway"
762
  msgstr "Service"
774
  msgstr "Journal d'achat buyCRED"
775
 
776
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
777
+ #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:843
778
  msgid "Purchase Log"
779
  msgstr "Journal d'achat"
780
 
781
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
782
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
783
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
784
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:422
785
  msgid "Payments"
786
  msgstr "Paiements"
787
 
858
  msgstr "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
859
 
860
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
861
+ #: hooks.php:2770
862
  msgid "Available Shortcodes"
863
  msgstr "Shortcodes disponibles"
864
 
867
  msgid "%s Exchange Rate"
868
  msgstr ""
869
 
 
 
 
 
 
870
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
871
  msgid "Save Exchange Rates"
872
  msgstr ""
873
 
874
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:822
875
  msgid "Exchange rate override saved"
876
  msgstr ""
877
 
878
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:825
879
  msgid "Payment completed"
880
  msgstr ""
881
 
882
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843
883
  #, php-format
884
  msgid "%s Payment Gateways"
885
  msgstr "%s Services de Paiements"
886
 
887
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
888
+ #: addon-buy-creds.php:990
889
  msgid "buyCRED Settings"
890
  msgstr "Configuration buyCRED"
891
 
892
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:864
893
  msgid "Test Mode"
894
  msgstr "Mode Test"
895
 
896
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
897
  msgid "Enabled"
898
  msgstr "Activé"
899
 
900
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:869
901
  msgid "Disabled"
902
  msgstr "Désactivé"
903
 
904
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
905
  msgid "Sandbox Mode"
906
  msgstr "Mode bac à sable"
907
 
908
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:882
909
  msgid "Enable for test purchases."
910
  msgstr "Activez pour faire des tests d'achats factices."
911
 
912
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
913
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
914
  msgid "Update Settings"
915
  msgstr "Enregistrer la configuration"
916
 
917
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
918
  msgid "More Gateways"
919
  msgstr ""
920
 
921
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:983 ../includes/mycred-log.php:
922
  #: 634
923
  msgid "Date"
924
  msgstr "Daté"
925
 
926
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985
927
  msgid "Payed"
928
  msgstr "Payé"
929
 
930
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990
931
  msgid "<strong>buy</strong>CRED Purchase Log"
932
  msgstr "Relevé des achats <strong>buy</strong>CRED"
933
 
934
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990 ../addons/gateway/event-
935
  #: booking/mycred-eventespresso3.php:367
936
  msgid "Gateway Settings"
937
  msgstr "Configuration du service de paiement"
938
 
939
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166 ../addons/sell-
940
+ #: content/myCRED-addon-sell-content.php:1190
941
  msgid "No purchases found"
942
  msgstr "Aucun achat trouvé"
943
 
944
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1236 ../addons/buy-creds/myCRED-
945
+ #: addon-buy-creds.php:1349
946
  msgid "This Add-on needs to setup before you can use this shortcode."
947
  msgstr ""
948
  "Ce module doit d'abord être paramétré avant que vous ne puissiez utiliser ce "
949
  "shortcode."
950
 
951
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1255 ../addons/buy-creds/myCRED-
952
+ #: addon-buy-creds.php:1368
953
  msgid "No gateways installed."
954
  msgstr "Aucun systme de paiement n'est installé."
955
 
956
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1256 ../addons/buy-creds/myCRED-
957
+ #: addon-buy-creds.php:1369
958
  msgid "Gateway does not exist."
959
  msgstr "Le service de paiement n'existe pas."
960
 
961
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1304
962
  msgid "Yourself"
963
  msgstr "Vous-même"
964
 
965
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1370
966
  msgid "No active gateways found."
967
  msgstr "Aucun service de paiement n'a été trouvé."
968
 
969
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1371
970
  msgid "The selected gateway is not active."
971
  msgstr "Ce service de paiement n'est pas activé"
972
 
973
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1418
974
  #, php-format
975
  msgid "Buy with %gateway%"
976
  msgstr "Régler avec %gateway%"
977
 
978
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424 ../addons/sell-
979
  #: content/myCRED-addon-sell-content.php:44
980
  msgid "Buy Now"
981
  msgstr "Acheter maintenant"
982
 
983
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1469
984
  msgid "No users found"
985
  msgstr "Aucun membre n'a été trouvé"
986
 
987
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1479
988
  msgid "To"
989
  msgstr "à"
990
 
991
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1496
992
  msgid "Select Amount"
993
  msgstr "Sélectionnez le montant"
994
 
995
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1520
996
  msgid "min."
997
  msgstr "mini."
998
 
999
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1528
1000
  msgid "Select Gateway"
1001
  msgstr "Sélectionnez le service de paiement"
1002
 
1003
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1569 ../addons/gateway/event-
1004
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1005
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1006
  #: php:35
1007
  msgid "Pay Now"
1008
  msgstr "Payer maintenant"
1009
 
1010
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1570 ../includes/mycred-install.
1011
  #: php:515
1012
  msgid "Cancel"
1013
  msgstr "Annuler"
1014
 
1015
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ../addons/ranks/myCRED-
1016
+ #: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
1017
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
1018
  msgid "Actions"
1019
  msgstr "Actions"
1053
  msgstr "Achat annulé"
1054
 
1055
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1056
+ #: includes/mycred-admin.php:702 ../includes/mycred-admin.php:739
1057
  msgid "required"
1058
  msgstr "obligatoire"
1059
 
1060
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1061
+ #: includes/mycred-admin.php:704 ../includes/mycred-admin.php:741
1062
  msgid "optional"
1063
  msgstr "optionnel"
1064
 
1463
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1464
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1465
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1466
+ #: modules/mycred-module-hooks.php:2735
1467
  msgid "Title"
1468
  msgstr "Titre"
1469
 
1710
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1711
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1712
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1713
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:410 ..
1714
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1715
  #: includes/importers/mycred-cubepoints.php:365
1716
  msgid "Point Type"
2119
  msgstr "Envoyer à"
2120
 
2121
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2122
+ #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:748 ..
2123
+ #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
2124
  msgid "User"
2125
  msgstr "Utilisateur"
2126
 
2247
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2248
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2249
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2250
+ #: php:412 ../includes/mycred-admin.php:596 ../includes/mycred-admin.php:749
2251
  msgid "Current Balance"
2252
  msgstr "Solde actuel"
2253
 
2373
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2374
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2375
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2376
+ #: php:578 ../includes/mycred-shortcodes.php:915
2377
  msgid "Exchange Rate"
2378
  msgstr "Taux de change"
2379
 
2606
  msgid "How much is 1 %s worth in %s"
2607
  msgstr "Combien vaut 1 %s dans %s"
2608
 
 
 
 
 
2609
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2610
  msgid "Instructions"
2611
  msgstr "Instructions"
2680
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2681
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2682
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2683
+ #: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
2684
+ #: sell-content.php:668
2685
  msgid "Button Label"
2686
  msgstr "Intitulé du bouton"
2687
 
2694
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2695
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2696
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2697
+ #: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
2698
+ #: sell-content.php:664
2699
  msgid "Price"
2700
  msgstr "Prix"
2701
 
2717
  msgstr "Vue d&#39;ensemble"
2718
 
2719
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2720
+ #: includes/mycred-admin.php:717 ../includes/mycred-admin.php:754
2721
  msgid "Log Entry"
2722
  msgstr "Journal d'activité"
2723
 
2724
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2725
+ #: content/myCRED-addon-sell-content.php:472
2726
  msgid "Templates"
2727
  msgstr "Affichage des éléments"
2728
 
2800
  msgstr "Rejeter"
2801
 
2802
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2803
+ #: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:488 ..
2804
  #: modules/mycred-module-settings.php:507
2805
  msgid "Delete"
2806
  msgstr "Suppirmer"
3271
  msgstr "Aucun utilisateur avec ce classement n'a été trouvé."
3272
 
3273
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3274
+ #: shortcodes.php:425 ../includes/mycred-shortcodes.php:428 ../includes/mycred-
3275
+ #: shortcodes.php:491 ../includes/mycred-shortcodes.php:549 ../includes/mycred-
3276
+ #: shortcodes.php:553 ../includes/mycred-shortcodes.php:557
3277
  msgid "error"
3278
  msgstr "erreur"
3279
 
3293
  msgid "Save Profit Share"
3294
  msgstr ""
3295
 
3296
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:164
3297
  msgid "Profit Share override saved"
3298
  msgstr ""
3299
 
3300
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:326
3301
  msgid "You can not buy this content."
3302
  msgstr "Vous ne pouvez pas acheter ce contenu."
3303
 
3304
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:371
3305
  msgid "Error. Try Again"
3306
  msgstr "Erreur, veuillez recommencer."
3307
 
3308
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3309
  msgid "No Payout. Just charge."
3310
  msgstr "Pas de paiement. Uniquement facturer."
3311
 
3312
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3313
  msgid "Pay Content Author."
3314
  msgstr "Payer l'auteur du contenu"
3315
 
3316
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:400 ../includes/mycred-
3317
  #: overview.php:141 ../includes/mycred-overview.php:148
3318
  msgid "Sell Content"
3319
  msgstr "Vendre du contenu"
3320
 
3321
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3322
  msgid "Post Types"
3323
  msgstr "Post Types"
3324
 
3325
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3326
  msgid "Comma separated list of post types that can be sold."
3327
  msgstr "Liste des post types, séparés par une virgule, pouvant être vendus"
3328
 
3329
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:436
3330
  msgid "Percentage to pay Author"
3331
  msgstr "Pourcentage à verser à l'auteur"
3332
 
3333
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3334
  msgid ""
3335
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3336
  "authors are not paid."
3338
  "Pourcentage du prix à verser à l'auteur. Ne peut être zéro et sera ignoré si "
3339
  "les auteurs ne sont pas payables."
3340
 
3341
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:446
3342
  msgid "Defaults"
3343
  msgstr "Par défaut"
3344
 
3345
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:454
3346
  msgid "Allow authors to change price."
3347
  msgstr "Autoriser les auteurs à modifier le prix"
3348
 
3349
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3350
  msgid "Allow authors to change button label."
3351
  msgstr "Autoriser les auteurs à modifier l'étiquette du bouton"
3352
 
3353
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:467
3354
  msgid "Purchases expire after"
3355
  msgstr "L'achat expire après"
3356
 
3357
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3358
  msgid "Use zero for permanent sales."
3359
  msgstr "Indiquez zéro pour des ventes permanentes"
3360
 
3361
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:475
3362
  msgid "For Visitors"
3363
  msgstr ""
3364
 
3365
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:480
3366
  #, php-format
3367
  msgid ""
3368
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3371
  "N&#39;utilisez <strong>pas</strong> %buy_button% sur ce template, puisque "
3372
  "l&#39;utilisateur doit &ecirc;tre connect&eacute; pour acheter du contenu !"
3373
 
3374
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:485
3375
  msgid "For Members"
3376
  msgstr ""
3377
 
3378
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:490 ../addons/sell-
3379
+ #: content/myCRED-addon-sell-content.php:500
3380
  #, php-format
3381
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3382
  msgstr ""
3383
  "Votre template doit contenir le mot-cl&eacute; %buy_button% pour que l&#39;"
3384
  "achat fonctionne !"
3385
 
3386
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:495
3387
  msgid "For members that can not afford to buy"
3388
  msgstr ""
3389
 
3390
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:504
3391
  msgid "Log template for Purchases"
3392
  msgstr "Template de connexion pour les achats"
3393
 
3394
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:511
3395
  msgid "Log template for Sales"
3396
  msgstr "Template de connexion pour les ventes"
3397
 
3398
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:563
3399
  #, php-format
3400
  msgid "%s Sell This"
3401
  msgstr "%s a vendu ceci"
3402
 
3403
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:617
3404
  #, php-format
3405
  msgid "%s Sell Content needs to be setup before you can use this feature."
3406
  msgstr ""
3407
  "%s Vendre du contenu doit être paramétré avant que vous ne puissiez utiliser "
3408
  "cette fonctionnalité."
3409
 
3410
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3411
  msgid "Setup add-on"
3412
  msgstr "Configuration du module"
3413
 
3414
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3415
  msgid "Lets do it"
3416
  msgstr "Faisons cela"
3417
 
3418
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:658
3419
  #, php-format
3420
  msgid "Enable sale of this %s"
3421
  msgstr ""
3422
 
3423
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:672
3424
  msgid "Purchase expires after"
3425
  msgstr "Les achats expirent après"
3426
 
3427
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:998
3428
  msgid "Thank you for your purchase!"
3429
  msgstr "Merci pour votre achat"
3430
 
3431
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1086 ../addons/sell-
3432
+ #: content/myCRED-addon-sell-content.php:1172
3433
  msgid "The following content is set for sale:"
3434
  msgstr "Le contenu suivant est prévu à la vente:"
3435
 
3436
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1232
3437
  msgid "Purchased"
3438
  msgstr "Acheté"
3439
 
3446
  msgstr "Vous avez dépass&eacute; votre limite de transfert %limit%."
3447
 
3448
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3449
+ #: php:2313
3450
  msgid "Transfer"
3451
  msgstr "Transférer"
3452
 
3485
  "autorisé avant qu'il ne soit activé."
3486
 
3487
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3488
+ #: php:1012
3489
  msgid "Insufficient Funds. Please try a lower amount."
3490
  msgstr ""
3491
 
3713
  msgid "Failed to update this uses balance."
3714
  msgstr "&Eacute;chec de la mise à jour de ce solde"
3715
 
3716
+ #: ../includes/mycred-admin.php:386
3717
  msgid "Excluded"
3718
  msgstr "Exclus"
3719
 
3720
+ #: ../includes/mycred-admin.php:396
3721
  #, php-format
3722
  msgid "Total: %s"
3723
  msgstr ""
3724
 
3725
+ #: ../includes/mycred-admin.php:405
 
 
 
 
 
3726
  msgid "Adjust"
3727
  msgstr "Ajustement"
3728
 
3729
+ #: ../includes/mycred-admin.php:443 ../includes/mycred-admin.php:444
3730
  msgid "Edit Balance"
3731
  msgstr ""
3732
 
3733
+ #: ../includes/mycred-admin.php:462
3734
  msgid "Profile"
3735
  msgstr ""
3736
 
3737
+ #: ../includes/mycred-admin.php:469
3738
  msgid "Extended Profile"
3739
  msgstr ""
3740
 
3741
+ #: ../includes/mycred-admin.php:559
3742
  #, php-format
3743
  msgid "This user is excluded from using %s"
3744
  msgstr ""
3745
 
3746
+ #: ../includes/mycred-admin.php:582
3747
  msgid "Edit User"
3748
  msgstr ""
3749
 
3750
+ #: ../includes/mycred-admin.php:584
3751
  msgctxt "user"
3752
  msgid "Add New"
3753
  msgstr ""
3754
 
3755
+ #: ../includes/mycred-admin.php:586
3756
  msgctxt "user"
3757
  msgid "Add Existing"
3758
  msgstr ""
3759
 
3760
+ #: ../includes/mycred-admin.php:597
3761
  #, php-format
3762
  msgid "Total %s Accumulated"
3763
  msgstr ""
3764
 
3765
+ #: ../includes/mycred-admin.php:598
3766
  #, php-format
3767
  msgid "Total %s Spent"
3768
  msgstr ""
3769
 
3770
+ #: ../includes/mycred-admin.php:609
3771
  msgid "View History"
3772
  msgstr ""
3773
 
3774
+ #: ../includes/mycred-admin.php:610
3775
  msgid "Exclude User"
3776
  msgstr ""
3777
 
3778
+ #: ../includes/mycred-admin.php:614
3779
  msgid "Adjust Balance"
3780
  msgstr ""
3781
 
3782
+ #: ../includes/mycred-admin.php:623
3783
  msgid ""
3784
  "Warning! Excluding this user will result in their balance being deleted "
3785
  "along with any entries currently in your log! This can not be undone!"
3786
  msgstr ""
3787
 
3788
+ #: ../includes/mycred-admin.php:681
3789
  #, php-format
3790
  msgid "%singular% balance"
3791
  msgstr "solde de %singular%"
3792
 
3793
+ #: ../includes/mycred-admin.php:721 ../includes/mycred-admin.php:755
3794
  msgid "Update Balance"
3795
  msgstr "Mettre à jour le solde"
3796
 
3797
+ #: ../includes/mycred-admin.php:747
3798
  msgid "ID"
3799
  msgstr "ID"
3800
 
3801
+ #: ../includes/mycred-admin.php:753
3802
  msgid "A positive or negative value"
3803
  msgstr "Une valeur positive ou négative"
3804
 
3850
  msgid "Available Template Tags:"
3851
  msgstr "Mots clés de template disponibles"
3852
 
3853
+ #: ../includes/mycred-functions.php:1673
3854
  msgid "Entire Log"
3855
  msgstr "Tout le journal"
3856
 
3857
+ #: ../includes/mycred-functions.php:1678 ../includes/mycred-functions.php:1679
3858
  msgid "Displayed Rows"
3859
  msgstr "Colonnes affichées"
3860
 
3861
+ #: ../includes/mycred-functions.php:1686
3862
  msgid "Search Results"
3863
  msgstr "Résultats de la recherche"
3864
 
3865
+ #: ../includes/mycred-functions.php:1687
3866
  msgid "My Entire Log"
3867
  msgstr "Mon journal complet"
3868
 
3869
+ #: ../includes/mycred-functions.php:1808
3870
  msgid "ref empty"
3871
  msgstr "ref est vide"
3872
 
3873
+ #: ../includes/mycred-functions.php:1816
3874
  msgid "incorrect user id format"
3875
  msgstr "format du ID utilisateur incorrect"
3876
 
3877
+ #: ../includes/mycred-functions.php:1829
3878
  msgid "incorrect unix timestamp (from):"
3879
  msgstr "Horodatage unix incorrect (from):"
3880
 
3881
+ #: ../includes/mycred-functions.php:1838
3882
  msgid "incorrect unix timestamp (to):"
3883
  msgstr "Horodatage unix incorrect (to):"
3884
 
3885
+ #: ../includes/mycred-functions.php:2200
3886
  msgid "Website Registration"
3887
  msgstr ""
3888
 
3889
+ #: ../includes/mycred-functions.php:2201
3890
  msgid "Website Visit"
3891
  msgstr ""
3892
 
3893
+ #: ../includes/mycred-functions.php:2202
3894
  msgid "Viewing Content (Member)"
3895
  msgstr ""
3896
 
3897
+ #: ../includes/mycred-functions.php:2203
3898
  msgid "Viewing Content (Author)"
3899
  msgstr ""
3900
 
3901
+ #: ../includes/mycred-functions.php:2204
3902
  msgid "Logging in"
3903
  msgstr ""
3904
 
3905
+ #: ../includes/mycred-functions.php:2205
3906
  msgid "Publishing Content"
3907
  msgstr ""
3908
 
3909
+ #: ../includes/mycred-functions.php:2206 ../modules/mycred-module-hooks.php:1421
3910
  msgid "Approved Comment"
3911
  msgstr "Commentaire approuvé"
3912
 
3913
+ #: ../includes/mycred-functions.php:2207
3914
  msgid "Unapproved Comment"
3915
  msgstr ""
3916
 
3917
+ #: ../includes/mycred-functions.php:2208
3918
  msgid "SPAM Comment"
3919
  msgstr ""
3920
 
3921
+ #: ../includes/mycred-functions.php:2209
3922
  msgid "Deleted Comment"
3923
  msgstr ""
3924
 
3925
+ #: ../includes/mycred-functions.php:2210
3926
  msgid "Link Click"
3927
  msgstr ""
3928
 
3929
+ #: ../includes/mycred-functions.php:2211
3930
  msgid "Watching Video"
3931
  msgstr ""
3932
 
3933
+ #: ../includes/mycred-functions.php:2212
3934
  msgid "Visitor Referral"
3935
  msgstr ""
3936
 
3937
+ #: ../includes/mycred-functions.php:2213
3938
  msgid "Signup Referral"
3939
  msgstr ""
3940
 
3941
+ #: ../includes/mycred-functions.php:2217
3942
  msgid "New Profile Update"
3943
  msgstr ""
3944
 
3945
+ #: ../includes/mycred-functions.php:2218
3946
  msgid "Avatar Upload"
3947
  msgstr ""
3948
 
3949
+ #: ../includes/mycred-functions.php:2219
3950
  msgid "New Friendship"
3951
  msgstr ""
3952
 
3953
+ #: ../includes/mycred-functions.php:2220
3954
  msgid "Ended Friendship"
3955
  msgstr ""
3956
 
3957
+ #: ../includes/mycred-functions.php:2221
3958
  msgid "New Profile Comment"
3959
  msgstr ""
3960
 
3961
+ #: ../includes/mycred-functions.php:2222
3962
  msgid "Profile Comment Deletion"
3963
  msgstr ""
3964
 
3965
+ #: ../includes/mycred-functions.php:2223
3966
  msgid "New Message"
3967
  msgstr ""
3968
 
3969
+ #: ../includes/mycred-functions.php:2224
3970
  msgid "Sending Gift"
3971
  msgstr ""
3972
 
3973
+ #: ../includes/mycred-functions.php:2225
3974
  msgid "New Group"
3975
  msgstr ""
3976
 
3977
+ #: ../includes/mycred-functions.php:2226
3978
  msgid "Deleted Group"
3979
  msgstr ""
3980
 
3981
+ #: ../includes/mycred-functions.php:2227
3982
  msgid "New Group Forum Topic"
3983
  msgstr ""
3984
 
3985
+ #: ../includes/mycred-functions.php:2228
3986
  msgid "Edit Group Forum Topic"
3987
  msgstr ""
3988
 
3989
+ #: ../includes/mycred-functions.php:2229
3990
  msgid "New Group Forum Post"
3991
  msgstr ""
3992
 
3993
+ #: ../includes/mycred-functions.php:2230
3994
  msgid "Edit Group Forum Post"
3995
  msgstr ""
3996
 
3997
+ #: ../includes/mycred-functions.php:2231
3998
  msgid "Joining Group"
3999
  msgstr ""
4000
 
4001
+ #: ../includes/mycred-functions.php:2232
4002
  msgid "Leaving Group"
4003
  msgstr ""
4004
 
4005
+ #: ../includes/mycred-functions.php:2233
4006
  msgid "New Group Avatar"
4007
  msgstr ""
4008
 
4009
+ #: ../includes/mycred-functions.php:2234
4010
  msgid "New Group Comment"
4011
  msgstr ""
4012
 
4013
+ #: ../includes/mycred-functions.php:2238 ../plugins/mycred-hook-buddypress-media.
4014
  #: php:166
4015
  msgid "Photo Upload"
4016
  msgstr "Télécharger la photo"
4017
 
4018
+ #: ../includes/mycred-functions.php:2239 ../plugins/mycred-hook-buddypress-media.
4019
  #: php:176
4020
  msgid "Video Upload"
4021
  msgstr "Télécharger la vidéo"
4022
 
4023
+ #: ../includes/mycred-functions.php:2240 ../plugins/mycred-hook-buddypress-media.
4024
  #: php:186
4025
  msgid "Music Upload"
4026
  msgstr "Télécharger la musique"
4027
 
4028
+ #: ../includes/mycred-functions.php:2244
4029
  msgid "New Link"
4030
  msgstr ""
4031
 
4032
+ #: ../includes/mycred-functions.php:2245
4033
  msgid "Link Voting"
4034
  msgstr ""
4035
 
4036
+ #: ../includes/mycred-functions.php:2246
4037
  msgid "Link Update"
4038
  msgstr ""
4039
 
4040
+ #: ../includes/mycred-functions.php:2250
4041
  msgid "New Forum (bbPress)"
4042
  msgstr ""
4043
 
4044
+ #: ../includes/mycred-functions.php:2251
4045
  msgid "New Forum Topic (bbPress)"
4046
  msgstr ""
4047
 
4048
+ #: ../includes/mycred-functions.php:2252
4049
  msgid "Favorited Topic (bbPress)"
4050
  msgstr ""
4051
 
4052
+ #: ../includes/mycred-functions.php:2253
4053
  msgid "New Topic Reply (bbPress)"
4054
  msgstr ""
4055
 
4056
+ #: ../includes/mycred-functions.php:2257
4057
  msgid "Form Submission (Contact Form 7)"
4058
  msgstr ""
4059
 
4060
+ #: ../includes/mycred-functions.php:2260
4061
  msgid "Form Submission (Gravity Form)"
4062
  msgstr ""
4063
 
4064
+ #: ../includes/mycred-functions.php:2263
4065
  msgid "New Forum Topic (SimplePress)"
4066
  msgstr ""
4067
 
4068
+ #: ../includes/mycred-functions.php:2264
4069
  msgid "New Forum Post (SimplePress)"
4070
  msgstr ""
4071
 
4072
+ #: ../includes/mycred-functions.php:2268
4073
  msgid "Poll Voting"
4074
  msgstr ""
4075
 
4076
+ #: ../includes/mycred-functions.php:2271
4077
  msgid "Sending an Invite"
4078
  msgstr ""
4079
 
4080
+ #: ../includes/mycred-functions.php:2272
4081
  msgid "Accepting an Invite"
4082
  msgstr ""
4083
 
4084
+ #: ../includes/mycred-functions.php:2278
4085
  msgid "Banking Payout"
4086
  msgstr ""
4087
 
4088
+ #: ../includes/mycred-functions.php:2281
4089
  msgid "buyCRED Purchase (PayPal Standard)"
4090
  msgstr ""
4091
 
4092
+ #: ../includes/mycred-functions.php:2282
4093
  msgid "buyCRED Purchase (Skrill)"
4094
  msgstr ""
4095
 
4096
+ #: ../includes/mycred-functions.php:2283
4097
  msgid "buyCRED Purchase (Zombaio)"
4098
  msgstr ""
4099
 
4100
+ #: ../includes/mycred-functions.php:2284
4101
  msgid "buyCRED Purchase (NETBilling)"
4102
  msgstr ""
4103
 
4104
+ #: ../includes/mycred-functions.php:2285
4105
  msgid "buyCRED Purchase (BitPay)"
4106
  msgstr ""
4107
 
4108
+ #: ../includes/mycred-functions.php:2290
4109
  msgid "Coupon Purchase"
4110
  msgstr ""
4111
 
4112
+ #: ../includes/mycred-functions.php:2293
4113
  msgid "Store Purchase (WooCommerce)"
4114
  msgstr ""
4115
 
4116
+ #: ../includes/mycred-functions.php:2294
4117
  msgid "Store Purchase (MarketPress)"
4118
  msgstr ""
4119
 
4120
+ #: ../includes/mycred-functions.php:2295
4121
  msgid "Store Purchase (WP E-Commerce)"
4122
  msgstr ""
4123
 
4124
+ #: ../includes/mycred-functions.php:2300
4125
  msgid "Event Payment (Event Espresso)"
4126
  msgstr ""
4127
 
4128
+ #: ../includes/mycred-functions.php:2301
4129
  msgid "Event Sale (Event Espresso)"
4130
  msgstr ""
4131
 
4132
+ #: ../includes/mycred-functions.php:2305
4133
  msgid "Event Payment (Events Manager)"
4134
  msgstr ""
4135
 
4136
+ #: ../includes/mycred-functions.php:2306
4137
  msgid "Event Sale (Events Manager)"
4138
  msgstr ""
4139
 
4140
+ #: ../includes/mycred-functions.php:2310
4141
  msgid "Content Purchase / Sale"
4142
  msgstr ""
4143
 
4144
+ #: ../includes/mycred-functions.php:2317
4145
  msgid "Manual Adjustment by Admin"
4146
  msgstr ""
4147
 
4316
  "maximum pouvant être dépensé, transféré ou reçu. Utilisez zéro pour "
4317
  "désactiver l'option."
4318
 
4319
+ #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
4320
+ msgid "Excludes"
4321
+ msgstr "Exclure"
4322
+
4323
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4324
  msgid "Exclude those who can \"Edit Settings\"."
4325
  msgstr "Exclure ceux qui peuvent \"modifier les réglages\"."
4429
  msgid "Entry"
4430
  msgstr "Motif"
4431
 
4432
+ #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:468
4433
  msgid "User Missing"
4434
  msgstr "Utilisateur inexistant"
4435
 
4628
  "empêcher des appels malicieux qui tenteraient de s'informer sur votre "
4629
  "installation&nbsp;!"
4630
 
4631
+ #: ../includes/mycred-shortcodes.php:154
4632
  msgid "Leaderboard is empty."
4633
  msgstr "Aucun classement à afficher."
4634
 
4635
+ #: ../includes/mycred-shortcodes.php:425 ../includes/mycred-shortcodes.php:549
4636
  msgid "Amount missing!"
4637
  msgstr "Montant absent !"
4638
 
4639
+ #: ../includes/mycred-shortcodes.php:428 ../includes/mycred-shortcodes.php:557
4640
  msgid "Log Template Missing!"
4641
  msgstr "Rapport absent !"
4642
 
4643
+ #: ../includes/mycred-shortcodes.php:491
4644
  msgid "Anchor missing URL!"
4645
  msgstr "L'ancre de l'URL est absente !"
4646
 
4647
+ #: ../includes/mycred-shortcodes.php:553
4648
  msgid "User ID missing for recipient."
4649
  msgstr "L'ID du destinataire est absente !"
4650
 
4651
+ #: ../includes/mycred-shortcodes.php:608
4652
  msgid "Sent"
4653
  msgstr "Envoyer"
4654
 
4655
+ #: ../includes/mycred-shortcodes.php:609
4656
  msgid "Error - Try Again"
4657
  msgstr "Erreur - essayez encore une fois"
4658
 
4659
+ #: ../includes/mycred-shortcodes.php:718
4660
  msgid "A video ID is required for this shortcode"
4661
  msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
4662
 
4663
+ #: ../includes/mycred-shortcodes.php:864 ../includes/mycred-shortcodes.php:958
4664
  msgid "Point types not found."
4665
  msgstr ""
4666
 
4667
+ #: ../includes/mycred-shortcodes.php:870 ../includes/mycred-shortcodes.php:878 ..
4668
+ #: includes/mycred-shortcodes.php:970 ../includes/mycred-shortcodes.php:990
4669
  #, php-format
4670
  msgid "You are excluded from using %s."
4671
  msgstr ""
4672
 
4673
+ #: ../includes/mycred-shortcodes.php:874 ../includes/mycred-shortcodes.php:980
4674
  msgid "Your balance is too low to use this feature."
4675
  msgstr ""
4676
 
4677
+ #: ../includes/mycred-shortcodes.php:895
4678
  #, php-format
4679
  msgid "Convert <span>%s</span> to <span>%s</span>"
4680
  msgstr ""
4681
 
4682
+ #: ../includes/mycred-shortcodes.php:904
4683
  #, php-format
4684
  msgid "Your current %s balance"
4685
  msgstr ""
4686
 
4687
+ #: ../includes/mycred-shortcodes.php:912
4688
  #, php-format
4689
  msgid "Minimum %s"
4690
  msgstr ""
4691
 
4692
+ #: ../includes/mycred-shortcodes.php:916
4693
  #, php-format
4694
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4695
  msgstr ""
4696
 
4697
+ #: ../includes/mycred-shortcodes.php:922
4698
  msgid "Exchange"
4699
  msgstr ""
4700
 
4701
+ #: ../includes/mycred-shortcodes.php:1003
4702
  #, php-format
4703
  msgid "You must exchange at least %s!"
4704
  msgstr ""
4705
 
4706
+ #: ../includes/mycred-shortcodes.php:1025
4707
  #, php-format
4708
  msgid "Exchange from %s"
4709
  msgstr ""
4710
 
4711
+ #: ../includes/mycred-shortcodes.php:1037
4712
  #, php-format
4713
  msgid "Exchange to %s"
4714
  msgstr ""
4715
 
4716
+ #: ../includes/mycred-shortcodes.php:1045
4717
  #, php-format
4718
  msgid "You have successfully exchanged %s into %s."
4719
  msgstr ""
5020
  msgid "Give your users badges based on their interaction with your website."
5021
  msgstr ""
5022
 
5023
+ #: ../modules/mycred-module-addons.php:158
5024
+ msgid "Setup recurring payouts or offer / charge interest on user account balances."
5025
+ msgstr ""
5026
+ "Paramétrez les paiements réguliers ou offres / pénalités et intérêts "
5027
+ "relatifs aux soldes de comptes de vos utilisateurs."
5028
+
5029
  #: ../modules/mycred-module-addons.php:169
5030
  msgid ""
5031
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5367
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5368
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5369
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5370
+ #: 2645 ../modules/mycred-module-hooks.php:2674 ../plugins/mycred-hook-badgeOS.
5371
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5372
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5373
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
5429
  msgid "%plural% for viewing %s"
5430
  msgstr ""
5431
 
5432
+ #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2653
5433
+ #: ../modules/mycred-module-hooks.php:2682 ../plugins/mycred-hook-invite-anyone.
5434
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5435
  msgid "Limit"
5436
  msgstr "Limite d'attribution"
5522
  msgid "Custom tags: %url%, %title% or %id%."
5523
  msgstr "Mots clés pouvant être utilisé ici: %url%, %title% ou %id%."
5524
 
5525
+ #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2756
5526
  msgid "Note!"
5527
  msgstr "Information&nbsp;!"
5528
 
5605
  msgid "Link"
5606
  msgstr "Lien"
5607
 
5608
+ #: ../modules/mycred-module-hooks.php:2639
5609
  msgid "Referring Visitors"
5610
  msgstr "Visiteurs réferants"
5611
 
5612
+ #: ../modules/mycred-module-hooks.php:2663 ../modules/mycred-module-hooks.php:2692
5613
  msgid "The number of referrals each member can make. Use zero for unlimited."
5614
  msgstr ""
5615
  "Le nombre de renvois que chaque membre peut faire. Utilisez zéro pour "
5616
  "illimité."
5617
 
5618
+ #: ../modules/mycred-module-hooks.php:2667 ../modules/mycred-module-hooks.php:2696
5619
  msgid "Referring Signups"
5620
  msgstr "Inscriptions référentes"
5621
 
5622
+ #: ../modules/mycred-module-hooks.php:2671
5623
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5624
  msgstr ""
5625
  "Les visiteurs ayant désactivés les cookies ne pourront pas attribuer de "
5626
  "%_plural%."
5627
 
5628
+ #: ../modules/mycred-module-hooks.php:2698
5629
  msgid "Registrations are disabled."
5630
  msgstr "Les inscriptions sont désactivées."
5631
 
5632
+ #: ../modules/mycred-module-hooks.php:2705
5633
  msgid "Referral Links"
5634
  msgstr "Liens référents"
5635
 
5636
+ #: ../modules/mycred-module-hooks.php:2709
5637
  msgid "Assign numeric referral IDs to each user."
5638
  msgstr "Assigner un ID de référence numérique à chaque utilisateur."
5639
 
5640
+ #: ../modules/mycred-module-hooks.php:2710 ../modules/mycred-module-hooks.php:2716
5641
  msgid "Example"
5642
  msgstr "Exemple"
5643
 
5644
+ #: ../modules/mycred-module-hooks.php:2715
5645
  msgid "Assign usernames as IDs for each user."
5646
  msgstr "Assigner son nom d'utilisateur comme ID à chaque utilisateur."
5647
 
5648
+ #: ../modules/mycred-module-hooks.php:2719
5649
  msgid "IP Limit"
5650
  msgstr "Limite IP"
5651
 
5652
+ #: ../modules/mycred-module-hooks.php:2723
5653
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5654
  msgstr ""
5655
  "Le nombre de fois que chaque adresse IP se voit attribuer des %_plural%. "
5656
  "Indiquez 0 pour un nombre illimité."
5657
 
5658
+ #: ../modules/mycred-module-hooks.php:2727 ../modules/mycred-module-hooks.php:2760
5659
  msgid "BuddyPress Profile"
5660
  msgstr "Profil BuddyPress"
5661
 
5662
+ #: ../modules/mycred-module-hooks.php:2730
5663
  msgid "Insert Link in users Profile"
5664
  msgstr "Insérer un lien sur le Profil des utilisateurs"
5665
 
5666
+ #: ../modules/mycred-module-hooks.php:2731
5667
  msgid ""
5668
  "Option to inser the referral link in users profiles. Links will only be "
5669
  "visible to users viewing their own profiles or administrators."
5672
  "visible que par l'utilisateur sur son propre profil et pour les "
5673
  "administrateurs du site."
5674
 
5675
+ #: ../modules/mycred-module-hooks.php:2737
5676
  msgid "Leave empty to hide."
5677
  msgstr "Laissez vide pour masquer"
5678
 
5679
+ #: ../modules/mycred-module-hooks.php:2740
5680
  msgid "Description"
5681
  msgstr "Description"
5682
 
5683
+ #: ../modules/mycred-module-hooks.php:2741
5684
  msgid "Optional description to insert under the link."
5685
  msgstr "Description facultative qui apparaîtra sous le lien"
5686
 
5687
+ #: ../modules/mycred-module-hooks.php:2753
5688
  msgid "Profile Positioning"
5689
  msgstr "Position sur le Profil"
5690
 
5691
+ #: ../modules/mycred-module-hooks.php:2755
5692
  msgid ""
5693
  "You can move around the referral link on your users profile by changing the "
5694
  "position. Increase to move up, decrease to move down."
5696
  "Vous pouvez déplacer le lien de référence sur votre profil en modifiant sa "
5697
  "position vers le haut ou le bas."
5698
 
5699
+ #: ../modules/mycred-module-hooks.php:2756
5700
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5701
  msgstr ""
5702
  "Vous ne pouvez pas déplacer le lien de référence au-dessus du champ de "
5703
  "profil \"Base\" "
5704
 
5705
+ #: ../modules/mycred-module-hooks.php:2762
5706
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5707
  msgstr "Nécessite l'activation du composant Profils Etendus de BuddyPress"
5708
 
5727
  msgid "Entries"
5728
  msgstr "Entrées"
5729
 
5730
+ #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
5731
+ #: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:574
5732
  msgid "Export"
5733
  msgstr "Exporter"
5734
 
5736
  msgid "Search results for"
5737
  msgstr "Résultat de la recherche pour"
5738
 
5739
+ #: ../modules/mycred-module-log.php:378
5740
  #, php-format
5741
  msgid "%s Log"
5742
  msgstr "Journal %s"
5743
 
5744
+ #: ../modules/mycred-module-log.php:506
5745
  msgid "Edit"
5746
  msgstr "Modifier"
5747
 
5748
+ #: ../modules/mycred-module-log.php:547
5749
  msgid "Time"
5750
  msgstr "Durée"
5751
 
5752
+ #: ../modules/mycred-module-log.php:551
5753
  msgid "Current Log Entry"
5754
  msgstr "Entrée actuelle"
5755
 
5756
+ #: ../modules/mycred-module-log.php:553
5757
  msgid "The current saved log entry"
5758
  msgstr "L'entrée sauvegardée actuelle"
5759
 
5760
+ #: ../modules/mycred-module-log.php:556
5761
  msgid "Adjust Log Entry"
5762
  msgstr "Ajuster le journal"
5763
 
5764
+ #: ../modules/mycred-module-log.php:558
5765
  msgid "The new log entry"
5766
  msgstr "La nouvelle entrée de journal"
5767
 
5768
+ #: ../modules/mycred-module-log.php:561
5769
  msgid "Update Log Entry"
5770
  msgstr "Mettre à jour le journal"
5771
 
5772
+ #: ../modules/mycred-module-log.php:628
5773
  #, php-format
5774
  msgid "My %s History"
5775
  msgstr "Mon historique %s"
6498
  #: ../plugins/mycred-hook-wp-polls.php:19
6499
  #, php-format
6500
  msgid "Awards %_plural% for users voting in polls."
6501
+ msgstr ""
6502
+ "Attribuer des %_plural% aux utilisateurs répondants aux sondages.Attribuer "
6503
+ "des %_plural% aux utilisateurs répondants aux sondages."
lang/mycred-pt_BR.mo CHANGED
Binary file
lang/mycred-pt_BR.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 Jul 28 2014 16:21:39 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Portuguese (Brazil)\n"
@@ -15,7 +15,7 @@ msgstr ""
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__nget1,2;__ngettext_noop:1,2;"
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
@@ -44,8 +44,8 @@ msgstr "Pessoas incríveis"
44
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
45
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
46
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
47
- #: sell-content.php:364 ../addons/transfer/myCRED-addon-transfer.php:132 ..
48
- #: includes/mycred-shortcodes.php:605
49
  msgid "Processing..."
50
  msgstr "Processando..."
51
 
@@ -151,7 +151,7 @@ msgid "Once per day (reset at midnight)"
151
  msgstr "Uma vez por dia (reiniciar a meia-noite)"
152
 
153
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
154
- #: abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
155
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
157
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
@@ -177,8 +177,8 @@ msgstr "clique para fechar"
177
  msgid "click to open"
178
  msgstr "clique para abrir"
179
 
180
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-
181
- #: banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:849
182
  msgid "Settings Updated"
183
  msgstr "Configurações atualizadas"
184
 
@@ -383,144 +383,190 @@ msgstr ""
383
  msgid "in total"
384
  msgstr ""
385
 
386
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-
387
- #: banking.php:43 ../addons/banking/myCRED-addon-banking.php:44
388
  msgid "Banking"
389
  msgstr "Banco"
390
 
391
- #: ../addons/banking/myCRED-addon-banking.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
392
  msgid "Compound Interest"
393
  msgstr "Juros compostos"
394
 
395
- #: ../addons/banking/myCRED-addon-banking.php:104
396
  #, php-format
397
- msgid ""
398
- "Apply an interest rate on your users %_plural% balances. Interest rate is "
399
- "annual and is compounded daily as long as this service is enabled. Positive "
400
- "interest rate leads to users gaining %_plural% while a negative interest "
401
- "rate will to users loosing %_plural%."
402
- msgstr ""
403
- "Aplicar uma taxa de juros sobre o saldos de %_plural% dos seus usuários. A "
404
- "taxa de juros é anual e é composta diariamente, desde que este serviço "
405
- "esteja habilitado. Taxa de juros positiva leva os usuários a ganhar "
406
- "%_plural%, enquanto a taxa de juros negativa vai fazer com que os usuários "
407
- "percam %_plural%."
408
-
409
- #: ../addons/banking/myCRED-addon-banking.php:110
410
  msgid "Recurring Payouts"
411
  msgstr "Pagamentos recorrentes"
412
 
413
- #: ../addons/banking/myCRED-addon-banking.php:111
414
- #, php-format
415
- msgid ""
416
- "Give your users %_plural% on a regular basis with the option to set the "
417
- "number of times you want this payout to run (cycles)."
418
  msgstr ""
419
- "Dê aos seus usuários %_plural% em uma base regular, com a opção de definir o "
420
- "número de vezes que você quer que este pagamento seja executado (ciclos)."
421
 
422
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-
423
- #: addon-buy-creds.php:839 ../addons/buy-creds/myCRED-addon-buy-creds.php:935 ..
424
- #: includes/mycred-admin.php:573 ../includes/mycred-network.php:148 ..
425
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
426
- #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:579 ..
427
  #: modules/mycred-module-settings.php:312
428
  msgid "Access Denied"
429
  msgstr "Acesso negado"
430
 
431
- #: ../addons/banking/myCRED-addon-banking.php:167
432
  #, php-format
433
  msgid "%s Banking"
434
  msgstr "%s Banking"
435
 
436
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.
437
- #: php:158
438
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
439
  msgstr ""
440
- "Configurar pagamentos recorrentes ou ofertas / cobrar juros sobre o saldo da "
441
- "conta do usuário."
442
 
443
- #: ../addons/banking/myCRED-addon-banking.php:171
444
  msgid "WP-Cron deactivation detected!"
445
  msgstr "WP-Cron encontra-se desativado!"
446
 
447
- #: ../addons/banking/myCRED-addon-banking.php:172
448
  msgid "Warning! This add-on requires WP - Cron to work."
449
  msgstr "Aviso! Este add-on requer o WP - Cron para funcionar."
450
 
451
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-
452
- #: addon-buy-creds.php:873 ../modules/mycred-module-hooks.php:196
453
  msgid "Enable"
454
  msgstr "Habilitar"
455
 
456
- #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
457
  #: php:211
458
  msgid "Update Changes"
459
  msgstr "Alterações atualizadas"
460
 
461
- #: ../addons/banking/abstracts/mycred-abstract-service.php:57
462
- msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
463
- msgstr "A função myCRED_Service::run() deve ser cancelada em uma sub-classe."
464
-
465
- #: ../addons/banking/abstracts/mycred-abstract-service.php:66
466
  msgid "This Service has no settings"
467
  msgstr "Este serviço não tem configurações"
468
 
469
- #: ../addons/banking/abstracts/mycred-abstract-service.php:143
470
  msgid "Hourly"
471
  msgstr "De hora em hora"
472
 
473
- #: ../addons/banking/abstracts/mycred-abstract-service.php:147
474
  msgid "Daily"
475
  msgstr "Diariamente"
476
 
477
- #: ../addons/banking/abstracts/mycred-abstract-service.php:151
478
  msgid "Weekly"
479
  msgstr "Semanal"
480
 
481
- #: ../addons/banking/abstracts/mycred-abstract-service.php:155
482
  msgid "Monthly"
483
  msgstr "Mensal"
484
 
485
- #: ../addons/banking/abstracts/mycred-abstract-service.php:159
486
  msgid "Quarterly"
487
  msgstr "Trimestral"
488
 
489
- #: ../addons/banking/abstracts/mycred-abstract-service.php:163
490
  msgid "Semiannually"
491
  msgstr "Semestral"
492
 
493
- #: ../addons/banking/abstracts/mycred-abstract-service.php:167
494
  msgid "Annually"
495
  msgstr "Anualmente"
496
 
497
- #: ../addons/banking/services/mycred-bank-service-interest.php:25
 
 
 
 
 
 
 
 
 
 
 
 
498
  msgid "%plural% interest rate payment"
499
  msgstr "Pagamento de %plural% da taxa de juro"
500
 
501
- #: ../addons/banking/services/mycred-bank-service-interest.php:275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
502
  msgid "Interest Rate"
503
  msgstr "Taxa de juros"
504
 
505
- #: ../addons/banking/services/mycred-bank-service-interest.php:282
506
- msgid "Payed / Charged"
507
- msgstr "Pago / Cobrado"
508
-
509
- #: ../addons/banking/services/mycred-bank-service-interest.php:288
510
- msgid "The interest rate can be either positive or negative and is compounded daily."
511
- msgstr "A taxa de juros pode ser positiva ou negativa e é composta diariamente."
512
 
513
- #: ../addons/banking/services/mycred-bank-service-interest.php:291 ..
514
- #: addons/coupons/myCRED-addon-coupons.php:392
515
- msgid "Minimum Balance"
516
- msgstr "Saldo mínimo"
517
 
518
- #: ../addons/banking/services/mycred-bank-service-interest.php:295
519
- msgid "The minimum requires balance for interest to apply."
520
- msgstr "Saldo mínimo necessário para aplicar os juros."
 
521
 
522
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ..
523
- #: addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-
524
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
525
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
526
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
@@ -538,95 +584,119 @@ msgstr "Saldo mínimo necessário para aplicar os juros."
538
  msgid "Log Template"
539
  msgstr "Modelo de registro"
540
 
541
- #: ../addons/banking/services/mycred-bank-service-interest.php:305 ..
542
- #: addons/banking/services/mycred-bank-service-payouts.php:259
543
- msgid "Run Time"
544
- msgstr "Tempo de execução"
 
545
 
546
- #: ../addons/banking/services/mycred-bank-service-interest.php:309 ..
547
- #: addons/banking/services/mycred-bank-service-payouts.php:263
548
- msgid ""
549
- "For large websites, if you are running into time out issues during payouts, "
550
- "you can set the number of seconds a process can run. Use zero for unlimited, "
551
- "but be careful especially if you are on a shared server."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
552
  msgstr ""
553
- "Para grandes sites, se você estiver tendo problemas de tempo de execução "
554
- "durante os pagamentos, você poderá definir o número de segundos que um "
555
- "processo pode ser executado. Use zero para ilimitado, mas tenha cuidado, "
556
- "especialmente se você estiver em um servidor compartilhado."
557
 
558
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
559
  msgid "Daily %_plural%"
560
  msgstr "%_plural% diários"
561
 
562
- #: ../addons/banking/services/mycred-bank-service-payouts.php:214
563
- msgid "Not yet run"
564
- msgstr "Ainda não executado"
 
 
 
 
 
 
 
 
 
 
565
 
566
- #: ../addons/banking/services/mycred-bank-service-payouts.php:219
567
  msgid "Pay Users"
568
  msgstr "Usuários pagantes"
569
 
570
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
571
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
572
- #: creds.php:1520 ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ..
573
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
574
- #: includes/mycred-admin.php:726 ../includes/mycred-admin.php:771 ..
575
- #: includes/mycred-shortcodes.php:908
576
  msgid "Amount"
577
  msgstr "Quantia"
578
 
579
- #: ../addons/banking/services/mycred-bank-service-payouts.php:224
580
- msgid "Can not be zero."
581
- msgstr "Não pode ser zero."
582
-
583
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ..
584
- #: addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-
585
- #: module-hooks.php:2113
586
  msgid "Interval"
587
  msgstr "Intervalo"
588
 
589
- #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ..
590
- #: addons/banking/services/mycred-bank-service-payouts.php:242
591
  msgid "Cycles"
592
  msgstr "Ciclos"
593
 
594
- #: ../addons/banking/services/mycred-bank-service-payouts.php:235
595
  msgid "Set to -1 for unlimited"
596
  msgstr "Defina como -1 para ilimitado"
597
 
598
- #: ../addons/banking/services/mycred-bank-service-payouts.php:238
599
- msgid "Last Run / Activated"
600
- msgstr "Última vez executado / Ativado"
601
-
602
- #: ../addons/banking/services/mycred-bank-service-payouts.php:241
603
- msgid ""
604
- "Select how often you want to award %_plural%. Note that when this service is "
605
- "enabled, the first payout will be in the beginning of the next period. So "
606
- "with a \"Daily\" interval, the first payout will occur first thing in the "
607
- "morning."
608
- msgstr ""
609
- "Escolha quantas vezes você quer recompensa de %_plural%. Note que quando "
610
- "este serviço estiver ativado, o primeiro pagamento será no início do próximo "
611
- "período. Assim, com o intervalo \"Daily\", o primeiro pagamento ocorrerá logo "
612
- "no início da manhã."
613
-
614
- #: ../addons/banking/services/mycred-bank-service-payouts.php:242
615
- msgid ""
616
- "Cycles let you choose how many intervals this service should run. Each time "
617
- "a cycle runs, the value will decrease until it hits zero, in which case this "
618
- "service will deactivate itself. Use -1 to run unlimited times."
619
- msgstr ""
620
- "Ciclos deixa você escolher quantos intervalos este serviço deve ser "
621
- "executado. Cada vez que um ciclo é executado, o valor diminuirá até chegar a "
622
- "zero, em alguns casos este serviço será desativado. Use -1 para executar "
623
- "ilimitadas vezes."
624
-
625
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
626
  msgid "Important"
627
  msgstr "Importante"
628
 
629
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
630
  msgid ""
631
  "You can always stop payouts by deactivating this service. Just remember that "
632
  "if you deactivate while there are cycles left, this service will continue on "
@@ -636,19 +706,6 @@ msgstr ""
636
  "que caso você desative durante um ciclo, este serviço continuará quando for "
637
  "reativado. Defina os ciclos como zero para reiniciar."
638
 
639
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
640
- #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
641
- msgid "Excludes"
642
- msgstr "Excluir"
643
-
644
- #: ../addons/banking/services/mycred-bank-service-payouts.php:249
645
- msgid ""
646
- "Comma separated list of user IDs to exclude from this service. No spaces "
647
- "allowed!"
648
- msgstr ""
649
- "Lista de IDs de usuário separada por virgula para excluir este serviço. "
650
- "Espaços não são permitidos!"
651
-
652
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
653
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
654
  msgid "Payment Gateways"
@@ -674,7 +731,7 @@ msgid "Edit Pending Payment"
674
  msgstr ""
675
 
676
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
677
- #: addon-buy-creds.php:1631
678
  msgid "No pending payments found"
679
  msgstr ""
680
 
@@ -683,23 +740,23 @@ msgid "Not found in Trash"
683
  msgstr ""
684
 
685
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
686
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595
687
  msgid "Transaction ID"
688
  msgstr "ID da transação"
689
 
690
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
691
- #: addon-buy-creds.php:984
692
  msgid "Buyer"
693
  msgstr ""
694
 
695
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
696
- #: addon-buy-creds.php:1598 ../addons/buy-creds/abstracts/mycred-abstract-payment-
697
  #: gateway.php:563
698
  msgid "Cost"
699
  msgstr "Preço"
700
 
701
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
702
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1596 ..
703
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
704
  msgid "Gateway"
705
  msgstr "Métodos de pagamento"
@@ -717,14 +774,14 @@ msgid "buyCRED Purchase Log"
717
  msgstr "Registro de compra do buyCRED"
718
 
719
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
720
- #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:845
721
  msgid "Purchase Log"
722
  msgstr "Registro de compra"
723
 
724
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
725
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
726
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
727
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:416
728
  msgid "Payments"
729
  msgstr "Pagamentos"
730
 
@@ -801,7 +858,7 @@ msgid "Allow users to buy %_plural% for content authors."
801
  msgstr "Permitir que usuários comprem %_plural% para os autores."
802
 
803
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
804
- #: hooks.php:2748
805
  msgid "Available Shortcodes"
806
  msgstr "Shortcodes disponíveis"
807
 
@@ -810,156 +867,151 @@ msgstr "Shortcodes disponíveis"
810
  msgid "%s Exchange Rate"
811
  msgstr ""
812
 
813
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:759 ../addons/sell-
814
- #: content/myCRED-addon-sell-content.php:113
815
- msgid "Leave empty to use the default value."
816
- msgstr ""
817
-
818
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
819
  msgid "Save Exchange Rates"
820
  msgstr ""
821
 
822
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
823
  msgid "Exchange rate override saved"
824
  msgstr ""
825
 
826
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:827
827
  msgid "Payment completed"
828
  msgstr ""
829
 
830
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
831
  #, php-format
832
  msgid "%s Payment Gateways"
833
  msgstr "%s Métodos de pagamento"
834
 
835
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845 ../addons/buy-creds/myCRED-
836
- #: addon-buy-creds.php:992
837
  msgid "buyCRED Settings"
838
  msgstr "Configurações do buyCRED"
839
 
840
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
841
  msgid "Test Mode"
842
  msgstr "Modo de teste"
843
 
844
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
845
  msgid "Enabled"
846
  msgstr "Habilitado"
847
 
848
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:871
849
  msgid "Disabled"
850
  msgstr "Desabilitado"
851
 
852
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
853
  msgid "Sandbox Mode"
854
  msgstr "Modo Sandbox"
855
 
856
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:884
857
  msgid "Enable for test purchases."
858
  msgstr "Habilitar para compras de teste."
859
 
860
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:901 ../addons/gateway/event-
861
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
862
  msgid "Update Settings"
863
  msgstr "Atualizar configurações"
864
 
865
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
866
  msgid "More Gateways"
867
  msgstr ""
868
 
869
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
870
  #: 634
871
  msgid "Date"
872
  msgstr "Data"
873
 
874
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
875
  msgid "Payed"
876
  msgstr "Pago"
877
 
878
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
879
  msgid "<strong>buy</strong>CRED Purchase Log"
880
  msgstr "Registro de compra do <strong>buy</strong>CRED"
881
 
882
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
883
  #: booking/mycred-eventespresso3.php:367
884
  msgid "Gateway Settings"
885
  msgstr "Configurações do método"
886
 
887
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1168 ../addons/sell-
888
- #: content/myCRED-addon-sell-content.php:1184
889
  msgid "No purchases found"
890
  msgstr "Nenhuma compra encontrada"
891
 
892
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1238 ../addons/buy-creds/myCRED-
893
- #: addon-buy-creds.php:1351
894
  msgid "This Add-on needs to setup before you can use this shortcode."
895
  msgstr "Este add-on precisa ser configurado antes de usar o shortcode."
896
 
897
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1257 ../addons/buy-creds/myCRED-
898
- #: addon-buy-creds.php:1370
899
  msgid "No gateways installed."
900
  msgstr "Nenhum método instalado."
901
 
902
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1258 ../addons/buy-creds/myCRED-
903
- #: addon-buy-creds.php:1371
904
  msgid "Gateway does not exist."
905
  msgstr "Método não existe."
906
 
907
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1306
908
  msgid "Yourself"
909
  msgstr "Você mesmo"
910
 
911
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1372
912
  msgid "No active gateways found."
913
  msgstr "Nenhum método ativo foi encontrado."
914
 
915
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1373
916
  msgid "The selected gateway is not active."
917
  msgstr "O método selecionado não está ativo."
918
 
919
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1420
920
  #, php-format
921
  msgid "Buy with %gateway%"
922
  msgstr "Compre com %gateway%"
923
 
924
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1426 ../addons/sell-
925
  #: content/myCRED-addon-sell-content.php:44
926
  msgid "Buy Now"
927
  msgstr "Comprar agora"
928
 
929
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1471
930
  msgid "No users found"
931
  msgstr "Nenhum usuário encontrado"
932
 
933
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1481
934
  msgid "To"
935
  msgstr "Para"
936
 
937
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1498
938
  msgid "Select Amount"
939
  msgstr "Selecionar a quantia"
940
 
941
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1522
942
  msgid "min."
943
  msgstr "min."
944
 
945
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1530
946
  msgid "Select Gateway"
947
  msgstr "Selecione o método"
948
 
949
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1571 ../addons/gateway/event-
950
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
951
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
952
  #: php:35
953
  msgid "Pay Now"
954
  msgstr "Pagar agora"
955
 
956
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1572 ../includes/mycred-install.
957
  #: php:515
958
  msgid "Cancel"
959
  msgstr "Cancelar"
960
 
961
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ../addons/ranks/myCRED-
962
- #: addon-ranks.php:990 ../modules/mycred-module-log.php:372 ../modules/mycred-
963
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
964
  msgid "Actions"
965
  msgstr "Ações"
@@ -999,12 +1051,12 @@ msgid "Cancel purchase"
999
  msgstr "Cancelar compra"
1000
 
1001
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1002
- #: includes/mycred-admin.php:720 ../includes/mycred-admin.php:757
1003
  msgid "required"
1004
  msgstr "obrigatório"
1005
 
1006
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1007
- #: includes/mycred-admin.php:722 ../includes/mycred-admin.php:759
1008
  msgid "optional"
1009
  msgstr "opcional"
1010
 
@@ -1405,7 +1457,7 @@ msgstr "Página de checkout"
1405
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1406
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1407
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1408
- #: modules/mycred-module-hooks.php:2713
1409
  msgid "Title"
1410
  msgstr "Título"
1411
 
@@ -1651,7 +1703,7 @@ msgstr "A quantidade de %plural% para que o cupom seja válido."
1651
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1652
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1653
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1654
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:404 ..
1655
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1656
  #: includes/importers/mycred-cubepoints.php:365
1657
  msgid "Point Type"
@@ -2062,8 +2114,8 @@ msgid "Sent To"
2062
  msgstr "Enviar para"
2063
 
2064
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2065
- #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:766 ..
2066
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:544
2067
  msgid "User"
2068
  msgstr "Usuário"
2069
 
@@ -2189,7 +2241,7 @@ msgstr "Salvar alterações"
2189
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2190
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2191
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2192
- #: php:412 ../includes/mycred-admin.php:614 ../includes/mycred-admin.php:767
2193
  msgid "Current Balance"
2194
  msgstr "Saldo atual"
2195
 
@@ -2313,7 +2365,7 @@ msgstr "Quanto é 1 %_singular% no valor em %currency%?"
2313
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2314
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2315
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2316
- #: php:578 ../includes/mycred-shortcodes.php:913
2317
  msgid "Exchange Rate"
2318
  msgstr "Taxa de câmbio"
2319
 
@@ -2542,10 +2594,6 @@ msgstr "Modelo de registro para pagamentos"
2542
  msgid "How much is 1 %s worth in %s"
2543
  msgstr "Qual é o valor de 1 %s em %s"
2544
 
2545
- #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2546
- msgid "Payout"
2547
- msgstr "Pagamento"
2548
-
2549
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2550
  msgid "Instructions"
2551
  msgstr "Instruções"
@@ -2620,8 +2668,8 @@ msgstr "Título para exibir nos recibos e registros"
2620
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2621
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2622
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2623
- #: content/myCRED-addon-sell-content.php:452 ../addons/sell-content/myCRED-addon-
2624
- #: sell-content.php:662
2625
  msgid "Button Label"
2626
  msgstr "Rótulo do botão"
2627
 
@@ -2634,8 +2682,8 @@ msgstr "Botão pagar"
2634
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2635
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2636
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2637
- #: content/myCRED-addon-sell-content.php:443 ../addons/sell-content/myCRED-addon-
2638
- #: sell-content.php:658
2639
  msgid "Price"
2640
  msgstr "Preço"
2641
 
@@ -2657,12 +2705,12 @@ msgid "Log"
2657
  msgstr "Registro"
2658
 
2659
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2660
- #: includes/mycred-admin.php:735 ../includes/mycred-admin.php:772
2661
  msgid "Log Entry"
2662
  msgstr "Entrada no registro"
2663
 
2664
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2665
- #: content/myCRED-addon-sell-content.php:466
2666
  msgid "Templates"
2667
  msgstr "Modelo"
2668
 
@@ -2742,7 +2790,7 @@ msgid "Reject"
2742
  msgstr "Rjeitar"
2743
 
2744
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2745
- #: modules/mycred-module-log.php:504 ../modules/mycred-module-settings.php:488 ..
2746
  #: modules/mycred-module-settings.php:507
2747
  msgid "Delete"
2748
  msgstr "Deletar"
@@ -3201,9 +3249,9 @@ msgid "No users found with this rank"
3201
  msgstr "Nenhum usuário encontrado com este rank"
3202
 
3203
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3204
- #: shortcodes.php:424 ../includes/mycred-shortcodes.php:427 ../includes/mycred-
3205
- #: shortcodes.php:489 ../includes/mycred-shortcodes.php:547 ../includes/mycred-
3206
- #: shortcodes.php:551 ../includes/mycred-shortcodes.php:555
3207
  msgid "error"
3208
  msgstr "erro"
3209
 
@@ -3223,46 +3271,46 @@ msgstr ""
3223
  msgid "Save Profit Share"
3224
  msgstr ""
3225
 
3226
- #: ../addons/sell-content/myCRED-addon-sell-content.php:158
3227
  msgid "Profit Share override saved"
3228
  msgstr ""
3229
 
3230
- #: ../addons/sell-content/myCRED-addon-sell-content.php:320
3231
  msgid "You can not buy this content."
3232
  msgstr "Você não pode comprar este conteúdo."
3233
 
3234
- #: ../addons/sell-content/myCRED-addon-sell-content.php:365
3235
  msgid "Error. Try Again"
3236
  msgstr "Erro. Tente novamente"
3237
 
3238
- #: ../addons/sell-content/myCRED-addon-sell-content.php:387
3239
  msgid "No Payout. Just charge."
3240
  msgstr "Nenhum pagamento. Basta carregar."
3241
 
3242
- #: ../addons/sell-content/myCRED-addon-sell-content.php:388
3243
  msgid "Pay Content Author."
3244
  msgstr "Pagar autor do conteúdo."
3245
 
3246
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394 ../includes/mycred-
3247
  #: overview.php:141 ../includes/mycred-overview.php:148
3248
  msgid "Sell Content"
3249
  msgstr "Vender conteúdo"
3250
 
3251
- #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3252
  msgid "Post Types"
3253
  msgstr "Tipos de posts"
3254
 
3255
- #: ../addons/sell-content/myCRED-addon-sell-content.php:400
3256
  msgid "Comma separated list of post types that can be sold."
3257
  msgstr ""
3258
  "Lista separada por víruglas dos tipos de posts que podem ser vendidos "
3259
  "separados."
3260
 
3261
- #: ../addons/sell-content/myCRED-addon-sell-content.php:430
3262
  msgid "Percentage to pay Author"
3263
  msgstr "Porcentagem paga ao autor"
3264
 
3265
- #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3266
  msgid ""
3267
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3268
  "authors are not paid."
@@ -3270,31 +3318,31 @@ msgstr ""
3270
  "Porcentagem do preço para pagar ao autor. Não pode ser zero e é ignorado se "
3271
  "os autores não são pagos."
3272
 
3273
- #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3274
  msgid "Defaults"
3275
  msgstr "Padrões"
3276
 
3277
- #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3278
  msgid "Allow authors to change price."
3279
  msgstr "Permitir que os autores alterem o preço."
3280
 
3281
- #: ../addons/sell-content/myCRED-addon-sell-content.php:457
3282
  msgid "Allow authors to change button label."
3283
  msgstr "Permitir que os autores alterem o rótulo do botão."
3284
 
3285
- #: ../addons/sell-content/myCRED-addon-sell-content.php:461
3286
  msgid "Purchases expire after"
3287
  msgstr "Compras expiram depois"
3288
 
3289
- #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3290
  msgid "Use zero for permanent sales."
3291
  msgstr "Utilizte zero para vendas permanentes."
3292
 
3293
- #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3294
  msgid "For Visitors"
3295
  msgstr ""
3296
 
3297
- #: ../addons/sell-content/myCRED-addon-sell-content.php:474
3298
  #, php-format
3299
  msgid ""
3300
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3303,65 +3351,65 @@ msgstr ""
3303
  "<strong>Não</strong> utilize o %buy_button% neste modelo quando um usuário "
3304
  "logado for comprar o conteúdo!"
3305
 
3306
- #: ../addons/sell-content/myCRED-addon-sell-content.php:479
3307
  msgid "For Members"
3308
  msgstr ""
3309
 
3310
- #: ../addons/sell-content/myCRED-addon-sell-content.php:484 ../addons/sell-
3311
- #: content/myCRED-addon-sell-content.php:494
3312
  #, php-format
3313
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3314
  msgstr "O modelo deve conter o rótulo %buy_button% para as compras funcionarem!"
3315
 
3316
- #: ../addons/sell-content/myCRED-addon-sell-content.php:489
3317
  msgid "For members that can not afford to buy"
3318
  msgstr ""
3319
 
3320
- #: ../addons/sell-content/myCRED-addon-sell-content.php:498
3321
  msgid "Log template for Purchases"
3322
  msgstr "Modelo de registro para compras"
3323
 
3324
- #: ../addons/sell-content/myCRED-addon-sell-content.php:505
3325
  msgid "Log template for Sales"
3326
  msgstr "Modelo de registro para vendas"
3327
 
3328
- #: ../addons/sell-content/myCRED-addon-sell-content.php:557
3329
  #, php-format
3330
  msgid "%s Sell This"
3331
  msgstr "%s vender isso"
3332
 
3333
- #: ../addons/sell-content/myCRED-addon-sell-content.php:611
3334
  #, php-format
3335
  msgid "%s Sell Content needs to be setup before you can use this feature."
3336
  msgstr "%s vender conteúdo precisa ser configurado antes da função ser utilizada."
3337
 
3338
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3339
  msgid "Setup add-on"
3340
  msgstr "Configurar add-on"
3341
 
3342
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3343
  msgid "Lets do it"
3344
  msgstr "Vamos fazer isso"
3345
 
3346
- #: ../addons/sell-content/myCRED-addon-sell-content.php:652
3347
  #, php-format
3348
  msgid "Enable sale of this %s"
3349
  msgstr "Habilitar venda do %s"
3350
 
3351
- #: ../addons/sell-content/myCRED-addon-sell-content.php:666
3352
  msgid "Purchase expires after"
3353
  msgstr "Compras expiram depois"
3354
 
3355
- #: ../addons/sell-content/myCRED-addon-sell-content.php:992
3356
  msgid "Thank you for your purchase!"
3357
  msgstr "Obrigado pela sua compra!"
3358
 
3359
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1080 ../addons/sell-
3360
- #: content/myCRED-addon-sell-content.php:1166
3361
  msgid "The following content is set for sale:"
3362
  msgstr "O conteúdo a seguir está definido para a venda:"
3363
 
3364
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1226
3365
  msgid "Purchased"
3366
  msgstr "Comprado"
3367
 
@@ -3374,7 +3422,7 @@ msgid "You have exceeded your %limit% transfer limit."
3374
  msgstr "Você excedeu o %limite% limite de transferência."
3375
 
3376
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3377
- #: php:2295
3378
  msgid "Transfer"
3379
  msgstr "Transferência"
3380
 
@@ -3413,7 +3461,7 @@ msgstr ""
3413
  "permitida antes que a configuração seja concluída!"
3414
 
3415
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3416
- #: php:1010
3417
  msgid "Insufficient Funds. Please try a lower amount."
3418
  msgstr ""
3419
 
@@ -3641,97 +3689,92 @@ msgstr "Quantia não pode ser zero"
3641
  msgid "Failed to update this uses balance."
3642
  msgstr "Falha ao atualizar o saldo dos usuários."
3643
 
3644
- #: ../includes/mycred-admin.php:404
3645
  msgid "Excluded"
3646
  msgstr "Excluído"
3647
 
3648
- #: ../includes/mycred-admin.php:414
3649
  #, php-format
3650
  msgid "Total: %s"
3651
  msgstr "Total: %s"
3652
 
3653
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:254 ..
3654
- #: modules/mycred-module-log.php:255
3655
- msgid "History"
3656
- msgstr "Histórico"
3657
-
3658
- #: ../includes/mycred-admin.php:423
3659
  msgid "Adjust"
3660
  msgstr "Ajustar"
3661
 
3662
- #: ../includes/mycred-admin.php:461 ../includes/mycred-admin.php:462
3663
  msgid "Edit Balance"
3664
  msgstr ""
3665
 
3666
- #: ../includes/mycred-admin.php:480
3667
  msgid "Profile"
3668
  msgstr ""
3669
 
3670
- #: ../includes/mycred-admin.php:487
3671
  msgid "Extended Profile"
3672
  msgstr ""
3673
 
3674
- #: ../includes/mycred-admin.php:577
3675
  #, php-format
3676
  msgid "This user is excluded from using %s"
3677
  msgstr ""
3678
 
3679
- #: ../includes/mycred-admin.php:600
3680
  msgid "Edit User"
3681
  msgstr ""
3682
 
3683
- #: ../includes/mycred-admin.php:602
3684
  msgctxt "user"
3685
  msgid "Add New"
3686
  msgstr ""
3687
 
3688
- #: ../includes/mycred-admin.php:604
3689
  msgctxt "user"
3690
  msgid "Add Existing"
3691
  msgstr ""
3692
 
3693
- #: ../includes/mycred-admin.php:615
3694
  #, php-format
3695
  msgid "Total %s Accumulated"
3696
  msgstr ""
3697
 
3698
- #: ../includes/mycred-admin.php:616
3699
  #, php-format
3700
  msgid "Total %s Spent"
3701
  msgstr ""
3702
 
3703
- #: ../includes/mycred-admin.php:627
3704
  msgid "View History"
3705
  msgstr ""
3706
 
3707
- #: ../includes/mycred-admin.php:628
3708
  msgid "Exclude User"
3709
  msgstr ""
3710
 
3711
- #: ../includes/mycred-admin.php:632
3712
  msgid "Adjust Balance"
3713
  msgstr ""
3714
 
3715
- #: ../includes/mycred-admin.php:641
3716
  msgid ""
3717
  "Warning! Excluding this user will result in their balance being deleted "
3718
  "along with any entries currently in your log! This can not be undone!"
3719
  msgstr ""
3720
 
3721
- #: ../includes/mycred-admin.php:699
3722
  #, php-format
3723
  msgid "%singular% balance"
3724
  msgstr "Saldo: %singular%"
3725
 
3726
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:773
3727
  msgid "Update Balance"
3728
  msgstr "Atualizar saldo"
3729
 
3730
- #: ../includes/mycred-admin.php:765
3731
  msgid "ID"
3732
  msgstr "ID"
3733
 
3734
- #: ../includes/mycred-admin.php:771
3735
  msgid "A positive or negative value"
3736
  msgstr "Um valor positivo ou negativo"
3737
 
@@ -3783,298 +3826,298 @@ msgstr "e"
3783
  msgid "Available Template Tags:"
3784
  msgstr "Modelo de etiqueta disponível:"
3785
 
3786
- #: ../includes/mycred-functions.php:1655
3787
  msgid "Entire Log"
3788
  msgstr "Registro de entrada"
3789
 
3790
- #: ../includes/mycred-functions.php:1660 ../includes/mycred-functions.php:1661
3791
  msgid "Displayed Rows"
3792
  msgstr "Linhas exibidas"
3793
 
3794
- #: ../includes/mycred-functions.php:1668
3795
  msgid "Search Results"
3796
  msgstr "Resultados da busca"
3797
 
3798
- #: ../includes/mycred-functions.php:1669
3799
  msgid "My Entire Log"
3800
  msgstr "Meu registro de entrada"
3801
 
3802
- #: ../includes/mycred-functions.php:1790
3803
  msgid "ref empty"
3804
  msgstr "Referência vazia"
3805
 
3806
- #: ../includes/mycred-functions.php:1798
3807
  msgid "incorrect user id format"
3808
  msgstr "formato do id do usuário incorreto"
3809
 
3810
- #: ../includes/mycred-functions.php:1811
3811
  msgid "incorrect unix timestamp (from):"
3812
  msgstr "registro do tempo do unix incorreto (a partir de):"
3813
 
3814
- #: ../includes/mycred-functions.php:1820
3815
  msgid "incorrect unix timestamp (to):"
3816
  msgstr "registro do tempo do unix incorreto (para):"
3817
 
3818
- #: ../includes/mycred-functions.php:2182
3819
  msgid "Website Registration"
3820
  msgstr ""
3821
 
3822
- #: ../includes/mycred-functions.php:2183
3823
  msgid "Website Visit"
3824
  msgstr ""
3825
 
3826
- #: ../includes/mycred-functions.php:2184
3827
  msgid "Viewing Content (Member)"
3828
  msgstr ""
3829
 
3830
- #: ../includes/mycred-functions.php:2185
3831
  msgid "Viewing Content (Author)"
3832
  msgstr ""
3833
 
3834
- #: ../includes/mycred-functions.php:2186
3835
  msgid "Logging in"
3836
  msgstr ""
3837
 
3838
- #: ../includes/mycred-functions.php:2187
3839
  msgid "Publishing Content"
3840
  msgstr ""
3841
 
3842
- #: ../includes/mycred-functions.php:2188 ../modules/mycred-module-hooks.php:1421
3843
  msgid "Approved Comment"
3844
  msgstr "Comentário aprovado"
3845
 
3846
- #: ../includes/mycred-functions.php:2189
3847
  msgid "Unapproved Comment"
3848
  msgstr ""
3849
 
3850
- #: ../includes/mycred-functions.php:2190
3851
  msgid "SPAM Comment"
3852
  msgstr ""
3853
 
3854
- #: ../includes/mycred-functions.php:2191
3855
  msgid "Deleted Comment"
3856
  msgstr ""
3857
 
3858
- #: ../includes/mycred-functions.php:2192
3859
  msgid "Link Click"
3860
  msgstr ""
3861
 
3862
- #: ../includes/mycred-functions.php:2193
3863
  msgid "Watching Video"
3864
  msgstr ""
3865
 
3866
- #: ../includes/mycred-functions.php:2194
3867
  msgid "Visitor Referral"
3868
  msgstr ""
3869
 
3870
- #: ../includes/mycred-functions.php:2195
3871
  msgid "Signup Referral"
3872
  msgstr ""
3873
 
3874
- #: ../includes/mycred-functions.php:2199
3875
  msgid "New Profile Update"
3876
  msgstr ""
3877
 
3878
- #: ../includes/mycred-functions.php:2200
3879
  msgid "Avatar Upload"
3880
  msgstr ""
3881
 
3882
- #: ../includes/mycred-functions.php:2201
3883
  msgid "New Friendship"
3884
  msgstr ""
3885
 
3886
- #: ../includes/mycred-functions.php:2202
3887
  msgid "Ended Friendship"
3888
  msgstr ""
3889
 
3890
- #: ../includes/mycred-functions.php:2203
3891
  msgid "New Profile Comment"
3892
  msgstr ""
3893
 
3894
- #: ../includes/mycred-functions.php:2204
3895
  msgid "Profile Comment Deletion"
3896
  msgstr ""
3897
 
3898
- #: ../includes/mycred-functions.php:2205
3899
  msgid "New Message"
3900
  msgstr ""
3901
 
3902
- #: ../includes/mycred-functions.php:2206
3903
  msgid "Sending Gift"
3904
  msgstr ""
3905
 
3906
- #: ../includes/mycred-functions.php:2207
3907
  msgid "New Group"
3908
  msgstr ""
3909
 
3910
- #: ../includes/mycred-functions.php:2208
3911
  msgid "Deleted Group"
3912
  msgstr ""
3913
 
3914
- #: ../includes/mycred-functions.php:2209
3915
  msgid "New Group Forum Topic"
3916
  msgstr ""
3917
 
3918
- #: ../includes/mycred-functions.php:2210
3919
  msgid "Edit Group Forum Topic"
3920
  msgstr ""
3921
 
3922
- #: ../includes/mycred-functions.php:2211
3923
  msgid "New Group Forum Post"
3924
  msgstr ""
3925
 
3926
- #: ../includes/mycred-functions.php:2212
3927
  msgid "Edit Group Forum Post"
3928
  msgstr ""
3929
 
3930
- #: ../includes/mycred-functions.php:2213
3931
  msgid "Joining Group"
3932
  msgstr ""
3933
 
3934
- #: ../includes/mycred-functions.php:2214
3935
  msgid "Leaving Group"
3936
  msgstr ""
3937
 
3938
- #: ../includes/mycred-functions.php:2215
3939
  msgid "New Group Avatar"
3940
  msgstr ""
3941
 
3942
- #: ../includes/mycred-functions.php:2216
3943
  msgid "New Group Comment"
3944
  msgstr ""
3945
 
3946
- #: ../includes/mycred-functions.php:2220 ../plugins/mycred-hook-buddypress-media.
3947
  #: php:166
3948
  msgid "Photo Upload"
3949
  msgstr "Upload de foto"
3950
 
3951
- #: ../includes/mycred-functions.php:2221 ../plugins/mycred-hook-buddypress-media.
3952
  #: php:176
3953
  msgid "Video Upload"
3954
  msgstr "Upload de vídeo"
3955
 
3956
- #: ../includes/mycred-functions.php:2222 ../plugins/mycred-hook-buddypress-media.
3957
  #: php:186
3958
  msgid "Music Upload"
3959
  msgstr "Upload de música"
3960
 
3961
- #: ../includes/mycred-functions.php:2226
3962
  msgid "New Link"
3963
  msgstr ""
3964
 
3965
- #: ../includes/mycred-functions.php:2227
3966
  msgid "Link Voting"
3967
  msgstr ""
3968
 
3969
- #: ../includes/mycred-functions.php:2228
3970
  msgid "Link Update"
3971
  msgstr ""
3972
 
3973
- #: ../includes/mycred-functions.php:2232
3974
  msgid "New Forum (bbPress)"
3975
  msgstr ""
3976
 
3977
- #: ../includes/mycred-functions.php:2233
3978
  msgid "New Forum Topic (bbPress)"
3979
  msgstr ""
3980
 
3981
- #: ../includes/mycred-functions.php:2234
3982
  msgid "Favorited Topic (bbPress)"
3983
  msgstr ""
3984
 
3985
- #: ../includes/mycred-functions.php:2235
3986
  msgid "New Topic Reply (bbPress)"
3987
  msgstr ""
3988
 
3989
- #: ../includes/mycred-functions.php:2239
3990
  msgid "Form Submission (Contact Form 7)"
3991
  msgstr ""
3992
 
3993
- #: ../includes/mycred-functions.php:2242
3994
  msgid "Form Submission (Gravity Form)"
3995
  msgstr ""
3996
 
3997
- #: ../includes/mycred-functions.php:2245
3998
  msgid "New Forum Topic (SimplePress)"
3999
  msgstr ""
4000
 
4001
- #: ../includes/mycred-functions.php:2246
4002
  msgid "New Forum Post (SimplePress)"
4003
  msgstr ""
4004
 
4005
- #: ../includes/mycred-functions.php:2250
4006
  msgid "Poll Voting"
4007
  msgstr ""
4008
 
4009
- #: ../includes/mycred-functions.php:2253
4010
  msgid "Sending an Invite"
4011
  msgstr ""
4012
 
4013
- #: ../includes/mycred-functions.php:2254
4014
  msgid "Accepting an Invite"
4015
  msgstr ""
4016
 
4017
- #: ../includes/mycred-functions.php:2260
4018
  msgid "Banking Payout"
4019
  msgstr ""
4020
 
4021
- #: ../includes/mycred-functions.php:2263
4022
  msgid "buyCRED Purchase (PayPal Standard)"
4023
  msgstr ""
4024
 
4025
- #: ../includes/mycred-functions.php:2264
4026
  msgid "buyCRED Purchase (Skrill)"
4027
  msgstr ""
4028
 
4029
- #: ../includes/mycred-functions.php:2265
4030
  msgid "buyCRED Purchase (Zombaio)"
4031
  msgstr ""
4032
 
4033
- #: ../includes/mycred-functions.php:2266
4034
  msgid "buyCRED Purchase (NETBilling)"
4035
  msgstr ""
4036
 
4037
- #: ../includes/mycred-functions.php:2267
4038
  msgid "buyCRED Purchase (BitPay)"
4039
  msgstr ""
4040
 
4041
- #: ../includes/mycred-functions.php:2272
4042
  msgid "Coupon Purchase"
4043
  msgstr ""
4044
 
4045
- #: ../includes/mycred-functions.php:2275
4046
  msgid "Store Purchase (WooCommerce)"
4047
  msgstr ""
4048
 
4049
- #: ../includes/mycred-functions.php:2276
4050
  msgid "Store Purchase (MarketPress)"
4051
  msgstr ""
4052
 
4053
- #: ../includes/mycred-functions.php:2277
4054
  msgid "Store Purchase (WP E-Commerce)"
4055
  msgstr ""
4056
 
4057
- #: ../includes/mycred-functions.php:2282
4058
  msgid "Event Payment (Event Espresso)"
4059
  msgstr ""
4060
 
4061
- #: ../includes/mycred-functions.php:2283
4062
  msgid "Event Sale (Event Espresso)"
4063
  msgstr ""
4064
 
4065
- #: ../includes/mycred-functions.php:2287
4066
  msgid "Event Payment (Events Manager)"
4067
  msgstr ""
4068
 
4069
- #: ../includes/mycred-functions.php:2288
4070
  msgid "Event Sale (Events Manager)"
4071
  msgstr ""
4072
 
4073
- #: ../includes/mycred-functions.php:2292
4074
  msgid "Content Purchase / Sale"
4075
  msgstr ""
4076
 
4077
- #: ../includes/mycred-functions.php:2299
4078
  msgid "Manual Adjustment by Admin"
4079
  msgstr ""
4080
 
@@ -4249,6 +4292,10 @@ msgstr ""
4249
  "certifique-se que esta é a quantidade máxima que um usuário seria capaz de "
4250
  "transferir, comprar ou gastar em sua loja. Use zero para desabilitar."
4251
 
 
 
 
 
4252
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4253
  msgid "Exclude those who can \"Edit Settings\"."
4254
  msgstr "Excluir aqueles que podem \"Edit Settings\"."
@@ -4356,7 +4403,7 @@ msgstr "Não há opções de exportação disponíveis."
4356
  msgid "Entry"
4357
  msgstr "Entrada"
4358
 
4359
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:466
4360
  msgid "User Missing"
4361
  msgstr "Usuário ausente"
4362
 
@@ -4550,92 +4597,92 @@ msgstr ""
4550
  "Lembre-se de desativar quando não utilizado para evitar chamadas maliciosas "
4551
  "de aprendizado sobre a configuração!"
4552
 
4553
- #: ../includes/mycred-shortcodes.php:153
4554
  msgid "Leaderboard is empty."
4555
  msgstr "O ranking está vazio."
4556
 
4557
- #: ../includes/mycred-shortcodes.php:424 ../includes/mycred-shortcodes.php:547
4558
  msgid "Amount missing!"
4559
  msgstr "Quantia ausente!"
4560
 
4561
- #: ../includes/mycred-shortcodes.php:427 ../includes/mycred-shortcodes.php:555
4562
  msgid "Log Template Missing!"
4563
  msgstr "Modelo de registro ausente!"
4564
 
4565
- #: ../includes/mycred-shortcodes.php:489
4566
  msgid "Anchor missing URL!"
4567
  msgstr "Ancoras de URL ausentes!"
4568
 
4569
- #: ../includes/mycred-shortcodes.php:551
4570
  msgid "User ID missing for recipient."
4571
  msgstr "ID do usuário ausente para o destinatário."
4572
 
4573
- #: ../includes/mycred-shortcodes.php:606
4574
  msgid "Sent"
4575
  msgstr "Enviar"
4576
 
4577
- #: ../includes/mycred-shortcodes.php:607
4578
  msgid "Error - Try Again"
4579
  msgstr "Erro - Tente novamente"
4580
 
4581
- #: ../includes/mycred-shortcodes.php:716
4582
  msgid "A video ID is required for this shortcode"
4583
  msgstr "O ID do vídeo é obrigatório para este shortcode"
4584
 
4585
- #: ../includes/mycred-shortcodes.php:862 ../includes/mycred-shortcodes.php:956
4586
  msgid "Point types not found."
4587
  msgstr ""
4588
 
4589
- #: ../includes/mycred-shortcodes.php:868 ../includes/mycred-shortcodes.php:876 ..
4590
- #: includes/mycred-shortcodes.php:968 ../includes/mycred-shortcodes.php:988
4591
  #, php-format
4592
  msgid "You are excluded from using %s."
4593
  msgstr ""
4594
 
4595
- #: ../includes/mycred-shortcodes.php:872 ../includes/mycred-shortcodes.php:978
4596
  msgid "Your balance is too low to use this feature."
4597
  msgstr ""
4598
 
4599
- #: ../includes/mycred-shortcodes.php:893
4600
  #, php-format
4601
  msgid "Convert <span>%s</span> to <span>%s</span>"
4602
  msgstr ""
4603
 
4604
- #: ../includes/mycred-shortcodes.php:902
4605
  #, php-format
4606
  msgid "Your current %s balance"
4607
  msgstr ""
4608
 
4609
- #: ../includes/mycred-shortcodes.php:910
4610
  #, php-format
4611
  msgid "Minimum %s"
4612
  msgstr ""
4613
 
4614
- #: ../includes/mycred-shortcodes.php:914
4615
  #, php-format
4616
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4617
  msgstr ""
4618
 
4619
- #: ../includes/mycred-shortcodes.php:920
4620
  msgid "Exchange"
4621
  msgstr ""
4622
 
4623
- #: ../includes/mycred-shortcodes.php:1001
4624
  #, php-format
4625
  msgid "You must exchange at least %s!"
4626
  msgstr ""
4627
 
4628
- #: ../includes/mycred-shortcodes.php:1023
4629
  #, php-format
4630
  msgid "Exchange from %s"
4631
  msgstr ""
4632
 
4633
- #: ../includes/mycred-shortcodes.php:1035
4634
  #, php-format
4635
  msgid "Exchange to %s"
4636
  msgstr ""
4637
 
4638
- #: ../includes/mycred-shortcodes.php:1043
4639
  #, php-format
4640
  msgid "You have successfully exchanged %s into %s."
4641
  msgstr ""
@@ -4944,6 +4991,12 @@ msgstr "Add-ons"
4944
  msgid "Give your users badges based on their interaction with your website."
4945
  msgstr ""
4946
 
 
 
 
 
 
 
4947
  #: ../modules/mycred-module-addons.php:169
4948
  msgid ""
4949
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
@@ -5276,7 +5329,7 @@ msgstr ""
5276
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5277
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5278
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5279
- #: 2623 ../modules/mycred-module-hooks.php:2652 ../plugins/mycred-hook-badgeOS.
5280
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5281
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5282
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
@@ -5338,8 +5391,8 @@ msgstr ""
5338
  msgid "%plural% for viewing %s"
5339
  msgstr ""
5340
 
5341
- #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2631
5342
- #: ../modules/mycred-module-hooks.php:2660 ../plugins/mycred-hook-invite-anyone.
5343
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5344
  msgid "Limit"
5345
  msgstr "Limite"
@@ -5431,7 +5484,7 @@ msgstr ""
5431
  msgid "Custom tags: %url%, %title% or %id%."
5432
  msgstr "Etiquetas personalizadas: %url%, %title% ou %id%."
5433
 
5434
- #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2734
5435
  msgid "Note!"
5436
  msgstr "Nota!"
5437
 
@@ -5514,61 +5567,61 @@ msgstr "Por dia"
5514
  msgid "Link"
5515
  msgstr "Link"
5516
 
5517
- #: ../modules/mycred-module-hooks.php:2617
5518
  msgid "Referring Visitors"
5519
  msgstr "Visitantes por referência"
5520
 
5521
- #: ../modules/mycred-module-hooks.php:2641 ../modules/mycred-module-hooks.php:2670
5522
  msgid "The number of referrals each member can make. Use zero for unlimited."
5523
  msgstr "O número de referências que cada membro pode fazer. Use zero para ilimitada."
5524
 
5525
- #: ../modules/mycred-module-hooks.php:2645 ../modules/mycred-module-hooks.php:2674
5526
  msgid "Referring Signups"
5527
  msgstr "Registros por referência"
5528
 
5529
- #: ../modules/mycred-module-hooks.php:2649
5530
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5531
  msgstr "Os visitantes que desativaram os cookies não serão premiados com %_plural%."
5532
 
5533
- #: ../modules/mycred-module-hooks.php:2676
5534
  msgid "Registrations are disabled."
5535
  msgstr "As inscrições estão desativadas."
5536
 
5537
- #: ../modules/mycred-module-hooks.php:2683
5538
  msgid "Referral Links"
5539
  msgstr "Links de referência"
5540
 
5541
- #: ../modules/mycred-module-hooks.php:2687
5542
  msgid "Assign numeric referral IDs to each user."
5543
  msgstr "Atribuir IDs numéricos de referência para cada usuário."
5544
 
5545
- #: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2694
5546
  msgid "Example"
5547
  msgstr "Exemplo"
5548
 
5549
- #: ../modules/mycred-module-hooks.php:2693
5550
  msgid "Assign usernames as IDs for each user."
5551
  msgstr "Atribuir nome de usuário como IDs para cada usuário."
5552
 
5553
- #: ../modules/mycred-module-hooks.php:2697
5554
  msgid "IP Limit"
5555
  msgstr "Limite de IP"
5556
 
5557
- #: ../modules/mycred-module-hooks.php:2701
5558
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5559
  msgstr ""
5560
  "O número de vezes que cada endereço IP dá de %_plural%. Use zero para "
5561
  "ilimitado."
5562
 
5563
- #: ../modules/mycred-module-hooks.php:2705 ../modules/mycred-module-hooks.php:2738
5564
  msgid "BuddyPress Profile"
5565
  msgstr "Perfil do BuddyPress"
5566
 
5567
- #: ../modules/mycred-module-hooks.php:2708
5568
  msgid "Insert Link in users Profile"
5569
  msgstr "Inserir link no perfil do usuário"
5570
 
5571
- #: ../modules/mycred-module-hooks.php:2709
5572
  msgid ""
5573
  "Option to inser the referral link in users profiles. Links will only be "
5574
  "visible to users viewing their own profiles or administrators."
@@ -5577,23 +5630,23 @@ msgstr ""
5577
  "somente serão visíveis para usuários que visualizam o seu próprio perfil ou "
5578
  "administradores."
5579
 
5580
- #: ../modules/mycred-module-hooks.php:2715
5581
  msgid "Leave empty to hide."
5582
  msgstr "Deixe em brando para esconder."
5583
 
5584
- #: ../modules/mycred-module-hooks.php:2718
5585
  msgid "Description"
5586
  msgstr "Descrição"
5587
 
5588
- #: ../modules/mycred-module-hooks.php:2719
5589
  msgid "Optional description to insert under the link."
5590
  msgstr "Descrição opcional para inserir abaixo do link."
5591
 
5592
- #: ../modules/mycred-module-hooks.php:2731
5593
  msgid "Profile Positioning"
5594
  msgstr "Posicionamento de perfil "
5595
 
5596
- #: ../modules/mycred-module-hooks.php:2733
5597
  msgid ""
5598
  "You can move around the referral link on your users profile by changing the "
5599
  "position. Increase to move up, decrease to move down."
@@ -5601,13 +5654,13 @@ msgstr ""
5601
  "Você pode mover o link de referência no seu perfil de usuário, alterando a "
5602
  "posição. Aumente para subir, diminua para mover para baixo."
5603
 
5604
- #: ../modules/mycred-module-hooks.php:2734
5605
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5606
  msgstr ""
5607
  "Você não pode mover o link de referência acima da \"Base\" de detalhes de "
5608
  "perfil do usuário!"
5609
 
5610
- #: ../modules/mycred-module-hooks.php:2740
5611
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5612
  msgstr "Requer perfis extendidos do BuddyPress para ser habilitado."
5613
 
@@ -5632,8 +5685,8 @@ msgstr "Entrada atualizada"
5632
  msgid "Entries"
5633
  msgstr "Entradas"
5634
 
5635
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:385 ..
5636
- #: modules/mycred-module-log.php:629 ../modules/mycred-module-settings.php:574
5637
  msgid "Export"
5638
  msgstr "Exportar"
5639
 
@@ -5641,40 +5694,40 @@ msgstr "Exportar"
5641
  msgid "Search results for"
5642
  msgstr "Resultados da busca por"
5643
 
5644
- #: ../modules/mycred-module-log.php:379
5645
  #, php-format
5646
  msgid "%s Log"
5647
  msgstr "%s Registro"
5648
 
5649
- #: ../modules/mycred-module-log.php:504
5650
  msgid "Edit"
5651
  msgstr "Editar"
5652
 
5653
- #: ../modules/mycred-module-log.php:545
5654
  msgid "Time"
5655
  msgstr "Tempo"
5656
 
5657
- #: ../modules/mycred-module-log.php:549
5658
  msgid "Current Log Entry"
5659
  msgstr "Entrada de registro atual"
5660
 
5661
- #: ../modules/mycred-module-log.php:551
5662
  msgid "The current saved log entry"
5663
  msgstr "Entrada de registro atual salva"
5664
 
5665
- #: ../modules/mycred-module-log.php:554
5666
  msgid "Adjust Log Entry"
5667
  msgstr "Ajustar entrada de registro"
5668
 
5669
- #: ../modules/mycred-module-log.php:556
5670
  msgid "The new log entry"
5671
  msgstr "Nova entrada de registro"
5672
 
5673
- #: ../modules/mycred-module-log.php:559
5674
  msgid "Update Log Entry"
5675
  msgstr "Atualizar entrada de registro"
5676
 
5677
- #: ../modules/mycred-module-log.php:623
5678
  #, php-format
5679
  msgid "My %s History"
5680
  msgstr "Meu %s histórico"
@@ -6393,6 +6446,6 @@ msgstr "WP-Polls"
6393
  #: ../plugins/mycred-hook-wp-polls.php:19
6394
  #, php-format
6395
  msgid "Awards %_plural% for users voting in polls."
6396
- msgstr "Recompensar com %_plural% os usuários que votaram em enquetes."
6397
- ers voting in polls."
6398
- msgstr "Recompensar com %_plural% os usuários que votaram em enquetes."
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: Thu Aug 07 2014 20:35:34 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Portuguese (Brazil)\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
44
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
45
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
46
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
47
+ #: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
48
+ #: includes/mycred-shortcodes.php:607
49
  msgid "Processing..."
50
  msgstr "Processando..."
51
 
151
  msgstr "Uma vez por dia (reiniciar a meia-noite)"
152
 
153
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
154
+ #: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
155
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
157
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
177
  msgid "click to open"
178
  msgstr "clique para abrir"
179
 
180
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/buy-creds/myCRED-addon-
181
+ #: buy-creds.php:847
182
  msgid "Settings Updated"
183
  msgstr "Configurações atualizadas"
184
 
383
  msgid "in total"
384
  msgstr ""
385
 
386
+ #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
387
+ #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
388
  msgid "Banking"
389
  msgstr "Banco"
390
 
391
+ #: ../addons/banking/myCRED-addon-banking.php:158
392
+ msgid "Central Banking"
393
+ msgstr ""
394
+
395
+ #: ../addons/banking/myCRED-addon-banking.php:159
396
+ #, php-format
397
+ msgid ""
398
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
399
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
400
+ "deposited back into this account."
401
+ msgstr ""
402
+
403
+ #: ../addons/banking/myCRED-addon-banking.php:165 ..
404
+ #: addons/banking/services/mycred-bank-service-interest.php:512
405
  msgid "Compound Interest"
406
  msgstr "Juros compostos"
407
 
408
+ #: ../addons/banking/myCRED-addon-banking.php:166
409
  #, php-format
410
+ msgid "Apply a positive or negative interest rate on your users %_plural% balances."
411
+ msgstr ""
412
+
413
+ #: ../addons/banking/myCRED-addon-banking.php:172
 
 
 
 
 
 
 
 
 
414
  msgid "Recurring Payouts"
415
  msgstr "Pagamentos recorrentes"
416
 
417
+ #: ../addons/banking/myCRED-addon-banking.php:173
418
+ msgid "Setup mass %_singular% payouts for your users."
 
 
 
419
  msgstr ""
 
 
420
 
421
+ #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
422
+ #: addon-buy-creds.php:837 ../addons/buy-creds/myCRED-addon-buy-creds.php:933 ..
423
+ #: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
424
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
425
+ #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
426
  #: modules/mycred-module-settings.php:312
427
  msgid "Access Denied"
428
  msgstr "Acesso negado"
429
 
430
+ #: ../addons/banking/myCRED-addon-banking.php:225
431
  #, php-format
432
  msgid "%s Banking"
433
  msgstr "%s Banking"
434
 
435
+ #: ../addons/banking/myCRED-addon-banking.php:228
436
+ msgid "Your banking setup for %plural%."
 
437
  msgstr ""
 
 
438
 
439
+ #: ../addons/banking/myCRED-addon-banking.php:231
440
  msgid "WP-Cron deactivation detected!"
441
  msgstr "WP-Cron encontra-se desativado!"
442
 
443
+ #: ../addons/banking/myCRED-addon-banking.php:232
444
  msgid "Warning! This add-on requires WP - Cron to work."
445
  msgstr "Aviso! Este add-on requer o WP - Cron para funcionar."
446
 
447
+ #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
448
+ #: addon-buy-creds.php:871 ../modules/mycred-module-hooks.php:196
449
  msgid "Enable"
450
  msgstr "Habilitar"
451
 
452
+ #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
453
  #: php:211
454
  msgid "Update Changes"
455
  msgstr "Alterações atualizadas"
456
 
457
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:79
 
 
 
 
458
  msgid "This Service has no settings"
459
  msgstr "Este serviço não tem configurações"
460
 
461
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:233
462
  msgid "Hourly"
463
  msgstr "De hora em hora"
464
 
465
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:237
466
  msgid "Daily"
467
  msgstr "Diariamente"
468
 
469
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:241
470
  msgid "Weekly"
471
  msgstr "Semanal"
472
 
473
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:245
474
  msgid "Monthly"
475
  msgstr "Mensal"
476
 
477
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:249
478
  msgid "Quarterly"
479
  msgstr "Trimestral"
480
 
481
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:253
482
  msgid "Semiannually"
483
  msgstr "Semestral"
484
 
485
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:257
486
  msgid "Annually"
487
  msgstr "Anualmente"
488
 
489
+ #: ../addons/banking/services/mycred-bank-service-central.php:105
490
+ msgid "Bank User"
491
+ msgstr ""
492
+
493
+ #: ../addons/banking/services/mycred-bank-service-central.php:109
494
+ msgid "The user ID of the central bank account. This user can not be excluded!"
495
+ msgstr ""
496
+
497
+ #: ../addons/banking/services/mycred-bank-service-central.php:112
498
+ msgid "Ignore Manual Adjustments"
499
+ msgstr ""
500
+
501
+ #: ../addons/banking/services/mycred-bank-service-interest.php:24
502
  msgid "%plural% interest rate payment"
503
  msgstr "Pagamento de %plural% da taxa de juro"
504
 
505
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
506
+ msgid "Compounding Interest"
507
+ msgstr ""
508
+
509
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
510
+ #, php-format
511
+ msgid "%d Users are left to process."
512
+ msgstr ""
513
+
514
+ #: ../addons/banking/services/mycred-bank-service-interest.php:388
515
+ msgid "Payout History"
516
+ msgstr ""
517
+
518
+ #: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
519
+ #: addons/banking/services/mycred-bank-service-interest.php:409 ..
520
+ #: addons/banking/services/mycred-bank-service-payouts.php:249
521
+ msgid "Run Count"
522
+ msgstr ""
523
+
524
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
525
+ msgid "Last Payout"
526
+ msgstr ""
527
+
528
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
529
+ #: addons/banking/services/mycred-bank-service-interest.php:414
530
+ msgid "Activated"
531
+ msgstr ""
532
+
533
+ #: ../addons/banking/services/mycred-bank-service-interest.php:401
534
+ msgid "Total Payed Interest"
535
+ msgstr ""
536
+
537
+ #: ../addons/banking/services/mycred-bank-service-interest.php:405
538
+ msgid "Compound History"
539
+ msgstr ""
540
+
541
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
542
+ msgid "Last Interest Compound"
543
+ msgstr ""
544
+
545
+ #: ../addons/banking/services/mycred-bank-service-interest.php:418
546
+ msgid "Total Compounded Interest"
547
+ msgstr ""
548
+
549
+ #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
550
+ #: addons/banking/services/mycred-bank-service-interest.php:549
551
  msgid "Interest Rate"
552
  msgstr "Taxa de juros"
553
 
554
+ #: ../addons/banking/services/mycred-bank-service-interest.php:425
555
+ msgid "Default Rate"
556
+ msgstr ""
 
 
 
 
557
 
558
+ #: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
559
+ #: addons/banking/services/mycred-bank-service-payouts.php:267
560
+ msgid "Can not be zero."
561
+ msgstr "Não pode ser zero."
562
 
563
+ #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
564
+ #: addons/gateway/carts/mycred-wpecommerce.php:364
565
+ msgid "Payout"
566
+ msgstr "Pagamento"
567
 
568
+ #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
569
+ #: addons/banking/services/mycred-bank-service-payouts.php:282 ../addons/buy-
570
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
571
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
572
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
584
  msgid "Log Template"
585
  msgstr "Modelo de registro"
586
 
587
+ #: ../addons/banking/services/mycred-bank-service-interest.php:442 ..
588
+ #: addons/banking/services/mycred-bank-service-payouts.php:289 ..
589
+ #: addons/coupons/myCRED-addon-coupons.php:392
590
+ msgid "Minimum Balance"
591
+ msgstr "Saldo mínimo"
592
 
593
+ #: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
594
+ #: addons/banking/services/mycred-bank-service-payouts.php:293
595
+ msgid "Optional minimum balance requirement."
596
+ msgstr ""
597
+
598
+ #: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
599
+ #: addons/banking/services/mycred-bank-service-payouts.php:296
600
+ msgid "Exclude"
601
+ msgstr ""
602
+
603
+ #: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
604
+ #: addons/banking/services/mycred-bank-service-payouts.php:299
605
+ msgid "Comma separated list of user IDs"
606
+ msgstr ""
607
+
608
+ #: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
609
+ #: addons/banking/services/mycred-bank-service-payouts.php:303
610
+ msgid "Roles"
611
+ msgstr ""
612
+
613
+ #: ../addons/banking/services/mycred-bank-service-interest.php:522
614
+ msgid "This user is excluded from receiving interest on this balance."
615
+ msgstr ""
616
+
617
+ #: ../addons/banking/services/mycred-bank-service-interest.php:525
618
+ msgid "Remove from Excluded List"
619
+ msgstr ""
620
+
621
+ #: ../addons/banking/services/mycred-bank-service-interest.php:537
622
+ msgid "This user role is excluded from receiving interest on this balance."
623
+ msgstr ""
624
+
625
+ #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
626
+ #: creds/myCRED-addon-buy-creds.php:759 ../addons/sell-content/myCRED-addon-sell-
627
+ #: content.php:113
628
+ msgid "Leave empty to use the default value."
629
+ msgstr ""
630
+
631
+ #: ../addons/banking/services/mycred-bank-service-interest.php:558
632
+ msgid "Save Interest Rate"
633
+ msgstr ""
634
+
635
+ #: ../addons/banking/services/mycred-bank-service-interest.php:559
636
+ msgid "Exclude from receiving interest"
637
+ msgstr ""
638
+
639
+ #: ../addons/banking/services/mycred-bank-service-interest.php:667
640
+ msgid "Compound interest rate saved."
641
+ msgstr ""
642
+
643
+ #: ../addons/banking/services/mycred-bank-service-interest.php:669
644
+ msgid "User excluded from receiving interest."
645
+ msgstr ""
646
+
647
+ #: ../addons/banking/services/mycred-bank-service-interest.php:671
648
+ msgid "User included in receiving interest."
649
  msgstr ""
 
 
 
 
650
 
651
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
652
  msgid "Daily %_plural%"
653
  msgstr "%_plural% diários"
654
 
655
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
656
+ #: includes/mycred-admin.php:404 ../modules/mycred-module-log.php:254 ..
657
+ #: modules/mycred-module-log.php:255
658
+ msgid "History"
659
+ msgstr "Histórico"
660
+
661
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:254
662
+ msgid "Last Run"
663
+ msgstr ""
664
+
665
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:258
666
+ msgid "Total Payouts"
667
+ msgstr ""
668
 
669
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:262
670
  msgid "Pay Users"
671
  msgstr "Usuários pagantes"
672
 
673
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
674
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
675
+ #: creds.php:1518 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595 ..
676
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
677
+ #: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
678
+ #: includes/mycred-shortcodes.php:910
679
  msgid "Amount"
680
  msgstr "Quantia"
681
 
682
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
683
+ #: modules/mycred-module-hooks.php:2113
 
 
 
 
 
684
  msgid "Interval"
685
  msgstr "Intervalo"
686
 
687
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:275
 
688
  msgid "Cycles"
689
  msgstr "Ciclos"
690
 
691
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:277
692
  msgid "Set to -1 for unlimited"
693
  msgstr "Defina como -1 para ilimitado"
694
 
695
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
696
  msgid "Important"
697
  msgstr "Importante"
698
 
699
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
700
  msgid ""
701
  "You can always stop payouts by deactivating this service. Just remember that "
702
  "if you deactivate while there are cycles left, this service will continue on "
706
  "que caso você desative durante um ciclo, este serviço continuará quando for "
707
  "reativado. Defina os ciclos como zero para reiniciar."
708
 
 
 
 
 
 
 
 
 
 
 
 
 
 
709
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
710
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
711
  msgid "Payment Gateways"
731
  msgstr ""
732
 
733
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
734
+ #: addon-buy-creds.php:1629
735
  msgid "No pending payments found"
736
  msgstr ""
737
 
740
  msgstr ""
741
 
742
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
743
+ #: addon-buy-creds.php:986 ../addons/buy-creds/myCRED-addon-buy-creds.php:1593
744
  msgid "Transaction ID"
745
  msgstr "ID da transação"
746
 
747
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
748
+ #: addon-buy-creds.php:982
749
  msgid "Buyer"
750
  msgstr ""
751
 
752
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
753
+ #: addon-buy-creds.php:1596 ../addons/buy-creds/abstracts/mycred-abstract-payment-
754
  #: gateway.php:563
755
  msgid "Cost"
756
  msgstr "Preço"
757
 
758
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
759
+ #: addon-buy-creds.php:981 ../addons/buy-creds/myCRED-addon-buy-creds.php:1594 ..
760
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
761
  msgid "Gateway"
762
  msgstr "Métodos de pagamento"
774
  msgstr "Registro de compra do buyCRED"
775
 
776
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
777
+ #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:843
778
  msgid "Purchase Log"
779
  msgstr "Registro de compra"
780
 
781
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
782
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
783
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
784
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:422
785
  msgid "Payments"
786
  msgstr "Pagamentos"
787
 
858
  msgstr "Permitir que usuários comprem %_plural% para os autores."
859
 
860
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
861
+ #: hooks.php:2770
862
  msgid "Available Shortcodes"
863
  msgstr "Shortcodes disponíveis"
864
 
867
  msgid "%s Exchange Rate"
868
  msgstr ""
869
 
 
 
 
 
 
870
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
871
  msgid "Save Exchange Rates"
872
  msgstr ""
873
 
874
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:822
875
  msgid "Exchange rate override saved"
876
  msgstr ""
877
 
878
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:825
879
  msgid "Payment completed"
880
  msgstr ""
881
 
882
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843
883
  #, php-format
884
  msgid "%s Payment Gateways"
885
  msgstr "%s Métodos de pagamento"
886
 
887
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
888
+ #: addon-buy-creds.php:990
889
  msgid "buyCRED Settings"
890
  msgstr "Configurações do buyCRED"
891
 
892
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:864
893
  msgid "Test Mode"
894
  msgstr "Modo de teste"
895
 
896
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
897
  msgid "Enabled"
898
  msgstr "Habilitado"
899
 
900
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:869
901
  msgid "Disabled"
902
  msgstr "Desabilitado"
903
 
904
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
905
  msgid "Sandbox Mode"
906
  msgstr "Modo Sandbox"
907
 
908
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:882
909
  msgid "Enable for test purchases."
910
  msgstr "Habilitar para compras de teste."
911
 
912
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
913
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
914
  msgid "Update Settings"
915
  msgstr "Atualizar configurações"
916
 
917
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
918
  msgid "More Gateways"
919
  msgstr ""
920
 
921
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:983 ../includes/mycred-log.php:
922
  #: 634
923
  msgid "Date"
924
  msgstr "Data"
925
 
926
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985
927
  msgid "Payed"
928
  msgstr "Pago"
929
 
930
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990
931
  msgid "<strong>buy</strong>CRED Purchase Log"
932
  msgstr "Registro de compra do <strong>buy</strong>CRED"
933
 
934
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990 ../addons/gateway/event-
935
  #: booking/mycred-eventespresso3.php:367
936
  msgid "Gateway Settings"
937
  msgstr "Configurações do método"
938
 
939
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166 ../addons/sell-
940
+ #: content/myCRED-addon-sell-content.php:1190
941
  msgid "No purchases found"
942
  msgstr "Nenhuma compra encontrada"
943
 
944
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1236 ../addons/buy-creds/myCRED-
945
+ #: addon-buy-creds.php:1349
946
  msgid "This Add-on needs to setup before you can use this shortcode."
947
  msgstr "Este add-on precisa ser configurado antes de usar o shortcode."
948
 
949
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1255 ../addons/buy-creds/myCRED-
950
+ #: addon-buy-creds.php:1368
951
  msgid "No gateways installed."
952
  msgstr "Nenhum método instalado."
953
 
954
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1256 ../addons/buy-creds/myCRED-
955
+ #: addon-buy-creds.php:1369
956
  msgid "Gateway does not exist."
957
  msgstr "Método não existe."
958
 
959
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1304
960
  msgid "Yourself"
961
  msgstr "Você mesmo"
962
 
963
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1370
964
  msgid "No active gateways found."
965
  msgstr "Nenhum método ativo foi encontrado."
966
 
967
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1371
968
  msgid "The selected gateway is not active."
969
  msgstr "O método selecionado não está ativo."
970
 
971
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1418
972
  #, php-format
973
  msgid "Buy with %gateway%"
974
  msgstr "Compre com %gateway%"
975
 
976
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424 ../addons/sell-
977
  #: content/myCRED-addon-sell-content.php:44
978
  msgid "Buy Now"
979
  msgstr "Comprar agora"
980
 
981
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1469
982
  msgid "No users found"
983
  msgstr "Nenhum usuário encontrado"
984
 
985
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1479
986
  msgid "To"
987
  msgstr "Para"
988
 
989
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1496
990
  msgid "Select Amount"
991
  msgstr "Selecionar a quantia"
992
 
993
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1520
994
  msgid "min."
995
  msgstr "min."
996
 
997
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1528
998
  msgid "Select Gateway"
999
  msgstr "Selecione o método"
1000
 
1001
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1569 ../addons/gateway/event-
1002
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1003
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1004
  #: php:35
1005
  msgid "Pay Now"
1006
  msgstr "Pagar agora"
1007
 
1008
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1570 ../includes/mycred-install.
1009
  #: php:515
1010
  msgid "Cancel"
1011
  msgstr "Cancelar"
1012
 
1013
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ../addons/ranks/myCRED-
1014
+ #: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
1015
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
1016
  msgid "Actions"
1017
  msgstr "Ações"
1051
  msgstr "Cancelar compra"
1052
 
1053
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1054
+ #: includes/mycred-admin.php:702 ../includes/mycred-admin.php:739
1055
  msgid "required"
1056
  msgstr "obrigatório"
1057
 
1058
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1059
+ #: includes/mycred-admin.php:704 ../includes/mycred-admin.php:741
1060
  msgid "optional"
1061
  msgstr "opcional"
1062
 
1457
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1458
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1459
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1460
+ #: modules/mycred-module-hooks.php:2735
1461
  msgid "Title"
1462
  msgstr "Título"
1463
 
1703
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1704
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1705
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1706
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:410 ..
1707
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1708
  #: includes/importers/mycred-cubepoints.php:365
1709
  msgid "Point Type"
2114
  msgstr "Enviar para"
2115
 
2116
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2117
+ #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:748 ..
2118
+ #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
2119
  msgid "User"
2120
  msgstr "Usuário"
2121
 
2241
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2242
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2243
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2244
+ #: php:412 ../includes/mycred-admin.php:596 ../includes/mycred-admin.php:749
2245
  msgid "Current Balance"
2246
  msgstr "Saldo atual"
2247
 
2365
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2366
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2367
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2368
+ #: php:578 ../includes/mycred-shortcodes.php:915
2369
  msgid "Exchange Rate"
2370
  msgstr "Taxa de câmbio"
2371
 
2594
  msgid "How much is 1 %s worth in %s"
2595
  msgstr "Qual é o valor de 1 %s em %s"
2596
 
 
 
 
 
2597
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2598
  msgid "Instructions"
2599
  msgstr "Instruções"
2668
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2669
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2670
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2671
+ #: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
2672
+ #: sell-content.php:668
2673
  msgid "Button Label"
2674
  msgstr "Rótulo do botão"
2675
 
2682
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2683
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2684
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2685
+ #: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
2686
+ #: sell-content.php:664
2687
  msgid "Price"
2688
  msgstr "Preço"
2689
 
2705
  msgstr "Registro"
2706
 
2707
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2708
+ #: includes/mycred-admin.php:717 ../includes/mycred-admin.php:754
2709
  msgid "Log Entry"
2710
  msgstr "Entrada no registro"
2711
 
2712
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2713
+ #: content/myCRED-addon-sell-content.php:472
2714
  msgid "Templates"
2715
  msgstr "Modelo"
2716
 
2790
  msgstr "Rjeitar"
2791
 
2792
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2793
+ #: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:488 ..
2794
  #: modules/mycred-module-settings.php:507
2795
  msgid "Delete"
2796
  msgstr "Deletar"
3249
  msgstr "Nenhum usuário encontrado com este rank"
3250
 
3251
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3252
+ #: shortcodes.php:425 ../includes/mycred-shortcodes.php:428 ../includes/mycred-
3253
+ #: shortcodes.php:491 ../includes/mycred-shortcodes.php:549 ../includes/mycred-
3254
+ #: shortcodes.php:553 ../includes/mycred-shortcodes.php:557
3255
  msgid "error"
3256
  msgstr "erro"
3257
 
3271
  msgid "Save Profit Share"
3272
  msgstr ""
3273
 
3274
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:164
3275
  msgid "Profit Share override saved"
3276
  msgstr ""
3277
 
3278
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:326
3279
  msgid "You can not buy this content."
3280
  msgstr "Você não pode comprar este conteúdo."
3281
 
3282
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:371
3283
  msgid "Error. Try Again"
3284
  msgstr "Erro. Tente novamente"
3285
 
3286
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3287
  msgid "No Payout. Just charge."
3288
  msgstr "Nenhum pagamento. Basta carregar."
3289
 
3290
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3291
  msgid "Pay Content Author."
3292
  msgstr "Pagar autor do conteúdo."
3293
 
3294
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:400 ../includes/mycred-
3295
  #: overview.php:141 ../includes/mycred-overview.php:148
3296
  msgid "Sell Content"
3297
  msgstr "Vender conteúdo"
3298
 
3299
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3300
  msgid "Post Types"
3301
  msgstr "Tipos de posts"
3302
 
3303
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3304
  msgid "Comma separated list of post types that can be sold."
3305
  msgstr ""
3306
  "Lista separada por víruglas dos tipos de posts que podem ser vendidos "
3307
  "separados."
3308
 
3309
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:436
3310
  msgid "Percentage to pay Author"
3311
  msgstr "Porcentagem paga ao autor"
3312
 
3313
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3314
  msgid ""
3315
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3316
  "authors are not paid."
3318
  "Porcentagem do preço para pagar ao autor. Não pode ser zero e é ignorado se "
3319
  "os autores não são pagos."
3320
 
3321
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:446
3322
  msgid "Defaults"
3323
  msgstr "Padrões"
3324
 
3325
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:454
3326
  msgid "Allow authors to change price."
3327
  msgstr "Permitir que os autores alterem o preço."
3328
 
3329
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3330
  msgid "Allow authors to change button label."
3331
  msgstr "Permitir que os autores alterem o rótulo do botão."
3332
 
3333
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:467
3334
  msgid "Purchases expire after"
3335
  msgstr "Compras expiram depois"
3336
 
3337
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3338
  msgid "Use zero for permanent sales."
3339
  msgstr "Utilizte zero para vendas permanentes."
3340
 
3341
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:475
3342
  msgid "For Visitors"
3343
  msgstr ""
3344
 
3345
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:480
3346
  #, php-format
3347
  msgid ""
3348
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3351
  "<strong>Não</strong> utilize o %buy_button% neste modelo quando um usuário "
3352
  "logado for comprar o conteúdo!"
3353
 
3354
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:485
3355
  msgid "For Members"
3356
  msgstr ""
3357
 
3358
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:490 ../addons/sell-
3359
+ #: content/myCRED-addon-sell-content.php:500
3360
  #, php-format
3361
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3362
  msgstr "O modelo deve conter o rótulo %buy_button% para as compras funcionarem!"
3363
 
3364
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:495
3365
  msgid "For members that can not afford to buy"
3366
  msgstr ""
3367
 
3368
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:504
3369
  msgid "Log template for Purchases"
3370
  msgstr "Modelo de registro para compras"
3371
 
3372
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:511
3373
  msgid "Log template for Sales"
3374
  msgstr "Modelo de registro para vendas"
3375
 
3376
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:563
3377
  #, php-format
3378
  msgid "%s Sell This"
3379
  msgstr "%s vender isso"
3380
 
3381
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:617
3382
  #, php-format
3383
  msgid "%s Sell Content needs to be setup before you can use this feature."
3384
  msgstr "%s vender conteúdo precisa ser configurado antes da função ser utilizada."
3385
 
3386
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3387
  msgid "Setup add-on"
3388
  msgstr "Configurar add-on"
3389
 
3390
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3391
  msgid "Lets do it"
3392
  msgstr "Vamos fazer isso"
3393
 
3394
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:658
3395
  #, php-format
3396
  msgid "Enable sale of this %s"
3397
  msgstr "Habilitar venda do %s"
3398
 
3399
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:672
3400
  msgid "Purchase expires after"
3401
  msgstr "Compras expiram depois"
3402
 
3403
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:998
3404
  msgid "Thank you for your purchase!"
3405
  msgstr "Obrigado pela sua compra!"
3406
 
3407
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1086 ../addons/sell-
3408
+ #: content/myCRED-addon-sell-content.php:1172
3409
  msgid "The following content is set for sale:"
3410
  msgstr "O conteúdo a seguir está definido para a venda:"
3411
 
3412
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1232
3413
  msgid "Purchased"
3414
  msgstr "Comprado"
3415
 
3422
  msgstr "Você excedeu o %limite% limite de transferência."
3423
 
3424
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3425
+ #: php:2313
3426
  msgid "Transfer"
3427
  msgstr "Transferência"
3428
 
3461
  "permitida antes que a configuração seja concluída!"
3462
 
3463
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3464
+ #: php:1012
3465
  msgid "Insufficient Funds. Please try a lower amount."
3466
  msgstr ""
3467
 
3689
  msgid "Failed to update this uses balance."
3690
  msgstr "Falha ao atualizar o saldo dos usuários."
3691
 
3692
+ #: ../includes/mycred-admin.php:386
3693
  msgid "Excluded"
3694
  msgstr "Excluído"
3695
 
3696
+ #: ../includes/mycred-admin.php:396
3697
  #, php-format
3698
  msgid "Total: %s"
3699
  msgstr "Total: %s"
3700
 
3701
+ #: ../includes/mycred-admin.php:405
 
 
 
 
 
3702
  msgid "Adjust"
3703
  msgstr "Ajustar"
3704
 
3705
+ #: ../includes/mycred-admin.php:443 ../includes/mycred-admin.php:444
3706
  msgid "Edit Balance"
3707
  msgstr ""
3708
 
3709
+ #: ../includes/mycred-admin.php:462
3710
  msgid "Profile"
3711
  msgstr ""
3712
 
3713
+ #: ../includes/mycred-admin.php:469
3714
  msgid "Extended Profile"
3715
  msgstr ""
3716
 
3717
+ #: ../includes/mycred-admin.php:559
3718
  #, php-format
3719
  msgid "This user is excluded from using %s"
3720
  msgstr ""
3721
 
3722
+ #: ../includes/mycred-admin.php:582
3723
  msgid "Edit User"
3724
  msgstr ""
3725
 
3726
+ #: ../includes/mycred-admin.php:584
3727
  msgctxt "user"
3728
  msgid "Add New"
3729
  msgstr ""
3730
 
3731
+ #: ../includes/mycred-admin.php:586
3732
  msgctxt "user"
3733
  msgid "Add Existing"
3734
  msgstr ""
3735
 
3736
+ #: ../includes/mycred-admin.php:597
3737
  #, php-format
3738
  msgid "Total %s Accumulated"
3739
  msgstr ""
3740
 
3741
+ #: ../includes/mycred-admin.php:598
3742
  #, php-format
3743
  msgid "Total %s Spent"
3744
  msgstr ""
3745
 
3746
+ #: ../includes/mycred-admin.php:609
3747
  msgid "View History"
3748
  msgstr ""
3749
 
3750
+ #: ../includes/mycred-admin.php:610
3751
  msgid "Exclude User"
3752
  msgstr ""
3753
 
3754
+ #: ../includes/mycred-admin.php:614
3755
  msgid "Adjust Balance"
3756
  msgstr ""
3757
 
3758
+ #: ../includes/mycred-admin.php:623
3759
  msgid ""
3760
  "Warning! Excluding this user will result in their balance being deleted "
3761
  "along with any entries currently in your log! This can not be undone!"
3762
  msgstr ""
3763
 
3764
+ #: ../includes/mycred-admin.php:681
3765
  #, php-format
3766
  msgid "%singular% balance"
3767
  msgstr "Saldo: %singular%"
3768
 
3769
+ #: ../includes/mycred-admin.php:721 ../includes/mycred-admin.php:755
3770
  msgid "Update Balance"
3771
  msgstr "Atualizar saldo"
3772
 
3773
+ #: ../includes/mycred-admin.php:747
3774
  msgid "ID"
3775
  msgstr "ID"
3776
 
3777
+ #: ../includes/mycred-admin.php:753
3778
  msgid "A positive or negative value"
3779
  msgstr "Um valor positivo ou negativo"
3780
 
3826
  msgid "Available Template Tags:"
3827
  msgstr "Modelo de etiqueta disponível:"
3828
 
3829
+ #: ../includes/mycred-functions.php:1673
3830
  msgid "Entire Log"
3831
  msgstr "Registro de entrada"
3832
 
3833
+ #: ../includes/mycred-functions.php:1678 ../includes/mycred-functions.php:1679
3834
  msgid "Displayed Rows"
3835
  msgstr "Linhas exibidas"
3836
 
3837
+ #: ../includes/mycred-functions.php:1686
3838
  msgid "Search Results"
3839
  msgstr "Resultados da busca"
3840
 
3841
+ #: ../includes/mycred-functions.php:1687
3842
  msgid "My Entire Log"
3843
  msgstr "Meu registro de entrada"
3844
 
3845
+ #: ../includes/mycred-functions.php:1808
3846
  msgid "ref empty"
3847
  msgstr "Referência vazia"
3848
 
3849
+ #: ../includes/mycred-functions.php:1816
3850
  msgid "incorrect user id format"
3851
  msgstr "formato do id do usuário incorreto"
3852
 
3853
+ #: ../includes/mycred-functions.php:1829
3854
  msgid "incorrect unix timestamp (from):"
3855
  msgstr "registro do tempo do unix incorreto (a partir de):"
3856
 
3857
+ #: ../includes/mycred-functions.php:1838
3858
  msgid "incorrect unix timestamp (to):"
3859
  msgstr "registro do tempo do unix incorreto (para):"
3860
 
3861
+ #: ../includes/mycred-functions.php:2200
3862
  msgid "Website Registration"
3863
  msgstr ""
3864
 
3865
+ #: ../includes/mycred-functions.php:2201
3866
  msgid "Website Visit"
3867
  msgstr ""
3868
 
3869
+ #: ../includes/mycred-functions.php:2202
3870
  msgid "Viewing Content (Member)"
3871
  msgstr ""
3872
 
3873
+ #: ../includes/mycred-functions.php:2203
3874
  msgid "Viewing Content (Author)"
3875
  msgstr ""
3876
 
3877
+ #: ../includes/mycred-functions.php:2204
3878
  msgid "Logging in"
3879
  msgstr ""
3880
 
3881
+ #: ../includes/mycred-functions.php:2205
3882
  msgid "Publishing Content"
3883
  msgstr ""
3884
 
3885
+ #: ../includes/mycred-functions.php:2206 ../modules/mycred-module-hooks.php:1421
3886
  msgid "Approved Comment"
3887
  msgstr "Comentário aprovado"
3888
 
3889
+ #: ../includes/mycred-functions.php:2207
3890
  msgid "Unapproved Comment"
3891
  msgstr ""
3892
 
3893
+ #: ../includes/mycred-functions.php:2208
3894
  msgid "SPAM Comment"
3895
  msgstr ""
3896
 
3897
+ #: ../includes/mycred-functions.php:2209
3898
  msgid "Deleted Comment"
3899
  msgstr ""
3900
 
3901
+ #: ../includes/mycred-functions.php:2210
3902
  msgid "Link Click"
3903
  msgstr ""
3904
 
3905
+ #: ../includes/mycred-functions.php:2211
3906
  msgid "Watching Video"
3907
  msgstr ""
3908
 
3909
+ #: ../includes/mycred-functions.php:2212
3910
  msgid "Visitor Referral"
3911
  msgstr ""
3912
 
3913
+ #: ../includes/mycred-functions.php:2213
3914
  msgid "Signup Referral"
3915
  msgstr ""
3916
 
3917
+ #: ../includes/mycred-functions.php:2217
3918
  msgid "New Profile Update"
3919
  msgstr ""
3920
 
3921
+ #: ../includes/mycred-functions.php:2218
3922
  msgid "Avatar Upload"
3923
  msgstr ""
3924
 
3925
+ #: ../includes/mycred-functions.php:2219
3926
  msgid "New Friendship"
3927
  msgstr ""
3928
 
3929
+ #: ../includes/mycred-functions.php:2220
3930
  msgid "Ended Friendship"
3931
  msgstr ""
3932
 
3933
+ #: ../includes/mycred-functions.php:2221
3934
  msgid "New Profile Comment"
3935
  msgstr ""
3936
 
3937
+ #: ../includes/mycred-functions.php:2222
3938
  msgid "Profile Comment Deletion"
3939
  msgstr ""
3940
 
3941
+ #: ../includes/mycred-functions.php:2223
3942
  msgid "New Message"
3943
  msgstr ""
3944
 
3945
+ #: ../includes/mycred-functions.php:2224
3946
  msgid "Sending Gift"
3947
  msgstr ""
3948
 
3949
+ #: ../includes/mycred-functions.php:2225
3950
  msgid "New Group"
3951
  msgstr ""
3952
 
3953
+ #: ../includes/mycred-functions.php:2226
3954
  msgid "Deleted Group"
3955
  msgstr ""
3956
 
3957
+ #: ../includes/mycred-functions.php:2227
3958
  msgid "New Group Forum Topic"
3959
  msgstr ""
3960
 
3961
+ #: ../includes/mycred-functions.php:2228
3962
  msgid "Edit Group Forum Topic"
3963
  msgstr ""
3964
 
3965
+ #: ../includes/mycred-functions.php:2229
3966
  msgid "New Group Forum Post"
3967
  msgstr ""
3968
 
3969
+ #: ../includes/mycred-functions.php:2230
3970
  msgid "Edit Group Forum Post"
3971
  msgstr ""
3972
 
3973
+ #: ../includes/mycred-functions.php:2231
3974
  msgid "Joining Group"
3975
  msgstr ""
3976
 
3977
+ #: ../includes/mycred-functions.php:2232
3978
  msgid "Leaving Group"
3979
  msgstr ""
3980
 
3981
+ #: ../includes/mycred-functions.php:2233
3982
  msgid "New Group Avatar"
3983
  msgstr ""
3984
 
3985
+ #: ../includes/mycred-functions.php:2234
3986
  msgid "New Group Comment"
3987
  msgstr ""
3988
 
3989
+ #: ../includes/mycred-functions.php:2238 ../plugins/mycred-hook-buddypress-media.
3990
  #: php:166
3991
  msgid "Photo Upload"
3992
  msgstr "Upload de foto"
3993
 
3994
+ #: ../includes/mycred-functions.php:2239 ../plugins/mycred-hook-buddypress-media.
3995
  #: php:176
3996
  msgid "Video Upload"
3997
  msgstr "Upload de vídeo"
3998
 
3999
+ #: ../includes/mycred-functions.php:2240 ../plugins/mycred-hook-buddypress-media.
4000
  #: php:186
4001
  msgid "Music Upload"
4002
  msgstr "Upload de música"
4003
 
4004
+ #: ../includes/mycred-functions.php:2244
4005
  msgid "New Link"
4006
  msgstr ""
4007
 
4008
+ #: ../includes/mycred-functions.php:2245
4009
  msgid "Link Voting"
4010
  msgstr ""
4011
 
4012
+ #: ../includes/mycred-functions.php:2246
4013
  msgid "Link Update"
4014
  msgstr ""
4015
 
4016
+ #: ../includes/mycred-functions.php:2250
4017
  msgid "New Forum (bbPress)"
4018
  msgstr ""
4019
 
4020
+ #: ../includes/mycred-functions.php:2251
4021
  msgid "New Forum Topic (bbPress)"
4022
  msgstr ""
4023
 
4024
+ #: ../includes/mycred-functions.php:2252
4025
  msgid "Favorited Topic (bbPress)"
4026
  msgstr ""
4027
 
4028
+ #: ../includes/mycred-functions.php:2253
4029
  msgid "New Topic Reply (bbPress)"
4030
  msgstr ""
4031
 
4032
+ #: ../includes/mycred-functions.php:2257
4033
  msgid "Form Submission (Contact Form 7)"
4034
  msgstr ""
4035
 
4036
+ #: ../includes/mycred-functions.php:2260
4037
  msgid "Form Submission (Gravity Form)"
4038
  msgstr ""
4039
 
4040
+ #: ../includes/mycred-functions.php:2263
4041
  msgid "New Forum Topic (SimplePress)"
4042
  msgstr ""
4043
 
4044
+ #: ../includes/mycred-functions.php:2264
4045
  msgid "New Forum Post (SimplePress)"
4046
  msgstr ""
4047
 
4048
+ #: ../includes/mycred-functions.php:2268
4049
  msgid "Poll Voting"
4050
  msgstr ""
4051
 
4052
+ #: ../includes/mycred-functions.php:2271
4053
  msgid "Sending an Invite"
4054
  msgstr ""
4055
 
4056
+ #: ../includes/mycred-functions.php:2272
4057
  msgid "Accepting an Invite"
4058
  msgstr ""
4059
 
4060
+ #: ../includes/mycred-functions.php:2278
4061
  msgid "Banking Payout"
4062
  msgstr ""
4063
 
4064
+ #: ../includes/mycred-functions.php:2281
4065
  msgid "buyCRED Purchase (PayPal Standard)"
4066
  msgstr ""
4067
 
4068
+ #: ../includes/mycred-functions.php:2282
4069
  msgid "buyCRED Purchase (Skrill)"
4070
  msgstr ""
4071
 
4072
+ #: ../includes/mycred-functions.php:2283
4073
  msgid "buyCRED Purchase (Zombaio)"
4074
  msgstr ""
4075
 
4076
+ #: ../includes/mycred-functions.php:2284
4077
  msgid "buyCRED Purchase (NETBilling)"
4078
  msgstr ""
4079
 
4080
+ #: ../includes/mycred-functions.php:2285
4081
  msgid "buyCRED Purchase (BitPay)"
4082
  msgstr ""
4083
 
4084
+ #: ../includes/mycred-functions.php:2290
4085
  msgid "Coupon Purchase"
4086
  msgstr ""
4087
 
4088
+ #: ../includes/mycred-functions.php:2293
4089
  msgid "Store Purchase (WooCommerce)"
4090
  msgstr ""
4091
 
4092
+ #: ../includes/mycred-functions.php:2294
4093
  msgid "Store Purchase (MarketPress)"
4094
  msgstr ""
4095
 
4096
+ #: ../includes/mycred-functions.php:2295
4097
  msgid "Store Purchase (WP E-Commerce)"
4098
  msgstr ""
4099
 
4100
+ #: ../includes/mycred-functions.php:2300
4101
  msgid "Event Payment (Event Espresso)"
4102
  msgstr ""
4103
 
4104
+ #: ../includes/mycred-functions.php:2301
4105
  msgid "Event Sale (Event Espresso)"
4106
  msgstr ""
4107
 
4108
+ #: ../includes/mycred-functions.php:2305
4109
  msgid "Event Payment (Events Manager)"
4110
  msgstr ""
4111
 
4112
+ #: ../includes/mycred-functions.php:2306
4113
  msgid "Event Sale (Events Manager)"
4114
  msgstr ""
4115
 
4116
+ #: ../includes/mycred-functions.php:2310
4117
  msgid "Content Purchase / Sale"
4118
  msgstr ""
4119
 
4120
+ #: ../includes/mycred-functions.php:2317
4121
  msgid "Manual Adjustment by Admin"
4122
  msgstr ""
4123
 
4292
  "certifique-se que esta é a quantidade máxima que um usuário seria capaz de "
4293
  "transferir, comprar ou gastar em sua loja. Use zero para desabilitar."
4294
 
4295
+ #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
4296
+ msgid "Excludes"
4297
+ msgstr "Excluir"
4298
+
4299
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4300
  msgid "Exclude those who can \"Edit Settings\"."
4301
  msgstr "Excluir aqueles que podem \"Edit Settings\"."
4403
  msgid "Entry"
4404
  msgstr "Entrada"
4405
 
4406
+ #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:468
4407
  msgid "User Missing"
4408
  msgstr "Usuário ausente"
4409
 
4597
  "Lembre-se de desativar quando não utilizado para evitar chamadas maliciosas "
4598
  "de aprendizado sobre a configuração!"
4599
 
4600
+ #: ../includes/mycred-shortcodes.php:154
4601
  msgid "Leaderboard is empty."
4602
  msgstr "O ranking está vazio."
4603
 
4604
+ #: ../includes/mycred-shortcodes.php:425 ../includes/mycred-shortcodes.php:549
4605
  msgid "Amount missing!"
4606
  msgstr "Quantia ausente!"
4607
 
4608
+ #: ../includes/mycred-shortcodes.php:428 ../includes/mycred-shortcodes.php:557
4609
  msgid "Log Template Missing!"
4610
  msgstr "Modelo de registro ausente!"
4611
 
4612
+ #: ../includes/mycred-shortcodes.php:491
4613
  msgid "Anchor missing URL!"
4614
  msgstr "Ancoras de URL ausentes!"
4615
 
4616
+ #: ../includes/mycred-shortcodes.php:553
4617
  msgid "User ID missing for recipient."
4618
  msgstr "ID do usuário ausente para o destinatário."
4619
 
4620
+ #: ../includes/mycred-shortcodes.php:608
4621
  msgid "Sent"
4622
  msgstr "Enviar"
4623
 
4624
+ #: ../includes/mycred-shortcodes.php:609
4625
  msgid "Error - Try Again"
4626
  msgstr "Erro - Tente novamente"
4627
 
4628
+ #: ../includes/mycred-shortcodes.php:718
4629
  msgid "A video ID is required for this shortcode"
4630
  msgstr "O ID do vídeo é obrigatório para este shortcode"
4631
 
4632
+ #: ../includes/mycred-shortcodes.php:864 ../includes/mycred-shortcodes.php:958
4633
  msgid "Point types not found."
4634
  msgstr ""
4635
 
4636
+ #: ../includes/mycred-shortcodes.php:870 ../includes/mycred-shortcodes.php:878 ..
4637
+ #: includes/mycred-shortcodes.php:970 ../includes/mycred-shortcodes.php:990
4638
  #, php-format
4639
  msgid "You are excluded from using %s."
4640
  msgstr ""
4641
 
4642
+ #: ../includes/mycred-shortcodes.php:874 ../includes/mycred-shortcodes.php:980
4643
  msgid "Your balance is too low to use this feature."
4644
  msgstr ""
4645
 
4646
+ #: ../includes/mycred-shortcodes.php:895
4647
  #, php-format
4648
  msgid "Convert <span>%s</span> to <span>%s</span>"
4649
  msgstr ""
4650
 
4651
+ #: ../includes/mycred-shortcodes.php:904
4652
  #, php-format
4653
  msgid "Your current %s balance"
4654
  msgstr ""
4655
 
4656
+ #: ../includes/mycred-shortcodes.php:912
4657
  #, php-format
4658
  msgid "Minimum %s"
4659
  msgstr ""
4660
 
4661
+ #: ../includes/mycred-shortcodes.php:916
4662
  #, php-format
4663
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4664
  msgstr ""
4665
 
4666
+ #: ../includes/mycred-shortcodes.php:922
4667
  msgid "Exchange"
4668
  msgstr ""
4669
 
4670
+ #: ../includes/mycred-shortcodes.php:1003
4671
  #, php-format
4672
  msgid "You must exchange at least %s!"
4673
  msgstr ""
4674
 
4675
+ #: ../includes/mycred-shortcodes.php:1025
4676
  #, php-format
4677
  msgid "Exchange from %s"
4678
  msgstr ""
4679
 
4680
+ #: ../includes/mycred-shortcodes.php:1037
4681
  #, php-format
4682
  msgid "Exchange to %s"
4683
  msgstr ""
4684
 
4685
+ #: ../includes/mycred-shortcodes.php:1045
4686
  #, php-format
4687
  msgid "You have successfully exchanged %s into %s."
4688
  msgstr ""
4991
  msgid "Give your users badges based on their interaction with your website."
4992
  msgstr ""
4993
 
4994
+ #: ../modules/mycred-module-addons.php:158
4995
+ msgid "Setup recurring payouts or offer / charge interest on user account balances."
4996
+ msgstr ""
4997
+ "Configurar pagamentos recorrentes ou ofertas / cobrar juros sobre o saldo da "
4998
+ "conta do usuário."
4999
+
5000
  #: ../modules/mycred-module-addons.php:169
5001
  msgid ""
5002
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5329
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5330
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5331
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5332
+ #: 2645 ../modules/mycred-module-hooks.php:2674 ../plugins/mycred-hook-badgeOS.
5333
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5334
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5335
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
5391
  msgid "%plural% for viewing %s"
5392
  msgstr ""
5393
 
5394
+ #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2653
5395
+ #: ../modules/mycred-module-hooks.php:2682 ../plugins/mycred-hook-invite-anyone.
5396
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5397
  msgid "Limit"
5398
  msgstr "Limite"
5484
  msgid "Custom tags: %url%, %title% or %id%."
5485
  msgstr "Etiquetas personalizadas: %url%, %title% ou %id%."
5486
 
5487
+ #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2756
5488
  msgid "Note!"
5489
  msgstr "Nota!"
5490
 
5567
  msgid "Link"
5568
  msgstr "Link"
5569
 
5570
+ #: ../modules/mycred-module-hooks.php:2639
5571
  msgid "Referring Visitors"
5572
  msgstr "Visitantes por referência"
5573
 
5574
+ #: ../modules/mycred-module-hooks.php:2663 ../modules/mycred-module-hooks.php:2692
5575
  msgid "The number of referrals each member can make. Use zero for unlimited."
5576
  msgstr "O número de referências que cada membro pode fazer. Use zero para ilimitada."
5577
 
5578
+ #: ../modules/mycred-module-hooks.php:2667 ../modules/mycred-module-hooks.php:2696
5579
  msgid "Referring Signups"
5580
  msgstr "Registros por referência"
5581
 
5582
+ #: ../modules/mycred-module-hooks.php:2671
5583
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5584
  msgstr "Os visitantes que desativaram os cookies não serão premiados com %_plural%."
5585
 
5586
+ #: ../modules/mycred-module-hooks.php:2698
5587
  msgid "Registrations are disabled."
5588
  msgstr "As inscrições estão desativadas."
5589
 
5590
+ #: ../modules/mycred-module-hooks.php:2705
5591
  msgid "Referral Links"
5592
  msgstr "Links de referência"
5593
 
5594
+ #: ../modules/mycred-module-hooks.php:2709
5595
  msgid "Assign numeric referral IDs to each user."
5596
  msgstr "Atribuir IDs numéricos de referência para cada usuário."
5597
 
5598
+ #: ../modules/mycred-module-hooks.php:2710 ../modules/mycred-module-hooks.php:2716
5599
  msgid "Example"
5600
  msgstr "Exemplo"
5601
 
5602
+ #: ../modules/mycred-module-hooks.php:2715
5603
  msgid "Assign usernames as IDs for each user."
5604
  msgstr "Atribuir nome de usuário como IDs para cada usuário."
5605
 
5606
+ #: ../modules/mycred-module-hooks.php:2719
5607
  msgid "IP Limit"
5608
  msgstr "Limite de IP"
5609
 
5610
+ #: ../modules/mycred-module-hooks.php:2723
5611
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5612
  msgstr ""
5613
  "O número de vezes que cada endereço IP dá de %_plural%. Use zero para "
5614
  "ilimitado."
5615
 
5616
+ #: ../modules/mycred-module-hooks.php:2727 ../modules/mycred-module-hooks.php:2760
5617
  msgid "BuddyPress Profile"
5618
  msgstr "Perfil do BuddyPress"
5619
 
5620
+ #: ../modules/mycred-module-hooks.php:2730
5621
  msgid "Insert Link in users Profile"
5622
  msgstr "Inserir link no perfil do usuário"
5623
 
5624
+ #: ../modules/mycred-module-hooks.php:2731
5625
  msgid ""
5626
  "Option to inser the referral link in users profiles. Links will only be "
5627
  "visible to users viewing their own profiles or administrators."
5630
  "somente serão visíveis para usuários que visualizam o seu próprio perfil ou "
5631
  "administradores."
5632
 
5633
+ #: ../modules/mycred-module-hooks.php:2737
5634
  msgid "Leave empty to hide."
5635
  msgstr "Deixe em brando para esconder."
5636
 
5637
+ #: ../modules/mycred-module-hooks.php:2740
5638
  msgid "Description"
5639
  msgstr "Descrição"
5640
 
5641
+ #: ../modules/mycred-module-hooks.php:2741
5642
  msgid "Optional description to insert under the link."
5643
  msgstr "Descrição opcional para inserir abaixo do link."
5644
 
5645
+ #: ../modules/mycred-module-hooks.php:2753
5646
  msgid "Profile Positioning"
5647
  msgstr "Posicionamento de perfil "
5648
 
5649
+ #: ../modules/mycred-module-hooks.php:2755
5650
  msgid ""
5651
  "You can move around the referral link on your users profile by changing the "
5652
  "position. Increase to move up, decrease to move down."
5654
  "Você pode mover o link de referência no seu perfil de usuário, alterando a "
5655
  "posição. Aumente para subir, diminua para mover para baixo."
5656
 
5657
+ #: ../modules/mycred-module-hooks.php:2756
5658
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5659
  msgstr ""
5660
  "Você não pode mover o link de referência acima da \"Base\" de detalhes de "
5661
  "perfil do usuário!"
5662
 
5663
+ #: ../modules/mycred-module-hooks.php:2762
5664
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5665
  msgstr "Requer perfis extendidos do BuddyPress para ser habilitado."
5666
 
5685
  msgid "Entries"
5686
  msgstr "Entradas"
5687
 
5688
+ #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
5689
+ #: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:574
5690
  msgid "Export"
5691
  msgstr "Exportar"
5692
 
5694
  msgid "Search results for"
5695
  msgstr "Resultados da busca por"
5696
 
5697
+ #: ../modules/mycred-module-log.php:378
5698
  #, php-format
5699
  msgid "%s Log"
5700
  msgstr "%s Registro"
5701
 
5702
+ #: ../modules/mycred-module-log.php:506
5703
  msgid "Edit"
5704
  msgstr "Editar"
5705
 
5706
+ #: ../modules/mycred-module-log.php:547
5707
  msgid "Time"
5708
  msgstr "Tempo"
5709
 
5710
+ #: ../modules/mycred-module-log.php:551
5711
  msgid "Current Log Entry"
5712
  msgstr "Entrada de registro atual"
5713
 
5714
+ #: ../modules/mycred-module-log.php:553
5715
  msgid "The current saved log entry"
5716
  msgstr "Entrada de registro atual salva"
5717
 
5718
+ #: ../modules/mycred-module-log.php:556
5719
  msgid "Adjust Log Entry"
5720
  msgstr "Ajustar entrada de registro"
5721
 
5722
+ #: ../modules/mycred-module-log.php:558
5723
  msgid "The new log entry"
5724
  msgstr "Nova entrada de registro"
5725
 
5726
+ #: ../modules/mycred-module-log.php:561
5727
  msgid "Update Log Entry"
5728
  msgstr "Atualizar entrada de registro"
5729
 
5730
+ #: ../modules/mycred-module-log.php:628
5731
  #, php-format
5732
  msgid "My %s History"
5733
  msgstr "Meu %s histórico"
6446
  #: ../plugins/mycred-hook-wp-polls.php:19
6447
  #, php-format
6448
  msgid "Awards %_plural% for users voting in polls."
6449
+ msgstr ""
6450
+ "Recompensar com %_plural% os usuários que votaram em enquetes.Recompensar "
6451
+ "com %_plural% os usuários que votaram em enquetes."
lang/mycred-ru_RU.mo CHANGED
Binary file
lang/mycred-ru_RU.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 Jul 28 2014 16:21:58 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Russian\n"
@@ -15,7 +15,7 @@ msgstr ""
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Loco - https://localise.biz/\n"
17
  "X-Poedit-Basepath: .\n"
18
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3ettext:2,3;"
19
  "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
@@ -45,8 +45,8 @@ msgstr "Потрясающие люди"
45
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
46
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
47
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
48
- #: sell-content.php:364 ../addons/transfer/myCRED-addon-transfer.php:132 ..
49
- #: includes/mycred-shortcodes.php:605
50
  msgid "Processing..."
51
  msgstr "Обработка..."
52
 
@@ -153,7 +153,7 @@ msgid "Once per day (reset at midnight)"
153
  msgstr "Один раз в день (перезагрузка в полночь)"
154
 
155
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
156
- #: abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
157
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
158
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
159
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
@@ -179,8 +179,8 @@ msgstr "кликнуть, чтобы закрыть"
179
  msgid "click to open"
180
  msgstr "кликнуть, чтобы открыть"
181
 
182
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-
183
- #: banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:849
184
  msgid "Settings Updated"
185
  msgstr "Настройки обновлены"
186
 
@@ -385,147 +385,191 @@ msgstr ""
385
  msgid "in total"
386
  msgstr ""
387
 
388
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-
389
- #: banking.php:43 ../addons/banking/myCRED-addon-banking.php:44
390
  msgid "Banking"
391
  msgstr "Банкинг"
392
 
393
- #: ../addons/banking/myCRED-addon-banking.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
394
  msgid "Compound Interest"
395
  msgstr "Сложный процент"
396
 
397
- #: ../addons/banking/myCRED-addon-banking.php:104
398
  #, php-format
399
- msgid ""
400
- "Apply an interest rate on your users %_plural% balances. Interest rate is "
401
- "annual and is compounded daily as long as this service is enabled. Positive "
402
- "interest rate leads to users gaining %_plural% while a negative interest "
403
- "rate will to users loosing %_plural%."
404
- msgstr ""
405
- "Применить процентные ставки к балансу ваших пользователей %_plural%. "
406
- "Процентные ставки являются годовыми и составляются ежедневно до тех пор, "
407
- "пока работает данная услуга. Положительная процентная ставка приводит к "
408
- "заработкам пользователей %_plural%, а отрицательная приводит к потерям "
409
- "пользователей %_plural%."
410
-
411
- #: ../addons/banking/myCRED-addon-banking.php:110
412
  msgid "Recurring Payouts"
413
  msgstr "Возвращение выплат"
414
 
415
- #: ../addons/banking/myCRED-addon-banking.php:111
416
- #, php-format
417
- msgid ""
418
- "Give your users %_plural% on a regular basis with the option to set the "
419
- "number of times you want this payout to run (cycles)."
420
  msgstr ""
421
- "Предоставить вашим пользователям %_plural% на постоянной основе, чтобы "
422
- "установить количество желаемых циклов платежей. "
423
 
424
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-
425
- #: addon-buy-creds.php:839 ../addons/buy-creds/myCRED-addon-buy-creds.php:935 ..
426
- #: includes/mycred-admin.php:573 ../includes/mycred-network.php:148 ..
427
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
428
- #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:579 ..
429
  #: modules/mycred-module-settings.php:312
430
  msgid "Access Denied"
431
  msgstr "Ошибка Доступа"
432
 
433
- #: ../addons/banking/myCRED-addon-banking.php:167
434
  #, php-format
435
  msgid "%s Banking"
436
  msgstr "%s Банкинг"
437
 
438
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.
439
- #: php:158
440
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
441
  msgstr ""
442
- "Установка повторения платежей или предложений / начисления процентов на "
443
- "баланс аккаунта пользователя. "
444
 
445
  #. Cron deactivation
446
- #: ../addons/banking/myCRED-addon-banking.php:171
447
  msgid "WP-Cron deactivation detected!"
448
  msgstr "Обнаружена деактивация WP-Cron!"
449
 
450
- #: ../addons/banking/myCRED-addon-banking.php:172
451
  msgid "Warning! This add-on requires WP - Cron to work."
452
  msgstr "Предупреждение! Этот модуль требует WP - утилиту Cron для работы."
453
 
454
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-
455
- #: addon-buy-creds.php:873 ../modules/mycred-module-hooks.php:196
456
  msgid "Enable"
457
  msgstr "Разрешить"
458
 
459
- #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
460
  #: php:211
461
  msgid "Update Changes"
462
  msgstr "Обновить изменения"
463
 
464
- #: ../addons/banking/abstracts/mycred-abstract-service.php:57
465
- msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
466
- msgstr "функция myCRED_Service::run() должна быть переопределена в подкласс. "
467
-
468
- #: ../addons/banking/abstracts/mycred-abstract-service.php:66
469
  msgid "This Service has no settings"
470
  msgstr "Этот сервис не имеет настроек"
471
 
472
- #: ../addons/banking/abstracts/mycred-abstract-service.php:143
473
  msgid "Hourly"
474
  msgstr "Каждый час"
475
 
476
- #: ../addons/banking/abstracts/mycred-abstract-service.php:147
477
  msgid "Daily"
478
  msgstr "Ежедневно"
479
 
480
- #: ../addons/banking/abstracts/mycred-abstract-service.php:151
481
  msgid "Weekly"
482
  msgstr "Еженедельно"
483
 
484
- #: ../addons/banking/abstracts/mycred-abstract-service.php:155
485
  msgid "Monthly"
486
  msgstr "Ежемесячно"
487
 
488
- #: ../addons/banking/abstracts/mycred-abstract-service.php:159
489
  msgid "Quarterly"
490
  msgstr "Поквартально"
491
 
492
- #: ../addons/banking/abstracts/mycred-abstract-service.php:163
493
  msgid "Semiannually"
494
  msgstr "Раз в полгода"
495
 
496
- #: ../addons/banking/abstracts/mycred-abstract-service.php:167
497
  msgid "Annually"
498
  msgstr "Раз в год"
499
 
500
- #: ../addons/banking/services/mycred-bank-service-interest.php:25
 
 
 
 
 
 
 
 
 
 
 
 
501
  msgid "%plural% interest rate payment"
502
  msgstr "%plural% платеж процентных ставок"
503
 
504
- #: ../addons/banking/services/mycred-bank-service-interest.php:275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
505
  msgid "Interest Rate"
506
  msgstr "Процентные ставки"
507
 
508
- #: ../addons/banking/services/mycred-bank-service-interest.php:282
509
- msgid "Payed / Charged"
510
- msgstr "Оплачено"
511
-
512
- #: ../addons/banking/services/mycred-bank-service-interest.php:288
513
- msgid "The interest rate can be either positive or negative and is compounded daily."
514
  msgstr ""
515
- "Процентные ставки могут быть положительными или отрицательными; они "
516
- "составляются ежедневно."
517
 
518
- #: ../addons/banking/services/mycred-bank-service-interest.php:291 ..
519
- #: addons/coupons/myCRED-addon-coupons.php:392
520
- msgid "Minimum Balance"
521
- msgstr "Минимальный баланс"
522
 
523
- #: ../addons/banking/services/mycred-bank-service-interest.php:295
524
- msgid "The minimum requires balance for interest to apply."
525
- msgstr "Минимальный требуемый баланс для применения процентных ставок."
 
526
 
527
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ..
528
- #: addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-
529
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
530
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
531
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
@@ -543,95 +587,119 @@ msgstr "Минимальный требуемый баланс для приме
543
  msgid "Log Template"
544
  msgstr "Шаблон Журнала"
545
 
546
- #: ../addons/banking/services/mycred-bank-service-interest.php:305 ..
547
- #: addons/banking/services/mycred-bank-service-payouts.php:259
548
- msgid "Run Time"
549
- msgstr "Время непрерывной работы"
 
550
 
551
- #: ../addons/banking/services/mycred-bank-service-interest.php:309 ..
552
- #: addons/banking/services/mycred-bank-service-payouts.php:263
553
- msgid ""
554
- "For large websites, if you are running into time out issues during payouts, "
555
- "you can set the number of seconds a process can run. Use zero for unlimited, "
556
- "but be careful especially if you are on a shared server."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
557
  msgstr ""
558
- "Для крупных веб-сайтов, если вы столкнулись с тайм-аутом во время выплат, у "
559
- "вас есть возможность установить длительность процесса в секундах. "
560
- "Используйте ноль для безлимита, но будьте осторожны, особенно если вы "
561
- "используете виртуальный хостинг."
562
 
563
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
564
  msgid "Daily %_plural%"
565
  msgstr "Ежедневно %_plural%"
566
 
567
- #: ../addons/banking/services/mycred-bank-service-payouts.php:214
568
- msgid "Not yet run"
569
- msgstr "Еще не запущено"
 
 
 
 
 
 
 
 
 
 
570
 
571
- #: ../addons/banking/services/mycred-bank-service-payouts.php:219
572
  msgid "Pay Users"
573
  msgstr "Заплатить пользователям"
574
 
575
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
576
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
577
- #: creds.php:1520 ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ..
578
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
579
- #: includes/mycred-admin.php:726 ../includes/mycred-admin.php:771 ..
580
- #: includes/mycred-shortcodes.php:908
581
  msgid "Amount"
582
  msgstr "Количество"
583
 
584
- #: ../addons/banking/services/mycred-bank-service-payouts.php:224
585
- msgid "Can not be zero."
586
- msgstr "Не может быть нулевым. "
587
-
588
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ..
589
- #: addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-
590
- #: module-hooks.php:2113
591
  msgid "Interval"
592
  msgstr "Промежуток"
593
 
594
- #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ..
595
- #: addons/banking/services/mycred-bank-service-payouts.php:242
596
  msgid "Cycles"
597
  msgstr "Циклы"
598
 
599
- #: ../addons/banking/services/mycred-bank-service-payouts.php:235
600
  msgid "Set to -1 for unlimited"
601
  msgstr "Установить -1 для "
602
 
603
- #: ../addons/banking/services/mycred-bank-service-payouts.php:238
604
- msgid "Last Run / Activated"
605
- msgstr "Последний запуск / Активация"
606
-
607
- #: ../addons/banking/services/mycred-bank-service-payouts.php:241
608
- msgid ""
609
- "Select how often you want to award %_plural%. Note that when this service is "
610
- "enabled, the first payout will be in the beginning of the next period. So "
611
- "with a \"Daily\" interval, the first payout will occur first thing in the "
612
- "morning."
613
- msgstr ""
614
- "Выберите, как часто вы хотите вознаграждать %_plural%. Имейте в виду, если "
615
- "данная услуга не активирована, первый платеж произойдет в начале следующего "
616
- "периода. При выборе интервала \"Ежедневно\", первый платеж будет выполнен "
617
- "утром."
618
-
619
- #: ../addons/banking/services/mycred-bank-service-payouts.php:242
620
- msgid ""
621
- "Cycles let you choose how many intervals this service should run. Each time "
622
- "a cycle runs, the value will decrease until it hits zero, in which case this "
623
- "service will deactivate itself. Use -1 to run unlimited times."
624
- msgstr ""
625
- "Циклы позволяют вам выбирать, сколько интервалов может обслуживать этот "
626
- "сервис. После каждого запуска цикла, значение будет уменьшаться, пока не "
627
- "достигнет нуля. В таком случае этот сервис отключится самостоятельно. "
628
- "Используйте -1 для неограниченного количества запусков."
629
-
630
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
631
  msgid "Important"
632
  msgstr "Важно"
633
 
634
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
635
  msgid ""
636
  "You can always stop payouts by deactivating this service. Just remember that "
637
  "if you deactivate while there are cycles left, this service will continue on "
@@ -642,19 +710,6 @@ msgstr ""
642
  "будет работать после возобновления. Обнулите циклы, чтобы выполнить сброс "
643
  "настроек."
644
 
645
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
646
- #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
647
- msgid "Excludes"
648
- msgstr "Исключает"
649
-
650
- #: ../addons/banking/services/mycred-bank-service-payouts.php:249
651
- msgid ""
652
- "Comma separated list of user IDs to exclude from this service. No spaces "
653
- "allowed!"
654
- msgstr ""
655
- "Список ID пользователей для исключения из данного сервиса. Использование "
656
- "пробелов запрещено! "
657
-
658
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
659
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
660
  msgid "Payment Gateways"
@@ -680,7 +735,7 @@ msgid "Edit Pending Payment"
680
  msgstr ""
681
 
682
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
683
- #: addon-buy-creds.php:1631
684
  msgid "No pending payments found"
685
  msgstr ""
686
 
@@ -689,23 +744,23 @@ msgid "Not found in Trash"
689
  msgstr ""
690
 
691
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
692
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595
693
  msgid "Transaction ID"
694
  msgstr "Код трансакции "
695
 
696
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
697
- #: addon-buy-creds.php:984
698
  msgid "Buyer"
699
  msgstr ""
700
 
701
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
702
- #: addon-buy-creds.php:1598 ../addons/buy-creds/abstracts/mycred-abstract-payment-
703
  #: gateway.php:563
704
  msgid "Cost"
705
  msgstr "Цена"
706
 
707
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
708
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1596 ..
709
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
710
  msgid "Gateway"
711
  msgstr "Шлюз"
@@ -723,14 +778,14 @@ msgid "buyCRED Purchase Log"
723
  msgstr "приобрести журнал покупок CRED"
724
 
725
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
726
- #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:845
727
  msgid "Purchase Log"
728
  msgstr "Журнал покупки"
729
 
730
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
731
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
732
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
733
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:416
734
  msgid "Payments"
735
  msgstr "Платежи"
736
 
@@ -807,7 +862,7 @@ msgid "Allow users to buy %_plural% for content authors."
807
  msgstr "Разрешить пользователям покупать %_plural% для авторов контента."
808
 
809
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
810
- #: hooks.php:2748
811
  msgid "Available Shortcodes"
812
  msgstr "Доступные короткие коды"
813
 
@@ -816,158 +871,153 @@ msgstr "Доступные короткие коды"
816
  msgid "%s Exchange Rate"
817
  msgstr ""
818
 
819
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:759 ../addons/sell-
820
- #: content/myCRED-addon-sell-content.php:113
821
- msgid "Leave empty to use the default value."
822
- msgstr ""
823
-
824
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
825
  msgid "Save Exchange Rates"
826
  msgstr ""
827
 
828
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
829
  msgid "Exchange rate override saved"
830
  msgstr ""
831
 
832
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:827
833
  msgid "Payment completed"
834
  msgstr ""
835
 
836
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
837
  #, php-format
838
  msgid "%s Payment Gateways"
839
  msgstr "%s Способы оплаты"
840
 
841
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845 ../addons/buy-creds/myCRED-
842
- #: addon-buy-creds.php:992
843
  msgid "buyCRED Settings"
844
  msgstr "настройки buyCRED"
845
 
846
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
847
  msgid "Test Mode"
848
  msgstr "Тестовый режим"
849
 
850
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
851
  msgid "Enabled"
852
  msgstr "Включено"
853
 
854
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:871
855
  msgid "Disabled"
856
  msgstr "Отключено"
857
 
858
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
859
  msgid "Sandbox Mode"
860
  msgstr "Режим изолированной программной среды."
861
 
862
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:884
863
  msgid "Enable for test purchases."
864
  msgstr "Разрешить тестовые покупки."
865
 
866
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:901 ../addons/gateway/event-
867
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
868
  msgid "Update Settings"
869
  msgstr "Настройки обновлений"
870
 
871
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
872
  msgid "More Gateways"
873
  msgstr ""
874
 
875
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
876
  #: 634
877
  msgid "Date"
878
  msgstr "Дата "
879
 
880
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
881
  msgid "Payed"
882
  msgstr "Оплачено"
883
 
884
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
885
  msgid "<strong>buy</strong>CRED Purchase Log"
886
  msgstr "<strong>купить</strong>CRED журнал покупки"
887
 
888
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
889
  #: booking/mycred-eventespresso3.php:367
890
  msgid "Gateway Settings"
891
  msgstr "Настройки шлюза"
892
 
893
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1168 ../addons/sell-
894
- #: content/myCRED-addon-sell-content.php:1184
895
  msgid "No purchases found"
896
  msgstr "Покупок не обнаружено"
897
 
898
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1238 ../addons/buy-creds/myCRED-
899
- #: addon-buy-creds.php:1351
900
  msgid "This Add-on needs to setup before you can use this shortcode."
901
  msgstr ""
902
  "Это расширение необходимо установить перед началом использования этого "
903
  "короткого номера."
904
 
905
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1257 ../addons/buy-creds/myCRED-
906
- #: addon-buy-creds.php:1370
907
  msgid "No gateways installed."
908
  msgstr "Нет установленных шлюзов."
909
 
910
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1258 ../addons/buy-creds/myCRED-
911
- #: addon-buy-creds.php:1371
912
  msgid "Gateway does not exist."
913
  msgstr "Шлюз не существует."
914
 
915
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1306
916
  msgid "Yourself"
917
  msgstr "Самостоятельно"
918
 
919
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1372
920
  msgid "No active gateways found."
921
  msgstr "Активных шлюзов не обнаружено."
922
 
923
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1373
924
  msgid "The selected gateway is not active."
925
  msgstr "Выбранный шлюз не активен."
926
 
927
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1420
928
  #, php-format
929
  msgid "Buy with %gateway%"
930
  msgstr "Приобрести с %gateway%"
931
 
932
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1426 ../addons/sell-
933
  #: content/myCRED-addon-sell-content.php:44
934
  msgid "Buy Now"
935
  msgstr "Купить сейчас"
936
 
937
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1471
938
  msgid "No users found"
939
  msgstr "Пользователи не найдены"
940
 
941
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1481
942
  msgid "To"
943
  msgstr "До"
944
 
945
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1498
946
  msgid "Select Amount"
947
  msgstr "Выбать количество "
948
 
949
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1522
950
  msgid "min."
951
  msgstr "мин."
952
 
953
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1530
954
  msgid "Select Gateway"
955
  msgstr "Выбрать шлюз"
956
 
957
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1571 ../addons/gateway/event-
958
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
959
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
960
  #: php:35
961
  msgid "Pay Now"
962
  msgstr "Оплатить сейчас"
963
 
964
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1572 ../includes/mycred-install.
965
  #: php:515
966
  msgid "Cancel"
967
  msgstr "Отменить"
968
 
969
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ../addons/ranks/myCRED-
970
- #: addon-ranks.php:990 ../modules/mycred-module-log.php:372 ../modules/mycred-
971
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
972
  msgid "Actions"
973
  msgstr "Действия"
@@ -1007,12 +1057,12 @@ msgid "Cancel purchase"
1007
  msgstr "Отменить покупку"
1008
 
1009
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1010
- #: includes/mycred-admin.php:720 ../includes/mycred-admin.php:757
1011
  msgid "required"
1012
  msgstr "необходимо"
1013
 
1014
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1015
- #: includes/mycred-admin.php:722 ../includes/mycred-admin.php:759
1016
  msgid "optional"
1017
  msgstr "выборочно"
1018
 
@@ -1413,7 +1463,7 @@ msgstr "Страница оформления заказа"
1413
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1414
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1415
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1416
- #: modules/mycred-module-hooks.php:2713
1417
  msgid "Title"
1418
  msgstr "Название"
1419
 
@@ -1660,7 +1710,7 @@ msgstr "Сумма %plural% этого купона является ценой.
1660
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1661
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1662
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1663
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:404 ..
1664
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1665
  #: includes/importers/mycred-cubepoints.php:365
1666
  msgid "Point Type"
@@ -2067,8 +2117,8 @@ msgid "Sent To"
2067
  msgstr "Отправить"
2068
 
2069
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2070
- #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:766 ..
2071
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:544
2072
  msgid "User"
2073
  msgstr "Пользователь"
2074
 
@@ -2194,7 +2244,7 @@ msgstr ""
2194
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2195
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2196
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2197
- #: php:412 ../includes/mycred-admin.php:614 ../includes/mycred-admin.php:767
2198
  msgid "Current Balance"
2199
  msgstr "Текущий баланс"
2200
 
@@ -2319,7 +2369,7 @@ msgstr "Сколько стоит 1%_singular% в %currency%?"
2319
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2320
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2321
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2322
- #: php:578 ../includes/mycred-shortcodes.php:913
2323
  msgid "Exchange Rate"
2324
  msgstr "Курс валют"
2325
 
@@ -2545,10 +2595,6 @@ msgstr "Шаблон формы для платежей"
2545
  msgid "How much is 1 %s worth in %s"
2546
  msgstr "Сколько составляет стоимость 1 s% в %s"
2547
 
2548
- #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2549
- msgid "Payout"
2550
- msgstr "Расход средств"
2551
-
2552
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2553
  msgid "Instructions"
2554
  msgstr "Инструкции"
@@ -2623,8 +2669,8 @@ msgstr "Заголовок, который отображается на кви
2623
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2624
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2625
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2626
- #: content/myCRED-addon-sell-content.php:452 ../addons/sell-content/myCRED-addon-
2627
- #: sell-content.php:662
2628
  msgid "Button Label"
2629
  msgstr "Кнопка ярлыка"
2630
 
@@ -2637,8 +2683,8 @@ msgstr "Кнопка оплаты"
2637
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2638
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2639
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2640
- #: content/myCRED-addon-sell-content.php:443 ../addons/sell-content/myCRED-addon-
2641
- #: sell-content.php:658
2642
  msgid "Price"
2643
  msgstr "Цена"
2644
 
@@ -2660,12 +2706,12 @@ msgid "Log"
2660
  msgstr "Журнал"
2661
 
2662
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2663
- #: includes/mycred-admin.php:735 ../includes/mycred-admin.php:772
2664
  msgid "Log Entry"
2665
  msgstr "Журнал входа"
2666
 
2667
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2668
- #: content/myCRED-addon-sell-content.php:466
2669
  msgid "Templates"
2670
  msgstr "Шаблоны"
2671
 
@@ -2747,7 +2793,7 @@ msgid "Reject"
2747
  msgstr "Отклонить"
2748
 
2749
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2750
- #: modules/mycred-module-log.php:504 ../modules/mycred-module-settings.php:488 ..
2751
  #: modules/mycred-module-settings.php:507
2752
  msgid "Delete"
2753
  msgstr "Удалить"
@@ -3207,9 +3253,9 @@ msgid "No users found with this rank"
3207
  msgstr "В этом ранге пользователи не обнаружены"
3208
 
3209
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3210
- #: shortcodes.php:424 ../includes/mycred-shortcodes.php:427 ../includes/mycred-
3211
- #: shortcodes.php:489 ../includes/mycred-shortcodes.php:547 ../includes/mycred-
3212
- #: shortcodes.php:551 ../includes/mycred-shortcodes.php:555
3213
  msgid "error"
3214
  msgstr "ошибка"
3215
 
@@ -3229,44 +3275,44 @@ msgstr ""
3229
  msgid "Save Profit Share"
3230
  msgstr ""
3231
 
3232
- #: ../addons/sell-content/myCRED-addon-sell-content.php:158
3233
  msgid "Profit Share override saved"
3234
  msgstr ""
3235
 
3236
- #: ../addons/sell-content/myCRED-addon-sell-content.php:320
3237
  msgid "You can not buy this content."
3238
  msgstr "Вы не можете приобрести этот контент."
3239
 
3240
- #: ../addons/sell-content/myCRED-addon-sell-content.php:365
3241
  msgid "Error. Try Again"
3242
  msgstr "Ошибка. Повторите попытку"
3243
 
3244
- #: ../addons/sell-content/myCRED-addon-sell-content.php:387
3245
  msgid "No Payout. Just charge."
3246
  msgstr "Нет выплат. Только расходы."
3247
 
3248
- #: ../addons/sell-content/myCRED-addon-sell-content.php:388
3249
  msgid "Pay Content Author."
3250
  msgstr "Заплатить автору контента."
3251
 
3252
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394 ../includes/mycred-
3253
  #: overview.php:141 ../includes/mycred-overview.php:148
3254
  msgid "Sell Content"
3255
  msgstr "Продать контент"
3256
 
3257
- #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3258
  msgid "Post Types"
3259
  msgstr "Типы публикации"
3260
 
3261
- #: ../addons/sell-content/myCRED-addon-sell-content.php:400
3262
  msgid "Comma separated list of post types that can be sold."
3263
  msgstr "Разделенный запятой список типов постов, которые можно продать. "
3264
 
3265
- #: ../addons/sell-content/myCRED-addon-sell-content.php:430
3266
  msgid "Percentage to pay Author"
3267
  msgstr "Проценты для выплаты автору"
3268
 
3269
- #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3270
  msgid ""
3271
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3272
  "authors are not paid."
@@ -3274,31 +3320,31 @@ msgstr ""
3274
  "Процент от стоимости для выплаты автору. Не может быть нулевым и "
3275
  "игнорируется, если авторам не платят. "
3276
 
3277
- #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3278
  msgid "Defaults"
3279
  msgstr "Неплатёж"
3280
 
3281
- #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3282
  msgid "Allow authors to change price."
3283
  msgstr "Разрешить авторам изменять цену. "
3284
 
3285
- #: ../addons/sell-content/myCRED-addon-sell-content.php:457
3286
  msgid "Allow authors to change button label."
3287
  msgstr "Разрешить авторам изменять кнопку ярлыка."
3288
 
3289
- #: ../addons/sell-content/myCRED-addon-sell-content.php:461
3290
  msgid "Purchases expire after"
3291
  msgstr "Срок покупки истекает после"
3292
 
3293
- #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3294
  msgid "Use zero for permanent sales."
3295
  msgstr "Использовать ноль для постоянных распродаж."
3296
 
3297
- #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3298
  msgid "For Visitors"
3299
  msgstr ""
3300
 
3301
- #: ../addons/sell-content/myCRED-addon-sell-content.php:474
3302
  #, php-format
3303
  msgid ""
3304
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3307,69 +3353,69 @@ msgstr ""
3307
  "Не <strong>not</strong> используйте %buy_button% в этом шаблоне, поскольку "
3308
  "пользователь должен войти в систему для покупки контента!"
3309
 
3310
- #: ../addons/sell-content/myCRED-addon-sell-content.php:479
3311
  msgid "For Members"
3312
  msgstr ""
3313
 
3314
- #: ../addons/sell-content/myCRED-addon-sell-content.php:484 ../addons/sell-
3315
- #: content/myCRED-addon-sell-content.php:494
3316
  #, php-format
3317
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3318
  msgstr ""
3319
  "Ваш шаблон должен содержать тег %buy_button% для того, чтобы покупки "
3320
  "работали! "
3321
 
3322
- #: ../addons/sell-content/myCRED-addon-sell-content.php:489
3323
  msgid "For members that can not afford to buy"
3324
  msgstr ""
3325
 
3326
- #: ../addons/sell-content/myCRED-addon-sell-content.php:498
3327
  msgid "Log template for Purchases"
3328
  msgstr "Журнал шаблона для покупок"
3329
 
3330
- #: ../addons/sell-content/myCRED-addon-sell-content.php:505
3331
  msgid "Log template for Sales"
3332
  msgstr "Журнал шаблона для распродаж"
3333
 
3334
- #: ../addons/sell-content/myCRED-addon-sell-content.php:557
3335
  #, php-format
3336
  msgid "%s Sell This"
3337
  msgstr "%s продать это"
3338
 
3339
- #: ../addons/sell-content/myCRED-addon-sell-content.php:611
3340
  #, php-format
3341
  msgid "%s Sell Content needs to be setup before you can use this feature."
3342
  msgstr ""
3343
  "%s Необходимо установить продажу контента перед началом использования этого "
3344
  "свойства."
3345
 
3346
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3347
  msgid "Setup add-on"
3348
  msgstr "Расширение настройки"
3349
 
3350
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3351
  msgid "Lets do it"
3352
  msgstr "Выполнить это"
3353
 
3354
- #: ../addons/sell-content/myCRED-addon-sell-content.php:652
3355
  #, php-format
3356
  msgid "Enable sale of this %s"
3357
  msgstr ""
3358
 
3359
- #: ../addons/sell-content/myCRED-addon-sell-content.php:666
3360
  msgid "Purchase expires after"
3361
  msgstr "Срок действия покупки истекает после "
3362
 
3363
- #: ../addons/sell-content/myCRED-addon-sell-content.php:992
3364
  msgid "Thank you for your purchase!"
3365
  msgstr "Благодарим вас за вашу покупку!"
3366
 
3367
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1080 ../addons/sell-
3368
- #: content/myCRED-addon-sell-content.php:1166
3369
  msgid "The following content is set for sale:"
3370
  msgstr "Следующий контент установлен на продажу:"
3371
 
3372
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1226
3373
  msgid "Purchased"
3374
  msgstr "Купленный"
3375
 
@@ -3382,7 +3428,7 @@ msgid "You have exceeded your %limit% transfer limit."
3382
  msgstr "Вы превысили ваш %limit% лимит передачи."
3383
 
3384
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3385
- #: php:2295
3386
  msgid "Transfer"
3387
  msgstr "Передать"
3388
 
@@ -3421,7 +3467,7 @@ msgstr ""
3421
  "это не будет выполнено!"
3422
 
3423
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3424
- #: php:1010
3425
  msgid "Insufficient Funds. Please try a lower amount."
3426
  msgstr ""
3427
 
@@ -3649,97 +3695,92 @@ msgstr "Сумма не может быть равна нулю"
3649
  msgid "Failed to update this uses balance."
3650
  msgstr "Ошибка обновления баланса пользователя."
3651
 
3652
- #: ../includes/mycred-admin.php:404
3653
  msgid "Excluded"
3654
  msgstr "Исключено"
3655
 
3656
- #: ../includes/mycred-admin.php:414
3657
  #, php-format
3658
  msgid "Total: %s"
3659
  msgstr ""
3660
 
3661
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:254 ..
3662
- #: modules/mycred-module-log.php:255
3663
- msgid "History"
3664
- msgstr "История"
3665
-
3666
- #: ../includes/mycred-admin.php:423
3667
  msgid "Adjust"
3668
  msgstr "Корректировать"
3669
 
3670
- #: ../includes/mycred-admin.php:461 ../includes/mycred-admin.php:462
3671
  msgid "Edit Balance"
3672
  msgstr ""
3673
 
3674
- #: ../includes/mycred-admin.php:480
3675
  msgid "Profile"
3676
  msgstr ""
3677
 
3678
- #: ../includes/mycred-admin.php:487
3679
  msgid "Extended Profile"
3680
  msgstr ""
3681
 
3682
- #: ../includes/mycred-admin.php:577
3683
  #, php-format
3684
  msgid "This user is excluded from using %s"
3685
  msgstr ""
3686
 
3687
- #: ../includes/mycred-admin.php:600
3688
  msgid "Edit User"
3689
  msgstr ""
3690
 
3691
- #: ../includes/mycred-admin.php:602
3692
  msgctxt "user"
3693
  msgid "Add New"
3694
  msgstr ""
3695
 
3696
- #: ../includes/mycred-admin.php:604
3697
  msgctxt "user"
3698
  msgid "Add Existing"
3699
  msgstr ""
3700
 
3701
- #: ../includes/mycred-admin.php:615
3702
  #, php-format
3703
  msgid "Total %s Accumulated"
3704
  msgstr ""
3705
 
3706
- #: ../includes/mycred-admin.php:616
3707
  #, php-format
3708
  msgid "Total %s Spent"
3709
  msgstr ""
3710
 
3711
- #: ../includes/mycred-admin.php:627
3712
  msgid "View History"
3713
  msgstr ""
3714
 
3715
- #: ../includes/mycred-admin.php:628
3716
  msgid "Exclude User"
3717
  msgstr ""
3718
 
3719
- #: ../includes/mycred-admin.php:632
3720
  msgid "Adjust Balance"
3721
  msgstr ""
3722
 
3723
- #: ../includes/mycred-admin.php:641
3724
  msgid ""
3725
  "Warning! Excluding this user will result in their balance being deleted "
3726
  "along with any entries currently in your log! This can not be undone!"
3727
  msgstr ""
3728
 
3729
- #: ../includes/mycred-admin.php:699
3730
  #, php-format
3731
  msgid "%singular% balance"
3732
  msgstr "%singular% баланс"
3733
 
3734
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:773
3735
  msgid "Update Balance"
3736
  msgstr "Обновить баланс"
3737
 
3738
- #: ../includes/mycred-admin.php:765
3739
  msgid "ID"
3740
  msgstr "ID"
3741
 
3742
- #: ../includes/mycred-admin.php:771
3743
  msgid "A positive or negative value"
3744
  msgstr "Положительное или отрицательное значение"
3745
 
@@ -3791,298 +3832,298 @@ msgstr "и"
3791
  msgid "Available Template Tags:"
3792
  msgstr "Доступные теги шаблонов:"
3793
 
3794
- #: ../includes/mycred-functions.php:1655
3795
  msgid "Entire Log"
3796
  msgstr "Весь журнал"
3797
 
3798
- #: ../includes/mycred-functions.php:1660 ../includes/mycred-functions.php:1661
3799
  msgid "Displayed Rows"
3800
  msgstr "Показанные ряды"
3801
 
3802
- #: ../includes/mycred-functions.php:1668
3803
  msgid "Search Results"
3804
  msgstr "Искать результаты"
3805
 
3806
- #: ../includes/mycred-functions.php:1669
3807
  msgid "My Entire Log"
3808
  msgstr "Мой полный журнал"
3809
 
3810
- #: ../includes/mycred-functions.php:1790
3811
  msgid "ref empty"
3812
  msgstr "образец пустой"
3813
 
3814
- #: ../includes/mycred-functions.php:1798
3815
  msgid "incorrect user id format"
3816
  msgstr "неверный формат id пользователя"
3817
 
3818
- #: ../includes/mycred-functions.php:1811
3819
  msgid "incorrect unix timestamp (from):"
3820
  msgstr "неправильная временная отметка операционной системы (от):"
3821
 
3822
- #: ../includes/mycred-functions.php:1820
3823
  msgid "incorrect unix timestamp (to):"
3824
  msgstr "неправильная временная отметка операционной системы (до):"
3825
 
3826
- #: ../includes/mycred-functions.php:2182
3827
  msgid "Website Registration"
3828
  msgstr ""
3829
 
3830
- #: ../includes/mycred-functions.php:2183
3831
  msgid "Website Visit"
3832
  msgstr ""
3833
 
3834
- #: ../includes/mycred-functions.php:2184
3835
  msgid "Viewing Content (Member)"
3836
  msgstr ""
3837
 
3838
- #: ../includes/mycred-functions.php:2185
3839
  msgid "Viewing Content (Author)"
3840
  msgstr ""
3841
 
3842
- #: ../includes/mycred-functions.php:2186
3843
  msgid "Logging in"
3844
  msgstr ""
3845
 
3846
- #: ../includes/mycred-functions.php:2187
3847
  msgid "Publishing Content"
3848
  msgstr ""
3849
 
3850
- #: ../includes/mycred-functions.php:2188 ../modules/mycred-module-hooks.php:1421
3851
  msgid "Approved Comment"
3852
  msgstr "Комментарий одобрен"
3853
 
3854
- #: ../includes/mycred-functions.php:2189
3855
  msgid "Unapproved Comment"
3856
  msgstr ""
3857
 
3858
- #: ../includes/mycred-functions.php:2190
3859
  msgid "SPAM Comment"
3860
  msgstr ""
3861
 
3862
- #: ../includes/mycred-functions.php:2191
3863
  msgid "Deleted Comment"
3864
  msgstr ""
3865
 
3866
- #: ../includes/mycred-functions.php:2192
3867
  msgid "Link Click"
3868
  msgstr ""
3869
 
3870
- #: ../includes/mycred-functions.php:2193
3871
  msgid "Watching Video"
3872
  msgstr ""
3873
 
3874
- #: ../includes/mycred-functions.php:2194
3875
  msgid "Visitor Referral"
3876
  msgstr ""
3877
 
3878
- #: ../includes/mycred-functions.php:2195
3879
  msgid "Signup Referral"
3880
  msgstr ""
3881
 
3882
- #: ../includes/mycred-functions.php:2199
3883
  msgid "New Profile Update"
3884
  msgstr ""
3885
 
3886
- #: ../includes/mycred-functions.php:2200
3887
  msgid "Avatar Upload"
3888
  msgstr ""
3889
 
3890
- #: ../includes/mycred-functions.php:2201
3891
  msgid "New Friendship"
3892
  msgstr ""
3893
 
3894
- #: ../includes/mycred-functions.php:2202
3895
  msgid "Ended Friendship"
3896
  msgstr ""
3897
 
3898
- #: ../includes/mycred-functions.php:2203
3899
  msgid "New Profile Comment"
3900
  msgstr ""
3901
 
3902
- #: ../includes/mycred-functions.php:2204
3903
  msgid "Profile Comment Deletion"
3904
  msgstr ""
3905
 
3906
- #: ../includes/mycred-functions.php:2205
3907
  msgid "New Message"
3908
  msgstr ""
3909
 
3910
- #: ../includes/mycred-functions.php:2206
3911
  msgid "Sending Gift"
3912
  msgstr ""
3913
 
3914
- #: ../includes/mycred-functions.php:2207
3915
  msgid "New Group"
3916
  msgstr ""
3917
 
3918
- #: ../includes/mycred-functions.php:2208
3919
  msgid "Deleted Group"
3920
  msgstr ""
3921
 
3922
- #: ../includes/mycred-functions.php:2209
3923
  msgid "New Group Forum Topic"
3924
  msgstr ""
3925
 
3926
- #: ../includes/mycred-functions.php:2210
3927
  msgid "Edit Group Forum Topic"
3928
  msgstr ""
3929
 
3930
- #: ../includes/mycred-functions.php:2211
3931
  msgid "New Group Forum Post"
3932
  msgstr ""
3933
 
3934
- #: ../includes/mycred-functions.php:2212
3935
  msgid "Edit Group Forum Post"
3936
  msgstr ""
3937
 
3938
- #: ../includes/mycred-functions.php:2213
3939
  msgid "Joining Group"
3940
  msgstr ""
3941
 
3942
- #: ../includes/mycred-functions.php:2214
3943
  msgid "Leaving Group"
3944
  msgstr ""
3945
 
3946
- #: ../includes/mycred-functions.php:2215
3947
  msgid "New Group Avatar"
3948
  msgstr ""
3949
 
3950
- #: ../includes/mycred-functions.php:2216
3951
  msgid "New Group Comment"
3952
  msgstr ""
3953
 
3954
- #: ../includes/mycred-functions.php:2220 ../plugins/mycred-hook-buddypress-media.
3955
  #: php:166
3956
  msgid "Photo Upload"
3957
  msgstr "Загрузка фото"
3958
 
3959
- #: ../includes/mycred-functions.php:2221 ../plugins/mycred-hook-buddypress-media.
3960
  #: php:176
3961
  msgid "Video Upload"
3962
  msgstr "Загрузка фидео"
3963
 
3964
- #: ../includes/mycred-functions.php:2222 ../plugins/mycred-hook-buddypress-media.
3965
  #: php:186
3966
  msgid "Music Upload"
3967
  msgstr "Загрузка музыки"
3968
 
3969
- #: ../includes/mycred-functions.php:2226
3970
  msgid "New Link"
3971
  msgstr ""
3972
 
3973
- #: ../includes/mycred-functions.php:2227
3974
  msgid "Link Voting"
3975
  msgstr ""
3976
 
3977
- #: ../includes/mycred-functions.php:2228
3978
  msgid "Link Update"
3979
  msgstr ""
3980
 
3981
- #: ../includes/mycred-functions.php:2232
3982
  msgid "New Forum (bbPress)"
3983
  msgstr ""
3984
 
3985
- #: ../includes/mycred-functions.php:2233
3986
  msgid "New Forum Topic (bbPress)"
3987
  msgstr ""
3988
 
3989
- #: ../includes/mycred-functions.php:2234
3990
  msgid "Favorited Topic (bbPress)"
3991
  msgstr ""
3992
 
3993
- #: ../includes/mycred-functions.php:2235
3994
  msgid "New Topic Reply (bbPress)"
3995
  msgstr ""
3996
 
3997
- #: ../includes/mycred-functions.php:2239
3998
  msgid "Form Submission (Contact Form 7)"
3999
  msgstr ""
4000
 
4001
- #: ../includes/mycred-functions.php:2242
4002
  msgid "Form Submission (Gravity Form)"
4003
  msgstr ""
4004
 
4005
- #: ../includes/mycred-functions.php:2245
4006
  msgid "New Forum Topic (SimplePress)"
4007
  msgstr ""
4008
 
4009
- #: ../includes/mycred-functions.php:2246
4010
  msgid "New Forum Post (SimplePress)"
4011
  msgstr ""
4012
 
4013
- #: ../includes/mycred-functions.php:2250
4014
  msgid "Poll Voting"
4015
  msgstr ""
4016
 
4017
- #: ../includes/mycred-functions.php:2253
4018
  msgid "Sending an Invite"
4019
  msgstr ""
4020
 
4021
- #: ../includes/mycred-functions.php:2254
4022
  msgid "Accepting an Invite"
4023
  msgstr ""
4024
 
4025
- #: ../includes/mycred-functions.php:2260
4026
  msgid "Banking Payout"
4027
  msgstr ""
4028
 
4029
- #: ../includes/mycred-functions.php:2263
4030
  msgid "buyCRED Purchase (PayPal Standard)"
4031
  msgstr ""
4032
 
4033
- #: ../includes/mycred-functions.php:2264
4034
  msgid "buyCRED Purchase (Skrill)"
4035
  msgstr ""
4036
 
4037
- #: ../includes/mycred-functions.php:2265
4038
  msgid "buyCRED Purchase (Zombaio)"
4039
  msgstr ""
4040
 
4041
- #: ../includes/mycred-functions.php:2266
4042
  msgid "buyCRED Purchase (NETBilling)"
4043
  msgstr ""
4044
 
4045
- #: ../includes/mycred-functions.php:2267
4046
  msgid "buyCRED Purchase (BitPay)"
4047
  msgstr ""
4048
 
4049
- #: ../includes/mycred-functions.php:2272
4050
  msgid "Coupon Purchase"
4051
  msgstr ""
4052
 
4053
- #: ../includes/mycred-functions.php:2275
4054
  msgid "Store Purchase (WooCommerce)"
4055
  msgstr ""
4056
 
4057
- #: ../includes/mycred-functions.php:2276
4058
  msgid "Store Purchase (MarketPress)"
4059
  msgstr ""
4060
 
4061
- #: ../includes/mycred-functions.php:2277
4062
  msgid "Store Purchase (WP E-Commerce)"
4063
  msgstr ""
4064
 
4065
- #: ../includes/mycred-functions.php:2282
4066
  msgid "Event Payment (Event Espresso)"
4067
  msgstr ""
4068
 
4069
- #: ../includes/mycred-functions.php:2283
4070
  msgid "Event Sale (Event Espresso)"
4071
  msgstr ""
4072
 
4073
- #: ../includes/mycred-functions.php:2287
4074
  msgid "Event Payment (Events Manager)"
4075
  msgstr ""
4076
 
4077
- #: ../includes/mycred-functions.php:2288
4078
  msgid "Event Sale (Events Manager)"
4079
  msgstr ""
4080
 
4081
- #: ../includes/mycred-functions.php:2292
4082
  msgid "Content Purchase / Sale"
4083
  msgstr ""
4084
 
4085
- #: ../includes/mycred-functions.php:2299
4086
  msgid "Manual Adjustment by Admin"
4087
  msgstr ""
4088
 
@@ -4255,6 +4296,10 @@ msgstr ""
4255
  "пользователь сможет перевести, купить или потратить в магазине. Используйте "
4256
  "ноль для отключения."
4257
 
 
 
 
 
4258
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4259
  msgid "Exclude those who can \"Edit Settings\"."
4260
  msgstr "Исключить тех, кто может \"Редактировать Настройки\"."
@@ -4365,7 +4410,7 @@ msgstr "Нет доступных параметров экспорта."
4365
  msgid "Entry"
4366
  msgstr "Запись"
4367
 
4368
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:466
4369
  msgid "User Missing"
4370
  msgstr "Пользователь отсутствует"
4371
 
@@ -4555,92 +4600,92 @@ msgstr ""
4555
  "Не забывайте отключать, если приложение не используется, для предотвращения "
4556
  "злонамеренных звонков "
4557
 
4558
- #: ../includes/mycred-shortcodes.php:153
4559
  msgid "Leaderboard is empty."
4560
  msgstr "Таблица лидеров пуста."
4561
 
4562
- #: ../includes/mycred-shortcodes.php:424 ../includes/mycred-shortcodes.php:547
4563
  msgid "Amount missing!"
4564
  msgstr "Сумма отсутствует!"
4565
 
4566
- #: ../includes/mycred-shortcodes.php:427 ../includes/mycred-shortcodes.php:555
4567
  msgid "Log Template Missing!"
4568
  msgstr "Шаблон журнала отсутствует!"
4569
 
4570
- #: ../includes/mycred-shortcodes.php:489
4571
  msgid "Anchor missing URL!"
4572
  msgstr "Отсутствует привязка URL!"
4573
 
4574
- #: ../includes/mycred-shortcodes.php:551
4575
  msgid "User ID missing for recipient."
4576
  msgstr "Отсутствует ID пользователя для получателя."
4577
 
4578
- #: ../includes/mycred-shortcodes.php:606
4579
  msgid "Sent"
4580
  msgstr "Отправлено"
4581
 
4582
- #: ../includes/mycred-shortcodes.php:607
4583
  msgid "Error - Try Again"
4584
  msgstr "Ошибка - Повторите попытку"
4585
 
4586
- #: ../includes/mycred-shortcodes.php:716
4587
  msgid "A video ID is required for this shortcode"
4588
  msgstr "Для этого короткого номера требуется ID видео"
4589
 
4590
- #: ../includes/mycred-shortcodes.php:862 ../includes/mycred-shortcodes.php:956
4591
  msgid "Point types not found."
4592
  msgstr ""
4593
 
4594
- #: ../includes/mycred-shortcodes.php:868 ../includes/mycred-shortcodes.php:876 ..
4595
- #: includes/mycred-shortcodes.php:968 ../includes/mycred-shortcodes.php:988
4596
  #, php-format
4597
  msgid "You are excluded from using %s."
4598
  msgstr ""
4599
 
4600
- #: ../includes/mycred-shortcodes.php:872 ../includes/mycred-shortcodes.php:978
4601
  msgid "Your balance is too low to use this feature."
4602
  msgstr ""
4603
 
4604
- #: ../includes/mycred-shortcodes.php:893
4605
  #, php-format
4606
  msgid "Convert <span>%s</span> to <span>%s</span>"
4607
  msgstr ""
4608
 
4609
- #: ../includes/mycred-shortcodes.php:902
4610
  #, php-format
4611
  msgid "Your current %s balance"
4612
  msgstr ""
4613
 
4614
- #: ../includes/mycred-shortcodes.php:910
4615
  #, php-format
4616
  msgid "Minimum %s"
4617
  msgstr ""
4618
 
4619
- #: ../includes/mycred-shortcodes.php:914
4620
  #, php-format
4621
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4622
  msgstr ""
4623
 
4624
- #: ../includes/mycred-shortcodes.php:920
4625
  msgid "Exchange"
4626
  msgstr ""
4627
 
4628
- #: ../includes/mycred-shortcodes.php:1001
4629
  #, php-format
4630
  msgid "You must exchange at least %s!"
4631
  msgstr ""
4632
 
4633
- #: ../includes/mycred-shortcodes.php:1023
4634
  #, php-format
4635
  msgid "Exchange from %s"
4636
  msgstr ""
4637
 
4638
- #: ../includes/mycred-shortcodes.php:1035
4639
  #, php-format
4640
  msgid "Exchange to %s"
4641
  msgstr ""
4642
 
4643
- #: ../includes/mycred-shortcodes.php:1043
4644
  #, php-format
4645
  msgid "You have successfully exchanged %s into %s."
4646
  msgstr ""
@@ -4949,6 +4994,12 @@ msgstr "Расширения"
4949
  msgid "Give your users badges based on their interaction with your website."
4950
  msgstr ""
4951
 
 
 
 
 
 
 
4952
  #: ../modules/mycred-module-addons.php:169
4953
  msgid ""
4954
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
@@ -5284,7 +5335,7 @@ msgstr ""
5284
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5285
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5286
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5287
- #: 2623 ../modules/mycred-module-hooks.php:2652 ../plugins/mycred-hook-badgeOS.
5288
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5289
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5290
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
@@ -5346,8 +5397,8 @@ msgstr ""
5346
  msgid "%plural% for viewing %s"
5347
  msgstr ""
5348
 
5349
- #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2631
5350
- #: ../modules/mycred-module-hooks.php:2660 ../plugins/mycred-hook-invite-anyone.
5351
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5352
  msgid "Limit"
5353
  msgstr "Ограничение"
@@ -5439,7 +5490,7 @@ msgstr ""
5439
  msgid "Custom tags: %url%, %title% or %id%."
5440
  msgstr "Пользовательские теги: %url%, %title% или %id%."
5441
 
5442
- #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2734
5443
  msgid "Note!"
5444
  msgstr "Внимание!"
5445
 
@@ -5522,63 +5573,63 @@ msgstr "В день"
5522
  msgid "Link"
5523
  msgstr "Ссылка"
5524
 
5525
- #: ../modules/mycred-module-hooks.php:2617
5526
  msgid "Referring Visitors"
5527
  msgstr "Направление посетителей"
5528
 
5529
- #: ../modules/mycred-module-hooks.php:2641 ../modules/mycred-module-hooks.php:2670
5530
  msgid "The number of referrals each member can make. Use zero for unlimited."
5531
  msgstr ""
5532
  "Количество направлений, которое может сделать каждый участник. Используйте "
5533
  "ноль для неограниченных."
5534
 
5535
- #: ../modules/mycred-module-hooks.php:2645 ../modules/mycred-module-hooks.php:2674
5536
  msgid "Referring Signups"
5537
  msgstr "Отправка заявлений о регистрации"
5538
 
5539
- #: ../modules/mycred-module-hooks.php:2649
5540
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5541
  msgstr "Посетители с отключенными куками не будут вознаграждены %_plural%."
5542
 
5543
- #: ../modules/mycred-module-hooks.php:2676
5544
  msgid "Registrations are disabled."
5545
  msgstr "Регистрации отключены."
5546
 
5547
- #: ../modules/mycred-module-hooks.php:2683
5548
  msgid "Referral Links"
5549
  msgstr "Ссылки направления"
5550
 
5551
- #: ../modules/mycred-module-hooks.php:2687
5552
  msgid "Assign numeric referral IDs to each user."
5553
  msgstr "Отправить ID цифровых направлений каждому пользователю."
5554
 
5555
- #: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2694
5556
  msgid "Example"
5557
  msgstr "Пример"
5558
 
5559
- #: ../modules/mycred-module-hooks.php:2693
5560
  msgid "Assign usernames as IDs for each user."
5561
  msgstr "Назначить имена пользователей как ID для каждого участника."
5562
 
5563
- #: ../modules/mycred-module-hooks.php:2697
5564
  msgid "IP Limit"
5565
  msgstr "Лимит IP"
5566
 
5567
- #: ../modules/mycred-module-hooks.php:2701
5568
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5569
  msgstr ""
5570
  "Количество случаев, каждый IP адрес вознаграждается %_plural%. Использовать "
5571
  "ноль для неограниченных."
5572
 
5573
- #: ../modules/mycred-module-hooks.php:2705 ../modules/mycred-module-hooks.php:2738
5574
  msgid "BuddyPress Profile"
5575
  msgstr "BuddyPress Профиль"
5576
 
5577
- #: ../modules/mycred-module-hooks.php:2708
5578
  msgid "Insert Link in users Profile"
5579
  msgstr "Вставить ссылку в профайл пользователя"
5580
 
5581
- #: ../modules/mycred-module-hooks.php:2709
5582
  msgid ""
5583
  "Option to inser the referral link in users profiles. Links will only be "
5584
  "visible to users viewing their own profiles or administrators."
@@ -5587,23 +5638,23 @@ msgstr ""
5587
  "видимы для пользователей, которые просматривают свои собственные профайлы "
5588
  "или администраторам."
5589
 
5590
- #: ../modules/mycred-module-hooks.php:2715
5591
  msgid "Leave empty to hide."
5592
  msgstr "Оставить пустым, чтобы спрятать."
5593
 
5594
- #: ../modules/mycred-module-hooks.php:2718
5595
  msgid "Description"
5596
  msgstr "Описание"
5597
 
5598
- #: ../modules/mycred-module-hooks.php:2719
5599
  msgid "Optional description to insert under the link."
5600
  msgstr "Описание по выбору для вставки под ссылкой."
5601
 
5602
- #: ../modules/mycred-module-hooks.php:2731
5603
  msgid "Profile Positioning"
5604
  msgstr "Расположение профайла"
5605
 
5606
- #: ../modules/mycred-module-hooks.php:2733
5607
  msgid ""
5608
  "You can move around the referral link on your users profile by changing the "
5609
  "position. Increase to move up, decrease to move down."
@@ -5611,13 +5662,13 @@ msgstr ""
5611
  "Вы можете переносить ссылку направления в вашем профайле пользователя, меняя "
5612
  "расположение. Увеличить для движения вверх, снизить для движения вниз."
5613
 
5614
- #: ../modules/mycred-module-hooks.php:2734
5615
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5616
  msgstr ""
5617
  "Вы не можете перемещать ссылку направления над \"Основными\" деталями профиля "
5618
  "пользователя!"
5619
 
5620
- #: ../modules/mycred-module-hooks.php:2740
5621
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5622
  msgstr "Для разрешения требуются Расширенные профили BuddyPress."
5623
 
@@ -5642,8 +5693,8 @@ msgstr "Запись обновлена"
5642
  msgid "Entries"
5643
  msgstr "Записи"
5644
 
5645
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:385 ..
5646
- #: modules/mycred-module-log.php:629 ../modules/mycred-module-settings.php:574
5647
  msgid "Export"
5648
  msgstr "Экспорт"
5649
 
@@ -5651,40 +5702,40 @@ msgstr "Экспорт"
5651
  msgid "Search results for"
5652
  msgstr "Поиск результатов для "
5653
 
5654
- #: ../modules/mycred-module-log.php:379
5655
  #, php-format
5656
  msgid "%s Log"
5657
  msgstr "%s Журнал"
5658
 
5659
- #: ../modules/mycred-module-log.php:504
5660
  msgid "Edit"
5661
  msgstr "Редактировать"
5662
 
5663
- #: ../modules/mycred-module-log.php:545
5664
  msgid "Time"
5665
  msgstr "Время"
5666
 
5667
- #: ../modules/mycred-module-log.php:549
5668
  msgid "Current Log Entry"
5669
  msgstr "Текущая запись в журнале"
5670
 
5671
- #: ../modules/mycred-module-log.php:551
5672
  msgid "The current saved log entry"
5673
  msgstr "Текущая сохраненная запись в журнале. "
5674
 
5675
- #: ../modules/mycred-module-log.php:554
5676
  msgid "Adjust Log Entry"
5677
  msgstr "Редактировать запись в журнале"
5678
 
5679
- #: ../modules/mycred-module-log.php:556
5680
  msgid "The new log entry"
5681
  msgstr "Новая запись в журнале"
5682
 
5683
- #: ../modules/mycred-module-log.php:559
5684
  msgid "Update Log Entry"
5685
  msgstr "Обновить запись в журнале"
5686
 
5687
- #: ../modules/mycred-module-log.php:623
5688
  #, php-format
5689
  msgid "My %s History"
5690
  msgstr "Моя %s история"
@@ -6411,4 +6462,3 @@ msgstr "WP-Polls"
6411
  #, php-format
6412
  msgid "Awards %_plural% for users voting in polls."
6413
  msgstr "Награда %_plural% для пользователей, которые принимают участие в опросах."
6414
- �ользователей, которые принимают участие в опросах."
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: Thu Aug 07 2014 20:35:48 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Russian\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Loco - https://localise.biz/\n"
17
  "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
  "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
45
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
46
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
47
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
48
+ #: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
49
+ #: includes/mycred-shortcodes.php:607
50
  msgid "Processing..."
51
  msgstr "Обработка..."
52
 
153
  msgstr "Один раз в день (перезагрузка в полночь)"
154
 
155
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
156
+ #: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
157
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
158
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
159
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
179
  msgid "click to open"
180
  msgstr "кликнуть, чтобы открыть"
181
 
182
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/buy-creds/myCRED-addon-
183
+ #: buy-creds.php:847
184
  msgid "Settings Updated"
185
  msgstr "Настройки обновлены"
186
 
385
  msgid "in total"
386
  msgstr ""
387
 
388
+ #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
389
+ #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
390
  msgid "Banking"
391
  msgstr "Банкинг"
392
 
393
+ #: ../addons/banking/myCRED-addon-banking.php:158
394
+ msgid "Central Banking"
395
+ msgstr ""
396
+
397
+ #: ../addons/banking/myCRED-addon-banking.php:159
398
+ #, php-format
399
+ msgid ""
400
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
401
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
402
+ "deposited back into this account."
403
+ msgstr ""
404
+
405
+ #: ../addons/banking/myCRED-addon-banking.php:165 ..
406
+ #: addons/banking/services/mycred-bank-service-interest.php:512
407
  msgid "Compound Interest"
408
  msgstr "Сложный процент"
409
 
410
+ #: ../addons/banking/myCRED-addon-banking.php:166
411
  #, php-format
412
+ msgid "Apply a positive or negative interest rate on your users %_plural% balances."
413
+ msgstr ""
414
+
415
+ #: ../addons/banking/myCRED-addon-banking.php:172
 
 
 
 
 
 
 
 
 
416
  msgid "Recurring Payouts"
417
  msgstr "Возвращение выплат"
418
 
419
+ #: ../addons/banking/myCRED-addon-banking.php:173
420
+ msgid "Setup mass %_singular% payouts for your users."
 
 
 
421
  msgstr ""
 
 
422
 
423
+ #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
424
+ #: addon-buy-creds.php:837 ../addons/buy-creds/myCRED-addon-buy-creds.php:933 ..
425
+ #: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
426
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
427
+ #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
428
  #: modules/mycred-module-settings.php:312
429
  msgid "Access Denied"
430
  msgstr "Ошибка Доступа"
431
 
432
+ #: ../addons/banking/myCRED-addon-banking.php:225
433
  #, php-format
434
  msgid "%s Banking"
435
  msgstr "%s Банкинг"
436
 
437
+ #: ../addons/banking/myCRED-addon-banking.php:228
438
+ msgid "Your banking setup for %plural%."
 
439
  msgstr ""
 
 
440
 
441
  #. Cron deactivation
442
+ #: ../addons/banking/myCRED-addon-banking.php:231
443
  msgid "WP-Cron deactivation detected!"
444
  msgstr "Обнаружена деактивация WP-Cron!"
445
 
446
+ #: ../addons/banking/myCRED-addon-banking.php:232
447
  msgid "Warning! This add-on requires WP - Cron to work."
448
  msgstr "Предупреждение! Этот модуль требует WP - утилиту Cron для работы."
449
 
450
+ #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
451
+ #: addon-buy-creds.php:871 ../modules/mycred-module-hooks.php:196
452
  msgid "Enable"
453
  msgstr "Разрешить"
454
 
455
+ #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
456
  #: php:211
457
  msgid "Update Changes"
458
  msgstr "Обновить изменения"
459
 
460
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:79
 
 
 
 
461
  msgid "This Service has no settings"
462
  msgstr "Этот сервис не имеет настроек"
463
 
464
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:233
465
  msgid "Hourly"
466
  msgstr "Каждый час"
467
 
468
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:237
469
  msgid "Daily"
470
  msgstr "Ежедневно"
471
 
472
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:241
473
  msgid "Weekly"
474
  msgstr "Еженедельно"
475
 
476
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:245
477
  msgid "Monthly"
478
  msgstr "Ежемесячно"
479
 
480
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:249
481
  msgid "Quarterly"
482
  msgstr "Поквартально"
483
 
484
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:253
485
  msgid "Semiannually"
486
  msgstr "Раз в полгода"
487
 
488
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:257
489
  msgid "Annually"
490
  msgstr "Раз в год"
491
 
492
+ #: ../addons/banking/services/mycred-bank-service-central.php:105
493
+ msgid "Bank User"
494
+ msgstr ""
495
+
496
+ #: ../addons/banking/services/mycred-bank-service-central.php:109
497
+ msgid "The user ID of the central bank account. This user can not be excluded!"
498
+ msgstr ""
499
+
500
+ #: ../addons/banking/services/mycred-bank-service-central.php:112
501
+ msgid "Ignore Manual Adjustments"
502
+ msgstr ""
503
+
504
+ #: ../addons/banking/services/mycred-bank-service-interest.php:24
505
  msgid "%plural% interest rate payment"
506
  msgstr "%plural% платеж процентных ставок"
507
 
508
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
509
+ msgid "Compounding Interest"
510
+ msgstr ""
511
+
512
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
513
+ #, php-format
514
+ msgid "%d Users are left to process."
515
+ msgstr ""
516
+
517
+ #: ../addons/banking/services/mycred-bank-service-interest.php:388
518
+ msgid "Payout History"
519
+ msgstr ""
520
+
521
+ #: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
522
+ #: addons/banking/services/mycred-bank-service-interest.php:409 ..
523
+ #: addons/banking/services/mycred-bank-service-payouts.php:249
524
+ msgid "Run Count"
525
+ msgstr ""
526
+
527
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
528
+ msgid "Last Payout"
529
+ msgstr ""
530
+
531
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
532
+ #: addons/banking/services/mycred-bank-service-interest.php:414
533
+ msgid "Activated"
534
+ msgstr ""
535
+
536
+ #: ../addons/banking/services/mycred-bank-service-interest.php:401
537
+ msgid "Total Payed Interest"
538
+ msgstr ""
539
+
540
+ #: ../addons/banking/services/mycred-bank-service-interest.php:405
541
+ msgid "Compound History"
542
+ msgstr ""
543
+
544
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
545
+ msgid "Last Interest Compound"
546
+ msgstr ""
547
+
548
+ #: ../addons/banking/services/mycred-bank-service-interest.php:418
549
+ msgid "Total Compounded Interest"
550
+ msgstr ""
551
+
552
+ #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
553
+ #: addons/banking/services/mycred-bank-service-interest.php:549
554
  msgid "Interest Rate"
555
  msgstr "Процентные ставки"
556
 
557
+ #: ../addons/banking/services/mycred-bank-service-interest.php:425
558
+ msgid "Default Rate"
 
 
 
 
559
  msgstr ""
 
 
560
 
561
+ #: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
562
+ #: addons/banking/services/mycred-bank-service-payouts.php:267
563
+ msgid "Can not be zero."
564
+ msgstr "Не может быть нулевым. "
565
 
566
+ #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
567
+ #: addons/gateway/carts/mycred-wpecommerce.php:364
568
+ msgid "Payout"
569
+ msgstr "Расход средств"
570
 
571
+ #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
572
+ #: addons/banking/services/mycred-bank-service-payouts.php:282 ../addons/buy-
573
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
574
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
575
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
587
  msgid "Log Template"
588
  msgstr "Шаблон Журнала"
589
 
590
+ #: ../addons/banking/services/mycred-bank-service-interest.php:442 ..
591
+ #: addons/banking/services/mycred-bank-service-payouts.php:289 ..
592
+ #: addons/coupons/myCRED-addon-coupons.php:392
593
+ msgid "Minimum Balance"
594
+ msgstr "Минимальный баланс"
595
 
596
+ #: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
597
+ #: addons/banking/services/mycred-bank-service-payouts.php:293
598
+ msgid "Optional minimum balance requirement."
599
+ msgstr ""
600
+
601
+ #: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
602
+ #: addons/banking/services/mycred-bank-service-payouts.php:296
603
+ msgid "Exclude"
604
+ msgstr ""
605
+
606
+ #: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
607
+ #: addons/banking/services/mycred-bank-service-payouts.php:299
608
+ msgid "Comma separated list of user IDs"
609
+ msgstr ""
610
+
611
+ #: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
612
+ #: addons/banking/services/mycred-bank-service-payouts.php:303
613
+ msgid "Roles"
614
+ msgstr ""
615
+
616
+ #: ../addons/banking/services/mycred-bank-service-interest.php:522
617
+ msgid "This user is excluded from receiving interest on this balance."
618
+ msgstr ""
619
+
620
+ #: ../addons/banking/services/mycred-bank-service-interest.php:525
621
+ msgid "Remove from Excluded List"
622
+ msgstr ""
623
+
624
+ #: ../addons/banking/services/mycred-bank-service-interest.php:537
625
+ msgid "This user role is excluded from receiving interest on this balance."
626
+ msgstr ""
627
+
628
+ #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
629
+ #: creds/myCRED-addon-buy-creds.php:759 ../addons/sell-content/myCRED-addon-sell-
630
+ #: content.php:113
631
+ msgid "Leave empty to use the default value."
632
+ msgstr ""
633
+
634
+ #: ../addons/banking/services/mycred-bank-service-interest.php:558
635
+ msgid "Save Interest Rate"
636
+ msgstr ""
637
+
638
+ #: ../addons/banking/services/mycred-bank-service-interest.php:559
639
+ msgid "Exclude from receiving interest"
640
+ msgstr ""
641
+
642
+ #: ../addons/banking/services/mycred-bank-service-interest.php:667
643
+ msgid "Compound interest rate saved."
644
+ msgstr ""
645
+
646
+ #: ../addons/banking/services/mycred-bank-service-interest.php:669
647
+ msgid "User excluded from receiving interest."
648
+ msgstr ""
649
+
650
+ #: ../addons/banking/services/mycred-bank-service-interest.php:671
651
+ msgid "User included in receiving interest."
652
  msgstr ""
 
 
 
 
653
 
654
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
655
  msgid "Daily %_plural%"
656
  msgstr "Ежедневно %_plural%"
657
 
658
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
659
+ #: includes/mycred-admin.php:404 ../modules/mycred-module-log.php:254 ..
660
+ #: modules/mycred-module-log.php:255
661
+ msgid "History"
662
+ msgstr "История"
663
+
664
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:254
665
+ msgid "Last Run"
666
+ msgstr ""
667
+
668
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:258
669
+ msgid "Total Payouts"
670
+ msgstr ""
671
 
672
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:262
673
  msgid "Pay Users"
674
  msgstr "Заплатить пользователям"
675
 
676
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
677
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
678
+ #: creds.php:1518 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595 ..
679
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
680
+ #: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
681
+ #: includes/mycred-shortcodes.php:910
682
  msgid "Amount"
683
  msgstr "Количество"
684
 
685
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
686
+ #: modules/mycred-module-hooks.php:2113
 
 
 
 
 
687
  msgid "Interval"
688
  msgstr "Промежуток"
689
 
690
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:275
 
691
  msgid "Cycles"
692
  msgstr "Циклы"
693
 
694
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:277
695
  msgid "Set to -1 for unlimited"
696
  msgstr "Установить -1 для "
697
 
698
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
699
  msgid "Important"
700
  msgstr "Важно"
701
 
702
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
703
  msgid ""
704
  "You can always stop payouts by deactivating this service. Just remember that "
705
  "if you deactivate while there are cycles left, this service will continue on "
710
  "будет работать после возобновления. Обнулите циклы, чтобы выполнить сброс "
711
  "настроек."
712
 
 
 
 
 
 
 
 
 
 
 
 
 
 
713
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
714
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
715
  msgid "Payment Gateways"
735
  msgstr ""
736
 
737
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
738
+ #: addon-buy-creds.php:1629
739
  msgid "No pending payments found"
740
  msgstr ""
741
 
744
  msgstr ""
745
 
746
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
747
+ #: addon-buy-creds.php:986 ../addons/buy-creds/myCRED-addon-buy-creds.php:1593
748
  msgid "Transaction ID"
749
  msgstr "Код трансакции "
750
 
751
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
752
+ #: addon-buy-creds.php:982
753
  msgid "Buyer"
754
  msgstr ""
755
 
756
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
757
+ #: addon-buy-creds.php:1596 ../addons/buy-creds/abstracts/mycred-abstract-payment-
758
  #: gateway.php:563
759
  msgid "Cost"
760
  msgstr "Цена"
761
 
762
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
763
+ #: addon-buy-creds.php:981 ../addons/buy-creds/myCRED-addon-buy-creds.php:1594 ..
764
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
765
  msgid "Gateway"
766
  msgstr "Шлюз"
778
  msgstr "приобрести журнал покупок CRED"
779
 
780
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
781
+ #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:843
782
  msgid "Purchase Log"
783
  msgstr "Журнал покупки"
784
 
785
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
786
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
787
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
788
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:422
789
  msgid "Payments"
790
  msgstr "Платежи"
791
 
862
  msgstr "Разрешить пользователям покупать %_plural% для авторов контента."
863
 
864
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
865
+ #: hooks.php:2770
866
  msgid "Available Shortcodes"
867
  msgstr "Доступные короткие коды"
868
 
871
  msgid "%s Exchange Rate"
872
  msgstr ""
873
 
 
 
 
 
 
874
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
875
  msgid "Save Exchange Rates"
876
  msgstr ""
877
 
878
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:822
879
  msgid "Exchange rate override saved"
880
  msgstr ""
881
 
882
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:825
883
  msgid "Payment completed"
884
  msgstr ""
885
 
886
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843
887
  #, php-format
888
  msgid "%s Payment Gateways"
889
  msgstr "%s Способы оплаты"
890
 
891
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
892
+ #: addon-buy-creds.php:990
893
  msgid "buyCRED Settings"
894
  msgstr "настройки buyCRED"
895
 
896
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:864
897
  msgid "Test Mode"
898
  msgstr "Тестовый режим"
899
 
900
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
901
  msgid "Enabled"
902
  msgstr "Включено"
903
 
904
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:869
905
  msgid "Disabled"
906
  msgstr "Отключено"
907
 
908
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
909
  msgid "Sandbox Mode"
910
  msgstr "Режим изолированной программной среды."
911
 
912
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:882
913
  msgid "Enable for test purchases."
914
  msgstr "Разрешить тестовые покупки."
915
 
916
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
917
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
918
  msgid "Update Settings"
919
  msgstr "Настройки обновлений"
920
 
921
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
922
  msgid "More Gateways"
923
  msgstr ""
924
 
925
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:983 ../includes/mycred-log.php:
926
  #: 634
927
  msgid "Date"
928
  msgstr "Дата "
929
 
930
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985
931
  msgid "Payed"
932
  msgstr "Оплачено"
933
 
934
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990
935
  msgid "<strong>buy</strong>CRED Purchase Log"
936
  msgstr "<strong>купить</strong>CRED журнал покупки"
937
 
938
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990 ../addons/gateway/event-
939
  #: booking/mycred-eventespresso3.php:367
940
  msgid "Gateway Settings"
941
  msgstr "Настройки шлюза"
942
 
943
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166 ../addons/sell-
944
+ #: content/myCRED-addon-sell-content.php:1190
945
  msgid "No purchases found"
946
  msgstr "Покупок не обнаружено"
947
 
948
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1236 ../addons/buy-creds/myCRED-
949
+ #: addon-buy-creds.php:1349
950
  msgid "This Add-on needs to setup before you can use this shortcode."
951
  msgstr ""
952
  "Это расширение необходимо установить перед началом использования этого "
953
  "короткого номера."
954
 
955
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1255 ../addons/buy-creds/myCRED-
956
+ #: addon-buy-creds.php:1368
957
  msgid "No gateways installed."
958
  msgstr "Нет установленных шлюзов."
959
 
960
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1256 ../addons/buy-creds/myCRED-
961
+ #: addon-buy-creds.php:1369
962
  msgid "Gateway does not exist."
963
  msgstr "Шлюз не существует."
964
 
965
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1304
966
  msgid "Yourself"
967
  msgstr "Самостоятельно"
968
 
969
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1370
970
  msgid "No active gateways found."
971
  msgstr "Активных шлюзов не обнаружено."
972
 
973
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1371
974
  msgid "The selected gateway is not active."
975
  msgstr "Выбранный шлюз не активен."
976
 
977
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1418
978
  #, php-format
979
  msgid "Buy with %gateway%"
980
  msgstr "Приобрести с %gateway%"
981
 
982
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424 ../addons/sell-
983
  #: content/myCRED-addon-sell-content.php:44
984
  msgid "Buy Now"
985
  msgstr "Купить сейчас"
986
 
987
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1469
988
  msgid "No users found"
989
  msgstr "Пользователи не найдены"
990
 
991
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1479
992
  msgid "To"
993
  msgstr "До"
994
 
995
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1496
996
  msgid "Select Amount"
997
  msgstr "Выбать количество "
998
 
999
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1520
1000
  msgid "min."
1001
  msgstr "мин."
1002
 
1003
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1528
1004
  msgid "Select Gateway"
1005
  msgstr "Выбрать шлюз"
1006
 
1007
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1569 ../addons/gateway/event-
1008
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1009
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1010
  #: php:35
1011
  msgid "Pay Now"
1012
  msgstr "Оплатить сейчас"
1013
 
1014
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1570 ../includes/mycred-install.
1015
  #: php:515
1016
  msgid "Cancel"
1017
  msgstr "Отменить"
1018
 
1019
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ../addons/ranks/myCRED-
1020
+ #: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
1021
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
1022
  msgid "Actions"
1023
  msgstr "Действия"
1057
  msgstr "Отменить покупку"
1058
 
1059
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1060
+ #: includes/mycred-admin.php:702 ../includes/mycred-admin.php:739
1061
  msgid "required"
1062
  msgstr "необходимо"
1063
 
1064
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1065
+ #: includes/mycred-admin.php:704 ../includes/mycred-admin.php:741
1066
  msgid "optional"
1067
  msgstr "выборочно"
1068
 
1463
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1464
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1465
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1466
+ #: modules/mycred-module-hooks.php:2735
1467
  msgid "Title"
1468
  msgstr "Название"
1469
 
1710
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1711
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1712
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1713
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:410 ..
1714
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1715
  #: includes/importers/mycred-cubepoints.php:365
1716
  msgid "Point Type"
2117
  msgstr "Отправить"
2118
 
2119
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2120
+ #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:748 ..
2121
+ #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
2122
  msgid "User"
2123
  msgstr "Пользователь"
2124
 
2244
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2245
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2246
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2247
+ #: php:412 ../includes/mycred-admin.php:596 ../includes/mycred-admin.php:749
2248
  msgid "Current Balance"
2249
  msgstr "Текущий баланс"
2250
 
2369
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2370
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2371
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2372
+ #: php:578 ../includes/mycred-shortcodes.php:915
2373
  msgid "Exchange Rate"
2374
  msgstr "Курс валют"
2375
 
2595
  msgid "How much is 1 %s worth in %s"
2596
  msgstr "Сколько составляет стоимость 1 s% в %s"
2597
 
 
 
 
 
2598
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2599
  msgid "Instructions"
2600
  msgstr "Инструкции"
2669
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2670
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2671
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2672
+ #: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
2673
+ #: sell-content.php:668
2674
  msgid "Button Label"
2675
  msgstr "Кнопка ярлыка"
2676
 
2683
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2684
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2685
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2686
+ #: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
2687
+ #: sell-content.php:664
2688
  msgid "Price"
2689
  msgstr "Цена"
2690
 
2706
  msgstr "Журнал"
2707
 
2708
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2709
+ #: includes/mycred-admin.php:717 ../includes/mycred-admin.php:754
2710
  msgid "Log Entry"
2711
  msgstr "Журнал входа"
2712
 
2713
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2714
+ #: content/myCRED-addon-sell-content.php:472
2715
  msgid "Templates"
2716
  msgstr "Шаблоны"
2717
 
2793
  msgstr "Отклонить"
2794
 
2795
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2796
+ #: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:488 ..
2797
  #: modules/mycred-module-settings.php:507
2798
  msgid "Delete"
2799
  msgstr "Удалить"
3253
  msgstr "В этом ранге пользователи не обнаружены"
3254
 
3255
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3256
+ #: shortcodes.php:425 ../includes/mycred-shortcodes.php:428 ../includes/mycred-
3257
+ #: shortcodes.php:491 ../includes/mycred-shortcodes.php:549 ../includes/mycred-
3258
+ #: shortcodes.php:553 ../includes/mycred-shortcodes.php:557
3259
  msgid "error"
3260
  msgstr "ошибка"
3261
 
3275
  msgid "Save Profit Share"
3276
  msgstr ""
3277
 
3278
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:164
3279
  msgid "Profit Share override saved"
3280
  msgstr ""
3281
 
3282
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:326
3283
  msgid "You can not buy this content."
3284
  msgstr "Вы не можете приобрести этот контент."
3285
 
3286
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:371
3287
  msgid "Error. Try Again"
3288
  msgstr "Ошибка. Повторите попытку"
3289
 
3290
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3291
  msgid "No Payout. Just charge."
3292
  msgstr "Нет выплат. Только расходы."
3293
 
3294
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3295
  msgid "Pay Content Author."
3296
  msgstr "Заплатить автору контента."
3297
 
3298
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:400 ../includes/mycred-
3299
  #: overview.php:141 ../includes/mycred-overview.php:148
3300
  msgid "Sell Content"
3301
  msgstr "Продать контент"
3302
 
3303
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3304
  msgid "Post Types"
3305
  msgstr "Типы публикации"
3306
 
3307
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3308
  msgid "Comma separated list of post types that can be sold."
3309
  msgstr "Разделенный запятой список типов постов, которые можно продать. "
3310
 
3311
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:436
3312
  msgid "Percentage to pay Author"
3313
  msgstr "Проценты для выплаты автору"
3314
 
3315
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3316
  msgid ""
3317
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3318
  "authors are not paid."
3320
  "Процент от стоимости для выплаты автору. Не может быть нулевым и "
3321
  "игнорируется, если авторам не платят. "
3322
 
3323
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:446
3324
  msgid "Defaults"
3325
  msgstr "Неплатёж"
3326
 
3327
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:454
3328
  msgid "Allow authors to change price."
3329
  msgstr "Разрешить авторам изменять цену. "
3330
 
3331
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3332
  msgid "Allow authors to change button label."
3333
  msgstr "Разрешить авторам изменять кнопку ярлыка."
3334
 
3335
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:467
3336
  msgid "Purchases expire after"
3337
  msgstr "Срок покупки истекает после"
3338
 
3339
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3340
  msgid "Use zero for permanent sales."
3341
  msgstr "Использовать ноль для постоянных распродаж."
3342
 
3343
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:475
3344
  msgid "For Visitors"
3345
  msgstr ""
3346
 
3347
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:480
3348
  #, php-format
3349
  msgid ""
3350
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3353
  "Не <strong>not</strong> используйте %buy_button% в этом шаблоне, поскольку "
3354
  "пользователь должен войти в систему для покупки контента!"
3355
 
3356
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:485
3357
  msgid "For Members"
3358
  msgstr ""
3359
 
3360
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:490 ../addons/sell-
3361
+ #: content/myCRED-addon-sell-content.php:500
3362
  #, php-format
3363
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3364
  msgstr ""
3365
  "Ваш шаблон должен содержать тег %buy_button% для того, чтобы покупки "
3366
  "работали! "
3367
 
3368
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:495
3369
  msgid "For members that can not afford to buy"
3370
  msgstr ""
3371
 
3372
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:504
3373
  msgid "Log template for Purchases"
3374
  msgstr "Журнал шаблона для покупок"
3375
 
3376
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:511
3377
  msgid "Log template for Sales"
3378
  msgstr "Журнал шаблона для распродаж"
3379
 
3380
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:563
3381
  #, php-format
3382
  msgid "%s Sell This"
3383
  msgstr "%s продать это"
3384
 
3385
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:617
3386
  #, php-format
3387
  msgid "%s Sell Content needs to be setup before you can use this feature."
3388
  msgstr ""
3389
  "%s Необходимо установить продажу контента перед началом использования этого "
3390
  "свойства."
3391
 
3392
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3393
  msgid "Setup add-on"
3394
  msgstr "Расширение настройки"
3395
 
3396
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3397
  msgid "Lets do it"
3398
  msgstr "Выполнить это"
3399
 
3400
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:658
3401
  #, php-format
3402
  msgid "Enable sale of this %s"
3403
  msgstr ""
3404
 
3405
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:672
3406
  msgid "Purchase expires after"
3407
  msgstr "Срок действия покупки истекает после "
3408
 
3409
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:998
3410
  msgid "Thank you for your purchase!"
3411
  msgstr "Благодарим вас за вашу покупку!"
3412
 
3413
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1086 ../addons/sell-
3414
+ #: content/myCRED-addon-sell-content.php:1172
3415
  msgid "The following content is set for sale:"
3416
  msgstr "Следующий контент установлен на продажу:"
3417
 
3418
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1232
3419
  msgid "Purchased"
3420
  msgstr "Купленный"
3421
 
3428
  msgstr "Вы превысили ваш %limit% лимит передачи."
3429
 
3430
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3431
+ #: php:2313
3432
  msgid "Transfer"
3433
  msgstr "Передать"
3434
 
3467
  "это не будет выполнено!"
3468
 
3469
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3470
+ #: php:1012
3471
  msgid "Insufficient Funds. Please try a lower amount."
3472
  msgstr ""
3473
 
3695
  msgid "Failed to update this uses balance."
3696
  msgstr "Ошибка обновления баланса пользователя."
3697
 
3698
+ #: ../includes/mycred-admin.php:386
3699
  msgid "Excluded"
3700
  msgstr "Исключено"
3701
 
3702
+ #: ../includes/mycred-admin.php:396
3703
  #, php-format
3704
  msgid "Total: %s"
3705
  msgstr ""
3706
 
3707
+ #: ../includes/mycred-admin.php:405
 
 
 
 
 
3708
  msgid "Adjust"
3709
  msgstr "Корректировать"
3710
 
3711
+ #: ../includes/mycred-admin.php:443 ../includes/mycred-admin.php:444
3712
  msgid "Edit Balance"
3713
  msgstr ""
3714
 
3715
+ #: ../includes/mycred-admin.php:462
3716
  msgid "Profile"
3717
  msgstr ""
3718
 
3719
+ #: ../includes/mycred-admin.php:469
3720
  msgid "Extended Profile"
3721
  msgstr ""
3722
 
3723
+ #: ../includes/mycred-admin.php:559
3724
  #, php-format
3725
  msgid "This user is excluded from using %s"
3726
  msgstr ""
3727
 
3728
+ #: ../includes/mycred-admin.php:582
3729
  msgid "Edit User"
3730
  msgstr ""
3731
 
3732
+ #: ../includes/mycred-admin.php:584
3733
  msgctxt "user"
3734
  msgid "Add New"
3735
  msgstr ""
3736
 
3737
+ #: ../includes/mycred-admin.php:586
3738
  msgctxt "user"
3739
  msgid "Add Existing"
3740
  msgstr ""
3741
 
3742
+ #: ../includes/mycred-admin.php:597
3743
  #, php-format
3744
  msgid "Total %s Accumulated"
3745
  msgstr ""
3746
 
3747
+ #: ../includes/mycred-admin.php:598
3748
  #, php-format
3749
  msgid "Total %s Spent"
3750
  msgstr ""
3751
 
3752
+ #: ../includes/mycred-admin.php:609
3753
  msgid "View History"
3754
  msgstr ""
3755
 
3756
+ #: ../includes/mycred-admin.php:610
3757
  msgid "Exclude User"
3758
  msgstr ""
3759
 
3760
+ #: ../includes/mycred-admin.php:614
3761
  msgid "Adjust Balance"
3762
  msgstr ""
3763
 
3764
+ #: ../includes/mycred-admin.php:623
3765
  msgid ""
3766
  "Warning! Excluding this user will result in their balance being deleted "
3767
  "along with any entries currently in your log! This can not be undone!"
3768
  msgstr ""
3769
 
3770
+ #: ../includes/mycred-admin.php:681
3771
  #, php-format
3772
  msgid "%singular% balance"
3773
  msgstr "%singular% баланс"
3774
 
3775
+ #: ../includes/mycred-admin.php:721 ../includes/mycred-admin.php:755
3776
  msgid "Update Balance"
3777
  msgstr "Обновить баланс"
3778
 
3779
+ #: ../includes/mycred-admin.php:747
3780
  msgid "ID"
3781
  msgstr "ID"
3782
 
3783
+ #: ../includes/mycred-admin.php:753
3784
  msgid "A positive or negative value"
3785
  msgstr "Положительное или отрицательное значение"
3786
 
3832
  msgid "Available Template Tags:"
3833
  msgstr "Доступные теги шаблонов:"
3834
 
3835
+ #: ../includes/mycred-functions.php:1673
3836
  msgid "Entire Log"
3837
  msgstr "Весь журнал"
3838
 
3839
+ #: ../includes/mycred-functions.php:1678 ../includes/mycred-functions.php:1679
3840
  msgid "Displayed Rows"
3841
  msgstr "Показанные ряды"
3842
 
3843
+ #: ../includes/mycred-functions.php:1686
3844
  msgid "Search Results"
3845
  msgstr "Искать результаты"
3846
 
3847
+ #: ../includes/mycred-functions.php:1687
3848
  msgid "My Entire Log"
3849
  msgstr "Мой полный журнал"
3850
 
3851
+ #: ../includes/mycred-functions.php:1808
3852
  msgid "ref empty"
3853
  msgstr "образец пустой"
3854
 
3855
+ #: ../includes/mycred-functions.php:1816
3856
  msgid "incorrect user id format"
3857
  msgstr "неверный формат id пользователя"
3858
 
3859
+ #: ../includes/mycred-functions.php:1829
3860
  msgid "incorrect unix timestamp (from):"
3861
  msgstr "неправильная временная отметка операционной системы (от):"
3862
 
3863
+ #: ../includes/mycred-functions.php:1838
3864
  msgid "incorrect unix timestamp (to):"
3865
  msgstr "неправильная временная отметка операционной системы (до):"
3866
 
3867
+ #: ../includes/mycred-functions.php:2200
3868
  msgid "Website Registration"
3869
  msgstr ""
3870
 
3871
+ #: ../includes/mycred-functions.php:2201
3872
  msgid "Website Visit"
3873
  msgstr ""
3874
 
3875
+ #: ../includes/mycred-functions.php:2202
3876
  msgid "Viewing Content (Member)"
3877
  msgstr ""
3878
 
3879
+ #: ../includes/mycred-functions.php:2203
3880
  msgid "Viewing Content (Author)"
3881
  msgstr ""
3882
 
3883
+ #: ../includes/mycred-functions.php:2204
3884
  msgid "Logging in"
3885
  msgstr ""
3886
 
3887
+ #: ../includes/mycred-functions.php:2205
3888
  msgid "Publishing Content"
3889
  msgstr ""
3890
 
3891
+ #: ../includes/mycred-functions.php:2206 ../modules/mycred-module-hooks.php:1421
3892
  msgid "Approved Comment"
3893
  msgstr "Комментарий одобрен"
3894
 
3895
+ #: ../includes/mycred-functions.php:2207
3896
  msgid "Unapproved Comment"
3897
  msgstr ""
3898
 
3899
+ #: ../includes/mycred-functions.php:2208
3900
  msgid "SPAM Comment"
3901
  msgstr ""
3902
 
3903
+ #: ../includes/mycred-functions.php:2209
3904
  msgid "Deleted Comment"
3905
  msgstr ""
3906
 
3907
+ #: ../includes/mycred-functions.php:2210
3908
  msgid "Link Click"
3909
  msgstr ""
3910
 
3911
+ #: ../includes/mycred-functions.php:2211
3912
  msgid "Watching Video"
3913
  msgstr ""
3914
 
3915
+ #: ../includes/mycred-functions.php:2212
3916
  msgid "Visitor Referral"
3917
  msgstr ""
3918
 
3919
+ #: ../includes/mycred-functions.php:2213
3920
  msgid "Signup Referral"
3921
  msgstr ""
3922
 
3923
+ #: ../includes/mycred-functions.php:2217
3924
  msgid "New Profile Update"
3925
  msgstr ""
3926
 
3927
+ #: ../includes/mycred-functions.php:2218
3928
  msgid "Avatar Upload"
3929
  msgstr ""
3930
 
3931
+ #: ../includes/mycred-functions.php:2219
3932
  msgid "New Friendship"
3933
  msgstr ""
3934
 
3935
+ #: ../includes/mycred-functions.php:2220
3936
  msgid "Ended Friendship"
3937
  msgstr ""
3938
 
3939
+ #: ../includes/mycred-functions.php:2221
3940
  msgid "New Profile Comment"
3941
  msgstr ""
3942
 
3943
+ #: ../includes/mycred-functions.php:2222
3944
  msgid "Profile Comment Deletion"
3945
  msgstr ""
3946
 
3947
+ #: ../includes/mycred-functions.php:2223
3948
  msgid "New Message"
3949
  msgstr ""
3950
 
3951
+ #: ../includes/mycred-functions.php:2224
3952
  msgid "Sending Gift"
3953
  msgstr ""
3954
 
3955
+ #: ../includes/mycred-functions.php:2225
3956
  msgid "New Group"
3957
  msgstr ""
3958
 
3959
+ #: ../includes/mycred-functions.php:2226
3960
  msgid "Deleted Group"
3961
  msgstr ""
3962
 
3963
+ #: ../includes/mycred-functions.php:2227
3964
  msgid "New Group Forum Topic"
3965
  msgstr ""
3966
 
3967
+ #: ../includes/mycred-functions.php:2228
3968
  msgid "Edit Group Forum Topic"
3969
  msgstr ""
3970
 
3971
+ #: ../includes/mycred-functions.php:2229
3972
  msgid "New Group Forum Post"
3973
  msgstr ""
3974
 
3975
+ #: ../includes/mycred-functions.php:2230
3976
  msgid "Edit Group Forum Post"
3977
  msgstr ""
3978
 
3979
+ #: ../includes/mycred-functions.php:2231
3980
  msgid "Joining Group"
3981
  msgstr ""
3982
 
3983
+ #: ../includes/mycred-functions.php:2232
3984
  msgid "Leaving Group"
3985
  msgstr ""
3986
 
3987
+ #: ../includes/mycred-functions.php:2233
3988
  msgid "New Group Avatar"
3989
  msgstr ""
3990
 
3991
+ #: ../includes/mycred-functions.php:2234
3992
  msgid "New Group Comment"
3993
  msgstr ""
3994
 
3995
+ #: ../includes/mycred-functions.php:2238 ../plugins/mycred-hook-buddypress-media.
3996
  #: php:166
3997
  msgid "Photo Upload"
3998
  msgstr "Загрузка фото"
3999
 
4000
+ #: ../includes/mycred-functions.php:2239 ../plugins/mycred-hook-buddypress-media.
4001
  #: php:176
4002
  msgid "Video Upload"
4003
  msgstr "Загрузка фидео"
4004
 
4005
+ #: ../includes/mycred-functions.php:2240 ../plugins/mycred-hook-buddypress-media.
4006
  #: php:186
4007
  msgid "Music Upload"
4008
  msgstr "Загрузка музыки"
4009
 
4010
+ #: ../includes/mycred-functions.php:2244
4011
  msgid "New Link"
4012
  msgstr ""
4013
 
4014
+ #: ../includes/mycred-functions.php:2245
4015
  msgid "Link Voting"
4016
  msgstr ""
4017
 
4018
+ #: ../includes/mycred-functions.php:2246
4019
  msgid "Link Update"
4020
  msgstr ""
4021
 
4022
+ #: ../includes/mycred-functions.php:2250
4023
  msgid "New Forum (bbPress)"
4024
  msgstr ""
4025
 
4026
+ #: ../includes/mycred-functions.php:2251
4027
  msgid "New Forum Topic (bbPress)"
4028
  msgstr ""
4029
 
4030
+ #: ../includes/mycred-functions.php:2252
4031
  msgid "Favorited Topic (bbPress)"
4032
  msgstr ""
4033
 
4034
+ #: ../includes/mycred-functions.php:2253
4035
  msgid "New Topic Reply (bbPress)"
4036
  msgstr ""
4037
 
4038
+ #: ../includes/mycred-functions.php:2257
4039
  msgid "Form Submission (Contact Form 7)"
4040
  msgstr ""
4041
 
4042
+ #: ../includes/mycred-functions.php:2260
4043
  msgid "Form Submission (Gravity Form)"
4044
  msgstr ""
4045
 
4046
+ #: ../includes/mycred-functions.php:2263
4047
  msgid "New Forum Topic (SimplePress)"
4048
  msgstr ""
4049
 
4050
+ #: ../includes/mycred-functions.php:2264
4051
  msgid "New Forum Post (SimplePress)"
4052
  msgstr ""
4053
 
4054
+ #: ../includes/mycred-functions.php:2268
4055
  msgid "Poll Voting"
4056
  msgstr ""
4057
 
4058
+ #: ../includes/mycred-functions.php:2271
4059
  msgid "Sending an Invite"
4060
  msgstr ""
4061
 
4062
+ #: ../includes/mycred-functions.php:2272
4063
  msgid "Accepting an Invite"
4064
  msgstr ""
4065
 
4066
+ #: ../includes/mycred-functions.php:2278
4067
  msgid "Banking Payout"
4068
  msgstr ""
4069
 
4070
+ #: ../includes/mycred-functions.php:2281
4071
  msgid "buyCRED Purchase (PayPal Standard)"
4072
  msgstr ""
4073
 
4074
+ #: ../includes/mycred-functions.php:2282
4075
  msgid "buyCRED Purchase (Skrill)"
4076
  msgstr ""
4077
 
4078
+ #: ../includes/mycred-functions.php:2283
4079
  msgid "buyCRED Purchase (Zombaio)"
4080
  msgstr ""
4081
 
4082
+ #: ../includes/mycred-functions.php:2284
4083
  msgid "buyCRED Purchase (NETBilling)"
4084
  msgstr ""
4085
 
4086
+ #: ../includes/mycred-functions.php:2285
4087
  msgid "buyCRED Purchase (BitPay)"
4088
  msgstr ""
4089
 
4090
+ #: ../includes/mycred-functions.php:2290
4091
  msgid "Coupon Purchase"
4092
  msgstr ""
4093
 
4094
+ #: ../includes/mycred-functions.php:2293
4095
  msgid "Store Purchase (WooCommerce)"
4096
  msgstr ""
4097
 
4098
+ #: ../includes/mycred-functions.php:2294
4099
  msgid "Store Purchase (MarketPress)"
4100
  msgstr ""
4101
 
4102
+ #: ../includes/mycred-functions.php:2295
4103
  msgid "Store Purchase (WP E-Commerce)"
4104
  msgstr ""
4105
 
4106
+ #: ../includes/mycred-functions.php:2300
4107
  msgid "Event Payment (Event Espresso)"
4108
  msgstr ""
4109
 
4110
+ #: ../includes/mycred-functions.php:2301
4111
  msgid "Event Sale (Event Espresso)"
4112
  msgstr ""
4113
 
4114
+ #: ../includes/mycred-functions.php:2305
4115
  msgid "Event Payment (Events Manager)"
4116
  msgstr ""
4117
 
4118
+ #: ../includes/mycred-functions.php:2306
4119
  msgid "Event Sale (Events Manager)"
4120
  msgstr ""
4121
 
4122
+ #: ../includes/mycred-functions.php:2310
4123
  msgid "Content Purchase / Sale"
4124
  msgstr ""
4125
 
4126
+ #: ../includes/mycred-functions.php:2317
4127
  msgid "Manual Adjustment by Admin"
4128
  msgstr ""
4129
 
4296
  "пользователь сможет перевести, купить или потратить в магазине. Используйте "
4297
  "ноль для отключения."
4298
 
4299
+ #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
4300
+ msgid "Excludes"
4301
+ msgstr "Исключает"
4302
+
4303
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4304
  msgid "Exclude those who can \"Edit Settings\"."
4305
  msgstr "Исключить тех, кто может \"Редактировать Настройки\"."
4410
  msgid "Entry"
4411
  msgstr "Запись"
4412
 
4413
+ #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:468
4414
  msgid "User Missing"
4415
  msgstr "Пользователь отсутствует"
4416
 
4600
  "Не забывайте отключать, если приложение не используется, для предотвращения "
4601
  "злонамеренных звонков "
4602
 
4603
+ #: ../includes/mycred-shortcodes.php:154
4604
  msgid "Leaderboard is empty."
4605
  msgstr "Таблица лидеров пуста."
4606
 
4607
+ #: ../includes/mycred-shortcodes.php:425 ../includes/mycred-shortcodes.php:549
4608
  msgid "Amount missing!"
4609
  msgstr "Сумма отсутствует!"
4610
 
4611
+ #: ../includes/mycred-shortcodes.php:428 ../includes/mycred-shortcodes.php:557
4612
  msgid "Log Template Missing!"
4613
  msgstr "Шаблон журнала отсутствует!"
4614
 
4615
+ #: ../includes/mycred-shortcodes.php:491
4616
  msgid "Anchor missing URL!"
4617
  msgstr "Отсутствует привязка URL!"
4618
 
4619
+ #: ../includes/mycred-shortcodes.php:553
4620
  msgid "User ID missing for recipient."
4621
  msgstr "Отсутствует ID пользователя для получателя."
4622
 
4623
+ #: ../includes/mycred-shortcodes.php:608
4624
  msgid "Sent"
4625
  msgstr "Отправлено"
4626
 
4627
+ #: ../includes/mycred-shortcodes.php:609
4628
  msgid "Error - Try Again"
4629
  msgstr "Ошибка - Повторите попытку"
4630
 
4631
+ #: ../includes/mycred-shortcodes.php:718
4632
  msgid "A video ID is required for this shortcode"
4633
  msgstr "Для этого короткого номера требуется ID видео"
4634
 
4635
+ #: ../includes/mycred-shortcodes.php:864 ../includes/mycred-shortcodes.php:958
4636
  msgid "Point types not found."
4637
  msgstr ""
4638
 
4639
+ #: ../includes/mycred-shortcodes.php:870 ../includes/mycred-shortcodes.php:878 ..
4640
+ #: includes/mycred-shortcodes.php:970 ../includes/mycred-shortcodes.php:990
4641
  #, php-format
4642
  msgid "You are excluded from using %s."
4643
  msgstr ""
4644
 
4645
+ #: ../includes/mycred-shortcodes.php:874 ../includes/mycred-shortcodes.php:980
4646
  msgid "Your balance is too low to use this feature."
4647
  msgstr ""
4648
 
4649
+ #: ../includes/mycred-shortcodes.php:895
4650
  #, php-format
4651
  msgid "Convert <span>%s</span> to <span>%s</span>"
4652
  msgstr ""
4653
 
4654
+ #: ../includes/mycred-shortcodes.php:904
4655
  #, php-format
4656
  msgid "Your current %s balance"
4657
  msgstr ""
4658
 
4659
+ #: ../includes/mycred-shortcodes.php:912
4660
  #, php-format
4661
  msgid "Minimum %s"
4662
  msgstr ""
4663
 
4664
+ #: ../includes/mycred-shortcodes.php:916
4665
  #, php-format
4666
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4667
  msgstr ""
4668
 
4669
+ #: ../includes/mycred-shortcodes.php:922
4670
  msgid "Exchange"
4671
  msgstr ""
4672
 
4673
+ #: ../includes/mycred-shortcodes.php:1003
4674
  #, php-format
4675
  msgid "You must exchange at least %s!"
4676
  msgstr ""
4677
 
4678
+ #: ../includes/mycred-shortcodes.php:1025
4679
  #, php-format
4680
  msgid "Exchange from %s"
4681
  msgstr ""
4682
 
4683
+ #: ../includes/mycred-shortcodes.php:1037
4684
  #, php-format
4685
  msgid "Exchange to %s"
4686
  msgstr ""
4687
 
4688
+ #: ../includes/mycred-shortcodes.php:1045
4689
  #, php-format
4690
  msgid "You have successfully exchanged %s into %s."
4691
  msgstr ""
4994
  msgid "Give your users badges based on their interaction with your website."
4995
  msgstr ""
4996
 
4997
+ #: ../modules/mycred-module-addons.php:158
4998
+ msgid "Setup recurring payouts or offer / charge interest on user account balances."
4999
+ msgstr ""
5000
+ "Установка повторения платежей или предложений / начисления процентов на "
5001
+ "баланс аккаунта пользователя. "
5002
+
5003
  #: ../modules/mycred-module-addons.php:169
5004
  msgid ""
5005
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5335
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5336
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5337
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5338
+ #: 2645 ../modules/mycred-module-hooks.php:2674 ../plugins/mycred-hook-badgeOS.
5339
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5340
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5341
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
5397
  msgid "%plural% for viewing %s"
5398
  msgstr ""
5399
 
5400
+ #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2653
5401
+ #: ../modules/mycred-module-hooks.php:2682 ../plugins/mycred-hook-invite-anyone.
5402
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5403
  msgid "Limit"
5404
  msgstr "Ограничение"
5490
  msgid "Custom tags: %url%, %title% or %id%."
5491
  msgstr "Пользовательские теги: %url%, %title% или %id%."
5492
 
5493
+ #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2756
5494
  msgid "Note!"
5495
  msgstr "Внимание!"
5496
 
5573
  msgid "Link"
5574
  msgstr "Ссылка"
5575
 
5576
+ #: ../modules/mycred-module-hooks.php:2639
5577
  msgid "Referring Visitors"
5578
  msgstr "Направление посетителей"
5579
 
5580
+ #: ../modules/mycred-module-hooks.php:2663 ../modules/mycred-module-hooks.php:2692
5581
  msgid "The number of referrals each member can make. Use zero for unlimited."
5582
  msgstr ""
5583
  "Количество направлений, которое может сделать каждый участник. Используйте "
5584
  "ноль для неограниченных."
5585
 
5586
+ #: ../modules/mycred-module-hooks.php:2667 ../modules/mycred-module-hooks.php:2696
5587
  msgid "Referring Signups"
5588
  msgstr "Отправка заявлений о регистрации"
5589
 
5590
+ #: ../modules/mycred-module-hooks.php:2671
5591
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5592
  msgstr "Посетители с отключенными куками не будут вознаграждены %_plural%."
5593
 
5594
+ #: ../modules/mycred-module-hooks.php:2698
5595
  msgid "Registrations are disabled."
5596
  msgstr "Регистрации отключены."
5597
 
5598
+ #: ../modules/mycred-module-hooks.php:2705
5599
  msgid "Referral Links"
5600
  msgstr "Ссылки направления"
5601
 
5602
+ #: ../modules/mycred-module-hooks.php:2709
5603
  msgid "Assign numeric referral IDs to each user."
5604
  msgstr "Отправить ID цифровых направлений каждому пользователю."
5605
 
5606
+ #: ../modules/mycred-module-hooks.php:2710 ../modules/mycred-module-hooks.php:2716
5607
  msgid "Example"
5608
  msgstr "Пример"
5609
 
5610
+ #: ../modules/mycred-module-hooks.php:2715
5611
  msgid "Assign usernames as IDs for each user."
5612
  msgstr "Назначить имена пользователей как ID для каждого участника."
5613
 
5614
+ #: ../modules/mycred-module-hooks.php:2719
5615
  msgid "IP Limit"
5616
  msgstr "Лимит IP"
5617
 
5618
+ #: ../modules/mycred-module-hooks.php:2723
5619
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5620
  msgstr ""
5621
  "Количество случаев, каждый IP адрес вознаграждается %_plural%. Использовать "
5622
  "ноль для неограниченных."
5623
 
5624
+ #: ../modules/mycred-module-hooks.php:2727 ../modules/mycred-module-hooks.php:2760
5625
  msgid "BuddyPress Profile"
5626
  msgstr "BuddyPress Профиль"
5627
 
5628
+ #: ../modules/mycred-module-hooks.php:2730
5629
  msgid "Insert Link in users Profile"
5630
  msgstr "Вставить ссылку в профайл пользователя"
5631
 
5632
+ #: ../modules/mycred-module-hooks.php:2731
5633
  msgid ""
5634
  "Option to inser the referral link in users profiles. Links will only be "
5635
  "visible to users viewing their own profiles or administrators."
5638
  "видимы для пользователей, которые просматривают свои собственные профайлы "
5639
  "или администраторам."
5640
 
5641
+ #: ../modules/mycred-module-hooks.php:2737
5642
  msgid "Leave empty to hide."
5643
  msgstr "Оставить пустым, чтобы спрятать."
5644
 
5645
+ #: ../modules/mycred-module-hooks.php:2740
5646
  msgid "Description"
5647
  msgstr "Описание"
5648
 
5649
+ #: ../modules/mycred-module-hooks.php:2741
5650
  msgid "Optional description to insert under the link."
5651
  msgstr "Описание по выбору для вставки под ссылкой."
5652
 
5653
+ #: ../modules/mycred-module-hooks.php:2753
5654
  msgid "Profile Positioning"
5655
  msgstr "Расположение профайла"
5656
 
5657
+ #: ../modules/mycred-module-hooks.php:2755
5658
  msgid ""
5659
  "You can move around the referral link on your users profile by changing the "
5660
  "position. Increase to move up, decrease to move down."
5662
  "Вы можете переносить ссылку направления в вашем профайле пользователя, меняя "
5663
  "расположение. Увеличить для движения вверх, снизить для движения вниз."
5664
 
5665
+ #: ../modules/mycred-module-hooks.php:2756
5666
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5667
  msgstr ""
5668
  "Вы не можете перемещать ссылку направления над \"Основными\" деталями профиля "
5669
  "пользователя!"
5670
 
5671
+ #: ../modules/mycred-module-hooks.php:2762
5672
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5673
  msgstr "Для разрешения требуются Расширенные профили BuddyPress."
5674
 
5693
  msgid "Entries"
5694
  msgstr "Записи"
5695
 
5696
+ #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
5697
+ #: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:574
5698
  msgid "Export"
5699
  msgstr "Экспорт"
5700
 
5702
  msgid "Search results for"
5703
  msgstr "Поиск результатов для "
5704
 
5705
+ #: ../modules/mycred-module-log.php:378
5706
  #, php-format
5707
  msgid "%s Log"
5708
  msgstr "%s Журнал"
5709
 
5710
+ #: ../modules/mycred-module-log.php:506
5711
  msgid "Edit"
5712
  msgstr "Редактировать"
5713
 
5714
+ #: ../modules/mycred-module-log.php:547
5715
  msgid "Time"
5716
  msgstr "Время"
5717
 
5718
+ #: ../modules/mycred-module-log.php:551
5719
  msgid "Current Log Entry"
5720
  msgstr "Текущая запись в журнале"
5721
 
5722
+ #: ../modules/mycred-module-log.php:553
5723
  msgid "The current saved log entry"
5724
  msgstr "Текущая сохраненная запись в журнале. "
5725
 
5726
+ #: ../modules/mycred-module-log.php:556
5727
  msgid "Adjust Log Entry"
5728
  msgstr "Редактировать запись в журнале"
5729
 
5730
+ #: ../modules/mycred-module-log.php:558
5731
  msgid "The new log entry"
5732
  msgstr "Новая запись в журнале"
5733
 
5734
+ #: ../modules/mycred-module-log.php:561
5735
  msgid "Update Log Entry"
5736
  msgstr "Обновить запись в журнале"
5737
 
5738
+ #: ../modules/mycred-module-log.php:628
5739
  #, php-format
5740
  msgid "My %s History"
5741
  msgstr "Моя %s история"
6462
  #, php-format
6463
  msgid "Awards %_plural% for users voting in polls."
6464
  msgstr "Награда %_plural% для пользователей, которые принимают участие в опросах."
 
lang/mycred-sv_SE.mo CHANGED
Binary file
lang/mycred-sv_SE.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 Jul 28 2014 16:22:15 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Swedish\n"
@@ -15,7 +15,7 @@ msgstr ""
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,xt_noop:1,2;"
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
@@ -44,8 +44,8 @@ msgstr "Hjälpsamma Användare"
44
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
45
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
46
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
47
- #: sell-content.php:364 ../addons/transfer/myCRED-addon-transfer.php:132 ..
48
- #: includes/mycred-shortcodes.php:605
49
  msgid "Processing..."
50
  msgstr "Arbetar..."
51
 
@@ -143,7 +143,7 @@ msgid "Once per day (reset at midnight)"
143
  msgstr "En gång om dagen (börjar om efter midnatt)"
144
 
145
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
146
- #: abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
147
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
148
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
149
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
@@ -169,8 +169,8 @@ msgstr "stäng"
169
  msgid "click to open"
170
  msgstr "öppna"
171
 
172
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-
173
- #: banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:849
174
  msgid "Settings Updated"
175
  msgstr "Inställningar Sparade"
176
 
@@ -375,143 +375,190 @@ msgstr ""
375
  msgid "in total"
376
  msgstr ""
377
 
378
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-
379
- #: banking.php:43 ../addons/banking/myCRED-addon-banking.php:44
380
  msgid "Banking"
381
  msgstr "Banktjänster"
382
 
383
- #: ../addons/banking/myCRED-addon-banking.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
384
  msgid "Compound Interest"
385
  msgstr "Ränta"
386
 
387
- #: ../addons/banking/myCRED-addon-banking.php:104
388
  #, php-format
389
- msgid ""
390
- "Apply an interest rate on your users %_plural% balances. Interest rate is "
391
- "annual and is compounded daily as long as this service is enabled. Positive "
392
- "interest rate leads to users gaining %_plural% while a negative interest "
393
- "rate will to users loosing %_plural%."
394
  msgstr ""
395
- "Erbjud ränta på dina användares %_plural% konton. Den årliga räntan beräknas "
396
- "dagligen så länge denna tjänst är aktiv. Ett positivt tal leder till att "
397
- "användare får %_plural% medan ett negativt tal leder till att de förlorar "
398
- "%_plural%."
399
 
400
- #: ../addons/banking/myCRED-addon-banking.php:110
401
  msgid "Recurring Payouts"
402
  msgstr ""
403
 
404
- #: ../addons/banking/myCRED-addon-banking.php:111
405
- #, php-format
406
- msgid ""
407
- "Give your users %_plural% on a regular basis with the option to set the "
408
- "number of times you want this payout to run (cycles)."
409
  msgstr ""
410
- "Ge dina användare %_plural% var dag / vecka / månad. Du kan själv välja hur "
411
- "många gånger detta skall ske."
412
 
413
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-
414
- #: addon-buy-creds.php:839 ../addons/buy-creds/myCRED-addon-buy-creds.php:935 ..
415
- #: includes/mycred-admin.php:573 ../includes/mycred-network.php:148 ..
416
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
417
- #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:579 ..
418
  #: modules/mycred-module-settings.php:312
419
  msgid "Access Denied"
420
  msgstr "Nekad Åtkomst"
421
 
422
- #: ../addons/banking/myCRED-addon-banking.php:167
423
  #, php-format
424
  msgid "%s Banking"
425
  msgstr "%s Banktjänst"
426
 
427
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.
428
- #: php:158
429
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
430
  msgstr ""
431
 
432
- #: ../addons/banking/myCRED-addon-banking.php:171
433
  msgid "WP-Cron deactivation detected!"
434
  msgstr "WP-Cron är inte aktivt!"
435
 
436
- #: ../addons/banking/myCRED-addon-banking.php:172
437
  msgid "Warning! This add-on requires WP - Cron to work."
438
  msgstr "Varning! Denna add-on behöver WP-Cron aktiverat!"
439
 
440
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-
441
- #: addon-buy-creds.php:873 ../modules/mycred-module-hooks.php:196
442
  msgid "Enable"
443
  msgstr "On"
444
 
445
- #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
446
  #: php:211
447
  msgid "Update Changes"
448
  msgstr "Spara"
449
 
450
- #: ../addons/banking/abstracts/mycred-abstract-service.php:57
451
- msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
452
- msgstr "function myCRED_Service::run() must be over-ridden in a sub-class."
453
-
454
- #: ../addons/banking/abstracts/mycred-abstract-service.php:66
455
  msgid "This Service has no settings"
456
  msgstr "Denna Tjänst har inga inställningar"
457
 
458
- #: ../addons/banking/abstracts/mycred-abstract-service.php:143
459
  msgid "Hourly"
460
  msgstr "Timvis"
461
 
462
- #: ../addons/banking/abstracts/mycred-abstract-service.php:147
463
  msgid "Daily"
464
  msgstr "Daglien"
465
 
466
- #: ../addons/banking/abstracts/mycred-abstract-service.php:151
467
  msgid "Weekly"
468
  msgstr "Veckovis"
469
 
470
- #: ../addons/banking/abstracts/mycred-abstract-service.php:155
471
  msgid "Monthly"
472
  msgstr "Månadsvis"
473
 
474
- #: ../addons/banking/abstracts/mycred-abstract-service.php:159
475
  msgid "Quarterly"
476
  msgstr "Kvartal"
477
 
478
- #: ../addons/banking/abstracts/mycred-abstract-service.php:163
479
  msgid "Semiannually"
480
  msgstr "Två gånger om året"
481
 
482
- #: ../addons/banking/abstracts/mycred-abstract-service.php:167
483
  msgid "Annually"
484
  msgstr "Årligen"
485
 
486
- #: ../addons/banking/services/mycred-bank-service-interest.php:25
 
 
 
 
 
 
 
 
 
 
 
 
487
  msgid "%plural% interest rate payment"
488
  msgstr "Utbetalning av %plural% ränta"
489
 
490
- #: ../addons/banking/services/mycred-bank-service-interest.php:275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
491
  msgid "Interest Rate"
492
  msgstr "Ränta"
493
 
494
- #: ../addons/banking/services/mycred-bank-service-interest.php:282
495
- msgid "Payed / Charged"
496
- msgstr "Utbetalt / Debiterat"
497
-
498
- #: ../addons/banking/services/mycred-bank-service-interest.php:288
499
- msgid "The interest rate can be either positive or negative and is compounded daily."
500
  msgstr ""
501
- "Räntan kan antingen vara ett positivt eller negativt tal o den beräknas "
502
- "dagligen."
503
 
504
- #: ../addons/banking/services/mycred-bank-service-interest.php:291 ..
505
- #: addons/coupons/myCRED-addon-coupons.php:392
506
- msgid "Minimum Balance"
507
- msgstr "Minimum saldo"
508
 
509
- #: ../addons/banking/services/mycred-bank-service-interest.php:295
510
- msgid "The minimum requires balance for interest to apply."
511
- msgstr "Minimum saldo för att ränta skall gälla."
 
512
 
513
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ..
514
- #: addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-
515
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
516
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
517
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
@@ -529,92 +576,119 @@ msgstr "Minimum saldo för att ränta skall gälla."
529
  msgid "Log Template"
530
  msgstr "Log Mall"
531
 
532
- #: ../addons/banking/services/mycred-bank-service-interest.php:305 ..
533
- #: addons/banking/services/mycred-bank-service-payouts.php:259
534
- msgid "Run Time"
535
- msgstr "Tid"
 
536
 
537
- #: ../addons/banking/services/mycred-bank-service-interest.php:309 ..
538
- #: addons/banking/services/mycred-bank-service-payouts.php:263
539
- msgid ""
540
- "For large websites, if you are running into time out issues during payouts, "
541
- "you can set the number of seconds a process can run. Use zero for unlimited, "
542
- "but be careful especially if you are on a shared server."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
543
  msgstr ""
544
- "Om du har många användare och har problem med att inte alla får betalt, kan "
545
- "du ändra hur många sekunder tjänsten kan köra. Använd noll för obegränsad "
546
- "tid. Var försiktig med att använda noll om du är på en shared server."
547
 
548
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
549
  msgid "Daily %_plural%"
550
  msgstr "Daglig %_plural%"
551
 
552
- #: ../addons/banking/services/mycred-bank-service-payouts.php:214
553
- msgid "Not yet run"
554
- msgstr "Har inte kört än"
 
 
555
 
556
- #: ../addons/banking/services/mycred-bank-service-payouts.php:219
 
 
 
 
 
 
 
 
557
  msgid "Pay Users"
558
  msgstr "Betala Användare"
559
 
560
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
561
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
562
- #: creds.php:1520 ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ..
563
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
564
- #: includes/mycred-admin.php:726 ../includes/mycred-admin.php:771 ..
565
- #: includes/mycred-shortcodes.php:908
566
  msgid "Amount"
567
  msgstr "Summa"
568
 
569
- #: ../addons/banking/services/mycred-bank-service-payouts.php:224
570
- msgid "Can not be zero."
571
- msgstr "Kan inte vara noll."
572
-
573
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ..
574
- #: addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-
575
- #: module-hooks.php:2113
576
  msgid "Interval"
577
  msgstr "Tal"
578
 
579
- #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ..
580
- #: addons/banking/services/mycred-bank-service-payouts.php:242
581
  msgid "Cycles"
582
  msgstr "Omgångar"
583
 
584
- #: ../addons/banking/services/mycred-bank-service-payouts.php:235
585
  msgid "Set to -1 for unlimited"
586
  msgstr "Använd -1 för obegränsad"
587
 
588
- #: ../addons/banking/services/mycred-bank-service-payouts.php:238
589
- msgid "Last Run / Activated"
590
- msgstr "Körde / Aktiverades"
591
-
592
- #: ../addons/banking/services/mycred-bank-service-payouts.php:241
593
- msgid ""
594
- "Select how often you want to award %_plural%. Note that when this service is "
595
- "enabled, the first payout will be in the beginning of the next period. So "
596
- "with a \"Daily\" interval, the first payout will occur first thing in the "
597
- "morning."
598
- msgstr ""
599
- "Välj hur ofta du vill betala ut %_plural%. Kom ihåg att denna tjänst börjar "
600
- "köra först när nästa omgång börjar. Så om du har valt att köra dagligen så "
601
- "börjar tjänsten imorgon."
602
-
603
- #: ../addons/banking/services/mycred-bank-service-payouts.php:242
604
- msgid ""
605
- "Cycles let you choose how many intervals this service should run. Each time "
606
- "a cycle runs, the value will decrease until it hits zero, in which case this "
607
- "service will deactivate itself. Use -1 to run unlimited times."
608
- msgstr ""
609
- "Omgångar låter dig välja hur många gånger du vill köra. Var gång tjänsten "
610
- "kör minskar denna tal med ett till den når noll. När den har nått noll, "
611
- "stänger tjänsten av sig själv."
612
-
613
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
614
  msgid "Important"
615
  msgstr "Viktigt"
616
 
617
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
618
  msgid ""
619
  "You can always stop payouts by deactivating this service. Just remember that "
620
  "if you deactivate while there are cycles left, this service will continue on "
@@ -624,17 +698,6 @@ msgstr ""
624
  "om du avaktiverar tjänsten och den har inte kört klart, kommer tjänsten att "
625
  "fortsätta köra när du nästa gång aktiverar den,"
626
 
627
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
628
- #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
629
- msgid "Excludes"
630
- msgstr "Exkludera "
631
-
632
- #: ../addons/banking/services/mycred-bank-service-payouts.php:249
633
- msgid ""
634
- "Comma separated list of user IDs to exclude from this service. No spaces "
635
- "allowed!"
636
- msgstr "Separera användares IDn med kommatäcken utan mellanslag!"
637
-
638
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
639
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
640
  msgid "Payment Gateways"
@@ -660,7 +723,7 @@ msgid "Edit Pending Payment"
660
  msgstr ""
661
 
662
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
663
- #: addon-buy-creds.php:1631
664
  msgid "No pending payments found"
665
  msgstr ""
666
 
@@ -669,23 +732,23 @@ msgid "Not found in Trash"
669
  msgstr ""
670
 
671
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
672
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595
673
  msgid "Transaction ID"
674
  msgstr "Transaktions ID"
675
 
676
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
677
- #: addon-buy-creds.php:984
678
  msgid "Buyer"
679
  msgstr ""
680
 
681
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
682
- #: addon-buy-creds.php:1598 ../addons/buy-creds/abstracts/mycred-abstract-payment-
683
  #: gateway.php:563
684
  msgid "Cost"
685
  msgstr "Kostnad"
686
 
687
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
688
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1596 ..
689
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
690
  msgid "Gateway"
691
  msgstr "Operatör"
@@ -703,14 +766,14 @@ msgid "buyCRED Purchase Log"
703
  msgstr "buyCRED Köp Log"
704
 
705
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
706
- #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:845
707
  msgid "Purchase Log"
708
  msgstr "Köp Log"
709
 
710
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
711
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
712
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
713
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:416
714
  msgid "Payments"
715
  msgstr "Köp"
716
 
@@ -787,7 +850,7 @@ msgid "Allow users to buy %_plural% for content authors."
787
  msgstr "Tillåt användare att köpra %_plural% åt post författare."
788
 
789
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
790
- #: hooks.php:2748
791
  msgid "Available Shortcodes"
792
  msgstr ""
793
 
@@ -796,156 +859,151 @@ msgstr ""
796
  msgid "%s Exchange Rate"
797
  msgstr ""
798
 
799
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:759 ../addons/sell-
800
- #: content/myCRED-addon-sell-content.php:113
801
- msgid "Leave empty to use the default value."
802
- msgstr ""
803
-
804
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
805
  msgid "Save Exchange Rates"
806
  msgstr ""
807
 
808
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
809
  msgid "Exchange rate override saved"
810
  msgstr ""
811
 
812
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:827
813
  msgid "Payment completed"
814
  msgstr ""
815
 
816
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
817
  #, php-format
818
  msgid "%s Payment Gateways"
819
  msgstr "%s Betalnings Operatörer"
820
 
821
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845 ../addons/buy-creds/myCRED-
822
- #: addon-buy-creds.php:992
823
  msgid "buyCRED Settings"
824
  msgstr "buyCRED Inställningar"
825
 
826
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
827
  msgid "Test Mode"
828
  msgstr "Test Mode"
829
 
830
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
831
  msgid "Enabled"
832
  msgstr "On"
833
 
834
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:871
835
  msgid "Disabled"
836
  msgstr "Off"
837
 
838
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
839
  msgid "Sandbox Mode"
840
  msgstr "Sandbox Mode"
841
 
842
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:884
843
  msgid "Enable for test purchases."
844
  msgstr "Aktivera för test köp."
845
 
846
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:901 ../addons/gateway/event-
847
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
848
  msgid "Update Settings"
849
  msgstr "Spara Ändringar"
850
 
851
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
852
  msgid "More Gateways"
853
  msgstr ""
854
 
855
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
856
  #: 634
857
  msgid "Date"
858
  msgstr "Datum"
859
 
860
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
861
  msgid "Payed"
862
  msgstr "Betalt"
863
 
864
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
865
  msgid "<strong>buy</strong>CRED Purchase Log"
866
  msgstr "<strong>buy</strong>CRED Köp Log"
867
 
868
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
869
  #: booking/mycred-eventespresso3.php:367
870
  msgid "Gateway Settings"
871
  msgstr "Operatör Inställningar"
872
 
873
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1168 ../addons/sell-
874
- #: content/myCRED-addon-sell-content.php:1184
875
  msgid "No purchases found"
876
  msgstr "Inga Köp"
877
 
878
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1238 ../addons/buy-creds/myCRED-
879
- #: addon-buy-creds.php:1351
880
  msgid "This Add-on needs to setup before you can use this shortcode."
881
  msgstr "Du måste sätta up denna add-on innan du kan använda denna shortcode."
882
 
883
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1257 ../addons/buy-creds/myCRED-
884
- #: addon-buy-creds.php:1370
885
  msgid "No gateways installed."
886
  msgstr "Inga Operatörer är installerade."
887
 
888
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1258 ../addons/buy-creds/myCRED-
889
- #: addon-buy-creds.php:1371
890
  msgid "Gateway does not exist."
891
  msgstr "Kunde inte finna operatör."
892
 
893
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1306
894
  msgid "Yourself"
895
  msgstr "Till dig själv"
896
 
897
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1372
898
  msgid "No active gateways found."
899
  msgstr "Kunde inte hitta några aktiverade operatörer."
900
 
901
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1373
902
  msgid "The selected gateway is not active."
903
  msgstr "Operatören du valde är inte aktiverad."
904
 
905
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1420
906
  #, php-format
907
  msgid "Buy with %gateway%"
908
  msgstr "Köp genom %gateway%"
909
 
910
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1426 ../addons/sell-
911
  #: content/myCRED-addon-sell-content.php:44
912
  msgid "Buy Now"
913
  msgstr "Köp"
914
 
915
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1471
916
  msgid "No users found"
917
  msgstr "Kunde inte hitta någon"
918
 
919
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1481
920
  msgid "To"
921
  msgstr "Till"
922
 
923
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1498
924
  msgid "Select Amount"
925
  msgstr "Välj summa"
926
 
927
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1522
928
  msgid "min."
929
  msgstr "min."
930
 
931
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1530
932
  msgid "Select Gateway"
933
  msgstr "Välj Operatör"
934
 
935
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1571 ../addons/gateway/event-
936
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
937
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
938
  #: php:35
939
  msgid "Pay Now"
940
  msgstr "Betala"
941
 
942
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1572 ../includes/mycred-install.
943
  #: php:515
944
  msgid "Cancel"
945
  msgstr ""
946
 
947
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ../addons/ranks/myCRED-
948
- #: addon-ranks.php:990 ../modules/mycred-module-log.php:372 ../modules/mycred-
949
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
950
  msgid "Actions"
951
  msgstr "Åtgärder"
@@ -985,12 +1043,12 @@ msgid "Cancel purchase"
985
  msgstr "Cancellara köp"
986
 
987
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
988
- #: includes/mycred-admin.php:720 ../includes/mycred-admin.php:757
989
  msgid "required"
990
  msgstr "obligatoriskt"
991
 
992
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
993
- #: includes/mycred-admin.php:722 ../includes/mycred-admin.php:759
994
  msgid "optional"
995
  msgstr "valfritt"
996
 
@@ -1381,7 +1439,7 @@ msgstr "Checkout Sida"
1381
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1382
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1383
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1384
- #: modules/mycred-module-hooks.php:2713
1385
  msgid "Title"
1386
  msgstr "Titel"
1387
 
@@ -1623,7 +1681,7 @@ msgstr "Värdet i %plural%."
1623
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1624
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1625
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1626
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:404 ..
1627
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1628
  #: includes/importers/mycred-cubepoints.php:365
1629
  msgid "Point Type"
@@ -2018,8 +2076,8 @@ msgid "Sent To"
2018
  msgstr "Skicka till"
2019
 
2020
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2021
- #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:766 ..
2022
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:544
2023
  msgid "User"
2024
  msgstr "Användare"
2025
 
@@ -2145,7 +2203,7 @@ msgstr ""
2145
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2146
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2147
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2148
- #: php:412 ../includes/mycred-admin.php:614 ../includes/mycred-admin.php:767
2149
  msgid "Current Balance"
2150
  msgstr "Nuvarande Saldo"
2151
 
@@ -2264,7 +2322,7 @@ msgstr "Hur mycket är 1 %_singular% värd i %currency%?"
2264
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2265
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2266
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2267
- #: php:578 ../includes/mycred-shortcodes.php:913
2268
  msgid "Exchange Rate"
2269
  msgstr "Växlings kurs"
2270
 
@@ -2493,10 +2551,6 @@ msgstr "Log Mall för betalningar"
2493
  msgid "How much is 1 %s worth in %s"
2494
  msgstr "Hur mycket är 1 %s värd i %s"
2495
 
2496
- #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2497
- msgid "Payout"
2498
- msgstr "Utbetalning"
2499
-
2500
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2501
  msgid "Instructions"
2502
  msgstr "Instruktioner"
@@ -2571,8 +2625,8 @@ msgstr "Titel att visa på kvitton och i loggar"
2571
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2572
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2573
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2574
- #: content/myCRED-addon-sell-content.php:452 ../addons/sell-content/myCRED-addon-
2575
- #: sell-content.php:662
2576
  msgid "Button Label"
2577
  msgstr "Knapp Text"
2578
 
@@ -2585,8 +2639,8 @@ msgstr "Betalnings Knapp"
2585
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2586
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2587
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2588
- #: content/myCRED-addon-sell-content.php:443 ../addons/sell-content/myCRED-addon-
2589
- #: sell-content.php:658
2590
  msgid "Price"
2591
  msgstr "Pris"
2592
 
@@ -2608,12 +2662,12 @@ msgid "Log"
2608
  msgstr "Log"
2609
 
2610
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2611
- #: includes/mycred-admin.php:735 ../includes/mycred-admin.php:772
2612
  msgid "Log Entry"
2613
  msgstr "Log Inlägg"
2614
 
2615
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2616
- #: content/myCRED-addon-sell-content.php:466
2617
  msgid "Templates"
2618
  msgstr "Mallar"
2619
 
@@ -2691,7 +2745,7 @@ msgid "Reject"
2691
  msgstr "Avvisa"
2692
 
2693
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2694
- #: modules/mycred-module-log.php:504 ../modules/mycred-module-settings.php:488 ..
2695
  #: modules/mycred-module-settings.php:507
2696
  msgid "Delete"
2697
  msgstr "Radera"
@@ -3136,9 +3190,9 @@ msgid "No users found with this rank"
3136
  msgstr "Inga användare hittades med denna rank"
3137
 
3138
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3139
- #: shortcodes.php:424 ../includes/mycred-shortcodes.php:427 ../includes/mycred-
3140
- #: shortcodes.php:489 ../includes/mycred-shortcodes.php:547 ../includes/mycred-
3141
- #: shortcodes.php:551 ../includes/mycred-shortcodes.php:555
3142
  msgid "error"
3143
  msgstr "error"
3144
 
@@ -3158,44 +3212,44 @@ msgstr ""
3158
  msgid "Save Profit Share"
3159
  msgstr ""
3160
 
3161
- #: ../addons/sell-content/myCRED-addon-sell-content.php:158
3162
  msgid "Profit Share override saved"
3163
  msgstr ""
3164
 
3165
- #: ../addons/sell-content/myCRED-addon-sell-content.php:320
3166
  msgid "You can not buy this content."
3167
  msgstr "Du kan inte köpa detta innehåll"
3168
 
3169
- #: ../addons/sell-content/myCRED-addon-sell-content.php:365
3170
  msgid "Error. Try Again"
3171
  msgstr "Fel. Försök igen"
3172
 
3173
- #: ../addons/sell-content/myCRED-addon-sell-content.php:387
3174
  msgid "No Payout. Just charge."
3175
  msgstr "Ingen vinstdelning. Bara ta betalt."
3176
 
3177
- #: ../addons/sell-content/myCRED-addon-sell-content.php:388
3178
  msgid "Pay Content Author."
3179
  msgstr "Dela vinst med författaren."
3180
 
3181
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394 ../includes/mycred-
3182
  #: overview.php:141 ../includes/mycred-overview.php:148
3183
  msgid "Sell Content"
3184
  msgstr "Sälj Innehåll"
3185
 
3186
- #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3187
  msgid "Post Types"
3188
  msgstr "Post Typer"
3189
 
3190
- #: ../addons/sell-content/myCRED-addon-sell-content.php:400
3191
  msgid "Comma separated list of post types that can be sold."
3192
  msgstr "Kommaseparerade lista av post typer som kan köpas."
3193
 
3194
- #: ../addons/sell-content/myCRED-addon-sell-content.php:430
3195
  msgid "Percentage to pay Author"
3196
  msgstr "Procent att betala författaren"
3197
 
3198
- #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3199
  msgid ""
3200
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3201
  "authors are not paid."
@@ -3203,96 +3257,96 @@ msgstr ""
3203
  "Ett procent tal att betala författaren. Kan inte vara noll och detta "
3204
  "ignorerar om vinstfördelning är inte aktiverad."
3205
 
3206
- #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3207
  msgid "Defaults"
3208
  msgstr "Standard Inställningar"
3209
 
3210
- #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3211
  msgid "Allow authors to change price."
3212
  msgstr "Tillåt författare att ändra priset."
3213
 
3214
- #: ../addons/sell-content/myCRED-addon-sell-content.php:457
3215
  msgid "Allow authors to change button label."
3216
  msgstr "Tillåt användare att ändra knapp texten."
3217
 
3218
- #: ../addons/sell-content/myCRED-addon-sell-content.php:461
3219
  msgid "Purchases expire after"
3220
  msgstr "Köp löper ut efter"
3221
 
3222
- #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3223
  msgid "Use zero for permanent sales."
3224
  msgstr "Använd noll till permanenta försäljningar."
3225
 
3226
- #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3227
  msgid "For Visitors"
3228
  msgstr ""
3229
 
3230
- #: ../addons/sell-content/myCRED-addon-sell-content.php:474
3231
  #, php-format
3232
  msgid ""
3233
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3234
  "be logged in to buy content!"
3235
  msgstr "Använd inte %buy_button% coden här!"
3236
 
3237
- #: ../addons/sell-content/myCRED-addon-sell-content.php:479
3238
  msgid "For Members"
3239
  msgstr ""
3240
 
3241
- #: ../addons/sell-content/myCRED-addon-sell-content.php:484 ../addons/sell-
3242
- #: content/myCRED-addon-sell-content.php:494
3243
  #, php-format
3244
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3245
  msgstr "Du måste använda %buy_button% coden för att köp skall fungera!"
3246
 
3247
- #: ../addons/sell-content/myCRED-addon-sell-content.php:489
3248
  msgid "For members that can not afford to buy"
3249
  msgstr ""
3250
 
3251
- #: ../addons/sell-content/myCRED-addon-sell-content.php:498
3252
  msgid "Log template for Purchases"
3253
  msgstr "Log mall för köp"
3254
 
3255
- #: ../addons/sell-content/myCRED-addon-sell-content.php:505
3256
  msgid "Log template for Sales"
3257
  msgstr "Log mall för försäljning"
3258
 
3259
- #: ../addons/sell-content/myCRED-addon-sell-content.php:557
3260
  #, php-format
3261
  msgid "%s Sell This"
3262
  msgstr "%s Sälj Detta"
3263
 
3264
- #: ../addons/sell-content/myCRED-addon-sell-content.php:611
3265
  #, php-format
3266
  msgid "%s Sell Content needs to be setup before you can use this feature."
3267
  msgstr "%s Sälj Innehåll måste installeras innan du kan använda denna funktion!"
3268
 
3269
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3270
  msgid "Setup add-on"
3271
  msgstr "Installera add-on"
3272
 
3273
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3274
  msgid "Lets do it"
3275
  msgstr "Kör!"
3276
 
3277
- #: ../addons/sell-content/myCRED-addon-sell-content.php:652
3278
  #, php-format
3279
  msgid "Enable sale of this %s"
3280
  msgstr ""
3281
 
3282
- #: ../addons/sell-content/myCRED-addon-sell-content.php:666
3283
  msgid "Purchase expires after"
3284
  msgstr "Köp löper ut efter"
3285
 
3286
- #: ../addons/sell-content/myCRED-addon-sell-content.php:992
3287
  msgid "Thank you for your purchase!"
3288
  msgstr "Tack för ditt köp!"
3289
 
3290
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1080 ../addons/sell-
3291
- #: content/myCRED-addon-sell-content.php:1166
3292
  msgid "The following content is set for sale:"
3293
  msgstr "Följande innehåll är till salu:"
3294
 
3295
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1226
3296
  msgid "Purchased"
3297
  msgstr "Köp historik"
3298
 
@@ -3305,7 +3359,7 @@ msgid "You have exceeded your %limit% transfer limit."
3305
  msgstr ""
3306
 
3307
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3308
- #: php:2295
3309
  msgid "Transfer"
3310
  msgstr ""
3311
 
@@ -3340,7 +3394,7 @@ msgid ""
3340
  msgstr ""
3341
 
3342
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3343
- #: php:1010
3344
  msgid "Insufficient Funds. Please try a lower amount."
3345
  msgstr ""
3346
 
@@ -3554,97 +3608,92 @@ msgstr ""
3554
  msgid "Failed to update this uses balance."
3555
  msgstr ""
3556
 
3557
- #: ../includes/mycred-admin.php:404
3558
  msgid "Excluded"
3559
  msgstr ""
3560
 
3561
- #: ../includes/mycred-admin.php:414
3562
  #, php-format
3563
  msgid "Total: %s"
3564
  msgstr ""
3565
 
3566
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:254 ..
3567
- #: modules/mycred-module-log.php:255
3568
- msgid "History"
3569
- msgstr ""
3570
-
3571
- #: ../includes/mycred-admin.php:423
3572
  msgid "Adjust"
3573
  msgstr ""
3574
 
3575
- #: ../includes/mycred-admin.php:461 ../includes/mycred-admin.php:462
3576
  msgid "Edit Balance"
3577
  msgstr ""
3578
 
3579
- #: ../includes/mycred-admin.php:480
3580
  msgid "Profile"
3581
  msgstr ""
3582
 
3583
- #: ../includes/mycred-admin.php:487
3584
  msgid "Extended Profile"
3585
  msgstr ""
3586
 
3587
- #: ../includes/mycred-admin.php:577
3588
  #, php-format
3589
  msgid "This user is excluded from using %s"
3590
  msgstr ""
3591
 
3592
- #: ../includes/mycred-admin.php:600
3593
  msgid "Edit User"
3594
  msgstr ""
3595
 
3596
- #: ../includes/mycred-admin.php:602
3597
  msgctxt "user"
3598
  msgid "Add New"
3599
  msgstr ""
3600
 
3601
- #: ../includes/mycred-admin.php:604
3602
  msgctxt "user"
3603
  msgid "Add Existing"
3604
  msgstr ""
3605
 
3606
- #: ../includes/mycred-admin.php:615
3607
  #, php-format
3608
  msgid "Total %s Accumulated"
3609
  msgstr ""
3610
 
3611
- #: ../includes/mycred-admin.php:616
3612
  #, php-format
3613
  msgid "Total %s Spent"
3614
  msgstr ""
3615
 
3616
- #: ../includes/mycred-admin.php:627
3617
  msgid "View History"
3618
  msgstr ""
3619
 
3620
- #: ../includes/mycred-admin.php:628
3621
  msgid "Exclude User"
3622
  msgstr ""
3623
 
3624
- #: ../includes/mycred-admin.php:632
3625
  msgid "Adjust Balance"
3626
  msgstr ""
3627
 
3628
- #: ../includes/mycred-admin.php:641
3629
  msgid ""
3630
  "Warning! Excluding this user will result in their balance being deleted "
3631
  "along with any entries currently in your log! This can not be undone!"
3632
  msgstr ""
3633
 
3634
- #: ../includes/mycred-admin.php:699
3635
  #, php-format
3636
  msgid "%singular% balance"
3637
  msgstr ""
3638
 
3639
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:773
3640
  msgid "Update Balance"
3641
  msgstr ""
3642
 
3643
- #: ../includes/mycred-admin.php:765
3644
  msgid "ID"
3645
  msgstr ""
3646
 
3647
- #: ../includes/mycred-admin.php:771
3648
  msgid "A positive or negative value"
3649
  msgstr ""
3650
 
@@ -3696,298 +3745,298 @@ msgstr ""
3696
  msgid "Available Template Tags:"
3697
  msgstr ""
3698
 
3699
- #: ../includes/mycred-functions.php:1655
3700
  msgid "Entire Log"
3701
  msgstr ""
3702
 
3703
- #: ../includes/mycred-functions.php:1660 ../includes/mycred-functions.php:1661
3704
  msgid "Displayed Rows"
3705
  msgstr ""
3706
 
3707
- #: ../includes/mycred-functions.php:1668
3708
  msgid "Search Results"
3709
  msgstr ""
3710
 
3711
- #: ../includes/mycred-functions.php:1669
3712
  msgid "My Entire Log"
3713
  msgstr ""
3714
 
3715
- #: ../includes/mycred-functions.php:1790
3716
  msgid "ref empty"
3717
  msgstr ""
3718
 
3719
- #: ../includes/mycred-functions.php:1798
3720
  msgid "incorrect user id format"
3721
  msgstr ""
3722
 
3723
- #: ../includes/mycred-functions.php:1811
3724
  msgid "incorrect unix timestamp (from):"
3725
  msgstr ""
3726
 
3727
- #: ../includes/mycred-functions.php:1820
3728
  msgid "incorrect unix timestamp (to):"
3729
  msgstr ""
3730
 
3731
- #: ../includes/mycred-functions.php:2182
3732
  msgid "Website Registration"
3733
  msgstr ""
3734
 
3735
- #: ../includes/mycred-functions.php:2183
3736
  msgid "Website Visit"
3737
  msgstr ""
3738
 
3739
- #: ../includes/mycred-functions.php:2184
3740
  msgid "Viewing Content (Member)"
3741
  msgstr ""
3742
 
3743
- #: ../includes/mycred-functions.php:2185
3744
  msgid "Viewing Content (Author)"
3745
  msgstr ""
3746
 
3747
- #: ../includes/mycred-functions.php:2186
3748
  msgid "Logging in"
3749
  msgstr ""
3750
 
3751
- #: ../includes/mycred-functions.php:2187
3752
  msgid "Publishing Content"
3753
  msgstr ""
3754
 
3755
- #: ../includes/mycred-functions.php:2188 ../modules/mycred-module-hooks.php:1421
3756
  msgid "Approved Comment"
3757
  msgstr ""
3758
 
3759
- #: ../includes/mycred-functions.php:2189
3760
  msgid "Unapproved Comment"
3761
  msgstr ""
3762
 
3763
- #: ../includes/mycred-functions.php:2190
3764
  msgid "SPAM Comment"
3765
  msgstr ""
3766
 
3767
- #: ../includes/mycred-functions.php:2191
3768
  msgid "Deleted Comment"
3769
  msgstr ""
3770
 
3771
- #: ../includes/mycred-functions.php:2192
3772
  msgid "Link Click"
3773
  msgstr ""
3774
 
3775
- #: ../includes/mycred-functions.php:2193
3776
  msgid "Watching Video"
3777
  msgstr ""
3778
 
3779
- #: ../includes/mycred-functions.php:2194
3780
  msgid "Visitor Referral"
3781
  msgstr ""
3782
 
3783
- #: ../includes/mycred-functions.php:2195
3784
  msgid "Signup Referral"
3785
  msgstr ""
3786
 
3787
- #: ../includes/mycred-functions.php:2199
3788
  msgid "New Profile Update"
3789
  msgstr ""
3790
 
3791
- #: ../includes/mycred-functions.php:2200
3792
  msgid "Avatar Upload"
3793
  msgstr ""
3794
 
3795
- #: ../includes/mycred-functions.php:2201
3796
  msgid "New Friendship"
3797
  msgstr ""
3798
 
3799
- #: ../includes/mycred-functions.php:2202
3800
  msgid "Ended Friendship"
3801
  msgstr ""
3802
 
3803
- #: ../includes/mycred-functions.php:2203
3804
  msgid "New Profile Comment"
3805
  msgstr ""
3806
 
3807
- #: ../includes/mycred-functions.php:2204
3808
  msgid "Profile Comment Deletion"
3809
  msgstr ""
3810
 
3811
- #: ../includes/mycred-functions.php:2205
3812
  msgid "New Message"
3813
  msgstr ""
3814
 
3815
- #: ../includes/mycred-functions.php:2206
3816
  msgid "Sending Gift"
3817
  msgstr ""
3818
 
3819
- #: ../includes/mycred-functions.php:2207
3820
  msgid "New Group"
3821
  msgstr ""
3822
 
3823
- #: ../includes/mycred-functions.php:2208
3824
  msgid "Deleted Group"
3825
  msgstr ""
3826
 
3827
- #: ../includes/mycred-functions.php:2209
3828
  msgid "New Group Forum Topic"
3829
  msgstr ""
3830
 
3831
- #: ../includes/mycred-functions.php:2210
3832
  msgid "Edit Group Forum Topic"
3833
  msgstr ""
3834
 
3835
- #: ../includes/mycred-functions.php:2211
3836
  msgid "New Group Forum Post"
3837
  msgstr ""
3838
 
3839
- #: ../includes/mycred-functions.php:2212
3840
  msgid "Edit Group Forum Post"
3841
  msgstr ""
3842
 
3843
- #: ../includes/mycred-functions.php:2213
3844
  msgid "Joining Group"
3845
  msgstr ""
3846
 
3847
- #: ../includes/mycred-functions.php:2214
3848
  msgid "Leaving Group"
3849
  msgstr ""
3850
 
3851
- #: ../includes/mycred-functions.php:2215
3852
  msgid "New Group Avatar"
3853
  msgstr ""
3854
 
3855
- #: ../includes/mycred-functions.php:2216
3856
  msgid "New Group Comment"
3857
  msgstr ""
3858
 
3859
- #: ../includes/mycred-functions.php:2220 ../plugins/mycred-hook-buddypress-media.
3860
  #: php:166
3861
  msgid "Photo Upload"
3862
  msgstr ""
3863
 
3864
- #: ../includes/mycred-functions.php:2221 ../plugins/mycred-hook-buddypress-media.
3865
  #: php:176
3866
  msgid "Video Upload"
3867
  msgstr ""
3868
 
3869
- #: ../includes/mycred-functions.php:2222 ../plugins/mycred-hook-buddypress-media.
3870
  #: php:186
3871
  msgid "Music Upload"
3872
  msgstr ""
3873
 
3874
- #: ../includes/mycred-functions.php:2226
3875
  msgid "New Link"
3876
  msgstr ""
3877
 
3878
- #: ../includes/mycred-functions.php:2227
3879
  msgid "Link Voting"
3880
  msgstr ""
3881
 
3882
- #: ../includes/mycred-functions.php:2228
3883
  msgid "Link Update"
3884
  msgstr ""
3885
 
3886
- #: ../includes/mycred-functions.php:2232
3887
  msgid "New Forum (bbPress)"
3888
  msgstr ""
3889
 
3890
- #: ../includes/mycred-functions.php:2233
3891
  msgid "New Forum Topic (bbPress)"
3892
  msgstr ""
3893
 
3894
- #: ../includes/mycred-functions.php:2234
3895
  msgid "Favorited Topic (bbPress)"
3896
  msgstr ""
3897
 
3898
- #: ../includes/mycred-functions.php:2235
3899
  msgid "New Topic Reply (bbPress)"
3900
  msgstr ""
3901
 
3902
- #: ../includes/mycred-functions.php:2239
3903
  msgid "Form Submission (Contact Form 7)"
3904
  msgstr ""
3905
 
3906
- #: ../includes/mycred-functions.php:2242
3907
  msgid "Form Submission (Gravity Form)"
3908
  msgstr ""
3909
 
3910
- #: ../includes/mycred-functions.php:2245
3911
  msgid "New Forum Topic (SimplePress)"
3912
  msgstr ""
3913
 
3914
- #: ../includes/mycred-functions.php:2246
3915
  msgid "New Forum Post (SimplePress)"
3916
  msgstr ""
3917
 
3918
- #: ../includes/mycred-functions.php:2250
3919
  msgid "Poll Voting"
3920
  msgstr ""
3921
 
3922
- #: ../includes/mycred-functions.php:2253
3923
  msgid "Sending an Invite"
3924
  msgstr ""
3925
 
3926
- #: ../includes/mycred-functions.php:2254
3927
  msgid "Accepting an Invite"
3928
  msgstr ""
3929
 
3930
- #: ../includes/mycred-functions.php:2260
3931
  msgid "Banking Payout"
3932
  msgstr ""
3933
 
3934
- #: ../includes/mycred-functions.php:2263
3935
  msgid "buyCRED Purchase (PayPal Standard)"
3936
  msgstr ""
3937
 
3938
- #: ../includes/mycred-functions.php:2264
3939
  msgid "buyCRED Purchase (Skrill)"
3940
  msgstr ""
3941
 
3942
- #: ../includes/mycred-functions.php:2265
3943
  msgid "buyCRED Purchase (Zombaio)"
3944
  msgstr ""
3945
 
3946
- #: ../includes/mycred-functions.php:2266
3947
  msgid "buyCRED Purchase (NETBilling)"
3948
  msgstr ""
3949
 
3950
- #: ../includes/mycred-functions.php:2267
3951
  msgid "buyCRED Purchase (BitPay)"
3952
  msgstr ""
3953
 
3954
- #: ../includes/mycred-functions.php:2272
3955
  msgid "Coupon Purchase"
3956
  msgstr ""
3957
 
3958
- #: ../includes/mycred-functions.php:2275
3959
  msgid "Store Purchase (WooCommerce)"
3960
  msgstr ""
3961
 
3962
- #: ../includes/mycred-functions.php:2276
3963
  msgid "Store Purchase (MarketPress)"
3964
  msgstr ""
3965
 
3966
- #: ../includes/mycred-functions.php:2277
3967
  msgid "Store Purchase (WP E-Commerce)"
3968
  msgstr ""
3969
 
3970
- #: ../includes/mycred-functions.php:2282
3971
  msgid "Event Payment (Event Espresso)"
3972
  msgstr ""
3973
 
3974
- #: ../includes/mycred-functions.php:2283
3975
  msgid "Event Sale (Event Espresso)"
3976
  msgstr ""
3977
 
3978
- #: ../includes/mycred-functions.php:2287
3979
  msgid "Event Payment (Events Manager)"
3980
  msgstr ""
3981
 
3982
- #: ../includes/mycred-functions.php:2288
3983
  msgid "Event Sale (Events Manager)"
3984
  msgstr ""
3985
 
3986
- #: ../includes/mycred-functions.php:2292
3987
  msgid "Content Purchase / Sale"
3988
  msgstr ""
3989
 
3990
- #: ../includes/mycred-functions.php:2299
3991
  msgid "Manual Adjustment by Admin"
3992
  msgstr ""
3993
 
@@ -4151,6 +4200,10 @@ msgid ""
4151
  "disable."
4152
  msgstr ""
4153
 
 
 
 
 
4154
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4155
  msgid "Exclude those who can \"Edit Settings\"."
4156
  msgstr ""
@@ -4256,7 +4309,7 @@ msgstr ""
4256
  msgid "Entry"
4257
  msgstr ""
4258
 
4259
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:466
4260
  msgid "User Missing"
4261
  msgstr "Användare saknas"
4262
 
@@ -4436,92 +4489,92 @@ msgid ""
4436
  "about your setup!"
4437
  msgstr ""
4438
 
4439
- #: ../includes/mycred-shortcodes.php:153
4440
  msgid "Leaderboard is empty."
4441
  msgstr ""
4442
 
4443
- #: ../includes/mycred-shortcodes.php:424 ../includes/mycred-shortcodes.php:547
4444
  msgid "Amount missing!"
4445
  msgstr ""
4446
 
4447
- #: ../includes/mycred-shortcodes.php:427 ../includes/mycred-shortcodes.php:555
4448
  msgid "Log Template Missing!"
4449
  msgstr ""
4450
 
4451
- #: ../includes/mycred-shortcodes.php:489
4452
  msgid "Anchor missing URL!"
4453
  msgstr ""
4454
 
4455
- #: ../includes/mycred-shortcodes.php:551
4456
  msgid "User ID missing for recipient."
4457
  msgstr ""
4458
 
4459
- #: ../includes/mycred-shortcodes.php:606
4460
  msgid "Sent"
4461
  msgstr ""
4462
 
4463
- #: ../includes/mycred-shortcodes.php:607
4464
  msgid "Error - Try Again"
4465
  msgstr ""
4466
 
4467
- #: ../includes/mycred-shortcodes.php:716
4468
  msgid "A video ID is required for this shortcode"
4469
  msgstr ""
4470
 
4471
- #: ../includes/mycred-shortcodes.php:862 ../includes/mycred-shortcodes.php:956
4472
  msgid "Point types not found."
4473
  msgstr ""
4474
 
4475
- #: ../includes/mycred-shortcodes.php:868 ../includes/mycred-shortcodes.php:876 ..
4476
- #: includes/mycred-shortcodes.php:968 ../includes/mycred-shortcodes.php:988
4477
  #, php-format
4478
  msgid "You are excluded from using %s."
4479
  msgstr ""
4480
 
4481
- #: ../includes/mycred-shortcodes.php:872 ../includes/mycred-shortcodes.php:978
4482
  msgid "Your balance is too low to use this feature."
4483
  msgstr ""
4484
 
4485
- #: ../includes/mycred-shortcodes.php:893
4486
  #, php-format
4487
  msgid "Convert <span>%s</span> to <span>%s</span>"
4488
  msgstr ""
4489
 
4490
- #: ../includes/mycred-shortcodes.php:902
4491
  #, php-format
4492
  msgid "Your current %s balance"
4493
  msgstr ""
4494
 
4495
- #: ../includes/mycred-shortcodes.php:910
4496
  #, php-format
4497
  msgid "Minimum %s"
4498
  msgstr ""
4499
 
4500
- #: ../includes/mycred-shortcodes.php:914
4501
  #, php-format
4502
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4503
  msgstr ""
4504
 
4505
- #: ../includes/mycred-shortcodes.php:920
4506
  msgid "Exchange"
4507
  msgstr ""
4508
 
4509
- #: ../includes/mycred-shortcodes.php:1001
4510
  #, php-format
4511
  msgid "You must exchange at least %s!"
4512
  msgstr ""
4513
 
4514
- #: ../includes/mycred-shortcodes.php:1023
4515
  #, php-format
4516
  msgid "Exchange from %s"
4517
  msgstr ""
4518
 
4519
- #: ../includes/mycred-shortcodes.php:1035
4520
  #, php-format
4521
  msgid "Exchange to %s"
4522
  msgstr ""
4523
 
4524
- #: ../includes/mycred-shortcodes.php:1043
4525
  #, php-format
4526
  msgid "You have successfully exchanged %s into %s."
4527
  msgstr ""
@@ -4818,6 +4871,10 @@ msgstr ""
4818
  msgid "Give your users badges based on their interaction with your website."
4819
  msgstr ""
4820
 
 
 
 
 
4821
  #: ../modules/mycred-module-addons.php:169
4822
  msgid ""
4823
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
@@ -5118,7 +5175,7 @@ msgstr ""
5118
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5119
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5120
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5121
- #: 2623 ../modules/mycred-module-hooks.php:2652 ../plugins/mycred-hook-badgeOS.
5122
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5123
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5124
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
@@ -5180,8 +5237,8 @@ msgstr ""
5180
  msgid "%plural% for viewing %s"
5181
  msgstr ""
5182
 
5183
- #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2631
5184
- #: ../modules/mycred-module-hooks.php:2660 ../plugins/mycred-hook-invite-anyone.
5185
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5186
  msgid "Limit"
5187
  msgstr ""
@@ -5263,7 +5320,7 @@ msgstr ""
5263
  msgid "Custom tags: %url%, %title% or %id%."
5264
  msgstr ""
5265
 
5266
- #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2734
5267
  msgid "Note!"
5268
  msgstr ""
5269
 
@@ -5337,91 +5394,91 @@ msgstr ""
5337
  msgid "Link"
5338
  msgstr ""
5339
 
5340
- #: ../modules/mycred-module-hooks.php:2617
5341
  msgid "Referring Visitors"
5342
  msgstr ""
5343
 
5344
- #: ../modules/mycred-module-hooks.php:2641 ../modules/mycred-module-hooks.php:2670
5345
  msgid "The number of referrals each member can make. Use zero for unlimited."
5346
  msgstr ""
5347
 
5348
- #: ../modules/mycred-module-hooks.php:2645 ../modules/mycred-module-hooks.php:2674
5349
  msgid "Referring Signups"
5350
  msgstr ""
5351
 
5352
- #: ../modules/mycred-module-hooks.php:2649
5353
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5354
  msgstr ""
5355
 
5356
- #: ../modules/mycred-module-hooks.php:2676
5357
  msgid "Registrations are disabled."
5358
  msgstr ""
5359
 
5360
- #: ../modules/mycred-module-hooks.php:2683
5361
  msgid "Referral Links"
5362
  msgstr ""
5363
 
5364
- #: ../modules/mycred-module-hooks.php:2687
5365
  msgid "Assign numeric referral IDs to each user."
5366
  msgstr ""
5367
 
5368
- #: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2694
5369
  msgid "Example"
5370
  msgstr ""
5371
 
5372
- #: ../modules/mycred-module-hooks.php:2693
5373
  msgid "Assign usernames as IDs for each user."
5374
  msgstr ""
5375
 
5376
- #: ../modules/mycred-module-hooks.php:2697
5377
  msgid "IP Limit"
5378
  msgstr ""
5379
 
5380
- #: ../modules/mycred-module-hooks.php:2701
5381
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5382
  msgstr ""
5383
 
5384
- #: ../modules/mycred-module-hooks.php:2705 ../modules/mycred-module-hooks.php:2738
5385
  msgid "BuddyPress Profile"
5386
  msgstr ""
5387
 
5388
- #: ../modules/mycred-module-hooks.php:2708
5389
  msgid "Insert Link in users Profile"
5390
  msgstr ""
5391
 
5392
- #: ../modules/mycred-module-hooks.php:2709
5393
  msgid ""
5394
  "Option to inser the referral link in users profiles. Links will only be "
5395
  "visible to users viewing their own profiles or administrators."
5396
  msgstr ""
5397
 
5398
- #: ../modules/mycred-module-hooks.php:2715
5399
  msgid "Leave empty to hide."
5400
  msgstr ""
5401
 
5402
- #: ../modules/mycred-module-hooks.php:2718
5403
  msgid "Description"
5404
  msgstr ""
5405
 
5406
- #: ../modules/mycred-module-hooks.php:2719
5407
  msgid "Optional description to insert under the link."
5408
  msgstr ""
5409
 
5410
- #: ../modules/mycred-module-hooks.php:2731
5411
  msgid "Profile Positioning"
5412
  msgstr ""
5413
 
5414
- #: ../modules/mycred-module-hooks.php:2733
5415
  msgid ""
5416
  "You can move around the referral link on your users profile by changing the "
5417
  "position. Increase to move up, decrease to move down."
5418
  msgstr ""
5419
 
5420
- #: ../modules/mycred-module-hooks.php:2734
5421
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5422
  msgstr ""
5423
 
5424
- #: ../modules/mycred-module-hooks.php:2740
5425
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5426
  msgstr ""
5427
 
@@ -5446,8 +5503,8 @@ msgstr ""
5446
  msgid "Entries"
5447
  msgstr ""
5448
 
5449
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:385 ..
5450
- #: modules/mycred-module-log.php:629 ../modules/mycred-module-settings.php:574
5451
  msgid "Export"
5452
  msgstr ""
5453
 
@@ -5455,40 +5512,40 @@ msgstr ""
5455
  msgid "Search results for"
5456
  msgstr ""
5457
 
5458
- #: ../modules/mycred-module-log.php:379
5459
  #, php-format
5460
  msgid "%s Log"
5461
  msgstr ""
5462
 
5463
- #: ../modules/mycred-module-log.php:504
5464
  msgid "Edit"
5465
  msgstr ""
5466
 
5467
- #: ../modules/mycred-module-log.php:545
5468
  msgid "Time"
5469
  msgstr "Tid"
5470
 
5471
- #: ../modules/mycred-module-log.php:549
5472
  msgid "Current Log Entry"
5473
  msgstr ""
5474
 
5475
- #: ../modules/mycred-module-log.php:551
5476
  msgid "The current saved log entry"
5477
  msgstr ""
5478
 
5479
- #: ../modules/mycred-module-log.php:554
5480
  msgid "Adjust Log Entry"
5481
  msgstr ""
5482
 
5483
- #: ../modules/mycred-module-log.php:556
5484
  msgid "The new log entry"
5485
  msgstr ""
5486
 
5487
- #: ../modules/mycred-module-log.php:559
5488
  msgid "Update Log Entry"
5489
  msgstr ""
5490
 
5491
- #: ../modules/mycred-module-log.php:623
5492
  #, php-format
5493
  msgid "My %s History"
5494
  msgstr ""
@@ -6173,7 +6230,3 @@ msgstr ""
6173
  #, php-format
6174
  msgid "Awards %_plural% for users voting in polls."
6175
  msgstr ""
6176
- -wp-polls.php:19
6177
- #, php-format
6178
- msgid "Awards %_plural% for users voting in polls."
6179
- 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: Thu Aug 07 2014 20:36:01 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Swedish\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
44
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
45
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
46
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
47
+ #: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
48
+ #: includes/mycred-shortcodes.php:607
49
  msgid "Processing..."
50
  msgstr "Arbetar..."
51
 
143
  msgstr "En gång om dagen (börjar om efter midnatt)"
144
 
145
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
146
+ #: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
147
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
148
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
149
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
169
  msgid "click to open"
170
  msgstr "öppna"
171
 
172
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/buy-creds/myCRED-addon-
173
+ #: buy-creds.php:847
174
  msgid "Settings Updated"
175
  msgstr "Inställningar Sparade"
176
 
375
  msgid "in total"
376
  msgstr ""
377
 
378
+ #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
379
+ #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
380
  msgid "Banking"
381
  msgstr "Banktjänster"
382
 
383
+ #: ../addons/banking/myCRED-addon-banking.php:158
384
+ msgid "Central Banking"
385
+ msgstr ""
386
+
387
+ #: ../addons/banking/myCRED-addon-banking.php:159
388
+ #, php-format
389
+ msgid ""
390
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
391
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
392
+ "deposited back into this account."
393
+ msgstr ""
394
+
395
+ #: ../addons/banking/myCRED-addon-banking.php:165 ..
396
+ #: addons/banking/services/mycred-bank-service-interest.php:512
397
  msgid "Compound Interest"
398
  msgstr "Ränta"
399
 
400
+ #: ../addons/banking/myCRED-addon-banking.php:166
401
  #, php-format
402
+ msgid "Apply a positive or negative interest rate on your users %_plural% balances."
 
 
 
 
403
  msgstr ""
 
 
 
 
404
 
405
+ #: ../addons/banking/myCRED-addon-banking.php:172
406
  msgid "Recurring Payouts"
407
  msgstr ""
408
 
409
+ #: ../addons/banking/myCRED-addon-banking.php:173
410
+ msgid "Setup mass %_singular% payouts for your users."
 
 
 
411
  msgstr ""
 
 
412
 
413
+ #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
414
+ #: addon-buy-creds.php:837 ../addons/buy-creds/myCRED-addon-buy-creds.php:933 ..
415
+ #: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
416
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
417
+ #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
418
  #: modules/mycred-module-settings.php:312
419
  msgid "Access Denied"
420
  msgstr "Nekad Åtkomst"
421
 
422
+ #: ../addons/banking/myCRED-addon-banking.php:225
423
  #, php-format
424
  msgid "%s Banking"
425
  msgstr "%s Banktjänst"
426
 
427
+ #: ../addons/banking/myCRED-addon-banking.php:228
428
+ msgid "Your banking setup for %plural%."
 
429
  msgstr ""
430
 
431
+ #: ../addons/banking/myCRED-addon-banking.php:231
432
  msgid "WP-Cron deactivation detected!"
433
  msgstr "WP-Cron är inte aktivt!"
434
 
435
+ #: ../addons/banking/myCRED-addon-banking.php:232
436
  msgid "Warning! This add-on requires WP - Cron to work."
437
  msgstr "Varning! Denna add-on behöver WP-Cron aktiverat!"
438
 
439
+ #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
440
+ #: addon-buy-creds.php:871 ../modules/mycred-module-hooks.php:196
441
  msgid "Enable"
442
  msgstr "On"
443
 
444
+ #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
445
  #: php:211
446
  msgid "Update Changes"
447
  msgstr "Spara"
448
 
449
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:79
 
 
 
 
450
  msgid "This Service has no settings"
451
  msgstr "Denna Tjänst har inga inställningar"
452
 
453
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:233
454
  msgid "Hourly"
455
  msgstr "Timvis"
456
 
457
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:237
458
  msgid "Daily"
459
  msgstr "Daglien"
460
 
461
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:241
462
  msgid "Weekly"
463
  msgstr "Veckovis"
464
 
465
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:245
466
  msgid "Monthly"
467
  msgstr "Månadsvis"
468
 
469
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:249
470
  msgid "Quarterly"
471
  msgstr "Kvartal"
472
 
473
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:253
474
  msgid "Semiannually"
475
  msgstr "Två gånger om året"
476
 
477
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:257
478
  msgid "Annually"
479
  msgstr "Årligen"
480
 
481
+ #: ../addons/banking/services/mycred-bank-service-central.php:105
482
+ msgid "Bank User"
483
+ msgstr ""
484
+
485
+ #: ../addons/banking/services/mycred-bank-service-central.php:109
486
+ msgid "The user ID of the central bank account. This user can not be excluded!"
487
+ msgstr ""
488
+
489
+ #: ../addons/banking/services/mycred-bank-service-central.php:112
490
+ msgid "Ignore Manual Adjustments"
491
+ msgstr ""
492
+
493
+ #: ../addons/banking/services/mycred-bank-service-interest.php:24
494
  msgid "%plural% interest rate payment"
495
  msgstr "Utbetalning av %plural% ränta"
496
 
497
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
498
+ msgid "Compounding Interest"
499
+ msgstr ""
500
+
501
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
502
+ #, php-format
503
+ msgid "%d Users are left to process."
504
+ msgstr ""
505
+
506
+ #: ../addons/banking/services/mycred-bank-service-interest.php:388
507
+ msgid "Payout History"
508
+ msgstr ""
509
+
510
+ #: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
511
+ #: addons/banking/services/mycred-bank-service-interest.php:409 ..
512
+ #: addons/banking/services/mycred-bank-service-payouts.php:249
513
+ msgid "Run Count"
514
+ msgstr ""
515
+
516
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
517
+ msgid "Last Payout"
518
+ msgstr ""
519
+
520
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
521
+ #: addons/banking/services/mycred-bank-service-interest.php:414
522
+ msgid "Activated"
523
+ msgstr ""
524
+
525
+ #: ../addons/banking/services/mycred-bank-service-interest.php:401
526
+ msgid "Total Payed Interest"
527
+ msgstr ""
528
+
529
+ #: ../addons/banking/services/mycred-bank-service-interest.php:405
530
+ msgid "Compound History"
531
+ msgstr ""
532
+
533
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
534
+ msgid "Last Interest Compound"
535
+ msgstr ""
536
+
537
+ #: ../addons/banking/services/mycred-bank-service-interest.php:418
538
+ msgid "Total Compounded Interest"
539
+ msgstr ""
540
+
541
+ #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
542
+ #: addons/banking/services/mycred-bank-service-interest.php:549
543
  msgid "Interest Rate"
544
  msgstr "Ränta"
545
 
546
+ #: ../addons/banking/services/mycred-bank-service-interest.php:425
547
+ msgid "Default Rate"
 
 
 
 
548
  msgstr ""
 
 
549
 
550
+ #: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
551
+ #: addons/banking/services/mycred-bank-service-payouts.php:267
552
+ msgid "Can not be zero."
553
+ msgstr "Kan inte vara noll."
554
 
555
+ #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
556
+ #: addons/gateway/carts/mycred-wpecommerce.php:364
557
+ msgid "Payout"
558
+ msgstr "Utbetalning"
559
 
560
+ #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
561
+ #: addons/banking/services/mycred-bank-service-payouts.php:282 ../addons/buy-
562
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
563
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
564
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
576
  msgid "Log Template"
577
  msgstr "Log Mall"
578
 
579
+ #: ../addons/banking/services/mycred-bank-service-interest.php:442 ..
580
+ #: addons/banking/services/mycred-bank-service-payouts.php:289 ..
581
+ #: addons/coupons/myCRED-addon-coupons.php:392
582
+ msgid "Minimum Balance"
583
+ msgstr "Minimum saldo"
584
 
585
+ #: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
586
+ #: addons/banking/services/mycred-bank-service-payouts.php:293
587
+ msgid "Optional minimum balance requirement."
588
+ msgstr ""
589
+
590
+ #: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
591
+ #: addons/banking/services/mycred-bank-service-payouts.php:296
592
+ msgid "Exclude"
593
+ msgstr ""
594
+
595
+ #: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
596
+ #: addons/banking/services/mycred-bank-service-payouts.php:299
597
+ msgid "Comma separated list of user IDs"
598
+ msgstr ""
599
+
600
+ #: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
601
+ #: addons/banking/services/mycred-bank-service-payouts.php:303
602
+ msgid "Roles"
603
+ msgstr ""
604
+
605
+ #: ../addons/banking/services/mycred-bank-service-interest.php:522
606
+ msgid "This user is excluded from receiving interest on this balance."
607
+ msgstr ""
608
+
609
+ #: ../addons/banking/services/mycred-bank-service-interest.php:525
610
+ msgid "Remove from Excluded List"
611
+ msgstr ""
612
+
613
+ #: ../addons/banking/services/mycred-bank-service-interest.php:537
614
+ msgid "This user role is excluded from receiving interest on this balance."
615
+ msgstr ""
616
+
617
+ #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
618
+ #: creds/myCRED-addon-buy-creds.php:759 ../addons/sell-content/myCRED-addon-sell-
619
+ #: content.php:113
620
+ msgid "Leave empty to use the default value."
621
+ msgstr ""
622
+
623
+ #: ../addons/banking/services/mycred-bank-service-interest.php:558
624
+ msgid "Save Interest Rate"
625
+ msgstr ""
626
+
627
+ #: ../addons/banking/services/mycred-bank-service-interest.php:559
628
+ msgid "Exclude from receiving interest"
629
+ msgstr ""
630
+
631
+ #: ../addons/banking/services/mycred-bank-service-interest.php:667
632
+ msgid "Compound interest rate saved."
633
+ msgstr ""
634
+
635
+ #: ../addons/banking/services/mycred-bank-service-interest.php:669
636
+ msgid "User excluded from receiving interest."
637
+ msgstr ""
638
+
639
+ #: ../addons/banking/services/mycred-bank-service-interest.php:671
640
+ msgid "User included in receiving interest."
641
  msgstr ""
 
 
 
642
 
643
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
644
  msgid "Daily %_plural%"
645
  msgstr "Daglig %_plural%"
646
 
647
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
648
+ #: includes/mycred-admin.php:404 ../modules/mycred-module-log.php:254 ..
649
+ #: modules/mycred-module-log.php:255
650
+ msgid "History"
651
+ msgstr ""
652
 
653
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:254
654
+ msgid "Last Run"
655
+ msgstr ""
656
+
657
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:258
658
+ msgid "Total Payouts"
659
+ msgstr ""
660
+
661
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:262
662
  msgid "Pay Users"
663
  msgstr "Betala Användare"
664
 
665
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
666
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
667
+ #: creds.php:1518 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595 ..
668
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
669
+ #: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
670
+ #: includes/mycred-shortcodes.php:910
671
  msgid "Amount"
672
  msgstr "Summa"
673
 
674
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
675
+ #: modules/mycred-module-hooks.php:2113
 
 
 
 
 
676
  msgid "Interval"
677
  msgstr "Tal"
678
 
679
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:275
 
680
  msgid "Cycles"
681
  msgstr "Omgångar"
682
 
683
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:277
684
  msgid "Set to -1 for unlimited"
685
  msgstr "Använd -1 för obegränsad"
686
 
687
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
688
  msgid "Important"
689
  msgstr "Viktigt"
690
 
691
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
692
  msgid ""
693
  "You can always stop payouts by deactivating this service. Just remember that "
694
  "if you deactivate while there are cycles left, this service will continue on "
698
  "om du avaktiverar tjänsten och den har inte kört klart, kommer tjänsten att "
699
  "fortsätta köra när du nästa gång aktiverar den,"
700
 
 
 
 
 
 
 
 
 
 
 
 
701
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
702
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
703
  msgid "Payment Gateways"
723
  msgstr ""
724
 
725
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
726
+ #: addon-buy-creds.php:1629
727
  msgid "No pending payments found"
728
  msgstr ""
729
 
732
  msgstr ""
733
 
734
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
735
+ #: addon-buy-creds.php:986 ../addons/buy-creds/myCRED-addon-buy-creds.php:1593
736
  msgid "Transaction ID"
737
  msgstr "Transaktions ID"
738
 
739
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
740
+ #: addon-buy-creds.php:982
741
  msgid "Buyer"
742
  msgstr ""
743
 
744
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
745
+ #: addon-buy-creds.php:1596 ../addons/buy-creds/abstracts/mycred-abstract-payment-
746
  #: gateway.php:563
747
  msgid "Cost"
748
  msgstr "Kostnad"
749
 
750
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
751
+ #: addon-buy-creds.php:981 ../addons/buy-creds/myCRED-addon-buy-creds.php:1594 ..
752
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
753
  msgid "Gateway"
754
  msgstr "Operatör"
766
  msgstr "buyCRED Köp Log"
767
 
768
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
769
+ #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:843
770
  msgid "Purchase Log"
771
  msgstr "Köp Log"
772
 
773
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
774
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
775
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
776
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:422
777
  msgid "Payments"
778
  msgstr "Köp"
779
 
850
  msgstr "Tillåt användare att köpra %_plural% åt post författare."
851
 
852
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
853
+ #: hooks.php:2770
854
  msgid "Available Shortcodes"
855
  msgstr ""
856
 
859
  msgid "%s Exchange Rate"
860
  msgstr ""
861
 
 
 
 
 
 
862
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
863
  msgid "Save Exchange Rates"
864
  msgstr ""
865
 
866
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:822
867
  msgid "Exchange rate override saved"
868
  msgstr ""
869
 
870
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:825
871
  msgid "Payment completed"
872
  msgstr ""
873
 
874
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843
875
  #, php-format
876
  msgid "%s Payment Gateways"
877
  msgstr "%s Betalnings Operatörer"
878
 
879
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
880
+ #: addon-buy-creds.php:990
881
  msgid "buyCRED Settings"
882
  msgstr "buyCRED Inställningar"
883
 
884
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:864
885
  msgid "Test Mode"
886
  msgstr "Test Mode"
887
 
888
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
889
  msgid "Enabled"
890
  msgstr "On"
891
 
892
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:869
893
  msgid "Disabled"
894
  msgstr "Off"
895
 
896
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
897
  msgid "Sandbox Mode"
898
  msgstr "Sandbox Mode"
899
 
900
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:882
901
  msgid "Enable for test purchases."
902
  msgstr "Aktivera för test köp."
903
 
904
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
905
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
906
  msgid "Update Settings"
907
  msgstr "Spara Ändringar"
908
 
909
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
910
  msgid "More Gateways"
911
  msgstr ""
912
 
913
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:983 ../includes/mycred-log.php:
914
  #: 634
915
  msgid "Date"
916
  msgstr "Datum"
917
 
918
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985
919
  msgid "Payed"
920
  msgstr "Betalt"
921
 
922
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990
923
  msgid "<strong>buy</strong>CRED Purchase Log"
924
  msgstr "<strong>buy</strong>CRED Köp Log"
925
 
926
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990 ../addons/gateway/event-
927
  #: booking/mycred-eventespresso3.php:367
928
  msgid "Gateway Settings"
929
  msgstr "Operatör Inställningar"
930
 
931
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166 ../addons/sell-
932
+ #: content/myCRED-addon-sell-content.php:1190
933
  msgid "No purchases found"
934
  msgstr "Inga Köp"
935
 
936
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1236 ../addons/buy-creds/myCRED-
937
+ #: addon-buy-creds.php:1349
938
  msgid "This Add-on needs to setup before you can use this shortcode."
939
  msgstr "Du måste sätta up denna add-on innan du kan använda denna shortcode."
940
 
941
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1255 ../addons/buy-creds/myCRED-
942
+ #: addon-buy-creds.php:1368
943
  msgid "No gateways installed."
944
  msgstr "Inga Operatörer är installerade."
945
 
946
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1256 ../addons/buy-creds/myCRED-
947
+ #: addon-buy-creds.php:1369
948
  msgid "Gateway does not exist."
949
  msgstr "Kunde inte finna operatör."
950
 
951
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1304
952
  msgid "Yourself"
953
  msgstr "Till dig själv"
954
 
955
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1370
956
  msgid "No active gateways found."
957
  msgstr "Kunde inte hitta några aktiverade operatörer."
958
 
959
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1371
960
  msgid "The selected gateway is not active."
961
  msgstr "Operatören du valde är inte aktiverad."
962
 
963
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1418
964
  #, php-format
965
  msgid "Buy with %gateway%"
966
  msgstr "Köp genom %gateway%"
967
 
968
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424 ../addons/sell-
969
  #: content/myCRED-addon-sell-content.php:44
970
  msgid "Buy Now"
971
  msgstr "Köp"
972
 
973
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1469
974
  msgid "No users found"
975
  msgstr "Kunde inte hitta någon"
976
 
977
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1479
978
  msgid "To"
979
  msgstr "Till"
980
 
981
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1496
982
  msgid "Select Amount"
983
  msgstr "Välj summa"
984
 
985
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1520
986
  msgid "min."
987
  msgstr "min."
988
 
989
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1528
990
  msgid "Select Gateway"
991
  msgstr "Välj Operatör"
992
 
993
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1569 ../addons/gateway/event-
994
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
995
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
996
  #: php:35
997
  msgid "Pay Now"
998
  msgstr "Betala"
999
 
1000
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1570 ../includes/mycred-install.
1001
  #: php:515
1002
  msgid "Cancel"
1003
  msgstr ""
1004
 
1005
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ../addons/ranks/myCRED-
1006
+ #: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
1007
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
1008
  msgid "Actions"
1009
  msgstr "Åtgärder"
1043
  msgstr "Cancellara köp"
1044
 
1045
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1046
+ #: includes/mycred-admin.php:702 ../includes/mycred-admin.php:739
1047
  msgid "required"
1048
  msgstr "obligatoriskt"
1049
 
1050
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1051
+ #: includes/mycred-admin.php:704 ../includes/mycred-admin.php:741
1052
  msgid "optional"
1053
  msgstr "valfritt"
1054
 
1439
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1440
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1441
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1442
+ #: modules/mycred-module-hooks.php:2735
1443
  msgid "Title"
1444
  msgstr "Titel"
1445
 
1681
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1682
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1683
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1684
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:410 ..
1685
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1686
  #: includes/importers/mycred-cubepoints.php:365
1687
  msgid "Point Type"
2076
  msgstr "Skicka till"
2077
 
2078
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2079
+ #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:748 ..
2080
+ #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
2081
  msgid "User"
2082
  msgstr "Användare"
2083
 
2203
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2204
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2205
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2206
+ #: php:412 ../includes/mycred-admin.php:596 ../includes/mycred-admin.php:749
2207
  msgid "Current Balance"
2208
  msgstr "Nuvarande Saldo"
2209
 
2322
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2323
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2324
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2325
+ #: php:578 ../includes/mycred-shortcodes.php:915
2326
  msgid "Exchange Rate"
2327
  msgstr "Växlings kurs"
2328
 
2551
  msgid "How much is 1 %s worth in %s"
2552
  msgstr "Hur mycket är 1 %s värd i %s"
2553
 
 
 
 
 
2554
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2555
  msgid "Instructions"
2556
  msgstr "Instruktioner"
2625
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2626
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2627
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2628
+ #: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
2629
+ #: sell-content.php:668
2630
  msgid "Button Label"
2631
  msgstr "Knapp Text"
2632
 
2639
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2640
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2641
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2642
+ #: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
2643
+ #: sell-content.php:664
2644
  msgid "Price"
2645
  msgstr "Pris"
2646
 
2662
  msgstr "Log"
2663
 
2664
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2665
+ #: includes/mycred-admin.php:717 ../includes/mycred-admin.php:754
2666
  msgid "Log Entry"
2667
  msgstr "Log Inlägg"
2668
 
2669
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2670
+ #: content/myCRED-addon-sell-content.php:472
2671
  msgid "Templates"
2672
  msgstr "Mallar"
2673
 
2745
  msgstr "Avvisa"
2746
 
2747
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2748
+ #: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:488 ..
2749
  #: modules/mycred-module-settings.php:507
2750
  msgid "Delete"
2751
  msgstr "Radera"
3190
  msgstr "Inga användare hittades med denna rank"
3191
 
3192
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3193
+ #: shortcodes.php:425 ../includes/mycred-shortcodes.php:428 ../includes/mycred-
3194
+ #: shortcodes.php:491 ../includes/mycred-shortcodes.php:549 ../includes/mycred-
3195
+ #: shortcodes.php:553 ../includes/mycred-shortcodes.php:557
3196
  msgid "error"
3197
  msgstr "error"
3198
 
3212
  msgid "Save Profit Share"
3213
  msgstr ""
3214
 
3215
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:164
3216
  msgid "Profit Share override saved"
3217
  msgstr ""
3218
 
3219
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:326
3220
  msgid "You can not buy this content."
3221
  msgstr "Du kan inte köpa detta innehåll"
3222
 
3223
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:371
3224
  msgid "Error. Try Again"
3225
  msgstr "Fel. Försök igen"
3226
 
3227
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3228
  msgid "No Payout. Just charge."
3229
  msgstr "Ingen vinstdelning. Bara ta betalt."
3230
 
3231
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3232
  msgid "Pay Content Author."
3233
  msgstr "Dela vinst med författaren."
3234
 
3235
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:400 ../includes/mycred-
3236
  #: overview.php:141 ../includes/mycred-overview.php:148
3237
  msgid "Sell Content"
3238
  msgstr "Sälj Innehåll"
3239
 
3240
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3241
  msgid "Post Types"
3242
  msgstr "Post Typer"
3243
 
3244
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3245
  msgid "Comma separated list of post types that can be sold."
3246
  msgstr "Kommaseparerade lista av post typer som kan köpas."
3247
 
3248
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:436
3249
  msgid "Percentage to pay Author"
3250
  msgstr "Procent att betala författaren"
3251
 
3252
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3253
  msgid ""
3254
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3255
  "authors are not paid."
3257
  "Ett procent tal att betala författaren. Kan inte vara noll och detta "
3258
  "ignorerar om vinstfördelning är inte aktiverad."
3259
 
3260
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:446
3261
  msgid "Defaults"
3262
  msgstr "Standard Inställningar"
3263
 
3264
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:454
3265
  msgid "Allow authors to change price."
3266
  msgstr "Tillåt författare att ändra priset."
3267
 
3268
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3269
  msgid "Allow authors to change button label."
3270
  msgstr "Tillåt användare att ändra knapp texten."
3271
 
3272
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:467
3273
  msgid "Purchases expire after"
3274
  msgstr "Köp löper ut efter"
3275
 
3276
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3277
  msgid "Use zero for permanent sales."
3278
  msgstr "Använd noll till permanenta försäljningar."
3279
 
3280
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:475
3281
  msgid "For Visitors"
3282
  msgstr ""
3283
 
3284
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:480
3285
  #, php-format
3286
  msgid ""
3287
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3288
  "be logged in to buy content!"
3289
  msgstr "Använd inte %buy_button% coden här!"
3290
 
3291
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:485
3292
  msgid "For Members"
3293
  msgstr ""
3294
 
3295
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:490 ../addons/sell-
3296
+ #: content/myCRED-addon-sell-content.php:500
3297
  #, php-format
3298
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3299
  msgstr "Du måste använda %buy_button% coden för att köp skall fungera!"
3300
 
3301
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:495
3302
  msgid "For members that can not afford to buy"
3303
  msgstr ""
3304
 
3305
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:504
3306
  msgid "Log template for Purchases"
3307
  msgstr "Log mall för köp"
3308
 
3309
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:511
3310
  msgid "Log template for Sales"
3311
  msgstr "Log mall för försäljning"
3312
 
3313
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:563
3314
  #, php-format
3315
  msgid "%s Sell This"
3316
  msgstr "%s Sälj Detta"
3317
 
3318
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:617
3319
  #, php-format
3320
  msgid "%s Sell Content needs to be setup before you can use this feature."
3321
  msgstr "%s Sälj Innehåll måste installeras innan du kan använda denna funktion!"
3322
 
3323
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3324
  msgid "Setup add-on"
3325
  msgstr "Installera add-on"
3326
 
3327
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3328
  msgid "Lets do it"
3329
  msgstr "Kör!"
3330
 
3331
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:658
3332
  #, php-format
3333
  msgid "Enable sale of this %s"
3334
  msgstr ""
3335
 
3336
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:672
3337
  msgid "Purchase expires after"
3338
  msgstr "Köp löper ut efter"
3339
 
3340
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:998
3341
  msgid "Thank you for your purchase!"
3342
  msgstr "Tack för ditt köp!"
3343
 
3344
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1086 ../addons/sell-
3345
+ #: content/myCRED-addon-sell-content.php:1172
3346
  msgid "The following content is set for sale:"
3347
  msgstr "Följande innehåll är till salu:"
3348
 
3349
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1232
3350
  msgid "Purchased"
3351
  msgstr "Köp historik"
3352
 
3359
  msgstr ""
3360
 
3361
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3362
+ #: php:2313
3363
  msgid "Transfer"
3364
  msgstr ""
3365
 
3394
  msgstr ""
3395
 
3396
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3397
+ #: php:1012
3398
  msgid "Insufficient Funds. Please try a lower amount."
3399
  msgstr ""
3400
 
3608
  msgid "Failed to update this uses balance."
3609
  msgstr ""
3610
 
3611
+ #: ../includes/mycred-admin.php:386
3612
  msgid "Excluded"
3613
  msgstr ""
3614
 
3615
+ #: ../includes/mycred-admin.php:396
3616
  #, php-format
3617
  msgid "Total: %s"
3618
  msgstr ""
3619
 
3620
+ #: ../includes/mycred-admin.php:405
 
 
 
 
 
3621
  msgid "Adjust"
3622
  msgstr ""
3623
 
3624
+ #: ../includes/mycred-admin.php:443 ../includes/mycred-admin.php:444
3625
  msgid "Edit Balance"
3626
  msgstr ""
3627
 
3628
+ #: ../includes/mycred-admin.php:462
3629
  msgid "Profile"
3630
  msgstr ""
3631
 
3632
+ #: ../includes/mycred-admin.php:469
3633
  msgid "Extended Profile"
3634
  msgstr ""
3635
 
3636
+ #: ../includes/mycred-admin.php:559
3637
  #, php-format
3638
  msgid "This user is excluded from using %s"
3639
  msgstr ""
3640
 
3641
+ #: ../includes/mycred-admin.php:582
3642
  msgid "Edit User"
3643
  msgstr ""
3644
 
3645
+ #: ../includes/mycred-admin.php:584
3646
  msgctxt "user"
3647
  msgid "Add New"
3648
  msgstr ""
3649
 
3650
+ #: ../includes/mycred-admin.php:586
3651
  msgctxt "user"
3652
  msgid "Add Existing"
3653
  msgstr ""
3654
 
3655
+ #: ../includes/mycred-admin.php:597
3656
  #, php-format
3657
  msgid "Total %s Accumulated"
3658
  msgstr ""
3659
 
3660
+ #: ../includes/mycred-admin.php:598
3661
  #, php-format
3662
  msgid "Total %s Spent"
3663
  msgstr ""
3664
 
3665
+ #: ../includes/mycred-admin.php:609
3666
  msgid "View History"
3667
  msgstr ""
3668
 
3669
+ #: ../includes/mycred-admin.php:610
3670
  msgid "Exclude User"
3671
  msgstr ""
3672
 
3673
+ #: ../includes/mycred-admin.php:614
3674
  msgid "Adjust Balance"
3675
  msgstr ""
3676
 
3677
+ #: ../includes/mycred-admin.php:623
3678
  msgid ""
3679
  "Warning! Excluding this user will result in their balance being deleted "
3680
  "along with any entries currently in your log! This can not be undone!"
3681
  msgstr ""
3682
 
3683
+ #: ../includes/mycred-admin.php:681
3684
  #, php-format
3685
  msgid "%singular% balance"
3686
  msgstr ""
3687
 
3688
+ #: ../includes/mycred-admin.php:721 ../includes/mycred-admin.php:755
3689
  msgid "Update Balance"
3690
  msgstr ""
3691
 
3692
+ #: ../includes/mycred-admin.php:747
3693
  msgid "ID"
3694
  msgstr ""
3695
 
3696
+ #: ../includes/mycred-admin.php:753
3697
  msgid "A positive or negative value"
3698
  msgstr ""
3699
 
3745
  msgid "Available Template Tags:"
3746
  msgstr ""
3747
 
3748
+ #: ../includes/mycred-functions.php:1673
3749
  msgid "Entire Log"
3750
  msgstr ""
3751
 
3752
+ #: ../includes/mycred-functions.php:1678 ../includes/mycred-functions.php:1679
3753
  msgid "Displayed Rows"
3754
  msgstr ""
3755
 
3756
+ #: ../includes/mycred-functions.php:1686
3757
  msgid "Search Results"
3758
  msgstr ""
3759
 
3760
+ #: ../includes/mycred-functions.php:1687
3761
  msgid "My Entire Log"
3762
  msgstr ""
3763
 
3764
+ #: ../includes/mycred-functions.php:1808
3765
  msgid "ref empty"
3766
  msgstr ""
3767
 
3768
+ #: ../includes/mycred-functions.php:1816
3769
  msgid "incorrect user id format"
3770
  msgstr ""
3771
 
3772
+ #: ../includes/mycred-functions.php:1829
3773
  msgid "incorrect unix timestamp (from):"
3774
  msgstr ""
3775
 
3776
+ #: ../includes/mycred-functions.php:1838
3777
  msgid "incorrect unix timestamp (to):"
3778
  msgstr ""
3779
 
3780
+ #: ../includes/mycred-functions.php:2200
3781
  msgid "Website Registration"
3782
  msgstr ""
3783
 
3784
+ #: ../includes/mycred-functions.php:2201
3785
  msgid "Website Visit"
3786
  msgstr ""
3787
 
3788
+ #: ../includes/mycred-functions.php:2202
3789
  msgid "Viewing Content (Member)"
3790
  msgstr ""
3791
 
3792
+ #: ../includes/mycred-functions.php:2203
3793
  msgid "Viewing Content (Author)"
3794
  msgstr ""
3795
 
3796
+ #: ../includes/mycred-functions.php:2204
3797
  msgid "Logging in"
3798
  msgstr ""
3799
 
3800
+ #: ../includes/mycred-functions.php:2205
3801
  msgid "Publishing Content"
3802
  msgstr ""
3803
 
3804
+ #: ../includes/mycred-functions.php:2206 ../modules/mycred-module-hooks.php:1421
3805
  msgid "Approved Comment"
3806
  msgstr ""
3807
 
3808
+ #: ../includes/mycred-functions.php:2207
3809
  msgid "Unapproved Comment"
3810
  msgstr ""
3811
 
3812
+ #: ../includes/mycred-functions.php:2208
3813
  msgid "SPAM Comment"
3814
  msgstr ""
3815
 
3816
+ #: ../includes/mycred-functions.php:2209
3817
  msgid "Deleted Comment"
3818
  msgstr ""
3819
 
3820
+ #: ../includes/mycred-functions.php:2210
3821
  msgid "Link Click"
3822
  msgstr ""
3823
 
3824
+ #: ../includes/mycred-functions.php:2211
3825
  msgid "Watching Video"
3826
  msgstr ""
3827
 
3828
+ #: ../includes/mycred-functions.php:2212
3829
  msgid "Visitor Referral"
3830
  msgstr ""
3831
 
3832
+ #: ../includes/mycred-functions.php:2213
3833
  msgid "Signup Referral"
3834
  msgstr ""
3835
 
3836
+ #: ../includes/mycred-functions.php:2217
3837
  msgid "New Profile Update"
3838
  msgstr ""
3839
 
3840
+ #: ../includes/mycred-functions.php:2218
3841
  msgid "Avatar Upload"
3842
  msgstr ""
3843
 
3844
+ #: ../includes/mycred-functions.php:2219
3845
  msgid "New Friendship"
3846
  msgstr ""
3847
 
3848
+ #: ../includes/mycred-functions.php:2220
3849
  msgid "Ended Friendship"
3850
  msgstr ""
3851
 
3852
+ #: ../includes/mycred-functions.php:2221
3853
  msgid "New Profile Comment"
3854
  msgstr ""
3855
 
3856
+ #: ../includes/mycred-functions.php:2222
3857
  msgid "Profile Comment Deletion"
3858
  msgstr ""
3859
 
3860
+ #: ../includes/mycred-functions.php:2223
3861
  msgid "New Message"
3862
  msgstr ""
3863
 
3864
+ #: ../includes/mycred-functions.php:2224
3865
  msgid "Sending Gift"
3866
  msgstr ""
3867
 
3868
+ #: ../includes/mycred-functions.php:2225
3869
  msgid "New Group"
3870
  msgstr ""
3871
 
3872
+ #: ../includes/mycred-functions.php:2226
3873
  msgid "Deleted Group"
3874
  msgstr ""
3875
 
3876
+ #: ../includes/mycred-functions.php:2227
3877
  msgid "New Group Forum Topic"
3878
  msgstr ""
3879
 
3880
+ #: ../includes/mycred-functions.php:2228
3881
  msgid "Edit Group Forum Topic"
3882
  msgstr ""
3883
 
3884
+ #: ../includes/mycred-functions.php:2229
3885
  msgid "New Group Forum Post"
3886
  msgstr ""
3887
 
3888
+ #: ../includes/mycred-functions.php:2230
3889
  msgid "Edit Group Forum Post"
3890
  msgstr ""
3891
 
3892
+ #: ../includes/mycred-functions.php:2231
3893
  msgid "Joining Group"
3894
  msgstr ""
3895
 
3896
+ #: ../includes/mycred-functions.php:2232
3897
  msgid "Leaving Group"
3898
  msgstr ""
3899
 
3900
+ #: ../includes/mycred-functions.php:2233
3901
  msgid "New Group Avatar"
3902
  msgstr ""
3903
 
3904
+ #: ../includes/mycred-functions.php:2234
3905
  msgid "New Group Comment"
3906
  msgstr ""
3907
 
3908
+ #: ../includes/mycred-functions.php:2238 ../plugins/mycred-hook-buddypress-media.
3909
  #: php:166
3910
  msgid "Photo Upload"
3911
  msgstr ""
3912
 
3913
+ #: ../includes/mycred-functions.php:2239 ../plugins/mycred-hook-buddypress-media.
3914
  #: php:176
3915
  msgid "Video Upload"
3916
  msgstr ""
3917
 
3918
+ #: ../includes/mycred-functions.php:2240 ../plugins/mycred-hook-buddypress-media.
3919
  #: php:186
3920
  msgid "Music Upload"
3921
  msgstr ""
3922
 
3923
+ #: ../includes/mycred-functions.php:2244
3924
  msgid "New Link"
3925
  msgstr ""
3926
 
3927
+ #: ../includes/mycred-functions.php:2245
3928
  msgid "Link Voting"
3929
  msgstr ""
3930
 
3931
+ #: ../includes/mycred-functions.php:2246
3932
  msgid "Link Update"
3933
  msgstr ""
3934
 
3935
+ #: ../includes/mycred-functions.php:2250
3936
  msgid "New Forum (bbPress)"
3937
  msgstr ""
3938
 
3939
+ #: ../includes/mycred-functions.php:2251
3940
  msgid "New Forum Topic (bbPress)"
3941
  msgstr ""
3942
 
3943
+ #: ../includes/mycred-functions.php:2252
3944
  msgid "Favorited Topic (bbPress)"
3945
  msgstr ""
3946
 
3947
+ #: ../includes/mycred-functions.php:2253
3948
  msgid "New Topic Reply (bbPress)"
3949
  msgstr ""
3950
 
3951
+ #: ../includes/mycred-functions.php:2257
3952
  msgid "Form Submission (Contact Form 7)"
3953
  msgstr ""
3954
 
3955
+ #: ../includes/mycred-functions.php:2260
3956
  msgid "Form Submission (Gravity Form)"
3957
  msgstr ""
3958
 
3959
+ #: ../includes/mycred-functions.php:2263
3960
  msgid "New Forum Topic (SimplePress)"
3961
  msgstr ""
3962
 
3963
+ #: ../includes/mycred-functions.php:2264
3964
  msgid "New Forum Post (SimplePress)"
3965
  msgstr ""
3966
 
3967
+ #: ../includes/mycred-functions.php:2268
3968
  msgid "Poll Voting"
3969
  msgstr ""
3970
 
3971
+ #: ../includes/mycred-functions.php:2271
3972
  msgid "Sending an Invite"
3973
  msgstr ""
3974
 
3975
+ #: ../includes/mycred-functions.php:2272
3976
  msgid "Accepting an Invite"
3977
  msgstr ""
3978
 
3979
+ #: ../includes/mycred-functions.php:2278
3980
  msgid "Banking Payout"
3981
  msgstr ""
3982
 
3983
+ #: ../includes/mycred-functions.php:2281
3984
  msgid "buyCRED Purchase (PayPal Standard)"
3985
  msgstr ""
3986
 
3987
+ #: ../includes/mycred-functions.php:2282
3988
  msgid "buyCRED Purchase (Skrill)"
3989
  msgstr ""
3990
 
3991
+ #: ../includes/mycred-functions.php:2283
3992
  msgid "buyCRED Purchase (Zombaio)"
3993
  msgstr ""
3994
 
3995
+ #: ../includes/mycred-functions.php:2284
3996
  msgid "buyCRED Purchase (NETBilling)"
3997
  msgstr ""
3998
 
3999
+ #: ../includes/mycred-functions.php:2285
4000
  msgid "buyCRED Purchase (BitPay)"
4001
  msgstr ""
4002
 
4003
+ #: ../includes/mycred-functions.php:2290
4004
  msgid "Coupon Purchase"
4005
  msgstr ""
4006
 
4007
+ #: ../includes/mycred-functions.php:2293
4008
  msgid "Store Purchase (WooCommerce)"
4009
  msgstr ""
4010
 
4011
+ #: ../includes/mycred-functions.php:2294
4012
  msgid "Store Purchase (MarketPress)"
4013
  msgstr ""
4014
 
4015
+ #: ../includes/mycred-functions.php:2295
4016
  msgid "Store Purchase (WP E-Commerce)"
4017
  msgstr ""
4018
 
4019
+ #: ../includes/mycred-functions.php:2300
4020
  msgid "Event Payment (Event Espresso)"
4021
  msgstr ""
4022
 
4023
+ #: ../includes/mycred-functions.php:2301
4024
  msgid "Event Sale (Event Espresso)"
4025
  msgstr ""
4026
 
4027
+ #: ../includes/mycred-functions.php:2305
4028
  msgid "Event Payment (Events Manager)"
4029
  msgstr ""
4030
 
4031
+ #: ../includes/mycred-functions.php:2306
4032
  msgid "Event Sale (Events Manager)"
4033
  msgstr ""
4034
 
4035
+ #: ../includes/mycred-functions.php:2310
4036
  msgid "Content Purchase / Sale"
4037
  msgstr ""
4038
 
4039
+ #: ../includes/mycred-functions.php:2317
4040
  msgid "Manual Adjustment by Admin"
4041
  msgstr ""
4042
 
4200
  "disable."
4201
  msgstr ""
4202
 
4203
+ #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
4204
+ msgid "Excludes"
4205
+ msgstr "Exkludera "
4206
+
4207
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4208
  msgid "Exclude those who can \"Edit Settings\"."
4209
  msgstr ""
4309
  msgid "Entry"
4310
  msgstr ""
4311
 
4312
+ #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:468
4313
  msgid "User Missing"
4314
  msgstr "Användare saknas"
4315
 
4489
  "about your setup!"
4490
  msgstr ""
4491
 
4492
+ #: ../includes/mycred-shortcodes.php:154
4493
  msgid "Leaderboard is empty."
4494
  msgstr ""
4495
 
4496
+ #: ../includes/mycred-shortcodes.php:425 ../includes/mycred-shortcodes.php:549
4497
  msgid "Amount missing!"
4498
  msgstr ""
4499
 
4500
+ #: ../includes/mycred-shortcodes.php:428 ../includes/mycred-shortcodes.php:557
4501
  msgid "Log Template Missing!"
4502
  msgstr ""
4503
 
4504
+ #: ../includes/mycred-shortcodes.php:491
4505
  msgid "Anchor missing URL!"
4506
  msgstr ""
4507
 
4508
+ #: ../includes/mycred-shortcodes.php:553
4509
  msgid "User ID missing for recipient."
4510
  msgstr ""
4511
 
4512
+ #: ../includes/mycred-shortcodes.php:608
4513
  msgid "Sent"
4514
  msgstr ""
4515
 
4516
+ #: ../includes/mycred-shortcodes.php:609
4517
  msgid "Error - Try Again"
4518
  msgstr ""
4519
 
4520
+ #: ../includes/mycred-shortcodes.php:718
4521
  msgid "A video ID is required for this shortcode"
4522
  msgstr ""
4523
 
4524
+ #: ../includes/mycred-shortcodes.php:864 ../includes/mycred-shortcodes.php:958
4525
  msgid "Point types not found."
4526
  msgstr ""
4527
 
4528
+ #: ../includes/mycred-shortcodes.php:870 ../includes/mycred-shortcodes.php:878 ..
4529
+ #: includes/mycred-shortcodes.php:970 ../includes/mycred-shortcodes.php:990
4530
  #, php-format
4531
  msgid "You are excluded from using %s."
4532
  msgstr ""
4533
 
4534
+ #: ../includes/mycred-shortcodes.php:874 ../includes/mycred-shortcodes.php:980
4535
  msgid "Your balance is too low to use this feature."
4536
  msgstr ""
4537
 
4538
+ #: ../includes/mycred-shortcodes.php:895
4539
  #, php-format
4540
  msgid "Convert <span>%s</span> to <span>%s</span>"
4541
  msgstr ""
4542
 
4543
+ #: ../includes/mycred-shortcodes.php:904
4544
  #, php-format
4545
  msgid "Your current %s balance"
4546
  msgstr ""
4547
 
4548
+ #: ../includes/mycred-shortcodes.php:912
4549
  #, php-format
4550
  msgid "Minimum %s"
4551
  msgstr ""
4552
 
4553
+ #: ../includes/mycred-shortcodes.php:916
4554
  #, php-format
4555
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4556
  msgstr ""
4557
 
4558
+ #: ../includes/mycred-shortcodes.php:922
4559
  msgid "Exchange"
4560
  msgstr ""
4561
 
4562
+ #: ../includes/mycred-shortcodes.php:1003
4563
  #, php-format
4564
  msgid "You must exchange at least %s!"
4565
  msgstr ""
4566
 
4567
+ #: ../includes/mycred-shortcodes.php:1025
4568
  #, php-format
4569
  msgid "Exchange from %s"
4570
  msgstr ""
4571
 
4572
+ #: ../includes/mycred-shortcodes.php:1037
4573
  #, php-format
4574
  msgid "Exchange to %s"
4575
  msgstr ""
4576
 
4577
+ #: ../includes/mycred-shortcodes.php:1045
4578
  #, php-format
4579
  msgid "You have successfully exchanged %s into %s."
4580
  msgstr ""
4871
  msgid "Give your users badges based on their interaction with your website."
4872
  msgstr ""
4873
 
4874
+ #: ../modules/mycred-module-addons.php:158
4875
+ msgid "Setup recurring payouts or offer / charge interest on user account balances."
4876
+ msgstr ""
4877
+
4878
  #: ../modules/mycred-module-addons.php:169
4879
  msgid ""
4880
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5175
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5176
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5177
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5178
+ #: 2645 ../modules/mycred-module-hooks.php:2674 ../plugins/mycred-hook-badgeOS.
5179
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5180
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5181
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
5237
  msgid "%plural% for viewing %s"
5238
  msgstr ""
5239
 
5240
+ #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2653
5241
+ #: ../modules/mycred-module-hooks.php:2682 ../plugins/mycred-hook-invite-anyone.
5242
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5243
  msgid "Limit"
5244
  msgstr ""
5320
  msgid "Custom tags: %url%, %title% or %id%."
5321
  msgstr ""
5322
 
5323
+ #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2756
5324
  msgid "Note!"
5325
  msgstr ""
5326
 
5394
  msgid "Link"
5395
  msgstr ""
5396
 
5397
+ #: ../modules/mycred-module-hooks.php:2639
5398
  msgid "Referring Visitors"
5399
  msgstr ""
5400
 
5401
+ #: ../modules/mycred-module-hooks.php:2663 ../modules/mycred-module-hooks.php:2692
5402
  msgid "The number of referrals each member can make. Use zero for unlimited."
5403
  msgstr ""
5404
 
5405
+ #: ../modules/mycred-module-hooks.php:2667 ../modules/mycred-module-hooks.php:2696
5406
  msgid "Referring Signups"
5407
  msgstr ""
5408
 
5409
+ #: ../modules/mycred-module-hooks.php:2671
5410
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5411
  msgstr ""
5412
 
5413
+ #: ../modules/mycred-module-hooks.php:2698
5414
  msgid "Registrations are disabled."
5415
  msgstr ""
5416
 
5417
+ #: ../modules/mycred-module-hooks.php:2705
5418
  msgid "Referral Links"
5419
  msgstr ""
5420
 
5421
+ #: ../modules/mycred-module-hooks.php:2709
5422
  msgid "Assign numeric referral IDs to each user."
5423
  msgstr ""
5424
 
5425
+ #: ../modules/mycred-module-hooks.php:2710 ../modules/mycred-module-hooks.php:2716
5426
  msgid "Example"
5427
  msgstr ""
5428
 
5429
+ #: ../modules/mycred-module-hooks.php:2715
5430
  msgid "Assign usernames as IDs for each user."
5431
  msgstr ""
5432
 
5433
+ #: ../modules/mycred-module-hooks.php:2719
5434
  msgid "IP Limit"
5435
  msgstr ""
5436
 
5437
+ #: ../modules/mycred-module-hooks.php:2723
5438
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5439
  msgstr ""
5440
 
5441
+ #: ../modules/mycred-module-hooks.php:2727 ../modules/mycred-module-hooks.php:2760
5442
  msgid "BuddyPress Profile"
5443
  msgstr ""
5444
 
5445
+ #: ../modules/mycred-module-hooks.php:2730
5446
  msgid "Insert Link in users Profile"
5447
  msgstr ""
5448
 
5449
+ #: ../modules/mycred-module-hooks.php:2731
5450
  msgid ""
5451
  "Option to inser the referral link in users profiles. Links will only be "
5452
  "visible to users viewing their own profiles or administrators."
5453
  msgstr ""
5454
 
5455
+ #: ../modules/mycred-module-hooks.php:2737
5456
  msgid "Leave empty to hide."
5457
  msgstr ""
5458
 
5459
+ #: ../modules/mycred-module-hooks.php:2740
5460
  msgid "Description"
5461
  msgstr ""
5462
 
5463
+ #: ../modules/mycred-module-hooks.php:2741
5464
  msgid "Optional description to insert under the link."
5465
  msgstr ""
5466
 
5467
+ #: ../modules/mycred-module-hooks.php:2753
5468
  msgid "Profile Positioning"
5469
  msgstr ""
5470
 
5471
+ #: ../modules/mycred-module-hooks.php:2755
5472
  msgid ""
5473
  "You can move around the referral link on your users profile by changing the "
5474
  "position. Increase to move up, decrease to move down."
5475
  msgstr ""
5476
 
5477
+ #: ../modules/mycred-module-hooks.php:2756
5478
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5479
  msgstr ""
5480
 
5481
+ #: ../modules/mycred-module-hooks.php:2762
5482
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5483
  msgstr ""
5484
 
5503
  msgid "Entries"
5504
  msgstr ""
5505
 
5506
+ #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
5507
+ #: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:574
5508
  msgid "Export"
5509
  msgstr ""
5510
 
5512
  msgid "Search results for"
5513
  msgstr ""
5514
 
5515
+ #: ../modules/mycred-module-log.php:378
5516
  #, php-format
5517
  msgid "%s Log"
5518
  msgstr ""
5519
 
5520
+ #: ../modules/mycred-module-log.php:506
5521
  msgid "Edit"
5522
  msgstr ""
5523
 
5524
+ #: ../modules/mycred-module-log.php:547
5525
  msgid "Time"
5526
  msgstr "Tid"
5527
 
5528
+ #: ../modules/mycred-module-log.php:551
5529
  msgid "Current Log Entry"
5530
  msgstr ""
5531
 
5532
+ #: ../modules/mycred-module-log.php:553
5533
  msgid "The current saved log entry"
5534
  msgstr ""
5535
 
5536
+ #: ../modules/mycred-module-log.php:556
5537
  msgid "Adjust Log Entry"
5538
  msgstr ""
5539
 
5540
+ #: ../modules/mycred-module-log.php:558
5541
  msgid "The new log entry"
5542
  msgstr ""
5543
 
5544
+ #: ../modules/mycred-module-log.php:561
5545
  msgid "Update Log Entry"
5546
  msgstr ""
5547
 
5548
+ #: ../modules/mycred-module-log.php:628
5549
  #, php-format
5550
  msgid "My %s History"
5551
  msgstr ""
6230
  #, php-format
6231
  msgid "Awards %_plural% for users voting in polls."
6232
  msgstr ""
 
 
 
 
lang/mycred-zh_CN.mo CHANGED
Binary file
lang/mycred-zh_CN.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Mon Jul 28 2014 16:22:30 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Chinese\n"
@@ -15,7 +15,7 @@ msgstr ""
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
  "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
  "X-Poedit-Basepath: .\n"
@@ -42,8 +42,8 @@ msgstr "真棒的人"
42
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
43
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
44
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
45
- #: sell-content.php:364 ../addons/transfer/myCRED-addon-transfer.php:132 ..
46
- #: includes/mycred-shortcodes.php:605
47
  msgid "Processing..."
48
  msgstr "处理中..."
49
 
@@ -139,7 +139,7 @@ msgid "Once per day (reset at midnight)"
139
  msgstr "每天一次(在午夜重置)"
140
 
141
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
142
- #: abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
143
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
144
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
145
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
@@ -165,8 +165,8 @@ msgstr "点击关闭"
165
  msgid "click to open"
166
  msgstr "点击打开"
167
 
168
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-
169
- #: banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:849
170
  msgid "Settings Updated"
171
  msgstr "设置已更新"
172
 
@@ -371,137 +371,190 @@ msgstr ""
371
  msgid "in total"
372
  msgstr ""
373
 
374
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-
375
- #: banking.php:43 ../addons/banking/myCRED-addon-banking.php:44
376
  msgid "Banking"
377
  msgstr "银行"
378
 
379
- #: ../addons/banking/myCRED-addon-banking.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
380
  msgid "Compound Interest"
381
  msgstr "利息"
382
 
383
- #: ../addons/banking/myCRED-addon-banking.php:104
384
  #, php-format
385
- msgid ""
386
- "Apply an interest rate on your users %_plural% balances. Interest rate is "
387
- "annual and is compounded daily as long as this service is enabled. Positive "
388
- "interest rate leads to users gaining %_plural% while a negative interest "
389
- "rate will to users loosing %_plural%."
390
  msgstr ""
391
- "应用一个利率给用户的 %_plural% 余额。利率是从启用这项服务开始每年和每天计算的。正利率可让用户获得 %_plural%,而负利率则让用户失去 "
392
- "%_plural%。"
393
 
394
- #: ../addons/banking/myCRED-addon-banking.php:110
395
  msgid "Recurring Payouts"
396
  msgstr "定期支付"
397
 
398
- #: ../addons/banking/myCRED-addon-banking.php:111
399
- #, php-format
400
- msgid ""
401
- "Give your users %_plural% on a regular basis with the option to set the "
402
- "number of times you want this payout to run (cycles)."
403
- msgstr "你可以定期给用户奖励 %_plural%,在这里设置你希望奖励的周期次数。"
404
 
405
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-
406
- #: addon-buy-creds.php:839 ../addons/buy-creds/myCRED-addon-buy-creds.php:935 ..
407
- #: includes/mycred-admin.php:573 ../includes/mycred-network.php:148 ..
408
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
409
- #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:579 ..
410
  #: modules/mycred-module-settings.php:312
411
  msgid "Access Denied"
412
  msgstr "拒绝访问"
413
 
414
- #: ../addons/banking/myCRED-addon-banking.php:167
415
  #, php-format
416
  msgid "%s Banking"
417
  msgstr "%s 银行"
418
 
419
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.
420
- #: php:158
421
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
422
- msgstr "设置经常性支出或支付/收取用户帐户余额的利息。"
423
 
424
- #: ../addons/banking/myCRED-addon-banking.php:171
425
  msgid "WP-Cron deactivation detected!"
426
  msgstr "WP-Cron 检测到已禁用!"
427
 
428
- #: ../addons/banking/myCRED-addon-banking.php:172
429
  msgid "Warning! This add-on requires WP - Cron to work."
430
  msgstr "警告!此扩展需要 WP-Cron 来工作。"
431
 
432
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-
433
- #: addon-buy-creds.php:873 ../modules/mycred-module-hooks.php:196
434
  msgid "Enable"
435
  msgstr "启用"
436
 
437
- #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
438
  #: php:211
439
  msgid "Update Changes"
440
  msgstr "更新设置"
441
 
442
- #: ../addons/banking/abstracts/mycred-abstract-service.php:57
443
- msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
444
- msgstr "函数 myCRED_Service::run() 必须在一个子类来重写。"
445
-
446
- #: ../addons/banking/abstracts/mycred-abstract-service.php:66
447
  msgid "This Service has no settings"
448
  msgstr "这个服务没有设置"
449
 
450
- #: ../addons/banking/abstracts/mycred-abstract-service.php:143
451
  msgid "Hourly"
452
  msgstr "每小时"
453
 
454
- #: ../addons/banking/abstracts/mycred-abstract-service.php:147
455
  msgid "Daily"
456
  msgstr "每天"
457
 
458
- #: ../addons/banking/abstracts/mycred-abstract-service.php:151
459
  msgid "Weekly"
460
  msgstr "每周"
461
 
462
- #: ../addons/banking/abstracts/mycred-abstract-service.php:155
463
  msgid "Monthly"
464
  msgstr "每月"
465
 
466
- #: ../addons/banking/abstracts/mycred-abstract-service.php:159
467
  msgid "Quarterly"
468
  msgstr "每季"
469
 
470
- #: ../addons/banking/abstracts/mycred-abstract-service.php:163
471
  msgid "Semiannually"
472
  msgstr "每半年"
473
 
474
- #: ../addons/banking/abstracts/mycred-abstract-service.php:167
475
  msgid "Annually"
476
  msgstr "每年"
477
 
478
- #: ../addons/banking/services/mycred-bank-service-interest.php:25
 
 
 
 
 
 
 
 
 
 
 
 
479
  msgid "%plural% interest rate payment"
480
  msgstr "%plural% 利率支付"
481
 
482
- #: ../addons/banking/services/mycred-bank-service-interest.php:275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
483
  msgid "Interest Rate"
484
  msgstr "利率"
485
 
486
- #: ../addons/banking/services/mycred-bank-service-interest.php:282
487
- msgid "Payed / Charged"
488
- msgstr "支付/收取"
489
-
490
- #: ../addons/banking/services/mycred-bank-service-interest.php:288
491
- msgid "The interest rate can be either positive or negative and is compounded daily."
492
- msgstr "利率可以是正或负,每日复利。"
493
 
494
- #: ../addons/banking/services/mycred-bank-service-interest.php:291 ..
495
- #: addons/coupons/myCRED-addon-coupons.php:392
496
- msgid "Minimum Balance"
497
- msgstr "最少余额"
498
 
499
- #: ../addons/banking/services/mycred-bank-service-interest.php:295
500
- msgid "The minimum requires balance for interest to apply."
501
- msgstr "申请获取利息的最少余额。"
 
502
 
503
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ..
504
- #: addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-
505
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
506
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
507
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
@@ -519,102 +572,125 @@ msgstr "申请获取利息的最少余额。"
519
  msgid "Log Template"
520
  msgstr "日志模板"
521
 
522
- #: ../addons/banking/services/mycred-bank-service-interest.php:305 ..
523
- #: addons/banking/services/mycred-bank-service-payouts.php:259
524
- msgid "Run Time"
525
- msgstr "运行时间"
 
526
 
527
- #: ../addons/banking/services/mycred-bank-service-interest.php:309 ..
528
- #: addons/banking/services/mycred-bank-service-payouts.php:263
529
- msgid ""
530
- "For large websites, if you are running into time out issues during payouts, "
531
- "you can set the number of seconds a process can run. Use zero for unlimited, "
532
- "but be careful especially if you are on a shared server."
533
- msgstr "对于大型网站,如果你在支出时遇到超时问题,你可以设置一个进程可以运行的秒数。使用零为无限的,但要小心,尤其是如果你是一个共享的服务器上。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
534
 
535
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
536
  msgid "Daily %_plural%"
537
  msgstr "每日 %_plural%"
538
 
539
- #: ../addons/banking/services/mycred-bank-service-payouts.php:214
540
- msgid "Not yet run"
541
- msgstr "尚未执行"
 
 
 
 
 
 
542
 
543
- #: ../addons/banking/services/mycred-bank-service-payouts.php:219
 
 
 
 
544
  msgid "Pay Users"
545
  msgstr "用户支付"
546
 
547
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
548
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
549
- #: creds.php:1520 ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ..
550
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
551
- #: includes/mycred-admin.php:726 ../includes/mycred-admin.php:771 ..
552
- #: includes/mycred-shortcodes.php:908
553
  msgid "Amount"
554
  msgstr "数量"
555
 
556
- #: ../addons/banking/services/mycred-bank-service-payouts.php:224
557
- msgid "Can not be zero."
558
- msgstr "不能为零。"
559
-
560
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ..
561
- #: addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-
562
- #: module-hooks.php:2113
563
  msgid "Interval"
564
  msgstr "间隔"
565
 
566
- #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ..
567
- #: addons/banking/services/mycred-bank-service-payouts.php:242
568
  msgid "Cycles"
569
  msgstr "周期"
570
 
571
- #: ../addons/banking/services/mycred-bank-service-payouts.php:235
572
  msgid "Set to -1 for unlimited"
573
  msgstr "设置为-1为无限"
574
 
575
- #: ../addons/banking/services/mycred-bank-service-payouts.php:238
576
- msgid "Last Run / Activated"
577
- msgstr "最后运行/激活"
578
-
579
- #: ../addons/banking/services/mycred-bank-service-payouts.php:241
580
- msgid ""
581
- "Select how often you want to award %_plural%. Note that when this service is "
582
- "enabled, the first payout will be in the beginning of the next period. So "
583
- "with a \"Daily\" interval, the first payout will occur first thing in the "
584
- "morning."
585
- msgstr ""
586
- "选择您要奖励 %_plural% "
587
- "的频率。请注意,当启用此服务,第一次支出将是今后一个周期的开始。所以用一个\"每日\"间隔,第一次支出将是早晨发生的第一件事情。"
588
-
589
- #: ../addons/banking/services/mycred-bank-service-payouts.php:242
590
- msgid ""
591
- "Cycles let you choose how many intervals this service should run. Each time "
592
- "a cycle runs, the value will decrease until it hits zero, in which case this "
593
- "service will deactivate itself. Use -1 to run unlimited times."
594
- msgstr "周期让你选择多长时间间隔来运行这个服务。每一个周期运行的时间,该值将下降,直到它降为零,在这种情况下,该服务将停用。使用-1来执行无限次。"
595
-
596
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
597
  msgid "Important"
598
  msgstr "重要"
599
 
600
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
601
  msgid ""
602
  "You can always stop payouts by deactivating this service. Just remember that "
603
  "if you deactivate while there are cycles left, this service will continue on "
604
  "when it gets re-activated. Set cycles to zero to reset."
605
  msgstr "您可以随时禁用此服务来停止支出。但要记住,取消后,如果该服务还在循环周期内,它将继续,直到它被重新激活。设置周期为零来重置。"
606
 
607
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
608
- #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
609
- msgid "Excludes"
610
- msgstr "排除"
611
-
612
- #: ../addons/banking/services/mycred-bank-service-payouts.php:249
613
- msgid ""
614
- "Comma separated list of user IDs to exclude from this service. No spaces "
615
- "allowed!"
616
- msgstr "排除用户,请使用逗号分隔的用户ID列表,不允许使用空格!"
617
-
618
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
619
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
620
  msgid "Payment Gateways"
@@ -640,7 +716,7 @@ msgid "Edit Pending Payment"
640
  msgstr ""
641
 
642
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
643
- #: addon-buy-creds.php:1631
644
  msgid "No pending payments found"
645
  msgstr ""
646
 
@@ -649,23 +725,23 @@ msgid "Not found in Trash"
649
  msgstr ""
650
 
651
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
652
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595
653
  msgid "Transaction ID"
654
  msgstr "交易 ID"
655
 
656
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
657
- #: addon-buy-creds.php:984
658
  msgid "Buyer"
659
  msgstr ""
660
 
661
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
662
- #: addon-buy-creds.php:1598 ../addons/buy-creds/abstracts/mycred-abstract-payment-
663
  #: gateway.php:563
664
  msgid "Cost"
665
  msgstr "花费"
666
 
667
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
668
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1596 ..
669
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
670
  msgid "Gateway"
671
  msgstr "网关"
@@ -683,14 +759,14 @@ msgid "buyCRED Purchase Log"
683
  msgstr "buyCRED 购买记录"
684
 
685
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
686
- #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:845
687
  msgid "Purchase Log"
688
  msgstr "购买记录"
689
 
690
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
691
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
692
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
693
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:416
694
  msgid "Payments"
695
  msgstr "付款"
696
 
@@ -767,7 +843,7 @@ msgid "Allow users to buy %_plural% for content authors."
767
  msgstr "允许用户为内容作者购买 %_plural% 。"
768
 
769
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
770
- #: hooks.php:2748
771
  msgid "Available Shortcodes"
772
  msgstr "可用简码"
773
 
@@ -776,156 +852,151 @@ msgstr "可用简码"
776
  msgid "%s Exchange Rate"
777
  msgstr ""
778
 
779
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:759 ../addons/sell-
780
- #: content/myCRED-addon-sell-content.php:113
781
- msgid "Leave empty to use the default value."
782
- msgstr ""
783
-
784
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
785
  msgid "Save Exchange Rates"
786
  msgstr ""
787
 
788
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
789
  msgid "Exchange rate override saved"
790
  msgstr ""
791
 
792
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:827
793
  msgid "Payment completed"
794
  msgstr ""
795
 
796
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
797
  #, php-format
798
  msgid "%s Payment Gateways"
799
  msgstr "%s 支付网关"
800
 
801
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845 ../addons/buy-creds/myCRED-
802
- #: addon-buy-creds.php:992
803
  msgid "buyCRED Settings"
804
  msgstr "buyCRED设置"
805
 
806
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
807
  msgid "Test Mode"
808
  msgstr "测试模式"
809
 
810
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
811
  msgid "Enabled"
812
  msgstr "已启用"
813
 
814
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:871
815
  msgid "Disabled"
816
  msgstr "已禁用"
817
 
818
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
819
  msgid "Sandbox Mode"
820
  msgstr "沙箱模式"
821
 
822
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:884
823
  msgid "Enable for test purchases."
824
  msgstr "启用测试购买。"
825
 
826
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:901 ../addons/gateway/event-
827
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
828
  msgid "Update Settings"
829
  msgstr "更新设置"
830
 
831
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
832
  msgid "More Gateways"
833
  msgstr ""
834
 
835
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
836
  #: 634
837
  msgid "Date"
838
  msgstr "日期"
839
 
840
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
841
  msgid "Payed"
842
  msgstr "已支付"
843
 
844
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
845
  msgid "<strong>buy</strong>CRED Purchase Log"
846
  msgstr "<strong>buy</strong>CRED购买日志"
847
 
848
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
849
  #: booking/mycred-eventespresso3.php:367
850
  msgid "Gateway Settings"
851
  msgstr "网关设置"
852
 
853
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1168 ../addons/sell-
854
- #: content/myCRED-addon-sell-content.php:1184
855
  msgid "No purchases found"
856
  msgstr "没有找到购买"
857
 
858
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1238 ../addons/buy-creds/myCRED-
859
- #: addon-buy-creds.php:1351
860
  msgid "This Add-on needs to setup before you can use this shortcode."
861
  msgstr "你需要安装这个扩展才可以使用这个简码。"
862
 
863
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1257 ../addons/buy-creds/myCRED-
864
- #: addon-buy-creds.php:1370
865
  msgid "No gateways installed."
866
  msgstr "没有安装网关。"
867
 
868
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1258 ../addons/buy-creds/myCRED-
869
- #: addon-buy-creds.php:1371
870
  msgid "Gateway does not exist."
871
  msgstr "网关不存在。"
872
 
873
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1306
874
  msgid "Yourself"
875
  msgstr "你自己"
876
 
877
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1372
878
  msgid "No active gateways found."
879
  msgstr "没有活跃的网关。"
880
 
881
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1373
882
  msgid "The selected gateway is not active."
883
  msgstr "所选择的网关没启用。"
884
 
885
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1420
886
  #, php-format
887
  msgid "Buy with %gateway%"
888
  msgstr "通过 %gateway% 购买。"
889
 
890
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1426 ../addons/sell-
891
  #: content/myCRED-addon-sell-content.php:44
892
  msgid "Buy Now"
893
  msgstr "立即购买"
894
 
895
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1471
896
  msgid "No users found"
897
  msgstr "没有找到用户"
898
 
899
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1481
900
  msgid "To"
901
  msgstr "给"
902
 
903
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1498
904
  msgid "Select Amount"
905
  msgstr "选择金额"
906
 
907
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1522
908
  msgid "min."
909
  msgstr "分钟。"
910
 
911
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1530
912
  msgid "Select Gateway"
913
  msgstr "选择网关"
914
 
915
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1571 ../addons/gateway/event-
916
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
917
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
918
  #: php:35
919
  msgid "Pay Now"
920
  msgstr "马上支付"
921
 
922
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1572 ../includes/mycred-install.
923
  #: php:515
924
  msgid "Cancel"
925
  msgstr "取消"
926
 
927
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ../addons/ranks/myCRED-
928
- #: addon-ranks.php:990 ../modules/mycred-module-log.php:372 ../modules/mycred-
929
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
930
  msgid "Actions"
931
  msgstr "操作"
@@ -965,12 +1036,12 @@ msgid "Cancel purchase"
965
  msgstr "取消购买"
966
 
967
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
968
- #: includes/mycred-admin.php:720 ../includes/mycred-admin.php:757
969
  msgid "required"
970
  msgstr "必填"
971
 
972
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
973
- #: includes/mycred-admin.php:722 ../includes/mycred-admin.php:759
974
  msgid "optional"
975
  msgstr "可选"
976
 
@@ -1357,7 +1428,7 @@ msgstr "结帐页面"
1357
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1358
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1359
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1360
- #: modules/mycred-module-hooks.php:2713
1361
  msgid "Title"
1362
  msgstr "标题"
1363
 
@@ -1587,7 +1658,7 @@ msgstr "此优惠券价值的 %plural% 数量 。"
1587
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1588
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1589
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1590
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:404 ..
1591
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1592
  #: includes/importers/mycred-cubepoints.php:365
1593
  msgid "Point Type"
@@ -1968,8 +2039,8 @@ msgid "Sent To"
1968
  msgstr "发送给"
1969
 
1970
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
1971
- #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:766 ..
1972
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:544
1973
  msgid "User"
1974
  msgstr "用户"
1975
 
@@ -2093,7 +2164,7 @@ msgstr ""
2093
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2094
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2095
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2096
- #: php:412 ../includes/mycred-admin.php:614 ../includes/mycred-admin.php:767
2097
  msgid "Current Balance"
2098
  msgstr "当前余额"
2099
 
@@ -2207,7 +2278,7 @@ msgstr "1 在 %currency% 中值多少 %_singular%?"
2207
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2208
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2209
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2210
- #: php:578 ../includes/mycred-shortcodes.php:913
2211
  msgid "Exchange Rate"
2212
  msgstr "汇率"
2213
 
@@ -2426,10 +2497,6 @@ msgstr "付款日志模板"
2426
  msgid "How much is 1 %s worth in %s"
2427
  msgstr "1 %s 在 %s 可以价值多少"
2428
 
2429
- #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2430
- msgid "Payout"
2431
- msgstr "支付"
2432
-
2433
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2434
  msgid "Instructions"
2435
  msgstr "说明"
@@ -2500,8 +2567,8 @@ msgstr "显示在收据和日志上的标题"
2500
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2501
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2502
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2503
- #: content/myCRED-addon-sell-content.php:452 ../addons/sell-content/myCRED-addon-
2504
- #: sell-content.php:662
2505
  msgid "Button Label"
2506
  msgstr "按钮标签"
2507
 
@@ -2514,8 +2581,8 @@ msgstr "支付按钮"
2514
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2515
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2516
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2517
- #: content/myCRED-addon-sell-content.php:443 ../addons/sell-content/myCRED-addon-
2518
- #: sell-content.php:658
2519
  msgid "Price"
2520
  msgstr "价格"
2521
 
@@ -2535,12 +2602,12 @@ msgid "Log"
2535
  msgstr "日志"
2536
 
2537
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2538
- #: includes/mycred-admin.php:735 ../includes/mycred-admin.php:772
2539
  msgid "Log Entry"
2540
  msgstr "日志条目"
2541
 
2542
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2543
- #: content/myCRED-addon-sell-content.php:466
2544
  msgid "Templates"
2545
  msgstr "模板"
2546
 
@@ -2616,7 +2683,7 @@ msgid "Reject"
2616
  msgstr "拒绝"
2617
 
2618
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2619
- #: modules/mycred-module-log.php:504 ../modules/mycred-module-settings.php:488 ..
2620
  #: modules/mycred-module-settings.php:507
2621
  msgid "Delete"
2622
  msgstr "删除"
@@ -3044,9 +3111,9 @@ msgid "No users found with this rank"
3044
  msgstr "没有任何用户在这个等级中"
3045
 
3046
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3047
- #: shortcodes.php:424 ../includes/mycred-shortcodes.php:427 ../includes/mycred-
3048
- #: shortcodes.php:489 ../includes/mycred-shortcodes.php:547 ../includes/mycred-
3049
- #: shortcodes.php:551 ../includes/mycred-shortcodes.php:555
3050
  msgid "error"
3051
  msgstr "错误"
3052
 
@@ -3066,139 +3133,139 @@ msgstr ""
3066
  msgid "Save Profit Share"
3067
  msgstr ""
3068
 
3069
- #: ../addons/sell-content/myCRED-addon-sell-content.php:158
3070
  msgid "Profit Share override saved"
3071
  msgstr ""
3072
 
3073
- #: ../addons/sell-content/myCRED-addon-sell-content.php:320
3074
  msgid "You can not buy this content."
3075
  msgstr "你无法购买这个内容。"
3076
 
3077
- #: ../addons/sell-content/myCRED-addon-sell-content.php:365
3078
  msgid "Error. Try Again"
3079
  msgstr "错误,请重试"
3080
 
3081
- #: ../addons/sell-content/myCRED-addon-sell-content.php:387
3082
  msgid "No Payout. Just charge."
3083
  msgstr "不支付,只是充值。"
3084
 
3085
- #: ../addons/sell-content/myCRED-addon-sell-content.php:388
3086
  msgid "Pay Content Author."
3087
  msgstr "支付内容作者。"
3088
 
3089
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394 ../includes/mycred-
3090
  #: overview.php:141 ../includes/mycred-overview.php:148
3091
  msgid "Sell Content"
3092
  msgstr "销售内容"
3093
 
3094
- #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3095
  msgid "Post Types"
3096
  msgstr "文章类型"
3097
 
3098
- #: ../addons/sell-content/myCRED-addon-sell-content.php:400
3099
  msgid "Comma separated list of post types that can be sold."
3100
  msgstr "用逗号分隔的可以出售的文章类型列表。"
3101
 
3102
- #: ../addons/sell-content/myCRED-addon-sell-content.php:430
3103
  msgid "Percentage to pay Author"
3104
  msgstr "支付作者的百分比"
3105
 
3106
- #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3107
  msgid ""
3108
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3109
  "authors are not paid."
3110
  msgstr "支付给作者的金额百分比。不能为零,如果不支付给作者,则忽略。"
3111
 
3112
- #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3113
  msgid "Defaults"
3114
  msgstr "默认"
3115
 
3116
- #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3117
  msgid "Allow authors to change price."
3118
  msgstr "允许作者更改价格。"
3119
 
3120
- #: ../addons/sell-content/myCRED-addon-sell-content.php:457
3121
  msgid "Allow authors to change button label."
3122
  msgstr "允许作者更改按钮标签。"
3123
 
3124
- #: ../addons/sell-content/myCRED-addon-sell-content.php:461
3125
  msgid "Purchases expire after"
3126
  msgstr "多久后购买过期"
3127
 
3128
- #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3129
  msgid "Use zero for permanent sales."
3130
  msgstr "使用零永久销售。"
3131
 
3132
- #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3133
  msgid "For Visitors"
3134
  msgstr ""
3135
 
3136
- #: ../addons/sell-content/myCRED-addon-sell-content.php:474
3137
  #, php-format
3138
  msgid ""
3139
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3140
  "be logged in to buy content!"
3141
  msgstr "<strong>不要</strong>在这个模板中使用 %buy_button%,否则用户必须登录后购买内容!"
3142
 
3143
- #: ../addons/sell-content/myCRED-addon-sell-content.php:479
3144
  msgid "For Members"
3145
  msgstr ""
3146
 
3147
- #: ../addons/sell-content/myCRED-addon-sell-content.php:484 ../addons/sell-
3148
- #: content/myCRED-addon-sell-content.php:494
3149
  #, php-format
3150
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3151
  msgstr "您的模板必须包含 %buy_button% 标记让购买生效!"
3152
 
3153
- #: ../addons/sell-content/myCRED-addon-sell-content.php:489
3154
  msgid "For members that can not afford to buy"
3155
  msgstr ""
3156
 
3157
- #: ../addons/sell-content/myCRED-addon-sell-content.php:498
3158
  msgid "Log template for Purchases"
3159
  msgstr "用于购买的日志模板"
3160
 
3161
- #: ../addons/sell-content/myCRED-addon-sell-content.php:505
3162
  msgid "Log template for Sales"
3163
  msgstr "用于销售的日志模板"
3164
 
3165
- #: ../addons/sell-content/myCRED-addon-sell-content.php:557
3166
  #, php-format
3167
  msgid "%s Sell This"
3168
  msgstr "%s 销售这个"
3169
 
3170
- #: ../addons/sell-content/myCRED-addon-sell-content.php:611
3171
  #, php-format
3172
  msgid "%s Sell Content needs to be setup before you can use this feature."
3173
  msgstr "%s 销售内容需要设置,然后才能使用此功能。"
3174
 
3175
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3176
  msgid "Setup add-on"
3177
  msgstr "设置扩展"
3178
 
3179
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3180
  msgid "Lets do it"
3181
  msgstr "让我们开始吧"
3182
 
3183
- #: ../addons/sell-content/myCRED-addon-sell-content.php:652
3184
  #, php-format
3185
  msgid "Enable sale of this %s"
3186
  msgstr ""
3187
 
3188
- #: ../addons/sell-content/myCRED-addon-sell-content.php:666
3189
  msgid "Purchase expires after"
3190
  msgstr "多久后购买过期"
3191
 
3192
- #: ../addons/sell-content/myCRED-addon-sell-content.php:992
3193
  msgid "Thank you for your purchase!"
3194
  msgstr "非常感谢您的购买!"
3195
 
3196
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1080 ../addons/sell-
3197
- #: content/myCRED-addon-sell-content.php:1166
3198
  msgid "The following content is set for sale:"
3199
  msgstr "下面的内容是设置来销售的:"
3200
 
3201
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1226
3202
  msgid "Purchased"
3203
  msgstr "购买"
3204
 
@@ -3211,7 +3278,7 @@ msgid "You have exceeded your %limit% transfer limit."
3211
  msgstr "您已超出您的 %limit% 转账限额。"
3212
 
3213
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3214
- #: php:2295
3215
  msgid "Transfer"
3216
  msgstr "转账"
3217
 
@@ -3246,7 +3313,7 @@ msgid ""
3246
  msgstr "这个 myCRED 扩展还没有进行设置!在完成设置前,任何转账都是不允许的!"
3247
 
3248
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3249
- #: php:1010
3250
  msgid "Insufficient Funds. Please try a lower amount."
3251
  msgstr ""
3252
 
@@ -3460,97 +3527,92 @@ msgstr "数目不能为零"
3460
  msgid "Failed to update this uses balance."
3461
  msgstr "无法更新该用户的余额。"
3462
 
3463
- #: ../includes/mycred-admin.php:404
3464
  msgid "Excluded"
3465
  msgstr "排除"
3466
 
3467
- #: ../includes/mycred-admin.php:414
3468
  #, php-format
3469
  msgid "Total: %s"
3470
  msgstr ""
3471
 
3472
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:254 ..
3473
- #: modules/mycred-module-log.php:255
3474
- msgid "History"
3475
- msgstr "历史"
3476
-
3477
- #: ../includes/mycred-admin.php:423
3478
  msgid "Adjust"
3479
  msgstr "调整"
3480
 
3481
- #: ../includes/mycred-admin.php:461 ../includes/mycred-admin.php:462
3482
  msgid "Edit Balance"
3483
  msgstr ""
3484
 
3485
- #: ../includes/mycred-admin.php:480
3486
  msgid "Profile"
3487
  msgstr ""
3488
 
3489
- #: ../includes/mycred-admin.php:487
3490
  msgid "Extended Profile"
3491
  msgstr ""
3492
 
3493
- #: ../includes/mycred-admin.php:577
3494
  #, php-format
3495
  msgid "This user is excluded from using %s"
3496
  msgstr ""
3497
 
3498
- #: ../includes/mycred-admin.php:600
3499
  msgid "Edit User"
3500
  msgstr ""
3501
 
3502
- #: ../includes/mycred-admin.php:602
3503
  msgctxt "user"
3504
  msgid "Add New"
3505
  msgstr ""
3506
 
3507
- #: ../includes/mycred-admin.php:604
3508
  msgctxt "user"
3509
  msgid "Add Existing"
3510
  msgstr ""
3511
 
3512
- #: ../includes/mycred-admin.php:615
3513
  #, php-format
3514
  msgid "Total %s Accumulated"
3515
  msgstr ""
3516
 
3517
- #: ../includes/mycred-admin.php:616
3518
  #, php-format
3519
  msgid "Total %s Spent"
3520
  msgstr ""
3521
 
3522
- #: ../includes/mycred-admin.php:627
3523
  msgid "View History"
3524
  msgstr ""
3525
 
3526
- #: ../includes/mycred-admin.php:628
3527
  msgid "Exclude User"
3528
  msgstr ""
3529
 
3530
- #: ../includes/mycred-admin.php:632
3531
  msgid "Adjust Balance"
3532
  msgstr ""
3533
 
3534
- #: ../includes/mycred-admin.php:641
3535
  msgid ""
3536
  "Warning! Excluding this user will result in their balance being deleted "
3537
  "along with any entries currently in your log! This can not be undone!"
3538
  msgstr ""
3539
 
3540
- #: ../includes/mycred-admin.php:699
3541
  #, php-format
3542
  msgid "%singular% balance"
3543
  msgstr "%singular% 余额"
3544
 
3545
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:773
3546
  msgid "Update Balance"
3547
  msgstr "更新余额"
3548
 
3549
- #: ../includes/mycred-admin.php:765
3550
  msgid "ID"
3551
  msgstr "ID"
3552
 
3553
- #: ../includes/mycred-admin.php:771
3554
  msgid "A positive or negative value"
3555
  msgstr "正值或负值"
3556
 
@@ -3602,298 +3664,298 @@ msgstr "和"
3602
  msgid "Available Template Tags:"
3603
  msgstr "可用的模板标签:"
3604
 
3605
- #: ../includes/mycred-functions.php:1655
3606
  msgid "Entire Log"
3607
  msgstr "全部日志"
3608
 
3609
- #: ../includes/mycred-functions.php:1660 ../includes/mycred-functions.php:1661
3610
  msgid "Displayed Rows"
3611
  msgstr "显示的行"
3612
 
3613
- #: ../includes/mycred-functions.php:1668
3614
  msgid "Search Results"
3615
  msgstr "搜索结果"
3616
 
3617
- #: ../includes/mycred-functions.php:1669
3618
  msgid "My Entire Log"
3619
  msgstr "我的整个日志"
3620
 
3621
- #: ../includes/mycred-functions.php:1790
3622
  msgid "ref empty"
3623
  msgstr "ref 为空"
3624
 
3625
- #: ../includes/mycred-functions.php:1798
3626
  msgid "incorrect user id format"
3627
  msgstr "不正确的用户ID格式"
3628
 
3629
- #: ../includes/mycred-functions.php:1811
3630
  msgid "incorrect unix timestamp (from):"
3631
  msgstr "不正确的unix时间戳(from):"
3632
 
3633
- #: ../includes/mycred-functions.php:1820
3634
  msgid "incorrect unix timestamp (to):"
3635
  msgstr "不正确的UNIX时间戳(to):"
3636
 
3637
- #: ../includes/mycred-functions.php:2182
3638
  msgid "Website Registration"
3639
  msgstr ""
3640
 
3641
- #: ../includes/mycred-functions.php:2183
3642
  msgid "Website Visit"
3643
  msgstr ""
3644
 
3645
- #: ../includes/mycred-functions.php:2184
3646
  msgid "Viewing Content (Member)"
3647
  msgstr ""
3648
 
3649
- #: ../includes/mycred-functions.php:2185
3650
  msgid "Viewing Content (Author)"
3651
  msgstr ""
3652
 
3653
- #: ../includes/mycred-functions.php:2186
3654
  msgid "Logging in"
3655
  msgstr ""
3656
 
3657
- #: ../includes/mycred-functions.php:2187
3658
  msgid "Publishing Content"
3659
  msgstr ""
3660
 
3661
- #: ../includes/mycred-functions.php:2188 ../modules/mycred-module-hooks.php:1421
3662
  msgid "Approved Comment"
3663
  msgstr "批准评论"
3664
 
3665
- #: ../includes/mycred-functions.php:2189
3666
  msgid "Unapproved Comment"
3667
  msgstr ""
3668
 
3669
- #: ../includes/mycred-functions.php:2190
3670
  msgid "SPAM Comment"
3671
  msgstr ""
3672
 
3673
- #: ../includes/mycred-functions.php:2191
3674
  msgid "Deleted Comment"
3675
  msgstr ""
3676
 
3677
- #: ../includes/mycred-functions.php:2192
3678
  msgid "Link Click"
3679
  msgstr ""
3680
 
3681
- #: ../includes/mycred-functions.php:2193
3682
  msgid "Watching Video"
3683
  msgstr ""
3684
 
3685
- #: ../includes/mycred-functions.php:2194
3686
  msgid "Visitor Referral"
3687
  msgstr ""
3688
 
3689
- #: ../includes/mycred-functions.php:2195
3690
  msgid "Signup Referral"
3691
  msgstr ""
3692
 
3693
- #: ../includes/mycred-functions.php:2199
3694
  msgid "New Profile Update"
3695
  msgstr ""
3696
 
3697
- #: ../includes/mycred-functions.php:2200
3698
  msgid "Avatar Upload"
3699
  msgstr ""
3700
 
3701
- #: ../includes/mycred-functions.php:2201
3702
  msgid "New Friendship"
3703
  msgstr ""
3704
 
3705
- #: ../includes/mycred-functions.php:2202
3706
  msgid "Ended Friendship"
3707
  msgstr ""
3708
 
3709
- #: ../includes/mycred-functions.php:2203
3710
  msgid "New Profile Comment"
3711
  msgstr ""
3712
 
3713
- #: ../includes/mycred-functions.php:2204
3714
  msgid "Profile Comment Deletion"
3715
  msgstr ""
3716
 
3717
- #: ../includes/mycred-functions.php:2205
3718
  msgid "New Message"
3719
  msgstr ""
3720
 
3721
- #: ../includes/mycred-functions.php:2206
3722
  msgid "Sending Gift"
3723
  msgstr ""
3724
 
3725
- #: ../includes/mycred-functions.php:2207
3726
  msgid "New Group"
3727
  msgstr ""
3728
 
3729
- #: ../includes/mycred-functions.php:2208
3730
  msgid "Deleted Group"
3731
  msgstr ""
3732
 
3733
- #: ../includes/mycred-functions.php:2209
3734
  msgid "New Group Forum Topic"
3735
  msgstr ""
3736
 
3737
- #: ../includes/mycred-functions.php:2210
3738
  msgid "Edit Group Forum Topic"
3739
  msgstr ""
3740
 
3741
- #: ../includes/mycred-functions.php:2211
3742
  msgid "New Group Forum Post"
3743
  msgstr ""
3744
 
3745
- #: ../includes/mycred-functions.php:2212
3746
  msgid "Edit Group Forum Post"
3747
  msgstr ""
3748
 
3749
- #: ../includes/mycred-functions.php:2213
3750
  msgid "Joining Group"
3751
  msgstr ""
3752
 
3753
- #: ../includes/mycred-functions.php:2214
3754
  msgid "Leaving Group"
3755
  msgstr ""
3756
 
3757
- #: ../includes/mycred-functions.php:2215
3758
  msgid "New Group Avatar"
3759
  msgstr ""
3760
 
3761
- #: ../includes/mycred-functions.php:2216
3762
  msgid "New Group Comment"
3763
  msgstr ""
3764
 
3765
- #: ../includes/mycred-functions.php:2220 ../plugins/mycred-hook-buddypress-media.
3766
  #: php:166
3767
  msgid "Photo Upload"
3768
  msgstr "照片上传"
3769
 
3770
- #: ../includes/mycred-functions.php:2221 ../plugins/mycred-hook-buddypress-media.
3771
  #: php:176
3772
  msgid "Video Upload"
3773
  msgstr "视频上传"
3774
 
3775
- #: ../includes/mycred-functions.php:2222 ../plugins/mycred-hook-buddypress-media.
3776
  #: php:186
3777
  msgid "Music Upload"
3778
  msgstr "音乐上传"
3779
 
3780
- #: ../includes/mycred-functions.php:2226
3781
  msgid "New Link"
3782
  msgstr ""
3783
 
3784
- #: ../includes/mycred-functions.php:2227
3785
  msgid "Link Voting"
3786
  msgstr ""
3787
 
3788
- #: ../includes/mycred-functions.php:2228
3789
  msgid "Link Update"
3790
  msgstr ""
3791
 
3792
- #: ../includes/mycred-functions.php:2232
3793
  msgid "New Forum (bbPress)"
3794
  msgstr ""
3795
 
3796
- #: ../includes/mycred-functions.php:2233
3797
  msgid "New Forum Topic (bbPress)"
3798
  msgstr ""
3799
 
3800
- #: ../includes/mycred-functions.php:2234
3801
  msgid "Favorited Topic (bbPress)"
3802
  msgstr ""
3803
 
3804
- #: ../includes/mycred-functions.php:2235
3805
  msgid "New Topic Reply (bbPress)"
3806
  msgstr ""
3807
 
3808
- #: ../includes/mycred-functions.php:2239
3809
  msgid "Form Submission (Contact Form 7)"
3810
  msgstr ""
3811
 
3812
- #: ../includes/mycred-functions.php:2242
3813
  msgid "Form Submission (Gravity Form)"
3814
  msgstr ""
3815
 
3816
- #: ../includes/mycred-functions.php:2245
3817
  msgid "New Forum Topic (SimplePress)"
3818
  msgstr ""
3819
 
3820
- #: ../includes/mycred-functions.php:2246
3821
  msgid "New Forum Post (SimplePress)"
3822
  msgstr ""
3823
 
3824
- #: ../includes/mycred-functions.php:2250
3825
  msgid "Poll Voting"
3826
  msgstr ""
3827
 
3828
- #: ../includes/mycred-functions.php:2253
3829
  msgid "Sending an Invite"
3830
  msgstr ""
3831
 
3832
- #: ../includes/mycred-functions.php:2254
3833
  msgid "Accepting an Invite"
3834
  msgstr ""
3835
 
3836
- #: ../includes/mycred-functions.php:2260
3837
  msgid "Banking Payout"
3838
  msgstr ""
3839
 
3840
- #: ../includes/mycred-functions.php:2263
3841
  msgid "buyCRED Purchase (PayPal Standard)"
3842
  msgstr ""
3843
 
3844
- #: ../includes/mycred-functions.php:2264
3845
  msgid "buyCRED Purchase (Skrill)"
3846
  msgstr ""
3847
 
3848
- #: ../includes/mycred-functions.php:2265
3849
  msgid "buyCRED Purchase (Zombaio)"
3850
  msgstr ""
3851
 
3852
- #: ../includes/mycred-functions.php:2266
3853
  msgid "buyCRED Purchase (NETBilling)"
3854
  msgstr ""
3855
 
3856
- #: ../includes/mycred-functions.php:2267
3857
  msgid "buyCRED Purchase (BitPay)"
3858
  msgstr ""
3859
 
3860
- #: ../includes/mycred-functions.php:2272
3861
  msgid "Coupon Purchase"
3862
  msgstr ""
3863
 
3864
- #: ../includes/mycred-functions.php:2275
3865
  msgid "Store Purchase (WooCommerce)"
3866
  msgstr ""
3867
 
3868
- #: ../includes/mycred-functions.php:2276
3869
  msgid "Store Purchase (MarketPress)"
3870
  msgstr ""
3871
 
3872
- #: ../includes/mycred-functions.php:2277
3873
  msgid "Store Purchase (WP E-Commerce)"
3874
  msgstr ""
3875
 
3876
- #: ../includes/mycred-functions.php:2282
3877
  msgid "Event Payment (Event Espresso)"
3878
  msgstr ""
3879
 
3880
- #: ../includes/mycred-functions.php:2283
3881
  msgid "Event Sale (Event Espresso)"
3882
  msgstr ""
3883
 
3884
- #: ../includes/mycred-functions.php:2287
3885
  msgid "Event Payment (Events Manager)"
3886
  msgstr ""
3887
 
3888
- #: ../includes/mycred-functions.php:2288
3889
  msgid "Event Sale (Events Manager)"
3890
  msgstr ""
3891
 
3892
- #: ../includes/mycred-functions.php:2292
3893
  msgid "Content Purchase / Sale"
3894
  msgstr ""
3895
 
3896
- #: ../includes/mycred-functions.php:2299
3897
  msgid "Manual Adjustment by Admin"
3898
  msgstr ""
3899
 
@@ -4059,6 +4121,10 @@ msgstr ""
4059
  "作为一个附加的安全性,您可以设置用户在一个单一实例中能够获得或失去的最大金额数量。如果使用,确保这是一个用户能够转让、购买、或在您的商店花费的最高金额。使"
4060
  "用零禁用。"
4061
 
 
 
 
 
4062
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4063
  msgid "Exclude those who can \"Edit Settings\"."
4064
  msgstr "排除那些可以\"编辑设置\"的用户。"
@@ -4166,7 +4232,7 @@ msgstr "没有可用的导出选项。"
4166
  msgid "Entry"
4167
  msgstr "条目"
4168
 
4169
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:466
4170
  msgid "User Missing"
4171
  msgstr "用户丢失"
4172
 
@@ -4346,92 +4412,92 @@ msgid ""
4346
  "about your setup!"
4347
  msgstr "如果不使用,记住要关闭!防止恶意传入请求来获取你的设置!"
4348
 
4349
- #: ../includes/mycred-shortcodes.php:153
4350
  msgid "Leaderboard is empty."
4351
  msgstr "排行榜是空的。"
4352
 
4353
- #: ../includes/mycred-shortcodes.php:424 ../includes/mycred-shortcodes.php:547
4354
  msgid "Amount missing!"
4355
  msgstr "数量缺失!"
4356
 
4357
- #: ../includes/mycred-shortcodes.php:427 ../includes/mycred-shortcodes.php:555
4358
  msgid "Log Template Missing!"
4359
  msgstr "日志模板缺失!"
4360
 
4361
- #: ../includes/mycred-shortcodes.php:489
4362
  msgid "Anchor missing URL!"
4363
  msgstr "缺失锚文本链接"
4364
 
4365
- #: ../includes/mycred-shortcodes.php:551
4366
  msgid "User ID missing for recipient."
4367
  msgstr "收件人用户名缺失。"
4368
 
4369
- #: ../includes/mycred-shortcodes.php:606
4370
  msgid "Sent"
4371
  msgstr "已发送"
4372
 
4373
- #: ../includes/mycred-shortcodes.php:607
4374
  msgid "Error - Try Again"
4375
  msgstr "错误 - 请重试"
4376
 
4377
- #: ../includes/mycred-shortcodes.php:716
4378
  msgid "A video ID is required for this shortcode"
4379
  msgstr "这个简码需要一个视频ID"
4380
 
4381
- #: ../includes/mycred-shortcodes.php:862 ../includes/mycred-shortcodes.php:956
4382
  msgid "Point types not found."
4383
  msgstr ""
4384
 
4385
- #: ../includes/mycred-shortcodes.php:868 ../includes/mycred-shortcodes.php:876 ..
4386
- #: includes/mycred-shortcodes.php:968 ../includes/mycred-shortcodes.php:988
4387
  #, php-format
4388
  msgid "You are excluded from using %s."
4389
  msgstr ""
4390
 
4391
- #: ../includes/mycred-shortcodes.php:872 ../includes/mycred-shortcodes.php:978
4392
  msgid "Your balance is too low to use this feature."
4393
  msgstr ""
4394
 
4395
- #: ../includes/mycred-shortcodes.php:893
4396
  #, php-format
4397
  msgid "Convert <span>%s</span> to <span>%s</span>"
4398
  msgstr ""
4399
 
4400
- #: ../includes/mycred-shortcodes.php:902
4401
  #, php-format
4402
  msgid "Your current %s balance"
4403
  msgstr ""
4404
 
4405
- #: ../includes/mycred-shortcodes.php:910
4406
  #, php-format
4407
  msgid "Minimum %s"
4408
  msgstr ""
4409
 
4410
- #: ../includes/mycred-shortcodes.php:914
4411
  #, php-format
4412
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4413
  msgstr ""
4414
 
4415
- #: ../includes/mycred-shortcodes.php:920
4416
  msgid "Exchange"
4417
  msgstr ""
4418
 
4419
- #: ../includes/mycred-shortcodes.php:1001
4420
  #, php-format
4421
  msgid "You must exchange at least %s!"
4422
  msgstr ""
4423
 
4424
- #: ../includes/mycred-shortcodes.php:1023
4425
  #, php-format
4426
  msgid "Exchange from %s"
4427
  msgstr ""
4428
 
4429
- #: ../includes/mycred-shortcodes.php:1035
4430
  #, php-format
4431
  msgid "Exchange to %s"
4432
  msgstr ""
4433
 
4434
- #: ../includes/mycred-shortcodes.php:1043
4435
  #, php-format
4436
  msgid "You have successfully exchanged %s into %s."
4437
  msgstr ""
@@ -4728,6 +4794,10 @@ msgstr "扩展"
4728
  msgid "Give your users badges based on their interaction with your website."
4729
  msgstr ""
4730
 
 
 
 
 
4731
  #: ../modules/mycred-module-addons.php:169
4732
  msgid ""
4733
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
@@ -5032,7 +5102,7 @@ msgstr "钩子是用来奖励或扣除用户 %_plural% 的,这取决于他们
5032
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5033
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5034
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5035
- #: 2623 ../modules/mycred-module-hooks.php:2652 ../plugins/mycred-hook-badgeOS.
5036
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5037
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5038
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
@@ -5094,8 +5164,8 @@ msgstr ""
5094
  msgid "%plural% for viewing %s"
5095
  msgstr ""
5096
 
5097
- #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2631
5098
- #: ../modules/mycred-module-hooks.php:2660 ../plugins/mycred-hook-invite-anyone.
5099
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5100
  msgid "Limit"
5101
  msgstr "限制"
@@ -5177,7 +5247,7 @@ msgstr "预设的点击链接的奖励数量。您可以在简码中覆盖它。
5177
  msgid "Custom tags: %url%, %title% or %id%."
5178
  msgstr "自定义标签:%url% 、%title% 或 %id%。"
5179
 
5180
- #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2734
5181
  msgid "Note!"
5182
  msgstr "注意!"
5183
 
@@ -5253,91 +5323,91 @@ msgstr "每天"
5253
  msgid "Link"
5254
  msgstr "链接"
5255
 
5256
- #: ../modules/mycred-module-hooks.php:2617
5257
  msgid "Referring Visitors"
5258
  msgstr "推介访客"
5259
 
5260
- #: ../modules/mycred-module-hooks.php:2641 ../modules/mycred-module-hooks.php:2670
5261
  msgid "The number of referrals each member can make. Use zero for unlimited."
5262
  msgstr "每个用户可以推介的人数。使用零为无限。"
5263
 
5264
- #: ../modules/mycred-module-hooks.php:2645 ../modules/mycred-module-hooks.php:2674
5265
  msgid "Referring Signups"
5266
  msgstr "推介注册"
5267
 
5268
- #: ../modules/mycred-module-hooks.php:2649
5269
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5270
  msgstr "访客禁用 Cookies 的话是不奖励 %_plural% 的。"
5271
 
5272
- #: ../modules/mycred-module-hooks.php:2676
5273
  msgid "Registrations are disabled."
5274
  msgstr "注册被禁用。"
5275
 
5276
- #: ../modules/mycred-module-hooks.php:2683
5277
  msgid "Referral Links"
5278
  msgstr "推介链接"
5279
 
5280
- #: ../modules/mycred-module-hooks.php:2687
5281
  msgid "Assign numeric referral IDs to each user."
5282
  msgstr "分配数字推介ID给每个用户。"
5283
 
5284
- #: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2694
5285
  msgid "Example"
5286
  msgstr "例如"
5287
 
5288
- #: ../modules/mycred-module-hooks.php:2693
5289
  msgid "Assign usernames as IDs for each user."
5290
  msgstr "分配用户名作为ID给每个用户。"
5291
 
5292
- #: ../modules/mycred-module-hooks.php:2697
5293
  msgid "IP Limit"
5294
  msgstr "IP限制"
5295
 
5296
- #: ../modules/mycred-module-hooks.php:2701
5297
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5298
  msgstr "每个IP可获得奖励 %_plural% 的次数。使用零为无限。"
5299
 
5300
- #: ../modules/mycred-module-hooks.php:2705 ../modules/mycred-module-hooks.php:2738
5301
  msgid "BuddyPress Profile"
5302
  msgstr "BuddyPress 个人资料"
5303
 
5304
- #: ../modules/mycred-module-hooks.php:2708
5305
  msgid "Insert Link in users Profile"
5306
  msgstr "在用户的个人资料插入链接"
5307
 
5308
- #: ../modules/mycred-module-hooks.php:2709
5309
  msgid ""
5310
  "Option to inser the referral link in users profiles. Links will only be "
5311
  "visible to users viewing their own profiles or administrators."
5312
  msgstr "选项用来在用户的个人资料中插入推介链接。链接只对管理员或用户自己查看他们的个人资料时可见。"
5313
 
5314
- #: ../modules/mycred-module-hooks.php:2715
5315
  msgid "Leave empty to hide."
5316
  msgstr "留空则隐藏。"
5317
 
5318
- #: ../modules/mycred-module-hooks.php:2718
5319
  msgid "Description"
5320
  msgstr "描述"
5321
 
5322
- #: ../modules/mycred-module-hooks.php:2719
5323
  msgid "Optional description to insert under the link."
5324
  msgstr "(可选)插入到链接中的描述"
5325
 
5326
- #: ../modules/mycred-module-hooks.php:2731
5327
  msgid "Profile Positioning"
5328
  msgstr "个人资料定位"
5329
 
5330
- #: ../modules/mycred-module-hooks.php:2733
5331
  msgid ""
5332
  "You can move around the referral link on your users profile by changing the "
5333
  "position. Increase to move up, decrease to move down."
5334
  msgstr "您可以在个人资料中更改推荐链接的位置。增加则向上移动,减少则向下移动。"
5335
 
5336
- #: ../modules/mycred-module-hooks.php:2734
5337
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5338
  msgstr "你不能移动推介链接到用户的\"基本\"资料信息上方!"
5339
 
5340
- #: ../modules/mycred-module-hooks.php:2740
5341
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5342
  msgstr "需要启用 BuddyPress 个人资料扩展。"
5343
 
@@ -5362,8 +5432,8 @@ msgstr "项目更新"
5362
  msgid "Entries"
5363
  msgstr "条目"
5364
 
5365
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:385 ..
5366
- #: modules/mycred-module-log.php:629 ../modules/mycred-module-settings.php:574
5367
  msgid "Export"
5368
  msgstr "导出"
5369
 
@@ -5371,40 +5441,40 @@ msgstr "导出"
5371
  msgid "Search results for"
5372
  msgstr "搜索结果"
5373
 
5374
- #: ../modules/mycred-module-log.php:379
5375
  #, php-format
5376
  msgid "%s Log"
5377
  msgstr "%s 日志"
5378
 
5379
- #: ../modules/mycred-module-log.php:504
5380
  msgid "Edit"
5381
  msgstr "编辑"
5382
 
5383
- #: ../modules/mycred-module-log.php:545
5384
  msgid "Time"
5385
  msgstr "时间"
5386
 
5387
- #: ../modules/mycred-module-log.php:549
5388
  msgid "Current Log Entry"
5389
  msgstr "当前日志条目"
5390
 
5391
- #: ../modules/mycred-module-log.php:551
5392
  msgid "The current saved log entry"
5393
  msgstr "当前保存的日志条目"
5394
 
5395
- #: ../modules/mycred-module-log.php:554
5396
  msgid "Adjust Log Entry"
5397
  msgstr "调整日志条目"
5398
 
5399
- #: ../modules/mycred-module-log.php:556
5400
  msgid "The new log entry"
5401
  msgstr "新的日志条目"
5402
 
5403
- #: ../modules/mycred-module-log.php:559
5404
  msgid "Update Log Entry"
5405
  msgstr "更新日志条目"
5406
 
5407
- #: ../modules/mycred-module-log.php:623
5408
  #, php-format
5409
  msgid "My %s History"
5410
  msgstr "我的 %s 历史"
@@ -6090,6 +6160,4 @@ msgstr "WP-Polls"
6090
  #: ../plugins/mycred-hook-wp-polls.php:19
6091
  #, php-format
6092
  msgid "Awards %_plural% for users voting in polls."
6093
- msgstr "奖励 %_plural% 给在投票调查中投票的用户。"
6094
- for users voting in polls."
6095
- msgstr "奖励 %_plural% 给在投票调查中投票的用户。"
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Thu Aug 07 2014 20:36:15 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Chinese\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
  "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
  "X-Poedit-Basepath: .\n"
42
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
43
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
44
  #: addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
45
+ #: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
46
+ #: includes/mycred-shortcodes.php:607
47
  msgid "Processing..."
48
  msgstr "处理中..."
49
 
139
  msgstr "每天一次(在午夜重置)"
140
 
141
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
142
+ #: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
143
  #: addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
144
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
145
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
165
  msgid "click to open"
166
  msgstr "点击打开"
167
 
168
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/buy-creds/myCRED-addon-
169
+ #: buy-creds.php:847
170
  msgid "Settings Updated"
171
  msgstr "设置已更新"
172
 
371
  msgid "in total"
372
  msgstr ""
373
 
374
+ #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
375
+ #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
376
  msgid "Banking"
377
  msgstr "银行"
378
 
379
+ #: ../addons/banking/myCRED-addon-banking.php:158
380
+ msgid "Central Banking"
381
+ msgstr ""
382
+
383
+ #: ../addons/banking/myCRED-addon-banking.php:159
384
+ #, php-format
385
+ msgid ""
386
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
387
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
388
+ "deposited back into this account."
389
+ msgstr ""
390
+
391
+ #: ../addons/banking/myCRED-addon-banking.php:165 ..
392
+ #: addons/banking/services/mycred-bank-service-interest.php:512
393
  msgid "Compound Interest"
394
  msgstr "利息"
395
 
396
+ #: ../addons/banking/myCRED-addon-banking.php:166
397
  #, php-format
398
+ msgid "Apply a positive or negative interest rate on your users %_plural% balances."
 
 
 
 
399
  msgstr ""
 
 
400
 
401
+ #: ../addons/banking/myCRED-addon-banking.php:172
402
  msgid "Recurring Payouts"
403
  msgstr "定期支付"
404
 
405
+ #: ../addons/banking/myCRED-addon-banking.php:173
406
+ msgid "Setup mass %_singular% payouts for your users."
407
+ msgstr ""
 
 
 
408
 
409
+ #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
410
+ #: addon-buy-creds.php:837 ../addons/buy-creds/myCRED-addon-buy-creds.php:933 ..
411
+ #: includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
412
  #: modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
413
+ #: modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
414
  #: modules/mycred-module-settings.php:312
415
  msgid "Access Denied"
416
  msgstr "拒绝访问"
417
 
418
+ #: ../addons/banking/myCRED-addon-banking.php:225
419
  #, php-format
420
  msgid "%s Banking"
421
  msgstr "%s 银行"
422
 
423
+ #: ../addons/banking/myCRED-addon-banking.php:228
424
+ msgid "Your banking setup for %plural%."
425
+ msgstr ""
 
426
 
427
+ #: ../addons/banking/myCRED-addon-banking.php:231
428
  msgid "WP-Cron deactivation detected!"
429
  msgstr "WP-Cron 检测到已禁用!"
430
 
431
+ #: ../addons/banking/myCRED-addon-banking.php:232
432
  msgid "Warning! This add-on requires WP - Cron to work."
433
  msgstr "警告!此扩展需要 WP-Cron 来工作。"
434
 
435
+ #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
436
+ #: addon-buy-creds.php:871 ../modules/mycred-module-hooks.php:196
437
  msgid "Enable"
438
  msgstr "启用"
439
 
440
+ #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
441
  #: php:211
442
  msgid "Update Changes"
443
  msgstr "更新设置"
444
 
445
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:79
 
 
 
 
446
  msgid "This Service has no settings"
447
  msgstr "这个服务没有设置"
448
 
449
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:233
450
  msgid "Hourly"
451
  msgstr "每小时"
452
 
453
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:237
454
  msgid "Daily"
455
  msgstr "每天"
456
 
457
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:241
458
  msgid "Weekly"
459
  msgstr "每周"
460
 
461
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:245
462
  msgid "Monthly"
463
  msgstr "每月"
464
 
465
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:249
466
  msgid "Quarterly"
467
  msgstr "每季"
468
 
469
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:253
470
  msgid "Semiannually"
471
  msgstr "每半年"
472
 
473
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:257
474
  msgid "Annually"
475
  msgstr "每年"
476
 
477
+ #: ../addons/banking/services/mycred-bank-service-central.php:105
478
+ msgid "Bank User"
479
+ msgstr ""
480
+
481
+ #: ../addons/banking/services/mycred-bank-service-central.php:109
482
+ msgid "The user ID of the central bank account. This user can not be excluded!"
483
+ msgstr ""
484
+
485
+ #: ../addons/banking/services/mycred-bank-service-central.php:112
486
+ msgid "Ignore Manual Adjustments"
487
+ msgstr ""
488
+
489
+ #: ../addons/banking/services/mycred-bank-service-interest.php:24
490
  msgid "%plural% interest rate payment"
491
  msgstr "%plural% 利率支付"
492
 
493
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
494
+ msgid "Compounding Interest"
495
+ msgstr ""
496
+
497
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
498
+ #, php-format
499
+ msgid "%d Users are left to process."
500
+ msgstr ""
501
+
502
+ #: ../addons/banking/services/mycred-bank-service-interest.php:388
503
+ msgid "Payout History"
504
+ msgstr ""
505
+
506
+ #: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
507
+ #: addons/banking/services/mycred-bank-service-interest.php:409 ..
508
+ #: addons/banking/services/mycred-bank-service-payouts.php:249
509
+ msgid "Run Count"
510
+ msgstr ""
511
+
512
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
513
+ msgid "Last Payout"
514
+ msgstr ""
515
+
516
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
517
+ #: addons/banking/services/mycred-bank-service-interest.php:414
518
+ msgid "Activated"
519
+ msgstr ""
520
+
521
+ #: ../addons/banking/services/mycred-bank-service-interest.php:401
522
+ msgid "Total Payed Interest"
523
+ msgstr ""
524
+
525
+ #: ../addons/banking/services/mycred-bank-service-interest.php:405
526
+ msgid "Compound History"
527
+ msgstr ""
528
+
529
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
530
+ msgid "Last Interest Compound"
531
+ msgstr ""
532
+
533
+ #: ../addons/banking/services/mycred-bank-service-interest.php:418
534
+ msgid "Total Compounded Interest"
535
+ msgstr ""
536
+
537
+ #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
538
+ #: addons/banking/services/mycred-bank-service-interest.php:549
539
  msgid "Interest Rate"
540
  msgstr "利率"
541
 
542
+ #: ../addons/banking/services/mycred-bank-service-interest.php:425
543
+ msgid "Default Rate"
544
+ msgstr ""
 
 
 
 
545
 
546
+ #: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
547
+ #: addons/banking/services/mycred-bank-service-payouts.php:267
548
+ msgid "Can not be zero."
549
+ msgstr "不能为零。"
550
 
551
+ #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
552
+ #: addons/gateway/carts/mycred-wpecommerce.php:364
553
+ msgid "Payout"
554
+ msgstr "支付"
555
 
556
+ #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
557
+ #: addons/banking/services/mycred-bank-service-payouts.php:282 ../addons/buy-
558
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
559
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
560
  #: addons/gateway/carts/mycred-marketpress.php:391 ..
572
  msgid "Log Template"
573
  msgstr "日志模板"
574
 
575
+ #: ../addons/banking/services/mycred-bank-service-interest.php:442 ..
576
+ #: addons/banking/services/mycred-bank-service-payouts.php:289 ..
577
+ #: addons/coupons/myCRED-addon-coupons.php:392
578
+ msgid "Minimum Balance"
579
+ msgstr "最少余额"
580
 
581
+ #: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
582
+ #: addons/banking/services/mycred-bank-service-payouts.php:293
583
+ msgid "Optional minimum balance requirement."
584
+ msgstr ""
585
+
586
+ #: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
587
+ #: addons/banking/services/mycred-bank-service-payouts.php:296
588
+ msgid "Exclude"
589
+ msgstr ""
590
+
591
+ #: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
592
+ #: addons/banking/services/mycred-bank-service-payouts.php:299
593
+ msgid "Comma separated list of user IDs"
594
+ msgstr ""
595
+
596
+ #: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
597
+ #: addons/banking/services/mycred-bank-service-payouts.php:303
598
+ msgid "Roles"
599
+ msgstr ""
600
+
601
+ #: ../addons/banking/services/mycred-bank-service-interest.php:522
602
+ msgid "This user is excluded from receiving interest on this balance."
603
+ msgstr ""
604
+
605
+ #: ../addons/banking/services/mycred-bank-service-interest.php:525
606
+ msgid "Remove from Excluded List"
607
+ msgstr ""
608
+
609
+ #: ../addons/banking/services/mycred-bank-service-interest.php:537
610
+ msgid "This user role is excluded from receiving interest on this balance."
611
+ msgstr ""
612
+
613
+ #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
614
+ #: creds/myCRED-addon-buy-creds.php:759 ../addons/sell-content/myCRED-addon-sell-
615
+ #: content.php:113
616
+ msgid "Leave empty to use the default value."
617
+ msgstr ""
618
+
619
+ #: ../addons/banking/services/mycred-bank-service-interest.php:558
620
+ msgid "Save Interest Rate"
621
+ msgstr ""
622
+
623
+ #: ../addons/banking/services/mycred-bank-service-interest.php:559
624
+ msgid "Exclude from receiving interest"
625
+ msgstr ""
626
+
627
+ #: ../addons/banking/services/mycred-bank-service-interest.php:667
628
+ msgid "Compound interest rate saved."
629
+ msgstr ""
630
+
631
+ #: ../addons/banking/services/mycred-bank-service-interest.php:669
632
+ msgid "User excluded from receiving interest."
633
+ msgstr ""
634
+
635
+ #: ../addons/banking/services/mycred-bank-service-interest.php:671
636
+ msgid "User included in receiving interest."
637
+ msgstr ""
638
 
639
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
640
  msgid "Daily %_plural%"
641
  msgstr "每日 %_plural%"
642
 
643
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
644
+ #: includes/mycred-admin.php:404 ../modules/mycred-module-log.php:254 ..
645
+ #: modules/mycred-module-log.php:255
646
+ msgid "History"
647
+ msgstr "历史"
648
+
649
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:254
650
+ msgid "Last Run"
651
+ msgstr ""
652
 
653
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:258
654
+ msgid "Total Payouts"
655
+ msgstr ""
656
+
657
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:262
658
  msgid "Pay Users"
659
  msgstr "用户支付"
660
 
661
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
662
  #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
663
+ #: creds.php:1518 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595 ..
664
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
665
+ #: includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
666
+ #: includes/mycred-shortcodes.php:910
667
  msgid "Amount"
668
  msgstr "数量"
669
 
670
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
671
+ #: modules/mycred-module-hooks.php:2113
 
 
 
 
 
672
  msgid "Interval"
673
  msgstr "间隔"
674
 
675
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:275
 
676
  msgid "Cycles"
677
  msgstr "周期"
678
 
679
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:277
680
  msgid "Set to -1 for unlimited"
681
  msgstr "设置为-1为无限"
682
 
683
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
684
  msgid "Important"
685
  msgstr "重要"
686
 
687
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
688
  msgid ""
689
  "You can always stop payouts by deactivating this service. Just remember that "
690
  "if you deactivate while there are cycles left, this service will continue on "
691
  "when it gets re-activated. Set cycles to zero to reset."
692
  msgstr "您可以随时禁用此服务来停止支出。但要记住,取消后,如果该服务还在循环周期内,它将继续,直到它被重新激活。设置周期为零来重置。"
693
 
 
 
 
 
 
 
 
 
 
 
 
694
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
695
  #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
696
  msgid "Payment Gateways"
716
  msgstr ""
717
 
718
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
719
+ #: addon-buy-creds.php:1629
720
  msgid "No pending payments found"
721
  msgstr ""
722
 
725
  msgstr ""
726
 
727
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
728
+ #: addon-buy-creds.php:986 ../addons/buy-creds/myCRED-addon-buy-creds.php:1593
729
  msgid "Transaction ID"
730
  msgstr "交易 ID"
731
 
732
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
733
+ #: addon-buy-creds.php:982
734
  msgid "Buyer"
735
  msgstr ""
736
 
737
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
738
+ #: addon-buy-creds.php:1596 ../addons/buy-creds/abstracts/mycred-abstract-payment-
739
  #: gateway.php:563
740
  msgid "Cost"
741
  msgstr "花费"
742
 
743
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
744
+ #: addon-buy-creds.php:981 ../addons/buy-creds/myCRED-addon-buy-creds.php:1594 ..
745
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
746
  msgid "Gateway"
747
  msgstr "网关"
759
  msgstr "buyCRED 购买记录"
760
 
761
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
762
+ #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:843
763
  msgid "Purchase Log"
764
  msgstr "购买记录"
765
 
766
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
767
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
768
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
769
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:422
770
  msgid "Payments"
771
  msgstr "付款"
772
 
843
  msgstr "允许用户为内容作者购买 %_plural% 。"
844
 
845
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
846
+ #: hooks.php:2770
847
  msgid "Available Shortcodes"
848
  msgstr "可用简码"
849
 
852
  msgid "%s Exchange Rate"
853
  msgstr ""
854
 
 
 
 
 
 
855
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
856
  msgid "Save Exchange Rates"
857
  msgstr ""
858
 
859
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:822
860
  msgid "Exchange rate override saved"
861
  msgstr ""
862
 
863
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:825
864
  msgid "Payment completed"
865
  msgstr ""
866
 
867
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843
868
  #, php-format
869
  msgid "%s Payment Gateways"
870
  msgstr "%s 支付网关"
871
 
872
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
873
+ #: addon-buy-creds.php:990
874
  msgid "buyCRED Settings"
875
  msgstr "buyCRED设置"
876
 
877
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:864
878
  msgid "Test Mode"
879
  msgstr "测试模式"
880
 
881
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
882
  msgid "Enabled"
883
  msgstr "已启用"
884
 
885
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:869
886
  msgid "Disabled"
887
  msgstr "已禁用"
888
 
889
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
890
  msgid "Sandbox Mode"
891
  msgstr "沙箱模式"
892
 
893
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:882
894
  msgid "Enable for test purchases."
895
  msgstr "启用测试购买。"
896
 
897
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
898
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
899
  msgid "Update Settings"
900
  msgstr "更新设置"
901
 
902
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
903
  msgid "More Gateways"
904
  msgstr ""
905
 
906
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:983 ../includes/mycred-log.php:
907
  #: 634
908
  msgid "Date"
909
  msgstr "日期"
910
 
911
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985
912
  msgid "Payed"
913
  msgstr "已支付"
914
 
915
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990
916
  msgid "<strong>buy</strong>CRED Purchase Log"
917
  msgstr "<strong>buy</strong>CRED购买日志"
918
 
919
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990 ../addons/gateway/event-
920
  #: booking/mycred-eventespresso3.php:367
921
  msgid "Gateway Settings"
922
  msgstr "网关设置"
923
 
924
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166 ../addons/sell-
925
+ #: content/myCRED-addon-sell-content.php:1190
926
  msgid "No purchases found"
927
  msgstr "没有找到购买"
928
 
929
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1236 ../addons/buy-creds/myCRED-
930
+ #: addon-buy-creds.php:1349
931
  msgid "This Add-on needs to setup before you can use this shortcode."
932
  msgstr "你需要安装这个扩展才可以使用这个简码。"
933
 
934
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1255 ../addons/buy-creds/myCRED-
935
+ #: addon-buy-creds.php:1368
936
  msgid "No gateways installed."
937
  msgstr "没有安装网关。"
938
 
939
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1256 ../addons/buy-creds/myCRED-
940
+ #: addon-buy-creds.php:1369
941
  msgid "Gateway does not exist."
942
  msgstr "网关不存在。"
943
 
944
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1304
945
  msgid "Yourself"
946
  msgstr "你自己"
947
 
948
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1370
949
  msgid "No active gateways found."
950
  msgstr "没有活跃的网关。"
951
 
952
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1371
953
  msgid "The selected gateway is not active."
954
  msgstr "所选择的网关没启用。"
955
 
956
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1418
957
  #, php-format
958
  msgid "Buy with %gateway%"
959
  msgstr "通过 %gateway% 购买。"
960
 
961
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424 ../addons/sell-
962
  #: content/myCRED-addon-sell-content.php:44
963
  msgid "Buy Now"
964
  msgstr "立即购买"
965
 
966
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1469
967
  msgid "No users found"
968
  msgstr "没有找到用户"
969
 
970
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1479
971
  msgid "To"
972
  msgstr "给"
973
 
974
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1496
975
  msgid "Select Amount"
976
  msgstr "选择金额"
977
 
978
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1520
979
  msgid "min."
980
  msgstr "分钟。"
981
 
982
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1528
983
  msgid "Select Gateway"
984
  msgstr "选择网关"
985
 
986
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1569 ../addons/gateway/event-
987
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
988
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
989
  #: php:35
990
  msgid "Pay Now"
991
  msgstr "马上支付"
992
 
993
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1570 ../includes/mycred-install.
994
  #: php:515
995
  msgid "Cancel"
996
  msgstr "取消"
997
 
998
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ../addons/ranks/myCRED-
999
+ #: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
1000
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
1001
  msgid "Actions"
1002
  msgstr "操作"
1036
  msgstr "取消购买"
1037
 
1038
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1039
+ #: includes/mycred-admin.php:702 ../includes/mycred-admin.php:739
1040
  msgid "required"
1041
  msgstr "必填"
1042
 
1043
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1044
+ #: includes/mycred-admin.php:704 ../includes/mycred-admin.php:741
1045
  msgid "optional"
1046
  msgstr "可选"
1047
 
1428
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1429
  #: addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1430
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1431
+ #: modules/mycred-module-hooks.php:2735
1432
  msgid "Title"
1433
  msgstr "标题"
1434
 
1658
  #: addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1659
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1660
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1661
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:410 ..
1662
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1663
  #: includes/importers/mycred-cubepoints.php:365
1664
  msgid "Point Type"
2039
  msgstr "发送给"
2040
 
2041
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2042
+ #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:748 ..
2043
+ #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
2044
  msgid "User"
2045
  msgstr "用户"
2046
 
2164
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2165
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2166
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2167
+ #: php:412 ../includes/mycred-admin.php:596 ../includes/mycred-admin.php:749
2168
  msgid "Current Balance"
2169
  msgstr "当前余额"
2170
 
2278
  #: addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2279
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2280
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2281
+ #: php:578 ../includes/mycred-shortcodes.php:915
2282
  msgid "Exchange Rate"
2283
  msgstr "汇率"
2284
 
2497
  msgid "How much is 1 %s worth in %s"
2498
  msgstr "1 %s 在 %s 可以价值多少"
2499
 
 
 
 
 
2500
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2501
  msgid "Instructions"
2502
  msgstr "说明"
2567
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2568
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2569
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2570
+ #: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
2571
+ #: sell-content.php:668
2572
  msgid "Button Label"
2573
  msgstr "按钮标签"
2574
 
2581
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2582
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2583
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2584
+ #: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
2585
+ #: sell-content.php:664
2586
  msgid "Price"
2587
  msgstr "价格"
2588
 
2602
  msgstr "日志"
2603
 
2604
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2605
+ #: includes/mycred-admin.php:717 ../includes/mycred-admin.php:754
2606
  msgid "Log Entry"
2607
  msgstr "日志条目"
2608
 
2609
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2610
+ #: content/myCRED-addon-sell-content.php:472
2611
  msgid "Templates"
2612
  msgstr "模板"
2613
 
2683
  msgstr "拒绝"
2684
 
2685
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2686
+ #: modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:488 ..
2687
  #: modules/mycred-module-settings.php:507
2688
  msgid "Delete"
2689
  msgstr "删除"
3111
  msgstr "没有任何用户在这个等级中"
3112
 
3113
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3114
+ #: shortcodes.php:425 ../includes/mycred-shortcodes.php:428 ../includes/mycred-
3115
+ #: shortcodes.php:491 ../includes/mycred-shortcodes.php:549 ../includes/mycred-
3116
+ #: shortcodes.php:553 ../includes/mycred-shortcodes.php:557
3117
  msgid "error"
3118
  msgstr "错误"
3119
 
3133
  msgid "Save Profit Share"
3134
  msgstr ""
3135
 
3136
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:164
3137
  msgid "Profit Share override saved"
3138
  msgstr ""
3139
 
3140
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:326
3141
  msgid "You can not buy this content."
3142
  msgstr "你无法购买这个内容。"
3143
 
3144
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:371
3145
  msgid "Error. Try Again"
3146
  msgstr "错误,请重试"
3147
 
3148
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3149
  msgid "No Payout. Just charge."
3150
  msgstr "不支付,只是充值。"
3151
 
3152
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3153
  msgid "Pay Content Author."
3154
  msgstr "支付内容作者。"
3155
 
3156
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:400 ../includes/mycred-
3157
  #: overview.php:141 ../includes/mycred-overview.php:148
3158
  msgid "Sell Content"
3159
  msgstr "销售内容"
3160
 
3161
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3162
  msgid "Post Types"
3163
  msgstr "文章类型"
3164
 
3165
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3166
  msgid "Comma separated list of post types that can be sold."
3167
  msgstr "用逗号分隔的可以出售的文章类型列表。"
3168
 
3169
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:436
3170
  msgid "Percentage to pay Author"
3171
  msgstr "支付作者的百分比"
3172
 
3173
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3174
  msgid ""
3175
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3176
  "authors are not paid."
3177
  msgstr "支付给作者的金额百分比。不能为零,如果不支付给作者,则忽略。"
3178
 
3179
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:446
3180
  msgid "Defaults"
3181
  msgstr "默认"
3182
 
3183
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:454
3184
  msgid "Allow authors to change price."
3185
  msgstr "允许作者更改价格。"
3186
 
3187
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3188
  msgid "Allow authors to change button label."
3189
  msgstr "允许作者更改按钮标签。"
3190
 
3191
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:467
3192
  msgid "Purchases expire after"
3193
  msgstr "多久后购买过期"
3194
 
3195
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3196
  msgid "Use zero for permanent sales."
3197
  msgstr "使用零永久销售。"
3198
 
3199
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:475
3200
  msgid "For Visitors"
3201
  msgstr ""
3202
 
3203
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:480
3204
  #, php-format
3205
  msgid ""
3206
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3207
  "be logged in to buy content!"
3208
  msgstr "<strong>不要</strong>在这个模板中使用 %buy_button%,否则用户必须登录后购买内容!"
3209
 
3210
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:485
3211
  msgid "For Members"
3212
  msgstr ""
3213
 
3214
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:490 ../addons/sell-
3215
+ #: content/myCRED-addon-sell-content.php:500
3216
  #, php-format
3217
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3218
  msgstr "您的模板必须包含 %buy_button% 标记让购买生效!"
3219
 
3220
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:495
3221
  msgid "For members that can not afford to buy"
3222
  msgstr ""
3223
 
3224
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:504
3225
  msgid "Log template for Purchases"
3226
  msgstr "用于购买的日志模板"
3227
 
3228
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:511
3229
  msgid "Log template for Sales"
3230
  msgstr "用于销售的日志模板"
3231
 
3232
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:563
3233
  #, php-format
3234
  msgid "%s Sell This"
3235
  msgstr "%s 销售这个"
3236
 
3237
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:617
3238
  #, php-format
3239
  msgid "%s Sell Content needs to be setup before you can use this feature."
3240
  msgstr "%s 销售内容需要设置,然后才能使用此功能。"
3241
 
3242
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3243
  msgid "Setup add-on"
3244
  msgstr "设置扩展"
3245
 
3246
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3247
  msgid "Lets do it"
3248
  msgstr "让我们开始吧"
3249
 
3250
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:658
3251
  #, php-format
3252
  msgid "Enable sale of this %s"
3253
  msgstr ""
3254
 
3255
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:672
3256
  msgid "Purchase expires after"
3257
  msgstr "多久后购买过期"
3258
 
3259
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:998
3260
  msgid "Thank you for your purchase!"
3261
  msgstr "非常感谢您的购买!"
3262
 
3263
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1086 ../addons/sell-
3264
+ #: content/myCRED-addon-sell-content.php:1172
3265
  msgid "The following content is set for sale:"
3266
  msgstr "下面的内容是设置来销售的:"
3267
 
3268
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1232
3269
  msgid "Purchased"
3270
  msgstr "购买"
3271
 
3278
  msgstr "您已超出您的 %limit% 转账限额。"
3279
 
3280
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3281
+ #: php:2313
3282
  msgid "Transfer"
3283
  msgstr "转账"
3284
 
3313
  msgstr "这个 myCRED 扩展还没有进行设置!在完成设置前,任何转账都是不允许的!"
3314
 
3315
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3316
+ #: php:1012
3317
  msgid "Insufficient Funds. Please try a lower amount."
3318
  msgstr ""
3319
 
3527
  msgid "Failed to update this uses balance."
3528
  msgstr "无法更新该用户的余额。"
3529
 
3530
+ #: ../includes/mycred-admin.php:386
3531
  msgid "Excluded"
3532
  msgstr "排除"
3533
 
3534
+ #: ../includes/mycred-admin.php:396
3535
  #, php-format
3536
  msgid "Total: %s"
3537
  msgstr ""
3538
 
3539
+ #: ../includes/mycred-admin.php:405
 
 
 
 
 
3540
  msgid "Adjust"
3541
  msgstr "调整"
3542
 
3543
+ #: ../includes/mycred-admin.php:443 ../includes/mycred-admin.php:444
3544
  msgid "Edit Balance"
3545
  msgstr ""
3546
 
3547
+ #: ../includes/mycred-admin.php:462
3548
  msgid "Profile"
3549
  msgstr ""
3550
 
3551
+ #: ../includes/mycred-admin.php:469
3552
  msgid "Extended Profile"
3553
  msgstr ""
3554
 
3555
+ #: ../includes/mycred-admin.php:559
3556
  #, php-format
3557
  msgid "This user is excluded from using %s"
3558
  msgstr ""
3559
 
3560
+ #: ../includes/mycred-admin.php:582
3561
  msgid "Edit User"
3562
  msgstr ""
3563
 
3564
+ #: ../includes/mycred-admin.php:584
3565
  msgctxt "user"
3566
  msgid "Add New"
3567
  msgstr ""
3568
 
3569
+ #: ../includes/mycred-admin.php:586
3570
  msgctxt "user"
3571
  msgid "Add Existing"
3572
  msgstr ""
3573
 
3574
+ #: ../includes/mycred-admin.php:597
3575
  #, php-format
3576
  msgid "Total %s Accumulated"
3577
  msgstr ""
3578
 
3579
+ #: ../includes/mycred-admin.php:598
3580
  #, php-format
3581
  msgid "Total %s Spent"
3582
  msgstr ""
3583
 
3584
+ #: ../includes/mycred-admin.php:609
3585
  msgid "View History"
3586
  msgstr ""
3587
 
3588
+ #: ../includes/mycred-admin.php:610
3589
  msgid "Exclude User"
3590
  msgstr ""
3591
 
3592
+ #: ../includes/mycred-admin.php:614
3593
  msgid "Adjust Balance"
3594
  msgstr ""
3595
 
3596
+ #: ../includes/mycred-admin.php:623
3597
  msgid ""
3598
  "Warning! Excluding this user will result in their balance being deleted "
3599
  "along with any entries currently in your log! This can not be undone!"
3600
  msgstr ""
3601
 
3602
+ #: ../includes/mycred-admin.php:681
3603
  #, php-format
3604
  msgid "%singular% balance"
3605
  msgstr "%singular% 余额"
3606
 
3607
+ #: ../includes/mycred-admin.php:721 ../includes/mycred-admin.php:755
3608
  msgid "Update Balance"
3609
  msgstr "更新余额"
3610
 
3611
+ #: ../includes/mycred-admin.php:747
3612
  msgid "ID"
3613
  msgstr "ID"
3614
 
3615
+ #: ../includes/mycred-admin.php:753
3616
  msgid "A positive or negative value"
3617
  msgstr "正值或负值"
3618
 
3664
  msgid "Available Template Tags:"
3665
  msgstr "可用的模板标签:"
3666
 
3667
+ #: ../includes/mycred-functions.php:1673
3668
  msgid "Entire Log"
3669
  msgstr "全部日志"
3670
 
3671
+ #: ../includes/mycred-functions.php:1678 ../includes/mycred-functions.php:1679
3672
  msgid "Displayed Rows"
3673
  msgstr "显示的行"
3674
 
3675
+ #: ../includes/mycred-functions.php:1686
3676
  msgid "Search Results"
3677
  msgstr "搜索结果"
3678
 
3679
+ #: ../includes/mycred-functions.php:1687
3680
  msgid "My Entire Log"
3681
  msgstr "我的整个日志"
3682
 
3683
+ #: ../includes/mycred-functions.php:1808
3684
  msgid "ref empty"
3685
  msgstr "ref 为空"
3686
 
3687
+ #: ../includes/mycred-functions.php:1816
3688
  msgid "incorrect user id format"
3689
  msgstr "不正确的用户ID格式"
3690
 
3691
+ #: ../includes/mycred-functions.php:1829
3692
  msgid "incorrect unix timestamp (from):"
3693
  msgstr "不正确的unix时间戳(from):"
3694
 
3695
+ #: ../includes/mycred-functions.php:1838
3696
  msgid "incorrect unix timestamp (to):"
3697
  msgstr "不正确的UNIX时间戳(to):"
3698
 
3699
+ #: ../includes/mycred-functions.php:2200
3700
  msgid "Website Registration"
3701
  msgstr ""
3702
 
3703
+ #: ../includes/mycred-functions.php:2201
3704
  msgid "Website Visit"
3705
  msgstr ""
3706
 
3707
+ #: ../includes/mycred-functions.php:2202
3708
  msgid "Viewing Content (Member)"
3709
  msgstr ""
3710
 
3711
+ #: ../includes/mycred-functions.php:2203
3712
  msgid "Viewing Content (Author)"
3713
  msgstr ""
3714
 
3715
+ #: ../includes/mycred-functions.php:2204
3716
  msgid "Logging in"
3717
  msgstr ""
3718
 
3719
+ #: ../includes/mycred-functions.php:2205
3720
  msgid "Publishing Content"
3721
  msgstr ""
3722
 
3723
+ #: ../includes/mycred-functions.php:2206 ../modules/mycred-module-hooks.php:1421
3724
  msgid "Approved Comment"
3725
  msgstr "批准评论"
3726
 
3727
+ #: ../includes/mycred-functions.php:2207
3728
  msgid "Unapproved Comment"
3729
  msgstr ""
3730
 
3731
+ #: ../includes/mycred-functions.php:2208
3732
  msgid "SPAM Comment"
3733
  msgstr ""
3734
 
3735
+ #: ../includes/mycred-functions.php:2209
3736
  msgid "Deleted Comment"
3737
  msgstr ""
3738
 
3739
+ #: ../includes/mycred-functions.php:2210
3740
  msgid "Link Click"
3741
  msgstr ""
3742
 
3743
+ #: ../includes/mycred-functions.php:2211
3744
  msgid "Watching Video"
3745
  msgstr ""
3746
 
3747
+ #: ../includes/mycred-functions.php:2212
3748
  msgid "Visitor Referral"
3749
  msgstr ""
3750
 
3751
+ #: ../includes/mycred-functions.php:2213
3752
  msgid "Signup Referral"
3753
  msgstr ""
3754
 
3755
+ #: ../includes/mycred-functions.php:2217
3756
  msgid "New Profile Update"
3757
  msgstr ""
3758
 
3759
+ #: ../includes/mycred-functions.php:2218
3760
  msgid "Avatar Upload"
3761
  msgstr ""
3762
 
3763
+ #: ../includes/mycred-functions.php:2219
3764
  msgid "New Friendship"
3765
  msgstr ""
3766
 
3767
+ #: ../includes/mycred-functions.php:2220
3768
  msgid "Ended Friendship"
3769
  msgstr ""
3770
 
3771
+ #: ../includes/mycred-functions.php:2221
3772
  msgid "New Profile Comment"
3773
  msgstr ""
3774
 
3775
+ #: ../includes/mycred-functions.php:2222
3776
  msgid "Profile Comment Deletion"
3777
  msgstr ""
3778
 
3779
+ #: ../includes/mycred-functions.php:2223
3780
  msgid "New Message"
3781
  msgstr ""
3782
 
3783
+ #: ../includes/mycred-functions.php:2224
3784
  msgid "Sending Gift"
3785
  msgstr ""
3786
 
3787
+ #: ../includes/mycred-functions.php:2225
3788
  msgid "New Group"
3789
  msgstr ""
3790
 
3791
+ #: ../includes/mycred-functions.php:2226
3792
  msgid "Deleted Group"
3793
  msgstr ""
3794
 
3795
+ #: ../includes/mycred-functions.php:2227
3796
  msgid "New Group Forum Topic"
3797
  msgstr ""
3798
 
3799
+ #: ../includes/mycred-functions.php:2228
3800
  msgid "Edit Group Forum Topic"
3801
  msgstr ""
3802
 
3803
+ #: ../includes/mycred-functions.php:2229
3804
  msgid "New Group Forum Post"
3805
  msgstr ""
3806
 
3807
+ #: ../includes/mycred-functions.php:2230
3808
  msgid "Edit Group Forum Post"
3809
  msgstr ""
3810
 
3811
+ #: ../includes/mycred-functions.php:2231
3812
  msgid "Joining Group"
3813
  msgstr ""
3814
 
3815
+ #: ../includes/mycred-functions.php:2232
3816
  msgid "Leaving Group"
3817
  msgstr ""
3818
 
3819
+ #: ../includes/mycred-functions.php:2233
3820
  msgid "New Group Avatar"
3821
  msgstr ""
3822
 
3823
+ #: ../includes/mycred-functions.php:2234
3824
  msgid "New Group Comment"
3825
  msgstr ""
3826
 
3827
+ #: ../includes/mycred-functions.php:2238 ../plugins/mycred-hook-buddypress-media.
3828
  #: php:166
3829
  msgid "Photo Upload"
3830
  msgstr "照片上传"
3831
 
3832
+ #: ../includes/mycred-functions.php:2239 ../plugins/mycred-hook-buddypress-media.
3833
  #: php:176
3834
  msgid "Video Upload"
3835
  msgstr "视频上传"
3836
 
3837
+ #: ../includes/mycred-functions.php:2240 ../plugins/mycred-hook-buddypress-media.
3838
  #: php:186
3839
  msgid "Music Upload"
3840
  msgstr "音乐上传"
3841
 
3842
+ #: ../includes/mycred-functions.php:2244
3843
  msgid "New Link"
3844
  msgstr ""
3845
 
3846
+ #: ../includes/mycred-functions.php:2245
3847
  msgid "Link Voting"
3848
  msgstr ""
3849
 
3850
+ #: ../includes/mycred-functions.php:2246
3851
  msgid "Link Update"
3852
  msgstr ""
3853
 
3854
+ #: ../includes/mycred-functions.php:2250
3855
  msgid "New Forum (bbPress)"
3856
  msgstr ""
3857
 
3858
+ #: ../includes/mycred-functions.php:2251
3859
  msgid "New Forum Topic (bbPress)"
3860
  msgstr ""
3861
 
3862
+ #: ../includes/mycred-functions.php:2252
3863
  msgid "Favorited Topic (bbPress)"
3864
  msgstr ""
3865
 
3866
+ #: ../includes/mycred-functions.php:2253
3867
  msgid "New Topic Reply (bbPress)"
3868
  msgstr ""
3869
 
3870
+ #: ../includes/mycred-functions.php:2257
3871
  msgid "Form Submission (Contact Form 7)"
3872
  msgstr ""
3873
 
3874
+ #: ../includes/mycred-functions.php:2260
3875
  msgid "Form Submission (Gravity Form)"
3876
  msgstr ""
3877
 
3878
+ #: ../includes/mycred-functions.php:2263
3879
  msgid "New Forum Topic (SimplePress)"
3880
  msgstr ""
3881
 
3882
+ #: ../includes/mycred-functions.php:2264
3883
  msgid "New Forum Post (SimplePress)"
3884
  msgstr ""
3885
 
3886
+ #: ../includes/mycred-functions.php:2268
3887
  msgid "Poll Voting"
3888
  msgstr ""
3889
 
3890
+ #: ../includes/mycred-functions.php:2271
3891
  msgid "Sending an Invite"
3892
  msgstr ""
3893
 
3894
+ #: ../includes/mycred-functions.php:2272
3895
  msgid "Accepting an Invite"
3896
  msgstr ""
3897
 
3898
+ #: ../includes/mycred-functions.php:2278
3899
  msgid "Banking Payout"
3900
  msgstr ""
3901
 
3902
+ #: ../includes/mycred-functions.php:2281
3903
  msgid "buyCRED Purchase (PayPal Standard)"
3904
  msgstr ""
3905
 
3906
+ #: ../includes/mycred-functions.php:2282
3907
  msgid "buyCRED Purchase (Skrill)"
3908
  msgstr ""
3909
 
3910
+ #: ../includes/mycred-functions.php:2283
3911
  msgid "buyCRED Purchase (Zombaio)"
3912
  msgstr ""
3913
 
3914
+ #: ../includes/mycred-functions.php:2284
3915
  msgid "buyCRED Purchase (NETBilling)"
3916
  msgstr ""
3917
 
3918
+ #: ../includes/mycred-functions.php:2285
3919
  msgid "buyCRED Purchase (BitPay)"
3920
  msgstr ""
3921
 
3922
+ #: ../includes/mycred-functions.php:2290
3923
  msgid "Coupon Purchase"
3924
  msgstr ""
3925
 
3926
+ #: ../includes/mycred-functions.php:2293
3927
  msgid "Store Purchase (WooCommerce)"
3928
  msgstr ""
3929
 
3930
+ #: ../includes/mycred-functions.php:2294
3931
  msgid "Store Purchase (MarketPress)"
3932
  msgstr ""
3933
 
3934
+ #: ../includes/mycred-functions.php:2295
3935
  msgid "Store Purchase (WP E-Commerce)"
3936
  msgstr ""
3937
 
3938
+ #: ../includes/mycred-functions.php:2300
3939
  msgid "Event Payment (Event Espresso)"
3940
  msgstr ""
3941
 
3942
+ #: ../includes/mycred-functions.php:2301
3943
  msgid "Event Sale (Event Espresso)"
3944
  msgstr ""
3945
 
3946
+ #: ../includes/mycred-functions.php:2305
3947
  msgid "Event Payment (Events Manager)"
3948
  msgstr ""
3949
 
3950
+ #: ../includes/mycred-functions.php:2306
3951
  msgid "Event Sale (Events Manager)"
3952
  msgstr ""
3953
 
3954
+ #: ../includes/mycred-functions.php:2310
3955
  msgid "Content Purchase / Sale"
3956
  msgstr ""
3957
 
3958
+ #: ../includes/mycred-functions.php:2317
3959
  msgid "Manual Adjustment by Admin"
3960
  msgstr ""
3961
 
4121
  "作为一个附加的安全性,您可以设置用户在一个单一实例中能够获得或失去的最大金额数量。如果使用,确保这是一个用户能够转让、购买、或在您的商店花费的最高金额。使"
4122
  "用零禁用。"
4123
 
4124
+ #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
4125
+ msgid "Excludes"
4126
+ msgstr "排除"
4127
+
4128
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4129
  msgid "Exclude those who can \"Edit Settings\"."
4130
  msgstr "排除那些可以\"编辑设置\"的用户。"
4232
  msgid "Entry"
4233
  msgstr "条目"
4234
 
4235
+ #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:468
4236
  msgid "User Missing"
4237
  msgstr "用户丢失"
4238
 
4412
  "about your setup!"
4413
  msgstr "如果不使用,记住要关闭!防止恶意传入请求来获取你的设置!"
4414
 
4415
+ #: ../includes/mycred-shortcodes.php:154
4416
  msgid "Leaderboard is empty."
4417
  msgstr "排行榜是空的。"
4418
 
4419
+ #: ../includes/mycred-shortcodes.php:425 ../includes/mycred-shortcodes.php:549
4420
  msgid "Amount missing!"
4421
  msgstr "数量缺失!"
4422
 
4423
+ #: ../includes/mycred-shortcodes.php:428 ../includes/mycred-shortcodes.php:557
4424
  msgid "Log Template Missing!"
4425
  msgstr "日志模板缺失!"
4426
 
4427
+ #: ../includes/mycred-shortcodes.php:491
4428
  msgid "Anchor missing URL!"
4429
  msgstr "缺失锚文本链接"
4430
 
4431
+ #: ../includes/mycred-shortcodes.php:553
4432
  msgid "User ID missing for recipient."
4433
  msgstr "收件人用户名缺失。"
4434
 
4435
+ #: ../includes/mycred-shortcodes.php:608
4436
  msgid "Sent"
4437
  msgstr "已发送"
4438
 
4439
+ #: ../includes/mycred-shortcodes.php:609
4440
  msgid "Error - Try Again"
4441
  msgstr "错误 - 请重试"
4442
 
4443
+ #: ../includes/mycred-shortcodes.php:718
4444
  msgid "A video ID is required for this shortcode"
4445
  msgstr "这个简码需要一个视频ID"
4446
 
4447
+ #: ../includes/mycred-shortcodes.php:864 ../includes/mycred-shortcodes.php:958
4448
  msgid "Point types not found."
4449
  msgstr ""
4450
 
4451
+ #: ../includes/mycred-shortcodes.php:870 ../includes/mycred-shortcodes.php:878 ..
4452
+ #: includes/mycred-shortcodes.php:970 ../includes/mycred-shortcodes.php:990
4453
  #, php-format
4454
  msgid "You are excluded from using %s."
4455
  msgstr ""
4456
 
4457
+ #: ../includes/mycred-shortcodes.php:874 ../includes/mycred-shortcodes.php:980
4458
  msgid "Your balance is too low to use this feature."
4459
  msgstr ""
4460
 
4461
+ #: ../includes/mycred-shortcodes.php:895
4462
  #, php-format
4463
  msgid "Convert <span>%s</span> to <span>%s</span>"
4464
  msgstr ""
4465
 
4466
+ #: ../includes/mycred-shortcodes.php:904
4467
  #, php-format
4468
  msgid "Your current %s balance"
4469
  msgstr ""
4470
 
4471
+ #: ../includes/mycred-shortcodes.php:912
4472
  #, php-format
4473
  msgid "Minimum %s"
4474
  msgstr ""
4475
 
4476
+ #: ../includes/mycred-shortcodes.php:916
4477
  #, php-format
4478
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4479
  msgstr ""
4480
 
4481
+ #: ../includes/mycred-shortcodes.php:922
4482
  msgid "Exchange"
4483
  msgstr ""
4484
 
4485
+ #: ../includes/mycred-shortcodes.php:1003
4486
  #, php-format
4487
  msgid "You must exchange at least %s!"
4488
  msgstr ""
4489
 
4490
+ #: ../includes/mycred-shortcodes.php:1025
4491
  #, php-format
4492
  msgid "Exchange from %s"
4493
  msgstr ""
4494
 
4495
+ #: ../includes/mycred-shortcodes.php:1037
4496
  #, php-format
4497
  msgid "Exchange to %s"
4498
  msgstr ""
4499
 
4500
+ #: ../includes/mycred-shortcodes.php:1045
4501
  #, php-format
4502
  msgid "You have successfully exchanged %s into %s."
4503
  msgstr ""
4794
  msgid "Give your users badges based on their interaction with your website."
4795
  msgstr ""
4796
 
4797
+ #: ../modules/mycred-module-addons.php:158
4798
+ msgid "Setup recurring payouts or offer / charge interest on user account balances."
4799
+ msgstr "设置经常性支出或支付/收取用户帐户余额的利息。"
4800
+
4801
  #: ../modules/mycred-module-addons.php:169
4802
  msgid ""
4803
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5102
  #: modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5103
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5104
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5105
+ #: 2645 ../modules/mycred-module-hooks.php:2674 ../plugins/mycred-hook-badgeOS.
5106
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5107
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5108
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
5164
  msgid "%plural% for viewing %s"
5165
  msgstr ""
5166
 
5167
+ #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2653
5168
+ #: ../modules/mycred-module-hooks.php:2682 ../plugins/mycred-hook-invite-anyone.
5169
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5170
  msgid "Limit"
5171
  msgstr "限制"
5247
  msgid "Custom tags: %url%, %title% or %id%."
5248
  msgstr "自定义标签:%url% 、%title% 或 %id%。"
5249
 
5250
+ #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2756
5251
  msgid "Note!"
5252
  msgstr "注意!"
5253
 
5323
  msgid "Link"
5324
  msgstr "链接"
5325
 
5326
+ #: ../modules/mycred-module-hooks.php:2639
5327
  msgid "Referring Visitors"
5328
  msgstr "推介访客"
5329
 
5330
+ #: ../modules/mycred-module-hooks.php:2663 ../modules/mycred-module-hooks.php:2692
5331
  msgid "The number of referrals each member can make. Use zero for unlimited."
5332
  msgstr "每个用户可以推介的人数。使用零为无限。"
5333
 
5334
+ #: ../modules/mycred-module-hooks.php:2667 ../modules/mycred-module-hooks.php:2696
5335
  msgid "Referring Signups"
5336
  msgstr "推介注册"
5337
 
5338
+ #: ../modules/mycred-module-hooks.php:2671
5339
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5340
  msgstr "访客禁用 Cookies 的话是不奖励 %_plural% 的。"
5341
 
5342
+ #: ../modules/mycred-module-hooks.php:2698
5343
  msgid "Registrations are disabled."
5344
  msgstr "注册被禁用。"
5345
 
5346
+ #: ../modules/mycred-module-hooks.php:2705
5347
  msgid "Referral Links"
5348
  msgstr "推介链接"
5349
 
5350
+ #: ../modules/mycred-module-hooks.php:2709
5351
  msgid "Assign numeric referral IDs to each user."
5352
  msgstr "分配数字推介ID给每个用户。"
5353
 
5354
+ #: ../modules/mycred-module-hooks.php:2710 ../modules/mycred-module-hooks.php:2716
5355
  msgid "Example"
5356
  msgstr "例如"
5357
 
5358
+ #: ../modules/mycred-module-hooks.php:2715
5359
  msgid "Assign usernames as IDs for each user."
5360
  msgstr "分配用户名作为ID给每个用户。"
5361
 
5362
+ #: ../modules/mycred-module-hooks.php:2719
5363
  msgid "IP Limit"
5364
  msgstr "IP限制"
5365
 
5366
+ #: ../modules/mycred-module-hooks.php:2723
5367
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5368
  msgstr "每个IP可获得奖励 %_plural% 的次数。使用零为无限。"
5369
 
5370
+ #: ../modules/mycred-module-hooks.php:2727 ../modules/mycred-module-hooks.php:2760
5371
  msgid "BuddyPress Profile"
5372
  msgstr "BuddyPress 个人资料"
5373
 
5374
+ #: ../modules/mycred-module-hooks.php:2730
5375
  msgid "Insert Link in users Profile"
5376
  msgstr "在用户的个人资料插入链接"
5377
 
5378
+ #: ../modules/mycred-module-hooks.php:2731
5379
  msgid ""
5380
  "Option to inser the referral link in users profiles. Links will only be "
5381
  "visible to users viewing their own profiles or administrators."
5382
  msgstr "选项用来在用户的个人资料中插入推介链接。链接只对管理员或用户自己查看他们的个人资料时可见。"
5383
 
5384
+ #: ../modules/mycred-module-hooks.php:2737
5385
  msgid "Leave empty to hide."
5386
  msgstr "留空则隐藏。"
5387
 
5388
+ #: ../modules/mycred-module-hooks.php:2740
5389
  msgid "Description"
5390
  msgstr "描述"
5391
 
5392
+ #: ../modules/mycred-module-hooks.php:2741
5393
  msgid "Optional description to insert under the link."
5394
  msgstr "(可选)插入到链接中的描述"
5395
 
5396
+ #: ../modules/mycred-module-hooks.php:2753
5397
  msgid "Profile Positioning"
5398
  msgstr "个人资料定位"
5399
 
5400
+ #: ../modules/mycred-module-hooks.php:2755
5401
  msgid ""
5402
  "You can move around the referral link on your users profile by changing the "
5403
  "position. Increase to move up, decrease to move down."
5404
  msgstr "您可以在个人资料中更改推荐链接的位置。增加则向上移动,减少则向下移动。"
5405
 
5406
+ #: ../modules/mycred-module-hooks.php:2756
5407
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5408
  msgstr "你不能移动推介链接到用户的\"基本\"资料信息上方!"
5409
 
5410
+ #: ../modules/mycred-module-hooks.php:2762
5411
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5412
  msgstr "需要启用 BuddyPress 个人资料扩展。"
5413
 
5432
  msgid "Entries"
5433
  msgstr "条目"
5434
 
5435
+ #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
5436
+ #: modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:574
5437
  msgid "Export"
5438
  msgstr "导出"
5439
 
5441
  msgid "Search results for"
5442
  msgstr "搜索结果"
5443
 
5444
+ #: ../modules/mycred-module-log.php:378
5445
  #, php-format
5446
  msgid "%s Log"
5447
  msgstr "%s 日志"
5448
 
5449
+ #: ../modules/mycred-module-log.php:506
5450
  msgid "Edit"
5451
  msgstr "编辑"
5452
 
5453
+ #: ../modules/mycred-module-log.php:547
5454
  msgid "Time"
5455
  msgstr "时间"
5456
 
5457
+ #: ../modules/mycred-module-log.php:551
5458
  msgid "Current Log Entry"
5459
  msgstr "当前日志条目"
5460
 
5461
+ #: ../modules/mycred-module-log.php:553
5462
  msgid "The current saved log entry"
5463
  msgstr "当前保存的日志条目"
5464
 
5465
+ #: ../modules/mycred-module-log.php:556
5466
  msgid "Adjust Log Entry"
5467
  msgstr "调整日志条目"
5468
 
5469
+ #: ../modules/mycred-module-log.php:558
5470
  msgid "The new log entry"
5471
  msgstr "新的日志条目"
5472
 
5473
+ #: ../modules/mycred-module-log.php:561
5474
  msgid "Update Log Entry"
5475
  msgstr "更新日志条目"
5476
 
5477
+ #: ../modules/mycred-module-log.php:628
5478
  #, php-format
5479
  msgid "My %s History"
5480
  msgstr "我的 %s 历史"
6160
  #: ../plugins/mycred-hook-wp-polls.php:19
6161
  #, php-format
6162
  msgid "Awards %_plural% for users voting in polls."
6163
+ msgstr "奖励 %_plural% 给在投票调查中投票的用户。奖励 %_plural% 给在投票调查中投票的用户。"
 
 
lang/mycred.pot CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: myCRED\n"
6
  "Report-Msgid-Bugs-To: http://mycred.me\n"
7
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
8
- "POT-Revision-Date: Mon Jul 28 2014 16:19:45 GMT+0200 (CEST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: Gabriel Sebastian Merovingi <support@mycred.me>\n"
11
  "Language-Team: LANGUAGE <support@mycred.me>\n"
@@ -46,8 +46,8 @@ msgstr ""
46
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
47
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
48
  #: /addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
49
- #: sell-content.php:364 ../addons/transfer/myCRED-addon-transfer.php:132 ..
50
- #: /includes/mycred-shortcodes.php:605
51
  msgid "Processing..."
52
  msgstr ""
53
 
@@ -143,7 +143,7 @@ msgid "Once per day (reset at midnight)"
143
  msgstr ""
144
 
145
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
146
- #: abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
147
  #: /addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
148
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
149
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
@@ -169,8 +169,8 @@ msgstr ""
169
  msgid "click to open"
170
  msgstr ""
171
 
172
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-
173
- #: banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:849
174
  msgid "Settings Updated"
175
  msgstr ""
176
 
@@ -375,135 +375,190 @@ msgstr ""
375
  msgid "in total"
376
  msgstr ""
377
 
378
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-
379
- #: banking.php:43 ../addons/banking/myCRED-addon-banking.php:44
380
  msgid "Banking"
381
  msgstr ""
382
 
383
- #: ../addons/banking/myCRED-addon-banking.php:103
384
- msgid "Compound Interest"
385
  msgstr ""
386
 
387
- #: ../addons/banking/myCRED-addon-banking.php:104
388
  #, php-format
389
  msgid ""
390
- "Apply an interest rate on your users %_plural% balances. Interest rate is "
391
- "annual and is compounded daily as long as this service is enabled. Positive "
392
- "interest rate leads to users gaining %_plural% while a negative interest "
393
- "rate will to users loosing %_plural%."
394
  msgstr ""
395
 
396
- #: ../addons/banking/myCRED-addon-banking.php:110
397
- msgid "Recurring Payouts"
 
398
  msgstr ""
399
 
400
- #: ../addons/banking/myCRED-addon-banking.php:111
401
  #, php-format
402
- msgid ""
403
- "Give your users %_plural% on a regular basis with the option to set the "
404
- "number of times you want this payout to run (cycles)."
405
  msgstr ""
406
 
407
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-
408
- #: addon-buy-creds.php:839 ../addons/buy-creds/myCRED-addon-buy-creds.php:935 ..
409
- #: /includes/mycred-admin.php:573 ../includes/mycred-network.php:148 ..
 
 
 
 
 
 
 
 
410
  #: /modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
411
- #: /modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:579 ..
412
  #: /modules/mycred-module-settings.php:312
413
  msgid "Access Denied"
414
  msgstr ""
415
 
416
- #: ../addons/banking/myCRED-addon-banking.php:167
417
  #, php-format
418
  msgid "%s Banking"
419
  msgstr ""
420
 
421
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.
422
- #: php:158
423
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
424
  msgstr ""
425
 
426
- #: ../addons/banking/myCRED-addon-banking.php:171
427
  msgid "WP-Cron deactivation detected!"
428
  msgstr ""
429
 
430
- #: ../addons/banking/myCRED-addon-banking.php:172
431
  msgid "Warning! This add-on requires WP - Cron to work."
432
  msgstr ""
433
 
434
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-
435
- #: addon-buy-creds.php:873 ../modules/mycred-module-hooks.php:196
436
  msgid "Enable"
437
  msgstr ""
438
 
439
- #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
440
  #: php:211
441
  msgid "Update Changes"
442
  msgstr ""
443
 
444
- #: ../addons/banking/abstracts/mycred-abstract-service.php:57
445
- msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
446
- msgstr ""
447
-
448
- #: ../addons/banking/abstracts/mycred-abstract-service.php:66
449
  msgid "This Service has no settings"
450
  msgstr ""
451
 
452
- #: ../addons/banking/abstracts/mycred-abstract-service.php:143
453
  msgid "Hourly"
454
  msgstr ""
455
 
456
- #: ../addons/banking/abstracts/mycred-abstract-service.php:147
457
  msgid "Daily"
458
  msgstr ""
459
 
460
- #: ../addons/banking/abstracts/mycred-abstract-service.php:151
461
  msgid "Weekly"
462
  msgstr ""
463
 
464
- #: ../addons/banking/abstracts/mycred-abstract-service.php:155
465
  msgid "Monthly"
466
  msgstr ""
467
 
468
- #: ../addons/banking/abstracts/mycred-abstract-service.php:159
469
  msgid "Quarterly"
470
  msgstr ""
471
 
472
- #: ../addons/banking/abstracts/mycred-abstract-service.php:163
473
  msgid "Semiannually"
474
  msgstr ""
475
 
476
- #: ../addons/banking/abstracts/mycred-abstract-service.php:167
477
  msgid "Annually"
478
  msgstr ""
479
 
480
- #: ../addons/banking/services/mycred-bank-service-interest.php:25
 
 
 
 
 
 
 
 
 
 
 
 
481
  msgid "%plural% interest rate payment"
482
  msgstr ""
483
 
484
- #: ../addons/banking/services/mycred-bank-service-interest.php:275
485
- msgid "Interest Rate"
486
  msgstr ""
487
 
488
- #: ../addons/banking/services/mycred-bank-service-interest.php:282
489
- msgid "Payed / Charged"
 
490
  msgstr ""
491
 
492
- #: ../addons/banking/services/mycred-bank-service-interest.php:288
493
- msgid "The interest rate can be either positive or negative and is compounded daily."
494
  msgstr ""
495
 
496
- #: ../addons/banking/services/mycred-bank-service-interest.php:291 ..
497
- #: /addons/coupons/myCRED-addon-coupons.php:392
498
- msgid "Minimum Balance"
 
499
  msgstr ""
500
 
501
- #: ../addons/banking/services/mycred-bank-service-interest.php:295
502
- msgid "The minimum requires balance for interest to apply."
503
  msgstr ""
504
 
505
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ..
506
- #: /addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
507
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
508
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
509
  #: /addons/gateway/carts/mycred-marketpress.php:391 ..
@@ -521,98 +576,123 @@ msgstr ""
521
  msgid "Log Template"
522
  msgstr ""
523
 
524
- #: ../addons/banking/services/mycred-bank-service-interest.php:305 ..
525
- #: /addons/banking/services/mycred-bank-service-payouts.php:259
526
- msgid "Run Time"
 
527
  msgstr ""
528
 
529
- #: ../addons/banking/services/mycred-bank-service-interest.php:309 ..
530
- #: /addons/banking/services/mycred-bank-service-payouts.php:263
531
- msgid ""
532
- "For large websites, if you are running into time out issues during payouts, "
533
- "you can set the number of seconds a process can run. Use zero for unlimited, "
534
- "but be careful especially if you are on a shared server."
535
  msgstr ""
536
 
537
- #: ../addons/banking/services/mycred-bank-service-payouts.php:21
538
- msgid "Daily %_plural%"
 
539
  msgstr ""
540
 
541
- #: ../addons/banking/services/mycred-bank-service-payouts.php:214
542
- msgid "Not yet run"
 
543
  msgstr ""
544
 
545
- #: ../addons/banking/services/mycred-bank-service-payouts.php:219
546
- msgid "Pay Users"
 
547
  msgstr ""
548
 
549
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
550
- #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
551
- #: creds.php:1520 ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ..
552
- #: /addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
553
- #: /includes/mycred-admin.php:726 ../includes/mycred-admin.php:771 ..
554
- #: /includes/mycred-shortcodes.php:908
555
- msgid "Amount"
556
  msgstr ""
557
 
558
- #: ../addons/banking/services/mycred-bank-service-payouts.php:224
559
- msgid "Can not be zero."
560
  msgstr ""
561
 
562
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ..
563
- #: /addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-
564
- #: module-hooks.php:2113
565
- msgid "Interval"
566
  msgstr ""
567
 
568
- #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ..
569
- #: /addons/banking/services/mycred-bank-service-payouts.php:242
570
- msgid "Cycles"
 
571
  msgstr ""
572
 
573
- #: ../addons/banking/services/mycred-bank-service-payouts.php:235
574
- msgid "Set to -1 for unlimited"
575
  msgstr ""
576
 
577
- #: ../addons/banking/services/mycred-bank-service-payouts.php:238
578
- msgid "Last Run / Activated"
579
  msgstr ""
580
 
581
- #: ../addons/banking/services/mycred-bank-service-payouts.php:241
582
- msgid ""
583
- "Select how often you want to award %_plural%. Note that when this service is "
584
- "enabled, the first payout will be in the beginning of the next period. So "
585
- "with a \"Daily\" interval, the first payout will occur first thing in the "
586
- "morning."
587
  msgstr ""
588
 
589
- #: ../addons/banking/services/mycred-bank-service-payouts.php:242
590
- msgid ""
591
- "Cycles let you choose how many intervals this service should run. Each time "
592
- "a cycle runs, the value will decrease until it hits zero, in which case this "
593
- "service will deactivate itself. Use -1 to run unlimited times."
594
  msgstr ""
595
 
596
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
597
- msgid "Important"
598
  msgstr ""
599
 
600
- #: ../addons/banking/services/mycred-bank-service-payouts.php:243
601
- msgid ""
602
- "You can always stop payouts by deactivating this service. Just remember that "
603
- "if you deactivate while there are cycles left, this service will continue on "
604
- "when it gets re-activated. Set cycles to zero to reset."
605
  msgstr ""
606
 
607
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
608
- #: /includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
609
- msgid "Excludes"
 
610
  msgstr ""
611
 
612
- #: ../addons/banking/services/mycred-bank-service-payouts.php:249
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
613
  msgid ""
614
- "Comma separated list of user IDs to exclude from this service. No spaces "
615
- "allowed!"
 
616
  msgstr ""
617
 
618
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
@@ -640,7 +720,7 @@ msgid "Edit Pending Payment"
640
  msgstr ""
641
 
642
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
643
- #: addon-buy-creds.php:1631
644
  msgid "No pending payments found"
645
  msgstr ""
646
 
@@ -649,23 +729,23 @@ msgid "Not found in Trash"
649
  msgstr ""
650
 
651
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
652
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595
653
  msgid "Transaction ID"
654
  msgstr ""
655
 
656
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
657
- #: addon-buy-creds.php:984
658
  msgid "Buyer"
659
  msgstr ""
660
 
661
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
662
- #: addon-buy-creds.php:1598 ../addons/buy-creds/abstracts/mycred-abstract-payment-
663
  #: gateway.php:563
664
  msgid "Cost"
665
  msgstr ""
666
 
667
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
668
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1596 ..
669
  #: /includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
670
  msgid "Gateway"
671
  msgstr ""
@@ -683,14 +763,14 @@ msgid "buyCRED Purchase Log"
683
  msgstr ""
684
 
685
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
686
- #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:845
687
  msgid "Purchase Log"
688
  msgstr ""
689
 
690
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
691
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
692
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
693
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:416
694
  msgid "Payments"
695
  msgstr ""
696
 
@@ -767,7 +847,7 @@ msgid "Allow users to buy %_plural% for content authors."
767
  msgstr ""
768
 
769
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
770
- #: hooks.php:2748
771
  msgid "Available Shortcodes"
772
  msgstr ""
773
 
@@ -776,156 +856,151 @@ msgstr ""
776
  msgid "%s Exchange Rate"
777
  msgstr ""
778
 
779
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:759 ../addons/sell-
780
- #: content/myCRED-addon-sell-content.php:113
781
- msgid "Leave empty to use the default value."
782
- msgstr ""
783
-
784
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
785
  msgid "Save Exchange Rates"
786
  msgstr ""
787
 
788
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
789
  msgid "Exchange rate override saved"
790
  msgstr ""
791
 
792
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:827
793
  msgid "Payment completed"
794
  msgstr ""
795
 
796
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
797
  #, php-format
798
  msgid "%s Payment Gateways"
799
  msgstr ""
800
 
801
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845 ../addons/buy-creds/myCRED-
802
- #: addon-buy-creds.php:992
803
  msgid "buyCRED Settings"
804
  msgstr ""
805
 
806
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
807
  msgid "Test Mode"
808
  msgstr ""
809
 
810
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
811
  msgid "Enabled"
812
  msgstr ""
813
 
814
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:871
815
  msgid "Disabled"
816
  msgstr ""
817
 
818
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
819
  msgid "Sandbox Mode"
820
  msgstr ""
821
 
822
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:884
823
  msgid "Enable for test purchases."
824
  msgstr ""
825
 
826
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:901 ../addons/gateway/event-
827
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
828
  msgid "Update Settings"
829
  msgstr ""
830
 
831
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
832
  msgid "More Gateways"
833
  msgstr ""
834
 
835
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
836
  #: 634
837
  msgid "Date"
838
  msgstr ""
839
 
840
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
841
  msgid "Payed"
842
  msgstr ""
843
 
844
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
845
  msgid "<strong>buy</strong>CRED Purchase Log"
846
  msgstr ""
847
 
848
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
849
  #: booking/mycred-eventespresso3.php:367
850
  msgid "Gateway Settings"
851
  msgstr ""
852
 
853
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1168 ../addons/sell-
854
- #: content/myCRED-addon-sell-content.php:1184
855
  msgid "No purchases found"
856
  msgstr ""
857
 
858
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1238 ../addons/buy-creds/myCRED-
859
- #: addon-buy-creds.php:1351
860
  msgid "This Add-on needs to setup before you can use this shortcode."
861
  msgstr ""
862
 
863
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1257 ../addons/buy-creds/myCRED-
864
- #: addon-buy-creds.php:1370
865
  msgid "No gateways installed."
866
  msgstr ""
867
 
868
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1258 ../addons/buy-creds/myCRED-
869
- #: addon-buy-creds.php:1371
870
  msgid "Gateway does not exist."
871
  msgstr ""
872
 
873
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1306
874
  msgid "Yourself"
875
  msgstr ""
876
 
877
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1372
878
  msgid "No active gateways found."
879
  msgstr ""
880
 
881
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1373
882
  msgid "The selected gateway is not active."
883
  msgstr ""
884
 
885
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1420
886
  #, php-format
887
  msgid "Buy with %gateway%"
888
  msgstr ""
889
 
890
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1426 ../addons/sell-
891
  #: content/myCRED-addon-sell-content.php:44
892
  msgid "Buy Now"
893
  msgstr ""
894
 
895
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1471
896
  msgid "No users found"
897
  msgstr ""
898
 
899
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1481
900
  msgid "To"
901
  msgstr ""
902
 
903
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1498
904
  msgid "Select Amount"
905
  msgstr ""
906
 
907
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1522
908
  msgid "min."
909
  msgstr ""
910
 
911
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1530
912
  msgid "Select Gateway"
913
  msgstr ""
914
 
915
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1571 ../addons/gateway/event-
916
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
917
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
918
  #: php:35
919
  msgid "Pay Now"
920
  msgstr ""
921
 
922
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1572 ../includes/mycred-install.
923
  #: php:515
924
  msgid "Cancel"
925
  msgstr ""
926
 
927
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ../addons/ranks/myCRED-
928
- #: addon-ranks.php:990 ../modules/mycred-module-log.php:372 ../modules/mycred-
929
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
930
  msgid "Actions"
931
  msgstr ""
@@ -965,12 +1040,12 @@ msgid "Cancel purchase"
965
  msgstr ""
966
 
967
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
968
- #: /includes/mycred-admin.php:720 ../includes/mycred-admin.php:757
969
  msgid "required"
970
  msgstr ""
971
 
972
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
973
- #: /includes/mycred-admin.php:722 ../includes/mycred-admin.php:759
974
  msgid "optional"
975
  msgstr ""
976
 
@@ -1353,7 +1428,7 @@ msgstr ""
1353
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1354
  #: /addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1355
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1356
- #: /modules/mycred-module-hooks.php:2713
1357
  msgid "Title"
1358
  msgstr ""
1359
 
@@ -1583,7 +1658,7 @@ msgstr ""
1583
  #: /addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1584
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1585
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1586
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:404 ..
1587
  #: /includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1588
  #: /includes/importers/mycred-cubepoints.php:365
1589
  msgid "Point Type"
@@ -1964,8 +2039,8 @@ msgid "Sent To"
1964
  msgstr ""
1965
 
1966
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
1967
- #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:766 ..
1968
- #: /includes/mycred-log.php:633 ../modules/mycred-module-log.php:544
1969
  msgid "User"
1970
  msgstr ""
1971
 
@@ -2089,7 +2164,7 @@ msgstr ""
2089
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2090
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2091
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2092
- #: php:412 ../includes/mycred-admin.php:614 ../includes/mycred-admin.php:767
2093
  msgid "Current Balance"
2094
  msgstr ""
2095
 
@@ -2203,7 +2278,7 @@ msgstr ""
2203
  #: /addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2204
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2205
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2206
- #: php:578 ../includes/mycred-shortcodes.php:913
2207
  msgid "Exchange Rate"
2208
  msgstr ""
2209
 
@@ -2419,10 +2494,6 @@ msgstr ""
2419
  msgid "How much is 1 %s worth in %s"
2420
  msgstr ""
2421
 
2422
- #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2423
- msgid "Payout"
2424
- msgstr ""
2425
-
2426
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2427
  msgid "Instructions"
2428
  msgstr ""
@@ -2493,8 +2564,8 @@ msgstr ""
2493
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2494
  #: /addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2495
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2496
- #: content/myCRED-addon-sell-content.php:452 ../addons/sell-content/myCRED-addon-
2497
- #: sell-content.php:662
2498
  msgid "Button Label"
2499
  msgstr ""
2500
 
@@ -2507,8 +2578,8 @@ msgstr ""
2507
  #: /addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2508
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2509
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2510
- #: content/myCRED-addon-sell-content.php:443 ../addons/sell-content/myCRED-addon-
2511
- #: sell-content.php:658
2512
  msgid "Price"
2513
  msgstr ""
2514
 
@@ -2528,12 +2599,12 @@ msgid "Log"
2528
  msgstr ""
2529
 
2530
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2531
- #: /includes/mycred-admin.php:735 ../includes/mycred-admin.php:772
2532
  msgid "Log Entry"
2533
  msgstr ""
2534
 
2535
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2536
- #: content/myCRED-addon-sell-content.php:466
2537
  msgid "Templates"
2538
  msgstr ""
2539
 
@@ -2609,7 +2680,7 @@ msgid "Reject"
2609
  msgstr ""
2610
 
2611
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2612
- #: /modules/mycred-module-log.php:504 ../modules/mycred-module-settings.php:488 ..
2613
  #: /modules/mycred-module-settings.php:507
2614
  msgid "Delete"
2615
  msgstr ""
@@ -3037,9 +3108,9 @@ msgid "No users found with this rank"
3037
  msgstr ""
3038
 
3039
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3040
- #: shortcodes.php:424 ../includes/mycred-shortcodes.php:427 ../includes/mycred-
3041
- #: shortcodes.php:489 ../includes/mycred-shortcodes.php:547 ../includes/mycred-
3042
- #: shortcodes.php:551 ../includes/mycred-shortcodes.php:555
3043
  msgid "error"
3044
  msgstr ""
3045
 
@@ -3059,139 +3130,139 @@ msgstr ""
3059
  msgid "Save Profit Share"
3060
  msgstr ""
3061
 
3062
- #: ../addons/sell-content/myCRED-addon-sell-content.php:158
3063
  msgid "Profit Share override saved"
3064
  msgstr ""
3065
 
3066
- #: ../addons/sell-content/myCRED-addon-sell-content.php:320
3067
  msgid "You can not buy this content."
3068
  msgstr ""
3069
 
3070
- #: ../addons/sell-content/myCRED-addon-sell-content.php:365
3071
  msgid "Error. Try Again"
3072
  msgstr ""
3073
 
3074
- #: ../addons/sell-content/myCRED-addon-sell-content.php:387
3075
  msgid "No Payout. Just charge."
3076
  msgstr ""
3077
 
3078
- #: ../addons/sell-content/myCRED-addon-sell-content.php:388
3079
  msgid "Pay Content Author."
3080
  msgstr ""
3081
 
3082
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394 ../includes/mycred-
3083
  #: overview.php:141 ../includes/mycred-overview.php:148
3084
  msgid "Sell Content"
3085
  msgstr ""
3086
 
3087
- #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3088
  msgid "Post Types"
3089
  msgstr ""
3090
 
3091
- #: ../addons/sell-content/myCRED-addon-sell-content.php:400
3092
  msgid "Comma separated list of post types that can be sold."
3093
  msgstr ""
3094
 
3095
- #: ../addons/sell-content/myCRED-addon-sell-content.php:430
3096
  msgid "Percentage to pay Author"
3097
  msgstr ""
3098
 
3099
- #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3100
  msgid ""
3101
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3102
  "authors are not paid."
3103
  msgstr ""
3104
 
3105
- #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3106
  msgid "Defaults"
3107
  msgstr ""
3108
 
3109
- #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3110
  msgid "Allow authors to change price."
3111
  msgstr ""
3112
 
3113
- #: ../addons/sell-content/myCRED-addon-sell-content.php:457
3114
  msgid "Allow authors to change button label."
3115
  msgstr ""
3116
 
3117
- #: ../addons/sell-content/myCRED-addon-sell-content.php:461
3118
  msgid "Purchases expire after"
3119
  msgstr ""
3120
 
3121
- #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3122
  msgid "Use zero for permanent sales."
3123
  msgstr ""
3124
 
3125
- #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3126
  msgid "For Visitors"
3127
  msgstr ""
3128
 
3129
- #: ../addons/sell-content/myCRED-addon-sell-content.php:474
3130
  #, php-format
3131
  msgid ""
3132
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3133
  "be logged in to buy content!"
3134
  msgstr ""
3135
 
3136
- #: ../addons/sell-content/myCRED-addon-sell-content.php:479
3137
  msgid "For Members"
3138
  msgstr ""
3139
 
3140
- #: ../addons/sell-content/myCRED-addon-sell-content.php:484 ../addons/sell-
3141
- #: content/myCRED-addon-sell-content.php:494
3142
  #, php-format
3143
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3144
  msgstr ""
3145
 
3146
- #: ../addons/sell-content/myCRED-addon-sell-content.php:489
3147
  msgid "For members that can not afford to buy"
3148
  msgstr ""
3149
 
3150
- #: ../addons/sell-content/myCRED-addon-sell-content.php:498
3151
  msgid "Log template for Purchases"
3152
  msgstr ""
3153
 
3154
- #: ../addons/sell-content/myCRED-addon-sell-content.php:505
3155
  msgid "Log template for Sales"
3156
  msgstr ""
3157
 
3158
- #: ../addons/sell-content/myCRED-addon-sell-content.php:557
3159
  #, php-format
3160
  msgid "%s Sell This"
3161
  msgstr ""
3162
 
3163
- #: ../addons/sell-content/myCRED-addon-sell-content.php:611
3164
  #, php-format
3165
  msgid "%s Sell Content needs to be setup before you can use this feature."
3166
  msgstr ""
3167
 
3168
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3169
  msgid "Setup add-on"
3170
  msgstr ""
3171
 
3172
- #: ../addons/sell-content/myCRED-addon-sell-content.php:614
3173
  msgid "Lets do it"
3174
  msgstr ""
3175
 
3176
- #: ../addons/sell-content/myCRED-addon-sell-content.php:652
3177
  #, php-format
3178
  msgid "Enable sale of this %s"
3179
  msgstr ""
3180
 
3181
- #: ../addons/sell-content/myCRED-addon-sell-content.php:666
3182
  msgid "Purchase expires after"
3183
  msgstr ""
3184
 
3185
- #: ../addons/sell-content/myCRED-addon-sell-content.php:992
3186
  msgid "Thank you for your purchase!"
3187
  msgstr ""
3188
 
3189
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1080 ../addons/sell-
3190
- #: content/myCRED-addon-sell-content.php:1166
3191
  msgid "The following content is set for sale:"
3192
  msgstr ""
3193
 
3194
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1226
3195
  msgid "Purchased"
3196
  msgstr ""
3197
 
@@ -3204,7 +3275,7 @@ msgid "You have exceeded your %limit% transfer limit."
3204
  msgstr ""
3205
 
3206
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3207
- #: php:2295
3208
  msgid "Transfer"
3209
  msgstr ""
3210
 
@@ -3239,7 +3310,7 @@ msgid ""
3239
  msgstr ""
3240
 
3241
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3242
- #: php:1010
3243
  msgid "Insufficient Funds. Please try a lower amount."
3244
  msgstr ""
3245
 
@@ -3453,97 +3524,92 @@ msgstr ""
3453
  msgid "Failed to update this uses balance."
3454
  msgstr ""
3455
 
3456
- #: ../includes/mycred-admin.php:404
3457
  msgid "Excluded"
3458
  msgstr ""
3459
 
3460
- #: ../includes/mycred-admin.php:414
3461
  #, php-format
3462
  msgid "Total: %s"
3463
  msgstr ""
3464
 
3465
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:254 ..
3466
- #: /modules/mycred-module-log.php:255
3467
- msgid "History"
3468
- msgstr ""
3469
-
3470
- #: ../includes/mycred-admin.php:423
3471
  msgid "Adjust"
3472
  msgstr ""
3473
 
3474
- #: ../includes/mycred-admin.php:461 ../includes/mycred-admin.php:462
3475
  msgid "Edit Balance"
3476
  msgstr ""
3477
 
3478
- #: ../includes/mycred-admin.php:480
3479
  msgid "Profile"
3480
  msgstr ""
3481
 
3482
- #: ../includes/mycred-admin.php:487
3483
  msgid "Extended Profile"
3484
  msgstr ""
3485
 
3486
- #: ../includes/mycred-admin.php:577
3487
  #, php-format
3488
  msgid "This user is excluded from using %s"
3489
  msgstr ""
3490
 
3491
- #: ../includes/mycred-admin.php:600
3492
  msgid "Edit User"
3493
  msgstr ""
3494
 
3495
- #: ../includes/mycred-admin.php:602
3496
  msgctxt "user"
3497
  msgid "Add New"
3498
  msgstr ""
3499
 
3500
- #: ../includes/mycred-admin.php:604
3501
  msgctxt "user"
3502
  msgid "Add Existing"
3503
  msgstr ""
3504
 
3505
- #: ../includes/mycred-admin.php:615
3506
  #, php-format
3507
  msgid "Total %s Accumulated"
3508
  msgstr ""
3509
 
3510
- #: ../includes/mycred-admin.php:616
3511
  #, php-format
3512
  msgid "Total %s Spent"
3513
  msgstr ""
3514
 
3515
- #: ../includes/mycred-admin.php:627
3516
  msgid "View History"
3517
  msgstr ""
3518
 
3519
- #: ../includes/mycred-admin.php:628
3520
  msgid "Exclude User"
3521
  msgstr ""
3522
 
3523
- #: ../includes/mycred-admin.php:632
3524
  msgid "Adjust Balance"
3525
  msgstr ""
3526
 
3527
- #: ../includes/mycred-admin.php:641
3528
  msgid ""
3529
  "Warning! Excluding this user will result in their balance being deleted "
3530
  "along with any entries currently in your log! This can not be undone!"
3531
  msgstr ""
3532
 
3533
- #: ../includes/mycred-admin.php:699
3534
  #, php-format
3535
  msgid "%singular% balance"
3536
  msgstr ""
3537
 
3538
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:773
3539
  msgid "Update Balance"
3540
  msgstr ""
3541
 
3542
- #: ../includes/mycred-admin.php:765
3543
  msgid "ID"
3544
  msgstr ""
3545
 
3546
- #: ../includes/mycred-admin.php:771
3547
  msgid "A positive or negative value"
3548
  msgstr ""
3549
 
@@ -3595,298 +3661,298 @@ msgstr ""
3595
  msgid "Available Template Tags:"
3596
  msgstr ""
3597
 
3598
- #: ../includes/mycred-functions.php:1655
3599
  msgid "Entire Log"
3600
  msgstr ""
3601
 
3602
- #: ../includes/mycred-functions.php:1660 ../includes/mycred-functions.php:1661
3603
  msgid "Displayed Rows"
3604
  msgstr ""
3605
 
3606
- #: ../includes/mycred-functions.php:1668
3607
  msgid "Search Results"
3608
  msgstr ""
3609
 
3610
- #: ../includes/mycred-functions.php:1669
3611
  msgid "My Entire Log"
3612
  msgstr ""
3613
 
3614
- #: ../includes/mycred-functions.php:1790
3615
  msgid "ref empty"
3616
  msgstr ""
3617
 
3618
- #: ../includes/mycred-functions.php:1798
3619
  msgid "incorrect user id format"
3620
  msgstr ""
3621
 
3622
- #: ../includes/mycred-functions.php:1811
3623
  msgid "incorrect unix timestamp (from):"
3624
  msgstr ""
3625
 
3626
- #: ../includes/mycred-functions.php:1820
3627
  msgid "incorrect unix timestamp (to):"
3628
  msgstr ""
3629
 
3630
- #: ../includes/mycred-functions.php:2182
3631
  msgid "Website Registration"
3632
  msgstr ""
3633
 
3634
- #: ../includes/mycred-functions.php:2183
3635
  msgid "Website Visit"
3636
  msgstr ""
3637
 
3638
- #: ../includes/mycred-functions.php:2184
3639
  msgid "Viewing Content (Member)"
3640
  msgstr ""
3641
 
3642
- #: ../includes/mycred-functions.php:2185
3643
  msgid "Viewing Content (Author)"
3644
  msgstr ""
3645
 
3646
- #: ../includes/mycred-functions.php:2186
3647
  msgid "Logging in"
3648
  msgstr ""
3649
 
3650
- #: ../includes/mycred-functions.php:2187
3651
  msgid "Publishing Content"
3652
  msgstr ""
3653
 
3654
- #: ../includes/mycred-functions.php:2188 ../modules/mycred-module-hooks.php:1421
3655
  msgid "Approved Comment"
3656
  msgstr ""
3657
 
3658
- #: ../includes/mycred-functions.php:2189
3659
  msgid "Unapproved Comment"
3660
  msgstr ""
3661
 
3662
- #: ../includes/mycred-functions.php:2190
3663
  msgid "SPAM Comment"
3664
  msgstr ""
3665
 
3666
- #: ../includes/mycred-functions.php:2191
3667
  msgid "Deleted Comment"
3668
  msgstr ""
3669
 
3670
- #: ../includes/mycred-functions.php:2192
3671
  msgid "Link Click"
3672
  msgstr ""
3673
 
3674
- #: ../includes/mycred-functions.php:2193
3675
  msgid "Watching Video"
3676
  msgstr ""
3677
 
3678
- #: ../includes/mycred-functions.php:2194
3679
  msgid "Visitor Referral"
3680
  msgstr ""
3681
 
3682
- #: ../includes/mycred-functions.php:2195
3683
  msgid "Signup Referral"
3684
  msgstr ""
3685
 
3686
- #: ../includes/mycred-functions.php:2199
3687
  msgid "New Profile Update"
3688
  msgstr ""
3689
 
3690
- #: ../includes/mycred-functions.php:2200
3691
  msgid "Avatar Upload"
3692
  msgstr ""
3693
 
3694
- #: ../includes/mycred-functions.php:2201
3695
  msgid "New Friendship"
3696
  msgstr ""
3697
 
3698
- #: ../includes/mycred-functions.php:2202
3699
  msgid "Ended Friendship"
3700
  msgstr ""
3701
 
3702
- #: ../includes/mycred-functions.php:2203
3703
  msgid "New Profile Comment"
3704
  msgstr ""
3705
 
3706
- #: ../includes/mycred-functions.php:2204
3707
  msgid "Profile Comment Deletion"
3708
  msgstr ""
3709
 
3710
- #: ../includes/mycred-functions.php:2205
3711
  msgid "New Message"
3712
  msgstr ""
3713
 
3714
- #: ../includes/mycred-functions.php:2206
3715
  msgid "Sending Gift"
3716
  msgstr ""
3717
 
3718
- #: ../includes/mycred-functions.php:2207
3719
  msgid "New Group"
3720
  msgstr ""
3721
 
3722
- #: ../includes/mycred-functions.php:2208
3723
  msgid "Deleted Group"
3724
  msgstr ""
3725
 
3726
- #: ../includes/mycred-functions.php:2209
3727
  msgid "New Group Forum Topic"
3728
  msgstr ""
3729
 
3730
- #: ../includes/mycred-functions.php:2210
3731
  msgid "Edit Group Forum Topic"
3732
  msgstr ""
3733
 
3734
- #: ../includes/mycred-functions.php:2211
3735
  msgid "New Group Forum Post"
3736
  msgstr ""
3737
 
3738
- #: ../includes/mycred-functions.php:2212
3739
  msgid "Edit Group Forum Post"
3740
  msgstr ""
3741
 
3742
- #: ../includes/mycred-functions.php:2213
3743
  msgid "Joining Group"
3744
  msgstr ""
3745
 
3746
- #: ../includes/mycred-functions.php:2214
3747
  msgid "Leaving Group"
3748
  msgstr ""
3749
 
3750
- #: ../includes/mycred-functions.php:2215
3751
  msgid "New Group Avatar"
3752
  msgstr ""
3753
 
3754
- #: ../includes/mycred-functions.php:2216
3755
  msgid "New Group Comment"
3756
  msgstr ""
3757
 
3758
- #: ../includes/mycred-functions.php:2220 ../plugins/mycred-hook-buddypress-media.
3759
  #: php:166
3760
  msgid "Photo Upload"
3761
  msgstr ""
3762
 
3763
- #: ../includes/mycred-functions.php:2221 ../plugins/mycred-hook-buddypress-media.
3764
  #: php:176
3765
  msgid "Video Upload"
3766
  msgstr ""
3767
 
3768
- #: ../includes/mycred-functions.php:2222 ../plugins/mycred-hook-buddypress-media.
3769
  #: php:186
3770
  msgid "Music Upload"
3771
  msgstr ""
3772
 
3773
- #: ../includes/mycred-functions.php:2226
3774
  msgid "New Link"
3775
  msgstr ""
3776
 
3777
- #: ../includes/mycred-functions.php:2227
3778
  msgid "Link Voting"
3779
  msgstr ""
3780
 
3781
- #: ../includes/mycred-functions.php:2228
3782
  msgid "Link Update"
3783
  msgstr ""
3784
 
3785
- #: ../includes/mycred-functions.php:2232
3786
  msgid "New Forum (bbPress)"
3787
  msgstr ""
3788
 
3789
- #: ../includes/mycred-functions.php:2233
3790
  msgid "New Forum Topic (bbPress)"
3791
  msgstr ""
3792
 
3793
- #: ../includes/mycred-functions.php:2234
3794
  msgid "Favorited Topic (bbPress)"
3795
  msgstr ""
3796
 
3797
- #: ../includes/mycred-functions.php:2235
3798
  msgid "New Topic Reply (bbPress)"
3799
  msgstr ""
3800
 
3801
- #: ../includes/mycred-functions.php:2239
3802
  msgid "Form Submission (Contact Form 7)"
3803
  msgstr ""
3804
 
3805
- #: ../includes/mycred-functions.php:2242
3806
  msgid "Form Submission (Gravity Form)"
3807
  msgstr ""
3808
 
3809
- #: ../includes/mycred-functions.php:2245
3810
  msgid "New Forum Topic (SimplePress)"
3811
  msgstr ""
3812
 
3813
- #: ../includes/mycred-functions.php:2246
3814
  msgid "New Forum Post (SimplePress)"
3815
  msgstr ""
3816
 
3817
- #: ../includes/mycred-functions.php:2250
3818
  msgid "Poll Voting"
3819
  msgstr ""
3820
 
3821
- #: ../includes/mycred-functions.php:2253
3822
  msgid "Sending an Invite"
3823
  msgstr ""
3824
 
3825
- #: ../includes/mycred-functions.php:2254
3826
  msgid "Accepting an Invite"
3827
  msgstr ""
3828
 
3829
- #: ../includes/mycred-functions.php:2260
3830
  msgid "Banking Payout"
3831
  msgstr ""
3832
 
3833
- #: ../includes/mycred-functions.php:2263
3834
  msgid "buyCRED Purchase (PayPal Standard)"
3835
  msgstr ""
3836
 
3837
- #: ../includes/mycred-functions.php:2264
3838
  msgid "buyCRED Purchase (Skrill)"
3839
  msgstr ""
3840
 
3841
- #: ../includes/mycred-functions.php:2265
3842
  msgid "buyCRED Purchase (Zombaio)"
3843
  msgstr ""
3844
 
3845
- #: ../includes/mycred-functions.php:2266
3846
  msgid "buyCRED Purchase (NETBilling)"
3847
  msgstr ""
3848
 
3849
- #: ../includes/mycred-functions.php:2267
3850
  msgid "buyCRED Purchase (BitPay)"
3851
  msgstr ""
3852
 
3853
- #: ../includes/mycred-functions.php:2272
3854
  msgid "Coupon Purchase"
3855
  msgstr ""
3856
 
3857
- #: ../includes/mycred-functions.php:2275
3858
  msgid "Store Purchase (WooCommerce)"
3859
  msgstr ""
3860
 
3861
- #: ../includes/mycred-functions.php:2276
3862
  msgid "Store Purchase (MarketPress)"
3863
  msgstr ""
3864
 
3865
- #: ../includes/mycred-functions.php:2277
3866
  msgid "Store Purchase (WP E-Commerce)"
3867
  msgstr ""
3868
 
3869
- #: ../includes/mycred-functions.php:2282
3870
  msgid "Event Payment (Event Espresso)"
3871
  msgstr ""
3872
 
3873
- #: ../includes/mycred-functions.php:2283
3874
  msgid "Event Sale (Event Espresso)"
3875
  msgstr ""
3876
 
3877
- #: ../includes/mycred-functions.php:2287
3878
  msgid "Event Payment (Events Manager)"
3879
  msgstr ""
3880
 
3881
- #: ../includes/mycred-functions.php:2288
3882
  msgid "Event Sale (Events Manager)"
3883
  msgstr ""
3884
 
3885
- #: ../includes/mycred-functions.php:2292
3886
  msgid "Content Purchase / Sale"
3887
  msgstr ""
3888
 
3889
- #: ../includes/mycred-functions.php:2299
3890
  msgid "Manual Adjustment by Admin"
3891
  msgstr ""
3892
 
@@ -4050,6 +4116,10 @@ msgid ""
4050
  "disable."
4051
  msgstr ""
4052
 
 
 
 
 
4053
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4054
  msgid "Exclude those who can \"Edit Settings\"."
4055
  msgstr ""
@@ -4155,7 +4225,7 @@ msgstr ""
4155
  msgid "Entry"
4156
  msgstr ""
4157
 
4158
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:466
4159
  msgid "User Missing"
4160
  msgstr ""
4161
 
@@ -4335,92 +4405,92 @@ msgid ""
4335
  "about your setup!"
4336
  msgstr ""
4337
 
4338
- #: ../includes/mycred-shortcodes.php:153
4339
  msgid "Leaderboard is empty."
4340
  msgstr ""
4341
 
4342
- #: ../includes/mycred-shortcodes.php:424 ../includes/mycred-shortcodes.php:547
4343
  msgid "Amount missing!"
4344
  msgstr ""
4345
 
4346
- #: ../includes/mycred-shortcodes.php:427 ../includes/mycred-shortcodes.php:555
4347
  msgid "Log Template Missing!"
4348
  msgstr ""
4349
 
4350
- #: ../includes/mycred-shortcodes.php:489
4351
  msgid "Anchor missing URL!"
4352
  msgstr ""
4353
 
4354
- #: ../includes/mycred-shortcodes.php:551
4355
  msgid "User ID missing for recipient."
4356
  msgstr ""
4357
 
4358
- #: ../includes/mycred-shortcodes.php:606
4359
  msgid "Sent"
4360
  msgstr ""
4361
 
4362
- #: ../includes/mycred-shortcodes.php:607
4363
  msgid "Error - Try Again"
4364
  msgstr ""
4365
 
4366
- #: ../includes/mycred-shortcodes.php:716
4367
  msgid "A video ID is required for this shortcode"
4368
  msgstr ""
4369
 
4370
- #: ../includes/mycred-shortcodes.php:862 ../includes/mycred-shortcodes.php:956
4371
  msgid "Point types not found."
4372
  msgstr ""
4373
 
4374
- #: ../includes/mycred-shortcodes.php:868 ../includes/mycred-shortcodes.php:876 ..
4375
- #: /includes/mycred-shortcodes.php:968 ../includes/mycred-shortcodes.php:988
4376
  #, php-format
4377
  msgid "You are excluded from using %s."
4378
  msgstr ""
4379
 
4380
- #: ../includes/mycred-shortcodes.php:872 ../includes/mycred-shortcodes.php:978
4381
  msgid "Your balance is too low to use this feature."
4382
  msgstr ""
4383
 
4384
- #: ../includes/mycred-shortcodes.php:893
4385
  #, php-format
4386
  msgid "Convert <span>%s</span> to <span>%s</span>"
4387
  msgstr ""
4388
 
4389
- #: ../includes/mycred-shortcodes.php:902
4390
  #, php-format
4391
  msgid "Your current %s balance"
4392
  msgstr ""
4393
 
4394
- #: ../includes/mycred-shortcodes.php:910
4395
  #, php-format
4396
  msgid "Minimum %s"
4397
  msgstr ""
4398
 
4399
- #: ../includes/mycred-shortcodes.php:914
4400
  #, php-format
4401
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4402
  msgstr ""
4403
 
4404
- #: ../includes/mycred-shortcodes.php:920
4405
  msgid "Exchange"
4406
  msgstr ""
4407
 
4408
- #: ../includes/mycred-shortcodes.php:1001
4409
  #, php-format
4410
  msgid "You must exchange at least %s!"
4411
  msgstr ""
4412
 
4413
- #: ../includes/mycred-shortcodes.php:1023
4414
  #, php-format
4415
  msgid "Exchange from %s"
4416
  msgstr ""
4417
 
4418
- #: ../includes/mycred-shortcodes.php:1035
4419
  #, php-format
4420
  msgid "Exchange to %s"
4421
  msgstr ""
4422
 
4423
- #: ../includes/mycred-shortcodes.php:1043
4424
  #, php-format
4425
  msgid "You have successfully exchanged %s into %s."
4426
  msgstr ""
@@ -4717,6 +4787,10 @@ msgstr ""
4717
  msgid "Give your users badges based on their interaction with your website."
4718
  msgstr ""
4719
 
 
 
 
 
4720
  #: ../modules/mycred-module-addons.php:169
4721
  msgid ""
4722
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
@@ -5017,7 +5091,7 @@ msgstr ""
5017
  #: /modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5018
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5019
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5020
- #: 2623 ../modules/mycred-module-hooks.php:2652 ../plugins/mycred-hook-badgeOS.
5021
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5022
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5023
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
@@ -5079,8 +5153,8 @@ msgstr ""
5079
  msgid "%plural% for viewing %s"
5080
  msgstr ""
5081
 
5082
- #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2631
5083
- #: ../modules/mycred-module-hooks.php:2660 ../plugins/mycred-hook-invite-anyone.
5084
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5085
  msgid "Limit"
5086
  msgstr ""
@@ -5162,7 +5236,7 @@ msgstr ""
5162
  msgid "Custom tags: %url%, %title% or %id%."
5163
  msgstr ""
5164
 
5165
- #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2734
5166
  msgid "Note!"
5167
  msgstr ""
5168
 
@@ -5236,91 +5310,91 @@ msgstr ""
5236
  msgid "Link"
5237
  msgstr ""
5238
 
5239
- #: ../modules/mycred-module-hooks.php:2617
5240
  msgid "Referring Visitors"
5241
  msgstr ""
5242
 
5243
- #: ../modules/mycred-module-hooks.php:2641 ../modules/mycred-module-hooks.php:2670
5244
  msgid "The number of referrals each member can make. Use zero for unlimited."
5245
  msgstr ""
5246
 
5247
- #: ../modules/mycred-module-hooks.php:2645 ../modules/mycred-module-hooks.php:2674
5248
  msgid "Referring Signups"
5249
  msgstr ""
5250
 
5251
- #: ../modules/mycred-module-hooks.php:2649
5252
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5253
  msgstr ""
5254
 
5255
- #: ../modules/mycred-module-hooks.php:2676
5256
  msgid "Registrations are disabled."
5257
  msgstr ""
5258
 
5259
- #: ../modules/mycred-module-hooks.php:2683
5260
  msgid "Referral Links"
5261
  msgstr ""
5262
 
5263
- #: ../modules/mycred-module-hooks.php:2687
5264
  msgid "Assign numeric referral IDs to each user."
5265
  msgstr ""
5266
 
5267
- #: ../modules/mycred-module-hooks.php:2688 ../modules/mycred-module-hooks.php:2694
5268
  msgid "Example"
5269
  msgstr ""
5270
 
5271
- #: ../modules/mycred-module-hooks.php:2693
5272
  msgid "Assign usernames as IDs for each user."
5273
  msgstr ""
5274
 
5275
- #: ../modules/mycred-module-hooks.php:2697
5276
  msgid "IP Limit"
5277
  msgstr ""
5278
 
5279
- #: ../modules/mycred-module-hooks.php:2701
5280
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5281
  msgstr ""
5282
 
5283
- #: ../modules/mycred-module-hooks.php:2705 ../modules/mycred-module-hooks.php:2738
5284
  msgid "BuddyPress Profile"
5285
  msgstr ""
5286
 
5287
- #: ../modules/mycred-module-hooks.php:2708
5288
  msgid "Insert Link in users Profile"
5289
  msgstr ""
5290
 
5291
- #: ../modules/mycred-module-hooks.php:2709
5292
  msgid ""
5293
  "Option to inser the referral link in users profiles. Links will only be "
5294
  "visible to users viewing their own profiles or administrators."
5295
  msgstr ""
5296
 
5297
- #: ../modules/mycred-module-hooks.php:2715
5298
  msgid "Leave empty to hide."
5299
  msgstr ""
5300
 
5301
- #: ../modules/mycred-module-hooks.php:2718
5302
  msgid "Description"
5303
  msgstr ""
5304
 
5305
- #: ../modules/mycred-module-hooks.php:2719
5306
  msgid "Optional description to insert under the link."
5307
  msgstr ""
5308
 
5309
- #: ../modules/mycred-module-hooks.php:2731
5310
  msgid "Profile Positioning"
5311
  msgstr ""
5312
 
5313
- #: ../modules/mycred-module-hooks.php:2733
5314
  msgid ""
5315
  "You can move around the referral link on your users profile by changing the "
5316
  "position. Increase to move up, decrease to move down."
5317
  msgstr ""
5318
 
5319
- #: ../modules/mycred-module-hooks.php:2734
5320
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5321
  msgstr ""
5322
 
5323
- #: ../modules/mycred-module-hooks.php:2740
5324
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5325
  msgstr ""
5326
 
@@ -5345,8 +5419,8 @@ msgstr ""
5345
  msgid "Entries"
5346
  msgstr ""
5347
 
5348
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:385 ..
5349
- #: /modules/mycred-module-log.php:629 ../modules/mycred-module-settings.php:574
5350
  msgid "Export"
5351
  msgstr ""
5352
 
@@ -5354,40 +5428,40 @@ msgstr ""
5354
  msgid "Search results for"
5355
  msgstr ""
5356
 
5357
- #: ../modules/mycred-module-log.php:379
5358
  #, php-format
5359
  msgid "%s Log"
5360
  msgstr ""
5361
 
5362
- #: ../modules/mycred-module-log.php:504
5363
  msgid "Edit"
5364
  msgstr ""
5365
 
5366
- #: ../modules/mycred-module-log.php:545
5367
  msgid "Time"
5368
  msgstr ""
5369
 
5370
- #: ../modules/mycred-module-log.php:549
5371
  msgid "Current Log Entry"
5372
  msgstr ""
5373
 
5374
- #: ../modules/mycred-module-log.php:551
5375
  msgid "The current saved log entry"
5376
  msgstr ""
5377
 
5378
- #: ../modules/mycred-module-log.php:554
5379
  msgid "Adjust Log Entry"
5380
  msgstr ""
5381
 
5382
- #: ../modules/mycred-module-log.php:556
5383
  msgid "The new log entry"
5384
  msgstr ""
5385
 
5386
- #: ../modules/mycred-module-log.php:559
5387
  msgid "Update Log Entry"
5388
  msgstr ""
5389
 
5390
- #: ../modules/mycred-module-log.php:623
5391
  #, php-format
5392
  msgid "My %s History"
5393
  msgstr ""
@@ -6072,7 +6146,3 @@ msgstr ""
6072
  #, php-format
6073
  msgid "Awards %_plural% for users voting in polls."
6074
  msgstr ""
6075
- ycred-hook-wp-polls.php:19
6076
- #, php-format
6077
- msgid "Awards %_plural% for users voting in polls."
6078
- msgstr ""
5
  "Project-Id-Version: myCRED\n"
6
  "Report-Msgid-Bugs-To: http://mycred.me\n"
7
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
8
+ "POT-Revision-Date: Thu Aug 07 2014 20:34:00 GMT+0200 (CEST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: Gabriel Sebastian Merovingi <support@mycred.me>\n"
11
  "Language-Team: LANGUAGE <support@mycred.me>\n"
46
  #: ../mycred.php:630 ../mycred.php:654 ../mycred.php:672 ../addons/badges/myCRED-
47
  #: addon-badges.php:425 ../addons/ranks/myCRED-addon-ranks.php:229 ..
48
  #: /addons/ranks/myCRED-addon-ranks.php:918 ../addons/sell-content/myCRED-addon-
49
+ #: sell-content.php:370 ../addons/transfer/myCRED-addon-transfer.php:132 ..
50
+ #: /includes/mycred-shortcodes.php:607
51
  msgid "Processing..."
52
  msgstr ""
53
 
143
  msgstr ""
144
 
145
  #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
146
+ #: abstract-service.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:629 ..
147
  #: /addons/buy-creds/myCRED-addon-buy-creds.php:650 ../addons/buy-
148
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
149
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
169
  msgid "click to open"
170
  msgstr ""
171
 
172
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/buy-creds/myCRED-addon-
173
+ #: buy-creds.php:847
174
  msgid "Settings Updated"
175
  msgstr ""
176
 
375
  msgid "in total"
376
  msgstr ""
377
 
378
+ #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
379
+ #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
380
  msgid "Banking"
381
  msgstr ""
382
 
383
+ #: ../addons/banking/myCRED-addon-banking.php:158
384
+ msgid "Central Banking"
385
  msgstr ""
386
 
387
+ #: ../addons/banking/myCRED-addon-banking.php:159
388
  #, php-format
389
  msgid ""
390
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
391
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
392
+ "deposited back into this account."
 
393
  msgstr ""
394
 
395
+ #: ../addons/banking/myCRED-addon-banking.php:165 ..
396
+ #: /addons/banking/services/mycred-bank-service-interest.php:512
397
+ msgid "Compound Interest"
398
  msgstr ""
399
 
400
+ #: ../addons/banking/myCRED-addon-banking.php:166
401
  #, php-format
402
+ msgid "Apply a positive or negative interest rate on your users %_plural% balances."
 
 
403
  msgstr ""
404
 
405
+ #: ../addons/banking/myCRED-addon-banking.php:172
406
+ msgid "Recurring Payouts"
407
+ msgstr ""
408
+
409
+ #: ../addons/banking/myCRED-addon-banking.php:173
410
+ msgid "Setup mass %_singular% payouts for your users."
411
+ msgstr ""
412
+
413
+ #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
414
+ #: addon-buy-creds.php:837 ../addons/buy-creds/myCRED-addon-buy-creds.php:933 ..
415
+ #: /includes/mycred-admin.php:555 ../includes/mycred-network.php:148 ..
416
  #: /modules/mycred-module-addons.php:277 ../modules/mycred-module-hooks.php:171 ..
417
+ #: /modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:581 ..
418
  #: /modules/mycred-module-settings.php:312
419
  msgid "Access Denied"
420
  msgstr ""
421
 
422
+ #: ../addons/banking/myCRED-addon-banking.php:225
423
  #, php-format
424
  msgid "%s Banking"
425
  msgstr ""
426
 
427
+ #: ../addons/banking/myCRED-addon-banking.php:228
428
+ msgid "Your banking setup for %plural%."
 
429
  msgstr ""
430
 
431
+ #: ../addons/banking/myCRED-addon-banking.php:231
432
  msgid "WP-Cron deactivation detected!"
433
  msgstr ""
434
 
435
+ #: ../addons/banking/myCRED-addon-banking.php:232
436
  msgid "Warning! This add-on requires WP - Cron to work."
437
  msgstr ""
438
 
439
+ #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
440
+ #: addon-buy-creds.php:871 ../modules/mycred-module-hooks.php:196
441
  msgid "Enable"
442
  msgstr ""
443
 
444
+ #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
445
  #: php:211
446
  msgid "Update Changes"
447
  msgstr ""
448
 
449
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:79
 
 
 
 
450
  msgid "This Service has no settings"
451
  msgstr ""
452
 
453
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:233
454
  msgid "Hourly"
455
  msgstr ""
456
 
457
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:237
458
  msgid "Daily"
459
  msgstr ""
460
 
461
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:241
462
  msgid "Weekly"
463
  msgstr ""
464
 
465
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:245
466
  msgid "Monthly"
467
  msgstr ""
468
 
469
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:249
470
  msgid "Quarterly"
471
  msgstr ""
472
 
473
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:253
474
  msgid "Semiannually"
475
  msgstr ""
476
 
477
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:257
478
  msgid "Annually"
479
  msgstr ""
480
 
481
+ #: ../addons/banking/services/mycred-bank-service-central.php:105
482
+ msgid "Bank User"
483
+ msgstr ""
484
+
485
+ #: ../addons/banking/services/mycred-bank-service-central.php:109
486
+ msgid "The user ID of the central bank account. This user can not be excluded!"
487
+ msgstr ""
488
+
489
+ #: ../addons/banking/services/mycred-bank-service-central.php:112
490
+ msgid "Ignore Manual Adjustments"
491
+ msgstr ""
492
+
493
+ #: ../addons/banking/services/mycred-bank-service-interest.php:24
494
  msgid "%plural% interest rate payment"
495
  msgstr ""
496
 
497
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
498
+ msgid "Compounding Interest"
499
  msgstr ""
500
 
501
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
502
+ #, php-format
503
+ msgid "%d Users are left to process."
504
  msgstr ""
505
 
506
+ #: ../addons/banking/services/mycred-bank-service-interest.php:388
507
+ msgid "Payout History"
508
  msgstr ""
509
 
510
+ #: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
511
+ #: /addons/banking/services/mycred-bank-service-interest.php:409 ..
512
+ #: /addons/banking/services/mycred-bank-service-payouts.php:249
513
+ msgid "Run Count"
514
  msgstr ""
515
 
516
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
517
+ msgid "Last Payout"
518
  msgstr ""
519
 
520
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
521
+ #: /addons/banking/services/mycred-bank-service-interest.php:414
522
+ msgid "Activated"
523
+ msgstr ""
524
+
525
+ #: ../addons/banking/services/mycred-bank-service-interest.php:401
526
+ msgid "Total Payed Interest"
527
+ msgstr ""
528
+
529
+ #: ../addons/banking/services/mycred-bank-service-interest.php:405
530
+ msgid "Compound History"
531
+ msgstr ""
532
+
533
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
534
+ msgid "Last Interest Compound"
535
+ msgstr ""
536
+
537
+ #: ../addons/banking/services/mycred-bank-service-interest.php:418
538
+ msgid "Total Compounded Interest"
539
+ msgstr ""
540
+
541
+ #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
542
+ #: /addons/banking/services/mycred-bank-service-interest.php:549
543
+ msgid "Interest Rate"
544
+ msgstr ""
545
+
546
+ #: ../addons/banking/services/mycred-bank-service-interest.php:425
547
+ msgid "Default Rate"
548
+ msgstr ""
549
+
550
+ #: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
551
+ #: /addons/banking/services/mycred-bank-service-payouts.php:267
552
+ msgid "Can not be zero."
553
+ msgstr ""
554
+
555
+ #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
556
+ #: /addons/gateway/carts/mycred-wpecommerce.php:364
557
+ msgid "Payout"
558
+ msgstr ""
559
+
560
+ #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
561
+ #: /addons/banking/services/mycred-bank-service-payouts.php:282 ../addons/buy-
562
  #: creds/myCRED-addon-buy-creds.php:607 ../addons/buy-creds/myCRED-addon-buy-
563
  #: creds.php:666 ../addons/coupons/myCRED-addon-coupons.php:440 ..
564
  #: /addons/gateway/carts/mycred-marketpress.php:391 ..
576
  msgid "Log Template"
577
  msgstr ""
578
 
579
+ #: ../addons/banking/services/mycred-bank-service-interest.php:442 ..
580
+ #: /addons/banking/services/mycred-bank-service-payouts.php:289 ..
581
+ #: /addons/coupons/myCRED-addon-coupons.php:392
582
+ msgid "Minimum Balance"
583
  msgstr ""
584
 
585
+ #: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
586
+ #: /addons/banking/services/mycred-bank-service-payouts.php:293
587
+ msgid "Optional minimum balance requirement."
 
 
 
588
  msgstr ""
589
 
590
+ #: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
591
+ #: /addons/banking/services/mycred-bank-service-payouts.php:296
592
+ msgid "Exclude"
593
  msgstr ""
594
 
595
+ #: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
596
+ #: /addons/banking/services/mycred-bank-service-payouts.php:299
597
+ msgid "Comma separated list of user IDs"
598
  msgstr ""
599
 
600
+ #: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
601
+ #: /addons/banking/services/mycred-bank-service-payouts.php:303
602
+ msgid "Roles"
603
  msgstr ""
604
 
605
+ #: ../addons/banking/services/mycred-bank-service-interest.php:522
606
+ msgid "This user is excluded from receiving interest on this balance."
 
 
 
 
 
607
  msgstr ""
608
 
609
+ #: ../addons/banking/services/mycred-bank-service-interest.php:525
610
+ msgid "Remove from Excluded List"
611
  msgstr ""
612
 
613
+ #: ../addons/banking/services/mycred-bank-service-interest.php:537
614
+ msgid "This user role is excluded from receiving interest on this balance."
 
 
615
  msgstr ""
616
 
617
+ #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
618
+ #: creds/myCRED-addon-buy-creds.php:759 ../addons/sell-content/myCRED-addon-sell-
619
+ #: content.php:113
620
+ msgid "Leave empty to use the default value."
621
  msgstr ""
622
 
623
+ #: ../addons/banking/services/mycred-bank-service-interest.php:558
624
+ msgid "Save Interest Rate"
625
  msgstr ""
626
 
627
+ #: ../addons/banking/services/mycred-bank-service-interest.php:559
628
+ msgid "Exclude from receiving interest"
629
  msgstr ""
630
 
631
+ #: ../addons/banking/services/mycred-bank-service-interest.php:667
632
+ msgid "Compound interest rate saved."
 
 
 
 
633
  msgstr ""
634
 
635
+ #: ../addons/banking/services/mycred-bank-service-interest.php:669
636
+ msgid "User excluded from receiving interest."
 
 
 
637
  msgstr ""
638
 
639
+ #: ../addons/banking/services/mycred-bank-service-interest.php:671
640
+ msgid "User included in receiving interest."
641
  msgstr ""
642
 
643
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:21
644
+ msgid "Daily %_plural%"
 
 
 
645
  msgstr ""
646
 
647
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
648
+ #: /includes/mycred-admin.php:404 ../modules/mycred-module-log.php:254 ..
649
+ #: /modules/mycred-module-log.php:255
650
+ msgid "History"
651
  msgstr ""
652
 
653
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:254
654
+ msgid "Last Run"
655
+ msgstr ""
656
+
657
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:258
658
+ msgid "Total Payouts"
659
+ msgstr ""
660
+
661
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:262
662
+ msgid "Pay Users"
663
+ msgstr ""
664
+
665
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:265 ../addons/buy-
666
+ #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
667
+ #: creds.php:1518 ../addons/buy-creds/myCRED-addon-buy-creds.php:1595 ..
668
+ #: /addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:562 ..
669
+ #: /includes/mycred-admin.php:708 ../includes/mycred-admin.php:753 ..
670
+ #: /includes/mycred-shortcodes.php:910
671
+ msgid "Amount"
672
+ msgstr ""
673
+
674
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:270 ..
675
+ #: /modules/mycred-module-hooks.php:2113
676
+ msgid "Interval"
677
+ msgstr ""
678
+
679
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:275
680
+ msgid "Cycles"
681
+ msgstr ""
682
+
683
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:277
684
+ msgid "Set to -1 for unlimited"
685
+ msgstr ""
686
+
687
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
688
+ msgid "Important"
689
+ msgstr ""
690
+
691
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:280
692
  msgid ""
693
+ "You can always stop payouts by deactivating this service. Just remember that "
694
+ "if you deactivate while there are cycles left, this service will continue on "
695
+ "when it gets re-activated. Set cycles to zero to reset."
696
  msgstr ""
697
 
698
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
720
  msgstr ""
721
 
722
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
723
+ #: addon-buy-creds.php:1629
724
  msgid "No pending payments found"
725
  msgstr ""
726
 
729
  msgstr ""
730
 
731
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
732
+ #: addon-buy-creds.php:986 ../addons/buy-creds/myCRED-addon-buy-creds.php:1593
733
  msgid "Transaction ID"
734
  msgstr ""
735
 
736
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
737
+ #: addon-buy-creds.php:982
738
  msgid "Buyer"
739
  msgstr ""
740
 
741
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
742
+ #: addon-buy-creds.php:1596 ../addons/buy-creds/abstracts/mycred-abstract-payment-
743
  #: gateway.php:563
744
  msgid "Cost"
745
  msgstr ""
746
 
747
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
748
+ #: addon-buy-creds.php:981 ../addons/buy-creds/myCRED-addon-buy-creds.php:1594 ..
749
  #: /includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
750
  msgid "Gateway"
751
  msgstr ""
763
  msgstr ""
764
 
765
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423 ../addons/buy-creds/myCRED-
766
+ #: addon-buy-creds.php:656 ../addons/buy-creds/myCRED-addon-buy-creds.php:843
767
  msgid "Purchase Log"
768
  msgstr ""
769
 
770
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:516 ../addons/gateway/event-
771
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
772
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
773
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:422
774
  msgid "Payments"
775
  msgstr ""
776
 
847
  msgstr ""
848
 
849
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:671 ../modules/mycred-module-
850
+ #: hooks.php:2770
851
  msgid "Available Shortcodes"
852
  msgstr ""
853
 
856
  msgid "%s Exchange Rate"
857
  msgstr ""
858
 
 
 
 
 
 
859
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:767
860
  msgid "Save Exchange Rates"
861
  msgstr ""
862
 
863
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:822
864
  msgid "Exchange rate override saved"
865
  msgstr ""
866
 
867
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:825
868
  msgid "Payment completed"
869
  msgstr ""
870
 
871
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843
872
  #, php-format
873
  msgid "%s Payment Gateways"
874
  msgstr ""
875
 
876
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:843 ../addons/buy-creds/myCRED-
877
+ #: addon-buy-creds.php:990
878
  msgid "buyCRED Settings"
879
  msgstr ""
880
 
881
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:864
882
  msgid "Test Mode"
883
  msgstr ""
884
 
885
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:866
886
  msgid "Enabled"
887
  msgstr ""
888
 
889
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:869
890
  msgid "Disabled"
891
  msgstr ""
892
 
893
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
894
  msgid "Sandbox Mode"
895
  msgstr ""
896
 
897
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:882
898
  msgid "Enable for test purchases."
899
  msgstr ""
900
 
901
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899 ../addons/gateway/event-
902
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:544
903
  msgid "Update Settings"
904
  msgstr ""
905
 
906
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
907
  msgid "More Gateways"
908
  msgstr ""
909
 
910
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:983 ../includes/mycred-log.php:
911
  #: 634
912
  msgid "Date"
913
  msgstr ""
914
 
915
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985
916
  msgid "Payed"
917
  msgstr ""
918
 
919
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990
920
  msgid "<strong>buy</strong>CRED Purchase Log"
921
  msgstr ""
922
 
923
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:990 ../addons/gateway/event-
924
  #: booking/mycred-eventespresso3.php:367
925
  msgid "Gateway Settings"
926
  msgstr ""
927
 
928
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166 ../addons/sell-
929
+ #: content/myCRED-addon-sell-content.php:1190
930
  msgid "No purchases found"
931
  msgstr ""
932
 
933
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1236 ../addons/buy-creds/myCRED-
934
+ #: addon-buy-creds.php:1349
935
  msgid "This Add-on needs to setup before you can use this shortcode."
936
  msgstr ""
937
 
938
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1255 ../addons/buy-creds/myCRED-
939
+ #: addon-buy-creds.php:1368
940
  msgid "No gateways installed."
941
  msgstr ""
942
 
943
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1256 ../addons/buy-creds/myCRED-
944
+ #: addon-buy-creds.php:1369
945
  msgid "Gateway does not exist."
946
  msgstr ""
947
 
948
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1304
949
  msgid "Yourself"
950
  msgstr ""
951
 
952
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1370
953
  msgid "No active gateways found."
954
  msgstr ""
955
 
956
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1371
957
  msgid "The selected gateway is not active."
958
  msgstr ""
959
 
960
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1418
961
  #, php-format
962
  msgid "Buy with %gateway%"
963
  msgstr ""
964
 
965
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1424 ../addons/sell-
966
  #: content/myCRED-addon-sell-content.php:44
967
  msgid "Buy Now"
968
  msgstr ""
969
 
970
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1469
971
  msgid "No users found"
972
  msgstr ""
973
 
974
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1479
975
  msgid "To"
976
  msgstr ""
977
 
978
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1496
979
  msgid "Select Amount"
980
  msgstr ""
981
 
982
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1520
983
  msgid "min."
984
  msgstr ""
985
 
986
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1528
987
  msgid "Select Gateway"
988
  msgstr ""
989
 
990
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1569 ../addons/gateway/event-
991
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
992
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
993
  #: php:35
994
  msgid "Pay Now"
995
  msgstr ""
996
 
997
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1570 ../includes/mycred-install.
998
  #: php:515
999
  msgid "Cancel"
1000
  msgstr ""
1001
 
1002
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1597 ../addons/ranks/myCRED-
1003
+ #: addon-ranks.php:990 ../modules/mycred-module-log.php:375 ../modules/mycred-
1004
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
1005
  msgid "Actions"
1006
  msgstr ""
1040
  msgstr ""
1041
 
1042
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:497 ..
1043
+ #: /includes/mycred-admin.php:702 ../includes/mycred-admin.php:739
1044
  msgid "required"
1045
  msgstr ""
1046
 
1047
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:498 ..
1048
+ #: /includes/mycred-admin.php:704 ../includes/mycred-admin.php:741
1049
  msgid "optional"
1050
  msgstr ""
1051
 
1428
  #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:788 ..
1429
  #: /addons/transfer/myCRED-addon-transfer.php:653 ../includes/mycred-widgets.php:
1430
  #: 197 ../includes/mycred-widgets.php:397 ../includes/mycred-widgets.php:596 ..
1431
+ #: /modules/mycred-module-hooks.php:2735
1432
  msgid "Title"
1433
  msgstr ""
1434
 
1658
  #: /addons/gateway/carts/mycred-wpecommerce.php:351 ../addons/gateway/event-
1659
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1660
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
1661
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:410 ..
1662
  #: /includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:403 ..
1663
  #: /includes/importers/mycred-cubepoints.php:365
1664
  msgid "Point Type"
2039
  msgstr ""
2040
 
2041
  #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2042
+ #: notices/myCRED-addon-email-notices.php:895 ../includes/mycred-admin.php:748 ..
2043
+ #: /includes/mycred-log.php:633 ../modules/mycred-module-log.php:546
2044
  msgid "User"
2045
  msgstr ""
2046
 
2164
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2165
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2166
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2167
+ #: php:412 ../includes/mycred-admin.php:596 ../includes/mycred-admin.php:749
2168
  msgid "Current Balance"
2169
  msgstr ""
2170
 
2278
  #: /addons/gateway/carts/mycred-wpecommerce.php:357 ../addons/gateway/event-
2279
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2280
  #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2281
+ #: php:578 ../includes/mycred-shortcodes.php:915
2282
  msgid "Exchange Rate"
2283
  msgstr ""
2284
 
2494
  msgid "How much is 1 %s worth in %s"
2495
  msgstr ""
2496
 
 
 
 
 
2497
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2498
  msgid "Instructions"
2499
  msgstr ""
2564
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2565
  #: /addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2566
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2567
+ #: content/myCRED-addon-sell-content.php:458 ../addons/sell-content/myCRED-addon-
2568
+ #: sell-content.php:668
2569
  msgid "Button Label"
2570
  msgstr ""
2571
 
2578
  #: /addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2579
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2580
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2581
+ #: content/myCRED-addon-sell-content.php:449 ../addons/sell-content/myCRED-addon-
2582
+ #: sell-content.php:664
2583
  msgid "Price"
2584
  msgstr ""
2585
 
2599
  msgstr ""
2600
 
2601
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2602
+ #: /includes/mycred-admin.php:717 ../includes/mycred-admin.php:754
2603
  msgid "Log Entry"
2604
  msgstr ""
2605
 
2606
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2607
+ #: content/myCRED-addon-sell-content.php:472
2608
  msgid "Templates"
2609
  msgstr ""
2610
 
2680
  msgstr ""
2681
 
2682
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2683
+ #: /modules/mycred-module-log.php:506 ../modules/mycred-module-settings.php:488 ..
2684
  #: /modules/mycred-module-settings.php:507
2685
  msgid "Delete"
2686
  msgstr ""
3108
  msgstr ""
3109
 
3110
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3111
+ #: shortcodes.php:425 ../includes/mycred-shortcodes.php:428 ../includes/mycred-
3112
+ #: shortcodes.php:491 ../includes/mycred-shortcodes.php:549 ../includes/mycred-
3113
+ #: shortcodes.php:553 ../includes/mycred-shortcodes.php:557
3114
  msgid "error"
3115
  msgstr ""
3116
 
3130
  msgid "Save Profit Share"
3131
  msgstr ""
3132
 
3133
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:164
3134
  msgid "Profit Share override saved"
3135
  msgstr ""
3136
 
3137
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:326
3138
  msgid "You can not buy this content."
3139
  msgstr ""
3140
 
3141
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:371
3142
  msgid "Error. Try Again"
3143
  msgstr ""
3144
 
3145
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3146
  msgid "No Payout. Just charge."
3147
  msgstr ""
3148
 
3149
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3150
  msgid "Pay Content Author."
3151
  msgstr ""
3152
 
3153
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:400 ../includes/mycred-
3154
  #: overview.php:141 ../includes/mycred-overview.php:148
3155
  msgid "Sell Content"
3156
  msgstr ""
3157
 
3158
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3159
  msgid "Post Types"
3160
  msgstr ""
3161
 
3162
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3163
  msgid "Comma separated list of post types that can be sold."
3164
  msgstr ""
3165
 
3166
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:436
3167
  msgid "Percentage to pay Author"
3168
  msgstr ""
3169
 
3170
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3171
  msgid ""
3172
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3173
  "authors are not paid."
3174
  msgstr ""
3175
 
3176
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:446
3177
  msgid "Defaults"
3178
  msgstr ""
3179
 
3180
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:454
3181
  msgid "Allow authors to change price."
3182
  msgstr ""
3183
 
3184
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:463
3185
  msgid "Allow authors to change button label."
3186
  msgstr ""
3187
 
3188
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:467
3189
  msgid "Purchases expire after"
3190
  msgstr ""
3191
 
3192
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3193
  msgid "Use zero for permanent sales."
3194
  msgstr ""
3195
 
3196
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:475
3197
  msgid "For Visitors"
3198
  msgstr ""
3199
 
3200
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:480
3201
  #, php-format
3202
  msgid ""
3203
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3204
  "be logged in to buy content!"
3205
  msgstr ""
3206
 
3207
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:485
3208
  msgid "For Members"
3209
  msgstr ""
3210
 
3211
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:490 ../addons/sell-
3212
+ #: content/myCRED-addon-sell-content.php:500
3213
  #, php-format
3214
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3215
  msgstr ""
3216
 
3217
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:495
3218
  msgid "For members that can not afford to buy"
3219
  msgstr ""
3220
 
3221
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:504
3222
  msgid "Log template for Purchases"
3223
  msgstr ""
3224
 
3225
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:511
3226
  msgid "Log template for Sales"
3227
  msgstr ""
3228
 
3229
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:563
3230
  #, php-format
3231
  msgid "%s Sell This"
3232
  msgstr ""
3233
 
3234
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:617
3235
  #, php-format
3236
  msgid "%s Sell Content needs to be setup before you can use this feature."
3237
  msgstr ""
3238
 
3239
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3240
  msgid "Setup add-on"
3241
  msgstr ""
3242
 
3243
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:620
3244
  msgid "Lets do it"
3245
  msgstr ""
3246
 
3247
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:658
3248
  #, php-format
3249
  msgid "Enable sale of this %s"
3250
  msgstr ""
3251
 
3252
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:672
3253
  msgid "Purchase expires after"
3254
  msgstr ""
3255
 
3256
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:998
3257
  msgid "Thank you for your purchase!"
3258
  msgstr ""
3259
 
3260
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1086 ../addons/sell-
3261
+ #: content/myCRED-addon-sell-content.php:1172
3262
  msgid "The following content is set for sale:"
3263
  msgstr ""
3264
 
3265
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1232
3266
  msgid "Purchased"
3267
  msgstr ""
3268
 
3275
  msgstr ""
3276
 
3277
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3278
+ #: php:2313
3279
  msgid "Transfer"
3280
  msgstr ""
3281
 
3310
  msgstr ""
3311
 
3312
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3313
+ #: php:1012
3314
  msgid "Insufficient Funds. Please try a lower amount."
3315
  msgstr ""
3316
 
3524
  msgid "Failed to update this uses balance."
3525
  msgstr ""
3526
 
3527
+ #: ../includes/mycred-admin.php:386
3528
  msgid "Excluded"
3529
  msgstr ""
3530
 
3531
+ #: ../includes/mycred-admin.php:396
3532
  #, php-format
3533
  msgid "Total: %s"
3534
  msgstr ""
3535
 
3536
+ #: ../includes/mycred-admin.php:405
 
 
 
 
 
3537
  msgid "Adjust"
3538
  msgstr ""
3539
 
3540
+ #: ../includes/mycred-admin.php:443 ../includes/mycred-admin.php:444
3541
  msgid "Edit Balance"
3542
  msgstr ""
3543
 
3544
+ #: ../includes/mycred-admin.php:462
3545
  msgid "Profile"
3546
  msgstr ""
3547
 
3548
+ #: ../includes/mycred-admin.php:469
3549
  msgid "Extended Profile"
3550
  msgstr ""
3551
 
3552
+ #: ../includes/mycred-admin.php:559
3553
  #, php-format
3554
  msgid "This user is excluded from using %s"
3555
  msgstr ""
3556
 
3557
+ #: ../includes/mycred-admin.php:582
3558
  msgid "Edit User"
3559
  msgstr ""
3560
 
3561
+ #: ../includes/mycred-admin.php:584
3562
  msgctxt "user"
3563
  msgid "Add New"
3564
  msgstr ""
3565
 
3566
+ #: ../includes/mycred-admin.php:586
3567
  msgctxt "user"
3568
  msgid "Add Existing"
3569
  msgstr ""
3570
 
3571
+ #: ../includes/mycred-admin.php:597
3572
  #, php-format
3573
  msgid "Total %s Accumulated"
3574
  msgstr ""
3575
 
3576
+ #: ../includes/mycred-admin.php:598
3577
  #, php-format
3578
  msgid "Total %s Spent"
3579
  msgstr ""
3580
 
3581
+ #: ../includes/mycred-admin.php:609
3582
  msgid "View History"
3583
  msgstr ""
3584
 
3585
+ #: ../includes/mycred-admin.php:610
3586
  msgid "Exclude User"
3587
  msgstr ""
3588
 
3589
+ #: ../includes/mycred-admin.php:614
3590
  msgid "Adjust Balance"
3591
  msgstr ""
3592
 
3593
+ #: ../includes/mycred-admin.php:623
3594
  msgid ""
3595
  "Warning! Excluding this user will result in their balance being deleted "
3596
  "along with any entries currently in your log! This can not be undone!"
3597
  msgstr ""
3598
 
3599
+ #: ../includes/mycred-admin.php:681
3600
  #, php-format
3601
  msgid "%singular% balance"
3602
  msgstr ""
3603
 
3604
+ #: ../includes/mycred-admin.php:721 ../includes/mycred-admin.php:755
3605
  msgid "Update Balance"
3606
  msgstr ""
3607
 
3608
+ #: ../includes/mycred-admin.php:747
3609
  msgid "ID"
3610
  msgstr ""
3611
 
3612
+ #: ../includes/mycred-admin.php:753
3613
  msgid "A positive or negative value"
3614
  msgstr ""
3615
 
3661
  msgid "Available Template Tags:"
3662
  msgstr ""
3663
 
3664
+ #: ../includes/mycred-functions.php:1673
3665
  msgid "Entire Log"
3666
  msgstr ""
3667
 
3668
+ #: ../includes/mycred-functions.php:1678 ../includes/mycred-functions.php:1679
3669
  msgid "Displayed Rows"
3670
  msgstr ""
3671
 
3672
+ #: ../includes/mycred-functions.php:1686
3673
  msgid "Search Results"
3674
  msgstr ""
3675
 
3676
+ #: ../includes/mycred-functions.php:1687
3677
  msgid "My Entire Log"
3678
  msgstr ""
3679
 
3680
+ #: ../includes/mycred-functions.php:1808
3681
  msgid "ref empty"
3682
  msgstr ""
3683
 
3684
+ #: ../includes/mycred-functions.php:1816
3685
  msgid "incorrect user id format"
3686
  msgstr ""
3687
 
3688
+ #: ../includes/mycred-functions.php:1829
3689
  msgid "incorrect unix timestamp (from):"
3690
  msgstr ""
3691
 
3692
+ #: ../includes/mycred-functions.php:1838
3693
  msgid "incorrect unix timestamp (to):"
3694
  msgstr ""
3695
 
3696
+ #: ../includes/mycred-functions.php:2200
3697
  msgid "Website Registration"
3698
  msgstr ""
3699
 
3700
+ #: ../includes/mycred-functions.php:2201
3701
  msgid "Website Visit"
3702
  msgstr ""
3703
 
3704
+ #: ../includes/mycred-functions.php:2202
3705
  msgid "Viewing Content (Member)"
3706
  msgstr ""
3707
 
3708
+ #: ../includes/mycred-functions.php:2203
3709
  msgid "Viewing Content (Author)"
3710
  msgstr ""
3711
 
3712
+ #: ../includes/mycred-functions.php:2204
3713
  msgid "Logging in"
3714
  msgstr ""
3715
 
3716
+ #: ../includes/mycred-functions.php:2205
3717
  msgid "Publishing Content"
3718
  msgstr ""
3719
 
3720
+ #: ../includes/mycred-functions.php:2206 ../modules/mycred-module-hooks.php:1421
3721
  msgid "Approved Comment"
3722
  msgstr ""
3723
 
3724
+ #: ../includes/mycred-functions.php:2207
3725
  msgid "Unapproved Comment"
3726
  msgstr ""
3727
 
3728
+ #: ../includes/mycred-functions.php:2208
3729
  msgid "SPAM Comment"
3730
  msgstr ""
3731
 
3732
+ #: ../includes/mycred-functions.php:2209
3733
  msgid "Deleted Comment"
3734
  msgstr ""
3735
 
3736
+ #: ../includes/mycred-functions.php:2210
3737
  msgid "Link Click"
3738
  msgstr ""
3739
 
3740
+ #: ../includes/mycred-functions.php:2211
3741
  msgid "Watching Video"
3742
  msgstr ""
3743
 
3744
+ #: ../includes/mycred-functions.php:2212
3745
  msgid "Visitor Referral"
3746
  msgstr ""
3747
 
3748
+ #: ../includes/mycred-functions.php:2213
3749
  msgid "Signup Referral"
3750
  msgstr ""
3751
 
3752
+ #: ../includes/mycred-functions.php:2217
3753
  msgid "New Profile Update"
3754
  msgstr ""
3755
 
3756
+ #: ../includes/mycred-functions.php:2218
3757
  msgid "Avatar Upload"
3758
  msgstr ""
3759
 
3760
+ #: ../includes/mycred-functions.php:2219
3761
  msgid "New Friendship"
3762
  msgstr ""
3763
 
3764
+ #: ../includes/mycred-functions.php:2220
3765
  msgid "Ended Friendship"
3766
  msgstr ""
3767
 
3768
+ #: ../includes/mycred-functions.php:2221
3769
  msgid "New Profile Comment"
3770
  msgstr ""
3771
 
3772
+ #: ../includes/mycred-functions.php:2222
3773
  msgid "Profile Comment Deletion"
3774
  msgstr ""
3775
 
3776
+ #: ../includes/mycred-functions.php:2223
3777
  msgid "New Message"
3778
  msgstr ""
3779
 
3780
+ #: ../includes/mycred-functions.php:2224
3781
  msgid "Sending Gift"
3782
  msgstr ""
3783
 
3784
+ #: ../includes/mycred-functions.php:2225
3785
  msgid "New Group"
3786
  msgstr ""
3787
 
3788
+ #: ../includes/mycred-functions.php:2226
3789
  msgid "Deleted Group"
3790
  msgstr ""
3791
 
3792
+ #: ../includes/mycred-functions.php:2227
3793
  msgid "New Group Forum Topic"
3794
  msgstr ""
3795
 
3796
+ #: ../includes/mycred-functions.php:2228
3797
  msgid "Edit Group Forum Topic"
3798
  msgstr ""
3799
 
3800
+ #: ../includes/mycred-functions.php:2229
3801
  msgid "New Group Forum Post"
3802
  msgstr ""
3803
 
3804
+ #: ../includes/mycred-functions.php:2230
3805
  msgid "Edit Group Forum Post"
3806
  msgstr ""
3807
 
3808
+ #: ../includes/mycred-functions.php:2231
3809
  msgid "Joining Group"
3810
  msgstr ""
3811
 
3812
+ #: ../includes/mycred-functions.php:2232
3813
  msgid "Leaving Group"
3814
  msgstr ""
3815
 
3816
+ #: ../includes/mycred-functions.php:2233
3817
  msgid "New Group Avatar"
3818
  msgstr ""
3819
 
3820
+ #: ../includes/mycred-functions.php:2234
3821
  msgid "New Group Comment"
3822
  msgstr ""
3823
 
3824
+ #: ../includes/mycred-functions.php:2238 ../plugins/mycred-hook-buddypress-media.
3825
  #: php:166
3826
  msgid "Photo Upload"
3827
  msgstr ""
3828
 
3829
+ #: ../includes/mycred-functions.php:2239 ../plugins/mycred-hook-buddypress-media.
3830
  #: php:176
3831
  msgid "Video Upload"
3832
  msgstr ""
3833
 
3834
+ #: ../includes/mycred-functions.php:2240 ../plugins/mycred-hook-buddypress-media.
3835
  #: php:186
3836
  msgid "Music Upload"
3837
  msgstr ""
3838
 
3839
+ #: ../includes/mycred-functions.php:2244
3840
  msgid "New Link"
3841
  msgstr ""
3842
 
3843
+ #: ../includes/mycred-functions.php:2245
3844
  msgid "Link Voting"
3845
  msgstr ""
3846
 
3847
+ #: ../includes/mycred-functions.php:2246
3848
  msgid "Link Update"
3849
  msgstr ""
3850
 
3851
+ #: ../includes/mycred-functions.php:2250
3852
  msgid "New Forum (bbPress)"
3853
  msgstr ""
3854
 
3855
+ #: ../includes/mycred-functions.php:2251
3856
  msgid "New Forum Topic (bbPress)"
3857
  msgstr ""
3858
 
3859
+ #: ../includes/mycred-functions.php:2252
3860
  msgid "Favorited Topic (bbPress)"
3861
  msgstr ""
3862
 
3863
+ #: ../includes/mycred-functions.php:2253
3864
  msgid "New Topic Reply (bbPress)"
3865
  msgstr ""
3866
 
3867
+ #: ../includes/mycred-functions.php:2257
3868
  msgid "Form Submission (Contact Form 7)"
3869
  msgstr ""
3870
 
3871
+ #: ../includes/mycred-functions.php:2260
3872
  msgid "Form Submission (Gravity Form)"
3873
  msgstr ""
3874
 
3875
+ #: ../includes/mycred-functions.php:2263
3876
  msgid "New Forum Topic (SimplePress)"
3877
  msgstr ""
3878
 
3879
+ #: ../includes/mycred-functions.php:2264
3880
  msgid "New Forum Post (SimplePress)"
3881
  msgstr ""
3882
 
3883
+ #: ../includes/mycred-functions.php:2268
3884
  msgid "Poll Voting"
3885
  msgstr ""
3886
 
3887
+ #: ../includes/mycred-functions.php:2271
3888
  msgid "Sending an Invite"
3889
  msgstr ""
3890
 
3891
+ #: ../includes/mycred-functions.php:2272
3892
  msgid "Accepting an Invite"
3893
  msgstr ""
3894
 
3895
+ #: ../includes/mycred-functions.php:2278
3896
  msgid "Banking Payout"
3897
  msgstr ""
3898
 
3899
+ #: ../includes/mycred-functions.php:2281
3900
  msgid "buyCRED Purchase (PayPal Standard)"
3901
  msgstr ""
3902
 
3903
+ #: ../includes/mycred-functions.php:2282
3904
  msgid "buyCRED Purchase (Skrill)"
3905
  msgstr ""
3906
 
3907
+ #: ../includes/mycred-functions.php:2283
3908
  msgid "buyCRED Purchase (Zombaio)"
3909
  msgstr ""
3910
 
3911
+ #: ../includes/mycred-functions.php:2284
3912
  msgid "buyCRED Purchase (NETBilling)"
3913
  msgstr ""
3914
 
3915
+ #: ../includes/mycred-functions.php:2285
3916
  msgid "buyCRED Purchase (BitPay)"
3917
  msgstr ""
3918
 
3919
+ #: ../includes/mycred-functions.php:2290
3920
  msgid "Coupon Purchase"
3921
  msgstr ""
3922
 
3923
+ #: ../includes/mycred-functions.php:2293
3924
  msgid "Store Purchase (WooCommerce)"
3925
  msgstr ""
3926
 
3927
+ #: ../includes/mycred-functions.php:2294
3928
  msgid "Store Purchase (MarketPress)"
3929
  msgstr ""
3930
 
3931
+ #: ../includes/mycred-functions.php:2295
3932
  msgid "Store Purchase (WP E-Commerce)"
3933
  msgstr ""
3934
 
3935
+ #: ../includes/mycred-functions.php:2300
3936
  msgid "Event Payment (Event Espresso)"
3937
  msgstr ""
3938
 
3939
+ #: ../includes/mycred-functions.php:2301
3940
  msgid "Event Sale (Event Espresso)"
3941
  msgstr ""
3942
 
3943
+ #: ../includes/mycred-functions.php:2305
3944
  msgid "Event Payment (Events Manager)"
3945
  msgstr ""
3946
 
3947
+ #: ../includes/mycred-functions.php:2306
3948
  msgid "Event Sale (Events Manager)"
3949
  msgstr ""
3950
 
3951
+ #: ../includes/mycred-functions.php:2310
3952
  msgid "Content Purchase / Sale"
3953
  msgstr ""
3954
 
3955
+ #: ../includes/mycred-functions.php:2317
3956
  msgid "Manual Adjustment by Admin"
3957
  msgstr ""
3958
 
4116
  "disable."
4117
  msgstr ""
4118
 
4119
+ #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
4120
+ msgid "Excludes"
4121
+ msgstr ""
4122
+
4123
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
4124
  msgid "Exclude those who can \"Edit Settings\"."
4125
  msgstr ""
4225
  msgid "Entry"
4226
  msgstr ""
4227
 
4228
+ #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:468
4229
  msgid "User Missing"
4230
  msgstr ""
4231
 
4405
  "about your setup!"
4406
  msgstr ""
4407
 
4408
+ #: ../includes/mycred-shortcodes.php:154
4409
  msgid "Leaderboard is empty."
4410
  msgstr ""
4411
 
4412
+ #: ../includes/mycred-shortcodes.php:425 ../includes/mycred-shortcodes.php:549
4413
  msgid "Amount missing!"
4414
  msgstr ""
4415
 
4416
+ #: ../includes/mycred-shortcodes.php:428 ../includes/mycred-shortcodes.php:557
4417
  msgid "Log Template Missing!"
4418
  msgstr ""
4419
 
4420
+ #: ../includes/mycred-shortcodes.php:491
4421
  msgid "Anchor missing URL!"
4422
  msgstr ""
4423
 
4424
+ #: ../includes/mycred-shortcodes.php:553
4425
  msgid "User ID missing for recipient."
4426
  msgstr ""
4427
 
4428
+ #: ../includes/mycred-shortcodes.php:608
4429
  msgid "Sent"
4430
  msgstr ""
4431
 
4432
+ #: ../includes/mycred-shortcodes.php:609
4433
  msgid "Error - Try Again"
4434
  msgstr ""
4435
 
4436
+ #: ../includes/mycred-shortcodes.php:718
4437
  msgid "A video ID is required for this shortcode"
4438
  msgstr ""
4439
 
4440
+ #: ../includes/mycred-shortcodes.php:864 ../includes/mycred-shortcodes.php:958
4441
  msgid "Point types not found."
4442
  msgstr ""
4443
 
4444
+ #: ../includes/mycred-shortcodes.php:870 ../includes/mycred-shortcodes.php:878 ..
4445
+ #: /includes/mycred-shortcodes.php:970 ../includes/mycred-shortcodes.php:990
4446
  #, php-format
4447
  msgid "You are excluded from using %s."
4448
  msgstr ""
4449
 
4450
+ #: ../includes/mycred-shortcodes.php:874 ../includes/mycred-shortcodes.php:980
4451
  msgid "Your balance is too low to use this feature."
4452
  msgstr ""
4453
 
4454
+ #: ../includes/mycred-shortcodes.php:895
4455
  #, php-format
4456
  msgid "Convert <span>%s</span> to <span>%s</span>"
4457
  msgstr ""
4458
 
4459
+ #: ../includes/mycred-shortcodes.php:904
4460
  #, php-format
4461
  msgid "Your current %s balance"
4462
  msgstr ""
4463
 
4464
+ #: ../includes/mycred-shortcodes.php:912
4465
  #, php-format
4466
  msgid "Minimum %s"
4467
  msgstr ""
4468
 
4469
+ #: ../includes/mycred-shortcodes.php:916
4470
  #, php-format
4471
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4472
  msgstr ""
4473
 
4474
+ #: ../includes/mycred-shortcodes.php:922
4475
  msgid "Exchange"
4476
  msgstr ""
4477
 
4478
+ #: ../includes/mycred-shortcodes.php:1003
4479
  #, php-format
4480
  msgid "You must exchange at least %s!"
4481
  msgstr ""
4482
 
4483
+ #: ../includes/mycred-shortcodes.php:1025
4484
  #, php-format
4485
  msgid "Exchange from %s"
4486
  msgstr ""
4487
 
4488
+ #: ../includes/mycred-shortcodes.php:1037
4489
  #, php-format
4490
  msgid "Exchange to %s"
4491
  msgstr ""
4492
 
4493
+ #: ../includes/mycred-shortcodes.php:1045
4494
  #, php-format
4495
  msgid "You have successfully exchanged %s into %s."
4496
  msgstr ""
4787
  msgid "Give your users badges based on their interaction with your website."
4788
  msgstr ""
4789
 
4790
+ #: ../modules/mycred-module-addons.php:158
4791
+ msgid "Setup recurring payouts or offer / charge interest on user account balances."
4792
+ msgstr ""
4793
+
4794
  #: ../modules/mycred-module-addons.php:169
4795
  msgid ""
4796
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5091
  #: /modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:1053 .
5092
  #: ./modules/mycred-module-hooks.php:1433 ../modules/mycred-module-hooks.php:1450
5093
  #: ../modules/mycred-module-hooks.php:1467 ../modules/mycred-module-hooks.php:
5094
+ #: 2645 ../modules/mycred-module-hooks.php:2674 ../plugins/mycred-hook-badgeOS.
5095
  #: php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.
5096
  #: php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.
5097
  #: php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.
5153
  msgid "%plural% for viewing %s"
5154
  msgstr ""
5155
 
5156
+ #: ../modules/mycred-module-hooks.php:893 ../modules/mycred-module-hooks.php:2653
5157
+ #: ../modules/mycred-module-hooks.php:2682 ../plugins/mycred-hook-invite-anyone.
5158
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5159
  msgid "Limit"
5160
  msgstr ""
5236
  msgid "Custom tags: %url%, %title% or %id%."
5237
  msgstr ""
5238
 
5239
+ #: ../modules/mycred-module-hooks.php:1771 ../modules/mycred-module-hooks.php:2756
5240
  msgid "Note!"
5241
  msgstr ""
5242
 
5310
  msgid "Link"
5311
  msgstr ""
5312
 
5313
+ #: ../modules/mycred-module-hooks.php:2639
5314
  msgid "Referring Visitors"
5315
  msgstr ""
5316
 
5317
+ #: ../modules/mycred-module-hooks.php:2663 ../modules/mycred-module-hooks.php:2692
5318
  msgid "The number of referrals each member can make. Use zero for unlimited."
5319
  msgstr ""
5320
 
5321
+ #: ../modules/mycred-module-hooks.php:2667 ../modules/mycred-module-hooks.php:2696
5322
  msgid "Referring Signups"
5323
  msgstr ""
5324
 
5325
+ #: ../modules/mycred-module-hooks.php:2671
5326
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5327
  msgstr ""
5328
 
5329
+ #: ../modules/mycred-module-hooks.php:2698
5330
  msgid "Registrations are disabled."
5331
  msgstr ""
5332
 
5333
+ #: ../modules/mycred-module-hooks.php:2705
5334
  msgid "Referral Links"
5335
  msgstr ""
5336
 
5337
+ #: ../modules/mycred-module-hooks.php:2709
5338
  msgid "Assign numeric referral IDs to each user."
5339
  msgstr ""
5340
 
5341
+ #: ../modules/mycred-module-hooks.php:2710 ../modules/mycred-module-hooks.php:2716
5342
  msgid "Example"
5343
  msgstr ""
5344
 
5345
+ #: ../modules/mycred-module-hooks.php:2715
5346
  msgid "Assign usernames as IDs for each user."
5347
  msgstr ""
5348
 
5349
+ #: ../modules/mycred-module-hooks.php:2719
5350
  msgid "IP Limit"
5351
  msgstr ""
5352
 
5353
+ #: ../modules/mycred-module-hooks.php:2723
5354
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5355
  msgstr ""
5356
 
5357
+ #: ../modules/mycred-module-hooks.php:2727 ../modules/mycred-module-hooks.php:2760
5358
  msgid "BuddyPress Profile"
5359
  msgstr ""
5360
 
5361
+ #: ../modules/mycred-module-hooks.php:2730
5362
  msgid "Insert Link in users Profile"
5363
  msgstr ""
5364
 
5365
+ #: ../modules/mycred-module-hooks.php:2731
5366
  msgid ""
5367
  "Option to inser the referral link in users profiles. Links will only be "
5368
  "visible to users viewing their own profiles or administrators."
5369
  msgstr ""
5370
 
5371
+ #: ../modules/mycred-module-hooks.php:2737
5372
  msgid "Leave empty to hide."
5373
  msgstr ""
5374
 
5375
+ #: ../modules/mycred-module-hooks.php:2740
5376
  msgid "Description"
5377
  msgstr ""
5378
 
5379
+ #: ../modules/mycred-module-hooks.php:2741
5380
  msgid "Optional description to insert under the link."
5381
  msgstr ""
5382
 
5383
+ #: ../modules/mycred-module-hooks.php:2753
5384
  msgid "Profile Positioning"
5385
  msgstr ""
5386
 
5387
+ #: ../modules/mycred-module-hooks.php:2755
5388
  msgid ""
5389
  "You can move around the referral link on your users profile by changing the "
5390
  "position. Increase to move up, decrease to move down."
5391
  msgstr ""
5392
 
5393
+ #: ../modules/mycred-module-hooks.php:2756
5394
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5395
  msgstr ""
5396
 
5397
+ #: ../modules/mycred-module-hooks.php:2762
5398
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5399
  msgstr ""
5400
 
5419
  msgid "Entries"
5420
  msgstr ""
5421
 
5422
+ #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:384 ..
5423
+ #: /modules/mycred-module-log.php:634 ../modules/mycred-module-settings.php:574
5424
  msgid "Export"
5425
  msgstr ""
5426
 
5428
  msgid "Search results for"
5429
  msgstr ""
5430
 
5431
+ #: ../modules/mycred-module-log.php:378
5432
  #, php-format
5433
  msgid "%s Log"
5434
  msgstr ""
5435
 
5436
+ #: ../modules/mycred-module-log.php:506
5437
  msgid "Edit"
5438
  msgstr ""
5439
 
5440
+ #: ../modules/mycred-module-log.php:547
5441
  msgid "Time"
5442
  msgstr ""
5443
 
5444
+ #: ../modules/mycred-module-log.php:551
5445
  msgid "Current Log Entry"
5446
  msgstr ""
5447
 
5448
+ #: ../modules/mycred-module-log.php:553
5449
  msgid "The current saved log entry"
5450
  msgstr ""
5451
 
5452
+ #: ../modules/mycred-module-log.php:556
5453
  msgid "Adjust Log Entry"
5454
  msgstr ""
5455
 
5456
+ #: ../modules/mycred-module-log.php:558
5457
  msgid "The new log entry"
5458
  msgstr ""
5459
 
5460
+ #: ../modules/mycred-module-log.php:561
5461
  msgid "Update Log Entry"
5462
  msgstr ""
5463
 
5464
+ #: ../modules/mycred-module-log.php:628
5465
  #, php-format
5466
  msgid "My %s History"
5467
  msgstr ""
6146
  #, php-format
6147
  msgid "Awards %_plural% for users voting in polls."
6148
  msgstr ""
 
 
 
 
modules/mycred-module-hooks.php CHANGED
@@ -405,7 +405,7 @@ if ( ! class_exists( 'myCRED_Hook_Site_Visits' ) ) {
405
 
406
  // Set cookie to prevent db queries again today.
407
  $lifespan = (int) ( 24*3600 ) - ( date_i18n( 'H' ) * 3600 + date_i18n( 'i' ) * 60 + date_i18n( 's' ) );
408
- setcookie( 'mycred_site_visit', 1, $lifespan );
409
 
410
  // Make sure user is not excluded
411
  if ( $this->core->exclude_user( $user_id ) ) return;
@@ -2158,7 +2158,7 @@ jQuery(function($){
2158
  /**
2159
  * Hook for affiliations
2160
  * @since 1.4
2161
- * @version 1.1
2162
  */
2163
  if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
2164
  class myCRED_Hook_Affiliate extends myCRED_Hook {
@@ -2213,13 +2213,17 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
2213
  /**
2214
  * Run
2215
  * @since 1.4
2216
- * @version 1.0
2217
  */
2218
  public function run() {
2219
  // Insert into BuddyPress profile
2220
  if ( function_exists( 'bp_is_active' ) && bp_is_active( 'xprofile' ) && $this->prefs['buddypress']['profile'] )
2221
  add_action( 'bp_after_profile_loop_content', array( $this, 'buddypress_profile' ), $this->prefs['buddypress']['priority'] );
2222
 
 
 
 
 
2223
  // Register Shortcodes
2224
  add_shortcode( 'mycred_affiliate_link', array( $this, 'shortcode_affiliate_link' ) );
2225
  add_shortcode( 'mycred_affiliate_id', array( $this, 'shortcode_affiliate_id' ) );
@@ -2235,10 +2239,6 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
2235
  if ( $this->prefs['signup']['creds'] != 0 )
2236
  add_action( 'user_register', array( $this, 'site_signup' ) );
2237
 
2238
- // Hook into user activation
2239
- if ( function_exists( 'buddypress' ) && apply_filters( 'bp_core_signup_send_activation_key', true ) )
2240
- add_action( 'bp_core_activated_user', array( $this, 'verified_signup' ) );
2241
-
2242
  }
2243
 
2244
  /**
@@ -2328,11 +2328,11 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
2328
  /**
2329
  * Visits
2330
  * @since 1.4
2331
- * @version 1.2
2332
  */
2333
  public function site_visits() {
2334
  // Required
2335
- if ( ! isset( $_GET[ $this->ref_key ] ) || empty( $_GET[ $this->ref_key ] ) || isset( $_COOKIE['mycred_ref'] ) ) return;
2336
 
2337
  // Attempt to get the user id based on the referral id
2338
  $user_id = $this->get_user_id_from_ref_id( $_GET[ $this->ref_key ] );
@@ -2359,14 +2359,15 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
2359
 
2360
  }
2361
 
2362
- setcookie( 'mycred_ref', $_GET[ $this->ref_key ], apply_filters( 'mycred_affiliate_cookie', ( time()+3600*24 ), false ) );
 
2363
 
2364
  // If we allow signups, we set a cookie now
2365
- if ( $this->prefs['signup']['creds'] != 0 )
2366
- setcookie( 'signup_ref', $_GET[ $this->ref_key ], apply_filters( 'mycred_affiliate_cookie', ( time()+3600*24 ), true ) );
2367
 
2368
  // Let others play
2369
- do_action( 'mycred_affiliate_visit', $user_id, $IP, $this );
2370
 
2371
  // Redirect to the URL without the ref key
2372
  wp_redirect( remove_query_arg( array( $this->ref_key ) ) );
@@ -2376,43 +2377,65 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
2376
  /**
2377
  * Signups
2378
  * @since 1.4
2379
- * @version 1.0
2380
  */
2381
  public function site_signup( $new_user_id ) {
2382
  // Requirement
2383
- if ( ! isset( $_COOKIE['signup_ref'] ) ) return;
 
 
 
 
 
 
 
 
 
2384
 
2385
- // Attempt to get the user id based on the set cookie
2386
- $user_id = $this->get_user_id_from_ref_id( $_COOKIE['signup_ref'] );
 
 
2387
  if ( $user_id === false ) {
2388
- setcookie( 'signup_ref', $_COOKIE['signup_ref'], time()-3600 );
 
 
2389
  return;
2390
  }
2391
 
2392
  // Delete Cookie
2393
- setcookie( 'signup_ref', $_COOKIE['signup_ref'], time()-3600 );
 
2394
 
2395
- // If points are awarded for visitor referrals
2396
- if ( $this->ref_counts( $user_id, $IP, 'signup' ) )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2397
 
2398
- // Award when users account gets activated
2399
- if ( function_exists( 'buddypress' ) && apply_filters( 'bp_core_signup_send_activation_key', true ) ) {
2400
- mycred_add_user_meta( $new_user_id, 'referred_by', '', $user_id );
2401
- mycred_add_user_meta( $new_user_id, 'referred_by_IP', '', $IP );
2402
- }
2403
- // Award now
2404
- else {
2405
- $this->core->add_creds(
2406
- 'signup_referral',
2407
- $user_id,
2408
- $this->prefs['signup']['creds'],
2409
- $this->prefs['signup']['log'],
2410
- $new_user_id,
2411
- $IP,
2412
- $this->mycred_type
2413
- );
2414
  }
2415
 
 
 
2416
  // Let others play
2417
  do_action( 'mycred_affiliate_signup', $new_user_id, $user_id, $this );
2418
  }
@@ -2427,7 +2450,8 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
2427
  // Check if there is a referral
2428
  $referred_by = mycred_get_user_meta( $user_id, 'referred_by', '', true );
2429
  $referred_by_IP = mycred_get_user_meta( $user_id, 'referred_by_IP', '', true );
2430
- if ( $referred_by == '' || $referred_by_IP == '' ) return;
 
2431
 
2432
  // Award
2433
  $this->core->add_creds(
@@ -2443,6 +2467,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
2443
  // Clean up
2444
  mycred_delete_user_meta( $user_id, 'referred_by' );
2445
  mycred_delete_user_meta( $user_id, 'referred_by_IP' );
 
2446
  }
2447
 
2448
  /**
@@ -2729,7 +2754,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
2729
  <li class="empty">&nbsp;</li>
2730
  <li>
2731
  <label><?php _e( 'Profile Positioning', 'mycred' ); ?></label><br />
2732
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'buddypress' => 'priority' ) ); ?>" id="<?php echo $this->field_id( array( 'buddypress' => 'priority' ) ); ?>" value="<?php echo $this->core->number( $prefs['buddypress']['priority'] ); ?>" size="8" /></div><br />
2733
  <span class="description"><?php _e( 'You can move around the referral link on your users profile by changing the position. Increase to move up, decrease to move down.', 'mycred' ); ?></span><br />
2734
  <span class="description"><?php printf( '<strong>%s</strong> %s', __( 'Note!', 'mycred' ), __( 'You can not move the referral link above the users "Base" profile details!', 'mycred' ) ); ?></span><br />
2735
  </li>
405
 
406
  // Set cookie to prevent db queries again today.
407
  $lifespan = (int) ( 24*3600 ) - ( date_i18n( 'H' ) * 3600 + date_i18n( 'i' ) * 60 + date_i18n( 's' ) );
408
+ if ( ! headers_sent() ) setcookie( 'mycred_site_visit', 1, $lifespan );
409
 
410
  // Make sure user is not excluded
411
  if ( $this->core->exclude_user( $user_id ) ) return;
2158
  /**
2159
  * Hook for affiliations
2160
  * @since 1.4
2161
+ * @version 1.2
2162
  */
2163
  if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
2164
  class myCRED_Hook_Affiliate extends myCRED_Hook {
2213
  /**
2214
  * Run
2215
  * @since 1.4
2216
+ * @version 1.1
2217
  */
2218
  public function run() {
2219
  // Insert into BuddyPress profile
2220
  if ( function_exists( 'bp_is_active' ) && bp_is_active( 'xprofile' ) && $this->prefs['buddypress']['profile'] )
2221
  add_action( 'bp_after_profile_loop_content', array( $this, 'buddypress_profile' ), $this->prefs['buddypress']['priority'] );
2222
 
2223
+ // Hook into user activation
2224
+ if ( function_exists( 'buddypress' ) && apply_filters( 'bp_core_signup_send_activation_key', true ) )
2225
+ add_action( 'bp_core_activated_user', array( $this, 'verified_signup' ) );
2226
+
2227
  // Register Shortcodes
2228
  add_shortcode( 'mycred_affiliate_link', array( $this, 'shortcode_affiliate_link' ) );
2229
  add_shortcode( 'mycred_affiliate_id', array( $this, 'shortcode_affiliate_id' ) );
2239
  if ( $this->prefs['signup']['creds'] != 0 )
2240
  add_action( 'user_register', array( $this, 'site_signup' ) );
2241
 
 
 
 
 
2242
  }
2243
 
2244
  /**
2328
  /**
2329
  * Visits
2330
  * @since 1.4
2331
+ * @version 1.3
2332
  */
2333
  public function site_visits() {
2334
  // Required
2335
+ if ( ! isset( $_GET[ $this->ref_key ] ) || empty( $_GET[ $this->ref_key ] ) || isset( $_COOKIE[ 'mycred_ref' . $this->mycred_type ] ) ) return;
2336
 
2337
  // Attempt to get the user id based on the referral id
2338
  $user_id = $this->get_user_id_from_ref_id( $_GET[ $this->ref_key ] );
2359
 
2360
  }
2361
 
2362
+ if ( ! headers_sent() )
2363
+ setcookie( 'mycred_ref' . $this->mycred_type, $_GET[ $this->ref_key ], apply_filters( 'mycred_affiliate_cookie', ( time()+3600*24 ), false ) );
2364
 
2365
  // If we allow signups, we set a cookie now
2366
+ if ( $this->prefs['signup']['creds'] != 0 && ! headers_sent() )
2367
+ setcookie( 'signup_ref' . $this->mycred_type, $_GET[ $this->ref_key ], apply_filters( 'mycred_affiliate_cookie', ( time()+3600*24 ), true ) );
2368
 
2369
  // Let others play
2370
+ do_action( 'mycred_affiliate_visit', $user_id, $this );
2371
 
2372
  // Redirect to the URL without the ref key
2373
  wp_redirect( remove_query_arg( array( $this->ref_key ) ) );
2377
  /**
2378
  * Signups
2379
  * @since 1.4
2380
+ * @version 1.2
2381
  */
2382
  public function site_signup( $new_user_id ) {
2383
  // Requirement
2384
+ $ref = false;
2385
+ $key = '';
2386
+ if ( isset( $_COOKIE[ 'signup_ref' . $this->mycred_type ] ) ) {
2387
+ $ref = $_COOKIE[ 'signup_ref' . $this->mycred_type ];
2388
+ $key = 'signup_ref' . $this->mycred_type;
2389
+ }
2390
+ elseif ( isset( $_COOKIE[ 'mycred_ref' . $this->mycred_type ] ) ) {
2391
+ $ref = $_COOKIE[ 'mycred_ref' . $this->mycred_type ];
2392
+ $key = 'mycred_ref' . $this->mycred_type;
2393
+ }
2394
 
2395
+ if ( $ref === false ) return;
2396
+
2397
+ // Attempt to get the user id based on the referrer
2398
+ $user_id = $this->get_user_id_from_ref_id( $ref );
2399
  if ( $user_id === false ) {
2400
+ if ( ! headers_sent() )
2401
+ setcookie( $key, $ref, time()-3600 );
2402
+
2403
  return;
2404
  }
2405
 
2406
  // Delete Cookie
2407
+ if ( ! headers_sent() )
2408
+ setcookie( $key, $ref, time()-3600 );
2409
 
2410
+ // Attempt to get the users IP
2411
+ $IP = apply_filters( 'mycred_affiliate_IP', $_SERVER['REMOTE_ADDR'] );
2412
+ if ( $IP != '' && $IP != '0.0.0.0' ) {
2413
+
2414
+ if ( $this->ref_counts( $user_id, $IP, 'signup' ) ) {
2415
+
2416
+ // Award when users account gets activated
2417
+ if ( function_exists( 'buddypress' ) && apply_filters( 'bp_core_signup_send_activation_key', true ) === true ) {
2418
+ mycred_add_user_meta( $new_user_id, 'referred_by', '', $user_id );
2419
+ mycred_add_user_meta( $new_user_id, 'referred_by_IP', '', $IP );
2420
+ mycred_add_user_meta( $new_user_id, 'referred_by_type', '', $this->mycred_type );
2421
+ }
2422
+ // Award now
2423
+ else {
2424
+ $this->core->add_creds(
2425
+ 'signup_referral',
2426
+ $user_id,
2427
+ $this->prefs['signup']['creds'],
2428
+ $this->prefs['signup']['log'],
2429
+ $new_user_id,
2430
+ $IP,
2431
+ $this->mycred_type
2432
+ );
2433
+ }
2434
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2435
  }
2436
 
2437
+ }
2438
+
2439
  // Let others play
2440
  do_action( 'mycred_affiliate_signup', $new_user_id, $user_id, $this );
2441
  }
2450
  // Check if there is a referral
2451
  $referred_by = mycred_get_user_meta( $user_id, 'referred_by', '', true );
2452
  $referred_by_IP = mycred_get_user_meta( $user_id, 'referred_by_IP', '', true );
2453
+ $referred_type = mycred_get_user_meta( $user_id, 'referred_by_type', '', true );
2454
+ if ( $referred_by == '' || $referred_by_IP == '' || $this->mycred_type != $referred_type ) return;
2455
 
2456
  // Award
2457
  $this->core->add_creds(
2467
  // Clean up
2468
  mycred_delete_user_meta( $user_id, 'referred_by' );
2469
  mycred_delete_user_meta( $user_id, 'referred_by_IP' );
2470
+ mycred_delete_user_meta( $user_id, 'referred_by_type' );
2471
  }
2472
 
2473
  /**
2754
  <li class="empty">&nbsp;</li>
2755
  <li>
2756
  <label><?php _e( 'Profile Positioning', 'mycred' ); ?></label><br />
2757
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'buddypress' => 'priority' ) ); ?>" id="<?php echo $this->field_id( array( 'buddypress' => 'priority' ) ); ?>" value="<?php echo $prefs['buddypress']['priority']; ?>" size="8" /></div><br />
2758
  <span class="description"><?php _e( 'You can move around the referral link on your users profile by changing the position. Increase to move up, decrease to move down.', 'mycred' ); ?></span><br />
2759
  <span class="description"><?php printf( '<strong>%s</strong> %s', __( 'Note!', 'mycred' ), __( 'You can not move the referral link above the users "Base" profile details!', 'mycred' ) ); ?></span><br />
2760
  </li>
modules/mycred-module-log.php CHANGED
@@ -318,7 +318,7 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) {
318
  /**
319
  * Admin Page
320
  * @since 0.1
321
- * @version 1.2.1
322
  */
323
  public function admin_page() {
324
  // Security
@@ -335,24 +335,24 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) {
335
  // Prep
336
  $args = array( 'number' => absint( $per_page ) );
337
 
338
- if ( isset( $_GET['type'] ) && ! empty( $_GET['type'] ) )
339
  $args['ctype'] = $_GET['type'];
340
  else
341
  $args['ctype'] = $this->mycred_type;
342
 
343
- if ( isset( $_GET['user_id'] ) && ! empty( $_GET['user_id'] ) )
344
  $args['user_id'] = $_GET['user_id'];
345
 
346
- if ( isset( $_GET['s'] ) && ! empty( $_GET['s'] ) )
347
  $args['s'] = $_GET['s'];
348
 
349
- if ( isset( $_GET['ref'] ) && ! empty( $_GET['ref'] ) )
350
  $args['ref'] = $_GET['ref'];
351
 
352
- if ( isset( $_GET['show'] ) && ! empty( $_GET['show'] ) )
353
  $args['time'] = $_GET['show'];
354
 
355
- if ( isset( $_GET['order'] ) && ! empty( $_GET['order'] ) )
356
  $args['order'] = $_GET['order'];
357
 
358
  if ( isset( $_GET['start'] ) && isset( $_GET['end'] ) )
@@ -364,9 +364,12 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) {
364
  elseif ( isset( $_GET['amount'] ) )
365
  $args['amount'] = $_GET['amount'];
366
 
367
- if ( isset( $_GET['data'] ) && ! empty( $_GET['data'] ) )
368
  $args['data'] = $_GET['data'];
369
 
 
 
 
370
  $log = new myCRED_Query_Log( $args );
371
 
372
  $log->headers['column-actions'] = __( 'Actions', 'mycred' ); ?>
@@ -383,27 +386,30 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) {
383
  <form method="get" action="">
384
  <?php
385
 
386
- if ( isset( $_GET['type'] ) && ! empty( $_GET['type'] ) )
387
  echo '<input type="hidden" name="type" value="' . $_GET['type'] . '" />';
388
 
389
- if ( isset( $_GET['user_id'] ) && ! empty( $_GET['user_id'] ) )
390
  echo '<input type="hidden" name="user_id" value="' . $_GET['user_id'] . '" />';
391
 
392
- if ( isset( $_GET['s'] ) && ! empty( $_GET['s'] ) )
393
  echo '<input type="hidden" name="s" value="' . $_GET['s'] . '" />';
394
 
395
- if ( isset( $_GET['ref'] ) && ! empty( $_GET['ref'] ) )
396
  echo '<input type="hidden" name="ref" value="' . $_GET['ref'] . '" />';
397
 
398
- if ( isset( $_GET['show'] ) && ! empty( $_GET['show'] ) )
399
  echo '<input type="hidden" name="show" value="' . $_GET['show'] . '" />';
400
 
401
- if ( isset( $_GET['order'] ) && ! empty( $_GET['order'] ) )
402
  echo '<input type="hidden" name="order" value="' . $_GET['order'] . '" />';
403
 
404
- if ( isset( $_GET['data'] ) && ! empty( $_GET['data'] ) )
405
  echo '<input type="hidden" name="data" value="' . $_GET['data'] . '" />';
406
 
 
 
 
407
  $log->search(); ?>
408
 
409
  <input type="hidden" name="page" value="<?php echo $this->screen_id; ?>" />
@@ -612,6 +618,9 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) {
612
  elseif ( isset( $_GET['amount'] ) )
613
  $args['amount'] = $_GET['amount'];
614
 
 
 
 
615
  $log = new myCRED_Query_Log( $args );
616
  unset( $log->headers['column-username'] ); ?>
617
 
@@ -639,6 +648,9 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) {
639
  if ( isset( $_GET['order'] ) && ! empty( $_GET['order'] ) )
640
  echo '<input type="hidden" name="order" value="' . $_GET['order'] . '" />';
641
 
 
 
 
642
  $log->search(); ?>
643
 
644
  <input type="hidden" name="page" value="<?php echo $_GET['page']; ?>" />
318
  /**
319
  * Admin Page
320
  * @since 0.1
321
+ * @version 1.3
322
  */
323
  public function admin_page() {
324
  // Security
335
  // Prep
336
  $args = array( 'number' => absint( $per_page ) );
337
 
338
+ if ( isset( $_GET['type'] ) && $_GET['type'] != '' )
339
  $args['ctype'] = $_GET['type'];
340
  else
341
  $args['ctype'] = $this->mycred_type;
342
 
343
+ if ( isset( $_GET['user_id'] ) && $_GET['user_id'] != '' )
344
  $args['user_id'] = $_GET['user_id'];
345
 
346
+ if ( isset( $_GET['s'] ) && $_GET['s'] != '' )
347
  $args['s'] = $_GET['s'];
348
 
349
+ if ( isset( $_GET['ref'] ) && $_GET['ref'] != '' )
350
  $args['ref'] = $_GET['ref'];
351
 
352
+ if ( isset( $_GET['show'] ) && $_GET['show'] != '' )
353
  $args['time'] = $_GET['show'];
354
 
355
+ if ( isset( $_GET['order'] ) && $_GET['order'] != '' )
356
  $args['order'] = $_GET['order'];
357
 
358
  if ( isset( $_GET['start'] ) && isset( $_GET['end'] ) )
364
  elseif ( isset( $_GET['amount'] ) )
365
  $args['amount'] = $_GET['amount'];
366
 
367
+ if ( isset( $_GET['data'] ) && $_GET['data'] != '' )
368
  $args['data'] = $_GET['data'];
369
 
370
+ if ( isset( $_GET['paged'] ) && $_GET['paged'] != '' )
371
+ $args['paged'] = $_GET['paged'];
372
+
373
  $log = new myCRED_Query_Log( $args );
374
 
375
  $log->headers['column-actions'] = __( 'Actions', 'mycred' ); ?>
386
  <form method="get" action="">
387
  <?php
388
 
389
+ if ( isset( $_GET['type'] ) && $_GET['type'] != '' )
390
  echo '<input type="hidden" name="type" value="' . $_GET['type'] . '" />';
391
 
392
+ if ( isset( $_GET['user_id'] ) && $_GET['user_id'] != '' )
393
  echo '<input type="hidden" name="user_id" value="' . $_GET['user_id'] . '" />';
394
 
395
+ if ( isset( $_GET['s'] ) && $_GET['s'] != '' )
396
  echo '<input type="hidden" name="s" value="' . $_GET['s'] . '" />';
397
 
398
+ if ( isset( $_GET['ref'] ) && $_GET['ref'] != '' )
399
  echo '<input type="hidden" name="ref" value="' . $_GET['ref'] . '" />';
400
 
401
+ if ( isset( $_GET['show'] ) && $_GET['show'] != '' )
402
  echo '<input type="hidden" name="show" value="' . $_GET['show'] . '" />';
403
 
404
+ if ( isset( $_GET['order'] ) && $_GET['order'] != '' )
405
  echo '<input type="hidden" name="order" value="' . $_GET['order'] . '" />';
406
 
407
+ if ( isset( $_GET['data'] ) && $_GET['data'] != '' )
408
  echo '<input type="hidden" name="data" value="' . $_GET['data'] . '" />';
409
 
410
+ if ( isset( $_GET['paged'] ) && $_GET['paged'] != '' )
411
+ echo '<input type="hidden" name="paged" value="' . $_GET['paged'] . '" />';
412
+
413
  $log->search(); ?>
414
 
415
  <input type="hidden" name="page" value="<?php echo $this->screen_id; ?>" />
618
  elseif ( isset( $_GET['amount'] ) )
619
  $args['amount'] = $_GET['amount'];
620
 
621
+ if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) )
622
+ $args['paged'] = $_GET['paged'];
623
+
624
  $log = new myCRED_Query_Log( $args );
625
  unset( $log->headers['column-username'] ); ?>
626
 
648
  if ( isset( $_GET['order'] ) && ! empty( $_GET['order'] ) )
649
  echo '<input type="hidden" name="order" value="' . $_GET['order'] . '" />';
650
 
651
+ if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) )
652
+ echo '<input type="hidden" name="paged" value="' . $_GET['paged'] . '" />';
653
+
654
  $log->search(); ?>
655
 
656
  <input type="hidden" name="page" value="<?php echo $_GET['page']; ?>" />
modules/mycred-module-settings.php CHANGED
@@ -50,7 +50,7 @@ if ( ! class_exists( 'myCRED_Settings_Module' ) ) {
50
  /**
51
  * Empty Log Action
52
  * @since 1.3
53
- * @version 1.3
54
  */
55
  public function action_empty_log() {
56
  // Security
@@ -69,6 +69,7 @@ if ( ! class_exists( 'myCRED_Settings_Module' ) ) {
69
  global $wpdb;
70
 
71
  // If we only have one point type we truncate the log
 
72
  if ( count( $mycred_types ) == 1 && $type == 'mycred_default' )
73
  $wpdb->query( "TRUNCATE TABLE {$this->core->log_table};" );
74
 
50
  /**
51
  * Empty Log Action
52
  * @since 1.3
53
+ * @version 1.3.1
54
  */
55
  public function action_empty_log() {
56
  // Security
69
  global $wpdb;
70
 
71
  // If we only have one point type we truncate the log
72
+ $mycred_types = mycred_get_types();
73
  if ( count( $mycred_types ) == 1 && $type == 'mycred_default' )
74
  $wpdb->query( "TRUNCATE TABLE {$this->core->log_table};" );
75
 
mycred.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: myCRED
4
  * Plugin URI: http://mycred.me
5
  * Description: <strong>my</strong>CRED is an adaptive points management system for WordPress powered websites, giving you full control on how points are gained, used, traded, managed, logged or presented.
6
- * Version: 1.5.1
7
  * Tags: points, tokens, credit, management, reward, charge, buddypress, bbpress, jetpack, woocommerce, marketpress, wp e-commerce, gravity forms, simplepress
8
  * Author: Gabriel S Merovingi
9
  * Author URI: http://www.merovingi.com
@@ -20,7 +20,7 @@
20
  * BuddyPress Compatible: yes
21
  * Forum URI: http://mycred.me/support/forums/
22
  */
23
- define( 'myCRED_VERSION', '1.5.1' );
24
  define( 'myCRED_SLUG', 'mycred' );
25
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
26
 
@@ -395,12 +395,12 @@ endif;
395
  /**
396
  * Adjust the Tool Bar
397
  * @since 1.3
398
- * @version 1.4.1
399
  */
400
  if ( ! function_exists( 'mycred_hook_into_toolbar' ) ) :
401
  function mycred_hook_into_toolbar( $wp_admin_bar )
402
  {
403
- if ( ! is_user_logged_in() ) return;
404
 
405
  $user_id = get_current_user_id();
406
 
3
  * Plugin Name: myCRED
4
  * Plugin URI: http://mycred.me
5
  * Description: <strong>my</strong>CRED is an adaptive points management system for WordPress powered websites, giving you full control on how points are gained, used, traded, managed, logged or presented.
6
+ * Version: 1.5.2
7
  * Tags: points, tokens, credit, management, reward, charge, buddypress, bbpress, jetpack, woocommerce, marketpress, wp e-commerce, gravity forms, simplepress
8
  * Author: Gabriel S Merovingi
9
  * Author URI: http://www.merovingi.com
20
  * BuddyPress Compatible: yes
21
  * Forum URI: http://mycred.me/support/forums/
22
  */
23
+ define( 'myCRED_VERSION', '1.5.2' );
24
  define( 'myCRED_SLUG', 'mycred' );
25
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
26
 
395
  /**
396
  * Adjust the Tool Bar
397
  * @since 1.3
398
+ * @version 1.4.2
399
  */
400
  if ( ! function_exists( 'mycred_hook_into_toolbar' ) ) :
401
  function mycred_hook_into_toolbar( $wp_admin_bar )
402
  {
403
+ if ( ! is_user_logged_in() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) return;
404
 
405
  $user_id = get_current_user_id();
406
 
plugins/mycred-hook-badgeOS.php CHANGED
@@ -10,12 +10,10 @@ if ( defined( 'myCRED_VERSION' ) ) {
10
  /**
11
  * Register Hook
12
  * @since 1.0.8
13
- * @version 1.1
14
  */
15
  add_filter( 'mycred_setup_hooks', 'badgeOS_myCRED_Hook', 10, 2 );
16
  function badgeOS_myCRED_Hook( $installed, $type = 'mycred_default' ) {
17
- if ( $type != 'mycred_default' ) return $installed;
18
-
19
  $installed['badgeos'] = array(
20
  'title' => __( 'BadgeOS', 'mycred' ),
21
  'description' => __( 'Default settings for each BadgeOS Achievement type. These settings may be overridden for individual achievement type.', 'mycred' ),
@@ -38,7 +36,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
38
  /**
39
  * BadgeOS Hook
40
  * @since 1.0.8
41
- * @version 1.0
42
  */
43
  if ( ! class_exists( 'myCRED_Hook_BadgeOS' ) && class_exists( 'myCRED_Hook' ) ) {
44
  class myCRED_Hook_BadgeOS extends myCRED_Hook {
@@ -51,6 +49,12 @@ if ( defined( 'myCRED_VERSION' ) ) {
51
  'id' => 'badgeos',
52
  'defaults' => ''
53
  ), $hook_prefs, $type );
 
 
 
 
 
 
54
  }
55
 
56
  /**
@@ -77,8 +81,8 @@ if ( defined( 'myCRED_VERSION' ) ) {
77
  foreach ( $badge_post_types as $post_type ) {
78
  // Add Meta Box
79
  add_meta_box(
80
- 'mycred_badgeos_' . $post_type,
81
- __( 'myCRED', 'mycred' ),
82
  array( $this, 'render_meta_box' ),
83
  $post_type,
84
  'side',
@@ -90,32 +94,37 @@ if ( defined( 'myCRED_VERSION' ) ) {
90
  /**
91
  * Render Meta Box
92
  * @since 1.0.8
93
- * @version 1.0
94
  */
95
  public function render_meta_box( $post ) {
96
  // Setup is needed
97
  if ( ! isset( $this->prefs[ $post->post_type ] ) ) {
98
- $message = sprintf( __( 'Please setup your <a href="%s">default settings</a> before using this feature.', 'mycred' ), admin_url( 'admin.php?page=myCRED_page_hooks' ) );
 
 
 
99
  echo '<p>' . $message . '</p>';
 
100
  }
101
 
 
 
102
  // Prep Achievement Data
103
  $prefs = $this->prefs;
104
- $mycred = mycred();
105
- $achievement_data = get_post_meta( $post->ID, '_mycred_values', true );
106
- if ( empty( $achievement_data ) )
107
  $achievement_data = $prefs[ $post->post_type ]; ?>
108
 
109
- <p><strong><?php echo $mycred->template_tags_general( __( '%plural% to Award', 'mycred' ) ); ?></strong></p>
110
  <p>
111
- <label class="screen-reader-text" for="mycred-values-creds"><?php echo $mycred->template_tags_general( __( '%plural% to Award', 'mycred' ) ); ?></label>
112
- <input type="text" name="mycred_values[creds]" id="mycred-values-creds" value="<?php echo $mycred->number( $achievement_data['creds'] ); ?>" size="8" />
113
  <span class="description"><?php _e( 'Use zero to disable', 'mycred' ); ?></span>
114
  </p>
115
  <p><strong><?php _e( 'Log Template', 'mycred' ); ?></strong></p>
116
  <p>
117
- <label class="screen-reader-text" for="mycred-values-log"><?php _e( 'Log Template', 'mycred' ); ?></label>
118
- <input type="text" name="mycred_values[log]" id="mycred-values-log" value="<?php echo esc_attr( $achievement_data['log'] ); ?>" style="width:99%;" />
119
  </p>
120
  <?php
121
  // If deduction is enabled
@@ -123,8 +132,8 @@ if ( defined( 'myCRED_VERSION' ) ) {
123
 
124
  <p><strong><?php _e( 'Deduction Log Template', 'mycred' ); ?></strong></p>
125
  <p>
126
- <label class="screen-reader-text" for="mycred-values-log"><?php _e( 'Log Template', 'mycred' ); ?></label>
127
- <input type="text" name="mycred_values[deduct_log]" id="mycred-values-deduct-log" value="<?php echo esc_attr( $achievement_data['deduct_log'] ); ?>" style="width:99%;" />
128
  </p>
129
  <?php
130
  }
@@ -133,7 +142,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
133
  /**
134
  * Save Achievement Data
135
  * @since 1.0.8
136
- * @version 1.1
137
  */
138
  public function save_achivement_data( $post_id ) {
139
  // Post Type
@@ -142,38 +151,44 @@ if ( defined( 'myCRED_VERSION' ) ) {
142
  // Make sure this is a BadgeOS Object
143
  if ( ! in_array( $post_type, badgeos_get_achievement_types_slugs() ) ) return;
144
 
 
 
145
  // Make sure preference is set
146
- if ( ! isset( $this->prefs[ $post_type ] ) || ! isset( $_POST['mycred_values']['creds'] ) || ! isset( $_POST['mycred_values']['log'] ) )
147
  return;
148
 
149
  // Only save if the settings differ, otherwise we default
150
- if ( $_POST['mycred_values']['creds'] == $this->prefs[ $post_type ]['creds'] &&
151
- $_POST['mycred_values']['log'] == $this->prefs[ $post_type ]['log'] ) return;
 
 
 
 
152
 
153
  $data = array();
154
 
155
  // Creds
156
- if ( ! empty( $_POST['mycred_values']['creds'] ) && $_POST['mycred_values']['creds'] != $this->prefs[ $post_type ]['creds'] )
157
- $data['creds'] = $this->core->number( $_POST['mycred_values']['creds'] );
158
  else
159
  $data['creds'] = $this->core->number( $this->prefs[ $post_type ]['creds'] );
160
 
161
  // Log template
162
- if ( ! empty( $_POST['mycred_values']['log'] ) && $_POST['mycred_values']['log'] != $this->prefs[ $post_type ]['log'] )
163
- $data['log'] = strip_tags( $_POST['mycred_values']['log'] );
164
  else
165
  $data['log'] = strip_tags( $this->prefs[ $post_type ]['log'] );
166
 
167
  // If deduction is enabled save log template
168
  if ( $this->prefs[ $post_type ]['deduct'] == 1 ) {
169
- if ( ! empty( $_POST['mycred_values']['deduct_log'] ) && $_POST['mycred_values']['deduct_log'] != $this->prefs[ $post_type ]['deduct_log'] )
170
- $data['deduct_log'] = strip_tags( $_POST['mycred_values']['deduct_log'] );
171
  else
172
  $data['deduct_log'] = strip_tags( $this->prefs[ $post_type ]['deduct_log'] );
173
  }
174
 
175
  // Update sales values
176
- update_post_meta( $post_id, '_mycred_values', $data );
177
  }
178
 
179
  /**
@@ -181,7 +196,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
181
  * Run by BadgeOS when ever needed, we make sure settings are not zero otherwise
182
  * award points whenever this hook fires.
183
  * @since 1.0.8
184
- * @version 1.0
185
  */
186
  public function award_achievent( $user_id, $achievement_id ) {
187
  $post_type = get_post_type( $achievement_id );
@@ -189,8 +204,8 @@ if ( defined( 'myCRED_VERSION' ) ) {
189
  if ( ! isset( $this->prefs[ $post_type ]['creds'] ) ) return;
190
 
191
  // Get achievemen data
192
- $achievement_data = get_post_meta( $achievement_id, '_mycred_values', true );
193
- if ( empty( $achievement_data ) )
194
  $achievement_data = $this->prefs[ $post_type ];
195
 
196
  // Make sure its not disabled
@@ -204,7 +219,8 @@ if ( defined( 'myCRED_VERSION' ) ) {
204
  $achievement_data['creds'],
205
  $achievement_data['log'],
206
  $achievement_id,
207
- array( 'ref_type' => 'post' )
 
208
  );
209
  }
210
 
@@ -212,7 +228,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
212
  * Revoke Achievement
213
  * Run by BadgeOS when a users achievement is revoed.
214
  * @since 1.0.8
215
- * @version 1.1
216
  */
217
  public function revoke_achievement( $user_id, $achievement_id ) {
218
  $post_type = get_post_type( $achievement_id );
@@ -220,8 +236,8 @@ if ( defined( 'myCRED_VERSION' ) ) {
220
  if ( ! isset( $this->prefs[ $post_type ]['creds'] ) ) return;
221
 
222
  // Get achievemen data
223
- $achievement_data = get_post_meta( $achievement_id, '_mycred_values', true );
224
- if ( empty( $achievement_data ) )
225
  $achievement_data = $this->prefs[ $post_type ];
226
 
227
  // Make sure its not disabled
@@ -235,7 +251,8 @@ if ( defined( 'myCRED_VERSION' ) ) {
235
  0-$achievement_data['creds'],
236
  $achievement_data['deduct_log'],
237
  $achievement_id,
238
- array( 'ref_type' => 'post' )
 
239
  );
240
  }
241
 
@@ -269,7 +286,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
269
  <li class="empty">&nbsp;</li>
270
  <li>
271
  <label for="<?php echo $this->field_id( array( $post_type, 'log' ) ); ?>"><?php _e( 'Default Log template', 'mycred' ); ?></label>
272
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type, 'log' ) ); ?>" id="<?php echo $this->field_id( array( $form_id, 'log' ) ); ?>" value="<?php echo esc_attr( $prefs[ $post_type ]['log'] ); ?>" class="long" /></div>
273
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
274
  </li>
275
  <li>
@@ -279,7 +296,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
279
  <li class="empty">&nbsp;</li>
280
  <li>
281
  <label for="<?php echo $this->field_id( array( $post_type, 'deduct_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
282
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type, 'deduct_log' ) ); ?>" id="<?php echo $this->field_id( array( $form_id, 'deduct_log' ) ); ?>" value="<?php echo esc_attr( $prefs[ $post_type ]['deduct_log'] ); ?>" class="long" /></div>
283
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
284
  </li>
285
  </ol>
10
  /**
11
  * Register Hook
12
  * @since 1.0.8
13
+ * @version 1.2
14
  */
15
  add_filter( 'mycred_setup_hooks', 'badgeOS_myCRED_Hook', 10, 2 );
16
  function badgeOS_myCRED_Hook( $installed, $type = 'mycred_default' ) {
 
 
17
  $installed['badgeos'] = array(
18
  'title' => __( 'BadgeOS', 'mycred' ),
19
  'description' => __( 'Default settings for each BadgeOS Achievement type. These settings may be overridden for individual achievement type.', 'mycred' ),
36
  /**
37
  * BadgeOS Hook
38
  * @since 1.0.8
39
+ * @version 1.1
40
  */
41
  if ( ! class_exists( 'myCRED_Hook_BadgeOS' ) && class_exists( 'myCRED_Hook' ) ) {
42
  class myCRED_Hook_BadgeOS extends myCRED_Hook {
49
  'id' => 'badgeos',
50
  'defaults' => ''
51
  ), $hook_prefs, $type );
52
+
53
+ $key = '_mycred_values';
54
+ if ( ! $this->is_main_type )
55
+ $key .= '_' . $this->mycred_type;
56
+
57
+ $this->metakey = $key;
58
  }
59
 
60
  /**
81
  foreach ( $badge_post_types as $post_type ) {
82
  // Add Meta Box
83
  add_meta_box(
84
+ 'mycred_badgeos_' . $post_type . '_' . $this->mycred_type,
85
+ $this->core->plural(),
86
  array( $this, 'render_meta_box' ),
87
  $post_type,
88
  'side',
94
  /**
95
  * Render Meta Box
96
  * @since 1.0.8
97
+ * @version 1.1
98
  */
99
  public function render_meta_box( $post ) {
100
  // Setup is needed
101
  if ( ! isset( $this->prefs[ $post->post_type ] ) ) {
102
+ $page = 'myCRED_page_hooks';
103
+ if ( ! $this->is_main_type )
104
+ $page = 'myCRED_' . $this->mycred_type . '_page_hooks';
105
+ $message = sprintf( __( 'Please setup your <a href="%s">default settings</a> before using this feature.', 'mycred' ), admin_url( 'admin.php?page=' . $page ) );
106
  echo '<p>' . $message . '</p>';
107
+ return;
108
  }
109
 
110
+ $post_key = 'mycred_values' . $this->mycred_type;
111
+
112
  // Prep Achievement Data
113
  $prefs = $this->prefs;
114
+ $achievement_data = get_post_meta( $post->ID, $this->metakey, true );
115
+ if ( $achievement_data == '' )
 
116
  $achievement_data = $prefs[ $post->post_type ]; ?>
117
 
118
+ <p><strong><?php echo $this->core->template_tags_general( __( '%plural% to Award', 'mycred' ) ); ?></strong></p>
119
  <p>
120
+ <label class="screen-reader-text" for="mycred-values-<?php echo $this->mycred_type; ?>-creds"><?php echo $this->core->template_tags_general( __( '%plural% to Award', 'mycred' ) ); ?></label>
121
+ <input type="text" name="<?php echo $post_key; ?>[creds]" id="mycred-values-<?php echo $this->mycred_type; ?>-creds" value="<?php echo $this->core->number( $achievement_data['creds'] ); ?>" size="8" />
122
  <span class="description"><?php _e( 'Use zero to disable', 'mycred' ); ?></span>
123
  </p>
124
  <p><strong><?php _e( 'Log Template', 'mycred' ); ?></strong></p>
125
  <p>
126
+ <label class="screen-reader-text" for="mycred-values-<?php echo $this->mycred_type; ?>-log"><?php _e( 'Log Template', 'mycred' ); ?></label>
127
+ <input type="text" name="<?php echo $post_key; ?>[log]" id="mycred-values-<?php echo $this->mycred_type; ?>-log" value="<?php echo esc_attr( $achievement_data['log'] ); ?>" style="width:99%;" />
128
  </p>
129
  <?php
130
  // If deduction is enabled
132
 
133
  <p><strong><?php _e( 'Deduction Log Template', 'mycred' ); ?></strong></p>
134
  <p>
135
+ <label class="screen-reader-text" for="mycred-values-<?php echo $this->mycred_type; ?>-log"><?php _e( 'Log Template', 'mycred' ); ?></label>
136
+ <input type="text" name="<?php echo $post_key; ?>[deduct_log]" id="mycred-values-deduct-<?php echo $this->mycred_type; ?>-log" value="<?php echo esc_attr( $achievement_data['deduct_log'] ); ?>" style="width:99%;" />
137
  </p>
138
  <?php
139
  }
142
  /**
143
  * Save Achievement Data
144
  * @since 1.0.8
145
+ * @version 1.2
146
  */
147
  public function save_achivement_data( $post_id ) {
148
  // Post Type
151
  // Make sure this is a BadgeOS Object
152
  if ( ! in_array( $post_type, badgeos_get_achievement_types_slugs() ) ) return;
153
 
154
+ $post_key = 'mycred_values' . $this->mycred_type;
155
+
156
  // Make sure preference is set
157
+ if ( ! isset( $this->prefs[ $post_type ] ) || ! isset( $_POST[ $post_key ]['creds'] ) || ! isset( $_POST[ $post_key ]['log'] ) )
158
  return;
159
 
160
  // Only save if the settings differ, otherwise we default
161
+ if ( $_POST[ $post_key ]['creds'] == $this->prefs[ $post_type ]['creds'] &&
162
+ $_POST[ $post_key ]['log'] == $this->prefs[ $post_type ]['log'] ) {
163
+
164
+ delete_post_meta( $post_id, $this->metakey );
165
+ return;
166
+ }
167
 
168
  $data = array();
169
 
170
  // Creds
171
+ if ( ! empty( $_POST[ $post_key ]['creds'] ) && $_POST[ $post_key ]['creds'] != $this->prefs[ $post_type ]['creds'] )
172
+ $data['creds'] = $this->core->number( $_POST[ $post_key ]['creds'] );
173
  else
174
  $data['creds'] = $this->core->number( $this->prefs[ $post_type ]['creds'] );
175
 
176
  // Log template
177
+ if ( ! empty( $_POST[ $post_key ]['log'] ) && $_POST[ $post_key ]['log'] != $this->prefs[ $post_type ]['log'] )
178
+ $data['log'] = strip_tags( $_POST[ $post_key ]['log'] );
179
  else
180
  $data['log'] = strip_tags( $this->prefs[ $post_type ]['log'] );
181
 
182
  // If deduction is enabled save log template
183
  if ( $this->prefs[ $post_type ]['deduct'] == 1 ) {
184
+ if ( ! empty( $_POST[ $post_key ]['deduct_log'] ) && $_POST[ $post_key ]['deduct_log'] != $this->prefs[ $post_type ]['deduct_log'] )
185
+ $data['deduct_log'] = strip_tags( $_POST[ $post_key ]['deduct_log'] );
186
  else
187
  $data['deduct_log'] = strip_tags( $this->prefs[ $post_type ]['deduct_log'] );
188
  }
189
 
190
  // Update sales values
191
+ update_post_meta( $post_id, $this->metakey, $data );
192
  }
193
 
194
  /**
196
  * Run by BadgeOS when ever needed, we make sure settings are not zero otherwise
197
  * award points whenever this hook fires.
198
  * @since 1.0.8
199
+ * @version 1.1
200
  */
201
  public function award_achievent( $user_id, $achievement_id ) {
202
  $post_type = get_post_type( $achievement_id );
204
  if ( ! isset( $this->prefs[ $post_type ]['creds'] ) ) return;
205
 
206
  // Get achievemen data
207
+ $achievement_data = get_post_meta( $achievement_id, $this->metakey, true );
208
+ if ( $achievement_data == '' )
209
  $achievement_data = $this->prefs[ $post_type ];
210
 
211
  // Make sure its not disabled
219
  $achievement_data['creds'],
220
  $achievement_data['log'],
221
  $achievement_id,
222
+ array( 'ref_type' => 'post' ),
223
+ $this->mycred_type
224
  );
225
  }
226
 
228
  * Revoke Achievement
229
  * Run by BadgeOS when a users achievement is revoed.
230
  * @since 1.0.8
231
+ * @version 1.2
232
  */
233
  public function revoke_achievement( $user_id, $achievement_id ) {
234
  $post_type = get_post_type( $achievement_id );
236
  if ( ! isset( $this->prefs[ $post_type ]['creds'] ) ) return;
237
 
238
  // Get achievemen data
239
+ $achievement_data = get_post_meta( $achievement_id, $this->metakey, true );
240
+ if ( $achievement_data == '' )
241
  $achievement_data = $this->prefs[ $post_type ];
242
 
243
  // Make sure its not disabled
251
  0-$achievement_data['creds'],
252
  $achievement_data['deduct_log'],
253
  $achievement_id,
254
+ array( 'ref_type' => 'post' ),
255
+ $this->mycred_type
256
  );
257
  }
258
 
286
  <li class="empty">&nbsp;</li>
287
  <li>
288
  <label for="<?php echo $this->field_id( array( $post_type, 'log' ) ); ?>"><?php _e( 'Default Log template', 'mycred' ); ?></label>
289
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type, 'log' ) ); ?>" id="<?php echo $this->field_id( array( $post_type, 'log' ) ); ?>" value="<?php echo esc_attr( $prefs[ $post_type ]['log'] ); ?>" class="long" /></div>
290
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
291
  </li>
292
  <li>
296
  <li class="empty">&nbsp;</li>
297
  <li>
298
  <label for="<?php echo $this->field_id( array( $post_type, 'deduct_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
299
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type, 'deduct_log' ) ); ?>" id="<?php echo $this->field_id( array( $post_type, 'deduct_log' ) ); ?>" value="<?php echo esc_attr( $prefs[ $post_type ]['deduct_log'] ); ?>" class="long" /></div>
300
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
301
  </li>
302
  </ol>
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: designbymerovingi
3
  Tags:points, tokens, credit, management, reward, charge, community, contest, BuddyPress, Jetpack, bbPress, woocommerce, marketpress, wp e-commerce, gravity forms
4
  Requires at least: 3.8
5
  Tested up to: 4.0
6
- Stable tag: 1.5.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -11,6 +11,8 @@ myCRED is an adaptive points management system that lets you award / charge your
11
 
12
  == Description ==
13
 
 
 
14
  I felt that todays WordPress community lacks a flexible points management system. Existing system often feel restrictive, stale or lack support for popular plugins.
15
 
16
  So I built an adaptive plugin which gives it’s users full control on how points are awarded, used, traded, managed, logged and presented. Built on the "opt-in" principle, it is up to you what features you want to use and how. If your WordPress installation does not support a feature it is hidden from you to keep things clean and simple.
@@ -100,8 +102,8 @@ myCRED supports importing, exporting, inline editing and manual deletion of log
100
 
101
  == Upgrade Notice ==
102
 
103
- = 1.5.1 =
104
- Important bug fixes.
105
 
106
 
107
  == Other Notes ==
@@ -124,22 +126,20 @@ Important bug fixes.
124
 
125
  == Changelog ==
126
 
 
 
 
 
 
 
 
 
 
 
 
 
127
  = 1.5.1 =
128
- * FIX - Bad logic for management locks out the option to "Empty log".
129
- * FIX - Log export to CSV for search results are not working.
130
- * FIX - Misspelled "Registration" fix. (thanks Jesus Cardenas)
131
- * FIX - Calculate totals uses incorrect meta_key search. (thanks Jim)
132
- * FIX - Ranks on Multisites saves the users total under an incorrect meta key.
133
- * FIX - "No Rank" is shown on multisites when the Master Template feature is enabled.
134
- * FIX - Points history in toolbar not showing for those who do not use BuddyPress.
135
- * FIX - rtMedia Hook is not awarding / deducting points for media deletions.
136
- * FIX - mycred_total_balance is not counting multiple point types correctly.
137
- * FIX - Transfer form showing all point types instead of the selected ones.
138
- * FIX - buyCRED Update script should not run if buyCRED is not enabled.
139
- * TWEAK - Adjusted the transfer script to add support for custom error messages.
140
- * NEW - Hook for content views.
141
- * FIX - Email Notifications are not sent for general balance changes.
142
- * FIX - Email Notifications are not sent on servers where wp_mail is restricted.
143
 
144
  = 1.5 =
145
  http://mycred.me/support/changelog/
3
  Tags:points, tokens, credit, management, reward, charge, community, contest, BuddyPress, Jetpack, bbPress, woocommerce, marketpress, wp e-commerce, gravity forms
4
  Requires at least: 3.8
5
  Tested up to: 4.0
6
+ Stable tag: 1.5.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
11
 
12
  == Description ==
13
 
14
+ **If you are using [YOOtheme's Radience Theme](http://yootheme.com/component/blog/2012/04/02/radiance-theme), please make sure you backup your database before installing myCRED.**
15
+
16
  I felt that todays WordPress community lacks a flexible points management system. Existing system often feel restrictive, stale or lack support for popular plugins.
17
 
18
  So I built an adaptive plugin which gives it’s users full control on how points are awarded, used, traded, managed, logged and presented. Built on the "opt-in" principle, it is up to you what features you want to use and how. If your WordPress installation does not support a feature it is hidden from you to keep things clean and simple.
102
 
103
  == Upgrade Notice ==
104
 
105
+ = 1.5.2 =
106
+ Important bug fixes and new version of the Banking add-on.
107
 
108
 
109
  == Other Notes ==
126
 
127
  == Changelog ==
128
 
129
+ = 1.5.2 =
130
+ * NEW - Banking add-on 1.2.
131
+ * NEW - Added new mycred_delete_option function.
132
+ * FIX - Sell Content profit share should delete a user override instead of saving an empty value.
133
+ * FIX - Log entries and log filters are redirecting to main point type.
134
+ * FIX - Daily visit hook is not awarding points.'
135
+ * FIX - Parsing WooCommerce log entries while WooCommerce is disabled causes fatal error.
136
+ * TWEAK - Adjusted the mycred_history shortcode to allow showing all log entries and not just the current users. Also updated the codex to reflect the changes.
137
+ * TWEAK - Added ID to the BuddyPress points history filter form (if using multiple point types).
138
+ * TWEAK - Added mycred_badge to the uninstaller script.
139
+ * TWEAK - Adjusted the mycred_transfer shortcode processing function to allow easier customisations.
140
+
141
  = 1.5.1 =
142
+ http://mycred.me/support/changelog/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
 
144
  = 1.5 =
145
  http://mycred.me/support/changelog/