myCRED - Version 1.5.1

Version Description

Important bug fixes.

=

Download this release

Release Info

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

Code changes from version 1.5 to 1.5.1

abstracts/mycred-abstract-hook.php CHANGED
@@ -36,7 +36,7 @@ if ( ! class_exists( 'myCRED_Hook' ) ) {
36
  // Grab myCRED Settings
37
  $this->core = mycred( $type );
38
 
39
- if ( ! empty( $type ) ) {
40
  $this->core->cred_id = sanitize_text_field( $type );
41
  $this->mycred_type = $this->core->cred_id;
42
  }
@@ -259,11 +259,11 @@ if ( ! class_exists( 'myCRED_Hook' ) ) {
259
 
260
  // DB Query
261
  $total = $wpdb->get_var( $wpdb->prepare( "
262
- SELECT COUNT( * )
263
- FROM {$this->core->log_table}
264
- WHERE ref = %s {$ref}
265
- AND user_id = %d
266
- AND time BETWEEN %d AND %d;", $ref, $user_id, $start, $end ) );
267
 
268
  return apply_filters( 'mycred_hook_limit_query', $total, $ref, $user_id, $ref_id, $start, $end );
269
  }
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
  }
259
 
260
  // DB Query
261
  $total = $wpdb->get_var( $wpdb->prepare( "
262
+ SELECT COUNT( * )
263
+ FROM {$this->core->log_table}
264
+ WHERE ref = %s {$ref}
265
+ AND user_id = %d
266
+ AND time BETWEEN %d AND %d;", $ref, $user_id, $start, $end ) );
267
 
268
  return apply_filters( 'mycred_hook_limit_query', $total, $ref, $user_id, $ref_id, $start, $end );
269
  }
addons/buy-creds/myCRED-addon-buy-creds.php CHANGED
@@ -774,7 +774,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
774
  /**
775
  * Save Override
776
  * @since 1.5
777
- * @version 1.0
778
  */
779
  public function save_user_override() {
780
 
@@ -797,15 +797,13 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
797
  $new_rates[ $gateway_id ] = $rate;
798
  }
799
 
800
- if ( ! empty( $new_rates ) ) {
801
  mycred_update_user_meta( $user_id, 'mycred_buycred_rates_' . $ctype, '', $new_rates );
802
-
803
- wp_safe_redirect( add_query_arg( array( 'result' => 'buycred_rates' ) ) );
804
- exit;
805
- }
806
- else {
807
  mycred_delete_user_meta( $user_id, 'mycred_buycred_rates_' . $ctype );
808
- }
 
 
809
 
810
  }
811
 
774
  /**
775
  * Save Override
776
  * @since 1.5
777
+ * @version 1.1
778
  */
779
  public function save_user_override() {
780
 
797
  $new_rates[ $gateway_id ] = $rate;
798
  }
799
 
800
+ if ( ! empty( $new_rates ) )
801
  mycred_update_user_meta( $user_id, 'mycred_buycred_rates_' . $ctype, '', $new_rates );
802
+ else
 
 
 
 
803
  mycred_delete_user_meta( $user_id, 'mycred_buycred_rates_' . $ctype );
804
+
805
+ wp_safe_redirect( add_query_arg( array( 'result' => 'buycred_rates' ) ) );
806
+ exit;
807
 
808
  }
809
 
addons/email-notices/myCRED-addon-email-notices.php CHANGED
@@ -399,13 +399,13 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
399
  /**
400
  * Email Notice Check
401
  * @since 1.4.6
402
- * @version 1.0
403
  */
404
  public function get_events_from_instance( $request, $mycred ) {
405
 
406
  extract( $request );
407
 
408
- $events = array();
409
 
410
  // Events based on amount being given or taken
411
  if ( $amount < $mycred->zero() )
@@ -474,7 +474,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
474
  /**
475
  * Do Email Notices
476
  * @since 1.1
477
- * @version 1.1
478
  */
479
  public function do_email_notices( $events = array(), $request = array() ) {
480
 
@@ -512,7 +512,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
512
  $settings = $this->get_email_settings( $notice->ID );
513
 
514
  // Send to user
515
- if ( $settings['recipient'] == 'user' ) {
516
  $user = get_user_by( 'id', $user_id );
517
  $to = $user->user_email;
518
  unset( $user );
@@ -549,18 +549,29 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
549
  $headers[] = 'From: ' . $settings['senders_name'] . ' <' . $settings['senders_email'] . '>';
550
 
551
  // Reply-To
552
- if ( ! empty( $settings['reply_to'] ) )
553
  $headers[] = 'Reply-To: ' . $settings['reply_to'];
554
 
 
 
 
 
 
 
 
 
555
  }
 
 
 
 
 
556
 
557
- // Both means we blank carbon copy the admin so the user does not see email
558
- if ( $settings['recipient'] == 'both' )
559
- $headers[] = 'Bcc: ' . get_option( 'admin_email' );
560
 
561
- // If email was successfully sent we update 'last_run'
562
- if ( $this->wp_mail( $to, $subject, $message, $headers, $attachments, $request, $notice->ID ) === true )
563
- update_post_meta( $notice->ID, 'mycred_email_last_run', time() );
564
 
565
  }
566
  }
399
  /**
400
  * Email Notice Check
401
  * @since 1.4.6
402
+ * @version 1.1
403
  */
404
  public function get_events_from_instance( $request, $mycred ) {
405
 
406
  extract( $request );
407
 
408
+ $events = array( 'general|all' );
409
 
410
  // Events based on amount being given or taken
411
  if ( $amount < $mycred->zero() )
474
  /**
475
  * Do Email Notices
476
  * @since 1.1
477
+ * @version 1.2
478
  */
479
  public function do_email_notices( $events = array(), $request = array() ) {
480
 
512
  $settings = $this->get_email_settings( $notice->ID );
513
 
514
  // Send to user
515
+ if ( $settings['recipient'] == 'user' || $settings['recipient'] == 'both' ) {
516
  $user = get_user_by( 'id', $user_id );
517
  $to = $user->user_email;
518
  unset( $user );
549
  $headers[] = 'From: ' . $settings['senders_name'] . ' <' . $settings['senders_email'] . '>';
550
 
551
  // Reply-To
552
+ if ( $settings['reply_to'] != '' )
553
  $headers[] = 'Reply-To: ' . $settings['reply_to'];
554
 
555
+ // Both means we blank carbon copy the admin so the user does not see email
556
+ if ( $settings['recipient'] == 'both' )
557
+ $headers[] = 'Bcc: ' . get_option( 'admin_email' );
558
+
559
+ // If email was successfully sent we update 'last_run'
560
+ if ( $this->wp_mail( $to, $subject, $message, $headers, $attachments, $request, $notice->ID ) === true )
561
+ update_post_meta( $notice->ID, 'mycred_email_last_run', time() );
562
+
563
  }
564
+ else {
565
+
566
+ // If email was successfully sent we update 'last_run'
567
+ if ( $this->wp_mail( $to, $subject, $message, $headers, $attachments, $request, $notice->ID ) === true ) {
568
+ update_post_meta( $notice->ID, 'mycred_email_last_run', time() );
569
 
570
+ if ( $settings['recipient'] == 'both' )
571
+ $this->wp_mail( get_option( 'admin_email' ), $subject, $message, $headers, $attachments, $request, $notice->ID );
572
+ }
573
 
574
+ }
 
 
575
 
576
  }
577
  }
addons/ranks/includes/mycred-rank-functions.php CHANGED
@@ -6,13 +6,19 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
6
  * Checks if there are any rank posts.
7
  * @returns (bool) true or false
8
  * @since 1.1
9
- * @version 1.3
10
  */
11
  if ( ! function_exists( 'mycred_have_ranks' ) ) :
12
  function mycred_have_ranks()
13
  {
14
  global $mycred_ranks, $wpdb;
15
- $mycred_ranks = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->posts} WHERE post_type = 'mycred_rank';" );
 
 
 
 
 
 
16
 
17
  $return = false;
18
  if ( $mycred_ranks > 0 )
@@ -27,13 +33,19 @@ endif;
27
  * Checks if there are any published rank posts.
28
  * @returns (int) the number of published ranks found.
29
  * @since 1.3.2
30
- * @version 1.1
31
  */
32
  if ( ! function_exists( 'mycred_get_published_ranks_count' ) ) :
33
  function mycred_get_published_ranks_count()
34
  {
35
  global $wpdb;
36
- $count = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->posts} WHERE post_type = 'mycred_rank' AND post_status = 'publish';" );
 
 
 
 
 
 
37
 
38
  return apply_filters( 'mycred_get_published_ranks_count', $count );
39
  }
@@ -45,7 +57,7 @@ endif;
45
  * appropriate ranks.
46
  * @returns (int) number of users effected by rank change or -1 if all users were effected.
47
  * @since 1.3.2
48
- * @version 1.3
49
  */
50
  if ( ! function_exists( 'mycred_assign_ranks' ) ) :
51
  function mycred_assign_ranks()
@@ -56,11 +68,20 @@ if ( ! function_exists( 'mycred_assign_ranks' ) ) :
56
 
57
  // Get rank key
58
  $rank_meta_key = 'mycred_rank';
59
- if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
60
  $rank_meta_key .= '_' . $GLOBALS['blog_id'];
61
 
62
  do_action( 'mycred_assign_ranks_start' );
63
 
 
 
 
 
 
 
 
 
 
64
  // Check for published ranks
65
  $published_ranks = mycred_get_published_ranks_count();
66
 
@@ -69,7 +90,7 @@ if ( ! function_exists( 'mycred_assign_ranks' ) ) :
69
 
70
  // Get this single rank
71
  $rank_id = $wpdb->get_var( "
72
- SELECT ID FROM {$wpdb->posts}
73
  WHERE post_type = 'mycred_rank' AND post_status = 'publish';" );
74
 
75
  // Update all users rank to this single rank
@@ -120,10 +141,10 @@ if ( ! function_exists( 'mycred_assign_ranks' ) ) :
120
  */
121
  $ranks = $wpdb->get_results( "
122
  SELECT rank.ID AS ID, min.meta_value AS min, max.meta_value AS max
123
- FROM {$wpdb->posts} rank
124
- INNER JOIN {$wpdb->postmeta} min
125
  ON ( min.post_id = rank.ID AND min.meta_key = 'mycred_rank_min' )
126
- INNER JOIN {$wpdb->postmeta} max
127
  ON ( max.post_id = rank.ID AND max.meta_key = 'mycred_rank_max' )
128
  WHERE rank.post_type = 'mycred_rank'
129
  AND rank.post_status = 'publish';", 'ARRAY_A' );
@@ -163,13 +184,24 @@ endif;
163
  * @uses get_page_by_title()
164
  * @returns empty string if title is missing, NULL if rank is not found else the output type
165
  * @since 1.1
166
- * @version 1.2
167
  */
168
  if ( ! function_exists( 'mycred_get_rank' ) ) :
169
  function mycred_get_rank( $rank_title = '', $format = 'OBJECT' )
170
  {
171
  if ( empty( $rank_title ) ) return $rank_title;
172
- $rank = get_page_by_title( $rank_title, $format, 'mycred_rank' );
 
 
 
 
 
 
 
 
 
 
 
173
 
174
  return apply_filters( 'mycred_get_rank', $rank, $rank_title, $format );
175
  }
@@ -187,7 +219,7 @@ endif;
187
  * @uses get_the_title()
188
  * @returns (string) rank object item requested or - if no ranks exists
189
  * @since 1.1
190
- * @version 1.2
191
  */
192
  if ( ! function_exists( 'mycred_get_users_rank' ) ) :
193
  function mycred_get_users_rank( $user_id = NULL, $return = 'post_title', $logo_size = 'post-thumbnail', $attr = NULL )
@@ -200,14 +232,13 @@ if ( ! function_exists( 'mycred_get_users_rank' ) ) :
200
  $rank_id = mycred_get_user_meta( $user_id, 'mycred_rank', '', true );
201
 
202
  // If empty, get the users rank now and save it
203
- if ( empty( $rank_id ) ) {
204
  $rank_id = mycred_find_users_rank( $user_id, true );
205
- }
206
 
207
  $reply = __( 'no rank', 'mycred' );
208
 
209
  // Have rank
210
- if ( ! empty( $rank_id ) ) {
211
 
212
  // If we want to see the logo
213
  if ( $return == 'logo' )
@@ -215,8 +246,20 @@ if ( ! function_exists( 'mycred_get_users_rank' ) ) :
215
 
216
  // Else get the post object
217
  else {
218
- // Get rank post object
219
- $rank = get_post( (int) $rank_id );
 
 
 
 
 
 
 
 
 
 
 
 
220
 
221
  // If the requested detail exists, return it
222
  if ( isset( $rank->$return ) )
@@ -294,12 +337,21 @@ if ( ! function_exists( 'mycred_find_users_rank' ) ) :
294
  if ( isset( $mycred->format['decimals'] ) && $mycred->format['decimals'] > 0 )
295
  $balance_format = 'CAST( %f AS DECIMAL( 10, ' . $mycred->format['decimals'] . ' ) )';
296
 
 
 
 
 
 
 
 
 
 
297
  $rank_id = $wpdb->get_var( $wpdb->prepare( "
298
  SELECT rank.ID
299
- FROM {$wpdb->posts} rank
300
- INNER JOIN {$wpdb->postmeta} min
301
  ON ( min.post_id = rank.ID AND min.meta_key = 'mycred_rank_min' )
302
- INNER JOIN {$wpdb->postmeta} max
303
  ON ( max.post_id = rank.ID AND max.meta_key = 'mycred_rank_max' )
304
  WHERE rank.post_type = 'mycred_rank'
305
  AND rank.post_status = 'publish'
@@ -319,15 +371,8 @@ if ( ! function_exists( 'mycred_find_users_rank' ) ) :
319
  }
320
 
321
  // Save if requested
322
- if ( $save && $rank_id !== NULL ) {
323
-
324
- $rank_meta_key = 'mycred_rank';
325
- if ( is_multisite() && ! mycred_override_settings() )
326
- $rank_meta_key .= '_' . $GLOBALS['blog_id'];
327
-
328
- mycred_update_user_meta( $user_id, $rank_meta_key, '', $rank_id );
329
-
330
- }
331
 
332
  return apply_filters( 'mycred_find_users_rank', $rank_id, $user_id, $save, $amount );
333
  }
@@ -376,7 +421,7 @@ endif;
376
  * @param $order (string) option to return ranks ordered Ascending or Descending
377
  * @returns (array) empty if no ranks are found or associative array with post ID as key and title as value
378
  * @since 1.1
379
- * @version 1.2
380
  */
381
  if ( ! function_exists( 'mycred_get_ranks' ) ) :
382
  function mycred_get_ranks( $status = 'publish', $number = '-1', $order = 'DESC' )
@@ -393,11 +438,20 @@ if ( ! function_exists( 'mycred_get_ranks' ) ) :
393
  else
394
  $limit = '';
395
 
 
 
 
 
 
 
 
 
 
396
  // Get ranks
397
  $all_ranks = $wpdb->get_results( $wpdb->prepare( "
398
  SELECT *
399
- FROM {$wpdb->posts} ranks
400
- INNER JOIN {$wpdb->postmeta} min
401
  ON ( min.post_id = ranks.ID AND min.meta_key = %s )
402
  WHERE ranks.post_type = %s
403
  AND ranks.post_status = %s
@@ -424,7 +478,7 @@ endif;
424
  * @param $number (int) number of users to return
425
  * @returns (array) empty if no users were found or associative array with user ID as key and display name as value
426
  * @since 1.1
427
- * @version 1.2.1
428
  */
429
  if ( ! function_exists( 'mycred_get_users_of_rank' ) ) :
430
  function mycred_get_users_of_rank( $rank_id, $number = NULL, $order = 'DESC' )
@@ -440,14 +494,14 @@ if ( ! function_exists( 'mycred_get_users_of_rank' ) ) :
440
 
441
  $type = 'mycred_default';
442
 
443
- if ( isset( $mycred->rank['base'] ) && $mycred->rank['base'] == 'total' )
444
- $type = 'mycred_default_total';
445
-
446
  if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
447
  $type .= '_' . $GLOBALS['blog_id'];
448
 
 
 
 
449
  $rank_meta_key = 'mycred_rank';
450
- if ( $mycred->is_multisite && ! $mycred->use_master_template )
451
  $rank_meta_key .= '_' . $GLOBALS['blog_id'];
452
 
453
  $sql = "
@@ -456,14 +510,6 @@ if ( ! function_exists( 'mycred_get_users_of_rank' ) ) :
456
  INNER JOIN {$wpdb->usermeta} balance
457
  ON ( rank.user_id = balance.user_id AND balance.meta_key = %s )";
458
 
459
- if ( $mycred->is_multisite ) {
460
- $blog_id = absint( $GLOBALS['blog_id'] );
461
-
462
- $sql .= "
463
- INNER JOIN {$wpdb->usermeta} blog
464
- ON ( rank.user_id = blog.user_id AND blog.meta_key = 'primary_blog' AND blog.meta_value = {$blog_id} )";
465
- }
466
-
467
  $sql .= "
468
  WHERE rank.meta_key = %s
469
  AND rank.meta_value = %d
@@ -497,7 +543,7 @@ endif;
497
  * @uses has_post_thumbnail()
498
  * @returns (bool) true or false
499
  * @since 1.1
500
- * @version 1.1
501
  */
502
  if ( ! function_exists( 'mycred_rank_has_logo' ) ) :
503
  function mycred_rank_has_logo( $rank_id )
@@ -506,8 +552,19 @@ if ( ! function_exists( 'mycred_rank_has_logo' ) ) :
506
  $rank_id = mycred_get_rank_id_from_title( $rank_id );
507
 
508
  $return = false;
509
- if ( has_post_thumbnail( $rank_id ) )
510
- $return = true;
 
 
 
 
 
 
 
 
 
 
 
511
 
512
  return apply_filters( 'mycred_rank_has_logo', $return, $rank_id );
513
  }
@@ -524,7 +581,7 @@ endif;
524
  * @uses get_the_post_thumbnail()
525
  * @returns empty string if rank does not that logo or the HTML IMG element with given size and attribute
526
  * @since 1.1
527
- * @version 1.1
528
  */
529
  if ( ! function_exists( 'mycred_get_rank_logo' ) ) :
530
  function mycred_get_rank_logo( $rank_id, $size = 'post-thumbnail', $attr = NULL )
@@ -537,7 +594,18 @@ if ( ! function_exists( 'mycred_get_rank_logo' ) ) :
537
  if ( is_numeric( $size ) )
538
  $size = array( $size, $size );
539
 
540
- $logo = get_the_post_thumbnail( $rank_id, $size, $attr );
 
 
 
 
 
 
 
 
 
 
 
541
  return apply_filters( 'mycred_get_rank_logo', $logo, $rank_id, $size, $attr );
542
  }
543
  endif;
@@ -546,7 +614,7 @@ endif;
546
  * User Got Demoted
547
  * Checks if a user got demoted.
548
  * @since 1.3.3
549
- * @version 1.2
550
  */
551
  if ( ! function_exists( 'mycred_user_got_demoted' ) ) :
552
  function mycred_user_got_demoted( $user_id = NULL, $rank_id = NULL )
@@ -555,8 +623,19 @@ if ( ! function_exists( 'mycred_user_got_demoted' ) ) :
555
  if ( $current_rank_id == $rank_id ) return false;
556
  if ( empty( $current_rank_id ) && ! empty( $rank_id ) ) return false;
557
 
558
- $current_min = get_post_meta( $current_rank_id, 'mycred_rank_min', true );
559
- $new_min = get_post_meta( $rank_id, 'mycred_rank_min', true );
 
 
 
 
 
 
 
 
 
 
 
560
 
561
  if ( $new_min < $current_min ) return true;
562
 
@@ -576,9 +655,20 @@ if ( ! function_exists( 'mycred_user_got_promoted' ) ) :
576
  $current_rank_id = mycred_get_user_meta( $user_id, 'mycred_rank', '', true );
577
  if ( $current_rank_id == $rank_id ) return false;
578
  if ( empty( $current_rank_id ) && ! empty( $rank_id ) ) return true;
579
-
580
- $current_min = get_post_meta( $current_rank_id, 'mycred_rank_min', true );
581
- $new_min = get_post_meta( $rank_id, 'mycred_rank_min', true );
 
 
 
 
 
 
 
 
 
 
 
582
 
583
  if ( $new_min > $current_min ) return true;
584
 
6
  * Checks if there are any rank posts.
7
  * @returns (bool) true or false
8
  * @since 1.1
9
+ * @version 1.4
10
  */
11
  if ( ! function_exists( 'mycred_have_ranks' ) ) :
12
  function mycred_have_ranks()
13
  {
14
  global $mycred_ranks, $wpdb;
15
+
16
+ if ( ! mycred_override_settings() )
17
+ $posts = $wpdb->posts;
18
+ else
19
+ $posts = $wpdb->base_prefix . 'posts';
20
+
21
+ $mycred_ranks = $wpdb->get_var( "SELECT COUNT(*) FROM {$posts} WHERE post_type = 'mycred_rank';" );
22
 
23
  $return = false;
24
  if ( $mycred_ranks > 0 )
33
  * Checks if there are any published rank posts.
34
  * @returns (int) the number of published ranks found.
35
  * @since 1.3.2
36
+ * @version 1.2
37
  */
38
  if ( ! function_exists( 'mycred_get_published_ranks_count' ) ) :
39
  function mycred_get_published_ranks_count()
40
  {
41
  global $wpdb;
42
+
43
+ if ( ! mycred_override_settings() )
44
+ $posts = $wpdb->posts;
45
+ else
46
+ $posts = $wpdb->base_prefix . 'posts';
47
+
48
+ $count = $wpdb->get_var( "SELECT COUNT(*) FROM {$posts} WHERE post_type = 'mycred_rank' AND post_status = 'publish';" );
49
 
50
  return apply_filters( 'mycred_get_published_ranks_count', $count );
51
  }
57
  * appropriate ranks.
58
  * @returns (int) number of users effected by rank change or -1 if all users were effected.
59
  * @since 1.3.2
60
+ * @version 1.4
61
  */
62
  if ( ! function_exists( 'mycred_assign_ranks' ) ) :
63
  function mycred_assign_ranks()
68
 
69
  // Get rank key
70
  $rank_meta_key = 'mycred_rank';
71
+ if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_master_template )
72
  $rank_meta_key .= '_' . $GLOBALS['blog_id'];
73
 
74
  do_action( 'mycred_assign_ranks_start' );
75
 
76
+ if ( ! mycred_override_settings() ) {
77
+ $posts = $wpdb->posts;
78
+ $postmeta = $wpdb->postmeta;
79
+ }
80
+ else {
81
+ $posts = $wpdb->base_prefix . 'posts';
82
+ $postmeta = $wpdb->base_prefix . 'postmeta';
83
+ }
84
+
85
  // Check for published ranks
86
  $published_ranks = mycred_get_published_ranks_count();
87
 
90
 
91
  // Get this single rank
92
  $rank_id = $wpdb->get_var( "
93
+ SELECT ID FROM {$posts}
94
  WHERE post_type = 'mycred_rank' AND post_status = 'publish';" );
95
 
96
  // Update all users rank to this single rank
141
  */
142
  $ranks = $wpdb->get_results( "
143
  SELECT rank.ID AS ID, min.meta_value AS min, max.meta_value AS max
144
+ FROM {$posts} rank
145
+ INNER JOIN {$postmeta} min
146
  ON ( min.post_id = rank.ID AND min.meta_key = 'mycred_rank_min' )
147
+ INNER JOIN {$postmeta} max
148
  ON ( max.post_id = rank.ID AND max.meta_key = 'mycred_rank_max' )
149
  WHERE rank.post_type = 'mycred_rank'
150
  AND rank.post_status = 'publish';", 'ARRAY_A' );
184
  * @uses get_page_by_title()
185
  * @returns empty string if title is missing, NULL if rank is not found else the output type
186
  * @since 1.1
187
+ * @version 1.3
188
  */
189
  if ( ! function_exists( 'mycred_get_rank' ) ) :
190
  function mycred_get_rank( $rank_title = '', $format = 'OBJECT' )
191
  {
192
  if ( empty( $rank_title ) ) return $rank_title;
193
+
194
+ if ( ! mycred_override_settings() )
195
+ $rank = get_page_by_title( $rank_title, $format, 'mycred_rank' );
196
+
197
+ else {
198
+ $original_blog_id = get_current_blog_id();
199
+ switch_to_blog( 1 );
200
+
201
+ $rank = get_page_by_title( $rank_title, $format, 'mycred_rank' );
202
+
203
+ switch_to_blog( $original_blog_id );
204
+ }
205
 
206
  return apply_filters( 'mycred_get_rank', $rank, $rank_title, $format );
207
  }
219
  * @uses get_the_title()
220
  * @returns (string) rank object item requested or - if no ranks exists
221
  * @since 1.1
222
+ * @version 1.3
223
  */
224
  if ( ! function_exists( 'mycred_get_users_rank' ) ) :
225
  function mycred_get_users_rank( $user_id = NULL, $return = 'post_title', $logo_size = 'post-thumbnail', $attr = NULL )
232
  $rank_id = mycred_get_user_meta( $user_id, 'mycred_rank', '', true );
233
 
234
  // If empty, get the users rank now and save it
235
+ if ( $rank_id == '' )
236
  $rank_id = mycred_find_users_rank( $user_id, true );
 
237
 
238
  $reply = __( 'no rank', 'mycred' );
239
 
240
  // Have rank
241
+ if ( $rank_id != '' && $rank_id !== NULL ) {
242
 
243
  // If we want to see the logo
244
  if ( $return == 'logo' )
246
 
247
  // Else get the post object
248
  else {
249
+
250
+ // Not using master template
251
+ if ( ! mycred_override_settings() )
252
+ $rank = get_post( (int) $rank_id );
253
+
254
+ // Master template enforced
255
+ else {
256
+ $original_blog_id = get_current_blog_id();
257
+ switch_to_blog( 1 );
258
+
259
+ $rank = get_post( (int) $rank_id );
260
+
261
+ switch_to_blog( $original_blog_id );
262
+ }
263
 
264
  // If the requested detail exists, return it
265
  if ( isset( $rank->$return ) )
337
  if ( isset( $mycred->format['decimals'] ) && $mycred->format['decimals'] > 0 )
338
  $balance_format = 'CAST( %f AS DECIMAL( 10, ' . $mycred->format['decimals'] . ' ) )';
339
 
340
+ if ( ! mycred_override_settings() ) {
341
+ $posts = $wpdb->posts;
342
+ $postmeta = $wpdb->postmeta;
343
+ }
344
+ else {
345
+ $posts = $wpdb->base_prefix . 'posts';
346
+ $postmeta = $wpdb->base_prefix . 'postmeta';
347
+ }
348
+
349
  $rank_id = $wpdb->get_var( $wpdb->prepare( "
350
  SELECT rank.ID
351
+ FROM {$posts} rank
352
+ INNER JOIN {$postmeta} min
353
  ON ( min.post_id = rank.ID AND min.meta_key = 'mycred_rank_min' )
354
+ INNER JOIN {$postmeta} max
355
  ON ( max.post_id = rank.ID AND max.meta_key = 'mycred_rank_max' )
356
  WHERE rank.post_type = 'mycred_rank'
357
  AND rank.post_status = 'publish'
371
  }
372
 
373
  // Save if requested
374
+ if ( $save && $rank_id !== NULL )
375
+ mycred_update_user_meta( $user_id, 'mycred_rank', '', $rank_id );
 
 
 
 
 
 
 
376
 
377
  return apply_filters( 'mycred_find_users_rank', $rank_id, $user_id, $save, $amount );
378
  }
421
  * @param $order (string) option to return ranks ordered Ascending or Descending
422
  * @returns (array) empty if no ranks are found or associative array with post ID as key and title as value
423
  * @since 1.1
424
+ * @version 1.3
425
  */
426
  if ( ! function_exists( 'mycred_get_ranks' ) ) :
427
  function mycred_get_ranks( $status = 'publish', $number = '-1', $order = 'DESC' )
438
  else
439
  $limit = '';
440
 
441
+ if ( ! mycred_override_settings() ) {
442
+ $posts = $wpdb->posts;
443
+ $postmeta = $wpdb->postmeta;
444
+ }
445
+ else {
446
+ $posts = $wpdb->base_prefix . 'posts';
447
+ $postmeta = $wpdb->base_prefix . 'postmeta';
448
+ }
449
+
450
  // Get ranks
451
  $all_ranks = $wpdb->get_results( $wpdb->prepare( "
452
  SELECT *
453
+ FROM {$posts} ranks
454
+ INNER JOIN {$postmeta} min
455
  ON ( min.post_id = ranks.ID AND min.meta_key = %s )
456
  WHERE ranks.post_type = %s
457
  AND ranks.post_status = %s
478
  * @param $number (int) number of users to return
479
  * @returns (array) empty if no users were found or associative array with user ID as key and display name as value
480
  * @since 1.1
481
+ * @version 1.3
482
  */
483
  if ( ! function_exists( 'mycred_get_users_of_rank' ) ) :
484
  function mycred_get_users_of_rank( $rank_id, $number = NULL, $order = 'DESC' )
494
 
495
  $type = 'mycred_default';
496
 
 
 
 
497
  if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
498
  $type .= '_' . $GLOBALS['blog_id'];
499
 
500
+ if ( isset( $mycred->rank['base'] ) && $mycred->rank['base'] == 'total' )
501
+ $type .= '_total';
502
+
503
  $rank_meta_key = 'mycred_rank';
504
+ if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_master_template )
505
  $rank_meta_key .= '_' . $GLOBALS['blog_id'];
506
 
507
  $sql = "
510
  INNER JOIN {$wpdb->usermeta} balance
511
  ON ( rank.user_id = balance.user_id AND balance.meta_key = %s )";
512
 
 
 
 
 
 
 
 
 
513
  $sql .= "
514
  WHERE rank.meta_key = %s
515
  AND rank.meta_value = %d
543
  * @uses has_post_thumbnail()
544
  * @returns (bool) true or false
545
  * @since 1.1
546
+ * @version 1.2
547
  */
548
  if ( ! function_exists( 'mycred_rank_has_logo' ) ) :
549
  function mycred_rank_has_logo( $rank_id )
552
  $rank_id = mycred_get_rank_id_from_title( $rank_id );
553
 
554
  $return = false;
555
+ if ( ! mycred_override_settings() ) {
556
+ if ( has_post_thumbnail( $rank_id ) )
557
+ $return = true;
558
+ }
559
+ else {
560
+ $original_blog_id = get_current_blog_id();
561
+ switch_to_blog( 1 );
562
+
563
+ if ( has_post_thumbnail( $rank_id ) )
564
+ $return = true;
565
+
566
+ switch_to_blog( $original_blog_id );
567
+ }
568
 
569
  return apply_filters( 'mycred_rank_has_logo', $return, $rank_id );
570
  }
581
  * @uses get_the_post_thumbnail()
582
  * @returns empty string if rank does not that logo or the HTML IMG element with given size and attribute
583
  * @since 1.1
584
+ * @version 1.2
585
  */
586
  if ( ! function_exists( 'mycred_get_rank_logo' ) ) :
587
  function mycred_get_rank_logo( $rank_id, $size = 'post-thumbnail', $attr = NULL )
594
  if ( is_numeric( $size ) )
595
  $size = array( $size, $size );
596
 
597
+ if ( ! mycred_override_settings() )
598
+ $logo = get_the_post_thumbnail( $rank_id, $size, $attr );
599
+
600
+ else {
601
+ $original_blog_id = get_current_blog_id();
602
+ switch_to_blog( 1 );
603
+
604
+ $logo = get_the_post_thumbnail( $rank_id, $size, $attr );
605
+
606
+ switch_to_blog( $original_blog_id );
607
+ }
608
+
609
  return apply_filters( 'mycred_get_rank_logo', $logo, $rank_id, $size, $attr );
610
  }
611
  endif;
614
  * User Got Demoted
615
  * Checks if a user got demoted.
616
  * @since 1.3.3
617
+ * @version 1.3
618
  */
619
  if ( ! function_exists( 'mycred_user_got_demoted' ) ) :
620
  function mycred_user_got_demoted( $user_id = NULL, $rank_id = NULL )
623
  if ( $current_rank_id == $rank_id ) return false;
624
  if ( empty( $current_rank_id ) && ! empty( $rank_id ) ) return false;
625
 
626
+ if ( ! mycred_override_settings() ) {
627
+ $current_min = get_post_meta( $current_rank_id, 'mycred_rank_min', true );
628
+ $new_min = get_post_meta( $rank_id, 'mycred_rank_min', true );
629
+ }
630
+ else {
631
+ $original_blog_id = get_current_blog_id();
632
+ switch_to_blog( 1 );
633
+
634
+ $current_min = get_post_meta( $current_rank_id, 'mycred_rank_min', true );
635
+ $new_min = get_post_meta( $rank_id, 'mycred_rank_min', true );
636
+
637
+ switch_to_blog( $original_blog_id );
638
+ }
639
 
640
  if ( $new_min < $current_min ) return true;
641
 
655
  $current_rank_id = mycred_get_user_meta( $user_id, 'mycred_rank', '', true );
656
  if ( $current_rank_id == $rank_id ) return false;
657
  if ( empty( $current_rank_id ) && ! empty( $rank_id ) ) return true;
658
+
659
+ if ( ! mycred_override_settings() ) {
660
+ $current_min = get_post_meta( $current_rank_id, 'mycred_rank_min', true );
661
+ $new_min = get_post_meta( $rank_id, 'mycred_rank_min', true );
662
+ }
663
+ else {
664
+ $original_blog_id = get_current_blog_id();
665
+ switch_to_blog( 1 );
666
+
667
+ $current_min = get_post_meta( $current_rank_id, 'mycred_rank_min', true );
668
+ $new_min = get_post_meta( $rank_id, 'mycred_rank_min', true );
669
+
670
+ switch_to_blog( $original_blog_id );
671
+ }
672
 
673
  if ( $new_min > $current_min ) return true;
674
 
addons/ranks/myCRED-addon-ranks.php CHANGED
@@ -309,12 +309,12 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
309
  if ( $this->core->is_multisite && $GLOBALS['blog_id'] > 1 && ! $this->core->use_central_logging ) {
310
  $total_key .= '_' . $GLOBALS['blog_id'];
311
 
312
- // Clean up old keys
313
- $wpdb->delete(
314
- $wpdb->usermeta,
315
- array( 'meta_key' => $total_key . '_total' ),
316
- array( '%s' )
317
- );
318
  }
319
  $total_key .= '_total';
320
 
309
  if ( $this->core->is_multisite && $GLOBALS['blog_id'] > 1 && ! $this->core->use_central_logging ) {
310
  $total_key .= '_' . $GLOBALS['blog_id'];
311
 
312
+ // Clean up old & incorrect keys
313
+ $wpdb->delete( $wpdb->usermeta, array( 'meta_key' => $total_key . '_total' ), array( '%s' ) );
314
+
315
+ $wpdb->delete( $wpdb->usermeta, array( 'meta_key' => 'mycred_default' . $GLOBALS['blog_id'] ), array( '%s' ) );
316
+
317
+ $wpdb->delete( $wpdb->usermeta, array( 'meta_key' => 'mycred_default_' . $GLOBALS['blog_id'] . '_' . $GLOBALS['blog_id'] ), array( '%s' ) );
318
  }
319
  $total_key .= '_total';
320
 
addons/sell-content/myCRED-addon-sell-content.php CHANGED
@@ -124,7 +124,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
124
  /**
125
  * Save Override
126
  * @since 1.5
127
- * @version 1.0
128
  */
129
  function save_user_override() {
130
 
@@ -134,12 +134,18 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
134
  $user_id = absint( $_GET['user_id'] );
135
 
136
  $share = $_POST['mycred_adjust_users_profitshare']['share'];
137
- if ( isfloat( $share ) )
138
- $share = (float) $share;
139
- else
140
- $share = (int) $share;
 
 
 
 
 
 
 
141
 
142
- mycred_update_user_meta( $user_id, 'mycred_sell_content_share_' . $ctype, '', $share );
143
  wp_safe_redirect( add_query_arg( array( 'result' => 'sell_content_share' ) ) );
144
  exit;
145
 
124
  /**
125
  * Save Override
126
  * @since 1.5
127
+ * @version 1.1
128
  */
129
  function save_user_override() {
130
 
134
  $user_id = absint( $_GET['user_id'] );
135
 
136
  $share = $_POST['mycred_adjust_users_profitshare']['share'];
137
+ if ( $share != '' ) {
138
+ if ( isfloat( $share ) )
139
+ $share = (float) $share;
140
+ else
141
+ $share = (int) $share;
142
+
143
+ mycred_update_user_meta( $user_id, 'mycred_sell_content_share_' . $ctype, '', $share );
144
+ }
145
+ else {
146
+ mycred_delete_user_meta( $user_id, 'mycred_sell_content_share_' . $ctype );
147
+ }
148
 
 
149
  wp_safe_redirect( add_query_arg( array( 'result' => 'sell_content_share' ) ) );
150
  exit;
151
 
addons/transfer/js/transfer.js CHANGED
@@ -6,7 +6,7 @@
6
  * @requires jQuery UI
7
  * @requires jQuery Autocomplete
8
  * @since 0.1
9
- * @version 1.4
10
  */
11
  jQuery(function($){
12
  // Transfer function
@@ -32,9 +32,13 @@ jQuery(function($){
32
  $( '.mycred-click' ).removeAttr( 'disabled' );
33
 
34
  // Error
35
- if ( myCRED[ data ] !== undefined )
36
  alert( myCRED[ data ] );
37
 
 
 
 
 
38
  // Completed
39
  else if ( data == 'ok' ) {
40
  alert( myCRED.completed );
6
  * @requires jQuery UI
7
  * @requires jQuery Autocomplete
8
  * @since 0.1
9
+ * @version 1.4.1
10
  */
11
  jQuery(function($){
12
  // Transfer function
32
  $( '.mycred-click' ).removeAttr( 'disabled' );
33
 
34
  // Error
35
+ if ( myCRED[ data ] !== undefined ) {
36
  alert( myCRED[ data ] );
37
 
38
+ // If reload is set
39
+ if ( myCRED.reload == '1' )
40
+ location.reload();
41
+ }
42
  // Completed
43
  else if ( data == 'ok' ) {
44
  alert( myCRED.completed );
addons/transfer/myCRED-addon-transfer.php CHANGED
@@ -344,7 +344,7 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) {
344
  /**
345
  * AJAX Transfer Creds
346
  * @since 0.1
347
- * @version 1.4
348
  */
349
  public function ajax_call_transfer() {
350
  // Security
@@ -423,7 +423,7 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) {
423
  $transaction_id = 'TXID' . date_i18n( 'U' ) . $from;
424
 
425
  // Let others play before we execute the transfer
426
- do_action( 'mycred_transfer_ready', $transaction_id, $post, $prefs, $this->core, $type );
427
 
428
  $data = apply_filters( 'mycred_transfer_data', array( 'ref_type' => 'user', 'tid' => $transaction_id ), $transaction_id, $post, $prefs, $type );
429
 
@@ -458,7 +458,7 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) {
458
  );
459
 
460
  // Let others play once transaction is completed
461
- do_action( 'mycred_transfer_completed', $transaction_id, $post, $prefs, $this->core, $type );
462
 
463
  // Return the good news
464
  die( json_encode( 'ok' ) );
@@ -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
692
  */
693
  if ( ! function_exists( 'mycred_transfer_render' ) ) {
694
  function mycred_transfer_render( $atts, $content = NULL )
@@ -740,6 +740,7 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) {
740
  foreach ( $raw as $id ) {
741
  $clean[] = sanitize_text_field( $id );
742
  }
 
743
 
744
  // Default
745
  if ( count( $clean ) == 1 && in_array( 'mycred_default', $clean ) ) {
@@ -770,10 +771,11 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) {
770
  }
771
  return $output;
772
  }
 
 
773
  }
774
  // Multiple
775
  else {
776
- $available_types = array();
777
  foreach ( $clean as $point_type ) {
778
 
779
  $points = mycred( $point_type );
@@ -846,13 +848,13 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) {
846
  $extras = array();
847
 
848
  // Show Balance
849
- if ( (bool) $show_balance === true && ! empty( $pref['templates']['balance'] ) ) {
850
  $balance_text = str_replace( '%balance%', $mycred->format_creds( $my_balance ), $pref['templates']['balance'] );
851
  $extras[] = $mycred->template_tags_general( $balance_text );
852
  }
853
 
854
  // Show Limits
855
- if ( (bool) $show_limit === true && ! empty( $pref['templates']['limit'] ) && $pref['limit']['limit'] != 'none' ) {
856
  $limit_text = str_replace( '%_limit%', $pref['limit']['limit'], $pref['templates']['limit'] );
857
  $limit_text = str_replace( '%limit%', ucwords( $pref['limit']['limit'] ), $limit_text );
858
  $limit_text = str_replace( '%left%', $mycred->format_creds( $status ), $limit_text );
344
  /**
345
  * AJAX Transfer Creds
346
  * @since 0.1
347
+ * @version 1.4.1
348
  */
349
  public function ajax_call_transfer() {
350
  // Security
423
  $transaction_id = 'TXID' . date_i18n( 'U' ) . $from;
424
 
425
  // Let others play before we execute the transfer
426
+ do_action( 'mycred_transfer_ready', $transaction_id, $post, $prefs, $this, $type );
427
 
428
  $data = apply_filters( 'mycred_transfer_data', array( 'ref_type' => 'user', 'tid' => $transaction_id ), $transaction_id, $post, $prefs, $type );
429
 
458
  );
459
 
460
  // Let others play once transaction is completed
461
+ do_action( 'mycred_transfer_completed', $transaction_id, $post, $prefs, $this, $type );
462
 
463
  // Return the good news
464
  die( json_encode( 'ok' ) );
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 )
740
  foreach ( $raw as $id ) {
741
  $clean[] = sanitize_text_field( $id );
742
  }
743
+ $available_types = array();
744
 
745
  // Default
746
  if ( count( $clean ) == 1 && in_array( 'mycred_default', $clean ) ) {
771
  }
772
  return $output;
773
  }
774
+
775
+ $available_types['mycred_default'] = $mycred->plural();
776
  }
777
  // Multiple
778
  else {
 
779
  foreach ( $clean as $point_type ) {
780
 
781
  $points = mycred( $point_type );
848
  $extras = array();
849
 
850
  // Show Balance
851
+ if ( (bool) $show_balance === true && ! empty( $pref['templates']['balance'] ) && count( $available_types ) == 1 ) {
852
  $balance_text = str_replace( '%balance%', $mycred->format_creds( $my_balance ), $pref['templates']['balance'] );
853
  $extras[] = $mycred->template_tags_general( $balance_text );
854
  }
855
 
856
  // Show Limits
857
+ if ( (bool) $show_limit === true && ! empty( $pref['templates']['limit'] ) && $pref['limit']['limit'] != 'none' && count( $available_types ) == 1 ) {
858
  $limit_text = str_replace( '%_limit%', $pref['limit']['limit'], $pref['templates']['limit'] );
859
  $limit_text = str_replace( '%limit%', ucwords( $pref['limit']['limit'] ), $limit_text );
860
  $limit_text = str_replace( '%left%', $mycred->format_creds( $status ), $limit_text );
includes/mycred-about.php CHANGED
@@ -151,16 +151,13 @@ function mycred_about_credit_page() {
151
  <h4>Bug Finders</h4>
152
  <p>Users who have taken the time to report bugs helping me improve this plugin.</p>
153
  <ul>
154
- <li><a href="http://mycred.me/members/seamtv/">seamtv</a></li>
155
- <li><a href="http://mycred.me/members/joebethepro-com/">joe</a></li>
156
- <li><a href="http://mycred.me/members/gogott/">gogott</a></li>
157
- <li><a href="http://mycred.me/members/geegee/">Christian S</a></li>
158
- <li><a href="http://mycred.me/members/keisermedia/">Lucas Keiser</a></li>
159
- <li><a href="http://mycred.me/members/ebf/">Boab</a></li>
160
- <li><a href="http://mycred.me/members/threadsgeneration/">Gabriel Galvão</a></li>
161
- <li><a href="http://mycred.me/members/dvdbrazil/">Dvdbrazil</a></li>
162
- <li><a href="http://mycred.me/members/bobblefruit/">Dean</a></li>
163
- <li><a href="http://mycred.me/members/sl21/">sl21</a></li>
164
  </ul>
165
  </div>
166
  <div class="last-feature">
@@ -172,6 +169,7 @@ function mycred_about_credit_page() {
172
  <li><a href="http://www.merovingi.com/">Gabriel S Merovingi</a> <em>( Swedish )</em></li>
173
  <li><a href="http://robertrowshan.com/">Rob Row</a> <em>( Spanish )</em></li>
174
  <li>Skladchik <em>( Russian )</em></li>
 
175
  </ul>
176
  </div>
177
  </div>
151
  <h4>Bug Finders</h4>
152
  <p>Users who have taken the time to report bugs helping me improve this plugin.</p>
153
  <ul>
154
+ <li><a href="http://mycred.me/community/jommy99/">John Moore</a></li>
155
+ <li><a href="http://mycred.me/community/keisermedia/">Lucas Keiser</a></li>
156
+ <li><a href="http://mycred.me/community/lionelbernard/">Siargao</a></li>
157
+ <li><a href="http://mycred.me/community/woekerzee/">woekerzee</a></li>
158
+ <li><a href="http://mycred.me/community/jmaubert75/">JM AUBERT</a></li>
159
+ <li><a href="http://mycred.me/community/NUHISON/">David J</a></li>
160
+ <li><a href="http://mycred.me/community/shmoo/">Shmoo</a></li>
 
 
 
161
  </ul>
162
  </div>
163
  <div class="last-feature">
169
  <li><a href="http://www.merovingi.com/">Gabriel S Merovingi</a> <em>( Swedish )</em></li>
170
  <li><a href="http://robertrowshan.com/">Rob Row</a> <em>( Spanish )</em></li>
171
  <li>Skladchik <em>( Russian )</em></li>
172
+ <lo>Guilherme <em>( Portuguese - Brazil )</em></li>
173
  </ul>
174
  </div>
175
  </div>
includes/mycred-admin.php CHANGED
@@ -50,7 +50,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
50
  add_action( 'bp_members_admin_profile_nav', array( $this, 'bp_user_nav' ), 10, 2 );
51
 
52
  add_action( 'personal_options', array( $this, 'show_my_balance' ) );
53
- add_filter( 'mycred_admin_pages', array( $this, 'edit_profile_menu' ) );
54
  add_action( 'mycred_init', array( $this, 'edit_profile_actions' ) );
55
 
56
  // Sortable Column
@@ -268,27 +268,9 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
268
  /**
269
  * Admin Header
270
  * @since 0.1
271
- * @version 1.3
272
  */
273
  public function admin_header() {
274
- global $wp_version;
275
-
276
- // Old navigation menu
277
- if ( version_compare( $wp_version, '3.8', '<' ) ) {
278
- $image = plugins_url( 'assets/images/logo-menu.png', myCRED_THIS ); ?>
279
-
280
- <!-- Support for pre 3.8 menus -->
281
- <style type="text/css">
282
- <?php foreach ( $mycred_types as $type => $label ) { if ( $mycred_type == 'mycred_default' ) $name = ''; else $name = '_' . $type; ?>
283
- #adminmenu .toplevel_page_myCRED<?php echo $name; ?> div.wp-menu-image { background-image: url(<?php echo $image; ?>); background-position: 1px -28px; }
284
- #adminmenu .toplevel_page_myCRED<?php echo $name; ?>:hover div.wp-menu-image,
285
- #adminmenu .toplevel_page_myCRED<?php echo $name; ?>.current div.wp-menu-image,
286
- #adminmenu .toplevel_page_myCRED<?php echo $name; ?> .wp-menu-open div.wp-menu-image { background-position: 1px 0; }
287
- <?php } ?>
288
- </style>
289
- <?php
290
- }
291
-
292
  $screen = get_current_screen();
293
  if ( $screen->id == 'users' ) {
294
  wp_enqueue_script( 'mycred-inline-edit' );
@@ -454,13 +436,13 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
454
  /**
455
  * Add Admin Page
456
  * @since 1.5
457
- * @version 1.0
458
  */
459
- public function edit_profile_menu( $pages = array() ) {
460
  $pages[] = add_users_page(
461
  __( 'Edit Balance', 'mycred' ),
462
  __( 'Edit Balance', 'mycred' ),
463
- 'read',
464
  'mycred-edit-balance',
465
  array( $this, 'edit_profile_screen' )
466
  );
@@ -747,7 +729,7 @@ jQuery(function($) {
747
  * Admin Footer
748
  * Inserts the Inline Edit Form modal.
749
  * @since 1.2
750
- * @version 1.1
751
  */
752
  public function admin_footer() {
753
  $screen = get_current_screen();
@@ -756,7 +738,9 @@ jQuery(function($) {
756
  if ( $this->core->can_edit_creds() && ! $this->core->can_edit_plugin() )
757
  $req = '(<strong>' . __( 'required', 'mycred' ) . '</strong>)';
758
  else
759
- $req = '(' . __( 'optional', 'mycred' ) . ')'; ?>
 
 
760
 
761
  <div id="edit-mycred-balance" style="display: none;">
762
  <div class="mycred-adjustment-form">
@@ -774,6 +758,12 @@ jQuery(function($) {
774
  <div class="clear"></div>
775
  </div>
776
  <?php
 
 
 
 
 
 
777
  }
778
  }
779
  }
50
  add_action( 'bp_members_admin_profile_nav', array( $this, 'bp_user_nav' ), 10, 2 );
51
 
52
  add_action( 'personal_options', array( $this, 'show_my_balance' ) );
53
+ add_filter( 'mycred_admin_pages', array( $this, 'edit_profile_menu' ), 10, 2 );
54
  add_action( 'mycred_init', array( $this, 'edit_profile_actions' ) );
55
 
56
  // Sortable Column
268
  /**
269
  * Admin Header
270
  * @since 0.1
271
+ * @version 1.4
272
  */
273
  public function admin_header() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
274
  $screen = get_current_screen();
275
  if ( $screen->id == 'users' ) {
276
  wp_enqueue_script( 'mycred-inline-edit' );
436
  /**
437
  * Add Admin Page
438
  * @since 1.5
439
+ * @version 1.0.1
440
  */
441
+ public function edit_profile_menu( $pages = array(), $mycred ) {
442
  $pages[] = add_users_page(
443
  __( 'Edit Balance', 'mycred' ),
444
  __( 'Edit Balance', 'mycred' ),
445
+ $mycred->edit_creds_cap(),
446
  'mycred-edit-balance',
447
  array( $this, 'edit_profile_screen' )
448
  );
729
  * Admin Footer
730
  * Inserts the Inline Edit Form modal.
731
  * @since 1.2
732
+ * @version 1.2
733
  */
734
  public function admin_footer() {
735
  $screen = get_current_screen();
738
  if ( $this->core->can_edit_creds() && ! $this->core->can_edit_plugin() )
739
  $req = '(<strong>' . __( 'required', 'mycred' ) . '</strong>)';
740
  else
741
+ $req = '(' . __( 'optional', 'mycred' ) . ')';
742
+
743
+ ob_start(); ?>
744
 
745
  <div id="edit-mycred-balance" style="display: none;">
746
  <div class="mycred-adjustment-form">
758
  <div class="clear"></div>
759
  </div>
760
  <?php
761
+
762
+ $content = ob_get_contents();
763
+ ob_end_clean();
764
+
765
+ echo apply_filters( 'mycred_admin_inline_editor', $content );
766
+
767
  }
768
  }
769
  }
includes/mycred-functions.php CHANGED
@@ -1294,6 +1294,24 @@ if ( ! function_exists( 'mycred_override_settings' ) ) :
1294
  }
1295
  endif;
1296
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1297
  /**
1298
  * Get Option
1299
  * @since 1.4
@@ -1318,8 +1336,6 @@ endif;
1318
 
1319
  /**
1320
  * Update Option
1321
- * Used to make sure settings that are encompased by
1322
- * the MU Master Template feature are saved correctly.
1323
  * @since 1.4
1324
  * @version 1.0
1325
  */
@@ -1338,15 +1354,38 @@ if ( ! function_exists( 'mycred_update_option' ) ) :
1338
  }
1339
  endif;
1340
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1341
  /**
1342
  * Get User Meta
1343
  * @since 1.5
1344
- * @version 1.0
1345
  */
1346
  if ( ! function_exists( 'mycred_get_user_meta' ) ) :
1347
  function mycred_get_user_meta( $user_id, $key, $end = '', $unique = true )
1348
  {
1349
- if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_centralize_log() )
 
 
 
1350
  $key .= '_' . $GLOBALS['blog_id'];
1351
 
1352
  $key .= $end;
@@ -1358,29 +1397,35 @@ endif;
1358
  /**
1359
  * Add User Meta
1360
  * @since 1.5
1361
- * @version 1.0
1362
  */
1363
  if ( ! function_exists( 'mycred_add_user_meta' ) ) :
1364
- function mycred_add_user_meta( $user_id, $key, $end = '', $value = '' )
1365
  {
1366
- if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_centralize_log() )
 
 
 
1367
  $key .= '_' . $GLOBALS['blog_id'];
1368
 
1369
  $key .= $end;
1370
 
1371
- return add_user_meta( $user_id, $key, $value );
1372
  }
1373
  endif;
1374
 
1375
  /**
1376
  * Update User Meta
1377
  * @since 1.5
1378
- * @version 1.0
1379
  */
1380
  if ( ! function_exists( 'mycred_update_user_meta' ) ) :
1381
  function mycred_update_user_meta( $user_id, $key, $end = '', $value = '' )
1382
  {
1383
- if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_centralize_log() )
 
 
 
1384
  $key .= '_' . $GLOBALS['blog_id'];
1385
 
1386
  $key .= $end;
@@ -1392,12 +1437,15 @@ endif;
1392
  /**
1393
  * Delete User Meta
1394
  * @since 1.5
1395
- * @version 1.0
1396
  */
1397
  if ( ! function_exists( 'mycred_delete_user_meta' ) ) :
1398
  function mycred_delete_user_meta( $user_id, $key, $end = '' )
1399
  {
1400
- if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_centralize_log() )
 
 
 
1401
  $key .= '_' . $GLOBALS['blog_id'];
1402
 
1403
  $key .= $end;
@@ -1406,24 +1454,6 @@ if ( ! function_exists( 'mycred_delete_user_meta' ) ) :
1406
  }
1407
  endif;
1408
 
1409
- /**
1410
- * Centralize Log
1411
- * @since 1.3
1412
- * @version 1.0
1413
- */
1414
- if ( ! function_exists( 'mycred_centralize_log' ) ) :
1415
- function mycred_centralize_log()
1416
- {
1417
- // Not a multisite
1418
- if ( ! is_multisite() ) return true;
1419
-
1420
- $mycred_network = mycred_get_settings_network();
1421
- if ( $mycred_network['central'] ) return true;
1422
-
1423
- return false;
1424
- }
1425
- endif;
1426
-
1427
  /**
1428
  * Get myCRED Name
1429
  * Returns the name given to creds.
@@ -1633,28 +1663,32 @@ endif;
1633
  * Get Log Exports
1634
  * Returns an associative array of log export options.
1635
  * @since 1.4
1636
- * @version 1.0
1637
  */
1638
  if ( ! function_exists( 'mycred_get_log_exports' ) ) :
1639
  function mycred_get_log_exports()
1640
  {
1641
- return apply_filters( 'mycred_log_exports', array(
1642
- 'all' => array(
1643
- 'label' => __( 'Entire Log', 'mycred' ),
1644
  'my_label' => '',
1645
- 'class' => 'btn btn-primary button button-secondary'
1646
  ),
1647
  'display' => array(
1648
- 'label' => __( 'Displayed Rows', 'mycred' ),
1649
  'my_label' => __( 'Displayed Rows', 'mycred' ),
1650
- 'class' => 'btn btn-default button button-secondary'
1651
- ),
1652
- 'search' => array(
1653
- 'label' => __( 'Search Results', 'mycred' ),
1654
- 'my_label' => __( 'My Entire Log', 'mycred' ),
1655
- 'class' => 'btn btn-default button button-secondary'
1656
  )
1657
- ) );
 
 
 
 
 
 
 
 
 
1658
  }
1659
  endif;
1660
 
@@ -2156,25 +2190,27 @@ endif;
2156
  * Returns an array of references currently existing in the log
2157
  * for a particular point type. Will return false if empty.
2158
  * @since 1.5
2159
- * @version 1.0
2160
  */
2161
  if ( ! function_exists( 'mycred_get_all_references' ) ) :
2162
  function mycred_get_all_references()
2163
  {
2164
  // Hooks
2165
  $hooks = array(
2166
- 'registration' => __( 'Website Registration', 'mycred' ),
2167
- 'site_visit' => __( 'Website Visit', 'mycred' ),
2168
- 'logging_in' => __( 'Logging in', 'mycred' ),
2169
- 'publishing_content' => __( 'Publishing Content', 'mycred' ),
2170
- 'approved_comment' => __( 'Approved Comment', 'mycred' ),
2171
- 'unapproved_comment' => __( 'Unapproved Comment', 'mycred' ),
2172
- 'spam_comment' => __( 'SPAM Comment', 'mycred' ),
2173
- 'deleted_comment' => __( 'Deleted Comment', 'mycred' ),
2174
- 'link_click' => __( 'Link Click', 'mycred' ),
2175
- 'watching_video' => __( 'Watching Video', 'mycred' ),
2176
- 'visitor_referral' => __( 'Visitor Referral', 'mycred' ),
2177
- 'signup_referral' => __( 'Signup Referral', 'mycred' )
 
 
2178
  );
2179
 
2180
  if ( class_exists( 'BuddyPress' ) ) {
1294
  }
1295
  endif;
1296
 
1297
+ /**
1298
+ * Centralize Log
1299
+ * @since 1.3
1300
+ * @version 1.0
1301
+ */
1302
+ if ( ! function_exists( 'mycred_centralize_log' ) ) :
1303
+ function mycred_centralize_log()
1304
+ {
1305
+ // Not a multisite
1306
+ if ( ! is_multisite() ) return true;
1307
+
1308
+ $mycred_network = mycred_get_settings_network();
1309
+ if ( $mycred_network['central'] ) return true;
1310
+
1311
+ return false;
1312
+ }
1313
+ endif;
1314
+
1315
  /**
1316
  * Get Option
1317
  * @since 1.4
1336
 
1337
  /**
1338
  * Update Option
 
 
1339
  * @since 1.4
1340
  * @version 1.0
1341
  */
1354
  }
1355
  endif;
1356
 
1357
+ /**
1358
+ * Delete Option
1359
+ * @since 1.5.2
1360
+ * @version 1.0
1361
+ */
1362
+ if ( ! function_exists( 'mycred_delete_option' ) ) :
1363
+ function mycred_delete_option( $option_id )
1364
+ {
1365
+ if ( is_multisite() ) {
1366
+ if ( mycred_override_settings() )
1367
+ delete_blog_option( 1, $option_id );
1368
+ else
1369
+ delete_blog_option( $GLOBALS['blog_id'], $option_id );
1370
+ }
1371
+ else {
1372
+ delete_option( $option_id );
1373
+ }
1374
+ }
1375
+ endif;
1376
+
1377
  /**
1378
  * Get User Meta
1379
  * @since 1.5
1380
+ * @version 1.1
1381
  */
1382
  if ( ! function_exists( 'mycred_get_user_meta' ) ) :
1383
  function mycred_get_user_meta( $user_id, $key, $end = '', $unique = true )
1384
  {
1385
+ if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_centralize_log() && $key != 'mycred_rank' )
1386
+ $key .= '_' . $GLOBALS['blog_id'];
1387
+
1388
+ elseif ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_override_settings() && $key == 'mycred_rank' )
1389
  $key .= '_' . $GLOBALS['blog_id'];
1390
 
1391
  $key .= $end;
1397
  /**
1398
  * Add User Meta
1399
  * @since 1.5
1400
+ * @version 1.1
1401
  */
1402
  if ( ! function_exists( 'mycred_add_user_meta' ) ) :
1403
+ function mycred_add_user_meta( $user_id, $key, $end = '', $value = '', $unique = true )
1404
  {
1405
+ if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_centralize_log() && $key != 'mycred_rank' )
1406
+ $key .= '_' . $GLOBALS['blog_id'];
1407
+
1408
+ elseif ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_override_settings() && $key == 'mycred_rank' )
1409
  $key .= '_' . $GLOBALS['blog_id'];
1410
 
1411
  $key .= $end;
1412
 
1413
+ return add_user_meta( $user_id, $key, $value, $unique );
1414
  }
1415
  endif;
1416
 
1417
  /**
1418
  * Update User Meta
1419
  * @since 1.5
1420
+ * @version 1.1
1421
  */
1422
  if ( ! function_exists( 'mycred_update_user_meta' ) ) :
1423
  function mycred_update_user_meta( $user_id, $key, $end = '', $value = '' )
1424
  {
1425
+ if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_centralize_log() && $key != 'mycred_rank' )
1426
+ $key .= '_' . $GLOBALS['blog_id'];
1427
+
1428
+ elseif ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_override_settings() && $key == 'mycred_rank' )
1429
  $key .= '_' . $GLOBALS['blog_id'];
1430
 
1431
  $key .= $end;
1437
  /**
1438
  * Delete User Meta
1439
  * @since 1.5
1440
+ * @version 1.1
1441
  */
1442
  if ( ! function_exists( 'mycred_delete_user_meta' ) ) :
1443
  function mycred_delete_user_meta( $user_id, $key, $end = '' )
1444
  {
1445
+ if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_centralize_log() && $key != 'mycred_rank' )
1446
+ $key .= '_' . $GLOBALS['blog_id'];
1447
+
1448
+ elseif ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_override_settings() && $key == 'mycred_rank' )
1449
  $key .= '_' . $GLOBALS['blog_id'];
1450
 
1451
  $key .= $end;
1454
  }
1455
  endif;
1456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1457
  /**
1458
  * Get myCRED Name
1459
  * Returns the name given to creds.
1663
  * Get Log Exports
1664
  * Returns an associative array of log export options.
1665
  * @since 1.4
1666
+ * @version 1.1
1667
  */
1668
  if ( ! function_exists( 'mycred_get_log_exports' ) ) :
1669
  function mycred_get_log_exports()
1670
  {
1671
+ $defaults = array(
1672
+ 'all' => array(
1673
+ 'label' => __( 'Entire Log', 'mycred' ),
1674
  'my_label' => '',
1675
+ 'class' => 'btn btn-primary button button-secondary'
1676
  ),
1677
  'display' => array(
1678
+ 'label' => __( 'Displayed Rows', 'mycred' ),
1679
  'my_label' => __( 'Displayed Rows', 'mycred' ),
1680
+ 'class' => 'btn btn-default button button-secondary'
 
 
 
 
 
1681
  )
1682
+ );
1683
+
1684
+ if ( isset( $_REQUEST['ctype'] ) || isset( $_REQUEST['show'] ) )
1685
+ $defaults['search'] = array(
1686
+ 'label' => __( 'Search Results', 'mycred' ),
1687
+ 'my_label' => __( 'My Entire Log', 'mycred' ),
1688
+ 'class' => 'btn btn-default button button-secondary'
1689
+ );
1690
+
1691
+ return apply_filters( 'mycred_log_exports', $defaults );
1692
  }
1693
  endif;
1694
 
2190
  * Returns an array of references currently existing in the log
2191
  * for a particular point type. Will return false if empty.
2192
  * @since 1.5
2193
+ * @version 1.0.1
2194
  */
2195
  if ( ! function_exists( 'mycred_get_all_references' ) ) :
2196
  function mycred_get_all_references()
2197
  {
2198
  // Hooks
2199
  $hooks = array(
2200
+ 'registration' => __( 'Website Registration', 'mycred' ),
2201
+ 'site_visit' => __( 'Website Visit', 'mycred' ),
2202
+ 'view_content' => __( 'Viewing Content (Member)', 'mycred' ),
2203
+ 'view_content_author' => __( 'Viewing Content (Author)', 'mycred' ),
2204
+ 'logging_in' => __( 'Logging in', 'mycred' ),
2205
+ 'publishing_content' => __( 'Publishing Content', 'mycred' ),
2206
+ 'approved_comment' => __( 'Approved Comment', 'mycred' ),
2207
+ 'unapproved_comment' => __( 'Unapproved Comment', 'mycred' ),
2208
+ 'spam_comment' => __( 'SPAM Comment', 'mycred' ),
2209
+ 'deleted_comment' => __( 'Deleted Comment', 'mycred' ),
2210
+ 'link_click' => __( 'Link Click', 'mycred' ),
2211
+ 'watching_video' => __( 'Watching Video', 'mycred' ),
2212
+ 'visitor_referral' => __( 'Visitor Referral', 'mycred' ),
2213
+ 'signup_referral' => __( 'Signup Referral', 'mycred' )
2214
  );
2215
 
2216
  if ( class_exists( 'BuddyPress' ) ) {
includes/mycred-install.php CHANGED
@@ -114,7 +114,7 @@ if ( ! class_exists( 'myCRED_Install' ) ) {
114
  * settings and data once the core is gone.
115
  * @filter 'mycred_uninstall_this'
116
  * @since 0.1
117
- * @version 1.3
118
  */
119
  public function uninstall() {
120
  // Everyone should use this filter to delete everything else they have created before returning the option ids.
@@ -178,7 +178,7 @@ if ( ! class_exists( 'myCRED_Install' ) ) {
178
  delete_site_option( 'mycred_network' );
179
 
180
  // Delete custom post types
181
- $post_types = apply_filters( 'mycred_custom_post_types', array( 'mycred_rank', 'mycred_email_notice' ) );
182
  if ( is_array( $post_types ) || ! empty( $post_types ) )
183
  $wpdb->query( "DELETE FROM {$wpdb->posts} WHERE post_type IN ('" . implode( "','", $post_types ) . "');" );
184
 
114
  * settings and data once the core is gone.
115
  * @filter 'mycred_uninstall_this'
116
  * @since 0.1
117
+ * @version 1.4
118
  */
119
  public function uninstall() {
120
  // Everyone should use this filter to delete everything else they have created before returning the option ids.
178
  delete_site_option( 'mycred_network' );
179
 
180
  // Delete custom post types
181
+ $post_types = apply_filters( 'mycred_custom_post_types', array( 'mycred_rank', 'mycred_email_notice', 'mycred_badge' ) );
182
  if ( is_array( $post_types ) || ! empty( $post_types ) )
183
  $wpdb->query( "DELETE FROM {$wpdb->posts} WHERE post_type IN ('" . implode( "','", $post_types ) . "');" );
184
 
includes/mycred-shortcodes.php CHANGED
@@ -774,7 +774,7 @@ endif;
774
  * of types.
775
  * @see http://codex.mycred.me/shortcodes/mycred_total_balance/
776
  * @since 1.4.3
777
- * @version 1.1
778
  */
779
  if ( ! function_exists( 'mycred_render_shortcode_total' ) ) :
780
  function mycred_render_shortcode_total( $atts, $content = '' )
@@ -826,11 +826,12 @@ if ( ! function_exists( 'mycred_render_shortcode_total' ) ) :
826
  $total = $total+$balance;
827
  }
828
 
829
- // If we want the total unformatted return this now
830
- if ( $raw )
831
- return $total;
 
 
832
 
833
- // Return formatted
834
  return apply_filters( 'mycred_total_balances_output', $total, $atts );
835
  }
836
  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 = '' )
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;
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: Sat Jul 26 2014 20:53:36 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_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"
@@ -94,7 +94,7 @@ msgid "Log entry updated"
94
  msgstr ""
95
 
96
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
97
- #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
98
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
99
  msgid "Setup"
100
  msgstr ""
@@ -120,7 +120,7 @@ msgid "This Hook has no settings"
120
  msgstr ""
121
 
122
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
123
- #: 1305
124
  msgid "No limit"
125
  msgstr ""
126
 
@@ -146,7 +146,7 @@ msgstr ""
146
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
147
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
148
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
149
- #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
150
  msgid "Select"
151
  msgstr ""
152
 
@@ -405,8 +405,8 @@ msgstr ""
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:164 ..
409
- #: modules/mycred-module-log.php:324 ../modules/mycred-module-log.php:577 ..
410
  #: modules/mycred-module-settings.php:312
411
  msgid "Access Denied"
412
  msgstr ""
@@ -430,12 +430,12 @@ 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:189
434
  msgid "Enable"
435
  msgstr ""
436
 
437
  #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
438
- #: php:204
439
  msgid "Update Changes"
440
  msgstr ""
441
 
@@ -508,13 +508,13 @@ msgstr ""
508
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
509
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
510
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
511
- #: modules/mycred-module-hooks.php:633 ../modules/mycred-module-hooks.php:1503 ..
512
- #: modules/mycred-module-hooks.php:1845 ../plugins/mycred-hook-badgeOS.php:115 ..
513
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
514
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
515
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
516
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
517
- #: php:300 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
518
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
519
  msgid "Log Template"
520
  msgstr ""
@@ -548,8 +548,8 @@ msgstr ""
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:769 ..
552
- #: includes/mycred-shortcodes.php:907
553
  msgid "Amount"
554
  msgstr ""
555
 
@@ -559,7 +559,7 @@ 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:1860
563
  msgid "Interval"
564
  msgstr ""
565
 
@@ -765,7 +765,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:2495
769
  msgid "Available Shortcodes"
770
  msgstr ""
771
 
@@ -923,7 +923,7 @@ 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:370 ../modules/mycred-
927
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
928
  msgid "Actions"
929
  msgstr ""
@@ -1351,7 +1351,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:2460
1355
  msgid "Title"
1356
  msgstr ""
1357
 
@@ -1525,8 +1525,8 @@ msgid "Usage"
1525
  msgstr ""
1526
 
1527
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1528
- #: transfer.php:243 ../modules/mycred-module-hooks.php:1219 ../modules/mycred-
1529
- #: module-hooks.php:1510
1530
  msgid "Limits"
1531
  msgstr ""
1532
 
@@ -1539,7 +1539,7 @@ msgid "not yet used"
1539
  msgstr ""
1540
 
1541
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1542
- #: php:1950
1543
  msgid "Total"
1544
  msgstr ""
1545
 
@@ -1701,7 +1701,7 @@ msgid "Apply Coupon"
1701
  msgstr ""
1702
 
1703
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1704
- #: notices/myCRED-addon-email-notices.php:1104
1705
  msgid "Email Notice"
1706
  msgstr ""
1707
 
@@ -1886,17 +1886,17 @@ msgid ""
1886
  msgstr ""
1887
 
1888
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1889
- #: notices/myCRED-addon-email-notices.php:771
1890
  msgid "Email Settings"
1891
  msgstr ""
1892
 
1893
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1894
- #: notices/myCRED-addon-email-notices.php:894
1895
  msgid "Senders Name:"
1896
  msgstr ""
1897
 
1898
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1899
- #: notices/myCRED-addon-email-notices.php:896
1900
  msgid "Senders Email:"
1901
  msgstr ""
1902
 
@@ -1920,174 +1920,174 @@ msgstr ""
1920
  msgid "Ignored if HTML is not allowed in emails."
1921
  msgstr ""
1922
 
1923
- #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
1924
- #: notices/myCRED-addon-email-notices.php:820
1925
  msgid "Email Subject"
1926
  msgstr ""
1927
 
1928
- #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1929
  msgid "Status"
1930
  msgstr ""
1931
 
1932
- #: ../addons/email-notices/myCRED-addon-email-notices.php:726
1933
  msgid "Not Active"
1934
  msgstr ""
1935
 
1936
- #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1937
  #, php-format
1938
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1939
  msgstr ""
1940
 
1941
- #: ../addons/email-notices/myCRED-addon-email-notices.php:732
1942
  msgid "Active"
1943
  msgstr ""
1944
 
1945
- #: ../addons/email-notices/myCRED-addon-email-notices.php:734
1946
  #, php-format
1947
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1948
  msgstr ""
1949
 
1950
- #: ../addons/email-notices/myCRED-addon-email-notices.php:744
1951
  msgid "Email is sent when"
1952
  msgstr ""
1953
 
1954
- #: ../addons/email-notices/myCRED-addon-email-notices.php:746
1955
  msgid "Missing instance for this notice!"
1956
  msgstr ""
1957
 
1958
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1959
- #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
1960
- #: addon-email-notices.php:759
1961
  msgid "Sent To"
1962
  msgstr ""
1963
 
1964
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1965
- #: notices/myCRED-addon-email-notices.php:884 ../includes/mycred-admin.php:764 ..
1966
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:542
1967
  msgid "User"
1968
  msgstr ""
1969
 
1970
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
1971
- #: notices/myCRED-addon-email-notices.php:885
1972
  msgid "Administrator"
1973
  msgstr ""
1974
 
1975
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1976
  msgid "Both Administrator and User"
1977
  msgstr ""
1978
 
1979
- #: ../addons/email-notices/myCRED-addon-email-notices.php:780
1980
  msgid "Available Template Tags"
1981
  msgstr ""
1982
 
1983
- #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1984
  msgid "Email Header"
1985
  msgstr ""
1986
 
1987
- #: ../addons/email-notices/myCRED-addon-email-notices.php:851
1988
  msgid "Send this email notice when..."
1989
  msgstr ""
1990
 
1991
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1992
  msgid "Recipient:"
1993
  msgstr ""
1994
 
1995
- #: ../addons/email-notices/myCRED-addon-email-notices.php:886
1996
  msgid "Both"
1997
  msgstr ""
1998
 
1999
- #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
2000
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2001
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2002
  #: module-settings.php:526
2003
  msgid "Label"
2004
  msgstr ""
2005
 
2006
- #: ../addons/email-notices/myCRED-addon-email-notices.php:898
2007
  msgid "Reply-To Email:"
2008
  msgstr ""
2009
 
2010
- #: ../addons/email-notices/myCRED-addon-email-notices.php:904
2011
  msgid "Save"
2012
  msgstr ""
2013
 
2014
- #: ../addons/email-notices/myCRED-addon-email-notices.php:916
2015
  msgid "CSS Styling"
2016
  msgstr ""
2017
 
2018
- #: ../addons/email-notices/myCRED-addon-email-notices.php:932
2019
  msgid "Site Related"
2020
  msgstr ""
2021
 
2022
- #: ../addons/email-notices/myCRED-addon-email-notices.php:933
2023
  msgid "Your websites title"
2024
  msgstr ""
2025
 
2026
- #: ../addons/email-notices/myCRED-addon-email-notices.php:934
2027
  msgid "Your websites address"
2028
  msgstr ""
2029
 
2030
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
2031
  msgid "Your websites tagline (description)"
2032
  msgstr ""
2033
 
2034
- #: ../addons/email-notices/myCRED-addon-email-notices.php:936
2035
  msgid "Your websites admin email"
2036
  msgstr ""
2037
 
2038
- #: ../addons/email-notices/myCRED-addon-email-notices.php:937
2039
  msgid "Total number of blog members"
2040
  msgstr ""
2041
 
2042
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
2043
- #: notices/myCRED-addon-email-notices.php:1018 ../addons/email-notices/myCRED-
2044
- #: addon-email-notices.php:1024
2045
  msgid "Email Notice Updated."
2046
  msgstr ""
2047
 
2048
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2049
  msgid "Email Notice Activated"
2050
  msgstr ""
2051
 
2052
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2053
  msgid "Email Notice Saved"
2054
  msgstr ""
2055
 
2056
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1040
2057
  msgid ""
2058
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2059
  "are not yet ready to use this email notice!"
2060
  msgstr ""
2061
 
2062
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1042
2063
  #, php-format
2064
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2065
  msgstr ""
2066
 
2067
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1044
2068
  msgid "This email notice is active."
2069
  msgstr ""
2070
 
2071
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2072
  msgid "Settings saved."
2073
  msgstr ""
2074
 
2075
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2076
  msgid "Unsubscribe"
2077
  msgstr ""
2078
 
2079
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1124
2080
  msgid "There are no email notifications yet."
2081
  msgstr ""
2082
 
2083
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1130
2084
  msgid "Save Changes"
2085
  msgstr ""
2086
 
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:765
2091
  msgid "Current Balance"
2092
  msgstr ""
2093
 
@@ -2201,7 +2201,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:912
2205
  msgid "Exchange Rate"
2206
  msgstr ""
2207
 
@@ -2526,7 +2526,7 @@ msgid "Log"
2526
  msgstr ""
2527
 
2528
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2529
- #: includes/mycred-admin.php:735 ../includes/mycred-admin.php:770
2530
  msgid "Log Entry"
2531
  msgstr ""
2532
 
@@ -2607,7 +2607,7 @@ msgid "Reject"
2607
  msgstr ""
2608
 
2609
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2610
- #: modules/mycred-module-log.php:502 ../modules/mycred-module-settings.php:488 ..
2611
  #: modules/mycred-module-settings.php:507
2612
  msgid "Delete"
2613
  msgstr ""
@@ -3021,11 +3021,11 @@ msgstr ""
3021
  msgid "Assign Ranks to Users"
3022
  msgstr ""
3023
 
3024
- #: ../addons/ranks/includes/mycred-rank-functions.php:197
3025
  msgid "mycred_get_users_rank() : Missing required user id"
3026
  msgstr ""
3027
 
3028
- #: ../addons/ranks/includes/mycred-rank-functions.php:207
3029
  msgid "no rank"
3030
  msgstr ""
3031
 
@@ -3202,7 +3202,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:2277
3206
  msgid "Transfer"
3207
  msgstr ""
3208
 
@@ -3237,7 +3237,7 @@ msgid ""
3237
  msgstr ""
3238
 
3239
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3240
- #: php:1009
3241
  msgid "Insufficient Funds. Please try a lower amount."
3242
  msgstr ""
3243
 
@@ -3391,24 +3391,24 @@ msgstr ""
3391
  msgid "Show users limit"
3392
  msgstr ""
3393
 
3394
- #: ../addons/transfer/myCRED-addon-transfer.php:798
3395
  msgid "username"
3396
  msgstr ""
3397
 
3398
- #: ../addons/transfer/myCRED-addon-transfer.php:800
3399
  msgid "email"
3400
  msgstr ""
3401
 
3402
- #: ../addons/transfer/myCRED-addon-transfer.php:802
3403
  #, php-format
3404
  msgid "recipients %s"
3405
  msgstr ""
3406
 
3407
- #: ../addons/transfer/myCRED-addon-transfer.php:875
3408
  msgid "To:"
3409
  msgstr ""
3410
 
3411
- #: ../addons/transfer/myCRED-addon-transfer.php:881
3412
  msgid "Amount:"
3413
  msgstr ""
3414
 
@@ -3460,8 +3460,8 @@ msgstr ""
3460
  msgid "Total: %s"
3461
  msgstr ""
3462
 
3463
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:252 ..
3464
- #: modules/mycred-module-log.php:253
3465
  msgid "History"
3466
  msgstr ""
3467
 
@@ -3533,15 +3533,15 @@ msgstr ""
3533
  msgid "%singular% balance"
3534
  msgstr ""
3535
 
3536
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:771
3537
  msgid "Update Balance"
3538
  msgstr ""
3539
 
3540
- #: ../includes/mycred-admin.php:763
3541
  msgid "ID"
3542
  msgstr ""
3543
 
3544
- #: ../includes/mycred-admin.php:769
3545
  msgid "A positive or negative value"
3546
  msgstr ""
3547
 
@@ -3593,290 +3593,298 @@ msgstr ""
3593
  msgid "Available Template Tags:"
3594
  msgstr ""
3595
 
3596
- #: ../includes/mycred-functions.php:1643
3597
  msgid "Entire Log"
3598
  msgstr ""
3599
 
3600
- #: ../includes/mycred-functions.php:1648 ../includes/mycred-functions.php:1649
3601
  msgid "Displayed Rows"
3602
  msgstr ""
3603
 
3604
- #: ../includes/mycred-functions.php:1653
3605
  msgid "Search Results"
3606
  msgstr ""
3607
 
3608
- #: ../includes/mycred-functions.php:1654
3609
  msgid "My Entire Log"
3610
  msgstr ""
3611
 
3612
- #: ../includes/mycred-functions.php:1774
3613
  msgid "ref empty"
3614
  msgstr ""
3615
 
3616
- #: ../includes/mycred-functions.php:1782
3617
  msgid "incorrect user id format"
3618
  msgstr ""
3619
 
3620
- #: ../includes/mycred-functions.php:1795
3621
  msgid "incorrect unix timestamp (from):"
3622
  msgstr ""
3623
 
3624
- #: ../includes/mycred-functions.php:1804
3625
  msgid "incorrect unix timestamp (to):"
3626
  msgstr ""
3627
 
3628
- #: ../includes/mycred-functions.php:2166
3629
  msgid "Website Registration"
3630
  msgstr ""
3631
 
3632
- #: ../includes/mycred-functions.php:2167
3633
  msgid "Website Visit"
3634
  msgstr ""
3635
 
3636
- #: ../includes/mycred-functions.php:2168
 
 
 
 
 
 
 
 
3637
  msgid "Logging in"
3638
  msgstr ""
3639
 
3640
- #: ../includes/mycred-functions.php:2169
3641
  msgid "Publishing Content"
3642
  msgstr ""
3643
 
3644
- #: ../includes/mycred-functions.php:2170 ../modules/mycred-module-hooks.php:1168
3645
  msgid "Approved Comment"
3646
  msgstr ""
3647
 
3648
- #: ../includes/mycred-functions.php:2171
3649
  msgid "Unapproved Comment"
3650
  msgstr ""
3651
 
3652
- #: ../includes/mycred-functions.php:2172
3653
  msgid "SPAM Comment"
3654
  msgstr ""
3655
 
3656
- #: ../includes/mycred-functions.php:2173
3657
  msgid "Deleted Comment"
3658
  msgstr ""
3659
 
3660
- #: ../includes/mycred-functions.php:2174
3661
  msgid "Link Click"
3662
  msgstr ""
3663
 
3664
- #: ../includes/mycred-functions.php:2175
3665
  msgid "Watching Video"
3666
  msgstr ""
3667
 
3668
- #: ../includes/mycred-functions.php:2176
3669
  msgid "Visitor Referral"
3670
  msgstr ""
3671
 
3672
- #: ../includes/mycred-functions.php:2177
3673
  msgid "Signup Referral"
3674
  msgstr ""
3675
 
3676
- #: ../includes/mycred-functions.php:2181
3677
  msgid "New Profile Update"
3678
  msgstr ""
3679
 
3680
- #: ../includes/mycred-functions.php:2182
3681
  msgid "Avatar Upload"
3682
  msgstr ""
3683
 
3684
- #: ../includes/mycred-functions.php:2183
3685
  msgid "New Friendship"
3686
  msgstr ""
3687
 
3688
- #: ../includes/mycred-functions.php:2184
3689
  msgid "Ended Friendship"
3690
  msgstr ""
3691
 
3692
- #: ../includes/mycred-functions.php:2185
3693
  msgid "New Profile Comment"
3694
  msgstr ""
3695
 
3696
- #: ../includes/mycred-functions.php:2186
3697
  msgid "Profile Comment Deletion"
3698
  msgstr ""
3699
 
3700
- #: ../includes/mycred-functions.php:2187
3701
  msgid "New Message"
3702
  msgstr ""
3703
 
3704
- #: ../includes/mycred-functions.php:2188
3705
  msgid "Sending Gift"
3706
  msgstr ""
3707
 
3708
- #: ../includes/mycred-functions.php:2189
3709
  msgid "New Group"
3710
  msgstr ""
3711
 
3712
- #: ../includes/mycred-functions.php:2190
3713
  msgid "Deleted Group"
3714
  msgstr ""
3715
 
3716
- #: ../includes/mycred-functions.php:2191
3717
  msgid "New Group Forum Topic"
3718
  msgstr ""
3719
 
3720
- #: ../includes/mycred-functions.php:2192
3721
  msgid "Edit Group Forum Topic"
3722
  msgstr ""
3723
 
3724
- #: ../includes/mycred-functions.php:2193
3725
  msgid "New Group Forum Post"
3726
  msgstr ""
3727
 
3728
- #: ../includes/mycred-functions.php:2194
3729
  msgid "Edit Group Forum Post"
3730
  msgstr ""
3731
 
3732
- #: ../includes/mycred-functions.php:2195
3733
  msgid "Joining Group"
3734
  msgstr ""
3735
 
3736
- #: ../includes/mycred-functions.php:2196
3737
  msgid "Leaving Group"
3738
  msgstr ""
3739
 
3740
- #: ../includes/mycred-functions.php:2197
3741
  msgid "New Group Avatar"
3742
  msgstr ""
3743
 
3744
- #: ../includes/mycred-functions.php:2198
3745
  msgid "New Group Comment"
3746
  msgstr ""
3747
 
3748
- #: ../includes/mycred-functions.php:2202 ../plugins/mycred-hook-buddypress-media.
3749
  #: php:166
3750
  msgid "Photo Upload"
3751
  msgstr ""
3752
 
3753
- #: ../includes/mycred-functions.php:2203 ../plugins/mycred-hook-buddypress-media.
3754
  #: php:176
3755
  msgid "Video Upload"
3756
  msgstr ""
3757
 
3758
- #: ../includes/mycred-functions.php:2204 ../plugins/mycred-hook-buddypress-media.
3759
  #: php:186
3760
  msgid "Music Upload"
3761
  msgstr ""
3762
 
3763
- #: ../includes/mycred-functions.php:2208
3764
  msgid "New Link"
3765
  msgstr ""
3766
 
3767
- #: ../includes/mycred-functions.php:2209
3768
  msgid "Link Voting"
3769
  msgstr ""
3770
 
3771
- #: ../includes/mycred-functions.php:2210
3772
  msgid "Link Update"
3773
  msgstr ""
3774
 
3775
- #: ../includes/mycred-functions.php:2214
3776
  msgid "New Forum (bbPress)"
3777
  msgstr ""
3778
 
3779
- #: ../includes/mycred-functions.php:2215
3780
  msgid "New Forum Topic (bbPress)"
3781
  msgstr ""
3782
 
3783
- #: ../includes/mycred-functions.php:2216
3784
  msgid "Favorited Topic (bbPress)"
3785
  msgstr ""
3786
 
3787
- #: ../includes/mycred-functions.php:2217
3788
  msgid "New Topic Reply (bbPress)"
3789
  msgstr ""
3790
 
3791
- #: ../includes/mycred-functions.php:2221
3792
  msgid "Form Submission (Contact Form 7)"
3793
  msgstr ""
3794
 
3795
- #: ../includes/mycred-functions.php:2224
3796
  msgid "Form Submission (Gravity Form)"
3797
  msgstr ""
3798
 
3799
- #: ../includes/mycred-functions.php:2227
3800
  msgid "New Forum Topic (SimplePress)"
3801
  msgstr ""
3802
 
3803
- #: ../includes/mycred-functions.php:2228
3804
  msgid "New Forum Post (SimplePress)"
3805
  msgstr ""
3806
 
3807
- #: ../includes/mycred-functions.php:2232
3808
  msgid "Poll Voting"
3809
  msgstr ""
3810
 
3811
- #: ../includes/mycred-functions.php:2235
3812
  msgid "Sending an Invite"
3813
  msgstr ""
3814
 
3815
- #: ../includes/mycred-functions.php:2236
3816
  msgid "Accepting an Invite"
3817
  msgstr ""
3818
 
3819
- #: ../includes/mycred-functions.php:2242
3820
  msgid "Banking Payout"
3821
  msgstr ""
3822
 
3823
- #: ../includes/mycred-functions.php:2245
3824
  msgid "buyCRED Purchase (PayPal Standard)"
3825
  msgstr ""
3826
 
3827
- #: ../includes/mycred-functions.php:2246
3828
  msgid "buyCRED Purchase (Skrill)"
3829
  msgstr ""
3830
 
3831
- #: ../includes/mycred-functions.php:2247
3832
  msgid "buyCRED Purchase (Zombaio)"
3833
  msgstr ""
3834
 
3835
- #: ../includes/mycred-functions.php:2248
3836
  msgid "buyCRED Purchase (NETBilling)"
3837
  msgstr ""
3838
 
3839
- #: ../includes/mycred-functions.php:2249
3840
  msgid "buyCRED Purchase (BitPay)"
3841
  msgstr ""
3842
 
3843
- #: ../includes/mycred-functions.php:2254
3844
  msgid "Coupon Purchase"
3845
  msgstr ""
3846
 
3847
- #: ../includes/mycred-functions.php:2257
3848
  msgid "Store Purchase (WooCommerce)"
3849
  msgstr ""
3850
 
3851
- #: ../includes/mycred-functions.php:2258
3852
  msgid "Store Purchase (MarketPress)"
3853
  msgstr ""
3854
 
3855
- #: ../includes/mycred-functions.php:2259
3856
  msgid "Store Purchase (WP E-Commerce)"
3857
  msgstr ""
3858
 
3859
- #: ../includes/mycred-functions.php:2264
3860
  msgid "Event Payment (Event Espresso)"
3861
  msgstr ""
3862
 
3863
- #: ../includes/mycred-functions.php:2265
3864
  msgid "Event Sale (Event Espresso)"
3865
  msgstr ""
3866
 
3867
- #: ../includes/mycred-functions.php:2269
3868
  msgid "Event Payment (Events Manager)"
3869
  msgstr ""
3870
 
3871
- #: ../includes/mycred-functions.php:2270
3872
  msgid "Event Sale (Events Manager)"
3873
  msgstr ""
3874
 
3875
- #: ../includes/mycred-functions.php:2274
3876
  msgid "Content Purchase / Sale"
3877
  msgstr ""
3878
 
3879
- #: ../includes/mycred-functions.php:2281
3880
  msgid "Manual Adjustment by Admin"
3881
  msgstr ""
3882
 
@@ -4147,7 +4155,7 @@ msgstr ""
4147
  msgid "Entry"
4148
  msgstr ""
4149
 
4150
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:464
4151
  msgid "User Missing"
4152
  msgstr ""
4153
 
@@ -4359,60 +4367,60 @@ msgstr ""
4359
  msgid "A video ID is required for this shortcode"
4360
  msgstr ""
4361
 
4362
- #: ../includes/mycred-shortcodes.php:861 ../includes/mycred-shortcodes.php:955
4363
  msgid "Point types not found."
4364
  msgstr ""
4365
 
4366
- #: ../includes/mycred-shortcodes.php:867 ../includes/mycred-shortcodes.php:875 ..
4367
- #: includes/mycred-shortcodes.php:967 ../includes/mycred-shortcodes.php:987
4368
  #, php-format
4369
  msgid "You are excluded from using %s."
4370
  msgstr ""
4371
 
4372
- #: ../includes/mycred-shortcodes.php:871 ../includes/mycred-shortcodes.php:977
4373
  msgid "Your balance is too low to use this feature."
4374
  msgstr ""
4375
 
4376
- #: ../includes/mycred-shortcodes.php:892
4377
  #, php-format
4378
  msgid "Convert <span>%s</span> to <span>%s</span>"
4379
  msgstr ""
4380
 
4381
- #: ../includes/mycred-shortcodes.php:901
4382
  #, php-format
4383
  msgid "Your current %s balance"
4384
  msgstr ""
4385
 
4386
- #: ../includes/mycred-shortcodes.php:909
4387
  #, php-format
4388
  msgid "Minimum %s"
4389
  msgstr ""
4390
 
4391
- #: ../includes/mycred-shortcodes.php:913
4392
  #, php-format
4393
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4394
  msgstr ""
4395
 
4396
- #: ../includes/mycred-shortcodes.php:919
4397
  msgid "Exchange"
4398
  msgstr ""
4399
 
4400
- #: ../includes/mycred-shortcodes.php:1000
4401
  #, php-format
4402
  msgid "You must exchange at least %s!"
4403
  msgstr ""
4404
 
4405
- #: ../includes/mycred-shortcodes.php:1022
4406
  #, php-format
4407
  msgid "Exchange from %s"
4408
  msgstr ""
4409
 
4410
- #: ../includes/mycred-shortcodes.php:1034
4411
  #, php-format
4412
  msgid "Exchange to %s"
4413
  msgstr ""
4414
 
4415
- #: ../includes/mycred-shortcodes.php:1042
4416
  #, php-format
4417
  msgid "You have successfully exchanged %s into %s."
4418
  msgstr ""
@@ -4913,216 +4921,252 @@ msgstr ""
4913
 
4914
  #: ../modules/mycred-module-hooks.php:101
4915
  #, php-format
4916
- msgid "%plural% for logins"
4917
  msgstr ""
4918
 
4919
  #: ../modules/mycred-module-hooks.php:102
 
 
 
 
 
 
 
 
 
 
 
4920
  #, php-format
4921
  msgid ""
4922
  "Award %_plural% for logging in to your website. You can also set an optional "
4923
  "limit."
4924
  msgstr ""
4925
 
4926
- #: ../modules/mycred-module-hooks.php:108
4927
  #, php-format
4928
  msgid "%plural% for publishing content"
4929
  msgstr ""
4930
 
4931
- #: ../modules/mycred-module-hooks.php:109
4932
  #, php-format
4933
  msgid ""
4934
  "Award %_plural% for publishing content on your website. If your custom post "
4935
  "type is not shown bellow, make sure it is set to \"Public\"."
4936
  msgstr ""
4937
 
4938
- #: ../modules/mycred-module-hooks.php:115
4939
  #, php-format
4940
  msgid "%plural% for comments"
4941
  msgstr ""
4942
 
4943
- #: ../modules/mycred-module-hooks.php:115
4944
  #, php-format
4945
  msgid "%plural% for Disqus comments"
4946
  msgstr ""
4947
 
4948
- #: ../modules/mycred-module-hooks.php:116
4949
  #, php-format
4950
  msgid "Award %_plural% for making comments."
4951
  msgstr ""
4952
 
4953
- #: ../modules/mycred-module-hooks.php:122
4954
  #, php-format
4955
  msgid "%plural% for clicking on links"
4956
  msgstr ""
4957
 
4958
- #: ../modules/mycred-module-hooks.php:123
4959
  msgid ""
4960
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4961
  "shortcode."
4962
  msgstr ""
4963
 
4964
- #: ../modules/mycred-module-hooks.php:129
4965
  #, php-format
4966
  msgid "%plural% for viewing Videos"
4967
  msgstr ""
4968
 
4969
- #: ../modules/mycred-module-hooks.php:130
4970
  msgid ""
4971
  "Award %_plural% to users who watches videos embedded using the "
4972
  "[mycred_video] shortcode."
4973
  msgstr ""
4974
 
4975
- #: ../modules/mycred-module-hooks.php:136
4976
  #, php-format
4977
  msgid "%plural% for referrals"
4978
  msgstr ""
4979
 
4980
- #: ../modules/mycred-module-hooks.php:137
4981
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
4982
  msgstr ""
4983
 
4984
- #: ../modules/mycred-module-hooks.php:170
4985
  #, php-format
4986
  msgid "%s Hooks"
4987
  msgstr ""
4988
 
4989
- #: ../modules/mycred-module-hooks.php:173
4990
  msgid ""
4991
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
4992
  "depending on their actions around your website."
4993
  msgstr ""
4994
 
4995
- #: ../modules/mycred-module-hooks.php:345 ../modules/mycred-module-hooks.php:439 .
4996
- #: ./modules/mycred-module-hooks.php:751 ../modules/mycred-module-hooks.php:764 ..
4997
- #: modules/mycred-module-hooks.php:800 ../modules/mycred-module-hooks.php:1180 ..
4998
- #: modules/mycred-module-hooks.php:1197 ../modules/mycred-module-hooks.php:1214 .
4999
- #: ./modules/mycred-module-hooks.php:2370 ../modules/mycred-module-hooks.php:2399
5000
- #: ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 .
5001
- #: ./plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ..
5002
- #: plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ..
5003
- #: plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ..
5004
- #: plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-
5005
- #: buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ..
5006
- #: plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-
5007
- #: buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ..
5008
- #: plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-
5009
- #: buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ..
5010
- #: plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-
5011
- #: buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ..
5012
- #: plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
5013
- #: buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-
5014
- #: hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ..
5015
- #: plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:
5016
- #: 446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-
5017
- #: buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-
5018
- #: hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ..
5019
- #: plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:
5020
- #: 978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-
5021
- #: buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ..
5022
- #: plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:
5023
- #: 1044 ../plugins/mycred-hook-contact-form7.php:141 ../plugins/mycred-hook-
5024
- #: gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.php:219 ..
5025
- #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-jetpack.php:
5026
- #: 506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-sharethis.
5027
- #: php:258 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-
5028
- #: simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ..
5029
- #: plugins/mycred-hook-simplepress.php:380
 
5030
  msgid "Log template"
5031
  msgstr ""
5032
 
5033
- #: ../modules/mycred-module-hooks.php:640 ../modules/mycred-module-hooks.php:2378
5034
- #: ../modules/mycred-module-hooks.php:2407 ../plugins/mycred-hook-invite-anyone.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5035
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5036
  msgid "Limit"
5037
  msgstr ""
5038
 
5039
- #: ../modules/mycred-module-hooks.php:745
5040
  #, php-format
5041
  msgid "%plural% for Posts"
5042
  msgstr ""
5043
 
5044
- #: ../modules/mycred-module-hooks.php:758
5045
  #, php-format
5046
  msgid "%plural% for Pages"
5047
  msgstr ""
5048
 
5049
- #: ../modules/mycred-module-hooks.php:794
5050
  #, php-format
5051
  msgid "%plural% for %s"
5052
  msgstr ""
5053
 
5054
- #: ../modules/mycred-module-hooks.php:1166
5055
  msgid ""
5056
  "%plural% are only awarded when your website has been synced with the Disqus "
5057
  "server!"
5058
  msgstr ""
5059
 
5060
- #: ../modules/mycred-module-hooks.php:1171 ../modules/mycred-module-hooks.php:
5061
- #: 1188 ../modules/mycred-module-hooks.php:1205
5062
  msgid "Comment Author"
5063
  msgstr ""
5064
 
5065
- #: ../modules/mycred-module-hooks.php:1175 ../modules/mycred-module-hooks.php:
5066
- #: 1192 ../modules/mycred-module-hooks.php:1209
5067
- msgid "Content Author"
5068
- msgstr ""
5069
-
5070
- #: ../modules/mycred-module-hooks.php:1185
5071
  msgid "Comment Marked SPAM"
5072
  msgstr ""
5073
 
5074
- #: ../modules/mycred-module-hooks.php:1202
5075
  msgid "Trashed / Unapproved Comments"
5076
  msgstr ""
5077
 
5078
- #: ../modules/mycred-module-hooks.php:1222
5079
  msgid "Limit per post"
5080
  msgstr ""
5081
 
5082
- #: ../modules/mycred-module-hooks.php:1224
5083
  msgid ""
5084
  "The number of comments per post that grants %_plural% to the comment author. "
5085
  "Use zero for unlimited."
5086
  msgstr ""
5087
 
5088
- #: ../modules/mycred-module-hooks.php:1228
5089
  msgid "Limit per day"
5090
  msgstr ""
5091
 
5092
- #: ../modules/mycred-module-hooks.php:1230
5093
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5094
  msgstr ""
5095
 
5096
- #: ../modules/mycred-module-hooks.php:1235
5097
  msgid ""
5098
  "%plural% is to be awarded even when comment authors reply to their own "
5099
  "comment."
5100
  msgstr ""
5101
 
5102
- #: ../modules/mycred-module-hooks.php:1306
5103
  msgid "Once for each unique URL"
5104
  msgstr ""
5105
 
5106
- #: ../modules/mycred-module-hooks.php:1307
5107
  msgid "Once for each unique link id"
5108
  msgstr ""
5109
 
5110
- #: ../modules/mycred-module-hooks.php:1500
5111
  msgid ""
5112
  "The default amount to award for clicking on links. You can override this in "
5113
  "the shortcode."
5114
  msgstr ""
5115
 
5116
- #: ../modules/mycred-module-hooks.php:1507
5117
  #, php-format
5118
  msgid "Custom tags: %url%, %title% or %id%."
5119
  msgstr ""
5120
 
5121
- #: ../modules/mycred-module-hooks.php:1518 ../modules/mycred-module-hooks.php:2481
5122
  msgid "Note!"
5123
  msgstr ""
5124
 
5125
- #: ../modules/mycred-module-hooks.php:1518
5126
  msgid ""
5127
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5128
  "generate one automatically based on the value set under href. If you are "
@@ -5130,220 +5174,220 @@ msgid ""
5130
  "by ID."
5131
  msgstr ""
5132
 
5133
- #: ../modules/mycred-module-hooks.php:1520 ../modules/mycred-module-hooks.php:1878
5134
  msgid "Available Shortcode"
5135
  msgstr ""
5136
 
5137
- #: ../modules/mycred-module-hooks.php:1842
5138
  msgid "Amount to award for viewing videos."
5139
  msgstr ""
5140
 
5141
- #: ../modules/mycred-module-hooks.php:1852
5142
  msgid "Award Logic"
5143
  msgstr ""
5144
 
5145
- #: ../modules/mycred-module-hooks.php:1854
5146
  #, php-format
5147
  msgid "Select when %_plural% should be awarded or deducted."
5148
  msgstr ""
5149
 
5150
- #: ../modules/mycred-module-hooks.php:1855
5151
  msgid "Play - As soon as video starts playing."
5152
  msgstr ""
5153
 
5154
- #: ../modules/mycred-module-hooks.php:1856
5155
  msgid "Full - First when the entire video has played."
5156
  msgstr ""
5157
 
5158
- #: ../modules/mycred-module-hooks.php:1857
5159
  msgid "Interval - For each x number of seconds watched."
5160
  msgstr ""
5161
 
5162
- #: ../modules/mycred-module-hooks.php:1862
5163
  msgid "Number of seconds"
5164
  msgstr ""
5165
 
5166
- #: ../modules/mycred-module-hooks.php:1869
5167
  msgid "Leniency"
5168
  msgstr ""
5169
 
5170
- #: ../modules/mycred-module-hooks.php:1871
5171
  msgid ""
5172
  "The maximum percentage a users view of a movie can differ from the actual "
5173
  "length."
5174
  msgstr ""
5175
 
5176
- #: ../modules/mycred-module-hooks.php:1874
5177
  msgid ""
5178
  "Do not set this value to zero! A lot of thing can happen while a user "
5179
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5180
  "buffering or play back errors."
5181
  msgstr ""
5182
 
5183
- #: ../modules/mycred-module-hooks.php:1942
5184
  msgid "Affiliate Program"
5185
  msgstr ""
5186
 
5187
- #: ../modules/mycred-module-hooks.php:1951
5188
  msgid "Per Day"
5189
  msgstr ""
5190
 
5191
- #: ../modules/mycred-module-hooks.php:2063
5192
  msgid "Link"
5193
  msgstr ""
5194
 
5195
- #: ../modules/mycred-module-hooks.php:2364
5196
  msgid "Referring Visitors"
5197
  msgstr ""
5198
 
5199
- #: ../modules/mycred-module-hooks.php:2388 ../modules/mycred-module-hooks.php:2417
5200
  msgid "The number of referrals each member can make. Use zero for unlimited."
5201
  msgstr ""
5202
 
5203
- #: ../modules/mycred-module-hooks.php:2392 ../modules/mycred-module-hooks.php:2421
5204
  msgid "Referring Signups"
5205
  msgstr ""
5206
 
5207
- #: ../modules/mycred-module-hooks.php:2396
5208
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5209
  msgstr ""
5210
 
5211
- #: ../modules/mycred-module-hooks.php:2423
5212
  msgid "Registrations are disabled."
5213
  msgstr ""
5214
 
5215
- #: ../modules/mycred-module-hooks.php:2430
5216
  msgid "Referral Links"
5217
  msgstr ""
5218
 
5219
- #: ../modules/mycred-module-hooks.php:2434
5220
  msgid "Assign numeric referral IDs to each user."
5221
  msgstr ""
5222
 
5223
- #: ../modules/mycred-module-hooks.php:2435 ../modules/mycred-module-hooks.php:2441
5224
  msgid "Example"
5225
  msgstr ""
5226
 
5227
- #: ../modules/mycred-module-hooks.php:2440
5228
  msgid "Assign usernames as IDs for each user."
5229
  msgstr ""
5230
 
5231
- #: ../modules/mycred-module-hooks.php:2444
5232
  msgid "IP Limit"
5233
  msgstr ""
5234
 
5235
- #: ../modules/mycred-module-hooks.php:2448
5236
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5237
  msgstr ""
5238
 
5239
- #: ../modules/mycred-module-hooks.php:2452 ../modules/mycred-module-hooks.php:2485
5240
  msgid "BuddyPress Profile"
5241
  msgstr ""
5242
 
5243
- #: ../modules/mycred-module-hooks.php:2455
5244
  msgid "Insert Link in users Profile"
5245
  msgstr ""
5246
 
5247
- #: ../modules/mycred-module-hooks.php:2456
5248
  msgid ""
5249
  "Option to inser the referral link in users profiles. Links will only be "
5250
  "visible to users viewing their own profiles or administrators."
5251
  msgstr ""
5252
 
5253
- #: ../modules/mycred-module-hooks.php:2462
5254
  msgid "Leave empty to hide."
5255
  msgstr ""
5256
 
5257
- #: ../modules/mycred-module-hooks.php:2465
5258
  msgid "Description"
5259
  msgstr ""
5260
 
5261
- #: ../modules/mycred-module-hooks.php:2466
5262
  msgid "Optional description to insert under the link."
5263
  msgstr ""
5264
 
5265
- #: ../modules/mycred-module-hooks.php:2478
5266
  msgid "Profile Positioning"
5267
  msgstr ""
5268
 
5269
- #: ../modules/mycred-module-hooks.php:2480
5270
  msgid ""
5271
  "You can move around the referral link on your users profile by changing the "
5272
  "position. Increase to move up, decrease to move down."
5273
  msgstr ""
5274
 
5275
- #: ../modules/mycred-module-hooks.php:2481
5276
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5277
  msgstr ""
5278
 
5279
- #: ../modules/mycred-module-hooks.php:2487
5280
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5281
  msgstr ""
5282
 
5283
- #: ../modules/mycred-module-log.php:187 ../modules/mycred-module-log.php:208 ..
5284
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5285
  msgid "Access denied for this action"
5286
  msgstr ""
5287
 
5288
- #: ../modules/mycred-module-log.php:194
5289
  msgid "Row Deleted"
5290
  msgstr ""
5291
 
5292
- #: ../modules/mycred-module-log.php:221
5293
  msgid "Log entry not found"
5294
  msgstr ""
5295
 
5296
- #: ../modules/mycred-module-log.php:234
5297
  msgid "Entry Updated"
5298
  msgstr ""
5299
 
5300
- #: ../modules/mycred-module-log.php:288 ../modules/mycred-module-settings.php:436
5301
  msgid "Entries"
5302
  msgstr ""
5303
 
5304
- #: ../modules/mycred-module-log.php:303 ../modules/mycred-module-log.php:383 ..
5305
- #: modules/mycred-module-log.php:627 ../modules/mycred-module-settings.php:574
5306
  msgid "Export"
5307
  msgstr ""
5308
 
5309
- #: ../modules/mycred-module-log.php:309
5310
  msgid "Search results for"
5311
  msgstr ""
5312
 
5313
- #: ../modules/mycred-module-log.php:377
5314
  #, php-format
5315
  msgid "%s Log"
5316
  msgstr ""
5317
 
5318
- #: ../modules/mycred-module-log.php:502
5319
  msgid "Edit"
5320
  msgstr ""
5321
 
5322
- #: ../modules/mycred-module-log.php:543
5323
  msgid "Time"
5324
  msgstr ""
5325
 
5326
- #: ../modules/mycred-module-log.php:547
5327
  msgid "Current Log Entry"
5328
  msgstr ""
5329
 
5330
- #: ../modules/mycred-module-log.php:549
5331
  msgid "The current saved log entry"
5332
  msgstr ""
5333
 
5334
- #: ../modules/mycred-module-log.php:552
5335
  msgid "Adjust Log Entry"
5336
  msgstr ""
5337
 
5338
- #: ../modules/mycred-module-log.php:554
5339
  msgid "The new log entry"
5340
  msgstr ""
5341
 
5342
- #: ../modules/mycred-module-log.php:557
5343
  msgid "Update Log Entry"
5344
  msgstr ""
5345
 
5346
- #: ../modules/mycred-module-log.php:621
5347
  #, php-format
5348
  msgid "My %s History"
5349
  msgstr ""
@@ -5574,8 +5618,8 @@ msgstr ""
5574
  msgid "Forum authors can receive %_plural% for creating new topics."
5575
  msgstr ""
5576
 
5577
- #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 .
5578
- #: ./plugins/mycred-hook-simplepress.php:336
5579
  #, php-format
5580
  msgid "%plural% for Topic Deletion"
5581
  msgstr ""
@@ -5611,6 +5655,11 @@ msgstr ""
5611
  msgid "Show users %_plural% balance in replies"
5612
  msgstr ""
5613
 
 
 
 
 
 
5614
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5615
  msgid "BuddyPress: Gallery Actions"
5616
  msgstr ""
@@ -5987,19 +6036,15 @@ msgstr ""
5987
  msgid "%plural% for Topic Post Deletion"
5988
  msgstr ""
5989
 
5990
- #: ../plugins/mycred-hook-woocommerce.php:65
5991
  msgid "Reward with %plural%"
5992
  msgstr ""
5993
 
5994
- #: ../plugins/mycred-hook-woocommerce.php:70
5995
- msgid "User is excluded from this point type."
5996
- msgstr ""
5997
-
5998
- #: ../plugins/mycred-hook-woocommerce.php:199
5999
  msgid "WooCommerce Product Reviews"
6000
  msgstr ""
6001
 
6002
- #: ../plugins/mycred-hook-woocommerce.php:200
6003
  #, php-format
6004
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6005
  msgstr ""
@@ -6029,3 +6074,7 @@ msgstr ""
6029
  #, php-format
6030
  msgid "Awards %_plural% for users voting in polls."
6031
  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
  "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"
94
  msgstr ""
95
 
96
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
97
+ #: notices.php:718 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
98
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
99
  msgid "Setup"
100
  msgstr ""
120
  msgstr ""
121
 
122
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
123
+ #: 1558
124
  msgid "No limit"
125
  msgstr ""
126
 
146
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
147
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
148
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
149
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:868
150
  msgid "Select"
151
  msgstr ""
152
 
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 ""
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
 
508
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
509
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
510
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
511
+ #: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
512
+ #: modules/mycred-module-hooks.php:2098 ../plugins/mycred-hook-badgeOS.php:115 ..
513
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
514
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
515
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
516
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
517
+ #: php:298 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
518
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
519
  msgid "Log Template"
520
  msgstr ""
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
 
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
 
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
 
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 ""
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
 
1525
  msgstr ""
1526
 
1527
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1528
+ #: transfer.php:243 ../modules/mycred-module-hooks.php:1472 ../modules/mycred-
1529
+ #: module-hooks.php:1763
1530
  msgid "Limits"
1531
  msgstr ""
1532
 
1539
  msgstr ""
1540
 
1541
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1542
+ #: php:2203
1543
  msgid "Total"
1544
  msgstr ""
1545
 
1701
  msgstr ""
1702
 
1703
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1704
+ #: notices/myCRED-addon-email-notices.php:1115
1705
  msgid "Email Notice"
1706
  msgstr ""
1707
 
1886
  msgstr ""
1887
 
1888
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1889
+ #: notices/myCRED-addon-email-notices.php:782
1890
  msgid "Email Settings"
1891
  msgstr ""
1892
 
1893
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1894
+ #: notices/myCRED-addon-email-notices.php:905
1895
  msgid "Senders Name:"
1896
  msgstr ""
1897
 
1898
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1899
+ #: notices/myCRED-addon-email-notices.php:907
1900
  msgid "Senders Email:"
1901
  msgstr ""
1902
 
1920
  msgid "Ignored if HTML is not allowed in emails."
1921
  msgstr ""
1922
 
1923
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:716 ../addons/email-
1924
+ #: notices/myCRED-addon-email-notices.php:831
1925
  msgid "Email Subject"
1926
  msgstr ""
1927
 
1928
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:717
1929
  msgid "Status"
1930
  msgstr ""
1931
 
1932
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1933
  msgid "Not Active"
1934
  msgstr ""
1935
 
1936
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:739
1937
  #, php-format
1938
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1939
  msgstr ""
1940
 
1941
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:743
1942
  msgid "Active"
1943
  msgstr ""
1944
 
1945
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:745
1946
  #, php-format
1947
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1948
  msgstr ""
1949
 
1950
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755
1951
  msgid "Email is sent when"
1952
  msgstr ""
1953
 
1954
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1955
  msgid "Missing instance for this notice!"
1956
  msgstr ""
1957
 
1958
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
1959
+ #: notices/myCRED-addon-email-notices.php:768 ../addons/email-notices/myCRED-
1960
+ #: addon-email-notices.php:770
1961
  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
 
1970
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:768 ../addons/email-
1971
+ #: notices/myCRED-addon-email-notices.php:896
1972
  msgid "Administrator"
1973
  msgstr ""
1974
 
1975
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:770
1976
  msgid "Both Administrator and User"
1977
  msgstr ""
1978
 
1979
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1980
  msgid "Available Template Tags"
1981
  msgstr ""
1982
 
1983
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:802
1984
  msgid "Email Header"
1985
  msgstr ""
1986
 
1987
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:862
1988
  msgid "Send this email notice when..."
1989
  msgstr ""
1990
 
1991
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:893
1992
  msgid "Recipient:"
1993
  msgstr ""
1994
 
1995
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:897
1996
  msgid "Both"
1997
  msgstr ""
1998
 
1999
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:901 ..
2000
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2001
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2002
  #: module-settings.php:526
2003
  msgid "Label"
2004
  msgstr ""
2005
 
2006
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2007
  msgid "Reply-To Email:"
2008
  msgstr ""
2009
 
2010
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:915
2011
  msgid "Save"
2012
  msgstr ""
2013
 
2014
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:927
2015
  msgid "CSS Styling"
2016
  msgstr ""
2017
 
2018
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:943
2019
  msgid "Site Related"
2020
  msgstr ""
2021
 
2022
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:944
2023
  msgid "Your websites title"
2024
  msgstr ""
2025
 
2026
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:945
2027
  msgid "Your websites address"
2028
  msgstr ""
2029
 
2030
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:946
2031
  msgid "Your websites tagline (description)"
2032
  msgstr ""
2033
 
2034
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:947
2035
  msgid "Your websites admin email"
2036
  msgstr ""
2037
 
2038
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:948
2039
  msgid "Total number of blog members"
2040
  msgstr ""
2041
 
2042
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1026 ../addons/email-
2043
+ #: notices/myCRED-addon-email-notices.php:1029 ../addons/email-notices/myCRED-
2044
+ #: addon-email-notices.php:1035
2045
  msgid "Email Notice Updated."
2046
  msgstr ""
2047
 
2048
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1031
2049
  msgid "Email Notice Activated"
2050
  msgstr ""
2051
 
2052
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1032
2053
  msgid "Email Notice Saved"
2054
  msgstr ""
2055
 
2056
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2057
  msgid ""
2058
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2059
  "are not yet ready to use this email notice!"
2060
  msgstr ""
2061
 
2062
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2063
  #, php-format
2064
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2065
  msgstr ""
2066
 
2067
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2068
  msgid "This email notice is active."
2069
  msgstr ""
2070
 
2071
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1066
2072
  msgid "Settings saved."
2073
  msgstr ""
2074
 
2075
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1114
2076
  msgid "Unsubscribe"
2077
  msgstr ""
2078
 
2079
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1135
2080
  msgid "There are no email notifications yet."
2081
  msgstr ""
2082
 
2083
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1141
2084
  msgid "Save Changes"
2085
  msgstr ""
2086
 
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
  #: 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
 
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
 
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 ""
3021
  msgid "Assign Ranks to Users"
3022
  msgstr ""
3023
 
3024
+ #: ../addons/ranks/includes/mycred-rank-functions.php:229
3025
  msgid "mycred_get_users_rank() : Missing required user id"
3026
  msgstr ""
3027
 
3028
+ #: ../addons/ranks/includes/mycred-rank-functions.php:238
3029
  msgid "no rank"
3030
  msgstr ""
3031
 
3202
  msgstr ""
3203
 
3204
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3205
+ #: php:2295
3206
  msgid "Transfer"
3207
  msgstr ""
3208
 
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
 
3391
  msgid "Show users limit"
3392
  msgstr ""
3393
 
3394
+ #: ../addons/transfer/myCRED-addon-transfer.php:800
3395
  msgid "username"
3396
  msgstr ""
3397
 
3398
+ #: ../addons/transfer/myCRED-addon-transfer.php:802
3399
  msgid "email"
3400
  msgstr ""
3401
 
3402
+ #: ../addons/transfer/myCRED-addon-transfer.php:804
3403
  #, php-format
3404
  msgid "recipients %s"
3405
  msgstr ""
3406
 
3407
+ #: ../addons/transfer/myCRED-addon-transfer.php:877
3408
  msgid "To:"
3409
  msgstr ""
3410
 
3411
+ #: ../addons/transfer/myCRED-addon-transfer.php:883
3412
  msgid "Amount:"
3413
  msgstr ""
3414
 
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
 
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
  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
 
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
 
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 ""
4921
 
4922
  #: ../modules/mycred-module-hooks.php:101
4923
  #, php-format
4924
+ msgid "%plural% for viewing content"
4925
  msgstr ""
4926
 
4927
  #: ../modules/mycred-module-hooks.php:102
4928
+ msgid ""
4929
+ "Award %_plural% to your users for viewing posts and / or %plural% to your "
4930
+ "authors for members viewing their content."
4931
+ msgstr ""
4932
+
4933
+ #: ../modules/mycred-module-hooks.php:108
4934
+ #, php-format
4935
+ msgid "%plural% for logins"
4936
+ msgstr ""
4937
+
4938
+ #: ../modules/mycred-module-hooks.php:109
4939
  #, php-format
4940
  msgid ""
4941
  "Award %_plural% for logging in to your website. You can also set an optional "
4942
  "limit."
4943
  msgstr ""
4944
 
4945
+ #: ../modules/mycred-module-hooks.php:115
4946
  #, php-format
4947
  msgid "%plural% for publishing content"
4948
  msgstr ""
4949
 
4950
+ #: ../modules/mycred-module-hooks.php:116
4951
  #, php-format
4952
  msgid ""
4953
  "Award %_plural% for publishing content on your website. If your custom post "
4954
  "type is not shown bellow, make sure it is set to \"Public\"."
4955
  msgstr ""
4956
 
4957
+ #: ../modules/mycred-module-hooks.php:122
4958
  #, php-format
4959
  msgid "%plural% for comments"
4960
  msgstr ""
4961
 
4962
+ #: ../modules/mycred-module-hooks.php:122
4963
  #, php-format
4964
  msgid "%plural% for Disqus comments"
4965
  msgstr ""
4966
 
4967
+ #: ../modules/mycred-module-hooks.php:123
4968
  #, php-format
4969
  msgid "Award %_plural% for making comments."
4970
  msgstr ""
4971
 
4972
+ #: ../modules/mycred-module-hooks.php:129
4973
  #, php-format
4974
  msgid "%plural% for clicking on links"
4975
  msgstr ""
4976
 
4977
+ #: ../modules/mycred-module-hooks.php:130
4978
  msgid ""
4979
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4980
  "shortcode."
4981
  msgstr ""
4982
 
4983
+ #: ../modules/mycred-module-hooks.php:136
4984
  #, php-format
4985
  msgid "%plural% for viewing Videos"
4986
  msgstr ""
4987
 
4988
+ #: ../modules/mycred-module-hooks.php:137
4989
  msgid ""
4990
  "Award %_plural% to users who watches videos embedded using the "
4991
  "[mycred_video] shortcode."
4992
  msgstr ""
4993
 
4994
+ #: ../modules/mycred-module-hooks.php:143
4995
  #, php-format
4996
  msgid "%plural% for referrals"
4997
  msgstr ""
4998
 
4999
+ #: ../modules/mycred-module-hooks.php:144
5000
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5001
  msgstr ""
5002
 
5003
+ #: ../modules/mycred-module-hooks.php:177
5004
  #, php-format
5005
  msgid "%s Hooks"
5006
  msgstr ""
5007
 
5008
+ #: ../modules/mycred-module-hooks.php:180
5009
  msgid ""
5010
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5011
  "depending on their actions around your website."
5012
  msgstr ""
5013
 
5014
+ #: ../modules/mycred-module-hooks.php:352 ../modules/mycred-module-hooks.php:446 .
5015
+ #: ./modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:622 ..
5016
+ #: modules/mycred-module-hooks.php:684 ../modules/mycred-module-hooks.php:1004 ..
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.
5024
+ #: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
5025
+ #: buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ..
5026
+ #: plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-
5027
+ #: buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ..
5028
+ #: plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-
5029
+ #: buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ..
5030
+ #: plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-
5031
+ #: buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ..
5032
+ #: plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-
5033
+ #: buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ..
5034
+ #: plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:
5035
+ #: 407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-
5036
+ #: buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-
5037
+ #: hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ..
5038
+ #: plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:
5039
+ #: 939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-
5040
+ #: buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-
5041
+ #: hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ..
5042
+ #: plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:
5043
+ #: 1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-
5044
+ #: form7.php:141 ../plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-
5045
+ #: hook-invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:240 ..
5046
+ #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5047
+ #: plugins/mycred-hook-sharethis.php:258 ../plugins/mycred-hook-simplepress.php:
5048
+ #: 330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-
5049
+ #: simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
5050
  msgid "Log template"
5051
  msgstr ""
5052
 
5053
+ #: ../modules/mycred-module-hooks.php:586
5054
+ #, php-format
5055
+ msgid "%plural% for viewing Posts"
5056
+ msgstr ""
5057
+
5058
+ #: ../modules/mycred-module-hooks.php:589 ../modules/mycred-module-hooks.php:600 .
5059
+ #: ./modules/mycred-module-hooks.php:614 ../modules/mycred-module-hooks.php:625 ..
5060
+ #: modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:687
5061
+ msgid "Member"
5062
+ msgstr ""
5063
+
5064
+ #: ../modules/mycred-module-hooks.php:593 ../modules/mycred-module-hooks.php:606 .
5065
+ #: ./modules/mycred-module-hooks.php:618 ../modules/mycred-module-hooks.php:631 ..
5066
+ #: modules/mycred-module-hooks.php:680 ../modules/mycred-module-hooks.php:693 ..
5067
+ #: modules/mycred-module-hooks.php:1428 ../modules/mycred-module-hooks.php:1445 .
5068
+ #: ./modules/mycred-module-hooks.php:1462
5069
+ msgid "Content Author"
5070
+ msgstr ""
5071
+
5072
+ #: ../modules/mycred-module-hooks.php:611
5073
+ #, php-format
5074
+ msgid "%plural% for viewing Pages"
5075
+ msgstr ""
5076
+
5077
+ #: ../modules/mycred-module-hooks.php:673
5078
+ #, php-format
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 ""
5087
 
5088
+ #: ../modules/mycred-module-hooks.php:998
5089
  #, php-format
5090
  msgid "%plural% for Posts"
5091
  msgstr ""
5092
 
5093
+ #: ../modules/mycred-module-hooks.php:1011
5094
  #, php-format
5095
  msgid "%plural% for Pages"
5096
  msgstr ""
5097
 
5098
+ #: ../modules/mycred-module-hooks.php:1047
5099
  #, php-format
5100
  msgid "%plural% for %s"
5101
  msgstr ""
5102
 
5103
+ #: ../modules/mycred-module-hooks.php:1419
5104
  msgid ""
5105
  "%plural% are only awarded when your website has been synced with the Disqus "
5106
  "server!"
5107
  msgstr ""
5108
 
5109
+ #: ../modules/mycred-module-hooks.php:1424 ../modules/mycred-module-hooks.php:
5110
+ #: 1441 ../modules/mycred-module-hooks.php:1458
5111
  msgid "Comment Author"
5112
  msgstr ""
5113
 
5114
+ #: ../modules/mycred-module-hooks.php:1438
 
 
 
 
 
5115
  msgid "Comment Marked SPAM"
5116
  msgstr ""
5117
 
5118
+ #: ../modules/mycred-module-hooks.php:1455
5119
  msgid "Trashed / Unapproved Comments"
5120
  msgstr ""
5121
 
5122
+ #: ../modules/mycred-module-hooks.php:1475
5123
  msgid "Limit per post"
5124
  msgstr ""
5125
 
5126
+ #: ../modules/mycred-module-hooks.php:1477
5127
  msgid ""
5128
  "The number of comments per post that grants %_plural% to the comment author. "
5129
  "Use zero for unlimited."
5130
  msgstr ""
5131
 
5132
+ #: ../modules/mycred-module-hooks.php:1481
5133
  msgid "Limit per day"
5134
  msgstr ""
5135
 
5136
+ #: ../modules/mycred-module-hooks.php:1483
5137
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5138
  msgstr ""
5139
 
5140
+ #: ../modules/mycred-module-hooks.php:1488
5141
  msgid ""
5142
  "%plural% is to be awarded even when comment authors reply to their own "
5143
  "comment."
5144
  msgstr ""
5145
 
5146
+ #: ../modules/mycred-module-hooks.php:1559
5147
  msgid "Once for each unique URL"
5148
  msgstr ""
5149
 
5150
+ #: ../modules/mycred-module-hooks.php:1560
5151
  msgid "Once for each unique link id"
5152
  msgstr ""
5153
 
5154
+ #: ../modules/mycred-module-hooks.php:1753
5155
  msgid ""
5156
  "The default amount to award for clicking on links. You can override this in "
5157
  "the shortcode."
5158
  msgstr ""
5159
 
5160
+ #: ../modules/mycred-module-hooks.php:1760
5161
  #, php-format
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
 
5169
+ #: ../modules/mycred-module-hooks.php:1771
5170
  msgid ""
5171
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5172
  "generate one automatically based on the value set under href. If you are "
5174
  "by ID."
5175
  msgstr ""
5176
 
5177
+ #: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2131
5178
  msgid "Available Shortcode"
5179
  msgstr ""
5180
 
5181
+ #: ../modules/mycred-module-hooks.php:2095
5182
  msgid "Amount to award for viewing videos."
5183
  msgstr ""
5184
 
5185
+ #: ../modules/mycred-module-hooks.php:2105
5186
  msgid "Award Logic"
5187
  msgstr ""
5188
 
5189
+ #: ../modules/mycred-module-hooks.php:2107
5190
  #, php-format
5191
  msgid "Select when %_plural% should be awarded or deducted."
5192
  msgstr ""
5193
 
5194
+ #: ../modules/mycred-module-hooks.php:2108
5195
  msgid "Play - As soon as video starts playing."
5196
  msgstr ""
5197
 
5198
+ #: ../modules/mycred-module-hooks.php:2109
5199
  msgid "Full - First when the entire video has played."
5200
  msgstr ""
5201
 
5202
+ #: ../modules/mycred-module-hooks.php:2110
5203
  msgid "Interval - For each x number of seconds watched."
5204
  msgstr ""
5205
 
5206
+ #: ../modules/mycred-module-hooks.php:2115
5207
  msgid "Number of seconds"
5208
  msgstr ""
5209
 
5210
+ #: ../modules/mycred-module-hooks.php:2122
5211
  msgid "Leniency"
5212
  msgstr ""
5213
 
5214
+ #: ../modules/mycred-module-hooks.php:2124
5215
  msgid ""
5216
  "The maximum percentage a users view of a movie can differ from the actual "
5217
  "length."
5218
  msgstr ""
5219
 
5220
+ #: ../modules/mycred-module-hooks.php:2127
5221
  msgid ""
5222
  "Do not set this value to zero! A lot of thing can happen while a user "
5223
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5224
  "buffering or play back errors."
5225
  msgstr ""
5226
 
5227
+ #: ../modules/mycred-module-hooks.php:2195
5228
  msgid "Affiliate Program"
5229
  msgstr ""
5230
 
5231
+ #: ../modules/mycred-module-hooks.php:2204
5232
  msgid "Per Day"
5233
  msgstr ""
5234
 
5235
+ #: ../modules/mycred-module-hooks.php:2316
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
 
5327
+ #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
5328
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5329
  msgid "Access denied for this action"
5330
  msgstr ""
5331
 
5332
+ #: ../modules/mycred-module-log.php:196
5333
  msgid "Row Deleted"
5334
  msgstr ""
5335
 
5336
+ #: ../modules/mycred-module-log.php:223
5337
  msgid "Log entry not found"
5338
  msgstr ""
5339
 
5340
+ #: ../modules/mycred-module-log.php:236
5341
  msgid "Entry Updated"
5342
  msgstr ""
5343
 
5344
+ #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:436
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
 
5353
+ #: ../modules/mycred-module-log.php:311
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 ""
5618
  msgid "Forum authors can receive %_plural% for creating new topics."
5619
  msgstr ""
5620
 
5621
+ #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-simplepress.php:
5622
+ #: 336
5623
  #, php-format
5624
  msgid "%plural% for Topic Deletion"
5625
  msgstr ""
5655
  msgid "Show users %_plural% balance in replies"
5656
  msgstr ""
5657
 
5658
+ #: ../plugins/mycred-hook-bbPress.php:568
5659
+ #, php-format
5660
+ msgid "%plural% for Reply Deletion"
5661
+ msgstr ""
5662
+
5663
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5664
  msgid "BuddyPress: Gallery Actions"
5665
  msgstr ""
6036
  msgid "%plural% for Topic Post Deletion"
6037
  msgstr ""
6038
 
6039
+ #: ../plugins/mycred-hook-woocommerce.php:67
6040
  msgid "Reward with %plural%"
6041
  msgstr ""
6042
 
6043
+ #: ../plugins/mycred-hook-woocommerce.php:197
 
 
 
 
6044
  msgid "WooCommerce Product Reviews"
6045
  msgstr ""
6046
 
6047
+ #: ../plugins/mycred-hook-woocommerce.php:198
6048
  #, php-format
6049
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6050
  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 ""
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: Sat Jul 26 2014 20:53:53 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,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"
@@ -102,7 +102,7 @@ msgid "Log entry updated"
102
  msgstr "Entrada de registro actualizado"
103
 
104
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
105
- #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
106
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
107
  msgid "Setup"
108
  msgstr "Configurar"
@@ -130,7 +130,7 @@ msgid "This Hook has no settings"
130
  msgstr "Este gancho no ha sido configurado"
131
 
132
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
133
- #: 1305
134
  msgid "No limit"
135
  msgstr "Sin Limite"
136
 
@@ -156,7 +156,7 @@ msgstr "Una vez al dia (reinicializado al medianoche)"
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
157
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
158
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
159
- #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
160
  msgid "Select"
161
  msgstr "Seleccionar"
162
 
@@ -421,8 +421,8 @@ msgstr ""
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:164 ..
425
- #: modules/mycred-module-log.php:324 ../modules/mycred-module-log.php:577 ..
426
  #: modules/mycred-module-settings.php:312
427
  msgid "Access Denied"
428
  msgstr "Acceso Denegado"
@@ -448,12 +448,12 @@ 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:189
452
  msgid "Enable"
453
  msgstr "Activar"
454
 
455
  #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
456
- #: php:204
457
  msgid "Update Changes"
458
  msgstr "Actualizar Cambios"
459
 
@@ -530,13 +530,13 @@ msgstr "El minimo saldo necesario para aplicar una tasa de interés."
530
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
531
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
532
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
533
- #: modules/mycred-module-hooks.php:633 ../modules/mycred-module-hooks.php:1503 ..
534
- #: modules/mycred-module-hooks.php:1845 ../plugins/mycred-hook-badgeOS.php:115 ..
535
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
536
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
537
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
538
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
539
- #: php:300 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
540
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
541
  msgid "Log Template"
542
  msgstr "Plantilla de Registro"
@@ -574,8 +574,8 @@ msgstr "Pagar a los Usuarios"
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:769 ..
578
- #: includes/mycred-shortcodes.php:907
579
  msgid "Amount"
580
  msgstr "Cantidad"
581
 
@@ -585,7 +585,7 @@ 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:1860
589
  msgid "Interval"
590
  msgstr "Interval"
591
 
@@ -807,7 +807,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:2495
811
  msgid "Available Shortcodes"
812
  msgstr "Códigos cortos Disponibles"
813
 
@@ -968,7 +968,7 @@ 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:370 ../modules/mycred-
972
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
973
  msgid "Actions"
974
  msgstr "Acciones"
@@ -1418,7 +1418,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:2460
1422
  msgid "Title"
1423
  msgstr "Titulo"
1424
 
@@ -1611,8 +1611,8 @@ msgid "Usage"
1611
  msgstr "Utilización"
1612
 
1613
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1614
- #: transfer.php:243 ../modules/mycred-module-hooks.php:1219 ../modules/mycred-
1615
- #: module-hooks.php:1510
1616
  msgid "Limits"
1617
  msgstr "imites"
1618
 
@@ -1625,7 +1625,7 @@ msgid "not yet used"
1625
  msgstr "todavia no utilizado"
1626
 
1627
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1628
- #: php:1950
1629
  msgid "Total"
1630
  msgstr "Total"
1631
 
@@ -1803,7 +1803,7 @@ msgid "Apply Coupon"
1803
  msgstr "Aplica el Cupón"
1804
 
1805
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1806
- #: notices/myCRED-addon-email-notices.php:1104
1807
  msgid "Email Notice"
1808
  msgstr "Aviso por Correo Electrónico"
1809
 
@@ -1998,17 +1998,17 @@ msgstr ""
1998
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
1999
 
2000
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
2001
- #: notices/myCRED-addon-email-notices.php:771
2002
  msgid "Email Settings"
2003
  msgstr "Configuracion de Correo Electrónico"
2004
 
2005
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
2006
- #: notices/myCRED-addon-email-notices.php:894
2007
  msgid "Senders Name:"
2008
  msgstr "Nombre del Remitente"
2009
 
2010
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
2011
- #: notices/myCRED-addon-email-notices.php:896
2012
  msgid "Senders Email:"
2013
  msgstr "Correo Electrónico del Remitente:"
2014
 
@@ -2032,140 +2032,140 @@ msgstr "Estilo de Correo Electrónico Predefinido"
2032
  msgid "Ignored if HTML is not allowed in emails."
2033
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
2034
 
2035
- #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
2036
- #: notices/myCRED-addon-email-notices.php:820
2037
  msgid "Email Subject"
2038
  msgstr "Asunto del Correo Electrónico"
2039
 
2040
- #: ../addons/email-notices/myCRED-addon-email-notices.php:706
2041
  msgid "Status"
2042
  msgstr "Estatus"
2043
 
2044
- #: ../addons/email-notices/myCRED-addon-email-notices.php:726
2045
  msgid "Not Active"
2046
  msgstr "No esta Activo"
2047
 
2048
- #: ../addons/email-notices/myCRED-addon-email-notices.php:728
2049
  #, php-format
2050
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2051
  msgstr "Programada:<br /><strong>%1$s</strong>"
2052
 
2053
- #: ../addons/email-notices/myCRED-addon-email-notices.php:732
2054
  msgid "Active"
2055
  msgstr "Activo"
2056
 
2057
- #: ../addons/email-notices/myCRED-addon-email-notices.php:734
2058
  #, php-format
2059
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2060
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
2061
 
2062
- #: ../addons/email-notices/myCRED-addon-email-notices.php:744
2063
  msgid "Email is sent when"
2064
  msgstr "el Correo Electrónico se envia cuando"
2065
 
2066
- #: ../addons/email-notices/myCRED-addon-email-notices.php:746
2067
  msgid "Missing instance for this notice!"
2068
  msgstr "¡Falta una instancia para este aviso!"
2069
 
2070
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
2071
- #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
2072
- #: addon-email-notices.php:759
2073
  msgid "Sent To"
2074
  msgstr "Enviado A:"
2075
 
2076
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
2077
- #: notices/myCRED-addon-email-notices.php:884 ../includes/mycred-admin.php:764 ..
2078
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:542
2079
  msgid "User"
2080
  msgstr "Usuario"
2081
 
2082
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
2083
- #: notices/myCRED-addon-email-notices.php:885
2084
  msgid "Administrator"
2085
  msgstr "Administrador"
2086
 
2087
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
2088
  msgid "Both Administrator and User"
2089
  msgstr "Tanto Administrador como Usuario"
2090
 
2091
- #: ../addons/email-notices/myCRED-addon-email-notices.php:780
2092
  msgid "Available Template Tags"
2093
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
2094
 
2095
- #: ../addons/email-notices/myCRED-addon-email-notices.php:791
2096
  msgid "Email Header"
2097
  msgstr "Encabezado del Correo Electrónico"
2098
 
2099
- #: ../addons/email-notices/myCRED-addon-email-notices.php:851
2100
  msgid "Send this email notice when..."
2101
  msgstr "Envia este aviso por correo electrónico cuando..."
2102
 
2103
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
2104
  msgid "Recipient:"
2105
  msgstr "Destinatario:"
2106
 
2107
- #: ../addons/email-notices/myCRED-addon-email-notices.php:886
2108
  msgid "Both"
2109
  msgstr "Ambos"
2110
 
2111
- #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
2112
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2113
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2114
  #: module-settings.php:526
2115
  msgid "Label"
2116
  msgstr "Etiqueta"
2117
 
2118
- #: ../addons/email-notices/myCRED-addon-email-notices.php:898
2119
  msgid "Reply-To Email:"
2120
  msgstr "Responder-A Correo Electrónico:"
2121
 
2122
- #: ../addons/email-notices/myCRED-addon-email-notices.php:904
2123
  msgid "Save"
2124
  msgstr "Guardar"
2125
 
2126
- #: ../addons/email-notices/myCRED-addon-email-notices.php:916
2127
  msgid "CSS Styling"
2128
  msgstr "Estilo CSS"
2129
 
2130
- #: ../addons/email-notices/myCRED-addon-email-notices.php:932
2131
  msgid "Site Related"
2132
  msgstr "Relacionado al Sitio"
2133
 
2134
- #: ../addons/email-notices/myCRED-addon-email-notices.php:933
2135
  msgid "Your websites title"
2136
  msgstr "Titulo de tu pagina web"
2137
 
2138
- #: ../addons/email-notices/myCRED-addon-email-notices.php:934
2139
  msgid "Your websites address"
2140
  msgstr "Dirección de tu pagina web"
2141
 
2142
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
2143
  msgid "Your websites tagline (description)"
2144
  msgstr "La descripción de tu sitio web (lema o eslogan)"
2145
 
2146
- #: ../addons/email-notices/myCRED-addon-email-notices.php:936
2147
  msgid "Your websites admin email"
2148
  msgstr "El correo electrónico de admin para tu pagina web"
2149
 
2150
- #: ../addons/email-notices/myCRED-addon-email-notices.php:937
2151
  msgid "Total number of blog members"
2152
  msgstr "Número total de miembros del blog"
2153
 
2154
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
2155
- #: notices/myCRED-addon-email-notices.php:1018 ../addons/email-notices/myCRED-
2156
- #: addon-email-notices.php:1024
2157
  msgid "Email Notice Updated."
2158
  msgstr ""
2159
 
2160
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2161
  msgid "Email Notice Activated"
2162
  msgstr "Notificación atraves de Correo Electrónico Activado"
2163
 
2164
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2165
  msgid "Email Notice Saved"
2166
  msgstr "Aviso por Correo Electrónico Guardado"
2167
 
2168
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1040
2169
  msgid ""
2170
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2171
  "are not yet ready to use this email notice!"
@@ -2173,35 +2173,35 @@ msgstr ""
2173
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
2174
  "si aun no estás listo para utilizar este aviso por email!"
2175
 
2176
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1042
2177
  #, php-format
2178
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2179
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
2180
 
2181
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1044
2182
  msgid "This email notice is active."
2183
  msgstr "Esta notificación de correo electrónico esta activada."
2184
 
2185
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2186
  msgid "Settings saved."
2187
  msgstr ""
2188
 
2189
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2190
  msgid "Unsubscribe"
2191
  msgstr ""
2192
 
2193
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1124
2194
  msgid "There are no email notifications yet."
2195
  msgstr ""
2196
 
2197
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1130
2198
  msgid "Save Changes"
2199
  msgstr ""
2200
 
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:765
2205
  msgid "Current Balance"
2206
  msgstr "Saldo Actual"
2207
 
@@ -2324,7 +2324,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:912
2328
  msgid "Exchange Rate"
2329
  msgstr "Tipo de Cambio"
2330
 
@@ -2674,7 +2674,7 @@ 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:770
2678
  msgid "Log Entry"
2679
  msgstr "Entrada de Registro"
2680
 
@@ -2761,7 +2761,7 @@ msgid "Reject"
2761
  msgstr "Rechazar"
2762
 
2763
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2764
- #: modules/mycred-module-log.php:502 ../modules/mycred-module-settings.php:488 ..
2765
  #: modules/mycred-module-settings.php:507
2766
  msgid "Delete"
2767
  msgstr "Borrar"
@@ -3210,11 +3210,11 @@ msgstr "Quitar todos los Rangos"
3210
  msgid "Assign Ranks to Users"
3211
  msgstr "Asignar Rango a los Usuarios"
3212
 
3213
- #: ../addons/ranks/includes/mycred-rank-functions.php:197
3214
  msgid "mycred_get_users_rank() : Missing required user id"
3215
  msgstr "mycred_get_users_rank() : Falta el requisito id del usuario"
3216
 
3217
- #: ../addons/ranks/includes/mycred-rank-functions.php:207
3218
  msgid "no rank"
3219
  msgstr "ningun rango"
3220
 
@@ -3400,7 +3400,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:2277
3404
  msgid "Transfer"
3405
  msgstr "Transferir"
3406
 
@@ -3439,7 +3439,7 @@ msgstr ""
3439
  "transferencias hasta que se haga esto."
3440
 
3441
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3442
- #: php:1009
3443
  msgid "Insufficient Funds. Please try a lower amount."
3444
  msgstr ""
3445
 
@@ -3608,25 +3608,25 @@ msgstr "Mostrar el saldo de usuarios"
3608
  msgid "Show users limit"
3609
  msgstr "Mostrar los límites de usuarios"
3610
 
3611
- #: ../addons/transfer/myCRED-addon-transfer.php:798
3612
  msgid "username"
3613
  msgstr "nombre de usuario"
3614
 
3615
- #: ../addons/transfer/myCRED-addon-transfer.php:800
3616
  msgid "email"
3617
  msgstr "correo electrónico"
3618
 
3619
  #. is this recipients plural or recipient's with an apostrophe missing?
3620
- #: ../addons/transfer/myCRED-addon-transfer.php:802
3621
  #, php-format
3622
  msgid "recipients %s"
3623
  msgstr "destinatarios %s"
3624
 
3625
- #: ../addons/transfer/myCRED-addon-transfer.php:875
3626
  msgid "To:"
3627
  msgstr "A:"
3628
 
3629
- #: ../addons/transfer/myCRED-addon-transfer.php:881
3630
  msgid "Amount:"
3631
  msgstr "Cantidad:"
3632
 
@@ -3678,8 +3678,8 @@ msgstr "Excluido"
3678
  msgid "Total: %s"
3679
  msgstr ""
3680
 
3681
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:252 ..
3682
- #: modules/mycred-module-log.php:253
3683
  msgid "History"
3684
  msgstr "Historial"
3685
 
@@ -3751,15 +3751,15 @@ msgstr ""
3751
  msgid "%singular% balance"
3752
  msgstr "%singular% saldo"
3753
 
3754
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:771
3755
  msgid "Update Balance"
3756
  msgstr "Actualizar Saldo"
3757
 
3758
- #: ../includes/mycred-admin.php:763
3759
  msgid "ID"
3760
  msgstr "ID"
3761
 
3762
- #: ../includes/mycred-admin.php:769
3763
  msgid "A positive or negative value"
3764
  msgstr "Un valor positivo o negativo"
3765
 
@@ -3811,290 +3811,298 @@ msgstr "y"
3811
  msgid "Available Template Tags:"
3812
  msgstr "Etiquetas de Plantilla Disponibles:"
3813
 
3814
- #: ../includes/mycred-functions.php:1643
3815
  msgid "Entire Log"
3816
  msgstr "Todo el Registro"
3817
 
3818
- #: ../includes/mycred-functions.php:1648 ../includes/mycred-functions.php:1649
3819
  msgid "Displayed Rows"
3820
  msgstr "Filas Mostradas"
3821
 
3822
- #: ../includes/mycred-functions.php:1653
3823
  msgid "Search Results"
3824
  msgstr "Resultados de la Búsqueda"
3825
 
3826
- #: ../includes/mycred-functions.php:1654
3827
  msgid "My Entire Log"
3828
  msgstr "Mi Registro Entero"
3829
 
3830
- #: ../includes/mycred-functions.php:1774
3831
  msgid "ref empty"
3832
  msgstr "ref vacío"
3833
 
3834
- #: ../includes/mycred-functions.php:1782
3835
  msgid "incorrect user id format"
3836
  msgstr "Formato incorrecto para id del usuario"
3837
 
3838
- #: ../includes/mycred-functions.php:1795
3839
  msgid "incorrect unix timestamp (from):"
3840
  msgstr "erroneo marca de tiempo de unix (desde):"
3841
 
3842
- #: ../includes/mycred-functions.php:1804
3843
  msgid "incorrect unix timestamp (to):"
3844
  msgstr "erroneo marca de tiempo de unix (a):"
3845
 
3846
- #: ../includes/mycred-functions.php:2166
3847
  msgid "Website Registration"
3848
  msgstr ""
3849
 
3850
- #: ../includes/mycred-functions.php:2167
3851
  msgid "Website Visit"
3852
  msgstr ""
3853
 
3854
- #: ../includes/mycred-functions.php:2168
 
 
 
 
 
 
 
 
3855
  msgid "Logging in"
3856
  msgstr ""
3857
 
3858
- #: ../includes/mycred-functions.php:2169
3859
  msgid "Publishing Content"
3860
  msgstr ""
3861
 
3862
- #: ../includes/mycred-functions.php:2170 ../modules/mycred-module-hooks.php:1168
3863
  msgid "Approved Comment"
3864
  msgstr "Comentario Aprobado"
3865
 
3866
- #: ../includes/mycred-functions.php:2171
3867
  msgid "Unapproved Comment"
3868
  msgstr ""
3869
 
3870
- #: ../includes/mycred-functions.php:2172
3871
  msgid "SPAM Comment"
3872
  msgstr ""
3873
 
3874
- #: ../includes/mycred-functions.php:2173
3875
  msgid "Deleted Comment"
3876
  msgstr ""
3877
 
3878
- #: ../includes/mycred-functions.php:2174
3879
  msgid "Link Click"
3880
  msgstr ""
3881
 
3882
- #: ../includes/mycred-functions.php:2175
3883
  msgid "Watching Video"
3884
  msgstr ""
3885
 
3886
- #: ../includes/mycred-functions.php:2176
3887
  msgid "Visitor Referral"
3888
  msgstr ""
3889
 
3890
- #: ../includes/mycred-functions.php:2177
3891
  msgid "Signup Referral"
3892
  msgstr ""
3893
 
3894
- #: ../includes/mycred-functions.php:2181
3895
  msgid "New Profile Update"
3896
  msgstr ""
3897
 
3898
- #: ../includes/mycred-functions.php:2182
3899
  msgid "Avatar Upload"
3900
  msgstr ""
3901
 
3902
- #: ../includes/mycred-functions.php:2183
3903
  msgid "New Friendship"
3904
  msgstr ""
3905
 
3906
- #: ../includes/mycred-functions.php:2184
3907
  msgid "Ended Friendship"
3908
  msgstr ""
3909
 
3910
- #: ../includes/mycred-functions.php:2185
3911
  msgid "New Profile Comment"
3912
  msgstr ""
3913
 
3914
- #: ../includes/mycred-functions.php:2186
3915
  msgid "Profile Comment Deletion"
3916
  msgstr ""
3917
 
3918
- #: ../includes/mycred-functions.php:2187
3919
  msgid "New Message"
3920
  msgstr ""
3921
 
3922
- #: ../includes/mycred-functions.php:2188
3923
  msgid "Sending Gift"
3924
  msgstr ""
3925
 
3926
- #: ../includes/mycred-functions.php:2189
3927
  msgid "New Group"
3928
  msgstr ""
3929
 
3930
- #: ../includes/mycred-functions.php:2190
3931
  msgid "Deleted Group"
3932
  msgstr ""
3933
 
3934
- #: ../includes/mycred-functions.php:2191
3935
  msgid "New Group Forum Topic"
3936
  msgstr ""
3937
 
3938
- #: ../includes/mycred-functions.php:2192
3939
  msgid "Edit Group Forum Topic"
3940
  msgstr ""
3941
 
3942
- #: ../includes/mycred-functions.php:2193
3943
  msgid "New Group Forum Post"
3944
  msgstr ""
3945
 
3946
- #: ../includes/mycred-functions.php:2194
3947
  msgid "Edit Group Forum Post"
3948
  msgstr ""
3949
 
3950
- #: ../includes/mycred-functions.php:2195
3951
  msgid "Joining Group"
3952
  msgstr ""
3953
 
3954
- #: ../includes/mycred-functions.php:2196
3955
  msgid "Leaving Group"
3956
  msgstr ""
3957
 
3958
- #: ../includes/mycred-functions.php:2197
3959
  msgid "New Group Avatar"
3960
  msgstr ""
3961
 
3962
- #: ../includes/mycred-functions.php:2198
3963
  msgid "New Group Comment"
3964
  msgstr ""
3965
 
3966
- #: ../includes/mycred-functions.php:2202 ../plugins/mycred-hook-buddypress-media.
3967
  #: php:166
3968
  msgid "Photo Upload"
3969
  msgstr "Subir Foto"
3970
 
3971
- #: ../includes/mycred-functions.php:2203 ../plugins/mycred-hook-buddypress-media.
3972
  #: php:176
3973
  msgid "Video Upload"
3974
  msgstr "Subir Video"
3975
 
3976
- #: ../includes/mycred-functions.php:2204 ../plugins/mycred-hook-buddypress-media.
3977
  #: php:186
3978
  msgid "Music Upload"
3979
  msgstr "Subir Música"
3980
 
3981
- #: ../includes/mycred-functions.php:2208
3982
  msgid "New Link"
3983
  msgstr ""
3984
 
3985
- #: ../includes/mycred-functions.php:2209
3986
  msgid "Link Voting"
3987
  msgstr ""
3988
 
3989
- #: ../includes/mycred-functions.php:2210
3990
  msgid "Link Update"
3991
  msgstr ""
3992
 
3993
- #: ../includes/mycred-functions.php:2214
3994
  msgid "New Forum (bbPress)"
3995
  msgstr ""
3996
 
3997
- #: ../includes/mycred-functions.php:2215
3998
  msgid "New Forum Topic (bbPress)"
3999
  msgstr ""
4000
 
4001
- #: ../includes/mycred-functions.php:2216
4002
  msgid "Favorited Topic (bbPress)"
4003
  msgstr ""
4004
 
4005
- #: ../includes/mycred-functions.php:2217
4006
  msgid "New Topic Reply (bbPress)"
4007
  msgstr ""
4008
 
4009
- #: ../includes/mycred-functions.php:2221
4010
  msgid "Form Submission (Contact Form 7)"
4011
  msgstr ""
4012
 
4013
- #: ../includes/mycred-functions.php:2224
4014
  msgid "Form Submission (Gravity Form)"
4015
  msgstr ""
4016
 
4017
- #: ../includes/mycred-functions.php:2227
4018
  msgid "New Forum Topic (SimplePress)"
4019
  msgstr ""
4020
 
4021
- #: ../includes/mycred-functions.php:2228
4022
  msgid "New Forum Post (SimplePress)"
4023
  msgstr ""
4024
 
4025
- #: ../includes/mycred-functions.php:2232
4026
  msgid "Poll Voting"
4027
  msgstr ""
4028
 
4029
- #: ../includes/mycred-functions.php:2235
4030
  msgid "Sending an Invite"
4031
  msgstr ""
4032
 
4033
- #: ../includes/mycred-functions.php:2236
4034
  msgid "Accepting an Invite"
4035
  msgstr ""
4036
 
4037
- #: ../includes/mycred-functions.php:2242
4038
  msgid "Banking Payout"
4039
  msgstr ""
4040
 
4041
- #: ../includes/mycred-functions.php:2245
4042
  msgid "buyCRED Purchase (PayPal Standard)"
4043
  msgstr ""
4044
 
4045
- #: ../includes/mycred-functions.php:2246
4046
  msgid "buyCRED Purchase (Skrill)"
4047
  msgstr ""
4048
 
4049
- #: ../includes/mycred-functions.php:2247
4050
  msgid "buyCRED Purchase (Zombaio)"
4051
  msgstr ""
4052
 
4053
- #: ../includes/mycred-functions.php:2248
4054
  msgid "buyCRED Purchase (NETBilling)"
4055
  msgstr ""
4056
 
4057
- #: ../includes/mycred-functions.php:2249
4058
  msgid "buyCRED Purchase (BitPay)"
4059
  msgstr ""
4060
 
4061
- #: ../includes/mycred-functions.php:2254
4062
  msgid "Coupon Purchase"
4063
  msgstr ""
4064
 
4065
- #: ../includes/mycred-functions.php:2257
4066
  msgid "Store Purchase (WooCommerce)"
4067
  msgstr ""
4068
 
4069
- #: ../includes/mycred-functions.php:2258
4070
  msgid "Store Purchase (MarketPress)"
4071
  msgstr ""
4072
 
4073
- #: ../includes/mycred-functions.php:2259
4074
  msgid "Store Purchase (WP E-Commerce)"
4075
  msgstr ""
4076
 
4077
- #: ../includes/mycred-functions.php:2264
4078
  msgid "Event Payment (Event Espresso)"
4079
  msgstr ""
4080
 
4081
- #: ../includes/mycred-functions.php:2265
4082
  msgid "Event Sale (Event Espresso)"
4083
  msgstr ""
4084
 
4085
- #: ../includes/mycred-functions.php:2269
4086
  msgid "Event Payment (Events Manager)"
4087
  msgstr ""
4088
 
4089
- #: ../includes/mycred-functions.php:2270
4090
  msgid "Event Sale (Events Manager)"
4091
  msgstr ""
4092
 
4093
- #: ../includes/mycred-functions.php:2274
4094
  msgid "Content Purchase / Sale"
4095
  msgstr ""
4096
 
4097
- #: ../includes/mycred-functions.php:2281
4098
  msgid "Manual Adjustment by Admin"
4099
  msgstr ""
4100
 
@@ -4378,7 +4386,7 @@ msgstr "No hay opciones para exportar."
4378
  msgid "Entry"
4379
  msgstr "Entrada"
4380
 
4381
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:464
4382
  msgid "User Missing"
4383
  msgstr "Usuario Ausente"
4384
 
@@ -4608,60 +4616,60 @@ msgstr "Error - Inténtelo de nuevo."
4608
  msgid "A video ID is required for this shortcode"
4609
  msgstr "Este código corto (shortcode) precisa un ID del video."
4610
 
4611
- #: ../includes/mycred-shortcodes.php:861 ../includes/mycred-shortcodes.php:955
4612
  msgid "Point types not found."
4613
  msgstr ""
4614
 
4615
- #: ../includes/mycred-shortcodes.php:867 ../includes/mycred-shortcodes.php:875 ..
4616
- #: includes/mycred-shortcodes.php:967 ../includes/mycred-shortcodes.php:987
4617
  #, php-format
4618
  msgid "You are excluded from using %s."
4619
  msgstr ""
4620
 
4621
- #: ../includes/mycred-shortcodes.php:871 ../includes/mycred-shortcodes.php:977
4622
  msgid "Your balance is too low to use this feature."
4623
  msgstr ""
4624
 
4625
- #: ../includes/mycred-shortcodes.php:892
4626
  #, php-format
4627
  msgid "Convert <span>%s</span> to <span>%s</span>"
4628
  msgstr ""
4629
 
4630
- #: ../includes/mycred-shortcodes.php:901
4631
  #, php-format
4632
  msgid "Your current %s balance"
4633
  msgstr ""
4634
 
4635
- #: ../includes/mycred-shortcodes.php:909
4636
  #, php-format
4637
  msgid "Minimum %s"
4638
  msgstr ""
4639
 
4640
- #: ../includes/mycred-shortcodes.php:913
4641
  #, php-format
4642
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4643
  msgstr ""
4644
 
4645
- #: ../includes/mycred-shortcodes.php:919
4646
  msgid "Exchange"
4647
  msgstr ""
4648
 
4649
- #: ../includes/mycred-shortcodes.php:1000
4650
  #, php-format
4651
  msgid "You must exchange at least %s!"
4652
  msgstr ""
4653
 
4654
- #: ../includes/mycred-shortcodes.php:1022
4655
  #, php-format
4656
  msgid "Exchange from %s"
4657
  msgstr ""
4658
 
4659
- #: ../includes/mycred-shortcodes.php:1034
4660
  #, php-format
4661
  msgid "Exchange to %s"
4662
  msgstr ""
4663
 
4664
- #: ../includes/mycred-shortcodes.php:1042
4665
  #, php-format
4666
  msgid "You have successfully exchanged %s into %s."
4667
  msgstr ""
@@ -5200,10 +5208,21 @@ msgstr ""
5200
 
5201
  #: ../modules/mycred-module-hooks.php:101
5202
  #, php-format
 
 
 
 
 
 
 
 
 
 
 
5203
  msgid "%plural% for logins"
5204
  msgstr "%plural% para ingresos"
5205
 
5206
- #: ../modules/mycred-module-hooks.php:102
5207
  #, php-format
5208
  msgid ""
5209
  "Award %_plural% for logging in to your website. You can also set an optional "
@@ -5212,39 +5231,39 @@ msgstr ""
5212
  "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
5213
  "ajustar un limíte opcional."
5214
 
5215
- #: ../modules/mycred-module-hooks.php:108
5216
  #, php-format
5217
  msgid "%plural% for publishing content"
5218
  msgstr "%plural% por publicar contenido"
5219
 
5220
- #: ../modules/mycred-module-hooks.php:109
5221
  #, php-format
5222
  msgid ""
5223
  "Award %_plural% for publishing content on your website. If your custom post "
5224
  "type is not shown bellow, make sure it is set to \"Public\"."
5225
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
5226
 
5227
- #: ../modules/mycred-module-hooks.php:115
5228
  #, php-format
5229
  msgid "%plural% for comments"
5230
  msgstr "%plural% por comentarios"
5231
 
5232
- #: ../modules/mycred-module-hooks.php:115
5233
  #, php-format
5234
  msgid "%plural% for Disqus comments"
5235
  msgstr "%plural% por comentarios Disqus"
5236
 
5237
- #: ../modules/mycred-module-hooks.php:116
5238
  #, php-format
5239
  msgid "Award %_plural% for making comments."
5240
  msgstr "Concede %_plural% por hacer comentarios."
5241
 
5242
- #: ../modules/mycred-module-hooks.php:122
5243
  #, php-format
5244
  msgid "%plural% for clicking on links"
5245
  msgstr "%plural% por hacer clic sobre enlaces"
5246
 
5247
- #: ../modules/mycred-module-hooks.php:123
5248
  msgid ""
5249
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5250
  "shortcode."
@@ -5252,12 +5271,12 @@ msgstr ""
5252
  "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
5253
  "por el [mycred_link] código corto (shortcode)."
5254
 
5255
- #: ../modules/mycred-module-hooks.php:129
5256
  #, php-format
5257
  msgid "%plural% for viewing Videos"
5258
  msgstr "%plural% por ver videos"
5259
 
5260
- #: ../modules/mycred-module-hooks.php:130
5261
  msgid ""
5262
  "Award %_plural% to users who watches videos embedded using the "
5263
  "[mycred_video] shortcode."
@@ -5265,23 +5284,23 @@ msgstr ""
5265
  "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
5266
  "el [mycred_link] código corto (shortcode)."
5267
 
5268
- #: ../modules/mycred-module-hooks.php:136
5269
  #, php-format
5270
  msgid "%plural% for referrals"
5271
  msgstr "%plural% por referencias (o recomendaciones)"
5272
 
5273
- #: ../modules/mycred-module-hooks.php:137
5274
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5275
  msgstr ""
5276
  "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
5277
  "miembros inscritos."
5278
 
5279
- #: ../modules/mycred-module-hooks.php:170
5280
  #, php-format
5281
  msgid "%s Hooks"
5282
  msgstr "Ganchos de %s"
5283
 
5284
- #: ../modules/mycred-module-hooks.php:173
5285
  msgid ""
5286
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5287
  "depending on their actions around your website."
@@ -5289,66 +5308,96 @@ msgstr ""
5289
  "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
5290
  "usuario, dependiendo de sus acciones en tu sitio web."
5291
 
5292
- #: ../modules/mycred-module-hooks.php:345 ../modules/mycred-module-hooks.php:439 .
5293
- #: ./modules/mycred-module-hooks.php:751 ../modules/mycred-module-hooks.php:764 ..
5294
- #: modules/mycred-module-hooks.php:800 ../modules/mycred-module-hooks.php:1180 ..
5295
- #: modules/mycred-module-hooks.php:1197 ../modules/mycred-module-hooks.php:1214 .
5296
- #: ./modules/mycred-module-hooks.php:2370 ../modules/mycred-module-hooks.php:2399
5297
- #: ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 .
5298
- #: ./plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ..
5299
- #: plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ..
5300
- #: plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ..
5301
- #: plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-
5302
- #: buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ..
5303
- #: plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-
5304
- #: buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ..
5305
- #: plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-
5306
- #: buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ..
5307
- #: plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-
5308
- #: buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ..
5309
- #: plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
5310
- #: buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-
5311
- #: hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ..
5312
- #: plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:
5313
- #: 446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-
5314
- #: buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-
5315
- #: hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ..
5316
- #: plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:
5317
- #: 978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-
5318
- #: buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ..
5319
- #: plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:
5320
- #: 1044 ../plugins/mycred-hook-contact-form7.php:141 ../plugins/mycred-hook-
5321
- #: gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.php:219 ..
5322
- #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-jetpack.php:
5323
- #: 506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-sharethis.
5324
- #: php:258 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-
5325
- #: simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ..
5326
- #: plugins/mycred-hook-simplepress.php:380
 
5327
  msgid "Log template"
5328
  msgstr "Plantilla de Registro"
5329
 
5330
- #: ../modules/mycred-module-hooks.php:640 ../modules/mycred-module-hooks.php:2378
5331
- #: ../modules/mycred-module-hooks.php:2407 ../plugins/mycred-hook-invite-anyone.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5332
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5333
  msgid "Limit"
5334
  msgstr "Límite"
5335
 
5336
- #: ../modules/mycred-module-hooks.php:745
5337
  #, php-format
5338
  msgid "%plural% for Posts"
5339
  msgstr "%plural% por Posts"
5340
 
5341
- #: ../modules/mycred-module-hooks.php:758
5342
  #, php-format
5343
  msgid "%plural% for Pages"
5344
  msgstr "%plural% por Paginas"
5345
 
5346
- #: ../modules/mycred-module-hooks.php:794
5347
  #, php-format
5348
  msgid "%plural% for %s"
5349
  msgstr "%plural% por %s"
5350
 
5351
- #: ../modules/mycred-module-hooks.php:1166
5352
  msgid ""
5353
  "%plural% are only awarded when your website has been synced with the Disqus "
5354
  "server!"
@@ -5356,30 +5405,25 @@ msgstr ""
5356
  "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
5357
  "sincronizado con el servidor de Disqus!"
5358
 
5359
- #: ../modules/mycred-module-hooks.php:1171 ../modules/mycred-module-hooks.php:
5360
- #: 1188 ../modules/mycred-module-hooks.php:1205
5361
  msgid "Comment Author"
5362
  msgstr "Autor del Comentario"
5363
 
5364
- #: ../modules/mycred-module-hooks.php:1175 ../modules/mycred-module-hooks.php:
5365
- #: 1192 ../modules/mycred-module-hooks.php:1209
5366
- msgid "Content Author"
5367
- msgstr "Autor del Contenido"
5368
-
5369
- #: ../modules/mycred-module-hooks.php:1185
5370
  msgid "Comment Marked SPAM"
5371
  msgstr "Comentario Marcado como SPAM"
5372
 
5373
- #: ../modules/mycred-module-hooks.php:1202
5374
  msgid "Trashed / Unapproved Comments"
5375
  msgstr "Comentarios Destrozados / No Aprobados"
5376
 
5377
- #: ../modules/mycred-module-hooks.php:1222
5378
  msgid "Limit per post"
5379
  msgstr "Límite por Entrada"
5380
 
5381
  #. what is the Spanish word for "post"? o anglicismo?
5382
- #: ../modules/mycred-module-hooks.php:1224
5383
  msgid ""
5384
  "The number of comments per post that grants %_plural% to the comment author. "
5385
  "Use zero for unlimited."
@@ -5387,17 +5431,17 @@ msgstr ""
5387
  "El numero de comentarios por cada post que concede %_plural% al autor del "
5388
  "comentario. Utilice cero para un número ilimitado"
5389
 
5390
- #: ../modules/mycred-module-hooks.php:1228
5391
  msgid "Limit per day"
5392
  msgstr "Límite por día"
5393
 
5394
- #: ../modules/mycred-module-hooks.php:1230
5395
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5396
  msgstr ""
5397
  "Número de comentarios diarios que conceden %_plural%. Utilice cero para un "
5398
  "número ilimitado."
5399
 
5400
- #: ../modules/mycred-module-hooks.php:1235
5401
  msgid ""
5402
  "%plural% is to be awarded even when comment authors reply to their own "
5403
  "comment."
@@ -5405,15 +5449,15 @@ msgstr ""
5405
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
5406
  "comentario."
5407
 
5408
- #: ../modules/mycred-module-hooks.php:1306
5409
  msgid "Once for each unique URL"
5410
  msgstr "Una sola vez para cada única URL"
5411
 
5412
- #: ../modules/mycred-module-hooks.php:1307
5413
  msgid "Once for each unique link id"
5414
  msgstr "Una vez para cada id del enlace único "
5415
 
5416
- #: ../modules/mycred-module-hooks.php:1500
5417
  msgid ""
5418
  "The default amount to award for clicking on links. You can override this in "
5419
  "the shortcode."
@@ -5421,16 +5465,16 @@ msgstr ""
5421
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
5422
  "anular esto con el 'shortcode' (código corto)."
5423
 
5424
- #: ../modules/mycred-module-hooks.php:1507
5425
  #, php-format
5426
  msgid "Custom tags: %url%, %title% or %id%."
5427
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
5428
 
5429
- #: ../modules/mycred-module-hooks.php:1518 ../modules/mycred-module-hooks.php:2481
5430
  msgid "Note!"
5431
  msgstr "¡Atención!"
5432
 
5433
- #: ../modules/mycred-module-hooks.php:1518
5434
  msgid ""
5435
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5436
  "generate one automatically based on the value set under href. If you are "
@@ -5442,44 +5486,44 @@ msgstr ""
5442
  "valor fijado en href. Si estas utilizando esta función para \"compartir\" "
5443
  "contenidos, se recomienda que limites por ID."
5444
 
5445
- #: ../modules/mycred-module-hooks.php:1520 ../modules/mycred-module-hooks.php:1878
5446
  msgid "Available Shortcode"
5447
  msgstr "Código corto Disponible"
5448
 
5449
- #: ../modules/mycred-module-hooks.php:1842
5450
  msgid "Amount to award for viewing videos."
5451
  msgstr "Cantidad a ceder para ver videos."
5452
 
5453
- #: ../modules/mycred-module-hooks.php:1852
5454
  msgid "Award Logic"
5455
  msgstr "Lógica de Concesión"
5456
 
5457
- #: ../modules/mycred-module-hooks.php:1854
5458
  #, php-format
5459
  msgid "Select when %_plural% should be awarded or deducted."
5460
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
5461
 
5462
- #: ../modules/mycred-module-hooks.php:1855
5463
  msgid "Play - As soon as video starts playing."
5464
  msgstr "Play - En cuanto el video empiece a reproducirse."
5465
 
5466
- #: ../modules/mycred-module-hooks.php:1856
5467
  msgid "Full - First when the entire video has played."
5468
  msgstr "Completo - Primero cuando el video entero se haya reproducido."
5469
 
5470
- #: ../modules/mycred-module-hooks.php:1857
5471
  msgid "Interval - For each x number of seconds watched."
5472
  msgstr "Intervalo - Para cada x numero de segundos vistos."
5473
 
5474
- #: ../modules/mycred-module-hooks.php:1862
5475
  msgid "Number of seconds"
5476
  msgstr "Numero de segundos"
5477
 
5478
- #: ../modules/mycred-module-hooks.php:1869
5479
  msgid "Leniency"
5480
  msgstr "Lenidad"
5481
 
5482
- #: ../modules/mycred-module-hooks.php:1871
5483
  msgid ""
5484
  "The maximum percentage a users view of a movie can differ from the actual "
5485
  "length."
@@ -5487,7 +5531,7 @@ msgstr ""
5487
  "El porcentaje máximo medido que un usuario vea puede variar con la duración "
5488
  "actual del video."
5489
 
5490
- #: ../modules/mycred-module-hooks.php:1874
5491
  msgid ""
5492
  "Do not set this value to zero! A lot of thing can happen while a user "
5493
  "watches a movie and sometimes a few seconds can drop of the counter due to "
@@ -5497,75 +5541,75 @@ msgstr ""
5497
  "usuario ve una película y a veces la contador puede disminuir por pocos "
5498
  "segundos por falta de buffering o por errores de reproducción."
5499
 
5500
- #: ../modules/mycred-module-hooks.php:1942
5501
  msgid "Affiliate Program"
5502
  msgstr "Programa de Afiliados"
5503
 
5504
- #: ../modules/mycred-module-hooks.php:1951
5505
  msgid "Per Day"
5506
  msgstr "Por Día"
5507
 
5508
- #: ../modules/mycred-module-hooks.php:2063
5509
  msgid "Link"
5510
  msgstr "Enlace"
5511
 
5512
- #: ../modules/mycred-module-hooks.php:2364
5513
  msgid "Referring Visitors"
5514
  msgstr "Referiendo Visitantes"
5515
 
5516
- #: ../modules/mycred-module-hooks.php:2388 ../modules/mycred-module-hooks.php:2417
5517
  msgid "The number of referrals each member can make. Use zero for unlimited."
5518
  msgstr ""
5519
  "El numero de referencias que cada miembro puede hacer. Utilice cero para "
5520
  "ilimitado."
5521
 
5522
- #: ../modules/mycred-module-hooks.php:2392 ../modules/mycred-module-hooks.php:2421
5523
  msgid "Referring Signups"
5524
  msgstr "Inscripciones a través de Referencias"
5525
 
5526
- #: ../modules/mycred-module-hooks.php:2396
5527
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5528
  msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
5529
 
5530
- #: ../modules/mycred-module-hooks.php:2423
5531
  msgid "Registrations are disabled."
5532
  msgstr "Se han deshabilitado inscripciones."
5533
 
5534
- #: ../modules/mycred-module-hooks.php:2430
5535
  msgid "Referral Links"
5536
  msgstr "Enlaces Referentes"
5537
 
5538
- #: ../modules/mycred-module-hooks.php:2434
5539
  msgid "Assign numeric referral IDs to each user."
5540
  msgstr "Asignar ID numerica referente a cada usuario."
5541
 
5542
- #: ../modules/mycred-module-hooks.php:2435 ../modules/mycred-module-hooks.php:2441
5543
  msgid "Example"
5544
  msgstr "Ejemplo"
5545
 
5546
- #: ../modules/mycred-module-hooks.php:2440
5547
  msgid "Assign usernames as IDs for each user."
5548
  msgstr "Asignar los nombres de usuario como ID para cada usuario."
5549
 
5550
- #: ../modules/mycred-module-hooks.php:2444
5551
  msgid "IP Limit"
5552
  msgstr "Límite de IP"
5553
 
5554
- #: ../modules/mycred-module-hooks.php:2448
5555
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5556
  msgstr ""
5557
  "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
5558
  "número ilimitado"
5559
 
5560
- #: ../modules/mycred-module-hooks.php:2452 ../modules/mycred-module-hooks.php:2485
5561
  msgid "BuddyPress Profile"
5562
  msgstr "Perfil de BuddyPress"
5563
 
5564
- #: ../modules/mycred-module-hooks.php:2455
5565
  msgid "Insert Link in users Profile"
5566
  msgstr "Insertar enlace en el perfil del usuario"
5567
 
5568
- #: ../modules/mycred-module-hooks.php:2456
5569
  msgid ""
5570
  "Option to inser the referral link in users profiles. Links will only be "
5571
  "visible to users viewing their own profiles or administrators."
@@ -5574,23 +5618,23 @@ msgstr ""
5574
  " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
5575
  "ven a sus propios perfiles."
5576
 
5577
- #: ../modules/mycred-module-hooks.php:2462
5578
  msgid "Leave empty to hide."
5579
  msgstr "Deje el campo vacío para ocultarlo."
5580
 
5581
- #: ../modules/mycred-module-hooks.php:2465
5582
  msgid "Description"
5583
  msgstr "Descripción"
5584
 
5585
- #: ../modules/mycred-module-hooks.php:2466
5586
  msgid "Optional description to insert under the link."
5587
  msgstr "Insertar la descripción opcional debajo del enlace."
5588
 
5589
- #: ../modules/mycred-module-hooks.php:2478
5590
  msgid "Profile Positioning"
5591
  msgstr "Posicionamiento del Perfil"
5592
 
5593
- #: ../modules/mycred-module-hooks.php:2480
5594
  msgid ""
5595
  "You can move around the referral link on your users profile by changing the "
5596
  "position. Increase to move up, decrease to move down."
@@ -5598,80 +5642,80 @@ msgstr ""
5598
  "Puedes moverte por el enlace de referencia en su perfil los usuarios "
5599
  "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
5600
 
5601
- #: ../modules/mycred-module-hooks.php:2481
5602
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5603
  msgstr ""
5604
  "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
5605
  "en el perfil del usuario!"
5606
 
5607
- #: ../modules/mycred-module-hooks.php:2487
5608
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5609
  msgstr "Requiere que BuddyPress Extended Profiles sea activado."
5610
 
5611
- #: ../modules/mycred-module-log.php:187 ../modules/mycred-module-log.php:208 ..
5612
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5613
  msgid "Access denied for this action"
5614
  msgstr "Acceso denegado para esta acción"
5615
 
5616
- #: ../modules/mycred-module-log.php:194
5617
  msgid "Row Deleted"
5618
  msgstr "Fila Borrado"
5619
 
5620
- #: ../modules/mycred-module-log.php:221
5621
  msgid "Log entry not found"
5622
  msgstr "No se encontro la entrada de registro "
5623
 
5624
- #: ../modules/mycred-module-log.php:234
5625
  msgid "Entry Updated"
5626
  msgstr "Entrada Actualizada"
5627
 
5628
- #: ../modules/mycred-module-log.php:288 ../modules/mycred-module-settings.php:436
5629
  msgid "Entries"
5630
  msgstr "Entradas"
5631
 
5632
- #: ../modules/mycred-module-log.php:303 ../modules/mycred-module-log.php:383 ..
5633
- #: modules/mycred-module-log.php:627 ../modules/mycred-module-settings.php:574
5634
  msgid "Export"
5635
  msgstr "Exportar"
5636
 
5637
- #: ../modules/mycred-module-log.php:309
5638
  msgid "Search results for"
5639
  msgstr "Buscar entre resultados por"
5640
 
5641
- #: ../modules/mycred-module-log.php:377
5642
  #, php-format
5643
  msgid "%s Log"
5644
  msgstr "Registro de %s"
5645
 
5646
- #: ../modules/mycred-module-log.php:502
5647
  msgid "Edit"
5648
  msgstr "Editar"
5649
 
5650
- #: ../modules/mycred-module-log.php:543
5651
  msgid "Time"
5652
  msgstr "Tiempo"
5653
 
5654
- #: ../modules/mycred-module-log.php:547
5655
  msgid "Current Log Entry"
5656
  msgstr "Entrada Actual de Registro"
5657
 
5658
- #: ../modules/mycred-module-log.php:549
5659
  msgid "The current saved log entry"
5660
  msgstr "La entrada guardada actual del registro"
5661
 
5662
- #: ../modules/mycred-module-log.php:552
5663
  msgid "Adjust Log Entry"
5664
  msgstr "Ajustar entrada de registro"
5665
 
5666
- #: ../modules/mycred-module-log.php:554
5667
  msgid "The new log entry"
5668
  msgstr "La nueva entrada de registro"
5669
 
5670
- #: ../modules/mycred-module-log.php:557
5671
  msgid "Update Log Entry"
5672
  msgstr "Actualiza la entrada de registro"
5673
 
5674
- #: ../modules/mycred-module-log.php:621
5675
  #, php-format
5676
  msgid "My %s History"
5677
  msgstr "Mi Historial de %s"
@@ -5914,8 +5958,8 @@ msgstr "%plural% por Nuevo Tema"
5914
  msgid "Forum authors can receive %_plural% for creating new topics."
5915
  msgstr "Autores "
5916
 
5917
- #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 .
5918
- #: ./plugins/mycred-hook-simplepress.php:336
5919
  #, php-format
5920
  msgid "%plural% for Topic Deletion"
5921
  msgstr "%plural% por Borrar Tema"
@@ -5951,6 +5995,11 @@ msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
5951
  msgid "Show users %_plural% balance in replies"
5952
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
5953
 
 
 
 
 
 
5954
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5955
  msgid "BuddyPress: Gallery Actions"
5956
  msgstr "BuddyPress: Acciones sobre Galerías"
@@ -6350,19 +6399,15 @@ msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
6350
  msgid "%plural% for Topic Post Deletion"
6351
  msgstr "%plural% por Borrar la Tema del Post"
6352
 
6353
- #: ../plugins/mycred-hook-woocommerce.php:65
6354
  msgid "Reward with %plural%"
6355
  msgstr ""
6356
 
6357
- #: ../plugins/mycred-hook-woocommerce.php:70
6358
- msgid "User is excluded from this point type."
6359
- msgstr ""
6360
-
6361
- #: ../plugins/mycred-hook-woocommerce.php:199
6362
  msgid "WooCommerce Product Reviews"
6363
  msgstr ""
6364
 
6365
- #: ../plugins/mycred-hook-woocommerce.php:200
6366
  #, php-format
6367
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6368
  msgstr ""
@@ -6392,3 +6437,5 @@ msgstr "WP-Polls"
6392
  #, php-format
6393
  msgid "Awards %_plural% for users voting in polls."
6394
  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: 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
  "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"
102
  msgstr "Entrada de registro actualizado"
103
 
104
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
105
+ #: notices.php:718 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
106
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
107
  msgid "Setup"
108
  msgstr "Configurar"
130
  msgstr "Este gancho no ha sido configurado"
131
 
132
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
133
+ #: 1558
134
  msgid "No limit"
135
  msgstr "Sin Limite"
136
 
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
157
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
158
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
159
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:868
160
  msgid "Select"
161
  msgstr "Seleccionar"
162
 
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"
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
 
530
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
531
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
532
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
533
+ #: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
534
+ #: modules/mycred-module-hooks.php:2098 ../plugins/mycred-hook-badgeOS.php:115 ..
535
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
536
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
537
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
538
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
539
+ #: php:298 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
540
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
541
  msgid "Log Template"
542
  msgstr "Plantilla de Registro"
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
 
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
 
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
 
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"
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
 
1611
  msgstr "Utilización"
1612
 
1613
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1614
+ #: transfer.php:243 ../modules/mycred-module-hooks.php:1472 ../modules/mycred-
1615
+ #: module-hooks.php:1763
1616
  msgid "Limits"
1617
  msgstr "imites"
1618
 
1625
  msgstr "todavia no utilizado"
1626
 
1627
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1628
+ #: php:2203
1629
  msgid "Total"
1630
  msgstr "Total"
1631
 
1803
  msgstr "Aplica el Cupón"
1804
 
1805
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1806
+ #: notices/myCRED-addon-email-notices.php:1115
1807
  msgid "Email Notice"
1808
  msgstr "Aviso por Correo Electrónico"
1809
 
1998
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
1999
 
2000
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
2001
+ #: notices/myCRED-addon-email-notices.php:782
2002
  msgid "Email Settings"
2003
  msgstr "Configuracion de Correo Electrónico"
2004
 
2005
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
2006
+ #: notices/myCRED-addon-email-notices.php:905
2007
  msgid "Senders Name:"
2008
  msgstr "Nombre del Remitente"
2009
 
2010
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
2011
+ #: notices/myCRED-addon-email-notices.php:907
2012
  msgid "Senders Email:"
2013
  msgstr "Correo Electrónico del Remitente:"
2014
 
2032
  msgid "Ignored if HTML is not allowed in emails."
2033
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
2034
 
2035
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:716 ../addons/email-
2036
+ #: notices/myCRED-addon-email-notices.php:831
2037
  msgid "Email Subject"
2038
  msgstr "Asunto del Correo Electrónico"
2039
 
2040
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:717
2041
  msgid "Status"
2042
  msgstr "Estatus"
2043
 
2044
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:737
2045
  msgid "Not Active"
2046
  msgstr "No esta Activo"
2047
 
2048
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:739
2049
  #, php-format
2050
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2051
  msgstr "Programada:<br /><strong>%1$s</strong>"
2052
 
2053
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:743
2054
  msgid "Active"
2055
  msgstr "Activo"
2056
 
2057
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:745
2058
  #, php-format
2059
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2060
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
2061
 
2062
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755
2063
  msgid "Email is sent when"
2064
  msgstr "el Correo Electrónico se envia cuando"
2065
 
2066
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757
2067
  msgid "Missing instance for this notice!"
2068
  msgstr "¡Falta una instancia para este aviso!"
2069
 
2070
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2071
+ #: notices/myCRED-addon-email-notices.php:768 ../addons/email-notices/myCRED-
2072
+ #: addon-email-notices.php:770
2073
  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
 
2082
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:768 ../addons/email-
2083
+ #: notices/myCRED-addon-email-notices.php:896
2084
  msgid "Administrator"
2085
  msgstr "Administrador"
2086
 
2087
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:770
2088
  msgid "Both Administrator and User"
2089
  msgstr "Tanto Administrador como Usuario"
2090
 
2091
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
2092
  msgid "Available Template Tags"
2093
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
2094
 
2095
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:802
2096
  msgid "Email Header"
2097
  msgstr "Encabezado del Correo Electrónico"
2098
 
2099
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:862
2100
  msgid "Send this email notice when..."
2101
  msgstr "Envia este aviso por correo electrónico cuando..."
2102
 
2103
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:893
2104
  msgid "Recipient:"
2105
  msgstr "Destinatario:"
2106
 
2107
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:897
2108
  msgid "Both"
2109
  msgstr "Ambos"
2110
 
2111
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:901 ..
2112
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2113
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2114
  #: module-settings.php:526
2115
  msgid "Label"
2116
  msgstr "Etiqueta"
2117
 
2118
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2119
  msgid "Reply-To Email:"
2120
  msgstr "Responder-A Correo Electrónico:"
2121
 
2122
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:915
2123
  msgid "Save"
2124
  msgstr "Guardar"
2125
 
2126
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:927
2127
  msgid "CSS Styling"
2128
  msgstr "Estilo CSS"
2129
 
2130
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:943
2131
  msgid "Site Related"
2132
  msgstr "Relacionado al Sitio"
2133
 
2134
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:944
2135
  msgid "Your websites title"
2136
  msgstr "Titulo de tu pagina web"
2137
 
2138
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:945
2139
  msgid "Your websites address"
2140
  msgstr "Dirección de tu pagina web"
2141
 
2142
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:946
2143
  msgid "Your websites tagline (description)"
2144
  msgstr "La descripción de tu sitio web (lema o eslogan)"
2145
 
2146
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:947
2147
  msgid "Your websites admin email"
2148
  msgstr "El correo electrónico de admin para tu pagina web"
2149
 
2150
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:948
2151
  msgid "Total number of blog members"
2152
  msgstr "Número total de miembros del blog"
2153
 
2154
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1026 ../addons/email-
2155
+ #: notices/myCRED-addon-email-notices.php:1029 ../addons/email-notices/myCRED-
2156
+ #: addon-email-notices.php:1035
2157
  msgid "Email Notice Updated."
2158
  msgstr ""
2159
 
2160
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1031
2161
  msgid "Email Notice Activated"
2162
  msgstr "Notificación atraves de Correo Electrónico Activado"
2163
 
2164
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1032
2165
  msgid "Email Notice Saved"
2166
  msgstr "Aviso por Correo Electrónico Guardado"
2167
 
2168
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2169
  msgid ""
2170
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2171
  "are not yet ready to use this email notice!"
2173
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
2174
  "si aun no estás listo para utilizar este aviso por email!"
2175
 
2176
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2177
  #, php-format
2178
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2179
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
2180
 
2181
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2182
  msgid "This email notice is active."
2183
  msgstr "Esta notificación de correo electrónico esta activada."
2184
 
2185
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1066
2186
  msgid "Settings saved."
2187
  msgstr ""
2188
 
2189
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1114
2190
  msgid "Unsubscribe"
2191
  msgstr ""
2192
 
2193
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1135
2194
  msgid "There are no email notifications yet."
2195
  msgstr ""
2196
 
2197
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1141
2198
  msgid "Save Changes"
2199
  msgstr ""
2200
 
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
  #: 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
 
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
 
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"
3210
  msgid "Assign Ranks to Users"
3211
  msgstr "Asignar Rango a los Usuarios"
3212
 
3213
+ #: ../addons/ranks/includes/mycred-rank-functions.php:229
3214
  msgid "mycred_get_users_rank() : Missing required user id"
3215
  msgstr "mycred_get_users_rank() : Falta el requisito id del usuario"
3216
 
3217
+ #: ../addons/ranks/includes/mycred-rank-functions.php:238
3218
  msgid "no rank"
3219
  msgstr "ningun rango"
3220
 
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
  "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
 
3608
  msgid "Show users limit"
3609
  msgstr "Mostrar los límites de usuarios"
3610
 
3611
+ #: ../addons/transfer/myCRED-addon-transfer.php:800
3612
  msgid "username"
3613
  msgstr "nombre de usuario"
3614
 
3615
+ #: ../addons/transfer/myCRED-addon-transfer.php:802
3616
  msgid "email"
3617
  msgstr "correo electrónico"
3618
 
3619
  #. is this recipients plural or recipient's with an apostrophe missing?
3620
+ #: ../addons/transfer/myCRED-addon-transfer.php:804
3621
  #, php-format
3622
  msgid "recipients %s"
3623
  msgstr "destinatarios %s"
3624
 
3625
+ #: ../addons/transfer/myCRED-addon-transfer.php:877
3626
  msgid "To:"
3627
  msgstr "A:"
3628
 
3629
+ #: ../addons/transfer/myCRED-addon-transfer.php:883
3630
  msgid "Amount:"
3631
  msgstr "Cantidad:"
3632
 
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
 
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
  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
 
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
 
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 ""
5208
 
5209
  #: ../modules/mycred-module-hooks.php:101
5210
  #, php-format
5211
+ msgid "%plural% for viewing content"
5212
+ msgstr ""
5213
+
5214
+ #: ../modules/mycred-module-hooks.php:102
5215
+ msgid ""
5216
+ "Award %_plural% to your users for viewing posts and / or %plural% to your "
5217
+ "authors for members viewing their content."
5218
+ msgstr ""
5219
+
5220
+ #: ../modules/mycred-module-hooks.php:108
5221
+ #, php-format
5222
  msgid "%plural% for logins"
5223
  msgstr "%plural% para ingresos"
5224
 
5225
+ #: ../modules/mycred-module-hooks.php:109
5226
  #, php-format
5227
  msgid ""
5228
  "Award %_plural% for logging in to your website. You can also set an optional "
5231
  "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
5232
  "ajustar un limíte opcional."
5233
 
5234
+ #: ../modules/mycred-module-hooks.php:115
5235
  #, php-format
5236
  msgid "%plural% for publishing content"
5237
  msgstr "%plural% por publicar contenido"
5238
 
5239
+ #: ../modules/mycred-module-hooks.php:116
5240
  #, php-format
5241
  msgid ""
5242
  "Award %_plural% for publishing content on your website. If your custom post "
5243
  "type is not shown bellow, make sure it is set to \"Public\"."
5244
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
5245
 
5246
+ #: ../modules/mycred-module-hooks.php:122
5247
  #, php-format
5248
  msgid "%plural% for comments"
5249
  msgstr "%plural% por comentarios"
5250
 
5251
+ #: ../modules/mycred-module-hooks.php:122
5252
  #, php-format
5253
  msgid "%plural% for Disqus comments"
5254
  msgstr "%plural% por comentarios Disqus"
5255
 
5256
+ #: ../modules/mycred-module-hooks.php:123
5257
  #, php-format
5258
  msgid "Award %_plural% for making comments."
5259
  msgstr "Concede %_plural% por hacer comentarios."
5260
 
5261
+ #: ../modules/mycred-module-hooks.php:129
5262
  #, php-format
5263
  msgid "%plural% for clicking on links"
5264
  msgstr "%plural% por hacer clic sobre enlaces"
5265
 
5266
+ #: ../modules/mycred-module-hooks.php:130
5267
  msgid ""
5268
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5269
  "shortcode."
5271
  "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
5272
  "por el [mycred_link] código corto (shortcode)."
5273
 
5274
+ #: ../modules/mycred-module-hooks.php:136
5275
  #, php-format
5276
  msgid "%plural% for viewing Videos"
5277
  msgstr "%plural% por ver videos"
5278
 
5279
+ #: ../modules/mycred-module-hooks.php:137
5280
  msgid ""
5281
  "Award %_plural% to users who watches videos embedded using the "
5282
  "[mycred_video] shortcode."
5284
  "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
5285
  "el [mycred_link] código corto (shortcode)."
5286
 
5287
+ #: ../modules/mycred-module-hooks.php:143
5288
  #, php-format
5289
  msgid "%plural% for referrals"
5290
  msgstr "%plural% por referencias (o recomendaciones)"
5291
 
5292
+ #: ../modules/mycred-module-hooks.php:144
5293
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5294
  msgstr ""
5295
  "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
5296
  "miembros inscritos."
5297
 
5298
+ #: ../modules/mycred-module-hooks.php:177
5299
  #, php-format
5300
  msgid "%s Hooks"
5301
  msgstr "Ganchos de %s"
5302
 
5303
+ #: ../modules/mycred-module-hooks.php:180
5304
  msgid ""
5305
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5306
  "depending on their actions around your website."
5308
  "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
5309
  "usuario, dependiendo de sus acciones en tu sitio web."
5310
 
5311
+ #: ../modules/mycred-module-hooks.php:352 ../modules/mycred-module-hooks.php:446 .
5312
+ #: ./modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:622 ..
5313
+ #: modules/mycred-module-hooks.php:684 ../modules/mycred-module-hooks.php:1004 ..
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.
5321
+ #: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
5322
+ #: buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ..
5323
+ #: plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-
5324
+ #: buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ..
5325
+ #: plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-
5326
+ #: buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ..
5327
+ #: plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-
5328
+ #: buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ..
5329
+ #: plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-
5330
+ #: buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ..
5331
+ #: plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:
5332
+ #: 407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-
5333
+ #: buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-
5334
+ #: hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ..
5335
+ #: plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:
5336
+ #: 939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-
5337
+ #: buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-
5338
+ #: hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ..
5339
+ #: plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:
5340
+ #: 1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-
5341
+ #: form7.php:141 ../plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-
5342
+ #: hook-invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:240 ..
5343
+ #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5344
+ #: plugins/mycred-hook-sharethis.php:258 ../plugins/mycred-hook-simplepress.php:
5345
+ #: 330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-
5346
+ #: simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
5347
  msgid "Log template"
5348
  msgstr "Plantilla de Registro"
5349
 
5350
+ #: ../modules/mycred-module-hooks.php:586
5351
+ #, php-format
5352
+ msgid "%plural% for viewing Posts"
5353
+ msgstr ""
5354
+
5355
+ #: ../modules/mycred-module-hooks.php:589 ../modules/mycred-module-hooks.php:600 .
5356
+ #: ./modules/mycred-module-hooks.php:614 ../modules/mycred-module-hooks.php:625 ..
5357
+ #: modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:687
5358
+ msgid "Member"
5359
+ msgstr ""
5360
+
5361
+ #: ../modules/mycred-module-hooks.php:593 ../modules/mycred-module-hooks.php:606 .
5362
+ #: ./modules/mycred-module-hooks.php:618 ../modules/mycred-module-hooks.php:631 ..
5363
+ #: modules/mycred-module-hooks.php:680 ../modules/mycred-module-hooks.php:693 ..
5364
+ #: modules/mycred-module-hooks.php:1428 ../modules/mycred-module-hooks.php:1445 .
5365
+ #: ./modules/mycred-module-hooks.php:1462
5366
+ msgid "Content Author"
5367
+ msgstr "Autor del Contenido"
5368
+
5369
+ #: ../modules/mycred-module-hooks.php:611
5370
+ #, php-format
5371
+ msgid "%plural% for viewing Pages"
5372
+ msgstr ""
5373
+
5374
+ #: ../modules/mycred-module-hooks.php:673
5375
+ #, php-format
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"
5384
 
5385
+ #: ../modules/mycred-module-hooks.php:998
5386
  #, php-format
5387
  msgid "%plural% for Posts"
5388
  msgstr "%plural% por Posts"
5389
 
5390
+ #: ../modules/mycred-module-hooks.php:1011
5391
  #, php-format
5392
  msgid "%plural% for Pages"
5393
  msgstr "%plural% por Paginas"
5394
 
5395
+ #: ../modules/mycred-module-hooks.php:1047
5396
  #, php-format
5397
  msgid "%plural% for %s"
5398
  msgstr "%plural% por %s"
5399
 
5400
+ #: ../modules/mycred-module-hooks.php:1419
5401
  msgid ""
5402
  "%plural% are only awarded when your website has been synced with the Disqus "
5403
  "server!"
5405
  "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
5406
  "sincronizado con el servidor de Disqus!"
5407
 
5408
+ #: ../modules/mycred-module-hooks.php:1424 ../modules/mycred-module-hooks.php:
5409
+ #: 1441 ../modules/mycred-module-hooks.php:1458
5410
  msgid "Comment Author"
5411
  msgstr "Autor del Comentario"
5412
 
5413
+ #: ../modules/mycred-module-hooks.php:1438
 
 
 
 
 
5414
  msgid "Comment Marked SPAM"
5415
  msgstr "Comentario Marcado como SPAM"
5416
 
5417
+ #: ../modules/mycred-module-hooks.php:1455
5418
  msgid "Trashed / Unapproved Comments"
5419
  msgstr "Comentarios Destrozados / No Aprobados"
5420
 
5421
+ #: ../modules/mycred-module-hooks.php:1475
5422
  msgid "Limit per post"
5423
  msgstr "Límite por Entrada"
5424
 
5425
  #. what is the Spanish word for "post"? o anglicismo?
5426
+ #: ../modules/mycred-module-hooks.php:1477
5427
  msgid ""
5428
  "The number of comments per post that grants %_plural% to the comment author. "
5429
  "Use zero for unlimited."
5431
  "El numero de comentarios por cada post que concede %_plural% al autor del "
5432
  "comentario. Utilice cero para un número ilimitado"
5433
 
5434
+ #: ../modules/mycred-module-hooks.php:1481
5435
  msgid "Limit per day"
5436
  msgstr "Límite por día"
5437
 
5438
+ #: ../modules/mycred-module-hooks.php:1483
5439
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5440
  msgstr ""
5441
  "Número de comentarios diarios que conceden %_plural%. Utilice cero para un "
5442
  "número ilimitado."
5443
 
5444
+ #: ../modules/mycred-module-hooks.php:1488
5445
  msgid ""
5446
  "%plural% is to be awarded even when comment authors reply to their own "
5447
  "comment."
5449
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
5450
  "comentario."
5451
 
5452
+ #: ../modules/mycred-module-hooks.php:1559
5453
  msgid "Once for each unique URL"
5454
  msgstr "Una sola vez para cada única URL"
5455
 
5456
+ #: ../modules/mycred-module-hooks.php:1560
5457
  msgid "Once for each unique link id"
5458
  msgstr "Una vez para cada id del enlace único "
5459
 
5460
+ #: ../modules/mycred-module-hooks.php:1753
5461
  msgid ""
5462
  "The default amount to award for clicking on links. You can override this in "
5463
  "the shortcode."
5465
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
5466
  "anular esto con el 'shortcode' (código corto)."
5467
 
5468
+ #: ../modules/mycred-module-hooks.php:1760
5469
  #, php-format
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
 
5477
+ #: ../modules/mycred-module-hooks.php:1771
5478
  msgid ""
5479
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5480
  "generate one automatically based on the value set under href. If you are "
5486
  "valor fijado en href. Si estas utilizando esta función para \"compartir\" "
5487
  "contenidos, se recomienda que limites por ID."
5488
 
5489
+ #: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2131
5490
  msgid "Available Shortcode"
5491
  msgstr "Código corto Disponible"
5492
 
5493
+ #: ../modules/mycred-module-hooks.php:2095
5494
  msgid "Amount to award for viewing videos."
5495
  msgstr "Cantidad a ceder para ver videos."
5496
 
5497
+ #: ../modules/mycred-module-hooks.php:2105
5498
  msgid "Award Logic"
5499
  msgstr "Lógica de Concesión"
5500
 
5501
+ #: ../modules/mycred-module-hooks.php:2107
5502
  #, php-format
5503
  msgid "Select when %_plural% should be awarded or deducted."
5504
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
5505
 
5506
+ #: ../modules/mycred-module-hooks.php:2108
5507
  msgid "Play - As soon as video starts playing."
5508
  msgstr "Play - En cuanto el video empiece a reproducirse."
5509
 
5510
+ #: ../modules/mycred-module-hooks.php:2109
5511
  msgid "Full - First when the entire video has played."
5512
  msgstr "Completo - Primero cuando el video entero se haya reproducido."
5513
 
5514
+ #: ../modules/mycred-module-hooks.php:2110
5515
  msgid "Interval - For each x number of seconds watched."
5516
  msgstr "Intervalo - Para cada x numero de segundos vistos."
5517
 
5518
+ #: ../modules/mycred-module-hooks.php:2115
5519
  msgid "Number of seconds"
5520
  msgstr "Numero de segundos"
5521
 
5522
+ #: ../modules/mycred-module-hooks.php:2122
5523
  msgid "Leniency"
5524
  msgstr "Lenidad"
5525
 
5526
+ #: ../modules/mycred-module-hooks.php:2124
5527
  msgid ""
5528
  "The maximum percentage a users view of a movie can differ from the actual "
5529
  "length."
5531
  "El porcentaje máximo medido que un usuario vea puede variar con la duración "
5532
  "actual del video."
5533
 
5534
+ #: ../modules/mycred-module-hooks.php:2127
5535
  msgid ""
5536
  "Do not set this value to zero! A lot of thing can happen while a user "
5537
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5541
  "usuario ve una película y a veces la contador puede disminuir por pocos "
5542
  "segundos por falta de buffering o por errores de reproducción."
5543
 
5544
+ #: ../modules/mycred-module-hooks.php:2195
5545
  msgid "Affiliate Program"
5546
  msgstr "Programa de Afiliados"
5547
 
5548
+ #: ../modules/mycred-module-hooks.php:2204
5549
  msgid "Per Day"
5550
  msgstr "Por Día"
5551
 
5552
+ #: ../modules/mycred-module-hooks.php:2316
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
  " 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
  "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
 
5655
+ #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
5656
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5657
  msgid "Access denied for this action"
5658
  msgstr "Acceso denegado para esta acción"
5659
 
5660
+ #: ../modules/mycred-module-log.php:196
5661
  msgid "Row Deleted"
5662
  msgstr "Fila Borrado"
5663
 
5664
+ #: ../modules/mycred-module-log.php:223
5665
  msgid "Log entry not found"
5666
  msgstr "No se encontro la entrada de registro "
5667
 
5668
+ #: ../modules/mycred-module-log.php:236
5669
  msgid "Entry Updated"
5670
  msgstr "Entrada Actualizada"
5671
 
5672
+ #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:436
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
 
5681
+ #: ../modules/mycred-module-log.php:311
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"
5958
  msgid "Forum authors can receive %_plural% for creating new topics."
5959
  msgstr "Autores "
5960
 
5961
+ #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-simplepress.php:
5962
+ #: 336
5963
  #, php-format
5964
  msgid "%plural% for Topic Deletion"
5965
  msgstr "%plural% por Borrar Tema"
5995
  msgid "Show users %_plural% balance in replies"
5996
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
5997
 
5998
+ #: ../plugins/mycred-hook-bbPress.php:568
5999
+ #, php-format
6000
+ msgid "%plural% for Reply Deletion"
6001
+ msgstr ""
6002
+
6003
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
6004
  msgid "BuddyPress: Gallery Actions"
6005
  msgstr "BuddyPress: Acciones sobre Galerías"
6399
  msgid "%plural% for Topic Post Deletion"
6400
  msgstr "%plural% por Borrar la Tema del Post"
6401
 
6402
+ #: ../plugins/mycred-hook-woocommerce.php:67
6403
  msgid "Reward with %plural%"
6404
  msgstr ""
6405
 
6406
+ #: ../plugins/mycred-hook-woocommerce.php:197
 
 
 
 
6407
  msgid "WooCommerce Product Reviews"
6408
  msgstr ""
6409
 
6410
+ #: ../plugins/mycred-hook-woocommerce.php:198
6411
  #, php-format
6412
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6413
  msgstr ""
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."
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: Sat Jul 26 2014 20:54:30 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;__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"
@@ -102,7 +102,7 @@ msgid "Log entry updated"
102
  msgstr "Entrada de registro actualizado"
103
 
104
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
105
- #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
106
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
107
  msgid "Setup"
108
  msgstr "Configurar"
@@ -130,7 +130,7 @@ msgid "This Hook has no settings"
130
  msgstr "Este gancho no ha sido configurado"
131
 
132
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
133
- #: 1305
134
  msgid "No limit"
135
  msgstr "Sin Limite"
136
 
@@ -156,7 +156,7 @@ msgstr "Una vez al dia (reinicializado al medianoche)"
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
157
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
158
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
159
- #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
160
  msgid "Select"
161
  msgstr "Seleccionar"
162
 
@@ -421,8 +421,8 @@ msgstr ""
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:164 ..
425
- #: modules/mycred-module-log.php:324 ../modules/mycred-module-log.php:577 ..
426
  #: modules/mycred-module-settings.php:312
427
  msgid "Access Denied"
428
  msgstr "Acceso Denegado"
@@ -448,12 +448,12 @@ 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:189
452
  msgid "Enable"
453
  msgstr "Activar"
454
 
455
  #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
456
- #: php:204
457
  msgid "Update Changes"
458
  msgstr "Actualizar Cambios"
459
 
@@ -530,13 +530,13 @@ msgstr "El minimo saldo necesario para aplicar una tasa de interés."
530
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
531
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
532
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
533
- #: modules/mycred-module-hooks.php:633 ../modules/mycred-module-hooks.php:1503 ..
534
- #: modules/mycred-module-hooks.php:1845 ../plugins/mycred-hook-badgeOS.php:115 ..
535
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
536
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
537
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
538
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
539
- #: php:300 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
540
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
541
  msgid "Log Template"
542
  msgstr "Plantilla de Registro"
@@ -574,8 +574,8 @@ msgstr "Pagar a los Usuarios"
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:769 ..
578
- #: includes/mycred-shortcodes.php:907
579
  msgid "Amount"
580
  msgstr "Cantidad"
581
 
@@ -585,7 +585,7 @@ 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:1860
589
  msgid "Interval"
590
  msgstr "Interval"
591
 
@@ -807,7 +807,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:2495
811
  msgid "Available Shortcodes"
812
  msgstr "Códigos cortos Disponibles"
813
 
@@ -968,7 +968,7 @@ 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:370 ../modules/mycred-
972
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
973
  msgid "Actions"
974
  msgstr "Acciones"
@@ -1418,7 +1418,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:2460
1422
  msgid "Title"
1423
  msgstr "Titulo"
1424
 
@@ -1611,8 +1611,8 @@ msgid "Usage"
1611
  msgstr "Utilización"
1612
 
1613
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1614
- #: transfer.php:243 ../modules/mycred-module-hooks.php:1219 ../modules/mycred-
1615
- #: module-hooks.php:1510
1616
  msgid "Limits"
1617
  msgstr "imites"
1618
 
@@ -1625,7 +1625,7 @@ msgid "not yet used"
1625
  msgstr "todavia no utilizado"
1626
 
1627
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1628
- #: php:1950
1629
  msgid "Total"
1630
  msgstr "Total"
1631
 
@@ -1803,7 +1803,7 @@ msgid "Apply Coupon"
1803
  msgstr "Aplica el Cupón"
1804
 
1805
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1806
- #: notices/myCRED-addon-email-notices.php:1104
1807
  msgid "Email Notice"
1808
  msgstr "Aviso por Correo Electrónico"
1809
 
@@ -1998,17 +1998,17 @@ msgstr ""
1998
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
1999
 
2000
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
2001
- #: notices/myCRED-addon-email-notices.php:771
2002
  msgid "Email Settings"
2003
  msgstr "Configuracion de Correo Electrónico"
2004
 
2005
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
2006
- #: notices/myCRED-addon-email-notices.php:894
2007
  msgid "Senders Name:"
2008
  msgstr "Nombre del Remitente"
2009
 
2010
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
2011
- #: notices/myCRED-addon-email-notices.php:896
2012
  msgid "Senders Email:"
2013
  msgstr "Correo Electrónico del Remitente:"
2014
 
@@ -2032,140 +2032,140 @@ msgstr "Estilo de Correo Electrónico Predefinido"
2032
  msgid "Ignored if HTML is not allowed in emails."
2033
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
2034
 
2035
- #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
2036
- #: notices/myCRED-addon-email-notices.php:820
2037
  msgid "Email Subject"
2038
  msgstr "Asunto del Correo Electrónico"
2039
 
2040
- #: ../addons/email-notices/myCRED-addon-email-notices.php:706
2041
  msgid "Status"
2042
  msgstr "Estatus"
2043
 
2044
- #: ../addons/email-notices/myCRED-addon-email-notices.php:726
2045
  msgid "Not Active"
2046
  msgstr "No esta Activo"
2047
 
2048
- #: ../addons/email-notices/myCRED-addon-email-notices.php:728
2049
  #, php-format
2050
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2051
  msgstr "Programada:<br /><strong>%1$s</strong>"
2052
 
2053
- #: ../addons/email-notices/myCRED-addon-email-notices.php:732
2054
  msgid "Active"
2055
  msgstr "Activo"
2056
 
2057
- #: ../addons/email-notices/myCRED-addon-email-notices.php:734
2058
  #, php-format
2059
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2060
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
2061
 
2062
- #: ../addons/email-notices/myCRED-addon-email-notices.php:744
2063
  msgid "Email is sent when"
2064
  msgstr "el Correo Electrónico se envia cuando"
2065
 
2066
- #: ../addons/email-notices/myCRED-addon-email-notices.php:746
2067
  msgid "Missing instance for this notice!"
2068
  msgstr "¡Falta una instancia para este aviso!"
2069
 
2070
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
2071
- #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
2072
- #: addon-email-notices.php:759
2073
  msgid "Sent To"
2074
  msgstr "Enviado A:"
2075
 
2076
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
2077
- #: notices/myCRED-addon-email-notices.php:884 ../includes/mycred-admin.php:764 ..
2078
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:542
2079
  msgid "User"
2080
  msgstr "Usuario"
2081
 
2082
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
2083
- #: notices/myCRED-addon-email-notices.php:885
2084
  msgid "Administrator"
2085
  msgstr "Administrador"
2086
 
2087
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
2088
  msgid "Both Administrator and User"
2089
  msgstr "Tanto Administrador como Usuario"
2090
 
2091
- #: ../addons/email-notices/myCRED-addon-email-notices.php:780
2092
  msgid "Available Template Tags"
2093
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
2094
 
2095
- #: ../addons/email-notices/myCRED-addon-email-notices.php:791
2096
  msgid "Email Header"
2097
  msgstr "Encabezado del Correo Electrónico"
2098
 
2099
- #: ../addons/email-notices/myCRED-addon-email-notices.php:851
2100
  msgid "Send this email notice when..."
2101
  msgstr "Envia este aviso por correo electrónico cuando..."
2102
 
2103
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
2104
  msgid "Recipient:"
2105
  msgstr "Destinatario:"
2106
 
2107
- #: ../addons/email-notices/myCRED-addon-email-notices.php:886
2108
  msgid "Both"
2109
  msgstr "Ambos"
2110
 
2111
- #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
2112
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2113
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2114
  #: module-settings.php:526
2115
  msgid "Label"
2116
  msgstr "Etiqueta"
2117
 
2118
- #: ../addons/email-notices/myCRED-addon-email-notices.php:898
2119
  msgid "Reply-To Email:"
2120
  msgstr "Responder-A Correo Electrónico:"
2121
 
2122
- #: ../addons/email-notices/myCRED-addon-email-notices.php:904
2123
  msgid "Save"
2124
  msgstr "Guardar"
2125
 
2126
- #: ../addons/email-notices/myCRED-addon-email-notices.php:916
2127
  msgid "CSS Styling"
2128
  msgstr "Estilo CSS"
2129
 
2130
- #: ../addons/email-notices/myCRED-addon-email-notices.php:932
2131
  msgid "Site Related"
2132
  msgstr "Relacionado al Sitio"
2133
 
2134
- #: ../addons/email-notices/myCRED-addon-email-notices.php:933
2135
  msgid "Your websites title"
2136
  msgstr "Titulo de tu pagina web"
2137
 
2138
- #: ../addons/email-notices/myCRED-addon-email-notices.php:934
2139
  msgid "Your websites address"
2140
  msgstr "Dirección de tu pagina web"
2141
 
2142
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
2143
  msgid "Your websites tagline (description)"
2144
  msgstr "La descripción de tu sitio web (lema o eslogan)"
2145
 
2146
- #: ../addons/email-notices/myCRED-addon-email-notices.php:936
2147
  msgid "Your websites admin email"
2148
  msgstr "El correo electrónico de admin para tu pagina web"
2149
 
2150
- #: ../addons/email-notices/myCRED-addon-email-notices.php:937
2151
  msgid "Total number of blog members"
2152
  msgstr "Número total de miembros del blog"
2153
 
2154
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
2155
- #: notices/myCRED-addon-email-notices.php:1018 ../addons/email-notices/myCRED-
2156
- #: addon-email-notices.php:1024
2157
  msgid "Email Notice Updated."
2158
  msgstr ""
2159
 
2160
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2161
  msgid "Email Notice Activated"
2162
  msgstr "Notificación atraves de Correo Electrónico Activado"
2163
 
2164
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2165
  msgid "Email Notice Saved"
2166
  msgstr "Aviso por Correo Electrónico Guardado"
2167
 
2168
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1040
2169
  msgid ""
2170
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2171
  "are not yet ready to use this email notice!"
@@ -2173,35 +2173,35 @@ msgstr ""
2173
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
2174
  "si aun no estás listo para utilizar este aviso por email!"
2175
 
2176
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1042
2177
  #, php-format
2178
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2179
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
2180
 
2181
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1044
2182
  msgid "This email notice is active."
2183
  msgstr "Esta notificación de correo electrónico esta activada."
2184
 
2185
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2186
  msgid "Settings saved."
2187
  msgstr ""
2188
 
2189
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2190
  msgid "Unsubscribe"
2191
  msgstr ""
2192
 
2193
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1124
2194
  msgid "There are no email notifications yet."
2195
  msgstr ""
2196
 
2197
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1130
2198
  msgid "Save Changes"
2199
  msgstr ""
2200
 
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:765
2205
  msgid "Current Balance"
2206
  msgstr "Saldo Actual"
2207
 
@@ -2324,7 +2324,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:912
2328
  msgid "Exchange Rate"
2329
  msgstr "Tipo de Cambio"
2330
 
@@ -2674,7 +2674,7 @@ 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:770
2678
  msgid "Log Entry"
2679
  msgstr "Entrada de Registro"
2680
 
@@ -2761,7 +2761,7 @@ msgid "Reject"
2761
  msgstr "Rechazar"
2762
 
2763
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2764
- #: modules/mycred-module-log.php:502 ../modules/mycred-module-settings.php:488 ..
2765
  #: modules/mycred-module-settings.php:507
2766
  msgid "Delete"
2767
  msgstr "Borrar"
@@ -3210,11 +3210,11 @@ msgstr "Quitar todos los Rangos"
3210
  msgid "Assign Ranks to Users"
3211
  msgstr "Asignar Rango a los Usuarios"
3212
 
3213
- #: ../addons/ranks/includes/mycred-rank-functions.php:197
3214
  msgid "mycred_get_users_rank() : Missing required user id"
3215
  msgstr "mycred_get_users_rank() : Falta el requisito id del usuario"
3216
 
3217
- #: ../addons/ranks/includes/mycred-rank-functions.php:207
3218
  msgid "no rank"
3219
  msgstr "ningun rango"
3220
 
@@ -3400,7 +3400,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:2277
3404
  msgid "Transfer"
3405
  msgstr "Transferir"
3406
 
@@ -3439,7 +3439,7 @@ msgstr ""
3439
  "transferencias hasta que se haga esto."
3440
 
3441
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3442
- #: php:1009
3443
  msgid "Insufficient Funds. Please try a lower amount."
3444
  msgstr ""
3445
 
@@ -3608,25 +3608,25 @@ msgstr "Mostrar el saldo de usuarios"
3608
  msgid "Show users limit"
3609
  msgstr "Mostrar los límites de usuarios"
3610
 
3611
- #: ../addons/transfer/myCRED-addon-transfer.php:798
3612
  msgid "username"
3613
  msgstr "nombre de usuario"
3614
 
3615
- #: ../addons/transfer/myCRED-addon-transfer.php:800
3616
  msgid "email"
3617
  msgstr "correo electrónico"
3618
 
3619
  #. is this recipients plural or recipient's with an apostrophe missing?
3620
- #: ../addons/transfer/myCRED-addon-transfer.php:802
3621
  #, php-format
3622
  msgid "recipients %s"
3623
  msgstr "destinatarios %s"
3624
 
3625
- #: ../addons/transfer/myCRED-addon-transfer.php:875
3626
  msgid "To:"
3627
  msgstr "A:"
3628
 
3629
- #: ../addons/transfer/myCRED-addon-transfer.php:881
3630
  msgid "Amount:"
3631
  msgstr "Cantidad:"
3632
 
@@ -3678,8 +3678,8 @@ msgstr "Excluido"
3678
  msgid "Total: %s"
3679
  msgstr ""
3680
 
3681
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:252 ..
3682
- #: modules/mycred-module-log.php:253
3683
  msgid "History"
3684
  msgstr "Historial"
3685
 
@@ -3751,15 +3751,15 @@ msgstr ""
3751
  msgid "%singular% balance"
3752
  msgstr "%singular% saldo"
3753
 
3754
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:771
3755
  msgid "Update Balance"
3756
  msgstr "Actualizar Saldo"
3757
 
3758
- #: ../includes/mycred-admin.php:763
3759
  msgid "ID"
3760
  msgstr "ID"
3761
 
3762
- #: ../includes/mycred-admin.php:769
3763
  msgid "A positive or negative value"
3764
  msgstr "Un valor positivo o negativo"
3765
 
@@ -3811,290 +3811,298 @@ msgstr "y"
3811
  msgid "Available Template Tags:"
3812
  msgstr "Etiquetas de Plantilla Disponibles:"
3813
 
3814
- #: ../includes/mycred-functions.php:1643
3815
  msgid "Entire Log"
3816
  msgstr "Todo el Registro"
3817
 
3818
- #: ../includes/mycred-functions.php:1648 ../includes/mycred-functions.php:1649
3819
  msgid "Displayed Rows"
3820
  msgstr "Filas Mostradas"
3821
 
3822
- #: ../includes/mycred-functions.php:1653
3823
  msgid "Search Results"
3824
  msgstr "Resultados de la Búsqueda"
3825
 
3826
- #: ../includes/mycred-functions.php:1654
3827
  msgid "My Entire Log"
3828
  msgstr "Mi Registro Entero"
3829
 
3830
- #: ../includes/mycred-functions.php:1774
3831
  msgid "ref empty"
3832
  msgstr "ref vacío"
3833
 
3834
- #: ../includes/mycred-functions.php:1782
3835
  msgid "incorrect user id format"
3836
  msgstr "Formato incorrecto para id del usuario"
3837
 
3838
- #: ../includes/mycred-functions.php:1795
3839
  msgid "incorrect unix timestamp (from):"
3840
  msgstr "erroneo marca de tiempo de unix (desde):"
3841
 
3842
- #: ../includes/mycred-functions.php:1804
3843
  msgid "incorrect unix timestamp (to):"
3844
  msgstr "erroneo marca de tiempo de unix (a):"
3845
 
3846
- #: ../includes/mycred-functions.php:2166
3847
  msgid "Website Registration"
3848
  msgstr ""
3849
 
3850
- #: ../includes/mycred-functions.php:2167
3851
  msgid "Website Visit"
3852
  msgstr ""
3853
 
3854
- #: ../includes/mycred-functions.php:2168
 
 
 
 
 
 
 
 
3855
  msgid "Logging in"
3856
  msgstr ""
3857
 
3858
- #: ../includes/mycred-functions.php:2169
3859
  msgid "Publishing Content"
3860
  msgstr ""
3861
 
3862
- #: ../includes/mycred-functions.php:2170 ../modules/mycred-module-hooks.php:1168
3863
  msgid "Approved Comment"
3864
  msgstr "Comentario Aprobado"
3865
 
3866
- #: ../includes/mycred-functions.php:2171
3867
  msgid "Unapproved Comment"
3868
  msgstr ""
3869
 
3870
- #: ../includes/mycred-functions.php:2172
3871
  msgid "SPAM Comment"
3872
  msgstr ""
3873
 
3874
- #: ../includes/mycred-functions.php:2173
3875
  msgid "Deleted Comment"
3876
  msgstr ""
3877
 
3878
- #: ../includes/mycred-functions.php:2174
3879
  msgid "Link Click"
3880
  msgstr ""
3881
 
3882
- #: ../includes/mycred-functions.php:2175
3883
  msgid "Watching Video"
3884
  msgstr ""
3885
 
3886
- #: ../includes/mycred-functions.php:2176
3887
  msgid "Visitor Referral"
3888
  msgstr ""
3889
 
3890
- #: ../includes/mycred-functions.php:2177
3891
  msgid "Signup Referral"
3892
  msgstr ""
3893
 
3894
- #: ../includes/mycred-functions.php:2181
3895
  msgid "New Profile Update"
3896
  msgstr ""
3897
 
3898
- #: ../includes/mycred-functions.php:2182
3899
  msgid "Avatar Upload"
3900
  msgstr ""
3901
 
3902
- #: ../includes/mycred-functions.php:2183
3903
  msgid "New Friendship"
3904
  msgstr ""
3905
 
3906
- #: ../includes/mycred-functions.php:2184
3907
  msgid "Ended Friendship"
3908
  msgstr ""
3909
 
3910
- #: ../includes/mycred-functions.php:2185
3911
  msgid "New Profile Comment"
3912
  msgstr ""
3913
 
3914
- #: ../includes/mycred-functions.php:2186
3915
  msgid "Profile Comment Deletion"
3916
  msgstr ""
3917
 
3918
- #: ../includes/mycred-functions.php:2187
3919
  msgid "New Message"
3920
  msgstr ""
3921
 
3922
- #: ../includes/mycred-functions.php:2188
3923
  msgid "Sending Gift"
3924
  msgstr ""
3925
 
3926
- #: ../includes/mycred-functions.php:2189
3927
  msgid "New Group"
3928
  msgstr ""
3929
 
3930
- #: ../includes/mycred-functions.php:2190
3931
  msgid "Deleted Group"
3932
  msgstr ""
3933
 
3934
- #: ../includes/mycred-functions.php:2191
3935
  msgid "New Group Forum Topic"
3936
  msgstr ""
3937
 
3938
- #: ../includes/mycred-functions.php:2192
3939
  msgid "Edit Group Forum Topic"
3940
  msgstr ""
3941
 
3942
- #: ../includes/mycred-functions.php:2193
3943
  msgid "New Group Forum Post"
3944
  msgstr ""
3945
 
3946
- #: ../includes/mycred-functions.php:2194
3947
  msgid "Edit Group Forum Post"
3948
  msgstr ""
3949
 
3950
- #: ../includes/mycred-functions.php:2195
3951
  msgid "Joining Group"
3952
  msgstr ""
3953
 
3954
- #: ../includes/mycred-functions.php:2196
3955
  msgid "Leaving Group"
3956
  msgstr ""
3957
 
3958
- #: ../includes/mycred-functions.php:2197
3959
  msgid "New Group Avatar"
3960
  msgstr ""
3961
 
3962
- #: ../includes/mycred-functions.php:2198
3963
  msgid "New Group Comment"
3964
  msgstr ""
3965
 
3966
- #: ../includes/mycred-functions.php:2202 ../plugins/mycred-hook-buddypress-media.
3967
  #: php:166
3968
  msgid "Photo Upload"
3969
  msgstr "Subir Foto"
3970
 
3971
- #: ../includes/mycred-functions.php:2203 ../plugins/mycred-hook-buddypress-media.
3972
  #: php:176
3973
  msgid "Video Upload"
3974
  msgstr "Subir Video"
3975
 
3976
- #: ../includes/mycred-functions.php:2204 ../plugins/mycred-hook-buddypress-media.
3977
  #: php:186
3978
  msgid "Music Upload"
3979
  msgstr "Subir Música"
3980
 
3981
- #: ../includes/mycred-functions.php:2208
3982
  msgid "New Link"
3983
  msgstr ""
3984
 
3985
- #: ../includes/mycred-functions.php:2209
3986
  msgid "Link Voting"
3987
  msgstr ""
3988
 
3989
- #: ../includes/mycred-functions.php:2210
3990
  msgid "Link Update"
3991
  msgstr ""
3992
 
3993
- #: ../includes/mycred-functions.php:2214
3994
  msgid "New Forum (bbPress)"
3995
  msgstr ""
3996
 
3997
- #: ../includes/mycred-functions.php:2215
3998
  msgid "New Forum Topic (bbPress)"
3999
  msgstr ""
4000
 
4001
- #: ../includes/mycred-functions.php:2216
4002
  msgid "Favorited Topic (bbPress)"
4003
  msgstr ""
4004
 
4005
- #: ../includes/mycred-functions.php:2217
4006
  msgid "New Topic Reply (bbPress)"
4007
  msgstr ""
4008
 
4009
- #: ../includes/mycred-functions.php:2221
4010
  msgid "Form Submission (Contact Form 7)"
4011
  msgstr ""
4012
 
4013
- #: ../includes/mycred-functions.php:2224
4014
  msgid "Form Submission (Gravity Form)"
4015
  msgstr ""
4016
 
4017
- #: ../includes/mycred-functions.php:2227
4018
  msgid "New Forum Topic (SimplePress)"
4019
  msgstr ""
4020
 
4021
- #: ../includes/mycred-functions.php:2228
4022
  msgid "New Forum Post (SimplePress)"
4023
  msgstr ""
4024
 
4025
- #: ../includes/mycred-functions.php:2232
4026
  msgid "Poll Voting"
4027
  msgstr ""
4028
 
4029
- #: ../includes/mycred-functions.php:2235
4030
  msgid "Sending an Invite"
4031
  msgstr ""
4032
 
4033
- #: ../includes/mycred-functions.php:2236
4034
  msgid "Accepting an Invite"
4035
  msgstr ""
4036
 
4037
- #: ../includes/mycred-functions.php:2242
4038
  msgid "Banking Payout"
4039
  msgstr ""
4040
 
4041
- #: ../includes/mycred-functions.php:2245
4042
  msgid "buyCRED Purchase (PayPal Standard)"
4043
  msgstr ""
4044
 
4045
- #: ../includes/mycred-functions.php:2246
4046
  msgid "buyCRED Purchase (Skrill)"
4047
  msgstr ""
4048
 
4049
- #: ../includes/mycred-functions.php:2247
4050
  msgid "buyCRED Purchase (Zombaio)"
4051
  msgstr ""
4052
 
4053
- #: ../includes/mycred-functions.php:2248
4054
  msgid "buyCRED Purchase (NETBilling)"
4055
  msgstr ""
4056
 
4057
- #: ../includes/mycred-functions.php:2249
4058
  msgid "buyCRED Purchase (BitPay)"
4059
  msgstr ""
4060
 
4061
- #: ../includes/mycred-functions.php:2254
4062
  msgid "Coupon Purchase"
4063
  msgstr ""
4064
 
4065
- #: ../includes/mycred-functions.php:2257
4066
  msgid "Store Purchase (WooCommerce)"
4067
  msgstr ""
4068
 
4069
- #: ../includes/mycred-functions.php:2258
4070
  msgid "Store Purchase (MarketPress)"
4071
  msgstr ""
4072
 
4073
- #: ../includes/mycred-functions.php:2259
4074
  msgid "Store Purchase (WP E-Commerce)"
4075
  msgstr ""
4076
 
4077
- #: ../includes/mycred-functions.php:2264
4078
  msgid "Event Payment (Event Espresso)"
4079
  msgstr ""
4080
 
4081
- #: ../includes/mycred-functions.php:2265
4082
  msgid "Event Sale (Event Espresso)"
4083
  msgstr ""
4084
 
4085
- #: ../includes/mycred-functions.php:2269
4086
  msgid "Event Payment (Events Manager)"
4087
  msgstr ""
4088
 
4089
- #: ../includes/mycred-functions.php:2270
4090
  msgid "Event Sale (Events Manager)"
4091
  msgstr ""
4092
 
4093
- #: ../includes/mycred-functions.php:2274
4094
  msgid "Content Purchase / Sale"
4095
  msgstr ""
4096
 
4097
- #: ../includes/mycred-functions.php:2281
4098
  msgid "Manual Adjustment by Admin"
4099
  msgstr ""
4100
 
@@ -4378,7 +4386,7 @@ msgstr "No hay opciones para exportar."
4378
  msgid "Entry"
4379
  msgstr "Entrada"
4380
 
4381
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:464
4382
  msgid "User Missing"
4383
  msgstr "Usuario Ausente"
4384
 
@@ -4608,60 +4616,60 @@ msgstr "Error - Inténtelo de nuevo."
4608
  msgid "A video ID is required for this shortcode"
4609
  msgstr "Este código corto (shortcode) precisa un ID del video."
4610
 
4611
- #: ../includes/mycred-shortcodes.php:861 ../includes/mycred-shortcodes.php:955
4612
  msgid "Point types not found."
4613
  msgstr ""
4614
 
4615
- #: ../includes/mycred-shortcodes.php:867 ../includes/mycred-shortcodes.php:875 ..
4616
- #: includes/mycred-shortcodes.php:967 ../includes/mycred-shortcodes.php:987
4617
  #, php-format
4618
  msgid "You are excluded from using %s."
4619
  msgstr ""
4620
 
4621
- #: ../includes/mycred-shortcodes.php:871 ../includes/mycred-shortcodes.php:977
4622
  msgid "Your balance is too low to use this feature."
4623
  msgstr ""
4624
 
4625
- #: ../includes/mycred-shortcodes.php:892
4626
  #, php-format
4627
  msgid "Convert <span>%s</span> to <span>%s</span>"
4628
  msgstr ""
4629
 
4630
- #: ../includes/mycred-shortcodes.php:901
4631
  #, php-format
4632
  msgid "Your current %s balance"
4633
  msgstr ""
4634
 
4635
- #: ../includes/mycred-shortcodes.php:909
4636
  #, php-format
4637
  msgid "Minimum %s"
4638
  msgstr ""
4639
 
4640
- #: ../includes/mycred-shortcodes.php:913
4641
  #, php-format
4642
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4643
  msgstr ""
4644
 
4645
- #: ../includes/mycred-shortcodes.php:919
4646
  msgid "Exchange"
4647
  msgstr ""
4648
 
4649
- #: ../includes/mycred-shortcodes.php:1000
4650
  #, php-format
4651
  msgid "You must exchange at least %s!"
4652
  msgstr ""
4653
 
4654
- #: ../includes/mycred-shortcodes.php:1022
4655
  #, php-format
4656
  msgid "Exchange from %s"
4657
  msgstr ""
4658
 
4659
- #: ../includes/mycred-shortcodes.php:1034
4660
  #, php-format
4661
  msgid "Exchange to %s"
4662
  msgstr ""
4663
 
4664
- #: ../includes/mycred-shortcodes.php:1042
4665
  #, php-format
4666
  msgid "You have successfully exchanged %s into %s."
4667
  msgstr ""
@@ -5200,10 +5208,21 @@ msgstr ""
5200
 
5201
  #: ../modules/mycred-module-hooks.php:101
5202
  #, php-format
 
 
 
 
 
 
 
 
 
 
 
5203
  msgid "%plural% for logins"
5204
  msgstr "%plural% para ingresos"
5205
 
5206
- #: ../modules/mycred-module-hooks.php:102
5207
  #, php-format
5208
  msgid ""
5209
  "Award %_plural% for logging in to your website. You can also set an optional "
@@ -5212,39 +5231,39 @@ msgstr ""
5212
  "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
5213
  "ajustar un limíte opcional."
5214
 
5215
- #: ../modules/mycred-module-hooks.php:108
5216
  #, php-format
5217
  msgid "%plural% for publishing content"
5218
  msgstr "%plural% por publicar contenido"
5219
 
5220
- #: ../modules/mycred-module-hooks.php:109
5221
  #, php-format
5222
  msgid ""
5223
  "Award %_plural% for publishing content on your website. If your custom post "
5224
  "type is not shown bellow, make sure it is set to \"Public\"."
5225
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
5226
 
5227
- #: ../modules/mycred-module-hooks.php:115
5228
  #, php-format
5229
  msgid "%plural% for comments"
5230
  msgstr "%plural% por comentarios"
5231
 
5232
- #: ../modules/mycred-module-hooks.php:115
5233
  #, php-format
5234
  msgid "%plural% for Disqus comments"
5235
  msgstr "%plural% por comentarios Disqus"
5236
 
5237
- #: ../modules/mycred-module-hooks.php:116
5238
  #, php-format
5239
  msgid "Award %_plural% for making comments."
5240
  msgstr "Concede %_plural% por hacer comentarios."
5241
 
5242
- #: ../modules/mycred-module-hooks.php:122
5243
  #, php-format
5244
  msgid "%plural% for clicking on links"
5245
  msgstr "%plural% por hacer clic sobre enlaces"
5246
 
5247
- #: ../modules/mycred-module-hooks.php:123
5248
  msgid ""
5249
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5250
  "shortcode."
@@ -5252,12 +5271,12 @@ msgstr ""
5252
  "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
5253
  "por el [mycred_link] código corto (shortcode)."
5254
 
5255
- #: ../modules/mycred-module-hooks.php:129
5256
  #, php-format
5257
  msgid "%plural% for viewing Videos"
5258
  msgstr "%plural% por ver videos"
5259
 
5260
- #: ../modules/mycred-module-hooks.php:130
5261
  msgid ""
5262
  "Award %_plural% to users who watches videos embedded using the "
5263
  "[mycred_video] shortcode."
@@ -5265,23 +5284,23 @@ msgstr ""
5265
  "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
5266
  "el [mycred_link] código corto (shortcode)."
5267
 
5268
- #: ../modules/mycred-module-hooks.php:136
5269
  #, php-format
5270
  msgid "%plural% for referrals"
5271
  msgstr "%plural% por referencias (o recomendaciones)"
5272
 
5273
- #: ../modules/mycred-module-hooks.php:137
5274
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5275
  msgstr ""
5276
  "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
5277
  "miembros inscritos."
5278
 
5279
- #: ../modules/mycred-module-hooks.php:170
5280
  #, php-format
5281
  msgid "%s Hooks"
5282
  msgstr "Ganchos de %s"
5283
 
5284
- #: ../modules/mycred-module-hooks.php:173
5285
  msgid ""
5286
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5287
  "depending on their actions around your website."
@@ -5289,66 +5308,96 @@ msgstr ""
5289
  "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
5290
  "usuario, dependiendo de sus acciones en tu sitio web."
5291
 
5292
- #: ../modules/mycred-module-hooks.php:345 ../modules/mycred-module-hooks.php:439 .
5293
- #: ./modules/mycred-module-hooks.php:751 ../modules/mycred-module-hooks.php:764 ..
5294
- #: modules/mycred-module-hooks.php:800 ../modules/mycred-module-hooks.php:1180 ..
5295
- #: modules/mycred-module-hooks.php:1197 ../modules/mycred-module-hooks.php:1214 .
5296
- #: ./modules/mycred-module-hooks.php:2370 ../modules/mycred-module-hooks.php:2399
5297
- #: ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 .
5298
- #: ./plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ..
5299
- #: plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ..
5300
- #: plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ..
5301
- #: plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-
5302
- #: buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ..
5303
- #: plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-
5304
- #: buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ..
5305
- #: plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-
5306
- #: buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ..
5307
- #: plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-
5308
- #: buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ..
5309
- #: plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
5310
- #: buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-
5311
- #: hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ..
5312
- #: plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:
5313
- #: 446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-
5314
- #: buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-
5315
- #: hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ..
5316
- #: plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:
5317
- #: 978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-
5318
- #: buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ..
5319
- #: plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:
5320
- #: 1044 ../plugins/mycred-hook-contact-form7.php:141 ../plugins/mycred-hook-
5321
- #: gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.php:219 ..
5322
- #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-jetpack.php:
5323
- #: 506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-sharethis.
5324
- #: php:258 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-
5325
- #: simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ..
5326
- #: plugins/mycred-hook-simplepress.php:380
 
5327
  msgid "Log template"
5328
  msgstr "Plantilla de Registro"
5329
 
5330
- #: ../modules/mycred-module-hooks.php:640 ../modules/mycred-module-hooks.php:2378
5331
- #: ../modules/mycred-module-hooks.php:2407 ../plugins/mycred-hook-invite-anyone.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5332
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5333
  msgid "Limit"
5334
  msgstr "Límite"
5335
 
5336
- #: ../modules/mycred-module-hooks.php:745
5337
  #, php-format
5338
  msgid "%plural% for Posts"
5339
  msgstr "%plural% por Posts"
5340
 
5341
- #: ../modules/mycred-module-hooks.php:758
5342
  #, php-format
5343
  msgid "%plural% for Pages"
5344
  msgstr "%plural% por Paginas"
5345
 
5346
- #: ../modules/mycred-module-hooks.php:794
5347
  #, php-format
5348
  msgid "%plural% for %s"
5349
  msgstr "%plural% por %s"
5350
 
5351
- #: ../modules/mycred-module-hooks.php:1166
5352
  msgid ""
5353
  "%plural% are only awarded when your website has been synced with the Disqus "
5354
  "server!"
@@ -5356,30 +5405,25 @@ msgstr ""
5356
  "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
5357
  "sincronizado con el servidor de Disqus!"
5358
 
5359
- #: ../modules/mycred-module-hooks.php:1171 ../modules/mycred-module-hooks.php:
5360
- #: 1188 ../modules/mycred-module-hooks.php:1205
5361
  msgid "Comment Author"
5362
  msgstr "Autor del Comentario"
5363
 
5364
- #: ../modules/mycred-module-hooks.php:1175 ../modules/mycred-module-hooks.php:
5365
- #: 1192 ../modules/mycred-module-hooks.php:1209
5366
- msgid "Content Author"
5367
- msgstr "Autor del Contenido"
5368
-
5369
- #: ../modules/mycred-module-hooks.php:1185
5370
  msgid "Comment Marked SPAM"
5371
  msgstr "Comentario Marcado como SPAM"
5372
 
5373
- #: ../modules/mycred-module-hooks.php:1202
5374
  msgid "Trashed / Unapproved Comments"
5375
  msgstr "Comentarios Destrozados / No Aprobados"
5376
 
5377
- #: ../modules/mycred-module-hooks.php:1222
5378
  msgid "Limit per post"
5379
  msgstr "Límite por Entrada"
5380
 
5381
  #. what is the Spanish word for "post"? o anglicismo?
5382
- #: ../modules/mycred-module-hooks.php:1224
5383
  msgid ""
5384
  "The number of comments per post that grants %_plural% to the comment author. "
5385
  "Use zero for unlimited."
@@ -5387,17 +5431,17 @@ msgstr ""
5387
  "El numero de comentarios por cada post que concede %_plural% al autor del "
5388
  "comentario. Utilice cero para un número ilimitado"
5389
 
5390
- #: ../modules/mycred-module-hooks.php:1228
5391
  msgid "Limit per day"
5392
  msgstr "Límite por día"
5393
 
5394
- #: ../modules/mycred-module-hooks.php:1230
5395
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5396
  msgstr ""
5397
  "Número de comentarios diarios que conceden %_plural%. Utilice cero para un "
5398
  "número ilimitado."
5399
 
5400
- #: ../modules/mycred-module-hooks.php:1235
5401
  msgid ""
5402
  "%plural% is to be awarded even when comment authors reply to their own "
5403
  "comment."
@@ -5405,15 +5449,15 @@ msgstr ""
5405
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
5406
  "comentario."
5407
 
5408
- #: ../modules/mycred-module-hooks.php:1306
5409
  msgid "Once for each unique URL"
5410
  msgstr "Una sola vez para cada única URL"
5411
 
5412
- #: ../modules/mycred-module-hooks.php:1307
5413
  msgid "Once for each unique link id"
5414
  msgstr "Una vez para cada id del enlace único "
5415
 
5416
- #: ../modules/mycred-module-hooks.php:1500
5417
  msgid ""
5418
  "The default amount to award for clicking on links. You can override this in "
5419
  "the shortcode."
@@ -5421,16 +5465,16 @@ msgstr ""
5421
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
5422
  "anular esto con el 'shortcode' (código corto)."
5423
 
5424
- #: ../modules/mycred-module-hooks.php:1507
5425
  #, php-format
5426
  msgid "Custom tags: %url%, %title% or %id%."
5427
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
5428
 
5429
- #: ../modules/mycred-module-hooks.php:1518 ../modules/mycred-module-hooks.php:2481
5430
  msgid "Note!"
5431
  msgstr "¡Atención!"
5432
 
5433
- #: ../modules/mycred-module-hooks.php:1518
5434
  msgid ""
5435
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5436
  "generate one automatically based on the value set under href. If you are "
@@ -5442,44 +5486,44 @@ msgstr ""
5442
  "valor fijado en href. Si estas utilizando esta función para \"compartir\" "
5443
  "contenidos, se recomienda que limites por ID."
5444
 
5445
- #: ../modules/mycred-module-hooks.php:1520 ../modules/mycred-module-hooks.php:1878
5446
  msgid "Available Shortcode"
5447
  msgstr "Código corto Disponible"
5448
 
5449
- #: ../modules/mycred-module-hooks.php:1842
5450
  msgid "Amount to award for viewing videos."
5451
  msgstr "Cantidad a ceder para ver videos."
5452
 
5453
- #: ../modules/mycred-module-hooks.php:1852
5454
  msgid "Award Logic"
5455
  msgstr "Lógica de Concesión"
5456
 
5457
- #: ../modules/mycred-module-hooks.php:1854
5458
  #, php-format
5459
  msgid "Select when %_plural% should be awarded or deducted."
5460
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
5461
 
5462
- #: ../modules/mycred-module-hooks.php:1855
5463
  msgid "Play - As soon as video starts playing."
5464
  msgstr "Play - En cuanto el video empiece a reproducirse."
5465
 
5466
- #: ../modules/mycred-module-hooks.php:1856
5467
  msgid "Full - First when the entire video has played."
5468
  msgstr "Completo - Primero cuando el video entero se haya reproducido."
5469
 
5470
- #: ../modules/mycred-module-hooks.php:1857
5471
  msgid "Interval - For each x number of seconds watched."
5472
  msgstr "Intervalo - Para cada x numero de segundos vistos."
5473
 
5474
- #: ../modules/mycred-module-hooks.php:1862
5475
  msgid "Number of seconds"
5476
  msgstr "Numero de segundos"
5477
 
5478
- #: ../modules/mycred-module-hooks.php:1869
5479
  msgid "Leniency"
5480
  msgstr "Lenidad"
5481
 
5482
- #: ../modules/mycred-module-hooks.php:1871
5483
  msgid ""
5484
  "The maximum percentage a users view of a movie can differ from the actual "
5485
  "length."
@@ -5487,7 +5531,7 @@ msgstr ""
5487
  "El porcentaje máximo medido que un usuario vea puede variar con la duración "
5488
  "actual del video."
5489
 
5490
- #: ../modules/mycred-module-hooks.php:1874
5491
  msgid ""
5492
  "Do not set this value to zero! A lot of thing can happen while a user "
5493
  "watches a movie and sometimes a few seconds can drop of the counter due to "
@@ -5497,75 +5541,75 @@ msgstr ""
5497
  "usuario ve una película y a veces la contador puede disminuir por pocos "
5498
  "segundos por falta de buffering o por errores de reproducción."
5499
 
5500
- #: ../modules/mycred-module-hooks.php:1942
5501
  msgid "Affiliate Program"
5502
  msgstr "Programa de Afiliados"
5503
 
5504
- #: ../modules/mycred-module-hooks.php:1951
5505
  msgid "Per Day"
5506
  msgstr "Por Día"
5507
 
5508
- #: ../modules/mycred-module-hooks.php:2063
5509
  msgid "Link"
5510
  msgstr "Enlace"
5511
 
5512
- #: ../modules/mycred-module-hooks.php:2364
5513
  msgid "Referring Visitors"
5514
  msgstr "Referiendo Visitantes"
5515
 
5516
- #: ../modules/mycred-module-hooks.php:2388 ../modules/mycred-module-hooks.php:2417
5517
  msgid "The number of referrals each member can make. Use zero for unlimited."
5518
  msgstr ""
5519
  "El numero de referencias que cada miembro puede hacer. Utilice cero para "
5520
  "ilimitado."
5521
 
5522
- #: ../modules/mycred-module-hooks.php:2392 ../modules/mycred-module-hooks.php:2421
5523
  msgid "Referring Signups"
5524
  msgstr "Inscripciones a través de Referencias"
5525
 
5526
- #: ../modules/mycred-module-hooks.php:2396
5527
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5528
  msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
5529
 
5530
- #: ../modules/mycred-module-hooks.php:2423
5531
  msgid "Registrations are disabled."
5532
  msgstr "Se han deshabilitado inscripciones."
5533
 
5534
- #: ../modules/mycred-module-hooks.php:2430
5535
  msgid "Referral Links"
5536
  msgstr "Enlaces Referentes"
5537
 
5538
- #: ../modules/mycred-module-hooks.php:2434
5539
  msgid "Assign numeric referral IDs to each user."
5540
  msgstr "Asignar ID numerica referente a cada usuario."
5541
 
5542
- #: ../modules/mycred-module-hooks.php:2435 ../modules/mycred-module-hooks.php:2441
5543
  msgid "Example"
5544
  msgstr "Ejemplo"
5545
 
5546
- #: ../modules/mycred-module-hooks.php:2440
5547
  msgid "Assign usernames as IDs for each user."
5548
  msgstr "Asignar los nombres de usuario como ID para cada usuario."
5549
 
5550
- #: ../modules/mycred-module-hooks.php:2444
5551
  msgid "IP Limit"
5552
  msgstr "Límite de IP"
5553
 
5554
- #: ../modules/mycred-module-hooks.php:2448
5555
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5556
  msgstr ""
5557
  "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
5558
  "número ilimitado"
5559
 
5560
- #: ../modules/mycred-module-hooks.php:2452 ../modules/mycred-module-hooks.php:2485
5561
  msgid "BuddyPress Profile"
5562
  msgstr "Perfil de BuddyPress"
5563
 
5564
- #: ../modules/mycred-module-hooks.php:2455
5565
  msgid "Insert Link in users Profile"
5566
  msgstr "Insertar enlace en el perfil del usuario"
5567
 
5568
- #: ../modules/mycred-module-hooks.php:2456
5569
  msgid ""
5570
  "Option to inser the referral link in users profiles. Links will only be "
5571
  "visible to users viewing their own profiles or administrators."
@@ -5574,23 +5618,23 @@ msgstr ""
5574
  " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
5575
  "ven a sus propios perfiles."
5576
 
5577
- #: ../modules/mycred-module-hooks.php:2462
5578
  msgid "Leave empty to hide."
5579
  msgstr "Deje el campo vacío para ocultarlo."
5580
 
5581
- #: ../modules/mycred-module-hooks.php:2465
5582
  msgid "Description"
5583
  msgstr "Descripción"
5584
 
5585
- #: ../modules/mycred-module-hooks.php:2466
5586
  msgid "Optional description to insert under the link."
5587
  msgstr "Insertar la descripción opcional debajo del enlace."
5588
 
5589
- #: ../modules/mycred-module-hooks.php:2478
5590
  msgid "Profile Positioning"
5591
  msgstr "Posicionamiento del Perfil"
5592
 
5593
- #: ../modules/mycred-module-hooks.php:2480
5594
  msgid ""
5595
  "You can move around the referral link on your users profile by changing the "
5596
  "position. Increase to move up, decrease to move down."
@@ -5598,80 +5642,80 @@ msgstr ""
5598
  "Puedes moverte por el enlace de referencia en su perfil los usuarios "
5599
  "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
5600
 
5601
- #: ../modules/mycred-module-hooks.php:2481
5602
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5603
  msgstr ""
5604
  "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
5605
  "en el perfil del usuario!"
5606
 
5607
- #: ../modules/mycred-module-hooks.php:2487
5608
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5609
  msgstr "Requiere que BuddyPress Extended Profiles sea activado."
5610
 
5611
- #: ../modules/mycred-module-log.php:187 ../modules/mycred-module-log.php:208 ..
5612
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5613
  msgid "Access denied for this action"
5614
  msgstr "Acceso denegado para esta acción"
5615
 
5616
- #: ../modules/mycred-module-log.php:194
5617
  msgid "Row Deleted"
5618
  msgstr "Fila Borrado"
5619
 
5620
- #: ../modules/mycred-module-log.php:221
5621
  msgid "Log entry not found"
5622
  msgstr "No se encontro la entrada de registro "
5623
 
5624
- #: ../modules/mycred-module-log.php:234
5625
  msgid "Entry Updated"
5626
  msgstr "Entrada Actualizada"
5627
 
5628
- #: ../modules/mycred-module-log.php:288 ../modules/mycred-module-settings.php:436
5629
  msgid "Entries"
5630
  msgstr "Entradas"
5631
 
5632
- #: ../modules/mycred-module-log.php:303 ../modules/mycred-module-log.php:383 ..
5633
- #: modules/mycred-module-log.php:627 ../modules/mycred-module-settings.php:574
5634
  msgid "Export"
5635
  msgstr "Exportar"
5636
 
5637
- #: ../modules/mycred-module-log.php:309
5638
  msgid "Search results for"
5639
  msgstr "Buscar entre resultados por"
5640
 
5641
- #: ../modules/mycred-module-log.php:377
5642
  #, php-format
5643
  msgid "%s Log"
5644
  msgstr "Registro de %s"
5645
 
5646
- #: ../modules/mycred-module-log.php:502
5647
  msgid "Edit"
5648
  msgstr "Editar"
5649
 
5650
- #: ../modules/mycred-module-log.php:543
5651
  msgid "Time"
5652
  msgstr "Tiempo"
5653
 
5654
- #: ../modules/mycred-module-log.php:547
5655
  msgid "Current Log Entry"
5656
  msgstr "Entrada Actual de Registro"
5657
 
5658
- #: ../modules/mycred-module-log.php:549
5659
  msgid "The current saved log entry"
5660
  msgstr "La entrada guardada actual del registro"
5661
 
5662
- #: ../modules/mycred-module-log.php:552
5663
  msgid "Adjust Log Entry"
5664
  msgstr "Ajustar entrada de registro"
5665
 
5666
- #: ../modules/mycred-module-log.php:554
5667
  msgid "The new log entry"
5668
  msgstr "La nueva entrada de registro"
5669
 
5670
- #: ../modules/mycred-module-log.php:557
5671
  msgid "Update Log Entry"
5672
  msgstr "Actualiza la entrada de registro"
5673
 
5674
- #: ../modules/mycred-module-log.php:621
5675
  #, php-format
5676
  msgid "My %s History"
5677
  msgstr "Mi Historial de %s"
@@ -5914,8 +5958,8 @@ msgstr "%plural% por Nuevo Tema"
5914
  msgid "Forum authors can receive %_plural% for creating new topics."
5915
  msgstr "Autores "
5916
 
5917
- #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 .
5918
- #: ./plugins/mycred-hook-simplepress.php:336
5919
  #, php-format
5920
  msgid "%plural% for Topic Deletion"
5921
  msgstr "%plural% por Borrar Tema"
@@ -5951,6 +5995,11 @@ msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
5951
  msgid "Show users %_plural% balance in replies"
5952
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
5953
 
 
 
 
 
 
5954
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5955
  msgid "BuddyPress: Gallery Actions"
5956
  msgstr "BuddyPress: Acciones sobre Galerías"
@@ -6350,19 +6399,15 @@ msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
6350
  msgid "%plural% for Topic Post Deletion"
6351
  msgstr "%plural% por Borrar la Tema del Post"
6352
 
6353
- #: ../plugins/mycred-hook-woocommerce.php:65
6354
  msgid "Reward with %plural%"
6355
  msgstr ""
6356
 
6357
- #: ../plugins/mycred-hook-woocommerce.php:70
6358
- msgid "User is excluded from this point type."
6359
- msgstr ""
6360
-
6361
- #: ../plugins/mycred-hook-woocommerce.php:199
6362
  msgid "WooCommerce Product Reviews"
6363
  msgstr ""
6364
 
6365
- #: ../plugins/mycred-hook-woocommerce.php:200
6366
  #, php-format
6367
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6368
  msgstr ""
@@ -6392,3 +6437,5 @@ msgstr "WP-Polls"
6392
  #, php-format
6393
  msgid "Awards %_plural% for users voting in polls."
6394
  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: 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
  "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"
102
  msgstr "Entrada de registro actualizado"
103
 
104
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
105
+ #: notices.php:718 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
106
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
107
  msgid "Setup"
108
  msgstr "Configurar"
130
  msgstr "Este gancho no ha sido configurado"
131
 
132
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
133
+ #: 1558
134
  msgid "No limit"
135
  msgstr "Sin Limite"
136
 
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
157
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
158
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
159
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:868
160
  msgid "Select"
161
  msgstr "Seleccionar"
162
 
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"
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
 
530
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
531
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
532
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
533
+ #: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
534
+ #: modules/mycred-module-hooks.php:2098 ../plugins/mycred-hook-badgeOS.php:115 ..
535
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
536
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
537
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
538
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
539
+ #: php:298 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
540
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
541
  msgid "Log Template"
542
  msgstr "Plantilla de Registro"
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
 
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
 
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
 
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"
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
 
1611
  msgstr "Utilización"
1612
 
1613
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1614
+ #: transfer.php:243 ../modules/mycred-module-hooks.php:1472 ../modules/mycred-
1615
+ #: module-hooks.php:1763
1616
  msgid "Limits"
1617
  msgstr "imites"
1618
 
1625
  msgstr "todavia no utilizado"
1626
 
1627
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1628
+ #: php:2203
1629
  msgid "Total"
1630
  msgstr "Total"
1631
 
1803
  msgstr "Aplica el Cupón"
1804
 
1805
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1806
+ #: notices/myCRED-addon-email-notices.php:1115
1807
  msgid "Email Notice"
1808
  msgstr "Aviso por Correo Electrónico"
1809
 
1998
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
1999
 
2000
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
2001
+ #: notices/myCRED-addon-email-notices.php:782
2002
  msgid "Email Settings"
2003
  msgstr "Configuracion de Correo Electrónico"
2004
 
2005
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
2006
+ #: notices/myCRED-addon-email-notices.php:905
2007
  msgid "Senders Name:"
2008
  msgstr "Nombre del Remitente"
2009
 
2010
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
2011
+ #: notices/myCRED-addon-email-notices.php:907
2012
  msgid "Senders Email:"
2013
  msgstr "Correo Electrónico del Remitente:"
2014
 
2032
  msgid "Ignored if HTML is not allowed in emails."
2033
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
2034
 
2035
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:716 ../addons/email-
2036
+ #: notices/myCRED-addon-email-notices.php:831
2037
  msgid "Email Subject"
2038
  msgstr "Asunto del Correo Electrónico"
2039
 
2040
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:717
2041
  msgid "Status"
2042
  msgstr "Estatus"
2043
 
2044
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:737
2045
  msgid "Not Active"
2046
  msgstr "No esta Activo"
2047
 
2048
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:739
2049
  #, php-format
2050
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2051
  msgstr "Programada:<br /><strong>%1$s</strong>"
2052
 
2053
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:743
2054
  msgid "Active"
2055
  msgstr "Activo"
2056
 
2057
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:745
2058
  #, php-format
2059
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2060
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
2061
 
2062
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755
2063
  msgid "Email is sent when"
2064
  msgstr "el Correo Electrónico se envia cuando"
2065
 
2066
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757
2067
  msgid "Missing instance for this notice!"
2068
  msgstr "¡Falta una instancia para este aviso!"
2069
 
2070
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2071
+ #: notices/myCRED-addon-email-notices.php:768 ../addons/email-notices/myCRED-
2072
+ #: addon-email-notices.php:770
2073
  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
 
2082
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:768 ../addons/email-
2083
+ #: notices/myCRED-addon-email-notices.php:896
2084
  msgid "Administrator"
2085
  msgstr "Administrador"
2086
 
2087
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:770
2088
  msgid "Both Administrator and User"
2089
  msgstr "Tanto Administrador como Usuario"
2090
 
2091
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
2092
  msgid "Available Template Tags"
2093
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
2094
 
2095
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:802
2096
  msgid "Email Header"
2097
  msgstr "Encabezado del Correo Electrónico"
2098
 
2099
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:862
2100
  msgid "Send this email notice when..."
2101
  msgstr "Envia este aviso por correo electrónico cuando..."
2102
 
2103
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:893
2104
  msgid "Recipient:"
2105
  msgstr "Destinatario:"
2106
 
2107
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:897
2108
  msgid "Both"
2109
  msgstr "Ambos"
2110
 
2111
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:901 ..
2112
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2113
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2114
  #: module-settings.php:526
2115
  msgid "Label"
2116
  msgstr "Etiqueta"
2117
 
2118
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2119
  msgid "Reply-To Email:"
2120
  msgstr "Responder-A Correo Electrónico:"
2121
 
2122
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:915
2123
  msgid "Save"
2124
  msgstr "Guardar"
2125
 
2126
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:927
2127
  msgid "CSS Styling"
2128
  msgstr "Estilo CSS"
2129
 
2130
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:943
2131
  msgid "Site Related"
2132
  msgstr "Relacionado al Sitio"
2133
 
2134
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:944
2135
  msgid "Your websites title"
2136
  msgstr "Titulo de tu pagina web"
2137
 
2138
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:945
2139
  msgid "Your websites address"
2140
  msgstr "Dirección de tu pagina web"
2141
 
2142
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:946
2143
  msgid "Your websites tagline (description)"
2144
  msgstr "La descripción de tu sitio web (lema o eslogan)"
2145
 
2146
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:947
2147
  msgid "Your websites admin email"
2148
  msgstr "El correo electrónico de admin para tu pagina web"
2149
 
2150
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:948
2151
  msgid "Total number of blog members"
2152
  msgstr "Número total de miembros del blog"
2153
 
2154
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1026 ../addons/email-
2155
+ #: notices/myCRED-addon-email-notices.php:1029 ../addons/email-notices/myCRED-
2156
+ #: addon-email-notices.php:1035
2157
  msgid "Email Notice Updated."
2158
  msgstr ""
2159
 
2160
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1031
2161
  msgid "Email Notice Activated"
2162
  msgstr "Notificación atraves de Correo Electrónico Activado"
2163
 
2164
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1032
2165
  msgid "Email Notice Saved"
2166
  msgstr "Aviso por Correo Electrónico Guardado"
2167
 
2168
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2169
  msgid ""
2170
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2171
  "are not yet ready to use this email notice!"
2173
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
2174
  "si aun no estás listo para utilizar este aviso por email!"
2175
 
2176
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2177
  #, php-format
2178
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2179
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
2180
 
2181
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2182
  msgid "This email notice is active."
2183
  msgstr "Esta notificación de correo electrónico esta activada."
2184
 
2185
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1066
2186
  msgid "Settings saved."
2187
  msgstr ""
2188
 
2189
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1114
2190
  msgid "Unsubscribe"
2191
  msgstr ""
2192
 
2193
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1135
2194
  msgid "There are no email notifications yet."
2195
  msgstr ""
2196
 
2197
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1141
2198
  msgid "Save Changes"
2199
  msgstr ""
2200
 
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
  #: 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
 
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
 
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"
3210
  msgid "Assign Ranks to Users"
3211
  msgstr "Asignar Rango a los Usuarios"
3212
 
3213
+ #: ../addons/ranks/includes/mycred-rank-functions.php:229
3214
  msgid "mycred_get_users_rank() : Missing required user id"
3215
  msgstr "mycred_get_users_rank() : Falta el requisito id del usuario"
3216
 
3217
+ #: ../addons/ranks/includes/mycred-rank-functions.php:238
3218
  msgid "no rank"
3219
  msgstr "ningun rango"
3220
 
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
  "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
 
3608
  msgid "Show users limit"
3609
  msgstr "Mostrar los límites de usuarios"
3610
 
3611
+ #: ../addons/transfer/myCRED-addon-transfer.php:800
3612
  msgid "username"
3613
  msgstr "nombre de usuario"
3614
 
3615
+ #: ../addons/transfer/myCRED-addon-transfer.php:802
3616
  msgid "email"
3617
  msgstr "correo electrónico"
3618
 
3619
  #. is this recipients plural or recipient's with an apostrophe missing?
3620
+ #: ../addons/transfer/myCRED-addon-transfer.php:804
3621
  #, php-format
3622
  msgid "recipients %s"
3623
  msgstr "destinatarios %s"
3624
 
3625
+ #: ../addons/transfer/myCRED-addon-transfer.php:877
3626
  msgid "To:"
3627
  msgstr "A:"
3628
 
3629
+ #: ../addons/transfer/myCRED-addon-transfer.php:883
3630
  msgid "Amount:"
3631
  msgstr "Cantidad:"
3632
 
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
 
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
  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
 
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
 
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 ""
5208
 
5209
  #: ../modules/mycred-module-hooks.php:101
5210
  #, php-format
5211
+ msgid "%plural% for viewing content"
5212
+ msgstr ""
5213
+
5214
+ #: ../modules/mycred-module-hooks.php:102
5215
+ msgid ""
5216
+ "Award %_plural% to your users for viewing posts and / or %plural% to your "
5217
+ "authors for members viewing their content."
5218
+ msgstr ""
5219
+
5220
+ #: ../modules/mycred-module-hooks.php:108
5221
+ #, php-format
5222
  msgid "%plural% for logins"
5223
  msgstr "%plural% para ingresos"
5224
 
5225
+ #: ../modules/mycred-module-hooks.php:109
5226
  #, php-format
5227
  msgid ""
5228
  "Award %_plural% for logging in to your website. You can also set an optional "
5231
  "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
5232
  "ajustar un limíte opcional."
5233
 
5234
+ #: ../modules/mycred-module-hooks.php:115
5235
  #, php-format
5236
  msgid "%plural% for publishing content"
5237
  msgstr "%plural% por publicar contenido"
5238
 
5239
+ #: ../modules/mycred-module-hooks.php:116
5240
  #, php-format
5241
  msgid ""
5242
  "Award %_plural% for publishing content on your website. If your custom post "
5243
  "type is not shown bellow, make sure it is set to \"Public\"."
5244
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
5245
 
5246
+ #: ../modules/mycred-module-hooks.php:122
5247
  #, php-format
5248
  msgid "%plural% for comments"
5249
  msgstr "%plural% por comentarios"
5250
 
5251
+ #: ../modules/mycred-module-hooks.php:122
5252
  #, php-format
5253
  msgid "%plural% for Disqus comments"
5254
  msgstr "%plural% por comentarios Disqus"
5255
 
5256
+ #: ../modules/mycred-module-hooks.php:123
5257
  #, php-format
5258
  msgid "Award %_plural% for making comments."
5259
  msgstr "Concede %_plural% por hacer comentarios."
5260
 
5261
+ #: ../modules/mycred-module-hooks.php:129
5262
  #, php-format
5263
  msgid "%plural% for clicking on links"
5264
  msgstr "%plural% por hacer clic sobre enlaces"
5265
 
5266
+ #: ../modules/mycred-module-hooks.php:130
5267
  msgid ""
5268
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5269
  "shortcode."
5271
  "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
5272
  "por el [mycred_link] código corto (shortcode)."
5273
 
5274
+ #: ../modules/mycred-module-hooks.php:136
5275
  #, php-format
5276
  msgid "%plural% for viewing Videos"
5277
  msgstr "%plural% por ver videos"
5278
 
5279
+ #: ../modules/mycred-module-hooks.php:137
5280
  msgid ""
5281
  "Award %_plural% to users who watches videos embedded using the "
5282
  "[mycred_video] shortcode."
5284
  "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
5285
  "el [mycred_link] código corto (shortcode)."
5286
 
5287
+ #: ../modules/mycred-module-hooks.php:143
5288
  #, php-format
5289
  msgid "%plural% for referrals"
5290
  msgstr "%plural% por referencias (o recomendaciones)"
5291
 
5292
+ #: ../modules/mycred-module-hooks.php:144
5293
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5294
  msgstr ""
5295
  "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
5296
  "miembros inscritos."
5297
 
5298
+ #: ../modules/mycred-module-hooks.php:177
5299
  #, php-format
5300
  msgid "%s Hooks"
5301
  msgstr "Ganchos de %s"
5302
 
5303
+ #: ../modules/mycred-module-hooks.php:180
5304
  msgid ""
5305
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5306
  "depending on their actions around your website."
5308
  "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
5309
  "usuario, dependiendo de sus acciones en tu sitio web."
5310
 
5311
+ #: ../modules/mycred-module-hooks.php:352 ../modules/mycred-module-hooks.php:446 .
5312
+ #: ./modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:622 ..
5313
+ #: modules/mycred-module-hooks.php:684 ../modules/mycred-module-hooks.php:1004 ..
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.
5321
+ #: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
5322
+ #: buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ..
5323
+ #: plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-
5324
+ #: buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ..
5325
+ #: plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-
5326
+ #: buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ..
5327
+ #: plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-
5328
+ #: buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ..
5329
+ #: plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-
5330
+ #: buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ..
5331
+ #: plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:
5332
+ #: 407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-
5333
+ #: buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-
5334
+ #: hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ..
5335
+ #: plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:
5336
+ #: 939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-
5337
+ #: buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-
5338
+ #: hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ..
5339
+ #: plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:
5340
+ #: 1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-
5341
+ #: form7.php:141 ../plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-
5342
+ #: hook-invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:240 ..
5343
+ #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5344
+ #: plugins/mycred-hook-sharethis.php:258 ../plugins/mycred-hook-simplepress.php:
5345
+ #: 330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-
5346
+ #: simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
5347
  msgid "Log template"
5348
  msgstr "Plantilla de Registro"
5349
 
5350
+ #: ../modules/mycred-module-hooks.php:586
5351
+ #, php-format
5352
+ msgid "%plural% for viewing Posts"
5353
+ msgstr ""
5354
+
5355
+ #: ../modules/mycred-module-hooks.php:589 ../modules/mycred-module-hooks.php:600 .
5356
+ #: ./modules/mycred-module-hooks.php:614 ../modules/mycred-module-hooks.php:625 ..
5357
+ #: modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:687
5358
+ msgid "Member"
5359
+ msgstr ""
5360
+
5361
+ #: ../modules/mycred-module-hooks.php:593 ../modules/mycred-module-hooks.php:606 .
5362
+ #: ./modules/mycred-module-hooks.php:618 ../modules/mycred-module-hooks.php:631 ..
5363
+ #: modules/mycred-module-hooks.php:680 ../modules/mycred-module-hooks.php:693 ..
5364
+ #: modules/mycred-module-hooks.php:1428 ../modules/mycred-module-hooks.php:1445 .
5365
+ #: ./modules/mycred-module-hooks.php:1462
5366
+ msgid "Content Author"
5367
+ msgstr "Autor del Contenido"
5368
+
5369
+ #: ../modules/mycred-module-hooks.php:611
5370
+ #, php-format
5371
+ msgid "%plural% for viewing Pages"
5372
+ msgstr ""
5373
+
5374
+ #: ../modules/mycred-module-hooks.php:673
5375
+ #, php-format
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"
5384
 
5385
+ #: ../modules/mycred-module-hooks.php:998
5386
  #, php-format
5387
  msgid "%plural% for Posts"
5388
  msgstr "%plural% por Posts"
5389
 
5390
+ #: ../modules/mycred-module-hooks.php:1011
5391
  #, php-format
5392
  msgid "%plural% for Pages"
5393
  msgstr "%plural% por Paginas"
5394
 
5395
+ #: ../modules/mycred-module-hooks.php:1047
5396
  #, php-format
5397
  msgid "%plural% for %s"
5398
  msgstr "%plural% por %s"
5399
 
5400
+ #: ../modules/mycred-module-hooks.php:1419
5401
  msgid ""
5402
  "%plural% are only awarded when your website has been synced with the Disqus "
5403
  "server!"
5405
  "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
5406
  "sincronizado con el servidor de Disqus!"
5407
 
5408
+ #: ../modules/mycred-module-hooks.php:1424 ../modules/mycred-module-hooks.php:
5409
+ #: 1441 ../modules/mycred-module-hooks.php:1458
5410
  msgid "Comment Author"
5411
  msgstr "Autor del Comentario"
5412
 
5413
+ #: ../modules/mycred-module-hooks.php:1438
 
 
 
 
 
5414
  msgid "Comment Marked SPAM"
5415
  msgstr "Comentario Marcado como SPAM"
5416
 
5417
+ #: ../modules/mycred-module-hooks.php:1455
5418
  msgid "Trashed / Unapproved Comments"
5419
  msgstr "Comentarios Destrozados / No Aprobados"
5420
 
5421
+ #: ../modules/mycred-module-hooks.php:1475
5422
  msgid "Limit per post"
5423
  msgstr "Límite por Entrada"
5424
 
5425
  #. what is the Spanish word for "post"? o anglicismo?
5426
+ #: ../modules/mycred-module-hooks.php:1477
5427
  msgid ""
5428
  "The number of comments per post that grants %_plural% to the comment author. "
5429
  "Use zero for unlimited."
5431
  "El numero de comentarios por cada post que concede %_plural% al autor del "
5432
  "comentario. Utilice cero para un número ilimitado"
5433
 
5434
+ #: ../modules/mycred-module-hooks.php:1481
5435
  msgid "Limit per day"
5436
  msgstr "Límite por día"
5437
 
5438
+ #: ../modules/mycred-module-hooks.php:1483
5439
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5440
  msgstr ""
5441
  "Número de comentarios diarios que conceden %_plural%. Utilice cero para un "
5442
  "número ilimitado."
5443
 
5444
+ #: ../modules/mycred-module-hooks.php:1488
5445
  msgid ""
5446
  "%plural% is to be awarded even when comment authors reply to their own "
5447
  "comment."
5449
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
5450
  "comentario."
5451
 
5452
+ #: ../modules/mycred-module-hooks.php:1559
5453
  msgid "Once for each unique URL"
5454
  msgstr "Una sola vez para cada única URL"
5455
 
5456
+ #: ../modules/mycred-module-hooks.php:1560
5457
  msgid "Once for each unique link id"
5458
  msgstr "Una vez para cada id del enlace único "
5459
 
5460
+ #: ../modules/mycred-module-hooks.php:1753
5461
  msgid ""
5462
  "The default amount to award for clicking on links. You can override this in "
5463
  "the shortcode."
5465
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
5466
  "anular esto con el 'shortcode' (código corto)."
5467
 
5468
+ #: ../modules/mycred-module-hooks.php:1760
5469
  #, php-format
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
 
5477
+ #: ../modules/mycred-module-hooks.php:1771
5478
  msgid ""
5479
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5480
  "generate one automatically based on the value set under href. If you are "
5486
  "valor fijado en href. Si estas utilizando esta función para \"compartir\" "
5487
  "contenidos, se recomienda que limites por ID."
5488
 
5489
+ #: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2131
5490
  msgid "Available Shortcode"
5491
  msgstr "Código corto Disponible"
5492
 
5493
+ #: ../modules/mycred-module-hooks.php:2095
5494
  msgid "Amount to award for viewing videos."
5495
  msgstr "Cantidad a ceder para ver videos."
5496
 
5497
+ #: ../modules/mycred-module-hooks.php:2105
5498
  msgid "Award Logic"
5499
  msgstr "Lógica de Concesión"
5500
 
5501
+ #: ../modules/mycred-module-hooks.php:2107
5502
  #, php-format
5503
  msgid "Select when %_plural% should be awarded or deducted."
5504
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
5505
 
5506
+ #: ../modules/mycred-module-hooks.php:2108
5507
  msgid "Play - As soon as video starts playing."
5508
  msgstr "Play - En cuanto el video empiece a reproducirse."
5509
 
5510
+ #: ../modules/mycred-module-hooks.php:2109
5511
  msgid "Full - First when the entire video has played."
5512
  msgstr "Completo - Primero cuando el video entero se haya reproducido."
5513
 
5514
+ #: ../modules/mycred-module-hooks.php:2110
5515
  msgid "Interval - For each x number of seconds watched."
5516
  msgstr "Intervalo - Para cada x numero de segundos vistos."
5517
 
5518
+ #: ../modules/mycred-module-hooks.php:2115
5519
  msgid "Number of seconds"
5520
  msgstr "Numero de segundos"
5521
 
5522
+ #: ../modules/mycred-module-hooks.php:2122
5523
  msgid "Leniency"
5524
  msgstr "Lenidad"
5525
 
5526
+ #: ../modules/mycred-module-hooks.php:2124
5527
  msgid ""
5528
  "The maximum percentage a users view of a movie can differ from the actual "
5529
  "length."
5531
  "El porcentaje máximo medido que un usuario vea puede variar con la duración "
5532
  "actual del video."
5533
 
5534
+ #: ../modules/mycred-module-hooks.php:2127
5535
  msgid ""
5536
  "Do not set this value to zero! A lot of thing can happen while a user "
5537
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5541
  "usuario ve una película y a veces la contador puede disminuir por pocos "
5542
  "segundos por falta de buffering o por errores de reproducción."
5543
 
5544
+ #: ../modules/mycred-module-hooks.php:2195
5545
  msgid "Affiliate Program"
5546
  msgstr "Programa de Afiliados"
5547
 
5548
+ #: ../modules/mycred-module-hooks.php:2204
5549
  msgid "Per Day"
5550
  msgstr "Por Día"
5551
 
5552
+ #: ../modules/mycred-module-hooks.php:2316
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
  " 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
  "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
 
5655
+ #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
5656
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5657
  msgid "Access denied for this action"
5658
  msgstr "Acceso denegado para esta acción"
5659
 
5660
+ #: ../modules/mycred-module-log.php:196
5661
  msgid "Row Deleted"
5662
  msgstr "Fila Borrado"
5663
 
5664
+ #: ../modules/mycred-module-log.php:223
5665
  msgid "Log entry not found"
5666
  msgstr "No se encontro la entrada de registro "
5667
 
5668
+ #: ../modules/mycred-module-log.php:236
5669
  msgid "Entry Updated"
5670
  msgstr "Entrada Actualizada"
5671
 
5672
+ #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:436
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
 
5681
+ #: ../modules/mycred-module-log.php:311
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"
5958
  msgid "Forum authors can receive %_plural% for creating new topics."
5959
  msgstr "Autores "
5960
 
5961
+ #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-simplepress.php:
5962
+ #: 336
5963
  #, php-format
5964
  msgid "%plural% for Topic Deletion"
5965
  msgstr "%plural% por Borrar Tema"
5995
  msgid "Show users %_plural% balance in replies"
5996
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
5997
 
5998
+ #: ../plugins/mycred-hook-bbPress.php:568
5999
+ #, php-format
6000
+ msgid "%plural% for Reply Deletion"
6001
+ msgstr ""
6002
+
6003
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
6004
  msgid "BuddyPress: Gallery Actions"
6005
  msgstr "BuddyPress: Acciones sobre Galerías"
6399
  msgid "%plural% for Topic Post Deletion"
6400
  msgstr "%plural% por Borrar la Tema del Post"
6401
 
6402
+ #: ../plugins/mycred-hook-woocommerce.php:67
6403
  msgid "Reward with %plural%"
6404
  msgstr ""
6405
 
6406
+ #: ../plugins/mycred-hook-woocommerce.php:197
 
 
 
 
6407
  msgid "WooCommerce Product Reviews"
6408
  msgstr ""
6409
 
6410
+ #: ../plugins/mycred-hook-woocommerce.php:198
6411
  #, php-format
6412
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6413
  msgstr ""
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."
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: Sat Jul 26 2014 20:55:33 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: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"
@@ -95,7 +95,7 @@ msgid "Log entry updated"
95
  msgstr ""
96
 
97
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
98
- #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
99
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
100
  msgid "Setup"
101
  msgstr "نصب"
@@ -121,7 +121,7 @@ msgid "This Hook has no settings"
121
  msgstr "این پنل تنظیمات ، چیزی برای تنظیم ندارد"
122
 
123
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
124
- #: 1305
125
  msgid "No limit"
126
  msgstr "بدون محدودیت"
127
 
@@ -147,7 +147,7 @@ msgstr "روزی یک بار ( نیمه شب ریست می شود )"
147
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
148
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
149
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
150
- #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
151
  msgid "Select"
152
  msgstr "انتخاب"
153
 
@@ -412,8 +412,8 @@ msgstr ""
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:164 ..
416
- #: modules/mycred-module-log.php:324 ../modules/mycred-module-log.php:577 ..
417
  #: modules/mycred-module-settings.php:312
418
  msgid "Access Denied"
419
  msgstr "دسترسی غیرمجاز می باشد"
@@ -440,12 +440,12 @@ msgstr ""
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:189
444
  msgid "Enable"
445
  msgstr "فعالسازی"
446
 
447
  #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
448
- #: php:204
449
  msgid "Update Changes"
450
  msgstr "به روزرسانی تغییرات"
451
 
@@ -518,13 +518,13 @@ msgstr "کمترین میزان مورد نیاز برای اعمال سود ."
518
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
519
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
520
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
521
- #: modules/mycred-module-hooks.php:633 ../modules/mycred-module-hooks.php:1503 ..
522
- #: modules/mycred-module-hooks.php:1845 ../plugins/mycred-hook-badgeOS.php:115 ..
523
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
524
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
525
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
526
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
527
- #: php:300 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
528
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
529
  msgid "Log Template"
530
  msgstr "نمونه لیست گزارش ( لوگ )"
@@ -563,8 +563,8 @@ msgstr "پرداخت به کاربران :"
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:769 ..
567
- #: includes/mycred-shortcodes.php:907
568
  msgid "Amount"
569
  msgstr "مقدار"
570
 
@@ -574,7 +574,7 @@ 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:1860
578
  msgid "Interval"
579
  msgstr "فاصله زمانی"
580
 
@@ -801,7 +801,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:2495
805
  msgid "Available Shortcodes"
806
  msgstr ""
807
 
@@ -963,7 +963,7 @@ 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:370 ../modules/mycred-
967
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
968
  msgid "Actions"
969
  msgstr "عملیات ها"
@@ -1404,7 +1404,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:2460
1408
  msgid "Title"
1409
  msgstr "عنوان"
1410
 
@@ -1596,8 +1596,8 @@ msgid "Usage"
1596
  msgstr ""
1597
 
1598
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1599
- #: transfer.php:243 ../modules/mycred-module-hooks.php:1219 ../modules/mycred-
1600
- #: module-hooks.php:1510
1601
  msgid "Limits"
1602
  msgstr "محدودیت ها"
1603
 
@@ -1610,7 +1610,7 @@ msgid "not yet used"
1610
  msgstr ""
1611
 
1612
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1613
- #: php:1950
1614
  msgid "Total"
1615
  msgstr ""
1616
 
@@ -1772,7 +1772,7 @@ msgid "Apply Coupon"
1772
  msgstr ""
1773
 
1774
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1775
- #: notices/myCRED-addon-email-notices.php:1104
1776
  msgid "Email Notice"
1777
  msgstr "اطلاعیه ایمیلی"
1778
 
@@ -1970,17 +1970,17 @@ msgstr ""
1970
  "نیز قابل ویرایش هستند ."
1971
 
1972
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1973
- #: notices/myCRED-addon-email-notices.php:771
1974
  msgid "Email Settings"
1975
  msgstr "تنظیمات ایمیل"
1976
 
1977
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1978
- #: notices/myCRED-addon-email-notices.php:894
1979
  msgid "Senders Name:"
1980
  msgstr "نام ارسال کننده :"
1981
 
1982
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1983
- #: notices/myCRED-addon-email-notices.php:896
1984
  msgid "Senders Email:"
1985
  msgstr "آدرس ایمیل ارسال کننده :"
1986
 
@@ -2007,140 +2007,140 @@ msgstr ""
2007
  "در صورتی که نمی خواید از HTML استفاده کنید ، توی این کادر چیزی وارد نفرمایید "
2008
  "."
2009
 
2010
- #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
2011
- #: notices/myCRED-addon-email-notices.php:820
2012
  msgid "Email Subject"
2013
  msgstr "موضوع ایمیل"
2014
 
2015
- #: ../addons/email-notices/myCRED-addon-email-notices.php:706
2016
  msgid "Status"
2017
  msgstr "وضعیت"
2018
 
2019
- #: ../addons/email-notices/myCRED-addon-email-notices.php:726
2020
  msgid "Not Active"
2021
  msgstr "غیرفعال"
2022
 
2023
- #: ../addons/email-notices/myCRED-addon-email-notices.php:728
2024
  #, php-format
2025
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2026
  msgstr "برنامه ریزی شده در : <br /><strong>%1$s</strong>"
2027
 
2028
- #: ../addons/email-notices/myCRED-addon-email-notices.php:732
2029
  msgid "Active"
2030
  msgstr "فعال"
2031
 
2032
- #: ../addons/email-notices/myCRED-addon-email-notices.php:734
2033
  #, php-format
2034
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2035
  msgstr "فعال - آخرین اجرا : <br /><strong>%1$s</strong>"
2036
 
2037
- #: ../addons/email-notices/myCRED-addon-email-notices.php:744
2038
  msgid "Email is sent when"
2039
  msgstr "ایمیل فرستاده وقتی فرستاده شود که"
2040
 
2041
- #: ../addons/email-notices/myCRED-addon-email-notices.php:746
2042
  msgid "Missing instance for this notice!"
2043
  msgstr "یکی از مراحل برای این اطلاعیه جا افتاده است !"
2044
 
2045
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
2046
- #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
2047
- #: addon-email-notices.php:759
2048
  msgid "Sent To"
2049
  msgstr "ارسال شده به"
2050
 
2051
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
2052
- #: notices/myCRED-addon-email-notices.php:884 ../includes/mycred-admin.php:764 ..
2053
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:542
2054
  msgid "User"
2055
  msgstr "کاربر"
2056
 
2057
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
2058
- #: notices/myCRED-addon-email-notices.php:885
2059
  msgid "Administrator"
2060
  msgstr "مدیر"
2061
 
2062
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
2063
  msgid "Both Administrator and User"
2064
  msgstr "هم کاربر و هم مدیر"
2065
 
2066
- #: ../addons/email-notices/myCRED-addon-email-notices.php:780
2067
  msgid "Available Template Tags"
2068
  msgstr "نمونه تگ های قابل استفاده"
2069
 
2070
- #: ../addons/email-notices/myCRED-addon-email-notices.php:791
2071
  msgid "Email Header"
2072
  msgstr "سربرگ ایمیل"
2073
 
2074
- #: ../addons/email-notices/myCRED-addon-email-notices.php:851
2075
  msgid "Send this email notice when..."
2076
  msgstr "این اطلاعیه ایمیلی زمانی ارسال شود که ..."
2077
 
2078
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
2079
  msgid "Recipient:"
2080
  msgstr "گیرندگان ایمیل :"
2081
 
2082
- #: ../addons/email-notices/myCRED-addon-email-notices.php:886
2083
  msgid "Both"
2084
  msgstr "هر دو"
2085
 
2086
- #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
2087
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2088
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2089
  #: module-settings.php:526
2090
  msgid "Label"
2091
  msgstr "برچسب ( اتیکت )"
2092
 
2093
- #: ../addons/email-notices/myCRED-addon-email-notices.php:898
2094
  msgid "Reply-To Email:"
2095
  msgstr "ایمیلی که پاسخ ها به آن ارسال می شود :"
2096
 
2097
- #: ../addons/email-notices/myCRED-addon-email-notices.php:904
2098
  msgid "Save"
2099
  msgstr "ذخیره"
2100
 
2101
- #: ../addons/email-notices/myCRED-addon-email-notices.php:916
2102
  msgid "CSS Styling"
2103
  msgstr "صفحه آرایی با CSS"
2104
 
2105
- #: ../addons/email-notices/myCRED-addon-email-notices.php:932
2106
  msgid "Site Related"
2107
  msgstr "مرتبط با سایت"
2108
 
2109
- #: ../addons/email-notices/myCRED-addon-email-notices.php:933
2110
  msgid "Your websites title"
2111
  msgstr "عنوان وبسایت شما"
2112
 
2113
- #: ../addons/email-notices/myCRED-addon-email-notices.php:934
2114
  msgid "Your websites address"
2115
  msgstr "آدرس وبسایت شما"
2116
 
2117
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
2118
  msgid "Your websites tagline (description)"
2119
  msgstr "شرح وبسایت شما"
2120
 
2121
- #: ../addons/email-notices/myCRED-addon-email-notices.php:936
2122
  msgid "Your websites admin email"
2123
  msgstr "آدرس ایمیل مدیر وبسایت شما"
2124
 
2125
- #: ../addons/email-notices/myCRED-addon-email-notices.php:937
2126
  msgid "Total number of blog members"
2127
  msgstr "تعداد کل کاربران سایت شما"
2128
 
2129
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
2130
- #: notices/myCRED-addon-email-notices.php:1018 ../addons/email-notices/myCRED-
2131
- #: addon-email-notices.php:1024
2132
  msgid "Email Notice Updated."
2133
  msgstr ""
2134
 
2135
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2136
  msgid "Email Notice Activated"
2137
  msgstr "اطلاعیه فعال شد"
2138
 
2139
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2140
  msgid "Email Notice Saved"
2141
  msgstr "اطلاعیه ذخیره شد"
2142
 
2143
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1040
2144
  msgid ""
2145
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2146
  "are not yet ready to use this email notice!"
@@ -2149,35 +2149,35 @@ msgstr ""
2149
  "استفاده از این اطلاعیه نیستید ، کلید \"ذخیره به عنوان پیش نویس\" پیشنهاد می "
2150
  "گردد ."
2151
 
2152
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1042
2153
  #, php-format
2154
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2155
  msgstr "این اطلاعیه در تاریخ زیر فعال می شود :<br /><strong>%1$s</strong>"
2156
 
2157
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1044
2158
  msgid "This email notice is active."
2159
  msgstr "این اطلاعیه ی ایمیلی فعال شد ."
2160
 
2161
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2162
  msgid "Settings saved."
2163
  msgstr ""
2164
 
2165
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2166
  msgid "Unsubscribe"
2167
  msgstr ""
2168
 
2169
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1124
2170
  msgid "There are no email notifications yet."
2171
  msgstr ""
2172
 
2173
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1130
2174
  msgid "Save Changes"
2175
  msgstr ""
2176
 
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:765
2181
  msgid "Current Balance"
2182
  msgstr "میزان امتیازات اخیر"
2183
 
@@ -2304,7 +2304,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:912
2308
  msgid "Exchange Rate"
2309
  msgstr "نرخ مبادلات"
2310
 
@@ -2657,7 +2657,7 @@ msgid "Log"
2657
  msgstr "لیست گزارش ( لوگ )"
2658
 
2659
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2660
- #: includes/mycred-admin.php:735 ../includes/mycred-admin.php:770
2661
  msgid "Log Entry"
2662
  msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
2663
 
@@ -2740,7 +2740,7 @@ msgid "Reject"
2740
  msgstr "رد کردن"
2741
 
2742
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2743
- #: modules/mycred-module-log.php:502 ../modules/mycred-module-settings.php:488 ..
2744
  #: modules/mycred-module-settings.php:507
2745
  msgid "Delete"
2746
  msgstr "پاک کردن"
@@ -3179,11 +3179,11 @@ msgstr "پاکسازی همه ی مدال ها"
3179
  msgid "Assign Ranks to Users"
3180
  msgstr "تخصیص دادن مدال به کاربران"
3181
 
3182
- #: ../addons/ranks/includes/mycred-rank-functions.php:197
3183
  msgid "mycred_get_users_rank() : Missing required user id"
3184
  msgstr "mycred_get_users_rank() : شناسه کاربر خواسته شده ، یافت نشد !"
3185
 
3186
- #: ../addons/ranks/includes/mycred-rank-functions.php:207
3187
  msgid "no rank"
3188
  msgstr "مدالی یافت نشد"
3189
 
@@ -3368,7 +3368,7 @@ msgstr ""
3368
  "امتیاز بیشتر را ندارید ."
3369
 
3370
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3371
- #: php:2277
3372
  msgid "Transfer"
3373
  msgstr "جابجایی"
3374
 
@@ -3405,7 +3405,7 @@ msgstr ""
3405
  "جابجایی امتیاز امکان پذیر نخواهد بود !"
3406
 
3407
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3408
- #: php:1009
3409
  msgid "Insufficient Funds. Please try a lower amount."
3410
  msgstr ""
3411
 
@@ -3571,24 +3571,24 @@ msgstr "نمایش میزان امتیاز کاربران"
3571
  msgid "Show users limit"
3572
  msgstr "نمایش محدودیت جابجایی امتیاز برای کاربران"
3573
 
3574
- #: ../addons/transfer/myCRED-addon-transfer.php:798
3575
  msgid "username"
3576
  msgstr "نام کاربری"
3577
 
3578
- #: ../addons/transfer/myCRED-addon-transfer.php:800
3579
  msgid "email"
3580
  msgstr "ایمیل"
3581
 
3582
- #: ../addons/transfer/myCRED-addon-transfer.php:802
3583
  #, php-format
3584
  msgid "recipients %s"
3585
  msgstr "گیرندگان %s"
3586
 
3587
- #: ../addons/transfer/myCRED-addon-transfer.php:875
3588
  msgid "To:"
3589
  msgstr "به :"
3590
 
3591
- #: ../addons/transfer/myCRED-addon-transfer.php:881
3592
  msgid "Amount:"
3593
  msgstr "مقدار امتیاز :"
3594
 
@@ -3640,8 +3640,8 @@ msgstr "بن شده ( محروم شده )"
3640
  msgid "Total: %s"
3641
  msgstr ""
3642
 
3643
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:252 ..
3644
- #: modules/mycred-module-log.php:253
3645
  msgid "History"
3646
  msgstr "لیست تغییرات"
3647
 
@@ -3713,15 +3713,15 @@ msgstr ""
3713
  msgid "%singular% balance"
3714
  msgstr ""
3715
 
3716
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:771
3717
  msgid "Update Balance"
3718
  msgstr "به روزرسانی میزان امتیاز"
3719
 
3720
- #: ../includes/mycred-admin.php:763
3721
  msgid "ID"
3722
  msgstr "شناسه"
3723
 
3724
- #: ../includes/mycred-admin.php:769
3725
  msgid "A positive or negative value"
3726
  msgstr "مقدار مثبت یا منفی"
3727
 
@@ -3773,290 +3773,298 @@ msgstr ""
3773
  msgid "Available Template Tags:"
3774
  msgstr ""
3775
 
3776
- #: ../includes/mycred-functions.php:1643
3777
  msgid "Entire Log"
3778
  msgstr ""
3779
 
3780
- #: ../includes/mycred-functions.php:1648 ../includes/mycred-functions.php:1649
3781
  msgid "Displayed Rows"
3782
  msgstr ""
3783
 
3784
- #: ../includes/mycred-functions.php:1653
3785
  msgid "Search Results"
3786
  msgstr ""
3787
 
3788
- #: ../includes/mycred-functions.php:1654
3789
  msgid "My Entire Log"
3790
  msgstr ""
3791
 
3792
- #: ../includes/mycred-functions.php:1774
3793
  msgid "ref empty"
3794
  msgstr "ارجاع ( استرداد ) خالی می باشد"
3795
 
3796
- #: ../includes/mycred-functions.php:1782
3797
  msgid "incorrect user id format"
3798
  msgstr "فرمت نامعتبر شناسه ی کاربر"
3799
 
3800
- #: ../includes/mycred-functions.php:1795
3801
  msgid "incorrect unix timestamp (from):"
3802
  msgstr ""
3803
 
3804
- #: ../includes/mycred-functions.php:1804
3805
  msgid "incorrect unix timestamp (to):"
3806
  msgstr ""
3807
 
3808
- #: ../includes/mycred-functions.php:2166
3809
  msgid "Website Registration"
3810
  msgstr ""
3811
 
3812
- #: ../includes/mycred-functions.php:2167
3813
  msgid "Website Visit"
3814
  msgstr ""
3815
 
3816
- #: ../includes/mycred-functions.php:2168
 
 
 
 
 
 
 
 
3817
  msgid "Logging in"
3818
  msgstr ""
3819
 
3820
- #: ../includes/mycred-functions.php:2169
3821
  msgid "Publishing Content"
3822
  msgstr ""
3823
 
3824
- #: ../includes/mycred-functions.php:2170 ../modules/mycred-module-hooks.php:1168
3825
  msgid "Approved Comment"
3826
  msgstr "نظرات تایید شده"
3827
 
3828
- #: ../includes/mycred-functions.php:2171
3829
  msgid "Unapproved Comment"
3830
  msgstr ""
3831
 
3832
- #: ../includes/mycred-functions.php:2172
3833
  msgid "SPAM Comment"
3834
  msgstr ""
3835
 
3836
- #: ../includes/mycred-functions.php:2173
3837
  msgid "Deleted Comment"
3838
  msgstr ""
3839
 
3840
- #: ../includes/mycred-functions.php:2174
3841
  msgid "Link Click"
3842
  msgstr ""
3843
 
3844
- #: ../includes/mycred-functions.php:2175
3845
  msgid "Watching Video"
3846
  msgstr ""
3847
 
3848
- #: ../includes/mycred-functions.php:2176
3849
  msgid "Visitor Referral"
3850
  msgstr ""
3851
 
3852
- #: ../includes/mycred-functions.php:2177
3853
  msgid "Signup Referral"
3854
  msgstr ""
3855
 
3856
- #: ../includes/mycred-functions.php:2181
3857
  msgid "New Profile Update"
3858
  msgstr ""
3859
 
3860
- #: ../includes/mycred-functions.php:2182
3861
  msgid "Avatar Upload"
3862
  msgstr ""
3863
 
3864
- #: ../includes/mycred-functions.php:2183
3865
  msgid "New Friendship"
3866
  msgstr ""
3867
 
3868
- #: ../includes/mycred-functions.php:2184
3869
  msgid "Ended Friendship"
3870
  msgstr ""
3871
 
3872
- #: ../includes/mycred-functions.php:2185
3873
  msgid "New Profile Comment"
3874
  msgstr ""
3875
 
3876
- #: ../includes/mycred-functions.php:2186
3877
  msgid "Profile Comment Deletion"
3878
  msgstr ""
3879
 
3880
- #: ../includes/mycred-functions.php:2187
3881
  msgid "New Message"
3882
  msgstr ""
3883
 
3884
- #: ../includes/mycred-functions.php:2188
3885
  msgid "Sending Gift"
3886
  msgstr ""
3887
 
3888
- #: ../includes/mycred-functions.php:2189
3889
  msgid "New Group"
3890
  msgstr ""
3891
 
3892
- #: ../includes/mycred-functions.php:2190
3893
  msgid "Deleted Group"
3894
  msgstr ""
3895
 
3896
- #: ../includes/mycred-functions.php:2191
3897
  msgid "New Group Forum Topic"
3898
  msgstr ""
3899
 
3900
- #: ../includes/mycred-functions.php:2192
3901
  msgid "Edit Group Forum Topic"
3902
  msgstr ""
3903
 
3904
- #: ../includes/mycred-functions.php:2193
3905
  msgid "New Group Forum Post"
3906
  msgstr ""
3907
 
3908
- #: ../includes/mycred-functions.php:2194
3909
  msgid "Edit Group Forum Post"
3910
  msgstr ""
3911
 
3912
- #: ../includes/mycred-functions.php:2195
3913
  msgid "Joining Group"
3914
  msgstr ""
3915
 
3916
- #: ../includes/mycred-functions.php:2196
3917
  msgid "Leaving Group"
3918
  msgstr ""
3919
 
3920
- #: ../includes/mycred-functions.php:2197
3921
  msgid "New Group Avatar"
3922
  msgstr ""
3923
 
3924
- #: ../includes/mycred-functions.php:2198
3925
  msgid "New Group Comment"
3926
  msgstr ""
3927
 
3928
- #: ../includes/mycred-functions.php:2202 ../plugins/mycred-hook-buddypress-media.
3929
  #: php:166
3930
  msgid "Photo Upload"
3931
  msgstr ""
3932
 
3933
- #: ../includes/mycred-functions.php:2203 ../plugins/mycred-hook-buddypress-media.
3934
  #: php:176
3935
  msgid "Video Upload"
3936
  msgstr ""
3937
 
3938
- #: ../includes/mycred-functions.php:2204 ../plugins/mycred-hook-buddypress-media.
3939
  #: php:186
3940
  msgid "Music Upload"
3941
  msgstr ""
3942
 
3943
- #: ../includes/mycred-functions.php:2208
3944
  msgid "New Link"
3945
  msgstr ""
3946
 
3947
- #: ../includes/mycred-functions.php:2209
3948
  msgid "Link Voting"
3949
  msgstr ""
3950
 
3951
- #: ../includes/mycred-functions.php:2210
3952
  msgid "Link Update"
3953
  msgstr ""
3954
 
3955
- #: ../includes/mycred-functions.php:2214
3956
  msgid "New Forum (bbPress)"
3957
  msgstr ""
3958
 
3959
- #: ../includes/mycred-functions.php:2215
3960
  msgid "New Forum Topic (bbPress)"
3961
  msgstr ""
3962
 
3963
- #: ../includes/mycred-functions.php:2216
3964
  msgid "Favorited Topic (bbPress)"
3965
  msgstr ""
3966
 
3967
- #: ../includes/mycred-functions.php:2217
3968
  msgid "New Topic Reply (bbPress)"
3969
  msgstr ""
3970
 
3971
- #: ../includes/mycred-functions.php:2221
3972
  msgid "Form Submission (Contact Form 7)"
3973
  msgstr ""
3974
 
3975
- #: ../includes/mycred-functions.php:2224
3976
  msgid "Form Submission (Gravity Form)"
3977
  msgstr ""
3978
 
3979
- #: ../includes/mycred-functions.php:2227
3980
  msgid "New Forum Topic (SimplePress)"
3981
  msgstr ""
3982
 
3983
- #: ../includes/mycred-functions.php:2228
3984
  msgid "New Forum Post (SimplePress)"
3985
  msgstr ""
3986
 
3987
- #: ../includes/mycred-functions.php:2232
3988
  msgid "Poll Voting"
3989
  msgstr ""
3990
 
3991
- #: ../includes/mycred-functions.php:2235
3992
  msgid "Sending an Invite"
3993
  msgstr ""
3994
 
3995
- #: ../includes/mycred-functions.php:2236
3996
  msgid "Accepting an Invite"
3997
  msgstr ""
3998
 
3999
- #: ../includes/mycred-functions.php:2242
4000
  msgid "Banking Payout"
4001
  msgstr ""
4002
 
4003
- #: ../includes/mycred-functions.php:2245
4004
  msgid "buyCRED Purchase (PayPal Standard)"
4005
  msgstr ""
4006
 
4007
- #: ../includes/mycred-functions.php:2246
4008
  msgid "buyCRED Purchase (Skrill)"
4009
  msgstr ""
4010
 
4011
- #: ../includes/mycred-functions.php:2247
4012
  msgid "buyCRED Purchase (Zombaio)"
4013
  msgstr ""
4014
 
4015
- #: ../includes/mycred-functions.php:2248
4016
  msgid "buyCRED Purchase (NETBilling)"
4017
  msgstr ""
4018
 
4019
- #: ../includes/mycred-functions.php:2249
4020
  msgid "buyCRED Purchase (BitPay)"
4021
  msgstr ""
4022
 
4023
- #: ../includes/mycred-functions.php:2254
4024
  msgid "Coupon Purchase"
4025
  msgstr ""
4026
 
4027
- #: ../includes/mycred-functions.php:2257
4028
  msgid "Store Purchase (WooCommerce)"
4029
  msgstr ""
4030
 
4031
- #: ../includes/mycred-functions.php:2258
4032
  msgid "Store Purchase (MarketPress)"
4033
  msgstr ""
4034
 
4035
- #: ../includes/mycred-functions.php:2259
4036
  msgid "Store Purchase (WP E-Commerce)"
4037
  msgstr ""
4038
 
4039
- #: ../includes/mycred-functions.php:2264
4040
  msgid "Event Payment (Event Espresso)"
4041
  msgstr ""
4042
 
4043
- #: ../includes/mycred-functions.php:2265
4044
  msgid "Event Sale (Event Espresso)"
4045
  msgstr ""
4046
 
4047
- #: ../includes/mycred-functions.php:2269
4048
  msgid "Event Payment (Events Manager)"
4049
  msgstr ""
4050
 
4051
- #: ../includes/mycred-functions.php:2270
4052
  msgid "Event Sale (Events Manager)"
4053
  msgstr ""
4054
 
4055
- #: ../includes/mycred-functions.php:2274
4056
  msgid "Content Purchase / Sale"
4057
  msgstr ""
4058
 
4059
- #: ../includes/mycred-functions.php:2281
4060
  msgid "Manual Adjustment by Admin"
4061
  msgstr ""
4062
 
@@ -4344,7 +4352,7 @@ msgstr ""
4344
  msgid "Entry"
4345
  msgstr "ورودی"
4346
 
4347
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:464
4348
  msgid "User Missing"
4349
  msgstr "یافت نشدن کاربر"
4350
 
@@ -4571,60 +4579,60 @@ msgstr "خطا - لطفا مجددا تلاش کنید"
4571
  msgid "A video ID is required for this shortcode"
4572
  msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می باشد"
4573
 
4574
- #: ../includes/mycred-shortcodes.php:861 ../includes/mycred-shortcodes.php:955
4575
  msgid "Point types not found."
4576
  msgstr ""
4577
 
4578
- #: ../includes/mycred-shortcodes.php:867 ../includes/mycred-shortcodes.php:875 ..
4579
- #: includes/mycred-shortcodes.php:967 ../includes/mycred-shortcodes.php:987
4580
  #, php-format
4581
  msgid "You are excluded from using %s."
4582
  msgstr ""
4583
 
4584
- #: ../includes/mycred-shortcodes.php:871 ../includes/mycred-shortcodes.php:977
4585
  msgid "Your balance is too low to use this feature."
4586
  msgstr ""
4587
 
4588
- #: ../includes/mycred-shortcodes.php:892
4589
  #, php-format
4590
  msgid "Convert <span>%s</span> to <span>%s</span>"
4591
  msgstr ""
4592
 
4593
- #: ../includes/mycred-shortcodes.php:901
4594
  #, php-format
4595
  msgid "Your current %s balance"
4596
  msgstr ""
4597
 
4598
- #: ../includes/mycred-shortcodes.php:909
4599
  #, php-format
4600
  msgid "Minimum %s"
4601
  msgstr ""
4602
 
4603
- #: ../includes/mycred-shortcodes.php:913
4604
  #, php-format
4605
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4606
  msgstr ""
4607
 
4608
- #: ../includes/mycred-shortcodes.php:919
4609
  msgid "Exchange"
4610
  msgstr ""
4611
 
4612
- #: ../includes/mycred-shortcodes.php:1000
4613
  #, php-format
4614
  msgid "You must exchange at least %s!"
4615
  msgstr ""
4616
 
4617
- #: ../includes/mycred-shortcodes.php:1022
4618
  #, php-format
4619
  msgid "Exchange from %s"
4620
  msgstr ""
4621
 
4622
- #: ../includes/mycred-shortcodes.php:1034
4623
  #, php-format
4624
  msgid "Exchange to %s"
4625
  msgstr ""
4626
 
4627
- #: ../includes/mycred-shortcodes.php:1042
4628
  #, php-format
4629
  msgid "You have successfully exchanged %s into %s."
4630
  msgstr ""
@@ -5148,10 +5156,21 @@ msgstr ""
5148
 
5149
  #: ../modules/mycred-module-hooks.php:101
5150
  #, php-format
 
 
 
 
 
 
 
 
 
 
 
5151
  msgid "%plural% for logins"
5152
  msgstr "اهدای %_plural% برای وارد شدن به سایت"
5153
 
5154
- #: ../modules/mycred-module-hooks.php:102
5155
  #, php-format
5156
  msgid ""
5157
  "Award %_plural% for logging in to your website. You can also set an optional "
@@ -5160,12 +5179,12 @@ msgstr ""
5160
  "به کاربرانی که در سایت شما لوگین می کنند %_plural% جایزه دهید . البته می "
5161
  "توانید محدودیت های اختیاری هم برای این بخش تعیین کنید ."
5162
 
5163
- #: ../modules/mycred-module-hooks.php:108
5164
  #, php-format
5165
  msgid "%plural% for publishing content"
5166
  msgstr "اهدای %_plural% به کاربران ، برای انتشار مطلب در سایت شما"
5167
 
5168
- #: ../modules/mycred-module-hooks.php:109
5169
  #, php-format
5170
  msgid ""
5171
  "Award %_plural% for publishing content on your website. If your custom post "
@@ -5175,27 +5194,27 @@ msgstr ""
5175
  "کند ) ، %_plural% جایزه دهید . اگر نوع مطلبی که می خواهید در زیر نیامده است "
5176
  "، ابتدا اطمینان حاصل کنید که نوع مطلب مورد نظرتان \"عمومی\" باشد ."
5177
 
5178
- #: ../modules/mycred-module-hooks.php:115
5179
  #, php-format
5180
  msgid "%plural% for comments"
5181
  msgstr "اهدای %_plural% برای ثبت دیدگاه"
5182
 
5183
- #: ../modules/mycred-module-hooks.php:115
5184
  #, php-format
5185
  msgid "%plural% for Disqus comments"
5186
  msgstr ""
5187
 
5188
- #: ../modules/mycred-module-hooks.php:116
5189
  #, php-format
5190
  msgid "Award %_plural% for making comments."
5191
  msgstr "به کاربرانی که در بخش های مختلف سایت شما نظر می دهند ، %_plural% جایزه دهید ."
5192
 
5193
- #: ../modules/mycred-module-hooks.php:122
5194
  #, php-format
5195
  msgid "%plural% for clicking on links"
5196
  msgstr "اهدای %_plural% برای کلیک کردن بر روی لینک ها"
5197
 
5198
- #: ../modules/mycred-module-hooks.php:123
5199
  msgid ""
5200
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5201
  "shortcode."
@@ -5203,12 +5222,12 @@ msgstr ""
5203
  "به کاربرانی که روی لینک های تولید شده با کد [mycred_link] ، کلیک می کنند ، "
5204
  "%_plural% جایزه دهید ."
5205
 
5206
- #: ../modules/mycred-module-hooks.php:129
5207
  #, php-format
5208
  msgid "%plural% for viewing Videos"
5209
  msgstr "اهدای %_plural% برای تماشای ویدیوها"
5210
 
5211
- #: ../modules/mycred-module-hooks.php:130
5212
  msgid ""
5213
  "Award %_plural% to users who watches videos embedded using the "
5214
  "[mycred_video] shortcode."
@@ -5216,21 +5235,21 @@ msgstr ""
5216
  "به کاربرانی که ویدیوهای تولید شده با کد-کوتاه [mycred_video] را تماشا می "
5217
  "کنند ، %_plural% جایزه دهید ."
5218
 
5219
- #: ../modules/mycred-module-hooks.php:136
5220
  #, php-format
5221
  msgid "%plural% for referrals"
5222
  msgstr ""
5223
 
5224
- #: ../modules/mycred-module-hooks.php:137
5225
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5226
  msgstr ""
5227
 
5228
- #: ../modules/mycred-module-hooks.php:170
5229
  #, php-format
5230
  msgid "%s Hooks"
5231
  msgstr "پنل تنظیمات امتیازهای %s"
5232
 
5233
- #: ../modules/mycred-module-hooks.php:173
5234
  msgid ""
5235
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5236
  "depending on their actions around your website."
@@ -5238,94 +5257,119 @@ msgstr ""
5238
  "پنل تنظیماتی امتیازها محلی است که شما تعیین می کنید چه مقدار %_plural% بر "
5239
  "اساس انجام انواع عملیات ها ، به کاربرانتان اهدا شده و یا از آن ها کسر گردد ."
5240
 
5241
- #: ../modules/mycred-module-hooks.php:345 ../modules/mycred-module-hooks.php:439 .
5242
- #: ./modules/mycred-module-hooks.php:751 ../modules/mycred-module-hooks.php:764 ..
5243
- #: modules/mycred-module-hooks.php:800 ../modules/mycred-module-hooks.php:1180 ..
5244
- #: modules/mycred-module-hooks.php:1197 ../modules/mycred-module-hooks.php:1214 .
5245
- #: ./modules/mycred-module-hooks.php:2370 ../modules/mycred-module-hooks.php:2399
5246
- #: ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 .
5247
- #: ./plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ..
5248
- #: plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ..
5249
- #: plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ..
5250
- #: plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-
5251
- #: buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ..
5252
- #: plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-
5253
- #: buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ..
5254
- #: plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-
5255
- #: buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ..
5256
- #: plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-
5257
- #: buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ..
5258
- #: plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
5259
- #: buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-
5260
- #: hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ..
5261
- #: plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:
5262
- #: 446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-
5263
- #: buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-
5264
- #: hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ..
5265
- #: plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:
5266
- #: 978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-
5267
- #: buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ..
5268
- #: plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:
5269
- #: 1044 ../plugins/mycred-hook-contact-form7.php:141 ../plugins/mycred-hook-
5270
- #: gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.php:219 ..
5271
- #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-jetpack.php:
5272
- #: 506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-sharethis.
5273
- #: php:258 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-
5274
- #: simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ..
5275
- #: plugins/mycred-hook-simplepress.php:380
 
5276
  msgid "Log template"
5277
  msgstr "نمونه ی لیست گزارش ( لوگ )"
5278
 
5279
- #: ../modules/mycred-module-hooks.php:640 ../modules/mycred-module-hooks.php:2378
5280
- #: ../modules/mycred-module-hooks.php:2407 ../plugins/mycred-hook-invite-anyone.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5281
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5282
  msgid "Limit"
5283
  msgstr "محدوده"
5284
 
5285
- #: ../modules/mycred-module-hooks.php:745
5286
  #, php-format
5287
  msgid "%plural% for Posts"
5288
  msgstr "اهدای %plural% برای پست ها"
5289
 
5290
- #: ../modules/mycred-module-hooks.php:758
5291
  #, php-format
5292
  msgid "%plural% for Pages"
5293
  msgstr "اهدای %plural% برای ایجاد صفحات"
5294
 
5295
- #: ../modules/mycred-module-hooks.php:794
5296
  #, php-format
5297
  msgid "%plural% for %s"
5298
  msgstr "اهدای %plural% برای %s"
5299
 
5300
- #: ../modules/mycred-module-hooks.php:1166
5301
  msgid ""
5302
  "%plural% are only awarded when your website has been synced with the Disqus "
5303
  "server!"
5304
  msgstr ""
5305
 
5306
- #: ../modules/mycred-module-hooks.php:1171 ../modules/mycred-module-hooks.php:
5307
- #: 1188 ../modules/mycred-module-hooks.php:1205
5308
  msgid "Comment Author"
5309
  msgstr "نویسنده ی دیدگاه"
5310
 
5311
- #: ../modules/mycred-module-hooks.php:1175 ../modules/mycred-module-hooks.php:
5312
- #: 1192 ../modules/mycred-module-hooks.php:1209
5313
- msgid "Content Author"
5314
- msgstr "نویسنده ی مطلب"
5315
-
5316
- #: ../modules/mycred-module-hooks.php:1185
5317
  msgid "Comment Marked SPAM"
5318
  msgstr "دیدگاه هایی که به عنوان اسپم نشانه گذاری شده اند"
5319
 
5320
- #: ../modules/mycred-module-hooks.php:1202
5321
  msgid "Trashed / Unapproved Comments"
5322
  msgstr "دیدگاه ها تایید نشده یا منتقل شده به زباله دان"
5323
 
5324
- #: ../modules/mycred-module-hooks.php:1222
5325
  msgid "Limit per post"
5326
  msgstr "محدودیت برای هر پست"
5327
 
5328
- #: ../modules/mycred-module-hooks.php:1224
5329
  msgid ""
5330
  "The number of comments per post that grants %_plural% to the comment author. "
5331
  "Use zero for unlimited."
@@ -5333,17 +5377,17 @@ msgstr ""
5333
  "تعداد دیدگاه های مجاز برای هر پست ، که باعث کسب %_plural% برای کاربر خواهد "
5334
  "شد . برای برداشتن این محدودیت عدد صفر را وارد کنید ."
5335
 
5336
- #: ../modules/mycred-module-hooks.php:1228
5337
  msgid "Limit per day"
5338
  msgstr "محدودیت هر روزه"
5339
 
5340
- #: ../modules/mycred-module-hooks.php:1230
5341
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5342
  msgstr ""
5343
  "تعداد دیدگاه های مجاز در روز ، که باعث کسب %_plural% خواهد شد . برای برداشتن "
5344
  "این محدودیت عدد صفر را وارد کنید ."
5345
 
5346
- #: ../modules/mycred-module-hooks.php:1235
5347
  msgid ""
5348
  "%plural% is to be awarded even when comment authors reply to their own "
5349
  "comment."
@@ -5351,15 +5395,15 @@ msgstr ""
5351
  "اهدای %_plural% حتی برای زمانی که کاربر به نظر قبلی خودش پاسخ بدهد ( نظرهای "
5352
  "تو در تو )"
5353
 
5354
- #: ../modules/mycred-module-hooks.php:1306
5355
  msgid "Once for each unique URL"
5356
  msgstr "یک بار برای هر لینک یکتا"
5357
 
5358
- #: ../modules/mycred-module-hooks.php:1307
5359
  msgid "Once for each unique link id"
5360
  msgstr "یک بار برای هر شناسه ( آی دی ) لینک یکتا"
5361
 
5362
- #: ../modules/mycred-module-hooks.php:1500
5363
  msgid ""
5364
  "The default amount to award for clicking on links. You can override this in "
5365
  "the shortcode."
@@ -5367,16 +5411,16 @@ msgstr ""
5367
  "مقدار پیش فرضی که برای کلیک بر روی لینک ها اهدا می گردد . می توانید این "
5368
  "مقدار را در شورت کد مربوطه ، مجددا تنظیم نمایید ."
5369
 
5370
- #: ../modules/mycred-module-hooks.php:1507
5371
  #, php-format
5372
  msgid "Custom tags: %url%, %title% or %id%."
5373
  msgstr ""
5374
 
5375
- #: ../modules/mycred-module-hooks.php:1518 ../modules/mycred-module-hooks.php:2481
5376
  msgid "Note!"
5377
  msgstr "نکته !"
5378
 
5379
- #: ../modules/mycred-module-hooks.php:1518
5380
  msgid ""
5381
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5382
  "generate one automatically based on the value set under href. If you are "
@@ -5388,44 +5432,44 @@ msgstr ""
5388
  "href ، شناسه ای ایجاد می کند . اگر از این ویژگی برای به اشتراک گذاری محتوا "
5389
  "استفاده می کنید ، پیشنهاد می گردد با شناسه کار کنید ."
5390
 
5391
- #: ../modules/mycred-module-hooks.php:1520 ../modules/mycred-module-hooks.php:1878
5392
  msgid "Available Shortcode"
5393
  msgstr ""
5394
 
5395
- #: ../modules/mycred-module-hooks.php:1842
5396
  msgid "Amount to award for viewing videos."
5397
  msgstr "مقداری که به ازای تماشای ویدیوها به کاربر اهدا می گردد ."
5398
 
5399
- #: ../modules/mycred-module-hooks.php:1852
5400
  msgid "Award Logic"
5401
  msgstr "منطق اهدای امتیازات"
5402
 
5403
- #: ../modules/mycred-module-hooks.php:1854
5404
  #, php-format
5405
  msgid "Select when %_plural% should be awarded or deducted."
5406
  msgstr "مشخص کنید چه موقع باید %_plural% اهدا و یا کسر بشود ."
5407
 
5408
- #: ../modules/mycred-module-hooks.php:1855
5409
  msgid "Play - As soon as video starts playing."
5410
  msgstr "پخش - به محض شروع به پخش ویدیو"
5411
 
5412
- #: ../modules/mycred-module-hooks.php:1856
5413
  msgid "Full - First when the entire video has played."
5414
  msgstr "کامل - بعد از اینکه کل ویدیو به صورت کامل پخش بشود"
5415
 
5416
- #: ../modules/mycred-module-hooks.php:1857
5417
  msgid "Interval - For each x number of seconds watched."
5418
  msgstr "بازه ای - برای هر تعداد ثانیه ی مشخصی از ویدیو که تماشا می شود ."
5419
 
5420
- #: ../modules/mycred-module-hooks.php:1862
5421
  msgid "Number of seconds"
5422
  msgstr "تعداد ثانیه ها"
5423
 
5424
- #: ../modules/mycred-module-hooks.php:1869
5425
  msgid "Leniency"
5426
  msgstr "نرمی و ملایمت"
5427
 
5428
- #: ../modules/mycred-module-hooks.php:1871
5429
  msgid ""
5430
  "The maximum percentage a users view of a movie can differ from the actual "
5431
  "length."
@@ -5433,7 +5477,7 @@ msgstr ""
5433
  "بیشترین درصد ممکنی که طول یک ویدیو ممکنه با چیزی که برای کاربران نمایش داده "
5434
  "می شه ، تفاوت پیدا کنه"
5435
 
5436
- #: ../modules/mycred-module-hooks.php:1874
5437
  msgid ""
5438
  "Do not set this value to zero! A lot of thing can happen while a user "
5439
  "watches a movie and sometimes a few seconds can drop of the counter due to "
@@ -5444,170 +5488,170 @@ msgstr ""
5444
  "در طی بارگذاری و یا پخش مجدد می گیره ، ممکنه چند ثانیه ش اینور و اونور بشه ( "
5445
  "روی ثانیه شمار ویدیو تغییر ایجاد کنه )"
5446
 
5447
- #: ../modules/mycred-module-hooks.php:1942
5448
  msgid "Affiliate Program"
5449
  msgstr ""
5450
 
5451
- #: ../modules/mycred-module-hooks.php:1951
5452
  msgid "Per Day"
5453
  msgstr ""
5454
 
5455
- #: ../modules/mycred-module-hooks.php:2063
5456
  msgid "Link"
5457
  msgstr ""
5458
 
5459
- #: ../modules/mycred-module-hooks.php:2364
5460
  msgid "Referring Visitors"
5461
  msgstr ""
5462
 
5463
- #: ../modules/mycred-module-hooks.php:2388 ../modules/mycred-module-hooks.php:2417
5464
  msgid "The number of referrals each member can make. Use zero for unlimited."
5465
  msgstr ""
5466
 
5467
- #: ../modules/mycred-module-hooks.php:2392 ../modules/mycred-module-hooks.php:2421
5468
  msgid "Referring Signups"
5469
  msgstr ""
5470
 
5471
- #: ../modules/mycred-module-hooks.php:2396
5472
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5473
  msgstr ""
5474
 
5475
- #: ../modules/mycred-module-hooks.php:2423
5476
  msgid "Registrations are disabled."
5477
  msgstr ""
5478
 
5479
- #: ../modules/mycred-module-hooks.php:2430
5480
  msgid "Referral Links"
5481
  msgstr ""
5482
 
5483
- #: ../modules/mycred-module-hooks.php:2434
5484
  msgid "Assign numeric referral IDs to each user."
5485
  msgstr ""
5486
 
5487
- #: ../modules/mycred-module-hooks.php:2435 ../modules/mycred-module-hooks.php:2441
5488
  msgid "Example"
5489
  msgstr ""
5490
 
5491
- #: ../modules/mycred-module-hooks.php:2440
5492
  msgid "Assign usernames as IDs for each user."
5493
  msgstr ""
5494
 
5495
- #: ../modules/mycred-module-hooks.php:2444
5496
  msgid "IP Limit"
5497
  msgstr ""
5498
 
5499
- #: ../modules/mycred-module-hooks.php:2448
5500
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5501
  msgstr ""
5502
 
5503
- #: ../modules/mycred-module-hooks.php:2452 ../modules/mycred-module-hooks.php:2485
5504
  msgid "BuddyPress Profile"
5505
  msgstr ""
5506
 
5507
- #: ../modules/mycred-module-hooks.php:2455
5508
  msgid "Insert Link in users Profile"
5509
  msgstr ""
5510
 
5511
- #: ../modules/mycred-module-hooks.php:2456
5512
  msgid ""
5513
  "Option to inser the referral link in users profiles. Links will only be "
5514
  "visible to users viewing their own profiles or administrators."
5515
  msgstr ""
5516
 
5517
- #: ../modules/mycred-module-hooks.php:2462
5518
  msgid "Leave empty to hide."
5519
  msgstr ""
5520
 
5521
- #: ../modules/mycred-module-hooks.php:2465
5522
  msgid "Description"
5523
  msgstr ""
5524
 
5525
- #: ../modules/mycred-module-hooks.php:2466
5526
  msgid "Optional description to insert under the link."
5527
  msgstr ""
5528
 
5529
- #: ../modules/mycred-module-hooks.php:2478
5530
  msgid "Profile Positioning"
5531
  msgstr ""
5532
 
5533
- #: ../modules/mycred-module-hooks.php:2480
5534
  msgid ""
5535
  "You can move around the referral link on your users profile by changing the "
5536
  "position. Increase to move up, decrease to move down."
5537
  msgstr ""
5538
 
5539
- #: ../modules/mycred-module-hooks.php:2481
5540
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5541
  msgstr ""
5542
 
5543
- #: ../modules/mycred-module-hooks.php:2487
5544
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5545
  msgstr ""
5546
 
5547
- #: ../modules/mycred-module-log.php:187 ../modules/mycred-module-log.php:208 ..
5548
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5549
  msgid "Access denied for this action"
5550
  msgstr "عدم دسترسی مجاز برای انجام این عملیات"
5551
 
5552
- #: ../modules/mycred-module-log.php:194
5553
  msgid "Row Deleted"
5554
  msgstr ""
5555
 
5556
- #: ../modules/mycred-module-log.php:221
5557
  msgid "Log entry not found"
5558
  msgstr ""
5559
 
5560
- #: ../modules/mycred-module-log.php:234
5561
  msgid "Entry Updated"
5562
  msgstr ""
5563
 
5564
- #: ../modules/mycred-module-log.php:288 ../modules/mycred-module-settings.php:436
5565
  msgid "Entries"
5566
  msgstr "داده های ورودی"
5567
 
5568
- #: ../modules/mycred-module-log.php:303 ../modules/mycred-module-log.php:383 ..
5569
- #: modules/mycred-module-log.php:627 ../modules/mycred-module-settings.php:574
5570
  msgid "Export"
5571
  msgstr "خروجی گرفتن"
5572
 
5573
- #: ../modules/mycred-module-log.php:309
5574
  msgid "Search results for"
5575
  msgstr "نتایج جستجو برای عبارت"
5576
 
5577
- #: ../modules/mycred-module-log.php:377
5578
  #, php-format
5579
  msgid "%s Log"
5580
  msgstr ""
5581
 
5582
- #: ../modules/mycred-module-log.php:502
5583
  msgid "Edit"
5584
  msgstr ""
5585
 
5586
- #: ../modules/mycred-module-log.php:543
5587
  msgid "Time"
5588
  msgstr ""
5589
 
5590
- #: ../modules/mycred-module-log.php:547
5591
  msgid "Current Log Entry"
5592
  msgstr ""
5593
 
5594
- #: ../modules/mycred-module-log.php:549
5595
  msgid "The current saved log entry"
5596
  msgstr ""
5597
 
5598
- #: ../modules/mycred-module-log.php:552
5599
  msgid "Adjust Log Entry"
5600
  msgstr ""
5601
 
5602
- #: ../modules/mycred-module-log.php:554
5603
  msgid "The new log entry"
5604
  msgstr ""
5605
 
5606
- #: ../modules/mycred-module-log.php:557
5607
  msgid "Update Log Entry"
5608
  msgstr ""
5609
 
5610
- #: ../modules/mycred-module-log.php:621
5611
  #, php-format
5612
  msgid "My %s History"
5613
  msgstr ""
@@ -5848,8 +5892,8 @@ msgstr "اهدای %plural% برای تاپیک جدید"
5848
  msgid "Forum authors can receive %_plural% for creating new topics."
5849
  msgstr "نویسندگان انجمن می توانند برای ساختن تاپیک %plural% دریافت کنند ."
5850
 
5851
- #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 .
5852
- #: ./plugins/mycred-hook-simplepress.php:336
5853
  #, php-format
5854
  msgid "%plural% for Topic Deletion"
5855
  msgstr "اهدای %plural% برای پاکسازی و یا ادیت تاپیک"
@@ -5885,6 +5929,11 @@ msgstr "نویسندگان تاپیک می توانند برای پاسخ به
5885
  msgid "Show users %_plural% balance in replies"
5886
  msgstr "نمایش دادن %_plural% کاربران در جواب"
5887
 
 
 
 
 
 
5888
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5889
  msgid "BuddyPress: Gallery Actions"
5890
  msgstr "بادی پرس : فعالیت های گالری"
@@ -6277,19 +6326,15 @@ msgstr ""
6277
  msgid "%plural% for Topic Post Deletion"
6278
  msgstr "اهدا یا کسر %plural% برای حذف کامل یا بخشی از پست تاپیک"
6279
 
6280
- #: ../plugins/mycred-hook-woocommerce.php:65
6281
  msgid "Reward with %plural%"
6282
  msgstr ""
6283
 
6284
- #: ../plugins/mycred-hook-woocommerce.php:70
6285
- msgid "User is excluded from this point type."
6286
- msgstr ""
6287
-
6288
- #: ../plugins/mycred-hook-woocommerce.php:199
6289
  msgid "WooCommerce Product Reviews"
6290
  msgstr ""
6291
 
6292
- #: ../plugins/mycred-hook-woocommerce.php:200
6293
  #, php-format
6294
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6295
  msgstr ""
@@ -6319,3 +6364,4 @@ msgstr "نظرسنجی های وردپرس | WP-Polls"
6319
  #, php-format
6320
  msgid "Awards %_plural% for users voting in polls."
6321
  msgstr "اهدای %_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: 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
  "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"
95
  msgstr ""
96
 
97
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
98
+ #: notices.php:718 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
99
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
100
  msgid "Setup"
101
  msgstr "نصب"
121
  msgstr "این پنل تنظیمات ، چیزی برای تنظیم ندارد"
122
 
123
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
124
+ #: 1558
125
  msgid "No limit"
126
  msgstr "بدون محدودیت"
127
 
147
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
148
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
149
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
150
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:868
151
  msgid "Select"
152
  msgstr "انتخاب"
153
 
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 "دسترسی غیرمجاز می باشد"
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
 
518
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
519
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
520
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
521
+ #: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
522
+ #: modules/mycred-module-hooks.php:2098 ../plugins/mycred-hook-badgeOS.php:115 ..
523
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
524
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
525
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
526
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
527
+ #: php:298 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
528
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
529
  msgid "Log Template"
530
  msgstr "نمونه لیست گزارش ( لوگ )"
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
 
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
 
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
 
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 "عملیات ها"
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
 
1596
  msgstr ""
1597
 
1598
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1599
+ #: transfer.php:243 ../modules/mycred-module-hooks.php:1472 ../modules/mycred-
1600
+ #: module-hooks.php:1763
1601
  msgid "Limits"
1602
  msgstr "محدودیت ها"
1603
 
1610
  msgstr ""
1611
 
1612
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1613
+ #: php:2203
1614
  msgid "Total"
1615
  msgstr ""
1616
 
1772
  msgstr ""
1773
 
1774
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1775
+ #: notices/myCRED-addon-email-notices.php:1115
1776
  msgid "Email Notice"
1777
  msgstr "اطلاعیه ایمیلی"
1778
 
1970
  "نیز قابل ویرایش هستند ."
1971
 
1972
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1973
+ #: notices/myCRED-addon-email-notices.php:782
1974
  msgid "Email Settings"
1975
  msgstr "تنظیمات ایمیل"
1976
 
1977
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1978
+ #: notices/myCRED-addon-email-notices.php:905
1979
  msgid "Senders Name:"
1980
  msgstr "نام ارسال کننده :"
1981
 
1982
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1983
+ #: notices/myCRED-addon-email-notices.php:907
1984
  msgid "Senders Email:"
1985
  msgstr "آدرس ایمیل ارسال کننده :"
1986
 
2007
  "در صورتی که نمی خواید از HTML استفاده کنید ، توی این کادر چیزی وارد نفرمایید "
2008
  "."
2009
 
2010
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:716 ../addons/email-
2011
+ #: notices/myCRED-addon-email-notices.php:831
2012
  msgid "Email Subject"
2013
  msgstr "موضوع ایمیل"
2014
 
2015
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:717
2016
  msgid "Status"
2017
  msgstr "وضعیت"
2018
 
2019
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:737
2020
  msgid "Not Active"
2021
  msgstr "غیرفعال"
2022
 
2023
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:739
2024
  #, php-format
2025
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2026
  msgstr "برنامه ریزی شده در : <br /><strong>%1$s</strong>"
2027
 
2028
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:743
2029
  msgid "Active"
2030
  msgstr "فعال"
2031
 
2032
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:745
2033
  #, php-format
2034
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2035
  msgstr "فعال - آخرین اجرا : <br /><strong>%1$s</strong>"
2036
 
2037
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755
2038
  msgid "Email is sent when"
2039
  msgstr "ایمیل فرستاده وقتی فرستاده شود که"
2040
 
2041
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757
2042
  msgid "Missing instance for this notice!"
2043
  msgstr "یکی از مراحل برای این اطلاعیه جا افتاده است !"
2044
 
2045
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2046
+ #: notices/myCRED-addon-email-notices.php:768 ../addons/email-notices/myCRED-
2047
+ #: addon-email-notices.php:770
2048
  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
 
2057
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:768 ../addons/email-
2058
+ #: notices/myCRED-addon-email-notices.php:896
2059
  msgid "Administrator"
2060
  msgstr "مدیر"
2061
 
2062
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:770
2063
  msgid "Both Administrator and User"
2064
  msgstr "هم کاربر و هم مدیر"
2065
 
2066
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
2067
  msgid "Available Template Tags"
2068
  msgstr "نمونه تگ های قابل استفاده"
2069
 
2070
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:802
2071
  msgid "Email Header"
2072
  msgstr "سربرگ ایمیل"
2073
 
2074
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:862
2075
  msgid "Send this email notice when..."
2076
  msgstr "این اطلاعیه ایمیلی زمانی ارسال شود که ..."
2077
 
2078
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:893
2079
  msgid "Recipient:"
2080
  msgstr "گیرندگان ایمیل :"
2081
 
2082
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:897
2083
  msgid "Both"
2084
  msgstr "هر دو"
2085
 
2086
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:901 ..
2087
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2088
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2089
  #: module-settings.php:526
2090
  msgid "Label"
2091
  msgstr "برچسب ( اتیکت )"
2092
 
2093
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2094
  msgid "Reply-To Email:"
2095
  msgstr "ایمیلی که پاسخ ها به آن ارسال می شود :"
2096
 
2097
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:915
2098
  msgid "Save"
2099
  msgstr "ذخیره"
2100
 
2101
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:927
2102
  msgid "CSS Styling"
2103
  msgstr "صفحه آرایی با CSS"
2104
 
2105
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:943
2106
  msgid "Site Related"
2107
  msgstr "مرتبط با سایت"
2108
 
2109
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:944
2110
  msgid "Your websites title"
2111
  msgstr "عنوان وبسایت شما"
2112
 
2113
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:945
2114
  msgid "Your websites address"
2115
  msgstr "آدرس وبسایت شما"
2116
 
2117
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:946
2118
  msgid "Your websites tagline (description)"
2119
  msgstr "شرح وبسایت شما"
2120
 
2121
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:947
2122
  msgid "Your websites admin email"
2123
  msgstr "آدرس ایمیل مدیر وبسایت شما"
2124
 
2125
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:948
2126
  msgid "Total number of blog members"
2127
  msgstr "تعداد کل کاربران سایت شما"
2128
 
2129
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1026 ../addons/email-
2130
+ #: notices/myCRED-addon-email-notices.php:1029 ../addons/email-notices/myCRED-
2131
+ #: addon-email-notices.php:1035
2132
  msgid "Email Notice Updated."
2133
  msgstr ""
2134
 
2135
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1031
2136
  msgid "Email Notice Activated"
2137
  msgstr "اطلاعیه فعال شد"
2138
 
2139
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1032
2140
  msgid "Email Notice Saved"
2141
  msgstr "اطلاعیه ذخیره شد"
2142
 
2143
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2144
  msgid ""
2145
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2146
  "are not yet ready to use this email notice!"
2149
  "استفاده از این اطلاعیه نیستید ، کلید \"ذخیره به عنوان پیش نویس\" پیشنهاد می "
2150
  "گردد ."
2151
 
2152
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2153
  #, php-format
2154
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2155
  msgstr "این اطلاعیه در تاریخ زیر فعال می شود :<br /><strong>%1$s</strong>"
2156
 
2157
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2158
  msgid "This email notice is active."
2159
  msgstr "این اطلاعیه ی ایمیلی فعال شد ."
2160
 
2161
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1066
2162
  msgid "Settings saved."
2163
  msgstr ""
2164
 
2165
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1114
2166
  msgid "Unsubscribe"
2167
  msgstr ""
2168
 
2169
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1135
2170
  msgid "There are no email notifications yet."
2171
  msgstr ""
2172
 
2173
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1141
2174
  msgid "Save Changes"
2175
  msgstr ""
2176
 
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
  #: 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
 
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
 
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 "پاک کردن"
3179
  msgid "Assign Ranks to Users"
3180
  msgstr "تخصیص دادن مدال به کاربران"
3181
 
3182
+ #: ../addons/ranks/includes/mycred-rank-functions.php:229
3183
  msgid "mycred_get_users_rank() : Missing required user id"
3184
  msgstr "mycred_get_users_rank() : شناسه کاربر خواسته شده ، یافت نشد !"
3185
 
3186
+ #: ../addons/ranks/includes/mycred-rank-functions.php:238
3187
  msgid "no rank"
3188
  msgstr "مدالی یافت نشد"
3189
 
3368
  "امتیاز بیشتر را ندارید ."
3369
 
3370
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3371
+ #: php:2295
3372
  msgid "Transfer"
3373
  msgstr "جابجایی"
3374
 
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
 
3571
  msgid "Show users limit"
3572
  msgstr "نمایش محدودیت جابجایی امتیاز برای کاربران"
3573
 
3574
+ #: ../addons/transfer/myCRED-addon-transfer.php:800
3575
  msgid "username"
3576
  msgstr "نام کاربری"
3577
 
3578
+ #: ../addons/transfer/myCRED-addon-transfer.php:802
3579
  msgid "email"
3580
  msgstr "ایمیل"
3581
 
3582
+ #: ../addons/transfer/myCRED-addon-transfer.php:804
3583
  #, php-format
3584
  msgid "recipients %s"
3585
  msgstr "گیرندگان %s"
3586
 
3587
+ #: ../addons/transfer/myCRED-addon-transfer.php:877
3588
  msgid "To:"
3589
  msgstr "به :"
3590
 
3591
+ #: ../addons/transfer/myCRED-addon-transfer.php:883
3592
  msgid "Amount:"
3593
  msgstr "مقدار امتیاز :"
3594
 
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
 
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
  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
 
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
 
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 ""
5156
 
5157
  #: ../modules/mycred-module-hooks.php:101
5158
  #, php-format
5159
+ msgid "%plural% for viewing content"
5160
+ msgstr ""
5161
+
5162
+ #: ../modules/mycred-module-hooks.php:102
5163
+ msgid ""
5164
+ "Award %_plural% to your users for viewing posts and / or %plural% to your "
5165
+ "authors for members viewing their content."
5166
+ msgstr ""
5167
+
5168
+ #: ../modules/mycred-module-hooks.php:108
5169
+ #, php-format
5170
  msgid "%plural% for logins"
5171
  msgstr "اهدای %_plural% برای وارد شدن به سایت"
5172
 
5173
+ #: ../modules/mycred-module-hooks.php:109
5174
  #, php-format
5175
  msgid ""
5176
  "Award %_plural% for logging in to your website. You can also set an optional "
5179
  "به کاربرانی که در سایت شما لوگین می کنند %_plural% جایزه دهید . البته می "
5180
  "توانید محدودیت های اختیاری هم برای این بخش تعیین کنید ."
5181
 
5182
+ #: ../modules/mycred-module-hooks.php:115
5183
  #, php-format
5184
  msgid "%plural% for publishing content"
5185
  msgstr "اهدای %_plural% به کاربران ، برای انتشار مطلب در سایت شما"
5186
 
5187
+ #: ../modules/mycred-module-hooks.php:116
5188
  #, php-format
5189
  msgid ""
5190
  "Award %_plural% for publishing content on your website. If your custom post "
5194
  "کند ) ، %_plural% جایزه دهید . اگر نوع مطلبی که می خواهید در زیر نیامده است "
5195
  "، ابتدا اطمینان حاصل کنید که نوع مطلب مورد نظرتان \"عمومی\" باشد ."
5196
 
5197
+ #: ../modules/mycred-module-hooks.php:122
5198
  #, php-format
5199
  msgid "%plural% for comments"
5200
  msgstr "اهدای %_plural% برای ثبت دیدگاه"
5201
 
5202
+ #: ../modules/mycred-module-hooks.php:122
5203
  #, php-format
5204
  msgid "%plural% for Disqus comments"
5205
  msgstr ""
5206
 
5207
+ #: ../modules/mycred-module-hooks.php:123
5208
  #, php-format
5209
  msgid "Award %_plural% for making comments."
5210
  msgstr "به کاربرانی که در بخش های مختلف سایت شما نظر می دهند ، %_plural% جایزه دهید ."
5211
 
5212
+ #: ../modules/mycred-module-hooks.php:129
5213
  #, php-format
5214
  msgid "%plural% for clicking on links"
5215
  msgstr "اهدای %_plural% برای کلیک کردن بر روی لینک ها"
5216
 
5217
+ #: ../modules/mycred-module-hooks.php:130
5218
  msgid ""
5219
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5220
  "shortcode."
5222
  "به کاربرانی که روی لینک های تولید شده با کد [mycred_link] ، کلیک می کنند ، "
5223
  "%_plural% جایزه دهید ."
5224
 
5225
+ #: ../modules/mycred-module-hooks.php:136
5226
  #, php-format
5227
  msgid "%plural% for viewing Videos"
5228
  msgstr "اهدای %_plural% برای تماشای ویدیوها"
5229
 
5230
+ #: ../modules/mycred-module-hooks.php:137
5231
  msgid ""
5232
  "Award %_plural% to users who watches videos embedded using the "
5233
  "[mycred_video] shortcode."
5235
  "به کاربرانی که ویدیوهای تولید شده با کد-کوتاه [mycred_video] را تماشا می "
5236
  "کنند ، %_plural% جایزه دهید ."
5237
 
5238
+ #: ../modules/mycred-module-hooks.php:143
5239
  #, php-format
5240
  msgid "%plural% for referrals"
5241
  msgstr ""
5242
 
5243
+ #: ../modules/mycred-module-hooks.php:144
5244
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5245
  msgstr ""
5246
 
5247
+ #: ../modules/mycred-module-hooks.php:177
5248
  #, php-format
5249
  msgid "%s Hooks"
5250
  msgstr "پنل تنظیمات امتیازهای %s"
5251
 
5252
+ #: ../modules/mycred-module-hooks.php:180
5253
  msgid ""
5254
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5255
  "depending on their actions around your website."
5257
  "پنل تنظیماتی امتیازها محلی است که شما تعیین می کنید چه مقدار %_plural% بر "
5258
  "اساس انجام انواع عملیات ها ، به کاربرانتان اهدا شده و یا از آن ها کسر گردد ."
5259
 
5260
+ #: ../modules/mycred-module-hooks.php:352 ../modules/mycred-module-hooks.php:446 .
5261
+ #: ./modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:622 ..
5262
+ #: modules/mycred-module-hooks.php:684 ../modules/mycred-module-hooks.php:1004 ..
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.
5270
+ #: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
5271
+ #: buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ..
5272
+ #: plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-
5273
+ #: buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ..
5274
+ #: plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-
5275
+ #: buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ..
5276
+ #: plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-
5277
+ #: buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ..
5278
+ #: plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-
5279
+ #: buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ..
5280
+ #: plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:
5281
+ #: 407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-
5282
+ #: buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-
5283
+ #: hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ..
5284
+ #: plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:
5285
+ #: 939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-
5286
+ #: buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-
5287
+ #: hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ..
5288
+ #: plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:
5289
+ #: 1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-
5290
+ #: form7.php:141 ../plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-
5291
+ #: hook-invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:240 ..
5292
+ #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5293
+ #: plugins/mycred-hook-sharethis.php:258 ../plugins/mycred-hook-simplepress.php:
5294
+ #: 330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-
5295
+ #: simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
5296
  msgid "Log template"
5297
  msgstr "نمونه ی لیست گزارش ( لوگ )"
5298
 
5299
+ #: ../modules/mycred-module-hooks.php:586
5300
+ #, php-format
5301
+ msgid "%plural% for viewing Posts"
5302
+ msgstr ""
5303
+
5304
+ #: ../modules/mycred-module-hooks.php:589 ../modules/mycred-module-hooks.php:600 .
5305
+ #: ./modules/mycred-module-hooks.php:614 ../modules/mycred-module-hooks.php:625 ..
5306
+ #: modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:687
5307
+ msgid "Member"
5308
+ msgstr ""
5309
+
5310
+ #: ../modules/mycred-module-hooks.php:593 ../modules/mycred-module-hooks.php:606 .
5311
+ #: ./modules/mycred-module-hooks.php:618 ../modules/mycred-module-hooks.php:631 ..
5312
+ #: modules/mycred-module-hooks.php:680 ../modules/mycred-module-hooks.php:693 ..
5313
+ #: modules/mycred-module-hooks.php:1428 ../modules/mycred-module-hooks.php:1445 .
5314
+ #: ./modules/mycred-module-hooks.php:1462
5315
+ msgid "Content Author"
5316
+ msgstr "نویسنده ی مطلب"
5317
+
5318
+ #: ../modules/mycred-module-hooks.php:611
5319
+ #, php-format
5320
+ msgid "%plural% for viewing Pages"
5321
+ msgstr ""
5322
+
5323
+ #: ../modules/mycred-module-hooks.php:673
5324
+ #, php-format
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 "محدوده"
5333
 
5334
+ #: ../modules/mycred-module-hooks.php:998
5335
  #, php-format
5336
  msgid "%plural% for Posts"
5337
  msgstr "اهدای %plural% برای پست ها"
5338
 
5339
+ #: ../modules/mycred-module-hooks.php:1011
5340
  #, php-format
5341
  msgid "%plural% for Pages"
5342
  msgstr "اهدای %plural% برای ایجاد صفحات"
5343
 
5344
+ #: ../modules/mycred-module-hooks.php:1047
5345
  #, php-format
5346
  msgid "%plural% for %s"
5347
  msgstr "اهدای %plural% برای %s"
5348
 
5349
+ #: ../modules/mycred-module-hooks.php:1419
5350
  msgid ""
5351
  "%plural% are only awarded when your website has been synced with the Disqus "
5352
  "server!"
5353
  msgstr ""
5354
 
5355
+ #: ../modules/mycred-module-hooks.php:1424 ../modules/mycred-module-hooks.php:
5356
+ #: 1441 ../modules/mycred-module-hooks.php:1458
5357
  msgid "Comment Author"
5358
  msgstr "نویسنده ی دیدگاه"
5359
 
5360
+ #: ../modules/mycred-module-hooks.php:1438
 
 
 
 
 
5361
  msgid "Comment Marked SPAM"
5362
  msgstr "دیدگاه هایی که به عنوان اسپم نشانه گذاری شده اند"
5363
 
5364
+ #: ../modules/mycred-module-hooks.php:1455
5365
  msgid "Trashed / Unapproved Comments"
5366
  msgstr "دیدگاه ها تایید نشده یا منتقل شده به زباله دان"
5367
 
5368
+ #: ../modules/mycred-module-hooks.php:1475
5369
  msgid "Limit per post"
5370
  msgstr "محدودیت برای هر پست"
5371
 
5372
+ #: ../modules/mycred-module-hooks.php:1477
5373
  msgid ""
5374
  "The number of comments per post that grants %_plural% to the comment author. "
5375
  "Use zero for unlimited."
5377
  "تعداد دیدگاه های مجاز برای هر پست ، که باعث کسب %_plural% برای کاربر خواهد "
5378
  "شد . برای برداشتن این محدودیت عدد صفر را وارد کنید ."
5379
 
5380
+ #: ../modules/mycred-module-hooks.php:1481
5381
  msgid "Limit per day"
5382
  msgstr "محدودیت هر روزه"
5383
 
5384
+ #: ../modules/mycred-module-hooks.php:1483
5385
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5386
  msgstr ""
5387
  "تعداد دیدگاه های مجاز در روز ، که باعث کسب %_plural% خواهد شد . برای برداشتن "
5388
  "این محدودیت عدد صفر را وارد کنید ."
5389
 
5390
+ #: ../modules/mycred-module-hooks.php:1488
5391
  msgid ""
5392
  "%plural% is to be awarded even when comment authors reply to their own "
5393
  "comment."
5395
  "اهدای %_plural% حتی برای زمانی که کاربر به نظر قبلی خودش پاسخ بدهد ( نظرهای "
5396
  "تو در تو )"
5397
 
5398
+ #: ../modules/mycred-module-hooks.php:1559
5399
  msgid "Once for each unique URL"
5400
  msgstr "یک بار برای هر لینک یکتا"
5401
 
5402
+ #: ../modules/mycred-module-hooks.php:1560
5403
  msgid "Once for each unique link id"
5404
  msgstr "یک بار برای هر شناسه ( آی دی ) لینک یکتا"
5405
 
5406
+ #: ../modules/mycred-module-hooks.php:1753
5407
  msgid ""
5408
  "The default amount to award for clicking on links. You can override this in "
5409
  "the shortcode."
5411
  "مقدار پیش فرضی که برای کلیک بر روی لینک ها اهدا می گردد . می توانید این "
5412
  "مقدار را در شورت کد مربوطه ، مجددا تنظیم نمایید ."
5413
 
5414
+ #: ../modules/mycred-module-hooks.php:1760
5415
  #, php-format
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
 
5423
+ #: ../modules/mycred-module-hooks.php:1771
5424
  msgid ""
5425
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5426
  "generate one automatically based on the value set under href. If you are "
5432
  "href ، شناسه ای ایجاد می کند . اگر از این ویژگی برای به اشتراک گذاری محتوا "
5433
  "استفاده می کنید ، پیشنهاد می گردد با شناسه کار کنید ."
5434
 
5435
+ #: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2131
5436
  msgid "Available Shortcode"
5437
  msgstr ""
5438
 
5439
+ #: ../modules/mycred-module-hooks.php:2095
5440
  msgid "Amount to award for viewing videos."
5441
  msgstr "مقداری که به ازای تماشای ویدیوها به کاربر اهدا می گردد ."
5442
 
5443
+ #: ../modules/mycred-module-hooks.php:2105
5444
  msgid "Award Logic"
5445
  msgstr "منطق اهدای امتیازات"
5446
 
5447
+ #: ../modules/mycred-module-hooks.php:2107
5448
  #, php-format
5449
  msgid "Select when %_plural% should be awarded or deducted."
5450
  msgstr "مشخص کنید چه موقع باید %_plural% اهدا و یا کسر بشود ."
5451
 
5452
+ #: ../modules/mycred-module-hooks.php:2108
5453
  msgid "Play - As soon as video starts playing."
5454
  msgstr "پخش - به محض شروع به پخش ویدیو"
5455
 
5456
+ #: ../modules/mycred-module-hooks.php:2109
5457
  msgid "Full - First when the entire video has played."
5458
  msgstr "کامل - بعد از اینکه کل ویدیو به صورت کامل پخش بشود"
5459
 
5460
+ #: ../modules/mycred-module-hooks.php:2110
5461
  msgid "Interval - For each x number of seconds watched."
5462
  msgstr "بازه ای - برای هر تعداد ثانیه ی مشخصی از ویدیو که تماشا می شود ."
5463
 
5464
+ #: ../modules/mycred-module-hooks.php:2115
5465
  msgid "Number of seconds"
5466
  msgstr "تعداد ثانیه ها"
5467
 
5468
+ #: ../modules/mycred-module-hooks.php:2122
5469
  msgid "Leniency"
5470
  msgstr "نرمی و ملایمت"
5471
 
5472
+ #: ../modules/mycred-module-hooks.php:2124
5473
  msgid ""
5474
  "The maximum percentage a users view of a movie can differ from the actual "
5475
  "length."
5477
  "بیشترین درصد ممکنی که طول یک ویدیو ممکنه با چیزی که برای کاربران نمایش داده "
5478
  "می شه ، تفاوت پیدا کنه"
5479
 
5480
+ #: ../modules/mycred-module-hooks.php:2127
5481
  msgid ""
5482
  "Do not set this value to zero! A lot of thing can happen while a user "
5483
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5488
  "در طی بارگذاری و یا پخش مجدد می گیره ، ممکنه چند ثانیه ش اینور و اونور بشه ( "
5489
  "روی ثانیه شمار ویدیو تغییر ایجاد کنه )"
5490
 
5491
+ #: ../modules/mycred-module-hooks.php:2195
5492
  msgid "Affiliate Program"
5493
  msgstr ""
5494
 
5495
+ #: ../modules/mycred-module-hooks.php:2204
5496
  msgid "Per Day"
5497
  msgstr ""
5498
 
5499
+ #: ../modules/mycred-module-hooks.php:2316
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
 
5591
+ #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
5592
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5593
  msgid "Access denied for this action"
5594
  msgstr "عدم دسترسی مجاز برای انجام این عملیات"
5595
 
5596
+ #: ../modules/mycred-module-log.php:196
5597
  msgid "Row Deleted"
5598
  msgstr ""
5599
 
5600
+ #: ../modules/mycred-module-log.php:223
5601
  msgid "Log entry not found"
5602
  msgstr ""
5603
 
5604
+ #: ../modules/mycred-module-log.php:236
5605
  msgid "Entry Updated"
5606
  msgstr ""
5607
 
5608
+ #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:436
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
 
5617
+ #: ../modules/mycred-module-log.php:311
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 ""
5892
  msgid "Forum authors can receive %_plural% for creating new topics."
5893
  msgstr "نویسندگان انجمن می توانند برای ساختن تاپیک %plural% دریافت کنند ."
5894
 
5895
+ #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-simplepress.php:
5896
+ #: 336
5897
  #, php-format
5898
  msgid "%plural% for Topic Deletion"
5899
  msgstr "اهدای %plural% برای پاکسازی و یا ادیت تاپیک"
5929
  msgid "Show users %_plural% balance in replies"
5930
  msgstr "نمایش دادن %_plural% کاربران در جواب"
5931
 
5932
+ #: ../plugins/mycred-hook-bbPress.php:568
5933
+ #, php-format
5934
+ msgid "%plural% for Reply Deletion"
5935
+ msgstr ""
5936
+
5937
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5938
  msgid "BuddyPress: Gallery Actions"
5939
  msgstr "بادی پرس : فعالیت های گالری"
6326
  msgid "%plural% for Topic Post Deletion"
6327
  msgstr "اهدا یا کسر %plural% برای حذف کامل یا بخشی از پست تاپیک"
6328
 
6329
+ #: ../plugins/mycred-hook-woocommerce.php:67
6330
  msgid "Reward with %plural%"
6331
  msgstr ""
6332
 
6333
+ #: ../plugins/mycred-hook-woocommerce.php:197
 
 
 
 
6334
  msgid "WooCommerce Product Reviews"
6335
  msgstr ""
6336
 
6337
+ #: ../plugins/mycred-hook-woocommerce.php:198
6338
  #, php-format
6339
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6340
  msgstr ""
6364
  #, php-format
6365
  msgid "Awards %_plural% for users voting in polls."
6366
  msgstr "اهدای %_plural% برای کاربرانی که در نظرسنجی ها رای می دهند ."
6367
+ �ای %_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: Sat Jul 26 2014 20:56:06 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;"
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"
@@ -99,7 +99,7 @@ msgid "Log entry updated"
99
  msgstr "L'entrée du journal a été mise à jour"
100
 
101
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
102
- #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
103
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
104
  msgid "Setup"
105
  msgstr "Configuration"
@@ -129,7 +129,7 @@ msgid "This Hook has no settings"
129
  msgstr "Ce hook n'a pas de paramètre."
130
 
131
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
132
- #: 1305
133
  msgid "No limit"
134
  msgstr "Illimité"
135
 
@@ -155,7 +155,7 @@ msgstr "Une fois par jour (remise à zéro à minuit)"
155
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
157
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
158
- #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
159
  msgid "Select"
160
  msgstr "sélectionnez"
161
 
@@ -420,8 +420,8 @@ msgstr ""
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:164 ..
424
- #: modules/mycred-module-log.php:324 ../modules/mycred-module-log.php:577 ..
425
  #: modules/mycred-module-settings.php:312
426
  msgid "Access Denied"
427
  msgstr "Accès refusé"
@@ -447,12 +447,12 @@ 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:189
451
  msgid "Enable"
452
  msgstr "Activer"
453
 
454
  #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
455
- #: php:204
456
  msgid "Update Changes"
457
  msgstr "Enregistrer les modifications"
458
 
@@ -529,13 +529,13 @@ msgstr "Le solde minimum pour l'application d'intérêts"
529
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
530
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
531
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
532
- #: modules/mycred-module-hooks.php:633 ../modules/mycred-module-hooks.php:1503 ..
533
- #: modules/mycred-module-hooks.php:1845 ../plugins/mycred-hook-badgeOS.php:115 ..
534
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
535
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
536
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
537
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
538
- #: php:300 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
539
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
540
  msgid "Log Template"
541
  msgstr "Texte à afficher"
@@ -573,8 +573,8 @@ msgstr "Payer les Utilisateurs"
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:769 ..
577
- #: includes/mycred-shortcodes.php:907
578
  msgid "Amount"
579
  msgstr "Montant"
580
 
@@ -584,7 +584,7 @@ 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:1860
588
  msgid "Interval"
589
  msgstr "Intervalle"
590
 
@@ -804,7 +804,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:2495
808
  msgid "Available Shortcodes"
809
  msgstr "Shortcodes disponibles"
810
 
@@ -964,7 +964,7 @@ 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:370 ../modules/mycred-
968
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
969
  msgid "Actions"
970
  msgstr "Actions"
@@ -1414,7 +1414,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:2460
1418
  msgid "Title"
1419
  msgstr "Titre"
1420
 
@@ -1605,8 +1605,8 @@ msgid "Usage"
1605
  msgstr "Utilisation"
1606
 
1607
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1608
- #: transfer.php:243 ../modules/mycred-module-hooks.php:1219 ../modules/mycred-
1609
- #: module-hooks.php:1510
1610
  msgid "Limits"
1611
  msgstr "Règles de limitation"
1612
 
@@ -1619,7 +1619,7 @@ msgid "not yet used"
1619
  msgstr "pas encore utilisé"
1620
 
1621
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1622
- #: php:1950
1623
  msgid "Total"
1624
  msgstr "Total"
1625
 
@@ -1801,7 +1801,7 @@ msgid "Apply Coupon"
1801
  msgstr "Appliquer le bon"
1802
 
1803
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1804
- #: notices/myCRED-addon-email-notices.php:1104
1805
  msgid "Email Notice"
1806
  msgstr "Message à envoyer"
1807
 
@@ -1994,17 +1994,17 @@ msgstr ""
1994
  "lors de la modification d'un mail."
1995
 
1996
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1997
- #: notices/myCRED-addon-email-notices.php:771
1998
  msgid "Email Settings"
1999
  msgstr "Configuration des mails"
2000
 
2001
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
2002
- #: notices/myCRED-addon-email-notices.php:894
2003
  msgid "Senders Name:"
2004
  msgstr "Expéditeur:"
2005
 
2006
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
2007
- #: notices/myCRED-addon-email-notices.php:896
2008
  msgid "Senders Email:"
2009
  msgstr "Email de l'expéditeur"
2010
 
@@ -2028,140 +2028,140 @@ msgstr "Style par défaut"
2028
  msgid "Ignored if HTML is not allowed in emails."
2029
  msgstr "Sera ignoré si HTML désactivé pour les mails"
2030
 
2031
- #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
2032
- #: notices/myCRED-addon-email-notices.php:820
2033
  msgid "Email Subject"
2034
  msgstr "Sujet du mail"
2035
 
2036
- #: ../addons/email-notices/myCRED-addon-email-notices.php:706
2037
  msgid "Status"
2038
  msgstr "Statut"
2039
 
2040
- #: ../addons/email-notices/myCRED-addon-email-notices.php:726
2041
  msgid "Not Active"
2042
  msgstr "Inactif"
2043
 
2044
- #: ../addons/email-notices/myCRED-addon-email-notices.php:728
2045
  #, php-format
2046
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2047
  msgstr "Pr&eacute;vu pour le:<br /><strong>%1$s</strong>"
2048
 
2049
- #: ../addons/email-notices/myCRED-addon-email-notices.php:732
2050
  msgid "Active"
2051
  msgstr "Actif"
2052
 
2053
- #: ../addons/email-notices/myCRED-addon-email-notices.php:734
2054
  #, php-format
2055
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2056
  msgstr "Actif - derni&egave;re utilisation:<br /><strong>%1$s</strong>"
2057
 
2058
- #: ../addons/email-notices/myCRED-addon-email-notices.php:744
2059
  msgid "Email is sent when"
2060
  msgstr "Le mail sera envoyé quand"
2061
 
2062
- #: ../addons/email-notices/myCRED-addon-email-notices.php:746
2063
  msgid "Missing instance for this notice!"
2064
  msgstr "Ce message n'est pas instancié !"
2065
 
2066
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
2067
- #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
2068
- #: addon-email-notices.php:759
2069
  msgid "Sent To"
2070
  msgstr "Envoyer à"
2071
 
2072
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
2073
- #: notices/myCRED-addon-email-notices.php:884 ../includes/mycred-admin.php:764 ..
2074
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:542
2075
  msgid "User"
2076
  msgstr "Utilisateur"
2077
 
2078
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
2079
- #: notices/myCRED-addon-email-notices.php:885
2080
  msgid "Administrator"
2081
  msgstr "Administrateur"
2082
 
2083
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
2084
  msgid "Both Administrator and User"
2085
  msgstr "A l'administrateur et à l'utilisateur"
2086
 
2087
- #: ../addons/email-notices/myCRED-addon-email-notices.php:780
2088
  msgid "Available Template Tags"
2089
  msgstr "Mots-clés utilisables ici"
2090
 
2091
- #: ../addons/email-notices/myCRED-addon-email-notices.php:791
2092
  msgid "Email Header"
2093
  msgstr "En-tête du mail"
2094
 
2095
- #: ../addons/email-notices/myCRED-addon-email-notices.php:851
2096
  msgid "Send this email notice when..."
2097
  msgstr "Envoyer ce mail quand...."
2098
 
2099
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
2100
  msgid "Recipient:"
2101
  msgstr "Destinataire:"
2102
 
2103
- #: ../addons/email-notices/myCRED-addon-email-notices.php:886
2104
  msgid "Both"
2105
  msgstr "Les deux"
2106
 
2107
- #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
2108
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2109
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2110
  #: module-settings.php:526
2111
  msgid "Label"
2112
  msgstr "Etiquette"
2113
 
2114
- #: ../addons/email-notices/myCRED-addon-email-notices.php:898
2115
  msgid "Reply-To Email:"
2116
  msgstr "Adresse de réponse"
2117
 
2118
- #: ../addons/email-notices/myCRED-addon-email-notices.php:904
2119
  msgid "Save"
2120
  msgstr "Enregistrer"
2121
 
2122
- #: ../addons/email-notices/myCRED-addon-email-notices.php:916
2123
  msgid "CSS Styling"
2124
  msgstr "Règles de style"
2125
 
2126
- #: ../addons/email-notices/myCRED-addon-email-notices.php:932
2127
  msgid "Site Related"
2128
  msgstr "A propos du site"
2129
 
2130
- #: ../addons/email-notices/myCRED-addon-email-notices.php:933
2131
  msgid "Your websites title"
2132
  msgstr "Titre de votre site"
2133
 
2134
- #: ../addons/email-notices/myCRED-addon-email-notices.php:934
2135
  msgid "Your websites address"
2136
  msgstr "Adresse de votre site"
2137
 
2138
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
2139
  msgid "Your websites tagline (description)"
2140
  msgstr "Description de votre site"
2141
 
2142
- #: ../addons/email-notices/myCRED-addon-email-notices.php:936
2143
  msgid "Your websites admin email"
2144
  msgstr "Email de l'administrateur du site"
2145
 
2146
- #: ../addons/email-notices/myCRED-addon-email-notices.php:937
2147
  msgid "Total number of blog members"
2148
  msgstr "Total des membres de votre blog"
2149
 
2150
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
2151
- #: notices/myCRED-addon-email-notices.php:1018 ../addons/email-notices/myCRED-
2152
- #: addon-email-notices.php:1024
2153
  msgid "Email Notice Updated."
2154
  msgstr ""
2155
 
2156
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2157
  msgid "Email Notice Activated"
2158
  msgstr "Message activé"
2159
 
2160
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2161
  msgid "Email Notice Saved"
2162
  msgstr "Message enregistré"
2163
 
2164
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1040
2165
  msgid ""
2166
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2167
  "are not yet ready to use this email notice!"
@@ -2170,35 +2170,35 @@ msgstr ""
2170
  "actif ! Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à "
2171
  "l'utiliser."
2172
 
2173
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1042
2174
  #, php-format
2175
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2176
  msgstr "Ce message sera activ&eacute; le:<br /><strong>%1$s</strong>"
2177
 
2178
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1044
2179
  msgid "This email notice is active."
2180
  msgstr "Ce message est activé."
2181
 
2182
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2183
  msgid "Settings saved."
2184
  msgstr ""
2185
 
2186
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2187
  msgid "Unsubscribe"
2188
  msgstr ""
2189
 
2190
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1124
2191
  msgid "There are no email notifications yet."
2192
  msgstr ""
2193
 
2194
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1130
2195
  msgid "Save Changes"
2196
  msgstr ""
2197
 
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:765
2202
  msgid "Current Balance"
2203
  msgstr "Solde actuel"
2204
 
@@ -2324,7 +2324,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:912
2328
  msgid "Exchange Rate"
2329
  msgstr "Taux de change"
2330
 
@@ -2672,7 +2672,7 @@ 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:770
2676
  msgid "Log Entry"
2677
  msgstr "Journal d'activité"
2678
 
@@ -2755,7 +2755,7 @@ msgid "Reject"
2755
  msgstr "Rejeter"
2756
 
2757
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2758
- #: modules/mycred-module-log.php:502 ../modules/mycred-module-settings.php:488 ..
2759
  #: modules/mycred-module-settings.php:507
2760
  msgid "Delete"
2761
  msgstr "Suppirmer"
@@ -3212,11 +3212,11 @@ msgstr "Supprimer tous les classements"
3212
  msgid "Assign Ranks to Users"
3213
  msgstr "Attribuer un classement à l'utilisateur"
3214
 
3215
- #: ../addons/ranks/includes/mycred-rank-functions.php:197
3216
  msgid "mycred_get_users_rank() : Missing required user id"
3217
  msgstr "mycred_get_users_rank() : l'ID utilisateur requis est manquant"
3218
 
3219
- #: ../addons/ranks/includes/mycred-rank-functions.php:207
3220
  msgid "no rank"
3221
  msgstr "pas classé"
3222
 
@@ -3401,7 +3401,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:2277
3405
  msgid "Transfer"
3406
  msgstr "Transférer"
3407
 
@@ -3440,7 +3440,7 @@ msgstr ""
3440
  "autorisé avant qu'il ne soit activé."
3441
 
3442
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3443
- #: php:1009
3444
  msgid "Insufficient Funds. Please try a lower amount."
3445
  msgstr ""
3446
 
@@ -3608,24 +3608,24 @@ msgstr "Afficher le relevé de l'utilisateur"
3608
  msgid "Show users limit"
3609
  msgstr "Afficher la limite des membres"
3610
 
3611
- #: ../addons/transfer/myCRED-addon-transfer.php:798
3612
  msgid "username"
3613
  msgstr "nom d'utilisateur"
3614
 
3615
- #: ../addons/transfer/myCRED-addon-transfer.php:800
3616
  msgid "email"
3617
  msgstr "email"
3618
 
3619
- #: ../addons/transfer/myCRED-addon-transfer.php:802
3620
  #, php-format
3621
  msgid "recipients %s"
3622
  msgstr "destinataires %s"
3623
 
3624
- #: ../addons/transfer/myCRED-addon-transfer.php:875
3625
  msgid "To:"
3626
  msgstr "Transf&eacute;rer à :"
3627
 
3628
- #: ../addons/transfer/myCRED-addon-transfer.php:881
3629
  msgid "Amount:"
3630
  msgstr "Montant :"
3631
 
@@ -3677,8 +3677,8 @@ msgstr "Exclus"
3677
  msgid "Total: %s"
3678
  msgstr ""
3679
 
3680
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:252 ..
3681
- #: modules/mycred-module-log.php:253
3682
  msgid "History"
3683
  msgstr "Mes points"
3684
 
@@ -3750,15 +3750,15 @@ msgstr ""
3750
  msgid "%singular% balance"
3751
  msgstr "solde de %singular%"
3752
 
3753
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:771
3754
  msgid "Update Balance"
3755
  msgstr "Mettre à jour le solde"
3756
 
3757
- #: ../includes/mycred-admin.php:763
3758
  msgid "ID"
3759
  msgstr "ID"
3760
 
3761
- #: ../includes/mycred-admin.php:769
3762
  msgid "A positive or negative value"
3763
  msgstr "Une valeur positive ou négative"
3764
 
@@ -3810,290 +3810,298 @@ msgstr "et"
3810
  msgid "Available Template Tags:"
3811
  msgstr "Mots clés de template disponibles"
3812
 
3813
- #: ../includes/mycred-functions.php:1643
3814
  msgid "Entire Log"
3815
  msgstr "Tout le journal"
3816
 
3817
- #: ../includes/mycred-functions.php:1648 ../includes/mycred-functions.php:1649
3818
  msgid "Displayed Rows"
3819
  msgstr "Colonnes affichées"
3820
 
3821
- #: ../includes/mycred-functions.php:1653
3822
  msgid "Search Results"
3823
  msgstr "Résultats de la recherche"
3824
 
3825
- #: ../includes/mycred-functions.php:1654
3826
  msgid "My Entire Log"
3827
  msgstr "Mon journal complet"
3828
 
3829
- #: ../includes/mycred-functions.php:1774
3830
  msgid "ref empty"
3831
  msgstr "ref est vide"
3832
 
3833
- #: ../includes/mycred-functions.php:1782
3834
  msgid "incorrect user id format"
3835
  msgstr "format du ID utilisateur incorrect"
3836
 
3837
- #: ../includes/mycred-functions.php:1795
3838
  msgid "incorrect unix timestamp (from):"
3839
  msgstr "Horodatage unix incorrect (from):"
3840
 
3841
- #: ../includes/mycred-functions.php:1804
3842
  msgid "incorrect unix timestamp (to):"
3843
  msgstr "Horodatage unix incorrect (to):"
3844
 
3845
- #: ../includes/mycred-functions.php:2166
3846
  msgid "Website Registration"
3847
  msgstr ""
3848
 
3849
- #: ../includes/mycred-functions.php:2167
3850
  msgid "Website Visit"
3851
  msgstr ""
3852
 
3853
- #: ../includes/mycred-functions.php:2168
 
 
 
 
 
 
 
 
3854
  msgid "Logging in"
3855
  msgstr ""
3856
 
3857
- #: ../includes/mycred-functions.php:2169
3858
  msgid "Publishing Content"
3859
  msgstr ""
3860
 
3861
- #: ../includes/mycred-functions.php:2170 ../modules/mycred-module-hooks.php:1168
3862
  msgid "Approved Comment"
3863
  msgstr "Commentaire approuvé"
3864
 
3865
- #: ../includes/mycred-functions.php:2171
3866
  msgid "Unapproved Comment"
3867
  msgstr ""
3868
 
3869
- #: ../includes/mycred-functions.php:2172
3870
  msgid "SPAM Comment"
3871
  msgstr ""
3872
 
3873
- #: ../includes/mycred-functions.php:2173
3874
  msgid "Deleted Comment"
3875
  msgstr ""
3876
 
3877
- #: ../includes/mycred-functions.php:2174
3878
  msgid "Link Click"
3879
  msgstr ""
3880
 
3881
- #: ../includes/mycred-functions.php:2175
3882
  msgid "Watching Video"
3883
  msgstr ""
3884
 
3885
- #: ../includes/mycred-functions.php:2176
3886
  msgid "Visitor Referral"
3887
  msgstr ""
3888
 
3889
- #: ../includes/mycred-functions.php:2177
3890
  msgid "Signup Referral"
3891
  msgstr ""
3892
 
3893
- #: ../includes/mycred-functions.php:2181
3894
  msgid "New Profile Update"
3895
  msgstr ""
3896
 
3897
- #: ../includes/mycred-functions.php:2182
3898
  msgid "Avatar Upload"
3899
  msgstr ""
3900
 
3901
- #: ../includes/mycred-functions.php:2183
3902
  msgid "New Friendship"
3903
  msgstr ""
3904
 
3905
- #: ../includes/mycred-functions.php:2184
3906
  msgid "Ended Friendship"
3907
  msgstr ""
3908
 
3909
- #: ../includes/mycred-functions.php:2185
3910
  msgid "New Profile Comment"
3911
  msgstr ""
3912
 
3913
- #: ../includes/mycred-functions.php:2186
3914
  msgid "Profile Comment Deletion"
3915
  msgstr ""
3916
 
3917
- #: ../includes/mycred-functions.php:2187
3918
  msgid "New Message"
3919
  msgstr ""
3920
 
3921
- #: ../includes/mycred-functions.php:2188
3922
  msgid "Sending Gift"
3923
  msgstr ""
3924
 
3925
- #: ../includes/mycred-functions.php:2189
3926
  msgid "New Group"
3927
  msgstr ""
3928
 
3929
- #: ../includes/mycred-functions.php:2190
3930
  msgid "Deleted Group"
3931
  msgstr ""
3932
 
3933
- #: ../includes/mycred-functions.php:2191
3934
  msgid "New Group Forum Topic"
3935
  msgstr ""
3936
 
3937
- #: ../includes/mycred-functions.php:2192
3938
  msgid "Edit Group Forum Topic"
3939
  msgstr ""
3940
 
3941
- #: ../includes/mycred-functions.php:2193
3942
  msgid "New Group Forum Post"
3943
  msgstr ""
3944
 
3945
- #: ../includes/mycred-functions.php:2194
3946
  msgid "Edit Group Forum Post"
3947
  msgstr ""
3948
 
3949
- #: ../includes/mycred-functions.php:2195
3950
  msgid "Joining Group"
3951
  msgstr ""
3952
 
3953
- #: ../includes/mycred-functions.php:2196
3954
  msgid "Leaving Group"
3955
  msgstr ""
3956
 
3957
- #: ../includes/mycred-functions.php:2197
3958
  msgid "New Group Avatar"
3959
  msgstr ""
3960
 
3961
- #: ../includes/mycred-functions.php:2198
3962
  msgid "New Group Comment"
3963
  msgstr ""
3964
 
3965
- #: ../includes/mycred-functions.php:2202 ../plugins/mycred-hook-buddypress-media.
3966
  #: php:166
3967
  msgid "Photo Upload"
3968
  msgstr "Télécharger la photo"
3969
 
3970
- #: ../includes/mycred-functions.php:2203 ../plugins/mycred-hook-buddypress-media.
3971
  #: php:176
3972
  msgid "Video Upload"
3973
  msgstr "Télécharger la vidéo"
3974
 
3975
- #: ../includes/mycred-functions.php:2204 ../plugins/mycred-hook-buddypress-media.
3976
  #: php:186
3977
  msgid "Music Upload"
3978
  msgstr "Télécharger la musique"
3979
 
3980
- #: ../includes/mycred-functions.php:2208
3981
  msgid "New Link"
3982
  msgstr ""
3983
 
3984
- #: ../includes/mycred-functions.php:2209
3985
  msgid "Link Voting"
3986
  msgstr ""
3987
 
3988
- #: ../includes/mycred-functions.php:2210
3989
  msgid "Link Update"
3990
  msgstr ""
3991
 
3992
- #: ../includes/mycred-functions.php:2214
3993
  msgid "New Forum (bbPress)"
3994
  msgstr ""
3995
 
3996
- #: ../includes/mycred-functions.php:2215
3997
  msgid "New Forum Topic (bbPress)"
3998
  msgstr ""
3999
 
4000
- #: ../includes/mycred-functions.php:2216
4001
  msgid "Favorited Topic (bbPress)"
4002
  msgstr ""
4003
 
4004
- #: ../includes/mycred-functions.php:2217
4005
  msgid "New Topic Reply (bbPress)"
4006
  msgstr ""
4007
 
4008
- #: ../includes/mycred-functions.php:2221
4009
  msgid "Form Submission (Contact Form 7)"
4010
  msgstr ""
4011
 
4012
- #: ../includes/mycred-functions.php:2224
4013
  msgid "Form Submission (Gravity Form)"
4014
  msgstr ""
4015
 
4016
- #: ../includes/mycred-functions.php:2227
4017
  msgid "New Forum Topic (SimplePress)"
4018
  msgstr ""
4019
 
4020
- #: ../includes/mycred-functions.php:2228
4021
  msgid "New Forum Post (SimplePress)"
4022
  msgstr ""
4023
 
4024
- #: ../includes/mycred-functions.php:2232
4025
  msgid "Poll Voting"
4026
  msgstr ""
4027
 
4028
- #: ../includes/mycred-functions.php:2235
4029
  msgid "Sending an Invite"
4030
  msgstr ""
4031
 
4032
- #: ../includes/mycred-functions.php:2236
4033
  msgid "Accepting an Invite"
4034
  msgstr ""
4035
 
4036
- #: ../includes/mycred-functions.php:2242
4037
  msgid "Banking Payout"
4038
  msgstr ""
4039
 
4040
- #: ../includes/mycred-functions.php:2245
4041
  msgid "buyCRED Purchase (PayPal Standard)"
4042
  msgstr ""
4043
 
4044
- #: ../includes/mycred-functions.php:2246
4045
  msgid "buyCRED Purchase (Skrill)"
4046
  msgstr ""
4047
 
4048
- #: ../includes/mycred-functions.php:2247
4049
  msgid "buyCRED Purchase (Zombaio)"
4050
  msgstr ""
4051
 
4052
- #: ../includes/mycred-functions.php:2248
4053
  msgid "buyCRED Purchase (NETBilling)"
4054
  msgstr ""
4055
 
4056
- #: ../includes/mycred-functions.php:2249
4057
  msgid "buyCRED Purchase (BitPay)"
4058
  msgstr ""
4059
 
4060
- #: ../includes/mycred-functions.php:2254
4061
  msgid "Coupon Purchase"
4062
  msgstr ""
4063
 
4064
- #: ../includes/mycred-functions.php:2257
4065
  msgid "Store Purchase (WooCommerce)"
4066
  msgstr ""
4067
 
4068
- #: ../includes/mycred-functions.php:2258
4069
  msgid "Store Purchase (MarketPress)"
4070
  msgstr ""
4071
 
4072
- #: ../includes/mycred-functions.php:2259
4073
  msgid "Store Purchase (WP E-Commerce)"
4074
  msgstr ""
4075
 
4076
- #: ../includes/mycred-functions.php:2264
4077
  msgid "Event Payment (Event Espresso)"
4078
  msgstr ""
4079
 
4080
- #: ../includes/mycred-functions.php:2265
4081
  msgid "Event Sale (Event Espresso)"
4082
  msgstr ""
4083
 
4084
- #: ../includes/mycred-functions.php:2269
4085
  msgid "Event Payment (Events Manager)"
4086
  msgstr ""
4087
 
4088
- #: ../includes/mycred-functions.php:2270
4089
  msgid "Event Sale (Events Manager)"
4090
  msgstr ""
4091
 
4092
- #: ../includes/mycred-functions.php:2274
4093
  msgid "Content Purchase / Sale"
4094
  msgstr ""
4095
 
4096
- #: ../includes/mycred-functions.php:2281
4097
  msgid "Manual Adjustment by Admin"
4098
  msgstr ""
4099
 
@@ -4377,7 +4385,7 @@ msgstr "Aucune option d'exportation disponible."
4377
  msgid "Entry"
4378
  msgstr "Motif"
4379
 
4380
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:464
4381
  msgid "User Missing"
4382
  msgstr "Utilisateur inexistant"
4383
 
@@ -4608,60 +4616,60 @@ msgstr "Erreur - essayez encore une fois"
4608
  msgid "A video ID is required for this shortcode"
4609
  msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
4610
 
4611
- #: ../includes/mycred-shortcodes.php:861 ../includes/mycred-shortcodes.php:955
4612
  msgid "Point types not found."
4613
  msgstr ""
4614
 
4615
- #: ../includes/mycred-shortcodes.php:867 ../includes/mycred-shortcodes.php:875 ..
4616
- #: includes/mycred-shortcodes.php:967 ../includes/mycred-shortcodes.php:987
4617
  #, php-format
4618
  msgid "You are excluded from using %s."
4619
  msgstr ""
4620
 
4621
- #: ../includes/mycred-shortcodes.php:871 ../includes/mycred-shortcodes.php:977
4622
  msgid "Your balance is too low to use this feature."
4623
  msgstr ""
4624
 
4625
- #: ../includes/mycred-shortcodes.php:892
4626
  #, php-format
4627
  msgid "Convert <span>%s</span> to <span>%s</span>"
4628
  msgstr ""
4629
 
4630
- #: ../includes/mycred-shortcodes.php:901
4631
  #, php-format
4632
  msgid "Your current %s balance"
4633
  msgstr ""
4634
 
4635
- #: ../includes/mycred-shortcodes.php:909
4636
  #, php-format
4637
  msgid "Minimum %s"
4638
  msgstr ""
4639
 
4640
- #: ../includes/mycred-shortcodes.php:913
4641
  #, php-format
4642
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4643
  msgstr ""
4644
 
4645
- #: ../includes/mycred-shortcodes.php:919
4646
  msgid "Exchange"
4647
  msgstr ""
4648
 
4649
- #: ../includes/mycred-shortcodes.php:1000
4650
  #, php-format
4651
  msgid "You must exchange at least %s!"
4652
  msgstr ""
4653
 
4654
- #: ../includes/mycred-shortcodes.php:1022
4655
  #, php-format
4656
  msgid "Exchange from %s"
4657
  msgstr ""
4658
 
4659
- #: ../includes/mycred-shortcodes.php:1034
4660
  #, php-format
4661
  msgid "Exchange to %s"
4662
  msgstr ""
4663
 
4664
- #: ../includes/mycred-shortcodes.php:1042
4665
  #, php-format
4666
  msgid "You have successfully exchanged %s into %s."
4667
  msgstr ""
@@ -5200,22 +5208,33 @@ msgstr ""
5200
 
5201
  #: ../modules/mycred-module-hooks.php:101
5202
  #, php-format
 
 
 
 
 
 
 
 
 
 
 
5203
  msgid "%plural% for logins"
5204
  msgstr "%plural% pour une connexion"
5205
 
5206
- #: ../modules/mycred-module-hooks.php:102
5207
  #, php-format
5208
  msgid ""
5209
  "Award %_plural% for logging in to your website. You can also set an optional "
5210
  "limit."
5211
  msgstr "Attribution de %_plural% pour chaque connexion d'un membre à votre site."
5212
 
5213
- #: ../modules/mycred-module-hooks.php:108
5214
  #, php-format
5215
  msgid "%plural% for publishing content"
5216
  msgstr "%plural% pour publication de contenu"
5217
 
5218
- #: ../modules/mycred-module-hooks.php:109
5219
  #, php-format
5220
  msgid ""
5221
  "Award %_plural% for publishing content on your website. If your custom post "
@@ -5225,27 +5244,27 @@ msgstr ""
5225
  "Custom Post Type sur votre site. Ils doivent être réglés sur \"public\" pour "
5226
  "apparaître ci-dessous."
5227
 
5228
- #: ../modules/mycred-module-hooks.php:115
5229
  #, php-format
5230
  msgid "%plural% for comments"
5231
  msgstr "%plural% pour commentaire"
5232
 
5233
- #: ../modules/mycred-module-hooks.php:115
5234
  #, php-format
5235
  msgid "%plural% for Disqus comments"
5236
  msgstr "%plural% pour des commentaires avec Disqus"
5237
 
5238
- #: ../modules/mycred-module-hooks.php:116
5239
  #, php-format
5240
  msgid "Award %_plural% for making comments."
5241
  msgstr "Attribution de %_plural% pour les commentaires"
5242
 
5243
- #: ../modules/mycred-module-hooks.php:122
5244
  #, php-format
5245
  msgid "%plural% for clicking on links"
5246
  msgstr "%plural% pour click sur un lien"
5247
 
5248
- #: ../modules/mycred-module-hooks.php:123
5249
  msgid ""
5250
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5251
  "shortcode."
@@ -5253,12 +5272,12 @@ msgstr ""
5253
  "Atribuer des %_plural% aux utilisateurs cliquant sur des liens générés avec "
5254
  "le shortcode [mycred_link]"
5255
 
5256
- #: ../modules/mycred-module-hooks.php:129
5257
  #, php-format
5258
  msgid "%plural% for viewing Videos"
5259
  msgstr "%plural% pour visionnage d'une vidéo"
5260
 
5261
- #: ../modules/mycred-module-hooks.php:130
5262
  msgid ""
5263
  "Award %_plural% to users who watches videos embedded using the "
5264
  "[mycred_video] shortcode."
@@ -5266,23 +5285,23 @@ msgstr ""
5266
  "Atribuer des %_plural% aux utilisateurs visionnant des vidéos avec le "
5267
  "shortcode [mycred_video] "
5268
 
5269
- #: ../modules/mycred-module-hooks.php:136
5270
  #, php-format
5271
  msgid "%plural% for referrals"
5272
  msgstr "%plural% pour référants"
5273
 
5274
- #: ../modules/mycred-module-hooks.php:137
5275
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5276
  msgstr ""
5277
  "Attribuez des %_plural% aux utilisateurs qui font référence à l'inscription "
5278
  "des visiteurs ou à celles des nouveaux membres."
5279
 
5280
- #: ../modules/mycred-module-hooks.php:170
5281
  #, php-format
5282
  msgid "%s Hooks"
5283
  msgstr "Plugins %s"
5284
 
5285
- #: ../modules/mycred-module-hooks.php:173
5286
  msgid ""
5287
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5288
  "depending on their actions around your website."
@@ -5292,66 +5311,96 @@ msgstr ""
5292
  "(en haut à droite sous la barre d'outils WP) pour une liste complète des "
5293
  "mots-clés disponibles pour l'affichage des textes."
5294
 
5295
- #: ../modules/mycred-module-hooks.php:345 ../modules/mycred-module-hooks.php:439 .
5296
- #: ./modules/mycred-module-hooks.php:751 ../modules/mycred-module-hooks.php:764 ..
5297
- #: modules/mycred-module-hooks.php:800 ../modules/mycred-module-hooks.php:1180 ..
5298
- #: modules/mycred-module-hooks.php:1197 ../modules/mycred-module-hooks.php:1214 .
5299
- #: ./modules/mycred-module-hooks.php:2370 ../modules/mycred-module-hooks.php:2399
5300
- #: ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 .
5301
- #: ./plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ..
5302
- #: plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ..
5303
- #: plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ..
5304
- #: plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-
5305
- #: buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ..
5306
- #: plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-
5307
- #: buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ..
5308
- #: plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-
5309
- #: buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ..
5310
- #: plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-
5311
- #: buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ..
5312
- #: plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
5313
- #: buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-
5314
- #: hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ..
5315
- #: plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:
5316
- #: 446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-
5317
- #: buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-
5318
- #: hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ..
5319
- #: plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:
5320
- #: 978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-
5321
- #: buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ..
5322
- #: plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:
5323
- #: 1044 ../plugins/mycred-hook-contact-form7.php:141 ../plugins/mycred-hook-
5324
- #: gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.php:219 ..
5325
- #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-jetpack.php:
5326
- #: 506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-sharethis.
5327
- #: php:258 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-
5328
- #: simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ..
5329
- #: plugins/mycred-hook-simplepress.php:380
 
5330
  msgid "Log template"
5331
  msgstr "Texte à afficher"
5332
 
5333
- #: ../modules/mycred-module-hooks.php:640 ../modules/mycred-module-hooks.php:2378
5334
- #: ../modules/mycred-module-hooks.php:2407 ../plugins/mycred-hook-invite-anyone.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5335
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5336
  msgid "Limit"
5337
  msgstr "Limite d'attribution"
5338
 
5339
- #: ../modules/mycred-module-hooks.php:745
5340
  #, php-format
5341
  msgid "%plural% for Posts"
5342
  msgstr "%plural% pour un article"
5343
 
5344
- #: ../modules/mycred-module-hooks.php:758
5345
  #, php-format
5346
  msgid "%plural% for Pages"
5347
  msgstr "%plural% pour une page"
5348
 
5349
- #: ../modules/mycred-module-hooks.php:794
5350
  #, php-format
5351
  msgid "%plural% for %s"
5352
  msgstr "%plural% pour %s"
5353
 
5354
- #: ../modules/mycred-module-hooks.php:1166
5355
  msgid ""
5356
  "%plural% are only awarded when your website has been synced with the Disqus "
5357
  "server!"
@@ -5359,29 +5408,24 @@ msgstr ""
5359
  "Les %plural% seront uniquement attribués une fois que votre site sera "
5360
  "synchronisé avec les serveurs Disqus."
5361
 
5362
- #: ../modules/mycred-module-hooks.php:1171 ../modules/mycred-module-hooks.php:
5363
- #: 1188 ../modules/mycred-module-hooks.php:1205
5364
  msgid "Comment Author"
5365
  msgstr "Auteur du commentaire"
5366
 
5367
- #: ../modules/mycred-module-hooks.php:1175 ../modules/mycred-module-hooks.php:
5368
- #: 1192 ../modules/mycred-module-hooks.php:1209
5369
- msgid "Content Author"
5370
- msgstr "Auteur du contenu"
5371
-
5372
- #: ../modules/mycred-module-hooks.php:1185
5373
  msgid "Comment Marked SPAM"
5374
  msgstr "Commentaire signalé comme SPAM"
5375
 
5376
- #: ../modules/mycred-module-hooks.php:1202
5377
  msgid "Trashed / Unapproved Comments"
5378
  msgstr "Commentaire supprimé/refusé"
5379
 
5380
- #: ../modules/mycred-module-hooks.php:1222
5381
  msgid "Limit per post"
5382
  msgstr "Limite par article"
5383
 
5384
- #: ../modules/mycred-module-hooks.php:1224
5385
  msgid ""
5386
  "The number of comments per post that grants %_plural% to the comment author. "
5387
  "Use zero for unlimited."
@@ -5389,17 +5433,17 @@ msgstr ""
5389
  "Le nombre de commentaires par article qui donne droit à des %_plural% pour "
5390
  "l'auteur du commentaire. Indiquez zéro si illimité."
5391
 
5392
- #: ../modules/mycred-module-hooks.php:1228
5393
  msgid "Limit per day"
5394
  msgstr "Limite par jour"
5395
 
5396
- #: ../modules/mycred-module-hooks.php:1230
5397
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5398
  msgstr ""
5399
  "Le nombre de commentaires par jour qui donne droit à des %_plural%. Indiquez "
5400
  "zéro si illimité."
5401
 
5402
- #: ../modules/mycred-module-hooks.php:1235
5403
  msgid ""
5404
  "%plural% is to be awarded even when comment authors reply to their own "
5405
  "comment."
@@ -5407,15 +5451,15 @@ msgstr ""
5407
  "Attribuer des %_plural% &agrave; l&#39;auteur d&#39;un commentaire r&eacute;"
5408
  "pondant &agrave; son propre commentaire."
5409
 
5410
- #: ../modules/mycred-module-hooks.php:1306
5411
  msgid "Once for each unique URL"
5412
  msgstr "Une fois pour chaque URL unique"
5413
 
5414
- #: ../modules/mycred-module-hooks.php:1307
5415
  msgid "Once for each unique link id"
5416
  msgstr "Une fois pour chaque ID unique de lien"
5417
 
5418
- #: ../modules/mycred-module-hooks.php:1500
5419
  msgid ""
5420
  "The default amount to award for clicking on links. You can override this in "
5421
  "the shortcode."
@@ -5423,16 +5467,16 @@ msgstr ""
5423
  "Le nombre par défaut à attribuer à chaque click sur un lien. Peut être "
5424
  "modifié avec le shortcode."
5425
 
5426
- #: ../modules/mycred-module-hooks.php:1507
5427
  #, php-format
5428
  msgid "Custom tags: %url%, %title% or %id%."
5429
  msgstr "Mots clés pouvant être utilisé ici: %url%, %title% ou %id%."
5430
 
5431
- #: ../modules/mycred-module-hooks.php:1518 ../modules/mycred-module-hooks.php:2481
5432
  msgid "Note!"
5433
  msgstr "Information&nbsp;!"
5434
 
5435
- #: ../modules/mycred-module-hooks.php:1518
5436
  msgid ""
5437
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5438
  "generate one automatically based on the value set under href. If you are "
@@ -5444,44 +5488,44 @@ msgstr ""
5444
  "Si vous utilisez cette fonctionnalité pour \"partager\" du contenu, nous vous "
5445
  "recommandons fortement de limiter par ID."
5446
 
5447
- #: ../modules/mycred-module-hooks.php:1520 ../modules/mycred-module-hooks.php:1878
5448
  msgid "Available Shortcode"
5449
  msgstr "Shortcode disponible"
5450
 
5451
- #: ../modules/mycred-module-hooks.php:1842
5452
  msgid "Amount to award for viewing videos."
5453
  msgstr "Montant à attribuer pour le visionnage d'une vidéo."
5454
 
5455
- #: ../modules/mycred-module-hooks.php:1852
5456
  msgid "Award Logic"
5457
  msgstr "Attributs de classement"
5458
 
5459
- #: ../modules/mycred-module-hooks.php:1854
5460
  #, php-format
5461
  msgid "Select when %_plural% should be awarded or deducted."
5462
  msgstr "Sélectionnez à quel moment des %_plural% doivent être attribués"
5463
 
5464
- #: ../modules/mycred-module-hooks.php:1855
5465
  msgid "Play - As soon as video starts playing."
5466
  msgstr "Play - aussitôt que la vidéo démarre"
5467
 
5468
- #: ../modules/mycred-module-hooks.php:1856
5469
  msgid "Full - First when the entire video has played."
5470
  msgstr "Complet - seulement quand la vidéo a été lue jusqu'au bout"
5471
 
5472
- #: ../modules/mycred-module-hooks.php:1857
5473
  msgid "Interval - For each x number of seconds watched."
5474
  msgstr "Intervalle - par tranche de X nombre de secondes de visionnage"
5475
 
5476
- #: ../modules/mycred-module-hooks.php:1862
5477
  msgid "Number of seconds"
5478
  msgstr "Nombre de secondes"
5479
 
5480
- #: ../modules/mycred-module-hooks.php:1869
5481
  msgid "Leniency"
5482
  msgstr "Tolérance"
5483
 
5484
- #: ../modules/mycred-module-hooks.php:1871
5485
  msgid ""
5486
  "The maximum percentage a users view of a movie can differ from the actual "
5487
  "length."
@@ -5489,7 +5533,7 @@ msgstr ""
5489
  "Le pourcentage maximum qu'un utilisateur peut visionner peut différer de la "
5490
  "longueur actuelle d'une vidéo."
5491
 
5492
- #: ../modules/mycred-module-hooks.php:1874
5493
  msgid ""
5494
  "Do not set this value to zero! A lot of thing can happen while a user "
5495
  "watches a movie and sometimes a few seconds can drop of the counter due to "
@@ -5499,77 +5543,77 @@ msgstr ""
5499
  "produire pendant un visonnage. Quelques secondes peuvent parfois bloquer un "
5500
  "compteur pendant la mise en tampon ou produire des erreurs de différé."
5501
 
5502
- #: ../modules/mycred-module-hooks.php:1942
5503
  msgid "Affiliate Program"
5504
  msgstr "Programme d'affiliation"
5505
 
5506
- #: ../modules/mycred-module-hooks.php:1951
5507
  msgid "Per Day"
5508
  msgstr "Par jour"
5509
 
5510
- #: ../modules/mycred-module-hooks.php:2063
5511
  msgid "Link"
5512
  msgstr "Lien"
5513
 
5514
- #: ../modules/mycred-module-hooks.php:2364
5515
  msgid "Referring Visitors"
5516
  msgstr "Visiteurs réferants"
5517
 
5518
- #: ../modules/mycred-module-hooks.php:2388 ../modules/mycred-module-hooks.php:2417
5519
  msgid "The number of referrals each member can make. Use zero for unlimited."
5520
  msgstr ""
5521
  "Le nombre de renvois que chaque membre peut faire. Utilisez zéro pour "
5522
  "illimité."
5523
 
5524
- #: ../modules/mycred-module-hooks.php:2392 ../modules/mycred-module-hooks.php:2421
5525
  msgid "Referring Signups"
5526
  msgstr "Inscriptions référentes"
5527
 
5528
- #: ../modules/mycred-module-hooks.php:2396
5529
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5530
  msgstr ""
5531
  "Les visiteurs ayant désactivés les cookies ne pourront pas attribuer de "
5532
  "%_plural%."
5533
 
5534
- #: ../modules/mycred-module-hooks.php:2423
5535
  msgid "Registrations are disabled."
5536
  msgstr "Les inscriptions sont désactivées."
5537
 
5538
- #: ../modules/mycred-module-hooks.php:2430
5539
  msgid "Referral Links"
5540
  msgstr "Liens référents"
5541
 
5542
- #: ../modules/mycred-module-hooks.php:2434
5543
  msgid "Assign numeric referral IDs to each user."
5544
  msgstr "Assigner un ID de référence numérique à chaque utilisateur."
5545
 
5546
- #: ../modules/mycred-module-hooks.php:2435 ../modules/mycred-module-hooks.php:2441
5547
  msgid "Example"
5548
  msgstr "Exemple"
5549
 
5550
- #: ../modules/mycred-module-hooks.php:2440
5551
  msgid "Assign usernames as IDs for each user."
5552
  msgstr "Assigner son nom d'utilisateur comme ID à chaque utilisateur."
5553
 
5554
- #: ../modules/mycred-module-hooks.php:2444
5555
  msgid "IP Limit"
5556
  msgstr "Limite IP"
5557
 
5558
- #: ../modules/mycred-module-hooks.php:2448
5559
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5560
  msgstr ""
5561
  "Le nombre de fois que chaque adresse IP se voit attribuer des %_plural%. "
5562
  "Indiquez 0 pour un nombre illimité."
5563
 
5564
- #: ../modules/mycred-module-hooks.php:2452 ../modules/mycred-module-hooks.php:2485
5565
  msgid "BuddyPress Profile"
5566
  msgstr "Profil BuddyPress"
5567
 
5568
- #: ../modules/mycred-module-hooks.php:2455
5569
  msgid "Insert Link in users Profile"
5570
  msgstr "Insérer un lien sur le Profil des utilisateurs"
5571
 
5572
- #: ../modules/mycred-module-hooks.php:2456
5573
  msgid ""
5574
  "Option to inser the referral link in users profiles. Links will only be "
5575
  "visible to users viewing their own profiles or administrators."
@@ -5578,23 +5622,23 @@ msgstr ""
5578
  "visible que par l'utilisateur sur son propre profil et pour les "
5579
  "administrateurs du site."
5580
 
5581
- #: ../modules/mycred-module-hooks.php:2462
5582
  msgid "Leave empty to hide."
5583
  msgstr "Laissez vide pour masquer"
5584
 
5585
- #: ../modules/mycred-module-hooks.php:2465
5586
  msgid "Description"
5587
  msgstr "Description"
5588
 
5589
- #: ../modules/mycred-module-hooks.php:2466
5590
  msgid "Optional description to insert under the link."
5591
  msgstr "Description facultative qui apparaîtra sous le lien"
5592
 
5593
- #: ../modules/mycred-module-hooks.php:2478
5594
  msgid "Profile Positioning"
5595
  msgstr "Position sur le Profil"
5596
 
5597
- #: ../modules/mycred-module-hooks.php:2480
5598
  msgid ""
5599
  "You can move around the referral link on your users profile by changing the "
5600
  "position. Increase to move up, decrease to move down."
@@ -5602,80 +5646,80 @@ msgstr ""
5602
  "Vous pouvez déplacer le lien de référence sur votre profil en modifiant sa "
5603
  "position vers le haut ou le bas."
5604
 
5605
- #: ../modules/mycred-module-hooks.php:2481
5606
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5607
  msgstr ""
5608
  "Vous ne pouvez pas déplacer le lien de référence au-dessus du champ de "
5609
  "profil \"Base\" "
5610
 
5611
- #: ../modules/mycred-module-hooks.php:2487
5612
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5613
  msgstr "Nécessite l'activation du composant Profils Etendus de BuddyPress"
5614
 
5615
- #: ../modules/mycred-module-log.php:187 ../modules/mycred-module-log.php:208 ..
5616
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5617
  msgid "Access denied for this action"
5618
  msgstr "Accés refusé pour cette action"
5619
 
5620
- #: ../modules/mycred-module-log.php:194
5621
  msgid "Row Deleted"
5622
  msgstr "Ligne supprimée"
5623
 
5624
- #: ../modules/mycred-module-log.php:221
5625
  msgid "Log entry not found"
5626
  msgstr "Entrée introuvable"
5627
 
5628
- #: ../modules/mycred-module-log.php:234
5629
  msgid "Entry Updated"
5630
  msgstr "Entrée mise à jour"
5631
 
5632
- #: ../modules/mycred-module-log.php:288 ../modules/mycred-module-settings.php:436
5633
  msgid "Entries"
5634
  msgstr "Entrées"
5635
 
5636
- #: ../modules/mycred-module-log.php:303 ../modules/mycred-module-log.php:383 ..
5637
- #: modules/mycred-module-log.php:627 ../modules/mycred-module-settings.php:574
5638
  msgid "Export"
5639
  msgstr "Exporter"
5640
 
5641
- #: ../modules/mycred-module-log.php:309
5642
  msgid "Search results for"
5643
  msgstr "Résultat de la recherche pour"
5644
 
5645
- #: ../modules/mycred-module-log.php:377
5646
  #, php-format
5647
  msgid "%s Log"
5648
  msgstr "Journal %s"
5649
 
5650
- #: ../modules/mycred-module-log.php:502
5651
  msgid "Edit"
5652
  msgstr "Modifier"
5653
 
5654
- #: ../modules/mycred-module-log.php:543
5655
  msgid "Time"
5656
  msgstr "Durée"
5657
 
5658
- #: ../modules/mycred-module-log.php:547
5659
  msgid "Current Log Entry"
5660
  msgstr "Entrée actuelle"
5661
 
5662
- #: ../modules/mycred-module-log.php:549
5663
  msgid "The current saved log entry"
5664
  msgstr "L'entrée sauvegardée actuelle"
5665
 
5666
- #: ../modules/mycred-module-log.php:552
5667
  msgid "Adjust Log Entry"
5668
  msgstr "Ajuster le journal"
5669
 
5670
- #: ../modules/mycred-module-log.php:554
5671
  msgid "The new log entry"
5672
  msgstr "La nouvelle entrée de journal"
5673
 
5674
- #: ../modules/mycred-module-log.php:557
5675
  msgid "Update Log Entry"
5676
  msgstr "Mettre à jour le journal"
5677
 
5678
- #: ../modules/mycred-module-log.php:621
5679
  #, php-format
5680
  msgid "My %s History"
5681
  msgstr "Mon historique %s"
@@ -5921,8 +5965,8 @@ msgstr ""
5921
  "Les auteurs de forum percoivent des %_plural% pour la création de nouveaux "
5922
  "sujets."
5923
 
5924
- #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 .
5925
- #: ./plugins/mycred-hook-simplepress.php:336
5926
  #, php-format
5927
  msgid "%plural% for Topic Deletion"
5928
  msgstr "%plural% pour suppression d'un message de forum"
@@ -5958,6 +6002,11 @@ msgstr "Attribuer des %_plural% à l'auteur d'un sujet répondant à son propre
5958
  msgid "Show users %_plural% balance in replies"
5959
  msgstr "Afficher le relevé de %_plural% dans les réponses des utilisateurs"
5960
 
 
 
 
 
 
5961
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5962
  msgid "BuddyPress: Gallery Actions"
5963
  msgstr "BuddyPress: actions relatives aux albums"
@@ -6360,19 +6409,15 @@ msgstr ""
6360
  msgid "%plural% for Topic Post Deletion"
6361
  msgstr "%plural% pour suppression d'un sujet"
6362
 
6363
- #: ../plugins/mycred-hook-woocommerce.php:65
6364
  msgid "Reward with %plural%"
6365
  msgstr ""
6366
 
6367
- #: ../plugins/mycred-hook-woocommerce.php:70
6368
- msgid "User is excluded from this point type."
6369
- msgstr ""
6370
-
6371
- #: ../plugins/mycred-hook-woocommerce.php:199
6372
  msgid "WooCommerce Product Reviews"
6373
  msgstr ""
6374
 
6375
- #: ../plugins/mycred-hook-woocommerce.php:200
6376
  #, php-format
6377
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6378
  msgstr ""
@@ -6404,3 +6449,5 @@ msgstr "WP-Polls"
6404
  #, php-format
6405
  msgid "Awards %_plural% for users voting in polls."
6406
  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: 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
  "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"
99
  msgstr "L'entrée du journal a été mise à jour"
100
 
101
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
102
+ #: notices.php:718 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
103
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
104
  msgid "Setup"
105
  msgstr "Configuration"
129
  msgstr "Ce hook n'a pas de paramètre."
130
 
131
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
132
+ #: 1558
133
  msgid "No limit"
134
  msgstr "Illimité"
135
 
155
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
157
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
158
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:868
159
  msgid "Select"
160
  msgstr "sélectionnez"
161
 
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é"
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
 
529
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
530
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
531
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
532
+ #: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
533
+ #: modules/mycred-module-hooks.php:2098 ../plugins/mycred-hook-badgeOS.php:115 ..
534
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
535
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
536
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
537
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
538
+ #: php:298 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
539
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
540
  msgid "Log Template"
541
  msgstr "Texte à afficher"
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
 
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
 
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
 
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"
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
 
1605
  msgstr "Utilisation"
1606
 
1607
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1608
+ #: transfer.php:243 ../modules/mycred-module-hooks.php:1472 ../modules/mycred-
1609
+ #: module-hooks.php:1763
1610
  msgid "Limits"
1611
  msgstr "Règles de limitation"
1612
 
1619
  msgstr "pas encore utilisé"
1620
 
1621
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1622
+ #: php:2203
1623
  msgid "Total"
1624
  msgstr "Total"
1625
 
1801
  msgstr "Appliquer le bon"
1802
 
1803
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1804
+ #: notices/myCRED-addon-email-notices.php:1115
1805
  msgid "Email Notice"
1806
  msgstr "Message à envoyer"
1807
 
1994
  "lors de la modification d'un mail."
1995
 
1996
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1997
+ #: notices/myCRED-addon-email-notices.php:782
1998
  msgid "Email Settings"
1999
  msgstr "Configuration des mails"
2000
 
2001
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
2002
+ #: notices/myCRED-addon-email-notices.php:905
2003
  msgid "Senders Name:"
2004
  msgstr "Expéditeur:"
2005
 
2006
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
2007
+ #: notices/myCRED-addon-email-notices.php:907
2008
  msgid "Senders Email:"
2009
  msgstr "Email de l'expéditeur"
2010
 
2028
  msgid "Ignored if HTML is not allowed in emails."
2029
  msgstr "Sera ignoré si HTML désactivé pour les mails"
2030
 
2031
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:716 ../addons/email-
2032
+ #: notices/myCRED-addon-email-notices.php:831
2033
  msgid "Email Subject"
2034
  msgstr "Sujet du mail"
2035
 
2036
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:717
2037
  msgid "Status"
2038
  msgstr "Statut"
2039
 
2040
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:737
2041
  msgid "Not Active"
2042
  msgstr "Inactif"
2043
 
2044
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:739
2045
  #, php-format
2046
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2047
  msgstr "Pr&eacute;vu pour le:<br /><strong>%1$s</strong>"
2048
 
2049
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:743
2050
  msgid "Active"
2051
  msgstr "Actif"
2052
 
2053
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:745
2054
  #, php-format
2055
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2056
  msgstr "Actif - derni&egave;re utilisation:<br /><strong>%1$s</strong>"
2057
 
2058
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755
2059
  msgid "Email is sent when"
2060
  msgstr "Le mail sera envoyé quand"
2061
 
2062
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757
2063
  msgid "Missing instance for this notice!"
2064
  msgstr "Ce message n'est pas instancié !"
2065
 
2066
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2067
+ #: notices/myCRED-addon-email-notices.php:768 ../addons/email-notices/myCRED-
2068
+ #: addon-email-notices.php:770
2069
  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
 
2078
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:768 ../addons/email-
2079
+ #: notices/myCRED-addon-email-notices.php:896
2080
  msgid "Administrator"
2081
  msgstr "Administrateur"
2082
 
2083
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:770
2084
  msgid "Both Administrator and User"
2085
  msgstr "A l'administrateur et à l'utilisateur"
2086
 
2087
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
2088
  msgid "Available Template Tags"
2089
  msgstr "Mots-clés utilisables ici"
2090
 
2091
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:802
2092
  msgid "Email Header"
2093
  msgstr "En-tête du mail"
2094
 
2095
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:862
2096
  msgid "Send this email notice when..."
2097
  msgstr "Envoyer ce mail quand...."
2098
 
2099
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:893
2100
  msgid "Recipient:"
2101
  msgstr "Destinataire:"
2102
 
2103
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:897
2104
  msgid "Both"
2105
  msgstr "Les deux"
2106
 
2107
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:901 ..
2108
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2109
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2110
  #: module-settings.php:526
2111
  msgid "Label"
2112
  msgstr "Etiquette"
2113
 
2114
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2115
  msgid "Reply-To Email:"
2116
  msgstr "Adresse de réponse"
2117
 
2118
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:915
2119
  msgid "Save"
2120
  msgstr "Enregistrer"
2121
 
2122
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:927
2123
  msgid "CSS Styling"
2124
  msgstr "Règles de style"
2125
 
2126
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:943
2127
  msgid "Site Related"
2128
  msgstr "A propos du site"
2129
 
2130
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:944
2131
  msgid "Your websites title"
2132
  msgstr "Titre de votre site"
2133
 
2134
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:945
2135
  msgid "Your websites address"
2136
  msgstr "Adresse de votre site"
2137
 
2138
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:946
2139
  msgid "Your websites tagline (description)"
2140
  msgstr "Description de votre site"
2141
 
2142
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:947
2143
  msgid "Your websites admin email"
2144
  msgstr "Email de l'administrateur du site"
2145
 
2146
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:948
2147
  msgid "Total number of blog members"
2148
  msgstr "Total des membres de votre blog"
2149
 
2150
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1026 ../addons/email-
2151
+ #: notices/myCRED-addon-email-notices.php:1029 ../addons/email-notices/myCRED-
2152
+ #: addon-email-notices.php:1035
2153
  msgid "Email Notice Updated."
2154
  msgstr ""
2155
 
2156
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1031
2157
  msgid "Email Notice Activated"
2158
  msgstr "Message activé"
2159
 
2160
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1032
2161
  msgid "Email Notice Saved"
2162
  msgstr "Message enregistré"
2163
 
2164
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2165
  msgid ""
2166
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2167
  "are not yet ready to use this email notice!"
2170
  "actif ! Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à "
2171
  "l'utiliser."
2172
 
2173
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2174
  #, php-format
2175
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2176
  msgstr "Ce message sera activ&eacute; le:<br /><strong>%1$s</strong>"
2177
 
2178
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2179
  msgid "This email notice is active."
2180
  msgstr "Ce message est activé."
2181
 
2182
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1066
2183
  msgid "Settings saved."
2184
  msgstr ""
2185
 
2186
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1114
2187
  msgid "Unsubscribe"
2188
  msgstr ""
2189
 
2190
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1135
2191
  msgid "There are no email notifications yet."
2192
  msgstr ""
2193
 
2194
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1141
2195
  msgid "Save Changes"
2196
  msgstr ""
2197
 
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
  #: 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
 
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
 
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"
3212
  msgid "Assign Ranks to Users"
3213
  msgstr "Attribuer un classement à l'utilisateur"
3214
 
3215
+ #: ../addons/ranks/includes/mycred-rank-functions.php:229
3216
  msgid "mycred_get_users_rank() : Missing required user id"
3217
  msgstr "mycred_get_users_rank() : l'ID utilisateur requis est manquant"
3218
 
3219
+ #: ../addons/ranks/includes/mycred-rank-functions.php:238
3220
  msgid "no rank"
3221
  msgstr "pas classé"
3222
 
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
  "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
 
3608
  msgid "Show users limit"
3609
  msgstr "Afficher la limite des membres"
3610
 
3611
+ #: ../addons/transfer/myCRED-addon-transfer.php:800
3612
  msgid "username"
3613
  msgstr "nom d'utilisateur"
3614
 
3615
+ #: ../addons/transfer/myCRED-addon-transfer.php:802
3616
  msgid "email"
3617
  msgstr "email"
3618
 
3619
+ #: ../addons/transfer/myCRED-addon-transfer.php:804
3620
  #, php-format
3621
  msgid "recipients %s"
3622
  msgstr "destinataires %s"
3623
 
3624
+ #: ../addons/transfer/myCRED-addon-transfer.php:877
3625
  msgid "To:"
3626
  msgstr "Transf&eacute;rer à :"
3627
 
3628
+ #: ../addons/transfer/myCRED-addon-transfer.php:883
3629
  msgid "Amount:"
3630
  msgstr "Montant :"
3631
 
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
 
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
  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
 
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
 
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 ""
5208
 
5209
  #: ../modules/mycred-module-hooks.php:101
5210
  #, php-format
5211
+ msgid "%plural% for viewing content"
5212
+ msgstr ""
5213
+
5214
+ #: ../modules/mycred-module-hooks.php:102
5215
+ msgid ""
5216
+ "Award %_plural% to your users for viewing posts and / or %plural% to your "
5217
+ "authors for members viewing their content."
5218
+ msgstr ""
5219
+
5220
+ #: ../modules/mycred-module-hooks.php:108
5221
+ #, php-format
5222
  msgid "%plural% for logins"
5223
  msgstr "%plural% pour une connexion"
5224
 
5225
+ #: ../modules/mycred-module-hooks.php:109
5226
  #, php-format
5227
  msgid ""
5228
  "Award %_plural% for logging in to your website. You can also set an optional "
5229
  "limit."
5230
  msgstr "Attribution de %_plural% pour chaque connexion d'un membre à votre site."
5231
 
5232
+ #: ../modules/mycred-module-hooks.php:115
5233
  #, php-format
5234
  msgid "%plural% for publishing content"
5235
  msgstr "%plural% pour publication de contenu"
5236
 
5237
+ #: ../modules/mycred-module-hooks.php:116
5238
  #, php-format
5239
  msgid ""
5240
  "Award %_plural% for publishing content on your website. If your custom post "
5244
  "Custom Post Type sur votre site. Ils doivent être réglés sur \"public\" pour "
5245
  "apparaître ci-dessous."
5246
 
5247
+ #: ../modules/mycred-module-hooks.php:122
5248
  #, php-format
5249
  msgid "%plural% for comments"
5250
  msgstr "%plural% pour commentaire"
5251
 
5252
+ #: ../modules/mycred-module-hooks.php:122
5253
  #, php-format
5254
  msgid "%plural% for Disqus comments"
5255
  msgstr "%plural% pour des commentaires avec Disqus"
5256
 
5257
+ #: ../modules/mycred-module-hooks.php:123
5258
  #, php-format
5259
  msgid "Award %_plural% for making comments."
5260
  msgstr "Attribution de %_plural% pour les commentaires"
5261
 
5262
+ #: ../modules/mycred-module-hooks.php:129
5263
  #, php-format
5264
  msgid "%plural% for clicking on links"
5265
  msgstr "%plural% pour click sur un lien"
5266
 
5267
+ #: ../modules/mycred-module-hooks.php:130
5268
  msgid ""
5269
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5270
  "shortcode."
5272
  "Atribuer des %_plural% aux utilisateurs cliquant sur des liens générés avec "
5273
  "le shortcode [mycred_link]"
5274
 
5275
+ #: ../modules/mycred-module-hooks.php:136
5276
  #, php-format
5277
  msgid "%plural% for viewing Videos"
5278
  msgstr "%plural% pour visionnage d'une vidéo"
5279
 
5280
+ #: ../modules/mycred-module-hooks.php:137
5281
  msgid ""
5282
  "Award %_plural% to users who watches videos embedded using the "
5283
  "[mycred_video] shortcode."
5285
  "Atribuer des %_plural% aux utilisateurs visionnant des vidéos avec le "
5286
  "shortcode [mycred_video] "
5287
 
5288
+ #: ../modules/mycred-module-hooks.php:143
5289
  #, php-format
5290
  msgid "%plural% for referrals"
5291
  msgstr "%plural% pour référants"
5292
 
5293
+ #: ../modules/mycred-module-hooks.php:144
5294
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5295
  msgstr ""
5296
  "Attribuez des %_plural% aux utilisateurs qui font référence à l'inscription "
5297
  "des visiteurs ou à celles des nouveaux membres."
5298
 
5299
+ #: ../modules/mycred-module-hooks.php:177
5300
  #, php-format
5301
  msgid "%s Hooks"
5302
  msgstr "Plugins %s"
5303
 
5304
+ #: ../modules/mycred-module-hooks.php:180
5305
  msgid ""
5306
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5307
  "depending on their actions around your website."
5311
  "(en haut à droite sous la barre d'outils WP) pour une liste complète des "
5312
  "mots-clés disponibles pour l'affichage des textes."
5313
 
5314
+ #: ../modules/mycred-module-hooks.php:352 ../modules/mycred-module-hooks.php:446 .
5315
+ #: ./modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:622 ..
5316
+ #: modules/mycred-module-hooks.php:684 ../modules/mycred-module-hooks.php:1004 ..
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.
5324
+ #: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
5325
+ #: buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ..
5326
+ #: plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-
5327
+ #: buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ..
5328
+ #: plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-
5329
+ #: buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ..
5330
+ #: plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-
5331
+ #: buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ..
5332
+ #: plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-
5333
+ #: buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ..
5334
+ #: plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:
5335
+ #: 407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-
5336
+ #: buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-
5337
+ #: hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ..
5338
+ #: plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:
5339
+ #: 939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-
5340
+ #: buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-
5341
+ #: hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ..
5342
+ #: plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:
5343
+ #: 1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-
5344
+ #: form7.php:141 ../plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-
5345
+ #: hook-invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:240 ..
5346
+ #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5347
+ #: plugins/mycred-hook-sharethis.php:258 ../plugins/mycred-hook-simplepress.php:
5348
+ #: 330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-
5349
+ #: simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
5350
  msgid "Log template"
5351
  msgstr "Texte à afficher"
5352
 
5353
+ #: ../modules/mycred-module-hooks.php:586
5354
+ #, php-format
5355
+ msgid "%plural% for viewing Posts"
5356
+ msgstr ""
5357
+
5358
+ #: ../modules/mycred-module-hooks.php:589 ../modules/mycred-module-hooks.php:600 .
5359
+ #: ./modules/mycred-module-hooks.php:614 ../modules/mycred-module-hooks.php:625 ..
5360
+ #: modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:687
5361
+ msgid "Member"
5362
+ msgstr ""
5363
+
5364
+ #: ../modules/mycred-module-hooks.php:593 ../modules/mycred-module-hooks.php:606 .
5365
+ #: ./modules/mycred-module-hooks.php:618 ../modules/mycred-module-hooks.php:631 ..
5366
+ #: modules/mycred-module-hooks.php:680 ../modules/mycred-module-hooks.php:693 ..
5367
+ #: modules/mycred-module-hooks.php:1428 ../modules/mycred-module-hooks.php:1445 .
5368
+ #: ./modules/mycred-module-hooks.php:1462
5369
+ msgid "Content Author"
5370
+ msgstr "Auteur du contenu"
5371
+
5372
+ #: ../modules/mycred-module-hooks.php:611
5373
+ #, php-format
5374
+ msgid "%plural% for viewing Pages"
5375
+ msgstr ""
5376
+
5377
+ #: ../modules/mycred-module-hooks.php:673
5378
+ #, php-format
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"
5387
 
5388
+ #: ../modules/mycred-module-hooks.php:998
5389
  #, php-format
5390
  msgid "%plural% for Posts"
5391
  msgstr "%plural% pour un article"
5392
 
5393
+ #: ../modules/mycred-module-hooks.php:1011
5394
  #, php-format
5395
  msgid "%plural% for Pages"
5396
  msgstr "%plural% pour une page"
5397
 
5398
+ #: ../modules/mycred-module-hooks.php:1047
5399
  #, php-format
5400
  msgid "%plural% for %s"
5401
  msgstr "%plural% pour %s"
5402
 
5403
+ #: ../modules/mycred-module-hooks.php:1419
5404
  msgid ""
5405
  "%plural% are only awarded when your website has been synced with the Disqus "
5406
  "server!"
5408
  "Les %plural% seront uniquement attribués une fois que votre site sera "
5409
  "synchronisé avec les serveurs Disqus."
5410
 
5411
+ #: ../modules/mycred-module-hooks.php:1424 ../modules/mycred-module-hooks.php:
5412
+ #: 1441 ../modules/mycred-module-hooks.php:1458
5413
  msgid "Comment Author"
5414
  msgstr "Auteur du commentaire"
5415
 
5416
+ #: ../modules/mycred-module-hooks.php:1438
 
 
 
 
 
5417
  msgid "Comment Marked SPAM"
5418
  msgstr "Commentaire signalé comme SPAM"
5419
 
5420
+ #: ../modules/mycred-module-hooks.php:1455
5421
  msgid "Trashed / Unapproved Comments"
5422
  msgstr "Commentaire supprimé/refusé"
5423
 
5424
+ #: ../modules/mycred-module-hooks.php:1475
5425
  msgid "Limit per post"
5426
  msgstr "Limite par article"
5427
 
5428
+ #: ../modules/mycred-module-hooks.php:1477
5429
  msgid ""
5430
  "The number of comments per post that grants %_plural% to the comment author. "
5431
  "Use zero for unlimited."
5433
  "Le nombre de commentaires par article qui donne droit à des %_plural% pour "
5434
  "l'auteur du commentaire. Indiquez zéro si illimité."
5435
 
5436
+ #: ../modules/mycred-module-hooks.php:1481
5437
  msgid "Limit per day"
5438
  msgstr "Limite par jour"
5439
 
5440
+ #: ../modules/mycred-module-hooks.php:1483
5441
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5442
  msgstr ""
5443
  "Le nombre de commentaires par jour qui donne droit à des %_plural%. Indiquez "
5444
  "zéro si illimité."
5445
 
5446
+ #: ../modules/mycred-module-hooks.php:1488
5447
  msgid ""
5448
  "%plural% is to be awarded even when comment authors reply to their own "
5449
  "comment."
5451
  "Attribuer des %_plural% &agrave; l&#39;auteur d&#39;un commentaire r&eacute;"
5452
  "pondant &agrave; son propre commentaire."
5453
 
5454
+ #: ../modules/mycred-module-hooks.php:1559
5455
  msgid "Once for each unique URL"
5456
  msgstr "Une fois pour chaque URL unique"
5457
 
5458
+ #: ../modules/mycred-module-hooks.php:1560
5459
  msgid "Once for each unique link id"
5460
  msgstr "Une fois pour chaque ID unique de lien"
5461
 
5462
+ #: ../modules/mycred-module-hooks.php:1753
5463
  msgid ""
5464
  "The default amount to award for clicking on links. You can override this in "
5465
  "the shortcode."
5467
  "Le nombre par défaut à attribuer à chaque click sur un lien. Peut être "
5468
  "modifié avec le shortcode."
5469
 
5470
+ #: ../modules/mycred-module-hooks.php:1760
5471
  #, php-format
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
 
5479
+ #: ../modules/mycred-module-hooks.php:1771
5480
  msgid ""
5481
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5482
  "generate one automatically based on the value set under href. If you are "
5488
  "Si vous utilisez cette fonctionnalité pour \"partager\" du contenu, nous vous "
5489
  "recommandons fortement de limiter par ID."
5490
 
5491
+ #: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2131
5492
  msgid "Available Shortcode"
5493
  msgstr "Shortcode disponible"
5494
 
5495
+ #: ../modules/mycred-module-hooks.php:2095
5496
  msgid "Amount to award for viewing videos."
5497
  msgstr "Montant à attribuer pour le visionnage d'une vidéo."
5498
 
5499
+ #: ../modules/mycred-module-hooks.php:2105
5500
  msgid "Award Logic"
5501
  msgstr "Attributs de classement"
5502
 
5503
+ #: ../modules/mycred-module-hooks.php:2107
5504
  #, php-format
5505
  msgid "Select when %_plural% should be awarded or deducted."
5506
  msgstr "Sélectionnez à quel moment des %_plural% doivent être attribués"
5507
 
5508
+ #: ../modules/mycred-module-hooks.php:2108
5509
  msgid "Play - As soon as video starts playing."
5510
  msgstr "Play - aussitôt que la vidéo démarre"
5511
 
5512
+ #: ../modules/mycred-module-hooks.php:2109
5513
  msgid "Full - First when the entire video has played."
5514
  msgstr "Complet - seulement quand la vidéo a été lue jusqu'au bout"
5515
 
5516
+ #: ../modules/mycred-module-hooks.php:2110
5517
  msgid "Interval - For each x number of seconds watched."
5518
  msgstr "Intervalle - par tranche de X nombre de secondes de visionnage"
5519
 
5520
+ #: ../modules/mycred-module-hooks.php:2115
5521
  msgid "Number of seconds"
5522
  msgstr "Nombre de secondes"
5523
 
5524
+ #: ../modules/mycred-module-hooks.php:2122
5525
  msgid "Leniency"
5526
  msgstr "Tolérance"
5527
 
5528
+ #: ../modules/mycred-module-hooks.php:2124
5529
  msgid ""
5530
  "The maximum percentage a users view of a movie can differ from the actual "
5531
  "length."
5533
  "Le pourcentage maximum qu'un utilisateur peut visionner peut différer de la "
5534
  "longueur actuelle d'une vidéo."
5535
 
5536
+ #: ../modules/mycred-module-hooks.php:2127
5537
  msgid ""
5538
  "Do not set this value to zero! A lot of thing can happen while a user "
5539
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5543
  "produire pendant un visonnage. Quelques secondes peuvent parfois bloquer un "
5544
  "compteur pendant la mise en tampon ou produire des erreurs de différé."
5545
 
5546
+ #: ../modules/mycred-module-hooks.php:2195
5547
  msgid "Affiliate Program"
5548
  msgstr "Programme d'affiliation"
5549
 
5550
+ #: ../modules/mycred-module-hooks.php:2204
5551
  msgid "Per Day"
5552
  msgstr "Par jour"
5553
 
5554
+ #: ../modules/mycred-module-hooks.php:2316
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
  "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
  "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
 
5659
+ #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
5660
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5661
  msgid "Access denied for this action"
5662
  msgstr "Accés refusé pour cette action"
5663
 
5664
+ #: ../modules/mycred-module-log.php:196
5665
  msgid "Row Deleted"
5666
  msgstr "Ligne supprimée"
5667
 
5668
+ #: ../modules/mycred-module-log.php:223
5669
  msgid "Log entry not found"
5670
  msgstr "Entrée introuvable"
5671
 
5672
+ #: ../modules/mycred-module-log.php:236
5673
  msgid "Entry Updated"
5674
  msgstr "Entrée mise à jour"
5675
 
5676
+ #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:436
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
 
5685
+ #: ../modules/mycred-module-log.php:311
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"
5965
  "Les auteurs de forum percoivent des %_plural% pour la création de nouveaux "
5966
  "sujets."
5967
 
5968
+ #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-simplepress.php:
5969
+ #: 336
5970
  #, php-format
5971
  msgid "%plural% for Topic Deletion"
5972
  msgstr "%plural% pour suppression d'un message de forum"
6002
  msgid "Show users %_plural% balance in replies"
6003
  msgstr "Afficher le relevé de %_plural% dans les réponses des utilisateurs"
6004
 
6005
+ #: ../plugins/mycred-hook-bbPress.php:568
6006
+ #, php-format
6007
+ msgid "%plural% for Reply Deletion"
6008
+ msgstr ""
6009
+
6010
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
6011
  msgid "BuddyPress: Gallery Actions"
6012
  msgstr "BuddyPress: actions relatives aux albums"
6409
  msgid "%plural% for Topic Post Deletion"
6410
  msgstr "%plural% pour suppression d'un sujet"
6411
 
6412
+ #: ../plugins/mycred-hook-woocommerce.php:67
6413
  msgid "Reward with %plural%"
6414
  msgstr ""
6415
 
6416
+ #: ../plugins/mycred-hook-woocommerce.php:197
 
 
 
 
6417
  msgid "WooCommerce Product Reviews"
6418
  msgstr ""
6419
 
6420
+ #: ../plugins/mycred-hook-woocommerce.php:198
6421
  #, php-format
6422
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6423
  msgstr ""
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."
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: Sat Jul 26 2014 20:56:28 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;__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"
@@ -102,7 +102,7 @@ msgid "Log entry updated"
102
  msgstr "Registro de entradas atualizado"
103
 
104
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
105
- #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
106
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
107
  msgid "Setup"
108
  msgstr "Instalação"
@@ -130,7 +130,7 @@ msgid "This Hook has no settings"
130
  msgstr "Esse gancho não tem configurações"
131
 
132
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
133
- #: 1305
134
  msgid "No limit"
135
  msgstr "Sem limite"
136
 
@@ -156,7 +156,7 @@ msgstr "Uma vez por dia (reiniciar a meia-noite)"
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
157
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
158
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
159
- #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
160
  msgid "Select"
161
  msgstr "Selecionar"
162
 
@@ -422,8 +422,8 @@ msgstr ""
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:164 ..
426
- #: modules/mycred-module-log.php:324 ../modules/mycred-module-log.php:577 ..
427
  #: modules/mycred-module-settings.php:312
428
  msgid "Access Denied"
429
  msgstr "Acesso negado"
@@ -449,12 +449,12 @@ 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:189
453
  msgid "Enable"
454
  msgstr "Habilitar"
455
 
456
  #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
457
- #: php:204
458
  msgid "Update Changes"
459
  msgstr "Alterações atualizadas"
460
 
@@ -527,13 +527,13 @@ msgstr "Saldo mínimo necessário para aplicar os juros."
527
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
528
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
529
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
530
- #: modules/mycred-module-hooks.php:633 ../modules/mycred-module-hooks.php:1503 ..
531
- #: modules/mycred-module-hooks.php:1845 ../plugins/mycred-hook-badgeOS.php:115 ..
532
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
533
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
534
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
535
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
536
- #: php:300 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
537
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
538
  msgid "Log Template"
539
  msgstr "Modelo de registro"
@@ -571,8 +571,8 @@ msgstr "Usuários pagantes"
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:769 ..
575
- #: includes/mycred-shortcodes.php:907
576
  msgid "Amount"
577
  msgstr "Quantia"
578
 
@@ -582,7 +582,7 @@ 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:1860
586
  msgid "Interval"
587
  msgstr "Intervalo"
588
 
@@ -801,7 +801,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:2495
805
  msgid "Available Shortcodes"
806
  msgstr "Shortcodes disponíveis"
807
 
@@ -959,7 +959,7 @@ 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:370 ../modules/mycred-
963
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
964
  msgid "Actions"
965
  msgstr "Ações"
@@ -1405,7 +1405,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:2460
1409
  msgid "Title"
1410
  msgstr "Título"
1411
 
@@ -1595,8 +1595,8 @@ msgid "Usage"
1595
  msgstr "Uso"
1596
 
1597
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1598
- #: transfer.php:243 ../modules/mycred-module-hooks.php:1219 ../modules/mycred-
1599
- #: module-hooks.php:1510
1600
  msgid "Limits"
1601
  msgstr "Limites"
1602
 
@@ -1609,7 +1609,7 @@ msgid "not yet used"
1609
  msgstr "ainda não utilizado"
1610
 
1611
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1612
- #: php:1950
1613
  msgid "Total"
1614
  msgstr "Total"
1615
 
@@ -1789,7 +1789,7 @@ msgid "Apply Coupon"
1789
  msgstr "Aplicar cupom"
1790
 
1791
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1792
- #: notices/myCRED-addon-email-notices.php:1104
1793
  msgid "Email Notice"
1794
  msgstr "E-mail de aviso"
1795
 
@@ -1986,17 +1986,17 @@ msgstr ""
1986
  "individualmente ao editar os e-mails."
1987
 
1988
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1989
- #: notices/myCRED-addon-email-notices.php:771
1990
  msgid "Email Settings"
1991
  msgstr "Configurações de e-mail"
1992
 
1993
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1994
- #: notices/myCRED-addon-email-notices.php:894
1995
  msgid "Senders Name:"
1996
  msgstr "Nome do remetente:"
1997
 
1998
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1999
- #: notices/myCRED-addon-email-notices.php:896
2000
  msgid "Senders Email:"
2001
  msgstr "E-mail do remetente:"
2002
 
@@ -2020,140 +2020,140 @@ msgstr "Estilo padrão do e-mail"
2020
  msgid "Ignored if HTML is not allowed in emails."
2021
  msgstr "Ignorar se HTML não é permitido nos e-mails."
2022
 
2023
- #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
2024
- #: notices/myCRED-addon-email-notices.php:820
2025
  msgid "Email Subject"
2026
  msgstr "Assunto do e-mail"
2027
 
2028
- #: ../addons/email-notices/myCRED-addon-email-notices.php:706
2029
  msgid "Status"
2030
  msgstr "Status"
2031
 
2032
- #: ../addons/email-notices/myCRED-addon-email-notices.php:726
2033
  msgid "Not Active"
2034
  msgstr "Desativado"
2035
 
2036
- #: ../addons/email-notices/myCRED-addon-email-notices.php:728
2037
  #, php-format
2038
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2039
  msgstr "Agendado:<br /><strong>%1$s</strong>"
2040
 
2041
- #: ../addons/email-notices/myCRED-addon-email-notices.php:732
2042
  msgid "Active"
2043
  msgstr "Ativado"
2044
 
2045
- #: ../addons/email-notices/myCRED-addon-email-notices.php:734
2046
  #, php-format
2047
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2048
  msgstr "Ativado: Última execução:<br /><strong>%1$s</strong>"
2049
 
2050
- #: ../addons/email-notices/myCRED-addon-email-notices.php:744
2051
  msgid "Email is sent when"
2052
  msgstr "O e-mail é enviado quando"
2053
 
2054
- #: ../addons/email-notices/myCRED-addon-email-notices.php:746
2055
  msgid "Missing instance for this notice!"
2056
  msgstr "Falta instância para este aviso!"
2057
 
2058
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
2059
- #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
2060
- #: addon-email-notices.php:759
2061
  msgid "Sent To"
2062
  msgstr "Enviar para"
2063
 
2064
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
2065
- #: notices/myCRED-addon-email-notices.php:884 ../includes/mycred-admin.php:764 ..
2066
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:542
2067
  msgid "User"
2068
  msgstr "Usuário"
2069
 
2070
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
2071
- #: notices/myCRED-addon-email-notices.php:885
2072
  msgid "Administrator"
2073
  msgstr "Administrador"
2074
 
2075
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
2076
  msgid "Both Administrator and User"
2077
  msgstr "Ambos, administrador e usuário"
2078
 
2079
- #: ../addons/email-notices/myCRED-addon-email-notices.php:780
2080
  msgid "Available Template Tags"
2081
  msgstr "Modelos de etiquetas disponíveis"
2082
 
2083
- #: ../addons/email-notices/myCRED-addon-email-notices.php:791
2084
  msgid "Email Header"
2085
  msgstr "Cabeçalho do e-mail"
2086
 
2087
- #: ../addons/email-notices/myCRED-addon-email-notices.php:851
2088
  msgid "Send this email notice when..."
2089
  msgstr "Enviar este e-mail de aviso quando..."
2090
 
2091
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
2092
  msgid "Recipient:"
2093
  msgstr "Destinatário:"
2094
 
2095
- #: ../addons/email-notices/myCRED-addon-email-notices.php:886
2096
  msgid "Both"
2097
  msgstr "Ambos"
2098
 
2099
- #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
2100
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2101
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2102
  #: module-settings.php:526
2103
  msgid "Label"
2104
  msgstr "Rótulo"
2105
 
2106
- #: ../addons/email-notices/myCRED-addon-email-notices.php:898
2107
  msgid "Reply-To Email:"
2108
  msgstr "E-mail do Responder para:"
2109
 
2110
- #: ../addons/email-notices/myCRED-addon-email-notices.php:904
2111
  msgid "Save"
2112
  msgstr "Salvar"
2113
 
2114
- #: ../addons/email-notices/myCRED-addon-email-notices.php:916
2115
  msgid "CSS Styling"
2116
  msgstr "Estilo CSS"
2117
 
2118
- #: ../addons/email-notices/myCRED-addon-email-notices.php:932
2119
  msgid "Site Related"
2120
  msgstr "Site relacionado"
2121
 
2122
- #: ../addons/email-notices/myCRED-addon-email-notices.php:933
2123
  msgid "Your websites title"
2124
  msgstr "Título do seu site"
2125
 
2126
- #: ../addons/email-notices/myCRED-addon-email-notices.php:934
2127
  msgid "Your websites address"
2128
  msgstr "Endereço do seu site"
2129
 
2130
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
2131
  msgid "Your websites tagline (description)"
2132
  msgstr "Slogan do seu site (descrição)"
2133
 
2134
- #: ../addons/email-notices/myCRED-addon-email-notices.php:936
2135
  msgid "Your websites admin email"
2136
  msgstr "E-mail de administração do seu site"
2137
 
2138
- #: ../addons/email-notices/myCRED-addon-email-notices.php:937
2139
  msgid "Total number of blog members"
2140
  msgstr "Número total de usuários do blog"
2141
 
2142
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
2143
- #: notices/myCRED-addon-email-notices.php:1018 ../addons/email-notices/myCRED-
2144
- #: addon-email-notices.php:1024
2145
  msgid "Email Notice Updated."
2146
  msgstr ""
2147
 
2148
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2149
  msgid "Email Notice Activated"
2150
  msgstr "E-mail de aviso ativado"
2151
 
2152
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2153
  msgid "Email Notice Saved"
2154
  msgstr "E-mail de aviso salvo"
2155
 
2156
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1040
2157
  msgid ""
2158
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2159
  "are not yet ready to use this email notice!"
@@ -2161,35 +2161,35 @@ msgstr ""
2161
  "Uma vez que um aviso é \"published\" ele torna-se ativo! Selecione \"Save "
2162
  "Draft\" se você ainda não está pronto para usar este aviso de e-mail!"
2163
 
2164
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1042
2165
  #, php-format
2166
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2167
  msgstr "Este aviso ficará ativo em:<br /><strong>%1$s</strong>"
2168
 
2169
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1044
2170
  msgid "This email notice is active."
2171
  msgstr "Este e-mail de aviso está ativo."
2172
 
2173
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2174
  msgid "Settings saved."
2175
  msgstr "Configurações salvas"
2176
 
2177
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2178
  msgid "Unsubscribe"
2179
  msgstr "Cancelar assinatura"
2180
 
2181
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1124
2182
  msgid "There are no email notifications yet."
2183
  msgstr "Não há notificações de e-mail ainda."
2184
 
2185
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1130
2186
  msgid "Save Changes"
2187
  msgstr "Salvar alterações"
2188
 
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:765
2193
  msgid "Current Balance"
2194
  msgstr "Saldo atual"
2195
 
@@ -2313,7 +2313,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:912
2317
  msgid "Exchange Rate"
2318
  msgstr "Taxa de câmbio"
2319
 
@@ -2657,7 +2657,7 @@ 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:770
2661
  msgid "Log Entry"
2662
  msgstr "Entrada no registro"
2663
 
@@ -2742,7 +2742,7 @@ msgid "Reject"
2742
  msgstr "Rjeitar"
2743
 
2744
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2745
- #: modules/mycred-module-log.php:502 ../modules/mycred-module-settings.php:488 ..
2746
  #: modules/mycred-module-settings.php:507
2747
  msgid "Delete"
2748
  msgstr "Deletar"
@@ -3187,11 +3187,11 @@ msgstr "Remover todos os Ranks"
3187
  msgid "Assign Ranks to Users"
3188
  msgstr "Atribuir Ranks de usuários"
3189
 
3190
- #: ../addons/ranks/includes/mycred-rank-functions.php:197
3191
  msgid "mycred_get_users_rank() : Missing required user id"
3192
  msgstr "mycred_get_users_rank() : ID do usuário ausente"
3193
 
3194
- #: ../addons/ranks/includes/mycred-rank-functions.php:207
3195
  msgid "no rank"
3196
  msgstr "nenhum rank"
3197
 
@@ -3374,7 +3374,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:2277
3378
  msgid "Transfer"
3379
  msgstr "Transferência"
3380
 
@@ -3413,7 +3413,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:1009
3417
  msgid "Insufficient Funds. Please try a lower amount."
3418
  msgstr ""
3419
 
@@ -3581,24 +3581,24 @@ msgstr "Mostrar o saldo dos usuários"
3581
  msgid "Show users limit"
3582
  msgstr "Mostrar o limite dos usuários"
3583
 
3584
- #: ../addons/transfer/myCRED-addon-transfer.php:798
3585
  msgid "username"
3586
  msgstr "nome do usuário"
3587
 
3588
- #: ../addons/transfer/myCRED-addon-transfer.php:800
3589
  msgid "email"
3590
  msgstr "e-mail"
3591
 
3592
- #: ../addons/transfer/myCRED-addon-transfer.php:802
3593
  #, php-format
3594
  msgid "recipients %s"
3595
  msgstr "destinatários %s"
3596
 
3597
- #: ../addons/transfer/myCRED-addon-transfer.php:875
3598
  msgid "To:"
3599
  msgstr "Para:"
3600
 
3601
- #: ../addons/transfer/myCRED-addon-transfer.php:881
3602
  msgid "Amount:"
3603
  msgstr "Quantia:"
3604
 
@@ -3650,8 +3650,8 @@ msgstr "Excluído"
3650
  msgid "Total: %s"
3651
  msgstr "Total: %s"
3652
 
3653
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:252 ..
3654
- #: modules/mycred-module-log.php:253
3655
  msgid "History"
3656
  msgstr "Histórico"
3657
 
@@ -3723,15 +3723,15 @@ msgstr ""
3723
  msgid "%singular% balance"
3724
  msgstr "Saldo: %singular%"
3725
 
3726
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:771
3727
  msgid "Update Balance"
3728
  msgstr "Atualizar saldo"
3729
 
3730
- #: ../includes/mycred-admin.php:763
3731
  msgid "ID"
3732
  msgstr "ID"
3733
 
3734
- #: ../includes/mycred-admin.php:769
3735
  msgid "A positive or negative value"
3736
  msgstr "Um valor positivo ou negativo"
3737
 
@@ -3783,290 +3783,298 @@ msgstr "e"
3783
  msgid "Available Template Tags:"
3784
  msgstr "Modelo de etiqueta disponível:"
3785
 
3786
- #: ../includes/mycred-functions.php:1643
3787
  msgid "Entire Log"
3788
  msgstr "Registro de entrada"
3789
 
3790
- #: ../includes/mycred-functions.php:1648 ../includes/mycred-functions.php:1649
3791
  msgid "Displayed Rows"
3792
  msgstr "Linhas exibidas"
3793
 
3794
- #: ../includes/mycred-functions.php:1653
3795
  msgid "Search Results"
3796
  msgstr "Resultados da busca"
3797
 
3798
- #: ../includes/mycred-functions.php:1654
3799
  msgid "My Entire Log"
3800
  msgstr "Meu registro de entrada"
3801
 
3802
- #: ../includes/mycred-functions.php:1774
3803
  msgid "ref empty"
3804
  msgstr "Referência vazia"
3805
 
3806
- #: ../includes/mycred-functions.php:1782
3807
  msgid "incorrect user id format"
3808
  msgstr "formato do id do usuário incorreto"
3809
 
3810
- #: ../includes/mycred-functions.php:1795
3811
  msgid "incorrect unix timestamp (from):"
3812
  msgstr "registro do tempo do unix incorreto (a partir de):"
3813
 
3814
- #: ../includes/mycred-functions.php:1804
3815
  msgid "incorrect unix timestamp (to):"
3816
  msgstr "registro do tempo do unix incorreto (para):"
3817
 
3818
- #: ../includes/mycred-functions.php:2166
3819
  msgid "Website Registration"
3820
  msgstr ""
3821
 
3822
- #: ../includes/mycred-functions.php:2167
3823
  msgid "Website Visit"
3824
  msgstr ""
3825
 
3826
- #: ../includes/mycred-functions.php:2168
 
 
 
 
 
 
 
 
3827
  msgid "Logging in"
3828
  msgstr ""
3829
 
3830
- #: ../includes/mycred-functions.php:2169
3831
  msgid "Publishing Content"
3832
  msgstr ""
3833
 
3834
- #: ../includes/mycred-functions.php:2170 ../modules/mycred-module-hooks.php:1168
3835
  msgid "Approved Comment"
3836
  msgstr "Comentário aprovado"
3837
 
3838
- #: ../includes/mycred-functions.php:2171
3839
  msgid "Unapproved Comment"
3840
  msgstr ""
3841
 
3842
- #: ../includes/mycred-functions.php:2172
3843
  msgid "SPAM Comment"
3844
  msgstr ""
3845
 
3846
- #: ../includes/mycred-functions.php:2173
3847
  msgid "Deleted Comment"
3848
  msgstr ""
3849
 
3850
- #: ../includes/mycred-functions.php:2174
3851
  msgid "Link Click"
3852
  msgstr ""
3853
 
3854
- #: ../includes/mycred-functions.php:2175
3855
  msgid "Watching Video"
3856
  msgstr ""
3857
 
3858
- #: ../includes/mycred-functions.php:2176
3859
  msgid "Visitor Referral"
3860
  msgstr ""
3861
 
3862
- #: ../includes/mycred-functions.php:2177
3863
  msgid "Signup Referral"
3864
  msgstr ""
3865
 
3866
- #: ../includes/mycred-functions.php:2181
3867
  msgid "New Profile Update"
3868
  msgstr ""
3869
 
3870
- #: ../includes/mycred-functions.php:2182
3871
  msgid "Avatar Upload"
3872
  msgstr ""
3873
 
3874
- #: ../includes/mycred-functions.php:2183
3875
  msgid "New Friendship"
3876
  msgstr ""
3877
 
3878
- #: ../includes/mycred-functions.php:2184
3879
  msgid "Ended Friendship"
3880
  msgstr ""
3881
 
3882
- #: ../includes/mycred-functions.php:2185
3883
  msgid "New Profile Comment"
3884
  msgstr ""
3885
 
3886
- #: ../includes/mycred-functions.php:2186
3887
  msgid "Profile Comment Deletion"
3888
  msgstr ""
3889
 
3890
- #: ../includes/mycred-functions.php:2187
3891
  msgid "New Message"
3892
  msgstr ""
3893
 
3894
- #: ../includes/mycred-functions.php:2188
3895
  msgid "Sending Gift"
3896
  msgstr ""
3897
 
3898
- #: ../includes/mycred-functions.php:2189
3899
  msgid "New Group"
3900
  msgstr ""
3901
 
3902
- #: ../includes/mycred-functions.php:2190
3903
  msgid "Deleted Group"
3904
  msgstr ""
3905
 
3906
- #: ../includes/mycred-functions.php:2191
3907
  msgid "New Group Forum Topic"
3908
  msgstr ""
3909
 
3910
- #: ../includes/mycred-functions.php:2192
3911
  msgid "Edit Group Forum Topic"
3912
  msgstr ""
3913
 
3914
- #: ../includes/mycred-functions.php:2193
3915
  msgid "New Group Forum Post"
3916
  msgstr ""
3917
 
3918
- #: ../includes/mycred-functions.php:2194
3919
  msgid "Edit Group Forum Post"
3920
  msgstr ""
3921
 
3922
- #: ../includes/mycred-functions.php:2195
3923
  msgid "Joining Group"
3924
  msgstr ""
3925
 
3926
- #: ../includes/mycred-functions.php:2196
3927
  msgid "Leaving Group"
3928
  msgstr ""
3929
 
3930
- #: ../includes/mycred-functions.php:2197
3931
  msgid "New Group Avatar"
3932
  msgstr ""
3933
 
3934
- #: ../includes/mycred-functions.php:2198
3935
  msgid "New Group Comment"
3936
  msgstr ""
3937
 
3938
- #: ../includes/mycred-functions.php:2202 ../plugins/mycred-hook-buddypress-media.
3939
  #: php:166
3940
  msgid "Photo Upload"
3941
  msgstr "Upload de foto"
3942
 
3943
- #: ../includes/mycred-functions.php:2203 ../plugins/mycred-hook-buddypress-media.
3944
  #: php:176
3945
  msgid "Video Upload"
3946
  msgstr "Upload de vídeo"
3947
 
3948
- #: ../includes/mycred-functions.php:2204 ../plugins/mycred-hook-buddypress-media.
3949
  #: php:186
3950
  msgid "Music Upload"
3951
  msgstr "Upload de música"
3952
 
3953
- #: ../includes/mycred-functions.php:2208
3954
  msgid "New Link"
3955
  msgstr ""
3956
 
3957
- #: ../includes/mycred-functions.php:2209
3958
  msgid "Link Voting"
3959
  msgstr ""
3960
 
3961
- #: ../includes/mycred-functions.php:2210
3962
  msgid "Link Update"
3963
  msgstr ""
3964
 
3965
- #: ../includes/mycred-functions.php:2214
3966
  msgid "New Forum (bbPress)"
3967
  msgstr ""
3968
 
3969
- #: ../includes/mycred-functions.php:2215
3970
  msgid "New Forum Topic (bbPress)"
3971
  msgstr ""
3972
 
3973
- #: ../includes/mycred-functions.php:2216
3974
  msgid "Favorited Topic (bbPress)"
3975
  msgstr ""
3976
 
3977
- #: ../includes/mycred-functions.php:2217
3978
  msgid "New Topic Reply (bbPress)"
3979
  msgstr ""
3980
 
3981
- #: ../includes/mycred-functions.php:2221
3982
  msgid "Form Submission (Contact Form 7)"
3983
  msgstr ""
3984
 
3985
- #: ../includes/mycred-functions.php:2224
3986
  msgid "Form Submission (Gravity Form)"
3987
  msgstr ""
3988
 
3989
- #: ../includes/mycred-functions.php:2227
3990
  msgid "New Forum Topic (SimplePress)"
3991
  msgstr ""
3992
 
3993
- #: ../includes/mycred-functions.php:2228
3994
  msgid "New Forum Post (SimplePress)"
3995
  msgstr ""
3996
 
3997
- #: ../includes/mycred-functions.php:2232
3998
  msgid "Poll Voting"
3999
  msgstr ""
4000
 
4001
- #: ../includes/mycred-functions.php:2235
4002
  msgid "Sending an Invite"
4003
  msgstr ""
4004
 
4005
- #: ../includes/mycred-functions.php:2236
4006
  msgid "Accepting an Invite"
4007
  msgstr ""
4008
 
4009
- #: ../includes/mycred-functions.php:2242
4010
  msgid "Banking Payout"
4011
  msgstr ""
4012
 
4013
- #: ../includes/mycred-functions.php:2245
4014
  msgid "buyCRED Purchase (PayPal Standard)"
4015
  msgstr ""
4016
 
4017
- #: ../includes/mycred-functions.php:2246
4018
  msgid "buyCRED Purchase (Skrill)"
4019
  msgstr ""
4020
 
4021
- #: ../includes/mycred-functions.php:2247
4022
  msgid "buyCRED Purchase (Zombaio)"
4023
  msgstr ""
4024
 
4025
- #: ../includes/mycred-functions.php:2248
4026
  msgid "buyCRED Purchase (NETBilling)"
4027
  msgstr ""
4028
 
4029
- #: ../includes/mycred-functions.php:2249
4030
  msgid "buyCRED Purchase (BitPay)"
4031
  msgstr ""
4032
 
4033
- #: ../includes/mycred-functions.php:2254
4034
  msgid "Coupon Purchase"
4035
  msgstr ""
4036
 
4037
- #: ../includes/mycred-functions.php:2257
4038
  msgid "Store Purchase (WooCommerce)"
4039
  msgstr ""
4040
 
4041
- #: ../includes/mycred-functions.php:2258
4042
  msgid "Store Purchase (MarketPress)"
4043
  msgstr ""
4044
 
4045
- #: ../includes/mycred-functions.php:2259
4046
  msgid "Store Purchase (WP E-Commerce)"
4047
  msgstr ""
4048
 
4049
- #: ../includes/mycred-functions.php:2264
4050
  msgid "Event Payment (Event Espresso)"
4051
  msgstr ""
4052
 
4053
- #: ../includes/mycred-functions.php:2265
4054
  msgid "Event Sale (Event Espresso)"
4055
  msgstr ""
4056
 
4057
- #: ../includes/mycred-functions.php:2269
4058
  msgid "Event Payment (Events Manager)"
4059
  msgstr ""
4060
 
4061
- #: ../includes/mycred-functions.php:2270
4062
  msgid "Event Sale (Events Manager)"
4063
  msgstr ""
4064
 
4065
- #: ../includes/mycred-functions.php:2274
4066
  msgid "Content Purchase / Sale"
4067
  msgstr ""
4068
 
4069
- #: ../includes/mycred-functions.php:2281
4070
  msgid "Manual Adjustment by Admin"
4071
  msgstr ""
4072
 
@@ -4348,7 +4356,7 @@ msgstr "Não há opções de exportação disponíveis."
4348
  msgid "Entry"
4349
  msgstr "Entrada"
4350
 
4351
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:464
4352
  msgid "User Missing"
4353
  msgstr "Usuário ausente"
4354
 
@@ -4574,60 +4582,60 @@ msgstr "Erro - Tente novamente"
4574
  msgid "A video ID is required for this shortcode"
4575
  msgstr "O ID do vídeo é obrigatório para este shortcode"
4576
 
4577
- #: ../includes/mycred-shortcodes.php:861 ../includes/mycred-shortcodes.php:955
4578
  msgid "Point types not found."
4579
  msgstr ""
4580
 
4581
- #: ../includes/mycred-shortcodes.php:867 ../includes/mycred-shortcodes.php:875 ..
4582
- #: includes/mycred-shortcodes.php:967 ../includes/mycred-shortcodes.php:987
4583
  #, php-format
4584
  msgid "You are excluded from using %s."
4585
  msgstr ""
4586
 
4587
- #: ../includes/mycred-shortcodes.php:871 ../includes/mycred-shortcodes.php:977
4588
  msgid "Your balance is too low to use this feature."
4589
  msgstr ""
4590
 
4591
- #: ../includes/mycred-shortcodes.php:892
4592
  #, php-format
4593
  msgid "Convert <span>%s</span> to <span>%s</span>"
4594
  msgstr ""
4595
 
4596
- #: ../includes/mycred-shortcodes.php:901
4597
  #, php-format
4598
  msgid "Your current %s balance"
4599
  msgstr ""
4600
 
4601
- #: ../includes/mycred-shortcodes.php:909
4602
  #, php-format
4603
  msgid "Minimum %s"
4604
  msgstr ""
4605
 
4606
- #: ../includes/mycred-shortcodes.php:913
4607
  #, php-format
4608
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4609
  msgstr ""
4610
 
4611
- #: ../includes/mycred-shortcodes.php:919
4612
  msgid "Exchange"
4613
  msgstr ""
4614
 
4615
- #: ../includes/mycred-shortcodes.php:1000
4616
  #, php-format
4617
  msgid "You must exchange at least %s!"
4618
  msgstr ""
4619
 
4620
- #: ../includes/mycred-shortcodes.php:1022
4621
  #, php-format
4622
  msgid "Exchange from %s"
4623
  msgstr ""
4624
 
4625
- #: ../includes/mycred-shortcodes.php:1034
4626
  #, php-format
4627
  msgid "Exchange to %s"
4628
  msgstr ""
4629
 
4630
- #: ../includes/mycred-shortcodes.php:1042
4631
  #, php-format
4632
  msgid "You have successfully exchanged %s into %s."
4633
  msgstr ""
@@ -5159,10 +5167,21 @@ msgstr ""
5159
 
5160
  #: ../modules/mycred-module-hooks.php:101
5161
  #, php-format
 
 
 
 
 
 
 
 
 
 
 
5162
  msgid "%plural% for logins"
5163
  msgstr "%plural% para logins"
5164
 
5165
- #: ../modules/mycred-module-hooks.php:102
5166
  #, php-format
5167
  msgid ""
5168
  "Award %_plural% for logging in to your website. You can also set an optional "
@@ -5171,12 +5190,12 @@ msgstr ""
5171
  "Recompensar com %_plural% o login no seu site. Você pode definir um tempo "
5172
  "limite opcional."
5173
 
5174
- #: ../modules/mycred-module-hooks.php:108
5175
  #, php-format
5176
  msgid "%plural% for publishing content"
5177
  msgstr "%plural% por publicar conteúdo"
5178
 
5179
- #: ../modules/mycred-module-hooks.php:109
5180
  #, php-format
5181
  msgid ""
5182
  "Award %_plural% for publishing content on your website. If your custom post "
@@ -5186,27 +5205,27 @@ msgstr ""
5186
  "post personalizado não está sendo exibido abaixo, tenha certeza de que ele "
5187
  "está definido como \"Public\"."
5188
 
5189
- #: ../modules/mycred-module-hooks.php:115
5190
  #, php-format
5191
  msgid "%plural% for comments"
5192
  msgstr "%plural% para comentários"
5193
 
5194
- #: ../modules/mycred-module-hooks.php:115
5195
  #, php-format
5196
  msgid "%plural% for Disqus comments"
5197
  msgstr "%plural% para comentários do Disqus"
5198
 
5199
- #: ../modules/mycred-module-hooks.php:116
5200
  #, php-format
5201
  msgid "Award %_plural% for making comments."
5202
  msgstr "Recompensar com %_plural% o usuário que comentar."
5203
 
5204
- #: ../modules/mycred-module-hooks.php:122
5205
  #, php-format
5206
  msgid "%plural% for clicking on links"
5207
  msgstr "%plural% para clique nos links"
5208
 
5209
- #: ../modules/mycred-module-hooks.php:123
5210
  msgid ""
5211
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5212
  "shortcode."
@@ -5214,12 +5233,12 @@ msgstr ""
5214
  "Recompensar com %_plural% os usuários que clivarem no link gerado pelo "
5215
  "shortcode [mycred_link]."
5216
 
5217
- #: ../modules/mycred-module-hooks.php:129
5218
  #, php-format
5219
  msgid "%plural% for viewing Videos"
5220
  msgstr "%plural% para visualização de vídeos"
5221
 
5222
- #: ../modules/mycred-module-hooks.php:130
5223
  msgid ""
5224
  "Award %_plural% to users who watches videos embedded using the "
5225
  "[mycred_video] shortcode."
@@ -5227,23 +5246,23 @@ msgstr ""
5227
  "Recompensar com %_plural% os usuários que assistirem os vídeos incorporados "
5228
  "utilizando o shortcode [mycred_video]"
5229
 
5230
- #: ../modules/mycred-module-hooks.php:136
5231
  #, php-format
5232
  msgid "%plural% for referrals"
5233
  msgstr "%plural% por referência"
5234
 
5235
- #: ../modules/mycred-module-hooks.php:137
5236
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5237
  msgstr ""
5238
  "Recompensar com %_plural% os usuários que remetam visitantes e / ou novas "
5239
  "inscrições de membros."
5240
 
5241
- #: ../modules/mycred-module-hooks.php:170
5242
  #, php-format
5243
  msgid "%s Hooks"
5244
  msgstr "Ganchos %s"
5245
 
5246
- #: ../modules/mycred-module-hooks.php:173
5247
  msgid ""
5248
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5249
  "depending on their actions around your website."
@@ -5251,66 +5270,96 @@ msgstr ""
5251
  "Ganchos são instâncias onde %_plural% são atribuídos ou descontados dos "
5252
  "usuários, dependendo das suas ações no site."
5253
 
5254
- #: ../modules/mycred-module-hooks.php:345 ../modules/mycred-module-hooks.php:439 .
5255
- #: ./modules/mycred-module-hooks.php:751 ../modules/mycred-module-hooks.php:764 ..
5256
- #: modules/mycred-module-hooks.php:800 ../modules/mycred-module-hooks.php:1180 ..
5257
- #: modules/mycred-module-hooks.php:1197 ../modules/mycred-module-hooks.php:1214 .
5258
- #: ./modules/mycred-module-hooks.php:2370 ../modules/mycred-module-hooks.php:2399
5259
- #: ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 .
5260
- #: ./plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ..
5261
- #: plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ..
5262
- #: plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ..
5263
- #: plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-
5264
- #: buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ..
5265
- #: plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-
5266
- #: buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ..
5267
- #: plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-
5268
- #: buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ..
5269
- #: plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-
5270
- #: buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ..
5271
- #: plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
5272
- #: buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-
5273
- #: hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ..
5274
- #: plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:
5275
- #: 446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-
5276
- #: buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-
5277
- #: hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ..
5278
- #: plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:
5279
- #: 978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-
5280
- #: buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ..
5281
- #: plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:
5282
- #: 1044 ../plugins/mycred-hook-contact-form7.php:141 ../plugins/mycred-hook-
5283
- #: gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.php:219 ..
5284
- #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-jetpack.php:
5285
- #: 506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-sharethis.
5286
- #: php:258 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-
5287
- #: simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ..
5288
- #: plugins/mycred-hook-simplepress.php:380
 
5289
  msgid "Log template"
5290
  msgstr "Modelo de registro"
5291
 
5292
- #: ../modules/mycred-module-hooks.php:640 ../modules/mycred-module-hooks.php:2378
5293
- #: ../modules/mycred-module-hooks.php:2407 ../plugins/mycred-hook-invite-anyone.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5294
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5295
  msgid "Limit"
5296
  msgstr "Limite"
5297
 
5298
- #: ../modules/mycred-module-hooks.php:745
5299
  #, php-format
5300
  msgid "%plural% for Posts"
5301
  msgstr "%plural% para posts"
5302
 
5303
- #: ../modules/mycred-module-hooks.php:758
5304
  #, php-format
5305
  msgid "%plural% for Pages"
5306
  msgstr "%plural% para páginas"
5307
 
5308
- #: ../modules/mycred-module-hooks.php:794
5309
  #, php-format
5310
  msgid "%plural% for %s"
5311
  msgstr "%plural% para %s"
5312
 
5313
- #: ../modules/mycred-module-hooks.php:1166
5314
  msgid ""
5315
  "%plural% are only awarded when your website has been synced with the Disqus "
5316
  "server!"
@@ -5318,29 +5367,24 @@ msgstr ""
5318
  "%plural% serão atribuídos apenas quando seu site for sincronizado com o "
5319
  "servidor do Disqus!"
5320
 
5321
- #: ../modules/mycred-module-hooks.php:1171 ../modules/mycred-module-hooks.php:
5322
- #: 1188 ../modules/mycred-module-hooks.php:1205
5323
  msgid "Comment Author"
5324
  msgstr "Autor do comentário"
5325
 
5326
- #: ../modules/mycred-module-hooks.php:1175 ../modules/mycred-module-hooks.php:
5327
- #: 1192 ../modules/mycred-module-hooks.php:1209
5328
- msgid "Content Author"
5329
- msgstr "Autor do conteúdo"
5330
-
5331
- #: ../modules/mycred-module-hooks.php:1185
5332
  msgid "Comment Marked SPAM"
5333
  msgstr "Comentário marcado como SPAM"
5334
 
5335
- #: ../modules/mycred-module-hooks.php:1202
5336
  msgid "Trashed / Unapproved Comments"
5337
  msgstr "Comentário desaprovado / deletado"
5338
 
5339
- #: ../modules/mycred-module-hooks.php:1222
5340
  msgid "Limit per post"
5341
  msgstr "Limite por post"
5342
 
5343
- #: ../modules/mycred-module-hooks.php:1224
5344
  msgid ""
5345
  "The number of comments per post that grants %_plural% to the comment author. "
5346
  "Use zero for unlimited."
@@ -5348,17 +5392,17 @@ msgstr ""
5348
  "O número de comentários por post que garantem %_plural% para o autor do "
5349
  "comentário. Utilize zero para ilimitado."
5350
 
5351
- #: ../modules/mycred-module-hooks.php:1228
5352
  msgid "Limit per day"
5353
  msgstr "Limite por dia"
5354
 
5355
- #: ../modules/mycred-module-hooks.php:1230
5356
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5357
  msgstr ""
5358
  "Número de comentários por dia que garantem %_plural%. Utilize zero para "
5359
  "ilimitado."
5360
 
5361
- #: ../modules/mycred-module-hooks.php:1235
5362
  msgid ""
5363
  "%plural% is to be awarded even when comment authors reply to their own "
5364
  "comment."
@@ -5366,15 +5410,15 @@ msgstr ""
5366
  "%plural% serão atribuídos mesmo quando os autores dos comentários respondem "
5367
  "o seu próprio comentário."
5368
 
5369
- #: ../modules/mycred-module-hooks.php:1306
5370
  msgid "Once for each unique URL"
5371
  msgstr "Uma vez para cada URL única"
5372
 
5373
- #: ../modules/mycred-module-hooks.php:1307
5374
  msgid "Once for each unique link id"
5375
  msgstr "Uma vez para cada ID único de URL"
5376
 
5377
- #: ../modules/mycred-module-hooks.php:1500
5378
  msgid ""
5379
  "The default amount to award for clicking on links. You can override this in "
5380
  "the shortcode."
@@ -5382,16 +5426,16 @@ msgstr ""
5382
  "A quantia padrão para recompensa por clicar em links. Você pode substituir "
5383
  "este no shortcode."
5384
 
5385
- #: ../modules/mycred-module-hooks.php:1507
5386
  #, php-format
5387
  msgid "Custom tags: %url%, %title% or %id%."
5388
  msgstr "Etiquetas personalizadas: %url%, %title% ou %id%."
5389
 
5390
- #: ../modules/mycred-module-hooks.php:1518 ../modules/mycred-module-hooks.php:2481
5391
  msgid "Note!"
5392
  msgstr "Nota!"
5393
 
5394
- #: ../modules/mycred-module-hooks.php:1518
5395
  msgid ""
5396
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5397
  "generate one automatically based on the value set under href. If you are "
@@ -5403,44 +5447,44 @@ msgstr ""
5403
  "Se você estiver usando esse recurso para \"sharing\" conteúdo, é recomendável "
5404
  "que você limite por ID."
5405
 
5406
- #: ../modules/mycred-module-hooks.php:1520 ../modules/mycred-module-hooks.php:1878
5407
  msgid "Available Shortcode"
5408
  msgstr "Shortcode disponível"
5409
 
5410
- #: ../modules/mycred-module-hooks.php:1842
5411
  msgid "Amount to award for viewing videos."
5412
  msgstr "Quantia de recompensa por visualizar vídeos."
5413
 
5414
- #: ../modules/mycred-module-hooks.php:1852
5415
  msgid "Award Logic"
5416
  msgstr "Lógica de recompensa"
5417
 
5418
- #: ../modules/mycred-module-hooks.php:1854
5419
  #, php-format
5420
  msgid "Select when %_plural% should be awarded or deducted."
5421
  msgstr "Selecione quando %_plural% devem ser recompensados ou descontados."
5422
 
5423
- #: ../modules/mycred-module-hooks.php:1855
5424
  msgid "Play - As soon as video starts playing."
5425
  msgstr "Play - Assim que o vídeo começa a ser reproduzido."
5426
 
5427
- #: ../modules/mycred-module-hooks.php:1856
5428
  msgid "Full - First when the entire video has played."
5429
  msgstr "Completo - Quando o vídeo inteiro foi reproduzido."
5430
 
5431
- #: ../modules/mycred-module-hooks.php:1857
5432
  msgid "Interval - For each x number of seconds watched."
5433
  msgstr "Intervalo - Para cada número X de segundos assistidos."
5434
 
5435
- #: ../modules/mycred-module-hooks.php:1862
5436
  msgid "Number of seconds"
5437
  msgstr "Número de segundos"
5438
 
5439
- #: ../modules/mycred-module-hooks.php:1869
5440
  msgid "Leniency"
5441
  msgstr "Clemência"
5442
 
5443
- #: ../modules/mycred-module-hooks.php:1871
5444
  msgid ""
5445
  "The maximum percentage a users view of a movie can differ from the actual "
5446
  "length."
@@ -5448,7 +5492,7 @@ msgstr ""
5448
  "A porcentagem máxima de visualizações dos usuários de um filme pode ser "
5449
  "diferente da duração real."
5450
 
5451
- #: ../modules/mycred-module-hooks.php:1874
5452
  msgid ""
5453
  "Do not set this value to zero! A lot of thing can happen while a user "
5454
  "watches a movie and sometimes a few seconds can drop of the counter due to "
@@ -5458,73 +5502,73 @@ msgstr ""
5458
  "usuário assiste a um filme e, por vezes, alguns segundos podem cair do "
5459
  "contador devido a buffer ou reprodução de erros."
5460
 
5461
- #: ../modules/mycred-module-hooks.php:1942
5462
  msgid "Affiliate Program"
5463
  msgstr "Programa de afiliado"
5464
 
5465
- #: ../modules/mycred-module-hooks.php:1951
5466
  msgid "Per Day"
5467
  msgstr "Por dia"
5468
 
5469
- #: ../modules/mycred-module-hooks.php:2063
5470
  msgid "Link"
5471
  msgstr "Link"
5472
 
5473
- #: ../modules/mycred-module-hooks.php:2364
5474
  msgid "Referring Visitors"
5475
  msgstr "Visitantes por referência"
5476
 
5477
- #: ../modules/mycred-module-hooks.php:2388 ../modules/mycred-module-hooks.php:2417
5478
  msgid "The number of referrals each member can make. Use zero for unlimited."
5479
  msgstr "O número de referências que cada membro pode fazer. Use zero para ilimitada."
5480
 
5481
- #: ../modules/mycred-module-hooks.php:2392 ../modules/mycred-module-hooks.php:2421
5482
  msgid "Referring Signups"
5483
  msgstr "Registros por referência"
5484
 
5485
- #: ../modules/mycred-module-hooks.php:2396
5486
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5487
  msgstr "Os visitantes que desativaram os cookies não serão premiados com %_plural%."
5488
 
5489
- #: ../modules/mycred-module-hooks.php:2423
5490
  msgid "Registrations are disabled."
5491
  msgstr "As inscrições estão desativadas."
5492
 
5493
- #: ../modules/mycred-module-hooks.php:2430
5494
  msgid "Referral Links"
5495
  msgstr "Links de referência"
5496
 
5497
- #: ../modules/mycred-module-hooks.php:2434
5498
  msgid "Assign numeric referral IDs to each user."
5499
  msgstr "Atribuir IDs numéricos de referência para cada usuário."
5500
 
5501
- #: ../modules/mycred-module-hooks.php:2435 ../modules/mycred-module-hooks.php:2441
5502
  msgid "Example"
5503
  msgstr "Exemplo"
5504
 
5505
- #: ../modules/mycred-module-hooks.php:2440
5506
  msgid "Assign usernames as IDs for each user."
5507
  msgstr "Atribuir nome de usuário como IDs para cada usuário."
5508
 
5509
- #: ../modules/mycred-module-hooks.php:2444
5510
  msgid "IP Limit"
5511
  msgstr "Limite de IP"
5512
 
5513
- #: ../modules/mycred-module-hooks.php:2448
5514
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5515
  msgstr ""
5516
  "O número de vezes que cada endereço IP dá de %_plural%. Use zero para "
5517
  "ilimitado."
5518
 
5519
- #: ../modules/mycred-module-hooks.php:2452 ../modules/mycred-module-hooks.php:2485
5520
  msgid "BuddyPress Profile"
5521
  msgstr "Perfil do BuddyPress"
5522
 
5523
- #: ../modules/mycred-module-hooks.php:2455
5524
  msgid "Insert Link in users Profile"
5525
  msgstr "Inserir link no perfil do usuário"
5526
 
5527
- #: ../modules/mycred-module-hooks.php:2456
5528
  msgid ""
5529
  "Option to inser the referral link in users profiles. Links will only be "
5530
  "visible to users viewing their own profiles or administrators."
@@ -5533,23 +5577,23 @@ msgstr ""
5533
  "somente serão visíveis para usuários que visualizam o seu próprio perfil ou "
5534
  "administradores."
5535
 
5536
- #: ../modules/mycred-module-hooks.php:2462
5537
  msgid "Leave empty to hide."
5538
  msgstr "Deixe em brando para esconder."
5539
 
5540
- #: ../modules/mycred-module-hooks.php:2465
5541
  msgid "Description"
5542
  msgstr "Descrição"
5543
 
5544
- #: ../modules/mycred-module-hooks.php:2466
5545
  msgid "Optional description to insert under the link."
5546
  msgstr "Descrição opcional para inserir abaixo do link."
5547
 
5548
- #: ../modules/mycred-module-hooks.php:2478
5549
  msgid "Profile Positioning"
5550
  msgstr "Posicionamento de perfil "
5551
 
5552
- #: ../modules/mycred-module-hooks.php:2480
5553
  msgid ""
5554
  "You can move around the referral link on your users profile by changing the "
5555
  "position. Increase to move up, decrease to move down."
@@ -5557,80 +5601,80 @@ msgstr ""
5557
  "Você pode mover o link de referência no seu perfil de usuário, alterando a "
5558
  "posição. Aumente para subir, diminua para mover para baixo."
5559
 
5560
- #: ../modules/mycred-module-hooks.php:2481
5561
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5562
  msgstr ""
5563
  "Você não pode mover o link de referência acima da \"Base\" de detalhes de "
5564
  "perfil do usuário!"
5565
 
5566
- #: ../modules/mycred-module-hooks.php:2487
5567
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5568
  msgstr "Requer perfis extendidos do BuddyPress para ser habilitado."
5569
 
5570
- #: ../modules/mycred-module-log.php:187 ../modules/mycred-module-log.php:208 ..
5571
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5572
  msgid "Access denied for this action"
5573
  msgstr "Acesso negado para esta ação"
5574
 
5575
- #: ../modules/mycred-module-log.php:194
5576
  msgid "Row Deleted"
5577
  msgstr "Linha deletada"
5578
 
5579
- #: ../modules/mycred-module-log.php:221
5580
  msgid "Log entry not found"
5581
  msgstr "Registro de entrada não encontrado"
5582
 
5583
- #: ../modules/mycred-module-log.php:234
5584
  msgid "Entry Updated"
5585
  msgstr "Entrada atualizada"
5586
 
5587
- #: ../modules/mycred-module-log.php:288 ../modules/mycred-module-settings.php:436
5588
  msgid "Entries"
5589
  msgstr "Entradas"
5590
 
5591
- #: ../modules/mycred-module-log.php:303 ../modules/mycred-module-log.php:383 ..
5592
- #: modules/mycred-module-log.php:627 ../modules/mycred-module-settings.php:574
5593
  msgid "Export"
5594
  msgstr "Exportar"
5595
 
5596
- #: ../modules/mycred-module-log.php:309
5597
  msgid "Search results for"
5598
  msgstr "Resultados da busca por"
5599
 
5600
- #: ../modules/mycred-module-log.php:377
5601
  #, php-format
5602
  msgid "%s Log"
5603
  msgstr "%s Registro"
5604
 
5605
- #: ../modules/mycred-module-log.php:502
5606
  msgid "Edit"
5607
  msgstr "Editar"
5608
 
5609
- #: ../modules/mycred-module-log.php:543
5610
  msgid "Time"
5611
  msgstr "Tempo"
5612
 
5613
- #: ../modules/mycred-module-log.php:547
5614
  msgid "Current Log Entry"
5615
  msgstr "Entrada de registro atual"
5616
 
5617
- #: ../modules/mycred-module-log.php:549
5618
  msgid "The current saved log entry"
5619
  msgstr "Entrada de registro atual salva"
5620
 
5621
- #: ../modules/mycred-module-log.php:552
5622
  msgid "Adjust Log Entry"
5623
  msgstr "Ajustar entrada de registro"
5624
 
5625
- #: ../modules/mycred-module-log.php:554
5626
  msgid "The new log entry"
5627
  msgstr "Nova entrada de registro"
5628
 
5629
- #: ../modules/mycred-module-log.php:557
5630
  msgid "Update Log Entry"
5631
  msgstr "Atualizar entrada de registro"
5632
 
5633
- #: ../modules/mycred-module-log.php:621
5634
  #, php-format
5635
  msgid "My %s History"
5636
  msgstr "Meu %s histórico"
@@ -5872,8 +5916,8 @@ msgstr "%plural% para novo Tópico"
5872
  msgid "Forum authors can receive %_plural% for creating new topics."
5873
  msgstr "Autores do fórum podem receber %_plural% por criação de novos temas."
5874
 
5875
- #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 .
5876
- #: ./plugins/mycred-hook-simplepress.php:336
5877
  #, php-format
5878
  msgid "%plural% for Topic Deletion"
5879
  msgstr "%plural% para Tópico deletado"
@@ -5909,6 +5953,11 @@ msgstr "Autores de tópico podem receber %_plural% por responder o seu próprio
5909
  msgid "Show users %_plural% balance in replies"
5910
  msgstr "Mostrar saldo de %_plural% dos usuários nas respostas"
5911
 
 
 
 
 
 
5912
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5913
  msgid "BuddyPress: Gallery Actions"
5914
  msgstr "BuddyPress: Ações na galeria"
@@ -6305,19 +6354,15 @@ msgstr "Autores de tópicos podem receber %_plural% para postar em seu próprio
6305
  msgid "%plural% for Topic Post Deletion"
6306
  msgstr "%plural% por tópico no post deletado"
6307
 
6308
- #: ../plugins/mycred-hook-woocommerce.php:65
6309
  msgid "Reward with %plural%"
6310
  msgstr ""
6311
 
6312
- #: ../plugins/mycred-hook-woocommerce.php:70
6313
- msgid "User is excluded from this point type."
6314
- msgstr ""
6315
-
6316
- #: ../plugins/mycred-hook-woocommerce.php:199
6317
  msgid "WooCommerce Product Reviews"
6318
  msgstr ""
6319
 
6320
- #: ../plugins/mycred-hook-woocommerce.php:200
6321
  #, php-format
6322
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6323
  msgstr ""
@@ -6349,3 +6394,5 @@ msgstr "WP-Polls"
6349
  #, php-format
6350
  msgid "Awards %_plural% for users voting in polls."
6351
  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: 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
  "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"
102
  msgstr "Registro de entradas atualizado"
103
 
104
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
105
+ #: notices.php:718 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
106
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
107
  msgid "Setup"
108
  msgstr "Instalação"
130
  msgstr "Esse gancho não tem configurações"
131
 
132
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
133
+ #: 1558
134
  msgid "No limit"
135
  msgstr "Sem limite"
136
 
156
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
157
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
158
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
159
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:868
160
  msgid "Select"
161
  msgstr "Selecionar"
162
 
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"
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
 
527
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
528
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
529
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
530
+ #: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
531
+ #: modules/mycred-module-hooks.php:2098 ../plugins/mycred-hook-badgeOS.php:115 ..
532
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
533
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
534
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
535
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
536
+ #: php:298 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
537
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
538
  msgid "Log Template"
539
  msgstr "Modelo de registro"
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
 
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
 
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
 
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"
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
 
1595
  msgstr "Uso"
1596
 
1597
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1598
+ #: transfer.php:243 ../modules/mycred-module-hooks.php:1472 ../modules/mycred-
1599
+ #: module-hooks.php:1763
1600
  msgid "Limits"
1601
  msgstr "Limites"
1602
 
1609
  msgstr "ainda não utilizado"
1610
 
1611
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1612
+ #: php:2203
1613
  msgid "Total"
1614
  msgstr "Total"
1615
 
1789
  msgstr "Aplicar cupom"
1790
 
1791
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1792
+ #: notices/myCRED-addon-email-notices.php:1115
1793
  msgid "Email Notice"
1794
  msgstr "E-mail de aviso"
1795
 
1986
  "individualmente ao editar os e-mails."
1987
 
1988
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1989
+ #: notices/myCRED-addon-email-notices.php:782
1990
  msgid "Email Settings"
1991
  msgstr "Configurações de e-mail"
1992
 
1993
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1994
+ #: notices/myCRED-addon-email-notices.php:905
1995
  msgid "Senders Name:"
1996
  msgstr "Nome do remetente:"
1997
 
1998
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1999
+ #: notices/myCRED-addon-email-notices.php:907
2000
  msgid "Senders Email:"
2001
  msgstr "E-mail do remetente:"
2002
 
2020
  msgid "Ignored if HTML is not allowed in emails."
2021
  msgstr "Ignorar se HTML não é permitido nos e-mails."
2022
 
2023
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:716 ../addons/email-
2024
+ #: notices/myCRED-addon-email-notices.php:831
2025
  msgid "Email Subject"
2026
  msgstr "Assunto do e-mail"
2027
 
2028
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:717
2029
  msgid "Status"
2030
  msgstr "Status"
2031
 
2032
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:737
2033
  msgid "Not Active"
2034
  msgstr "Desativado"
2035
 
2036
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:739
2037
  #, php-format
2038
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2039
  msgstr "Agendado:<br /><strong>%1$s</strong>"
2040
 
2041
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:743
2042
  msgid "Active"
2043
  msgstr "Ativado"
2044
 
2045
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:745
2046
  #, php-format
2047
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2048
  msgstr "Ativado: Última execução:<br /><strong>%1$s</strong>"
2049
 
2050
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755
2051
  msgid "Email is sent when"
2052
  msgstr "O e-mail é enviado quando"
2053
 
2054
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757
2055
  msgid "Missing instance for this notice!"
2056
  msgstr "Falta instância para este aviso!"
2057
 
2058
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2059
+ #: notices/myCRED-addon-email-notices.php:768 ../addons/email-notices/myCRED-
2060
+ #: addon-email-notices.php:770
2061
  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
 
2070
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:768 ../addons/email-
2071
+ #: notices/myCRED-addon-email-notices.php:896
2072
  msgid "Administrator"
2073
  msgstr "Administrador"
2074
 
2075
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:770
2076
  msgid "Both Administrator and User"
2077
  msgstr "Ambos, administrador e usuário"
2078
 
2079
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
2080
  msgid "Available Template Tags"
2081
  msgstr "Modelos de etiquetas disponíveis"
2082
 
2083
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:802
2084
  msgid "Email Header"
2085
  msgstr "Cabeçalho do e-mail"
2086
 
2087
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:862
2088
  msgid "Send this email notice when..."
2089
  msgstr "Enviar este e-mail de aviso quando..."
2090
 
2091
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:893
2092
  msgid "Recipient:"
2093
  msgstr "Destinatário:"
2094
 
2095
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:897
2096
  msgid "Both"
2097
  msgstr "Ambos"
2098
 
2099
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:901 ..
2100
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2101
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2102
  #: module-settings.php:526
2103
  msgid "Label"
2104
  msgstr "Rótulo"
2105
 
2106
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2107
  msgid "Reply-To Email:"
2108
  msgstr "E-mail do Responder para:"
2109
 
2110
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:915
2111
  msgid "Save"
2112
  msgstr "Salvar"
2113
 
2114
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:927
2115
  msgid "CSS Styling"
2116
  msgstr "Estilo CSS"
2117
 
2118
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:943
2119
  msgid "Site Related"
2120
  msgstr "Site relacionado"
2121
 
2122
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:944
2123
  msgid "Your websites title"
2124
  msgstr "Título do seu site"
2125
 
2126
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:945
2127
  msgid "Your websites address"
2128
  msgstr "Endereço do seu site"
2129
 
2130
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:946
2131
  msgid "Your websites tagline (description)"
2132
  msgstr "Slogan do seu site (descrição)"
2133
 
2134
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:947
2135
  msgid "Your websites admin email"
2136
  msgstr "E-mail de administração do seu site"
2137
 
2138
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:948
2139
  msgid "Total number of blog members"
2140
  msgstr "Número total de usuários do blog"
2141
 
2142
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1026 ../addons/email-
2143
+ #: notices/myCRED-addon-email-notices.php:1029 ../addons/email-notices/myCRED-
2144
+ #: addon-email-notices.php:1035
2145
  msgid "Email Notice Updated."
2146
  msgstr ""
2147
 
2148
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1031
2149
  msgid "Email Notice Activated"
2150
  msgstr "E-mail de aviso ativado"
2151
 
2152
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1032
2153
  msgid "Email Notice Saved"
2154
  msgstr "E-mail de aviso salvo"
2155
 
2156
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2157
  msgid ""
2158
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2159
  "are not yet ready to use this email notice!"
2161
  "Uma vez que um aviso é \"published\" ele torna-se ativo! Selecione \"Save "
2162
  "Draft\" se você ainda não está pronto para usar este aviso de e-mail!"
2163
 
2164
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2165
  #, php-format
2166
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2167
  msgstr "Este aviso ficará ativo em:<br /><strong>%1$s</strong>"
2168
 
2169
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2170
  msgid "This email notice is active."
2171
  msgstr "Este e-mail de aviso está ativo."
2172
 
2173
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1066
2174
  msgid "Settings saved."
2175
  msgstr "Configurações salvas"
2176
 
2177
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1114
2178
  msgid "Unsubscribe"
2179
  msgstr "Cancelar assinatura"
2180
 
2181
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1135
2182
  msgid "There are no email notifications yet."
2183
  msgstr "Não há notificações de e-mail ainda."
2184
 
2185
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1141
2186
  msgid "Save Changes"
2187
  msgstr "Salvar alterações"
2188
 
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
  #: 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
 
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
 
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"
3187
  msgid "Assign Ranks to Users"
3188
  msgstr "Atribuir Ranks de usuários"
3189
 
3190
+ #: ../addons/ranks/includes/mycred-rank-functions.php:229
3191
  msgid "mycred_get_users_rank() : Missing required user id"
3192
  msgstr "mycred_get_users_rank() : ID do usuário ausente"
3193
 
3194
+ #: ../addons/ranks/includes/mycred-rank-functions.php:238
3195
  msgid "no rank"
3196
  msgstr "nenhum rank"
3197
 
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
  "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
 
3581
  msgid "Show users limit"
3582
  msgstr "Mostrar o limite dos usuários"
3583
 
3584
+ #: ../addons/transfer/myCRED-addon-transfer.php:800
3585
  msgid "username"
3586
  msgstr "nome do usuário"
3587
 
3588
+ #: ../addons/transfer/myCRED-addon-transfer.php:802
3589
  msgid "email"
3590
  msgstr "e-mail"
3591
 
3592
+ #: ../addons/transfer/myCRED-addon-transfer.php:804
3593
  #, php-format
3594
  msgid "recipients %s"
3595
  msgstr "destinatários %s"
3596
 
3597
+ #: ../addons/transfer/myCRED-addon-transfer.php:877
3598
  msgid "To:"
3599
  msgstr "Para:"
3600
 
3601
+ #: ../addons/transfer/myCRED-addon-transfer.php:883
3602
  msgid "Amount:"
3603
  msgstr "Quantia:"
3604
 
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
 
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
  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
 
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
 
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 ""
5167
 
5168
  #: ../modules/mycred-module-hooks.php:101
5169
  #, php-format
5170
+ msgid "%plural% for viewing content"
5171
+ msgstr ""
5172
+
5173
+ #: ../modules/mycred-module-hooks.php:102
5174
+ msgid ""
5175
+ "Award %_plural% to your users for viewing posts and / or %plural% to your "
5176
+ "authors for members viewing their content."
5177
+ msgstr ""
5178
+
5179
+ #: ../modules/mycred-module-hooks.php:108
5180
+ #, php-format
5181
  msgid "%plural% for logins"
5182
  msgstr "%plural% para logins"
5183
 
5184
+ #: ../modules/mycred-module-hooks.php:109
5185
  #, php-format
5186
  msgid ""
5187
  "Award %_plural% for logging in to your website. You can also set an optional "
5190
  "Recompensar com %_plural% o login no seu site. Você pode definir um tempo "
5191
  "limite opcional."
5192
 
5193
+ #: ../modules/mycred-module-hooks.php:115
5194
  #, php-format
5195
  msgid "%plural% for publishing content"
5196
  msgstr "%plural% por publicar conteúdo"
5197
 
5198
+ #: ../modules/mycred-module-hooks.php:116
5199
  #, php-format
5200
  msgid ""
5201
  "Award %_plural% for publishing content on your website. If your custom post "
5205
  "post personalizado não está sendo exibido abaixo, tenha certeza de que ele "
5206
  "está definido como \"Public\"."
5207
 
5208
+ #: ../modules/mycred-module-hooks.php:122
5209
  #, php-format
5210
  msgid "%plural% for comments"
5211
  msgstr "%plural% para comentários"
5212
 
5213
+ #: ../modules/mycred-module-hooks.php:122
5214
  #, php-format
5215
  msgid "%plural% for Disqus comments"
5216
  msgstr "%plural% para comentários do Disqus"
5217
 
5218
+ #: ../modules/mycred-module-hooks.php:123
5219
  #, php-format
5220
  msgid "Award %_plural% for making comments."
5221
  msgstr "Recompensar com %_plural% o usuário que comentar."
5222
 
5223
+ #: ../modules/mycred-module-hooks.php:129
5224
  #, php-format
5225
  msgid "%plural% for clicking on links"
5226
  msgstr "%plural% para clique nos links"
5227
 
5228
+ #: ../modules/mycred-module-hooks.php:130
5229
  msgid ""
5230
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5231
  "shortcode."
5233
  "Recompensar com %_plural% os usuários que clivarem no link gerado pelo "
5234
  "shortcode [mycred_link]."
5235
 
5236
+ #: ../modules/mycred-module-hooks.php:136
5237
  #, php-format
5238
  msgid "%plural% for viewing Videos"
5239
  msgstr "%plural% para visualização de vídeos"
5240
 
5241
+ #: ../modules/mycred-module-hooks.php:137
5242
  msgid ""
5243
  "Award %_plural% to users who watches videos embedded using the "
5244
  "[mycred_video] shortcode."
5246
  "Recompensar com %_plural% os usuários que assistirem os vídeos incorporados "
5247
  "utilizando o shortcode [mycred_video]"
5248
 
5249
+ #: ../modules/mycred-module-hooks.php:143
5250
  #, php-format
5251
  msgid "%plural% for referrals"
5252
  msgstr "%plural% por referência"
5253
 
5254
+ #: ../modules/mycred-module-hooks.php:144
5255
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5256
  msgstr ""
5257
  "Recompensar com %_plural% os usuários que remetam visitantes e / ou novas "
5258
  "inscrições de membros."
5259
 
5260
+ #: ../modules/mycred-module-hooks.php:177
5261
  #, php-format
5262
  msgid "%s Hooks"
5263
  msgstr "Ganchos %s"
5264
 
5265
+ #: ../modules/mycred-module-hooks.php:180
5266
  msgid ""
5267
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5268
  "depending on their actions around your website."
5270
  "Ganchos são instâncias onde %_plural% são atribuídos ou descontados dos "
5271
  "usuários, dependendo das suas ações no site."
5272
 
5273
+ #: ../modules/mycred-module-hooks.php:352 ../modules/mycred-module-hooks.php:446 .
5274
+ #: ./modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:622 ..
5275
+ #: modules/mycred-module-hooks.php:684 ../modules/mycred-module-hooks.php:1004 ..
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.
5283
+ #: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
5284
+ #: buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ..
5285
+ #: plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-
5286
+ #: buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ..
5287
+ #: plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-
5288
+ #: buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ..
5289
+ #: plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-
5290
+ #: buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ..
5291
+ #: plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-
5292
+ #: buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ..
5293
+ #: plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:
5294
+ #: 407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-
5295
+ #: buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-
5296
+ #: hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ..
5297
+ #: plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:
5298
+ #: 939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-
5299
+ #: buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-
5300
+ #: hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ..
5301
+ #: plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:
5302
+ #: 1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-
5303
+ #: form7.php:141 ../plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-
5304
+ #: hook-invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:240 ..
5305
+ #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5306
+ #: plugins/mycred-hook-sharethis.php:258 ../plugins/mycred-hook-simplepress.php:
5307
+ #: 330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-
5308
+ #: simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
5309
  msgid "Log template"
5310
  msgstr "Modelo de registro"
5311
 
5312
+ #: ../modules/mycred-module-hooks.php:586
5313
+ #, php-format
5314
+ msgid "%plural% for viewing Posts"
5315
+ msgstr ""
5316
+
5317
+ #: ../modules/mycred-module-hooks.php:589 ../modules/mycred-module-hooks.php:600 .
5318
+ #: ./modules/mycred-module-hooks.php:614 ../modules/mycred-module-hooks.php:625 ..
5319
+ #: modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:687
5320
+ msgid "Member"
5321
+ msgstr ""
5322
+
5323
+ #: ../modules/mycred-module-hooks.php:593 ../modules/mycred-module-hooks.php:606 .
5324
+ #: ./modules/mycred-module-hooks.php:618 ../modules/mycred-module-hooks.php:631 ..
5325
+ #: modules/mycred-module-hooks.php:680 ../modules/mycred-module-hooks.php:693 ..
5326
+ #: modules/mycred-module-hooks.php:1428 ../modules/mycred-module-hooks.php:1445 .
5327
+ #: ./modules/mycred-module-hooks.php:1462
5328
+ msgid "Content Author"
5329
+ msgstr "Autor do conteúdo"
5330
+
5331
+ #: ../modules/mycred-module-hooks.php:611
5332
+ #, php-format
5333
+ msgid "%plural% for viewing Pages"
5334
+ msgstr ""
5335
+
5336
+ #: ../modules/mycred-module-hooks.php:673
5337
+ #, php-format
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"
5346
 
5347
+ #: ../modules/mycred-module-hooks.php:998
5348
  #, php-format
5349
  msgid "%plural% for Posts"
5350
  msgstr "%plural% para posts"
5351
 
5352
+ #: ../modules/mycred-module-hooks.php:1011
5353
  #, php-format
5354
  msgid "%plural% for Pages"
5355
  msgstr "%plural% para páginas"
5356
 
5357
+ #: ../modules/mycred-module-hooks.php:1047
5358
  #, php-format
5359
  msgid "%plural% for %s"
5360
  msgstr "%plural% para %s"
5361
 
5362
+ #: ../modules/mycred-module-hooks.php:1419
5363
  msgid ""
5364
  "%plural% are only awarded when your website has been synced with the Disqus "
5365
  "server!"
5367
  "%plural% serão atribuídos apenas quando seu site for sincronizado com o "
5368
  "servidor do Disqus!"
5369
 
5370
+ #: ../modules/mycred-module-hooks.php:1424 ../modules/mycred-module-hooks.php:
5371
+ #: 1441 ../modules/mycred-module-hooks.php:1458
5372
  msgid "Comment Author"
5373
  msgstr "Autor do comentário"
5374
 
5375
+ #: ../modules/mycred-module-hooks.php:1438
 
 
 
 
 
5376
  msgid "Comment Marked SPAM"
5377
  msgstr "Comentário marcado como SPAM"
5378
 
5379
+ #: ../modules/mycred-module-hooks.php:1455
5380
  msgid "Trashed / Unapproved Comments"
5381
  msgstr "Comentário desaprovado / deletado"
5382
 
5383
+ #: ../modules/mycred-module-hooks.php:1475
5384
  msgid "Limit per post"
5385
  msgstr "Limite por post"
5386
 
5387
+ #: ../modules/mycred-module-hooks.php:1477
5388
  msgid ""
5389
  "The number of comments per post that grants %_plural% to the comment author. "
5390
  "Use zero for unlimited."
5392
  "O número de comentários por post que garantem %_plural% para o autor do "
5393
  "comentário. Utilize zero para ilimitado."
5394
 
5395
+ #: ../modules/mycred-module-hooks.php:1481
5396
  msgid "Limit per day"
5397
  msgstr "Limite por dia"
5398
 
5399
+ #: ../modules/mycred-module-hooks.php:1483
5400
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5401
  msgstr ""
5402
  "Número de comentários por dia que garantem %_plural%. Utilize zero para "
5403
  "ilimitado."
5404
 
5405
+ #: ../modules/mycred-module-hooks.php:1488
5406
  msgid ""
5407
  "%plural% is to be awarded even when comment authors reply to their own "
5408
  "comment."
5410
  "%plural% serão atribuídos mesmo quando os autores dos comentários respondem "
5411
  "o seu próprio comentário."
5412
 
5413
+ #: ../modules/mycred-module-hooks.php:1559
5414
  msgid "Once for each unique URL"
5415
  msgstr "Uma vez para cada URL única"
5416
 
5417
+ #: ../modules/mycred-module-hooks.php:1560
5418
  msgid "Once for each unique link id"
5419
  msgstr "Uma vez para cada ID único de URL"
5420
 
5421
+ #: ../modules/mycred-module-hooks.php:1753
5422
  msgid ""
5423
  "The default amount to award for clicking on links. You can override this in "
5424
  "the shortcode."
5426
  "A quantia padrão para recompensa por clicar em links. Você pode substituir "
5427
  "este no shortcode."
5428
 
5429
+ #: ../modules/mycred-module-hooks.php:1760
5430
  #, php-format
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
 
5438
+ #: ../modules/mycred-module-hooks.php:1771
5439
  msgid ""
5440
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5441
  "generate one automatically based on the value set under href. If you are "
5447
  "Se você estiver usando esse recurso para \"sharing\" conteúdo, é recomendável "
5448
  "que você limite por ID."
5449
 
5450
+ #: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2131
5451
  msgid "Available Shortcode"
5452
  msgstr "Shortcode disponível"
5453
 
5454
+ #: ../modules/mycred-module-hooks.php:2095
5455
  msgid "Amount to award for viewing videos."
5456
  msgstr "Quantia de recompensa por visualizar vídeos."
5457
 
5458
+ #: ../modules/mycred-module-hooks.php:2105
5459
  msgid "Award Logic"
5460
  msgstr "Lógica de recompensa"
5461
 
5462
+ #: ../modules/mycred-module-hooks.php:2107
5463
  #, php-format
5464
  msgid "Select when %_plural% should be awarded or deducted."
5465
  msgstr "Selecione quando %_plural% devem ser recompensados ou descontados."
5466
 
5467
+ #: ../modules/mycred-module-hooks.php:2108
5468
  msgid "Play - As soon as video starts playing."
5469
  msgstr "Play - Assim que o vídeo começa a ser reproduzido."
5470
 
5471
+ #: ../modules/mycred-module-hooks.php:2109
5472
  msgid "Full - First when the entire video has played."
5473
  msgstr "Completo - Quando o vídeo inteiro foi reproduzido."
5474
 
5475
+ #: ../modules/mycred-module-hooks.php:2110
5476
  msgid "Interval - For each x number of seconds watched."
5477
  msgstr "Intervalo - Para cada número X de segundos assistidos."
5478
 
5479
+ #: ../modules/mycred-module-hooks.php:2115
5480
  msgid "Number of seconds"
5481
  msgstr "Número de segundos"
5482
 
5483
+ #: ../modules/mycred-module-hooks.php:2122
5484
  msgid "Leniency"
5485
  msgstr "Clemência"
5486
 
5487
+ #: ../modules/mycred-module-hooks.php:2124
5488
  msgid ""
5489
  "The maximum percentage a users view of a movie can differ from the actual "
5490
  "length."
5492
  "A porcentagem máxima de visualizações dos usuários de um filme pode ser "
5493
  "diferente da duração real."
5494
 
5495
+ #: ../modules/mycred-module-hooks.php:2127
5496
  msgid ""
5497
  "Do not set this value to zero! A lot of thing can happen while a user "
5498
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5502
  "usuário assiste a um filme e, por vezes, alguns segundos podem cair do "
5503
  "contador devido a buffer ou reprodução de erros."
5504
 
5505
+ #: ../modules/mycred-module-hooks.php:2195
5506
  msgid "Affiliate Program"
5507
  msgstr "Programa de afiliado"
5508
 
5509
+ #: ../modules/mycred-module-hooks.php:2204
5510
  msgid "Per Day"
5511
  msgstr "Por dia"
5512
 
5513
+ #: ../modules/mycred-module-hooks.php:2316
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
  "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
  "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
 
5614
+ #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
5615
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5616
  msgid "Access denied for this action"
5617
  msgstr "Acesso negado para esta ação"
5618
 
5619
+ #: ../modules/mycred-module-log.php:196
5620
  msgid "Row Deleted"
5621
  msgstr "Linha deletada"
5622
 
5623
+ #: ../modules/mycred-module-log.php:223
5624
  msgid "Log entry not found"
5625
  msgstr "Registro de entrada não encontrado"
5626
 
5627
+ #: ../modules/mycred-module-log.php:236
5628
  msgid "Entry Updated"
5629
  msgstr "Entrada atualizada"
5630
 
5631
+ #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:436
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
 
5640
+ #: ../modules/mycred-module-log.php:311
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"
5916
  msgid "Forum authors can receive %_plural% for creating new topics."
5917
  msgstr "Autores do fórum podem receber %_plural% por criação de novos temas."
5918
 
5919
+ #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-simplepress.php:
5920
+ #: 336
5921
  #, php-format
5922
  msgid "%plural% for Topic Deletion"
5923
  msgstr "%plural% para Tópico deletado"
5953
  msgid "Show users %_plural% balance in replies"
5954
  msgstr "Mostrar saldo de %_plural% dos usuários nas respostas"
5955
 
5956
+ #: ../plugins/mycred-hook-bbPress.php:568
5957
+ #, php-format
5958
+ msgid "%plural% for Reply Deletion"
5959
+ msgstr ""
5960
+
5961
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5962
  msgid "BuddyPress: Gallery Actions"
5963
  msgstr "BuddyPress: Ações na galeria"
6354
  msgid "%plural% for Topic Post Deletion"
6355
  msgstr "%plural% por tópico no post deletado"
6356
 
6357
+ #: ../plugins/mycred-hook-woocommerce.php:67
6358
  msgid "Reward with %plural%"
6359
  msgstr ""
6360
 
6361
+ #: ../plugins/mycred-hook-woocommerce.php:197
 
 
 
 
6362
  msgid "WooCommerce Product Reviews"
6363
  msgstr ""
6364
 
6365
+ #: ../plugins/mycred-hook-woocommerce.php:198
6366
  #, php-format
6367
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6368
  msgstr ""
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."
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: Sat Jul 26 2014 20:57:03 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,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;"
@@ -104,7 +104,7 @@ msgid "Log entry updated"
104
  msgstr "Запись в журнале обновлена"
105
 
106
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
107
- #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
108
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
109
  msgid "Setup"
110
  msgstr "Установка"
@@ -132,7 +132,7 @@ msgid "This Hook has no settings"
132
  msgstr "Это средство не имеет настроек"
133
 
134
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
135
- #: 1305
136
  msgid "No limit"
137
  msgstr "Нет ограничений"
138
 
@@ -158,7 +158,7 @@ msgstr "Один раз в день (перезагрузка в полночь)
158
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
159
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
160
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
161
- #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
162
  msgid "Select"
163
  msgstr "Выбрать"
164
 
@@ -424,8 +424,8 @@ msgstr ""
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:164 ..
428
- #: modules/mycred-module-log.php:324 ../modules/mycred-module-log.php:577 ..
429
  #: modules/mycred-module-settings.php:312
430
  msgid "Access Denied"
431
  msgstr "Ошибка Доступа"
@@ -452,12 +452,12 @@ 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:189
456
  msgid "Enable"
457
  msgstr "Разрешить"
458
 
459
  #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
460
- #: php:204
461
  msgid "Update Changes"
462
  msgstr "Обновить изменения"
463
 
@@ -532,13 +532,13 @@ msgstr "Минимальный требуемый баланс для приме
532
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
533
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
534
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
535
- #: modules/mycred-module-hooks.php:633 ../modules/mycred-module-hooks.php:1503 ..
536
- #: modules/mycred-module-hooks.php:1845 ../plugins/mycred-hook-badgeOS.php:115 ..
537
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
538
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
539
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
540
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
541
- #: php:300 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
542
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
543
  msgid "Log Template"
544
  msgstr "Шаблон Журнала"
@@ -576,8 +576,8 @@ msgstr "Заплатить пользователям"
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:769 ..
580
- #: includes/mycred-shortcodes.php:907
581
  msgid "Amount"
582
  msgstr "Количество"
583
 
@@ -587,7 +587,7 @@ 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:1860
591
  msgid "Interval"
592
  msgstr "Промежуток"
593
 
@@ -807,7 +807,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:2495
811
  msgid "Available Shortcodes"
812
  msgstr "Доступные короткие коды"
813
 
@@ -967,7 +967,7 @@ 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:370 ../modules/mycred-
971
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
972
  msgid "Actions"
973
  msgstr "Действия"
@@ -1413,7 +1413,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:2460
1417
  msgid "Title"
1418
  msgstr "Название"
1419
 
@@ -1604,8 +1604,8 @@ msgid "Usage"
1604
  msgstr "Применение"
1605
 
1606
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1607
- #: transfer.php:243 ../modules/mycred-module-hooks.php:1219 ../modules/mycred-
1608
- #: module-hooks.php:1510
1609
  msgid "Limits"
1610
  msgstr "Ограничения"
1611
 
@@ -1618,7 +1618,7 @@ msgid "not yet used"
1618
  msgstr "еще не использовано"
1619
 
1620
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1621
- #: php:1950
1622
  msgid "Total"
1623
  msgstr "Общее "
1624
 
@@ -1798,7 +1798,7 @@ msgid "Apply Coupon"
1798
  msgstr "Подать запрос на купон"
1799
 
1800
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1801
- #: notices/myCRED-addon-email-notices.php:1104
1802
  msgid "Email Notice"
1803
  msgstr "Уведомление по электронной почте"
1804
 
@@ -1991,17 +1991,17 @@ msgstr ""
1991
  "переопределены при редактировании электронных писем."
1992
 
1993
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1994
- #: notices/myCRED-addon-email-notices.php:771
1995
  msgid "Email Settings"
1996
  msgstr "Настройки электронного письма"
1997
 
1998
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1999
- #: notices/myCRED-addon-email-notices.php:894
2000
  msgid "Senders Name:"
2001
  msgstr "Имя отправителя:"
2002
 
2003
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
2004
- #: notices/myCRED-addon-email-notices.php:896
2005
  msgid "Senders Email:"
2006
  msgstr "Письмо отправителя:"
2007
 
@@ -2025,140 +2025,140 @@ msgstr "Настройка оформления письма"
2025
  msgid "Ignored if HTML is not allowed in emails."
2026
  msgstr "Игнорируется, если HTML в письмах не разрешается."
2027
 
2028
- #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
2029
- #: notices/myCRED-addon-email-notices.php:820
2030
  msgid "Email Subject"
2031
  msgstr "Тема письма"
2032
 
2033
- #: ../addons/email-notices/myCRED-addon-email-notices.php:706
2034
  msgid "Status"
2035
  msgstr "Статус"
2036
 
2037
- #: ../addons/email-notices/myCRED-addon-email-notices.php:726
2038
  msgid "Not Active"
2039
  msgstr "Не активно"
2040
 
2041
- #: ../addons/email-notices/myCRED-addon-email-notices.php:728
2042
  #, php-format
2043
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2044
  msgstr "Запланированный: <br /><strong>%1$s</strong>"
2045
 
2046
- #: ../addons/email-notices/myCRED-addon-email-notices.php:732
2047
  msgid "Active"
2048
  msgstr "Активен"
2049
 
2050
- #: ../addons/email-notices/myCRED-addon-email-notices.php:734
2051
  #, php-format
2052
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2053
  msgstr "Активен - Последний запуск: <br /><strong>%1$s</strong>"
2054
 
2055
- #: ../addons/email-notices/myCRED-addon-email-notices.php:744
2056
  msgid "Email is sent when"
2057
  msgstr "Электронное письмо отправляется, когда"
2058
 
2059
- #: ../addons/email-notices/myCRED-addon-email-notices.php:746
2060
  msgid "Missing instance for this notice!"
2061
  msgstr "Отсутствует пример для этого уведомления!"
2062
 
2063
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
2064
- #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
2065
- #: addon-email-notices.php:759
2066
  msgid "Sent To"
2067
  msgstr "Отправить"
2068
 
2069
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
2070
- #: notices/myCRED-addon-email-notices.php:884 ../includes/mycred-admin.php:764 ..
2071
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:542
2072
  msgid "User"
2073
  msgstr "Пользователь"
2074
 
2075
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
2076
- #: notices/myCRED-addon-email-notices.php:885
2077
  msgid "Administrator"
2078
  msgstr "Администратору"
2079
 
2080
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
2081
  msgid "Both Administrator and User"
2082
  msgstr "Администратору и Пользователю"
2083
 
2084
- #: ../addons/email-notices/myCRED-addon-email-notices.php:780
2085
  msgid "Available Template Tags"
2086
  msgstr "Доступные теги шаблона"
2087
 
2088
- #: ../addons/email-notices/myCRED-addon-email-notices.php:791
2089
  msgid "Email Header"
2090
  msgstr "Заголовок и-мейла"
2091
 
2092
- #: ../addons/email-notices/myCRED-addon-email-notices.php:851
2093
  msgid "Send this email notice when..."
2094
  msgstr "Отправить это и-мейл оповещение когда..."
2095
 
2096
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
2097
  msgid "Recipient:"
2098
  msgstr "Получатель:"
2099
 
2100
- #: ../addons/email-notices/myCRED-addon-email-notices.php:886
2101
  msgid "Both"
2102
  msgstr "Оба"
2103
 
2104
- #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
2105
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2106
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2107
  #: module-settings.php:526
2108
  msgid "Label"
2109
  msgstr "Ярлык"
2110
 
2111
- #: ../addons/email-notices/myCRED-addon-email-notices.php:898
2112
  msgid "Reply-To Email:"
2113
  msgstr "Ответить на и-мейл:"
2114
 
2115
- #: ../addons/email-notices/myCRED-addon-email-notices.php:904
2116
  msgid "Save"
2117
  msgstr "Сохранить"
2118
 
2119
- #: ../addons/email-notices/myCRED-addon-email-notices.php:916
2120
  msgid "CSS Styling"
2121
  msgstr "Оформление CSS"
2122
 
2123
- #: ../addons/email-notices/myCRED-addon-email-notices.php:932
2124
  msgid "Site Related"
2125
  msgstr "Сопутствующий сайт"
2126
 
2127
- #: ../addons/email-notices/myCRED-addon-email-notices.php:933
2128
  msgid "Your websites title"
2129
  msgstr "Заголовок ваших веб-сайтов"
2130
 
2131
- #: ../addons/email-notices/myCRED-addon-email-notices.php:934
2132
  msgid "Your websites address"
2133
  msgstr "Адрес ваших веб-сайтов"
2134
 
2135
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
2136
  msgid "Your websites tagline (description)"
2137
  msgstr "Подзаголовок вашего веб-сайта (описание)"
2138
 
2139
- #: ../addons/email-notices/myCRED-addon-email-notices.php:936
2140
  msgid "Your websites admin email"
2141
  msgstr "Электронный адрес администратора вашего веб-сайта"
2142
 
2143
- #: ../addons/email-notices/myCRED-addon-email-notices.php:937
2144
  msgid "Total number of blog members"
2145
  msgstr "Общее количество участников блога"
2146
 
2147
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
2148
- #: notices/myCRED-addon-email-notices.php:1018 ../addons/email-notices/myCRED-
2149
- #: addon-email-notices.php:1024
2150
  msgid "Email Notice Updated."
2151
  msgstr ""
2152
 
2153
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2154
  msgid "Email Notice Activated"
2155
  msgstr "И-мейл оповещение активировано"
2156
 
2157
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2158
  msgid "Email Notice Saved"
2159
  msgstr "И-мейл оповещение сохранено"
2160
 
2161
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1040
2162
  msgid ""
2163
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2164
  "are not yet ready to use this email notice!"
@@ -2166,35 +2166,35 @@ msgstr ""
2166
  "После \"публикации\" сообщение становится активным! Выберите \"Сохранить "
2167
  "Черновик\", если вы не готовы использовать это и-мейл оповещение!"
2168
 
2169
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1042
2170
  #, php-format
2171
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2172
  msgstr "Это оповещение активизируется:<br /><strong>%1$s</strong>"
2173
 
2174
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1044
2175
  msgid "This email notice is active."
2176
  msgstr "И-мейл извещение активно."
2177
 
2178
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2179
  msgid "Settings saved."
2180
  msgstr ""
2181
 
2182
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2183
  msgid "Unsubscribe"
2184
  msgstr ""
2185
 
2186
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1124
2187
  msgid "There are no email notifications yet."
2188
  msgstr ""
2189
 
2190
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1130
2191
  msgid "Save Changes"
2192
  msgstr ""
2193
 
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:765
2198
  msgid "Current Balance"
2199
  msgstr "Текущий баланс"
2200
 
@@ -2319,7 +2319,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:912
2323
  msgid "Exchange Rate"
2324
  msgstr "Курс валют"
2325
 
@@ -2660,7 +2660,7 @@ msgid "Log"
2660
  msgstr "Журнал"
2661
 
2662
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2663
- #: includes/mycred-admin.php:735 ../includes/mycred-admin.php:770
2664
  msgid "Log Entry"
2665
  msgstr "Журнал входа"
2666
 
@@ -2747,7 +2747,7 @@ msgid "Reject"
2747
  msgstr "Отклонить"
2748
 
2749
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2750
- #: modules/mycred-module-log.php:502 ../modules/mycred-module-settings.php:488 ..
2751
  #: modules/mycred-module-settings.php:507
2752
  msgid "Delete"
2753
  msgstr "Удалить"
@@ -3193,11 +3193,11 @@ msgstr "Убрать все ранги"
3193
  msgid "Assign Ranks to Users"
3194
  msgstr "Назначить ранги пользователям"
3195
 
3196
- #: ../addons/ranks/includes/mycred-rank-functions.php:197
3197
  msgid "mycred_get_users_rank() : Missing required user id"
3198
  msgstr "mycred_get_users_rank() : Отсутствует необходимый id пользователя"
3199
 
3200
- #: ../addons/ranks/includes/mycred-rank-functions.php:207
3201
  msgid "no rank"
3202
  msgstr "нет рангов"
3203
 
@@ -3382,7 +3382,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:2277
3386
  msgid "Transfer"
3387
  msgstr "Передать"
3388
 
@@ -3421,7 +3421,7 @@ msgstr ""
3421
  "это не будет выполнено!"
3422
 
3423
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3424
- #: php:1009
3425
  msgid "Insufficient Funds. Please try a lower amount."
3426
  msgstr ""
3427
 
@@ -3589,24 +3589,24 @@ msgstr "Показать баланс пользователя"
3589
  msgid "Show users limit"
3590
  msgstr "Показать лимит пользователя"
3591
 
3592
- #: ../addons/transfer/myCRED-addon-transfer.php:798
3593
  msgid "username"
3594
  msgstr "имя пользователя"
3595
 
3596
- #: ../addons/transfer/myCRED-addon-transfer.php:800
3597
  msgid "email"
3598
  msgstr "email"
3599
 
3600
- #: ../addons/transfer/myCRED-addon-transfer.php:802
3601
  #, php-format
3602
  msgid "recipients %s"
3603
  msgstr "получатели %s"
3604
 
3605
- #: ../addons/transfer/myCRED-addon-transfer.php:875
3606
  msgid "To:"
3607
  msgstr "До:"
3608
 
3609
- #: ../addons/transfer/myCRED-addon-transfer.php:881
3610
  msgid "Amount:"
3611
  msgstr "Сумма:"
3612
 
@@ -3658,8 +3658,8 @@ msgstr "Исключено"
3658
  msgid "Total: %s"
3659
  msgstr ""
3660
 
3661
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:252 ..
3662
- #: modules/mycred-module-log.php:253
3663
  msgid "History"
3664
  msgstr "История"
3665
 
@@ -3731,15 +3731,15 @@ msgstr ""
3731
  msgid "%singular% balance"
3732
  msgstr "%singular% баланс"
3733
 
3734
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:771
3735
  msgid "Update Balance"
3736
  msgstr "Обновить баланс"
3737
 
3738
- #: ../includes/mycred-admin.php:763
3739
  msgid "ID"
3740
  msgstr "ID"
3741
 
3742
- #: ../includes/mycred-admin.php:769
3743
  msgid "A positive or negative value"
3744
  msgstr "Положительное или отрицательное значение"
3745
 
@@ -3791,290 +3791,298 @@ msgstr "и"
3791
  msgid "Available Template Tags:"
3792
  msgstr "Доступные теги шаблонов:"
3793
 
3794
- #: ../includes/mycred-functions.php:1643
3795
  msgid "Entire Log"
3796
  msgstr "Весь журнал"
3797
 
3798
- #: ../includes/mycred-functions.php:1648 ../includes/mycred-functions.php:1649
3799
  msgid "Displayed Rows"
3800
  msgstr "Показанные ряды"
3801
 
3802
- #: ../includes/mycred-functions.php:1653
3803
  msgid "Search Results"
3804
  msgstr "Искать результаты"
3805
 
3806
- #: ../includes/mycred-functions.php:1654
3807
  msgid "My Entire Log"
3808
  msgstr "Мой полный журнал"
3809
 
3810
- #: ../includes/mycred-functions.php:1774
3811
  msgid "ref empty"
3812
  msgstr "образец пустой"
3813
 
3814
- #: ../includes/mycred-functions.php:1782
3815
  msgid "incorrect user id format"
3816
  msgstr "неверный формат id пользователя"
3817
 
3818
- #: ../includes/mycred-functions.php:1795
3819
  msgid "incorrect unix timestamp (from):"
3820
  msgstr "неправильная временная отметка операционной системы (от):"
3821
 
3822
- #: ../includes/mycred-functions.php:1804
3823
  msgid "incorrect unix timestamp (to):"
3824
  msgstr "неправильная временная отметка операционной системы (до):"
3825
 
3826
- #: ../includes/mycred-functions.php:2166
3827
  msgid "Website Registration"
3828
  msgstr ""
3829
 
3830
- #: ../includes/mycred-functions.php:2167
3831
  msgid "Website Visit"
3832
  msgstr ""
3833
 
3834
- #: ../includes/mycred-functions.php:2168
 
 
 
 
 
 
 
 
3835
  msgid "Logging in"
3836
  msgstr ""
3837
 
3838
- #: ../includes/mycred-functions.php:2169
3839
  msgid "Publishing Content"
3840
  msgstr ""
3841
 
3842
- #: ../includes/mycred-functions.php:2170 ../modules/mycred-module-hooks.php:1168
3843
  msgid "Approved Comment"
3844
  msgstr "Комментарий одобрен"
3845
 
3846
- #: ../includes/mycred-functions.php:2171
3847
  msgid "Unapproved Comment"
3848
  msgstr ""
3849
 
3850
- #: ../includes/mycred-functions.php:2172
3851
  msgid "SPAM Comment"
3852
  msgstr ""
3853
 
3854
- #: ../includes/mycred-functions.php:2173
3855
  msgid "Deleted Comment"
3856
  msgstr ""
3857
 
3858
- #: ../includes/mycred-functions.php:2174
3859
  msgid "Link Click"
3860
  msgstr ""
3861
 
3862
- #: ../includes/mycred-functions.php:2175
3863
  msgid "Watching Video"
3864
  msgstr ""
3865
 
3866
- #: ../includes/mycred-functions.php:2176
3867
  msgid "Visitor Referral"
3868
  msgstr ""
3869
 
3870
- #: ../includes/mycred-functions.php:2177
3871
  msgid "Signup Referral"
3872
  msgstr ""
3873
 
3874
- #: ../includes/mycred-functions.php:2181
3875
  msgid "New Profile Update"
3876
  msgstr ""
3877
 
3878
- #: ../includes/mycred-functions.php:2182
3879
  msgid "Avatar Upload"
3880
  msgstr ""
3881
 
3882
- #: ../includes/mycred-functions.php:2183
3883
  msgid "New Friendship"
3884
  msgstr ""
3885
 
3886
- #: ../includes/mycred-functions.php:2184
3887
  msgid "Ended Friendship"
3888
  msgstr ""
3889
 
3890
- #: ../includes/mycred-functions.php:2185
3891
  msgid "New Profile Comment"
3892
  msgstr ""
3893
 
3894
- #: ../includes/mycred-functions.php:2186
3895
  msgid "Profile Comment Deletion"
3896
  msgstr ""
3897
 
3898
- #: ../includes/mycred-functions.php:2187
3899
  msgid "New Message"
3900
  msgstr ""
3901
 
3902
- #: ../includes/mycred-functions.php:2188
3903
  msgid "Sending Gift"
3904
  msgstr ""
3905
 
3906
- #: ../includes/mycred-functions.php:2189
3907
  msgid "New Group"
3908
  msgstr ""
3909
 
3910
- #: ../includes/mycred-functions.php:2190
3911
  msgid "Deleted Group"
3912
  msgstr ""
3913
 
3914
- #: ../includes/mycred-functions.php:2191
3915
  msgid "New Group Forum Topic"
3916
  msgstr ""
3917
 
3918
- #: ../includes/mycred-functions.php:2192
3919
  msgid "Edit Group Forum Topic"
3920
  msgstr ""
3921
 
3922
- #: ../includes/mycred-functions.php:2193
3923
  msgid "New Group Forum Post"
3924
  msgstr ""
3925
 
3926
- #: ../includes/mycred-functions.php:2194
3927
  msgid "Edit Group Forum Post"
3928
  msgstr ""
3929
 
3930
- #: ../includes/mycred-functions.php:2195
3931
  msgid "Joining Group"
3932
  msgstr ""
3933
 
3934
- #: ../includes/mycred-functions.php:2196
3935
  msgid "Leaving Group"
3936
  msgstr ""
3937
 
3938
- #: ../includes/mycred-functions.php:2197
3939
  msgid "New Group Avatar"
3940
  msgstr ""
3941
 
3942
- #: ../includes/mycred-functions.php:2198
3943
  msgid "New Group Comment"
3944
  msgstr ""
3945
 
3946
- #: ../includes/mycred-functions.php:2202 ../plugins/mycred-hook-buddypress-media.
3947
  #: php:166
3948
  msgid "Photo Upload"
3949
  msgstr "Загрузка фото"
3950
 
3951
- #: ../includes/mycred-functions.php:2203 ../plugins/mycred-hook-buddypress-media.
3952
  #: php:176
3953
  msgid "Video Upload"
3954
  msgstr "Загрузка фидео"
3955
 
3956
- #: ../includes/mycred-functions.php:2204 ../plugins/mycred-hook-buddypress-media.
3957
  #: php:186
3958
  msgid "Music Upload"
3959
  msgstr "Загрузка музыки"
3960
 
3961
- #: ../includes/mycred-functions.php:2208
3962
  msgid "New Link"
3963
  msgstr ""
3964
 
3965
- #: ../includes/mycred-functions.php:2209
3966
  msgid "Link Voting"
3967
  msgstr ""
3968
 
3969
- #: ../includes/mycred-functions.php:2210
3970
  msgid "Link Update"
3971
  msgstr ""
3972
 
3973
- #: ../includes/mycred-functions.php:2214
3974
  msgid "New Forum (bbPress)"
3975
  msgstr ""
3976
 
3977
- #: ../includes/mycred-functions.php:2215
3978
  msgid "New Forum Topic (bbPress)"
3979
  msgstr ""
3980
 
3981
- #: ../includes/mycred-functions.php:2216
3982
  msgid "Favorited Topic (bbPress)"
3983
  msgstr ""
3984
 
3985
- #: ../includes/mycred-functions.php:2217
3986
  msgid "New Topic Reply (bbPress)"
3987
  msgstr ""
3988
 
3989
- #: ../includes/mycred-functions.php:2221
3990
  msgid "Form Submission (Contact Form 7)"
3991
  msgstr ""
3992
 
3993
- #: ../includes/mycred-functions.php:2224
3994
  msgid "Form Submission (Gravity Form)"
3995
  msgstr ""
3996
 
3997
- #: ../includes/mycred-functions.php:2227
3998
  msgid "New Forum Topic (SimplePress)"
3999
  msgstr ""
4000
 
4001
- #: ../includes/mycred-functions.php:2228
4002
  msgid "New Forum Post (SimplePress)"
4003
  msgstr ""
4004
 
4005
- #: ../includes/mycred-functions.php:2232
4006
  msgid "Poll Voting"
4007
  msgstr ""
4008
 
4009
- #: ../includes/mycred-functions.php:2235
4010
  msgid "Sending an Invite"
4011
  msgstr ""
4012
 
4013
- #: ../includes/mycred-functions.php:2236
4014
  msgid "Accepting an Invite"
4015
  msgstr ""
4016
 
4017
- #: ../includes/mycred-functions.php:2242
4018
  msgid "Banking Payout"
4019
  msgstr ""
4020
 
4021
- #: ../includes/mycred-functions.php:2245
4022
  msgid "buyCRED Purchase (PayPal Standard)"
4023
  msgstr ""
4024
 
4025
- #: ../includes/mycred-functions.php:2246
4026
  msgid "buyCRED Purchase (Skrill)"
4027
  msgstr ""
4028
 
4029
- #: ../includes/mycred-functions.php:2247
4030
  msgid "buyCRED Purchase (Zombaio)"
4031
  msgstr ""
4032
 
4033
- #: ../includes/mycred-functions.php:2248
4034
  msgid "buyCRED Purchase (NETBilling)"
4035
  msgstr ""
4036
 
4037
- #: ../includes/mycred-functions.php:2249
4038
  msgid "buyCRED Purchase (BitPay)"
4039
  msgstr ""
4040
 
4041
- #: ../includes/mycred-functions.php:2254
4042
  msgid "Coupon Purchase"
4043
  msgstr ""
4044
 
4045
- #: ../includes/mycred-functions.php:2257
4046
  msgid "Store Purchase (WooCommerce)"
4047
  msgstr ""
4048
 
4049
- #: ../includes/mycred-functions.php:2258
4050
  msgid "Store Purchase (MarketPress)"
4051
  msgstr ""
4052
 
4053
- #: ../includes/mycred-functions.php:2259
4054
  msgid "Store Purchase (WP E-Commerce)"
4055
  msgstr ""
4056
 
4057
- #: ../includes/mycred-functions.php:2264
4058
  msgid "Event Payment (Event Espresso)"
4059
  msgstr ""
4060
 
4061
- #: ../includes/mycred-functions.php:2265
4062
  msgid "Event Sale (Event Espresso)"
4063
  msgstr ""
4064
 
4065
- #: ../includes/mycred-functions.php:2269
4066
  msgid "Event Payment (Events Manager)"
4067
  msgstr ""
4068
 
4069
- #: ../includes/mycred-functions.php:2270
4070
  msgid "Event Sale (Events Manager)"
4071
  msgstr ""
4072
 
4073
- #: ../includes/mycred-functions.php:2274
4074
  msgid "Content Purchase / Sale"
4075
  msgstr ""
4076
 
4077
- #: ../includes/mycred-functions.php:2281
4078
  msgid "Manual Adjustment by Admin"
4079
  msgstr ""
4080
 
@@ -4357,7 +4365,7 @@ msgstr "Нет доступных параметров экспорта."
4357
  msgid "Entry"
4358
  msgstr "Запись"
4359
 
4360
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:464
4361
  msgid "User Missing"
4362
  msgstr "Пользователь отсутствует"
4363
 
@@ -4579,60 +4587,60 @@ msgstr "Ошибка - Повторите попытку"
4579
  msgid "A video ID is required for this shortcode"
4580
  msgstr "Для этого короткого номера требуется ID видео"
4581
 
4582
- #: ../includes/mycred-shortcodes.php:861 ../includes/mycred-shortcodes.php:955
4583
  msgid "Point types not found."
4584
  msgstr ""
4585
 
4586
- #: ../includes/mycred-shortcodes.php:867 ../includes/mycred-shortcodes.php:875 ..
4587
- #: includes/mycred-shortcodes.php:967 ../includes/mycred-shortcodes.php:987
4588
  #, php-format
4589
  msgid "You are excluded from using %s."
4590
  msgstr ""
4591
 
4592
- #: ../includes/mycred-shortcodes.php:871 ../includes/mycred-shortcodes.php:977
4593
  msgid "Your balance is too low to use this feature."
4594
  msgstr ""
4595
 
4596
- #: ../includes/mycred-shortcodes.php:892
4597
  #, php-format
4598
  msgid "Convert <span>%s</span> to <span>%s</span>"
4599
  msgstr ""
4600
 
4601
- #: ../includes/mycred-shortcodes.php:901
4602
  #, php-format
4603
  msgid "Your current %s balance"
4604
  msgstr ""
4605
 
4606
- #: ../includes/mycred-shortcodes.php:909
4607
  #, php-format
4608
  msgid "Minimum %s"
4609
  msgstr ""
4610
 
4611
- #: ../includes/mycred-shortcodes.php:913
4612
  #, php-format
4613
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4614
  msgstr ""
4615
 
4616
- #: ../includes/mycred-shortcodes.php:919
4617
  msgid "Exchange"
4618
  msgstr ""
4619
 
4620
- #: ../includes/mycred-shortcodes.php:1000
4621
  #, php-format
4622
  msgid "You must exchange at least %s!"
4623
  msgstr ""
4624
 
4625
- #: ../includes/mycred-shortcodes.php:1022
4626
  #, php-format
4627
  msgid "Exchange from %s"
4628
  msgstr ""
4629
 
4630
- #: ../includes/mycred-shortcodes.php:1034
4631
  #, php-format
4632
  msgid "Exchange to %s"
4633
  msgstr ""
4634
 
4635
- #: ../includes/mycred-shortcodes.php:1042
4636
  #, php-format
4637
  msgid "You have successfully exchanged %s into %s."
4638
  msgstr ""
@@ -5168,10 +5176,21 @@ msgstr ""
5168
 
5169
  #: ../modules/mycred-module-hooks.php:101
5170
  #, php-format
 
 
 
 
 
 
 
 
 
 
 
5171
  msgid "%plural% for logins"
5172
  msgstr "%plural% для логинов"
5173
 
5174
- #: ../modules/mycred-module-hooks.php:102
5175
  #, php-format
5176
  msgid ""
5177
  "Award %_plural% for logging in to your website. You can also set an optional "
@@ -5180,12 +5199,12 @@ msgstr ""
5180
  "Награда %_plural% за вход в систему вашего сайта. У вас также есть "
5181
  "возможность установить ограничение по выбору."
5182
 
5183
- #: ../modules/mycred-module-hooks.php:108
5184
  #, php-format
5185
  msgid "%plural% for publishing content"
5186
  msgstr "%plural% за публикацию контента"
5187
 
5188
- #: ../modules/mycred-module-hooks.php:109
5189
  #, php-format
5190
  msgid ""
5191
  "Award %_plural% for publishing content on your website. If your custom post "
@@ -5194,27 +5213,27 @@ msgstr ""
5194
  "Награда %plural% за публикацию контента на вашем веб-сайте. Если общий вид "
5195
  "вашего поста не показывается ниже, убедитесь, что он настроен как \"Общий\"."
5196
 
5197
- #: ../modules/mycred-module-hooks.php:115
5198
  #, php-format
5199
  msgid "%plural% for comments"
5200
  msgstr "%plural% за комментарии"
5201
 
5202
- #: ../modules/mycred-module-hooks.php:115
5203
  #, php-format
5204
  msgid "%plural% for Disqus comments"
5205
  msgstr "%plural% за Disqus комментарии"
5206
 
5207
- #: ../modules/mycred-module-hooks.php:116
5208
  #, php-format
5209
  msgid "Award %_plural% for making comments."
5210
  msgstr "Награда %_plural% за комментирование."
5211
 
5212
- #: ../modules/mycred-module-hooks.php:122
5213
  #, php-format
5214
  msgid "%plural% for clicking on links"
5215
  msgstr "%plural% за нажатие на ссылки"
5216
 
5217
- #: ../modules/mycred-module-hooks.php:123
5218
  msgid ""
5219
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5220
  "shortcode."
@@ -5222,12 +5241,12 @@ msgstr ""
5222
  "Награда %_plural% для пользователей, которые нажимают на ссылки, размещенные "
5223
  "с помощью короткого кода [mycred_link]."
5224
 
5225
- #: ../modules/mycred-module-hooks.php:129
5226
  #, php-format
5227
  msgid "%plural% for viewing Videos"
5228
  msgstr "%plural% за просмотр видео"
5229
 
5230
- #: ../modules/mycred-module-hooks.php:130
5231
  msgid ""
5232
  "Award %_plural% to users who watches videos embedded using the "
5233
  "[mycred_video] shortcode."
@@ -5235,23 +5254,23 @@ msgstr ""
5235
  "Награда %_plural% для пользователей, которые смотрят видео, размещенное с "
5236
  "помощью короткого кода [mycred_video]."
5237
 
5238
- #: ../modules/mycred-module-hooks.php:136
5239
  #, php-format
5240
  msgid "%plural% for referrals"
5241
  msgstr "%plural% за направления"
5242
 
5243
- #: ../modules/mycred-module-hooks.php:137
5244
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5245
  msgstr ""
5246
  "Награда %_plural% для пользователей, которые отправляют посетителей и/или "
5247
  "подписку новых участников."
5248
 
5249
- #: ../modules/mycred-module-hooks.php:170
5250
  #, php-format
5251
  msgid "%s Hooks"
5252
  msgstr "%s Компоненты"
5253
 
5254
- #: ../modules/mycred-module-hooks.php:173
5255
  msgid ""
5256
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5257
  "depending on their actions around your website."
@@ -5259,66 +5278,96 @@ msgstr ""
5259
  "Hooks это случаи, где %_plural% вознаграждается или начисляется от "
5260
  "пользователя, в зависимости от их действий на вашем веб-сайте."
5261
 
5262
- #: ../modules/mycred-module-hooks.php:345 ../modules/mycred-module-hooks.php:439 .
5263
- #: ./modules/mycred-module-hooks.php:751 ../modules/mycred-module-hooks.php:764 ..
5264
- #: modules/mycred-module-hooks.php:800 ../modules/mycred-module-hooks.php:1180 ..
5265
- #: modules/mycred-module-hooks.php:1197 ../modules/mycred-module-hooks.php:1214 .
5266
- #: ./modules/mycred-module-hooks.php:2370 ../modules/mycred-module-hooks.php:2399
5267
- #: ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 .
5268
- #: ./plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ..
5269
- #: plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ..
5270
- #: plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ..
5271
- #: plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-
5272
- #: buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ..
5273
- #: plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-
5274
- #: buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ..
5275
- #: plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-
5276
- #: buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ..
5277
- #: plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-
5278
- #: buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ..
5279
- #: plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
5280
- #: buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-
5281
- #: hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ..
5282
- #: plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:
5283
- #: 446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-
5284
- #: buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-
5285
- #: hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ..
5286
- #: plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:
5287
- #: 978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-
5288
- #: buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ..
5289
- #: plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:
5290
- #: 1044 ../plugins/mycred-hook-contact-form7.php:141 ../plugins/mycred-hook-
5291
- #: gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.php:219 ..
5292
- #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-jetpack.php:
5293
- #: 506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-sharethis.
5294
- #: php:258 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-
5295
- #: simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ..
5296
- #: plugins/mycred-hook-simplepress.php:380
 
5297
  msgid "Log template"
5298
  msgstr "Шаблон журнала"
5299
 
5300
- #: ../modules/mycred-module-hooks.php:640 ../modules/mycred-module-hooks.php:2378
5301
- #: ../modules/mycred-module-hooks.php:2407 ../plugins/mycred-hook-invite-anyone.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5302
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5303
  msgid "Limit"
5304
  msgstr "Ограничение"
5305
 
5306
- #: ../modules/mycred-module-hooks.php:745
5307
  #, php-format
5308
  msgid "%plural% for Posts"
5309
  msgstr "%plural% для Постов"
5310
 
5311
- #: ../modules/mycred-module-hooks.php:758
5312
  #, php-format
5313
  msgid "%plural% for Pages"
5314
  msgstr "%plural% для Страниц"
5315
 
5316
- #: ../modules/mycred-module-hooks.php:794
5317
  #, php-format
5318
  msgid "%plural% for %s"
5319
  msgstr "%plural% для %s"
5320
 
5321
- #: ../modules/mycred-module-hooks.php:1166
5322
  msgid ""
5323
  "%plural% are only awarded when your website has been synced with the Disqus "
5324
  "server!"
@@ -5326,29 +5375,24 @@ msgstr ""
5326
  "%plural% награждается только в том случае, если ваш веб-сайт был "
5327
  "синхронизирован с сервером Disqus!"
5328
 
5329
- #: ../modules/mycred-module-hooks.php:1171 ../modules/mycred-module-hooks.php:
5330
- #: 1188 ../modules/mycred-module-hooks.php:1205
5331
  msgid "Comment Author"
5332
  msgstr "Комментарий автора"
5333
 
5334
- #: ../modules/mycred-module-hooks.php:1175 ../modules/mycred-module-hooks.php:
5335
- #: 1192 ../modules/mycred-module-hooks.php:1209
5336
- msgid "Content Author"
5337
- msgstr "Автор контента"
5338
-
5339
- #: ../modules/mycred-module-hooks.php:1185
5340
  msgid "Comment Marked SPAM"
5341
  msgstr "Комментарий помечен как СПАМ"
5342
 
5343
- #: ../modules/mycred-module-hooks.php:1202
5344
  msgid "Trashed / Unapproved Comments"
5345
  msgstr "Неподходящий / Неодобренный комментарий"
5346
 
5347
- #: ../modules/mycred-module-hooks.php:1222
5348
  msgid "Limit per post"
5349
  msgstr "Ограничение на одну публикацию"
5350
 
5351
- #: ../modules/mycred-module-hooks.php:1224
5352
  msgid ""
5353
  "The number of comments per post that grants %_plural% to the comment author. "
5354
  "Use zero for unlimited."
@@ -5356,17 +5400,17 @@ msgstr ""
5356
  "Количество комментариев на публикацию, за которое автор %_plural% получает "
5357
  "вознаграждение. Используйте ноль для безлимитного."
5358
 
5359
- #: ../modules/mycred-module-hooks.php:1228
5360
  msgid "Limit per day"
5361
  msgstr "Ограничение в день"
5362
 
5363
- #: ../modules/mycred-module-hooks.php:1230
5364
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5365
  msgstr ""
5366
  "Количество комментариев в день, которое вознаграждается%_plural%. "
5367
  "Используйте ноль для безлимитного."
5368
 
5369
- #: ../modules/mycred-module-hooks.php:1235
5370
  msgid ""
5371
  "%plural% is to be awarded even when comment authors reply to their own "
5372
  "comment."
@@ -5374,15 +5418,15 @@ msgstr ""
5374
  "%plural% должна быть присуждена, даже если автор комментария отвечает на "
5375
  "свой собственный комментарий."
5376
 
5377
- #: ../modules/mycred-module-hooks.php:1306
5378
  msgid "Once for each unique URL"
5379
  msgstr "Один раз для каждого уникального URL"
5380
 
5381
- #: ../modules/mycred-module-hooks.php:1307
5382
  msgid "Once for each unique link id"
5383
  msgstr "Один раз для каждого уникального id ссылки"
5384
 
5385
- #: ../modules/mycred-module-hooks.php:1500
5386
  msgid ""
5387
  "The default amount to award for clicking on links. You can override this in "
5388
  "the shortcode."
@@ -5390,16 +5434,16 @@ msgstr ""
5390
  "Сумма по умолчанию для вознаграждения за нажатие на ссылку. Вы можете "
5391
  "отменить это в коротком коде."
5392
 
5393
- #: ../modules/mycred-module-hooks.php:1507
5394
  #, php-format
5395
  msgid "Custom tags: %url%, %title% or %id%."
5396
  msgstr "Пользовательские теги: %url%, %title% или %id%."
5397
 
5398
- #: ../modules/mycred-module-hooks.php:1518 ../modules/mycred-module-hooks.php:2481
5399
  msgid "Note!"
5400
  msgstr "Внимание!"
5401
 
5402
- #: ../modules/mycred-module-hooks.php:1518
5403
  msgid ""
5404
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5405
  "generate one automatically based on the value set under href. If you are "
@@ -5411,44 +5455,44 @@ msgstr ""
5411
  "вы используйте эту функцию для того, чтобы \"поделиться\" контентом, "
5412
  "рекомендуется ограничиться ID."
5413
 
5414
- #: ../modules/mycred-module-hooks.php:1520 ../modules/mycred-module-hooks.php:1878
5415
  msgid "Available Shortcode"
5416
  msgstr "Доступный короткий код"
5417
 
5418
- #: ../modules/mycred-module-hooks.php:1842
5419
  msgid "Amount to award for viewing videos."
5420
  msgstr "Сумма вознаграждения за просмотр видео."
5421
 
5422
- #: ../modules/mycred-module-hooks.php:1852
5423
  msgid "Award Logic"
5424
  msgstr "Логика вознаграждения"
5425
 
5426
- #: ../modules/mycred-module-hooks.php:1854
5427
  #, php-format
5428
  msgid "Select when %_plural% should be awarded or deducted."
5429
  msgstr "Выбрать, когда %_plural% должны быть начислены или удержаны."
5430
 
5431
- #: ../modules/mycred-module-hooks.php:1855
5432
  msgid "Play - As soon as video starts playing."
5433
  msgstr "Play - как только видео начинает играть."
5434
 
5435
- #: ../modules/mycred-module-hooks.php:1856
5436
  msgid "Full - First when the entire video has played."
5437
  msgstr "Full - Первый, когда видео воспроизводится полностью."
5438
 
5439
- #: ../modules/mycred-module-hooks.php:1857
5440
  msgid "Interval - For each x number of seconds watched."
5441
  msgstr "Interval - Для каждой х секунды просмотра."
5442
 
5443
- #: ../modules/mycred-module-hooks.php:1862
5444
  msgid "Number of seconds"
5445
  msgstr "Число секунд"
5446
 
5447
- #: ../modules/mycred-module-hooks.php:1869
5448
  msgid "Leniency"
5449
  msgstr "Мягкость"
5450
 
5451
- #: ../modules/mycred-module-hooks.php:1871
5452
  msgid ""
5453
  "The maximum percentage a users view of a movie can differ from the actual "
5454
  "length."
@@ -5456,7 +5500,7 @@ msgstr ""
5456
  "Максимальный процент фильма, который просматривает пользователь, может "
5457
  "отличаться от настоящей длины."
5458
 
5459
- #: ../modules/mycred-module-hooks.php:1874
5460
  msgid ""
5461
  "Do not set this value to zero! A lot of thing can happen while a user "
5462
  "watches a movie and sometimes a few seconds can drop of the counter due to "
@@ -5466,75 +5510,75 @@ msgstr ""
5466
  "может произойти много вещей, а иногда несколько секунд могут упасть со "
5467
  "счетчика из-за ошибок воспроизведения или буферизации."
5468
 
5469
- #: ../modules/mycred-module-hooks.php:1942
5470
  msgid "Affiliate Program"
5471
  msgstr "Партнерская программа"
5472
 
5473
- #: ../modules/mycred-module-hooks.php:1951
5474
  msgid "Per Day"
5475
  msgstr "В день"
5476
 
5477
- #: ../modules/mycred-module-hooks.php:2063
5478
  msgid "Link"
5479
  msgstr "Ссылка"
5480
 
5481
- #: ../modules/mycred-module-hooks.php:2364
5482
  msgid "Referring Visitors"
5483
  msgstr "Направление посетителей"
5484
 
5485
- #: ../modules/mycred-module-hooks.php:2388 ../modules/mycred-module-hooks.php:2417
5486
  msgid "The number of referrals each member can make. Use zero for unlimited."
5487
  msgstr ""
5488
  "Количество направлений, которое может сделать каждый участник. Используйте "
5489
  "ноль для неограниченных."
5490
 
5491
- #: ../modules/mycred-module-hooks.php:2392 ../modules/mycred-module-hooks.php:2421
5492
  msgid "Referring Signups"
5493
  msgstr "Отправка заявлений о регистрации"
5494
 
5495
- #: ../modules/mycred-module-hooks.php:2396
5496
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5497
  msgstr "Посетители с отключенными куками не будут вознаграждены %_plural%."
5498
 
5499
- #: ../modules/mycred-module-hooks.php:2423
5500
  msgid "Registrations are disabled."
5501
  msgstr "Регистрации отключены."
5502
 
5503
- #: ../modules/mycred-module-hooks.php:2430
5504
  msgid "Referral Links"
5505
  msgstr "Ссылки направления"
5506
 
5507
- #: ../modules/mycred-module-hooks.php:2434
5508
  msgid "Assign numeric referral IDs to each user."
5509
  msgstr "Отправить ID цифровых направлений каждому пользователю."
5510
 
5511
- #: ../modules/mycred-module-hooks.php:2435 ../modules/mycred-module-hooks.php:2441
5512
  msgid "Example"
5513
  msgstr "Пример"
5514
 
5515
- #: ../modules/mycred-module-hooks.php:2440
5516
  msgid "Assign usernames as IDs for each user."
5517
  msgstr "Назначить имена пользователей как ID для каждого участника."
5518
 
5519
- #: ../modules/mycred-module-hooks.php:2444
5520
  msgid "IP Limit"
5521
  msgstr "Лимит IP"
5522
 
5523
- #: ../modules/mycred-module-hooks.php:2448
5524
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5525
  msgstr ""
5526
  "Количество случаев, каждый IP адрес вознаграждается %_plural%. Использовать "
5527
  "ноль для неограниченных."
5528
 
5529
- #: ../modules/mycred-module-hooks.php:2452 ../modules/mycred-module-hooks.php:2485
5530
  msgid "BuddyPress Profile"
5531
  msgstr "BuddyPress Профиль"
5532
 
5533
- #: ../modules/mycred-module-hooks.php:2455
5534
  msgid "Insert Link in users Profile"
5535
  msgstr "Вставить ссылку в профайл пользователя"
5536
 
5537
- #: ../modules/mycred-module-hooks.php:2456
5538
  msgid ""
5539
  "Option to inser the referral link in users profiles. Links will only be "
5540
  "visible to users viewing their own profiles or administrators."
@@ -5543,23 +5587,23 @@ msgstr ""
5543
  "видимы для пользователей, которые просматривают свои собственные профайлы "
5544
  "или администраторам."
5545
 
5546
- #: ../modules/mycred-module-hooks.php:2462
5547
  msgid "Leave empty to hide."
5548
  msgstr "Оставить пустым, чтобы спрятать."
5549
 
5550
- #: ../modules/mycred-module-hooks.php:2465
5551
  msgid "Description"
5552
  msgstr "Описание"
5553
 
5554
- #: ../modules/mycred-module-hooks.php:2466
5555
  msgid "Optional description to insert under the link."
5556
  msgstr "Описание по выбору для вставки под ссылкой."
5557
 
5558
- #: ../modules/mycred-module-hooks.php:2478
5559
  msgid "Profile Positioning"
5560
  msgstr "Расположение профайла"
5561
 
5562
- #: ../modules/mycred-module-hooks.php:2480
5563
  msgid ""
5564
  "You can move around the referral link on your users profile by changing the "
5565
  "position. Increase to move up, decrease to move down."
@@ -5567,80 +5611,80 @@ msgstr ""
5567
  "Вы можете переносить ссылку направления в вашем профайле пользователя, меняя "
5568
  "расположение. Увеличить для движения вверх, снизить для движения вниз."
5569
 
5570
- #: ../modules/mycred-module-hooks.php:2481
5571
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5572
  msgstr ""
5573
  "Вы не можете перемещать ссылку направления над \"Основными\" деталями профиля "
5574
  "пользователя!"
5575
 
5576
- #: ../modules/mycred-module-hooks.php:2487
5577
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5578
  msgstr "Для разрешения требуются Расширенные профили BuddyPress."
5579
 
5580
- #: ../modules/mycred-module-log.php:187 ../modules/mycred-module-log.php:208 ..
5581
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5582
  msgid "Access denied for this action"
5583
  msgstr "Для этого действия доступ запрещен"
5584
 
5585
- #: ../modules/mycred-module-log.php:194
5586
  msgid "Row Deleted"
5587
  msgstr "Строка удалена"
5588
 
5589
- #: ../modules/mycred-module-log.php:221
5590
  msgid "Log entry not found"
5591
  msgstr "Запись в журнале не найдена"
5592
 
5593
- #: ../modules/mycred-module-log.php:234
5594
  msgid "Entry Updated"
5595
  msgstr "Запись обновлена"
5596
 
5597
- #: ../modules/mycred-module-log.php:288 ../modules/mycred-module-settings.php:436
5598
  msgid "Entries"
5599
  msgstr "Записи"
5600
 
5601
- #: ../modules/mycred-module-log.php:303 ../modules/mycred-module-log.php:383 ..
5602
- #: modules/mycred-module-log.php:627 ../modules/mycred-module-settings.php:574
5603
  msgid "Export"
5604
  msgstr "Экспорт"
5605
 
5606
- #: ../modules/mycred-module-log.php:309
5607
  msgid "Search results for"
5608
  msgstr "Поиск результатов для "
5609
 
5610
- #: ../modules/mycred-module-log.php:377
5611
  #, php-format
5612
  msgid "%s Log"
5613
  msgstr "%s Журнал"
5614
 
5615
- #: ../modules/mycred-module-log.php:502
5616
  msgid "Edit"
5617
  msgstr "Редактировать"
5618
 
5619
- #: ../modules/mycred-module-log.php:543
5620
  msgid "Time"
5621
  msgstr "Время"
5622
 
5623
- #: ../modules/mycred-module-log.php:547
5624
  msgid "Current Log Entry"
5625
  msgstr "Текущая запись в журнале"
5626
 
5627
- #: ../modules/mycred-module-log.php:549
5628
  msgid "The current saved log entry"
5629
  msgstr "Текущая сохраненная запись в журнале. "
5630
 
5631
- #: ../modules/mycred-module-log.php:552
5632
  msgid "Adjust Log Entry"
5633
  msgstr "Редактировать запись в журнале"
5634
 
5635
- #: ../modules/mycred-module-log.php:554
5636
  msgid "The new log entry"
5637
  msgstr "Новая запись в журнале"
5638
 
5639
- #: ../modules/mycred-module-log.php:557
5640
  msgid "Update Log Entry"
5641
  msgstr "Обновить запись в журнале"
5642
 
5643
- #: ../modules/mycred-module-log.php:621
5644
  #, php-format
5645
  msgid "My %s History"
5646
  msgstr "Моя %s история"
@@ -5889,8 +5933,8 @@ msgstr "%plural% за новую тему"
5889
  msgid "Forum authors can receive %_plural% for creating new topics."
5890
  msgstr "Авторы форума могут получить %_plural% для создания новых тем."
5891
 
5892
- #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 .
5893
- #: ./plugins/mycred-hook-simplepress.php:336
5894
  #, php-format
5895
  msgid "%plural% for Topic Deletion"
5896
  msgstr "%plural% за Удаление темы"
@@ -5926,6 +5970,11 @@ msgstr "Авторы темы могут получить %_plural% за отв
5926
  msgid "Show users %_plural% balance in replies"
5927
  msgstr "Показать баланс %_plural% пользователей в ответах"
5928
 
 
 
 
 
 
5929
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5930
  msgid "BuddyPress: Gallery Actions"
5931
  msgstr "BuddyPress: Действия Галереи"
@@ -6322,19 +6371,15 @@ msgstr "Авторы тем могут получить %_plural% за публ
6322
  msgid "%plural% for Topic Post Deletion"
6323
  msgstr "%plural% за Удаление публикации в теме"
6324
 
6325
- #: ../plugins/mycred-hook-woocommerce.php:65
6326
  msgid "Reward with %plural%"
6327
  msgstr ""
6328
 
6329
- #: ../plugins/mycred-hook-woocommerce.php:70
6330
- msgid "User is excluded from this point type."
6331
- msgstr ""
6332
-
6333
- #: ../plugins/mycred-hook-woocommerce.php:199
6334
  msgid "WooCommerce Product Reviews"
6335
  msgstr ""
6336
 
6337
- #: ../plugins/mycred-hook-woocommerce.php:200
6338
  #, php-format
6339
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6340
  msgstr ""
@@ -6366,3 +6411,4 @@ msgstr "WP-Polls"
6366
  #, php-format
6367
  msgid "Awards %_plural% for users voting in polls."
6368
  msgstr "Награда %_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: 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
  "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;"
104
  msgstr "Запись в журнале обновлена"
105
 
106
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
107
+ #: notices.php:718 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
108
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
109
  msgid "Setup"
110
  msgstr "Установка"
132
  msgstr "Это средство не имеет настроек"
133
 
134
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
135
+ #: 1558
136
  msgid "No limit"
137
  msgstr "Нет ограничений"
138
 
158
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
159
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
160
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
161
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:868
162
  msgid "Select"
163
  msgstr "Выбрать"
164
 
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 "Ошибка Доступа"
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
 
532
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
533
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
534
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
535
+ #: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
536
+ #: modules/mycred-module-hooks.php:2098 ../plugins/mycred-hook-badgeOS.php:115 ..
537
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
538
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
539
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
540
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
541
+ #: php:298 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
542
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
543
  msgid "Log Template"
544
  msgstr "Шаблон Журнала"
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
 
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
 
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
 
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 "Действия"
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
 
1604
  msgstr "Применение"
1605
 
1606
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1607
+ #: transfer.php:243 ../modules/mycred-module-hooks.php:1472 ../modules/mycred-
1608
+ #: module-hooks.php:1763
1609
  msgid "Limits"
1610
  msgstr "Ограничения"
1611
 
1618
  msgstr "еще не использовано"
1619
 
1620
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1621
+ #: php:2203
1622
  msgid "Total"
1623
  msgstr "Общее "
1624
 
1798
  msgstr "Подать запрос на купон"
1799
 
1800
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1801
+ #: notices/myCRED-addon-email-notices.php:1115
1802
  msgid "Email Notice"
1803
  msgstr "Уведомление по электронной почте"
1804
 
1991
  "переопределены при редактировании электронных писем."
1992
 
1993
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1994
+ #: notices/myCRED-addon-email-notices.php:782
1995
  msgid "Email Settings"
1996
  msgstr "Настройки электронного письма"
1997
 
1998
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1999
+ #: notices/myCRED-addon-email-notices.php:905
2000
  msgid "Senders Name:"
2001
  msgstr "Имя отправителя:"
2002
 
2003
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
2004
+ #: notices/myCRED-addon-email-notices.php:907
2005
  msgid "Senders Email:"
2006
  msgstr "Письмо отправителя:"
2007
 
2025
  msgid "Ignored if HTML is not allowed in emails."
2026
  msgstr "Игнорируется, если HTML в письмах не разрешается."
2027
 
2028
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:716 ../addons/email-
2029
+ #: notices/myCRED-addon-email-notices.php:831
2030
  msgid "Email Subject"
2031
  msgstr "Тема письма"
2032
 
2033
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:717
2034
  msgid "Status"
2035
  msgstr "Статус"
2036
 
2037
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:737
2038
  msgid "Not Active"
2039
  msgstr "Не активно"
2040
 
2041
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:739
2042
  #, php-format
2043
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2044
  msgstr "Запланированный: <br /><strong>%1$s</strong>"
2045
 
2046
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:743
2047
  msgid "Active"
2048
  msgstr "Активен"
2049
 
2050
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:745
2051
  #, php-format
2052
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2053
  msgstr "Активен - Последний запуск: <br /><strong>%1$s</strong>"
2054
 
2055
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755
2056
  msgid "Email is sent when"
2057
  msgstr "Электронное письмо отправляется, когда"
2058
 
2059
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757
2060
  msgid "Missing instance for this notice!"
2061
  msgstr "Отсутствует пример для этого уведомления!"
2062
 
2063
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2064
+ #: notices/myCRED-addon-email-notices.php:768 ../addons/email-notices/myCRED-
2065
+ #: addon-email-notices.php:770
2066
  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
 
2075
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:768 ../addons/email-
2076
+ #: notices/myCRED-addon-email-notices.php:896
2077
  msgid "Administrator"
2078
  msgstr "Администратору"
2079
 
2080
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:770
2081
  msgid "Both Administrator and User"
2082
  msgstr "Администратору и Пользователю"
2083
 
2084
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
2085
  msgid "Available Template Tags"
2086
  msgstr "Доступные теги шаблона"
2087
 
2088
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:802
2089
  msgid "Email Header"
2090
  msgstr "Заголовок и-мейла"
2091
 
2092
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:862
2093
  msgid "Send this email notice when..."
2094
  msgstr "Отправить это и-мейл оповещение когда..."
2095
 
2096
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:893
2097
  msgid "Recipient:"
2098
  msgstr "Получатель:"
2099
 
2100
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:897
2101
  msgid "Both"
2102
  msgstr "Оба"
2103
 
2104
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:901 ..
2105
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2106
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2107
  #: module-settings.php:526
2108
  msgid "Label"
2109
  msgstr "Ярлык"
2110
 
2111
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2112
  msgid "Reply-To Email:"
2113
  msgstr "Ответить на и-мейл:"
2114
 
2115
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:915
2116
  msgid "Save"
2117
  msgstr "Сохранить"
2118
 
2119
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:927
2120
  msgid "CSS Styling"
2121
  msgstr "Оформление CSS"
2122
 
2123
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:943
2124
  msgid "Site Related"
2125
  msgstr "Сопутствующий сайт"
2126
 
2127
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:944
2128
  msgid "Your websites title"
2129
  msgstr "Заголовок ваших веб-сайтов"
2130
 
2131
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:945
2132
  msgid "Your websites address"
2133
  msgstr "Адрес ваших веб-сайтов"
2134
 
2135
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:946
2136
  msgid "Your websites tagline (description)"
2137
  msgstr "Подзаголовок вашего веб-сайта (описание)"
2138
 
2139
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:947
2140
  msgid "Your websites admin email"
2141
  msgstr "Электронный адрес администратора вашего веб-сайта"
2142
 
2143
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:948
2144
  msgid "Total number of blog members"
2145
  msgstr "Общее количество участников блога"
2146
 
2147
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1026 ../addons/email-
2148
+ #: notices/myCRED-addon-email-notices.php:1029 ../addons/email-notices/myCRED-
2149
+ #: addon-email-notices.php:1035
2150
  msgid "Email Notice Updated."
2151
  msgstr ""
2152
 
2153
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1031
2154
  msgid "Email Notice Activated"
2155
  msgstr "И-мейл оповещение активировано"
2156
 
2157
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1032
2158
  msgid "Email Notice Saved"
2159
  msgstr "И-мейл оповещение сохранено"
2160
 
2161
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2162
  msgid ""
2163
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2164
  "are not yet ready to use this email notice!"
2166
  "После \"публикации\" сообщение становится активным! Выберите \"Сохранить "
2167
  "Черновик\", если вы не готовы использовать это и-мейл оповещение!"
2168
 
2169
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2170
  #, php-format
2171
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2172
  msgstr "Это оповещение активизируется:<br /><strong>%1$s</strong>"
2173
 
2174
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2175
  msgid "This email notice is active."
2176
  msgstr "И-мейл извещение активно."
2177
 
2178
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1066
2179
  msgid "Settings saved."
2180
  msgstr ""
2181
 
2182
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1114
2183
  msgid "Unsubscribe"
2184
  msgstr ""
2185
 
2186
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1135
2187
  msgid "There are no email notifications yet."
2188
  msgstr ""
2189
 
2190
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1141
2191
  msgid "Save Changes"
2192
  msgstr ""
2193
 
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
  #: 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
 
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
 
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 "Удалить"
3193
  msgid "Assign Ranks to Users"
3194
  msgstr "Назначить ранги пользователям"
3195
 
3196
+ #: ../addons/ranks/includes/mycred-rank-functions.php:229
3197
  msgid "mycred_get_users_rank() : Missing required user id"
3198
  msgstr "mycred_get_users_rank() : Отсутствует необходимый id пользователя"
3199
 
3200
+ #: ../addons/ranks/includes/mycred-rank-functions.php:238
3201
  msgid "no rank"
3202
  msgstr "нет рангов"
3203
 
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
  "это не будет выполнено!"
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
 
3589
  msgid "Show users limit"
3590
  msgstr "Показать лимит пользователя"
3591
 
3592
+ #: ../addons/transfer/myCRED-addon-transfer.php:800
3593
  msgid "username"
3594
  msgstr "имя пользователя"
3595
 
3596
+ #: ../addons/transfer/myCRED-addon-transfer.php:802
3597
  msgid "email"
3598
  msgstr "email"
3599
 
3600
+ #: ../addons/transfer/myCRED-addon-transfer.php:804
3601
  #, php-format
3602
  msgid "recipients %s"
3603
  msgstr "получатели %s"
3604
 
3605
+ #: ../addons/transfer/myCRED-addon-transfer.php:877
3606
  msgid "To:"
3607
  msgstr "До:"
3608
 
3609
+ #: ../addons/transfer/myCRED-addon-transfer.php:883
3610
  msgid "Amount:"
3611
  msgstr "Сумма:"
3612
 
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
 
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
  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
 
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
 
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 ""
5176
 
5177
  #: ../modules/mycred-module-hooks.php:101
5178
  #, php-format
5179
+ msgid "%plural% for viewing content"
5180
+ msgstr ""
5181
+
5182
+ #: ../modules/mycred-module-hooks.php:102
5183
+ msgid ""
5184
+ "Award %_plural% to your users for viewing posts and / or %plural% to your "
5185
+ "authors for members viewing their content."
5186
+ msgstr ""
5187
+
5188
+ #: ../modules/mycred-module-hooks.php:108
5189
+ #, php-format
5190
  msgid "%plural% for logins"
5191
  msgstr "%plural% для логинов"
5192
 
5193
+ #: ../modules/mycred-module-hooks.php:109
5194
  #, php-format
5195
  msgid ""
5196
  "Award %_plural% for logging in to your website. You can also set an optional "
5199
  "Награда %_plural% за вход в систему вашего сайта. У вас также есть "
5200
  "возможность установить ограничение по выбору."
5201
 
5202
+ #: ../modules/mycred-module-hooks.php:115
5203
  #, php-format
5204
  msgid "%plural% for publishing content"
5205
  msgstr "%plural% за публикацию контента"
5206
 
5207
+ #: ../modules/mycred-module-hooks.php:116
5208
  #, php-format
5209
  msgid ""
5210
  "Award %_plural% for publishing content on your website. If your custom post "
5213
  "Награда %plural% за публикацию контента на вашем веб-сайте. Если общий вид "
5214
  "вашего поста не показывается ниже, убедитесь, что он настроен как \"Общий\"."
5215
 
5216
+ #: ../modules/mycred-module-hooks.php:122
5217
  #, php-format
5218
  msgid "%plural% for comments"
5219
  msgstr "%plural% за комментарии"
5220
 
5221
+ #: ../modules/mycred-module-hooks.php:122
5222
  #, php-format
5223
  msgid "%plural% for Disqus comments"
5224
  msgstr "%plural% за Disqus комментарии"
5225
 
5226
+ #: ../modules/mycred-module-hooks.php:123
5227
  #, php-format
5228
  msgid "Award %_plural% for making comments."
5229
  msgstr "Награда %_plural% за комментирование."
5230
 
5231
+ #: ../modules/mycred-module-hooks.php:129
5232
  #, php-format
5233
  msgid "%plural% for clicking on links"
5234
  msgstr "%plural% за нажатие на ссылки"
5235
 
5236
+ #: ../modules/mycred-module-hooks.php:130
5237
  msgid ""
5238
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5239
  "shortcode."
5241
  "Награда %_plural% для пользователей, которые нажимают на ссылки, размещенные "
5242
  "с помощью короткого кода [mycred_link]."
5243
 
5244
+ #: ../modules/mycred-module-hooks.php:136
5245
  #, php-format
5246
  msgid "%plural% for viewing Videos"
5247
  msgstr "%plural% за просмотр видео"
5248
 
5249
+ #: ../modules/mycred-module-hooks.php:137
5250
  msgid ""
5251
  "Award %_plural% to users who watches videos embedded using the "
5252
  "[mycred_video] shortcode."
5254
  "Награда %_plural% для пользователей, которые смотрят видео, размещенное с "
5255
  "помощью короткого кода [mycred_video]."
5256
 
5257
+ #: ../modules/mycred-module-hooks.php:143
5258
  #, php-format
5259
  msgid "%plural% for referrals"
5260
  msgstr "%plural% за направления"
5261
 
5262
+ #: ../modules/mycred-module-hooks.php:144
5263
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5264
  msgstr ""
5265
  "Награда %_plural% для пользователей, которые отправляют посетителей и/или "
5266
  "подписку новых участников."
5267
 
5268
+ #: ../modules/mycred-module-hooks.php:177
5269
  #, php-format
5270
  msgid "%s Hooks"
5271
  msgstr "%s Компоненты"
5272
 
5273
+ #: ../modules/mycred-module-hooks.php:180
5274
  msgid ""
5275
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5276
  "depending on their actions around your website."
5278
  "Hooks это случаи, где %_plural% вознаграждается или начисляется от "
5279
  "пользователя, в зависимости от их действий на вашем веб-сайте."
5280
 
5281
+ #: ../modules/mycred-module-hooks.php:352 ../modules/mycred-module-hooks.php:446 .
5282
+ #: ./modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:622 ..
5283
+ #: modules/mycred-module-hooks.php:684 ../modules/mycred-module-hooks.php:1004 ..
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.
5291
+ #: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
5292
+ #: buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ..
5293
+ #: plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-
5294
+ #: buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ..
5295
+ #: plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-
5296
+ #: buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ..
5297
+ #: plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-
5298
+ #: buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ..
5299
+ #: plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-
5300
+ #: buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ..
5301
+ #: plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:
5302
+ #: 407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-
5303
+ #: buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-
5304
+ #: hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ..
5305
+ #: plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:
5306
+ #: 939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-
5307
+ #: buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-
5308
+ #: hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ..
5309
+ #: plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:
5310
+ #: 1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-
5311
+ #: form7.php:141 ../plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-
5312
+ #: hook-invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:240 ..
5313
+ #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5314
+ #: plugins/mycred-hook-sharethis.php:258 ../plugins/mycred-hook-simplepress.php:
5315
+ #: 330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-
5316
+ #: simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
5317
  msgid "Log template"
5318
  msgstr "Шаблон журнала"
5319
 
5320
+ #: ../modules/mycred-module-hooks.php:586
5321
+ #, php-format
5322
+ msgid "%plural% for viewing Posts"
5323
+ msgstr ""
5324
+
5325
+ #: ../modules/mycred-module-hooks.php:589 ../modules/mycred-module-hooks.php:600 .
5326
+ #: ./modules/mycred-module-hooks.php:614 ../modules/mycred-module-hooks.php:625 ..
5327
+ #: modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:687
5328
+ msgid "Member"
5329
+ msgstr ""
5330
+
5331
+ #: ../modules/mycred-module-hooks.php:593 ../modules/mycred-module-hooks.php:606 .
5332
+ #: ./modules/mycred-module-hooks.php:618 ../modules/mycred-module-hooks.php:631 ..
5333
+ #: modules/mycred-module-hooks.php:680 ../modules/mycred-module-hooks.php:693 ..
5334
+ #: modules/mycred-module-hooks.php:1428 ../modules/mycred-module-hooks.php:1445 .
5335
+ #: ./modules/mycred-module-hooks.php:1462
5336
+ msgid "Content Author"
5337
+ msgstr "Автор контента"
5338
+
5339
+ #: ../modules/mycred-module-hooks.php:611
5340
+ #, php-format
5341
+ msgid "%plural% for viewing Pages"
5342
+ msgstr ""
5343
+
5344
+ #: ../modules/mycred-module-hooks.php:673
5345
+ #, php-format
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 "Ограничение"
5354
 
5355
+ #: ../modules/mycred-module-hooks.php:998
5356
  #, php-format
5357
  msgid "%plural% for Posts"
5358
  msgstr "%plural% для Постов"
5359
 
5360
+ #: ../modules/mycred-module-hooks.php:1011
5361
  #, php-format
5362
  msgid "%plural% for Pages"
5363
  msgstr "%plural% для Страниц"
5364
 
5365
+ #: ../modules/mycred-module-hooks.php:1047
5366
  #, php-format
5367
  msgid "%plural% for %s"
5368
  msgstr "%plural% для %s"
5369
 
5370
+ #: ../modules/mycred-module-hooks.php:1419
5371
  msgid ""
5372
  "%plural% are only awarded when your website has been synced with the Disqus "
5373
  "server!"
5375
  "%plural% награждается только в том случае, если ваш веб-сайт был "
5376
  "синхронизирован с сервером Disqus!"
5377
 
5378
+ #: ../modules/mycred-module-hooks.php:1424 ../modules/mycred-module-hooks.php:
5379
+ #: 1441 ../modules/mycred-module-hooks.php:1458
5380
  msgid "Comment Author"
5381
  msgstr "Комментарий автора"
5382
 
5383
+ #: ../modules/mycred-module-hooks.php:1438
 
 
 
 
 
5384
  msgid "Comment Marked SPAM"
5385
  msgstr "Комментарий помечен как СПАМ"
5386
 
5387
+ #: ../modules/mycred-module-hooks.php:1455
5388
  msgid "Trashed / Unapproved Comments"
5389
  msgstr "Неподходящий / Неодобренный комментарий"
5390
 
5391
+ #: ../modules/mycred-module-hooks.php:1475
5392
  msgid "Limit per post"
5393
  msgstr "Ограничение на одну публикацию"
5394
 
5395
+ #: ../modules/mycred-module-hooks.php:1477
5396
  msgid ""
5397
  "The number of comments per post that grants %_plural% to the comment author. "
5398
  "Use zero for unlimited."
5400
  "Количество комментариев на публикацию, за которое автор %_plural% получает "
5401
  "вознаграждение. Используйте ноль для безлимитного."
5402
 
5403
+ #: ../modules/mycred-module-hooks.php:1481
5404
  msgid "Limit per day"
5405
  msgstr "Ограничение в день"
5406
 
5407
+ #: ../modules/mycred-module-hooks.php:1483
5408
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5409
  msgstr ""
5410
  "Количество комментариев в день, которое вознаграждается%_plural%. "
5411
  "Используйте ноль для безлимитного."
5412
 
5413
+ #: ../modules/mycred-module-hooks.php:1488
5414
  msgid ""
5415
  "%plural% is to be awarded even when comment authors reply to their own "
5416
  "comment."
5418
  "%plural% должна быть присуждена, даже если автор комментария отвечает на "
5419
  "свой собственный комментарий."
5420
 
5421
+ #: ../modules/mycred-module-hooks.php:1559
5422
  msgid "Once for each unique URL"
5423
  msgstr "Один раз для каждого уникального URL"
5424
 
5425
+ #: ../modules/mycred-module-hooks.php:1560
5426
  msgid "Once for each unique link id"
5427
  msgstr "Один раз для каждого уникального id ссылки"
5428
 
5429
+ #: ../modules/mycred-module-hooks.php:1753
5430
  msgid ""
5431
  "The default amount to award for clicking on links. You can override this in "
5432
  "the shortcode."
5434
  "Сумма по умолчанию для вознаграждения за нажатие на ссылку. Вы можете "
5435
  "отменить это в коротком коде."
5436
 
5437
+ #: ../modules/mycred-module-hooks.php:1760
5438
  #, php-format
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
 
5446
+ #: ../modules/mycred-module-hooks.php:1771
5447
  msgid ""
5448
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5449
  "generate one automatically based on the value set under href. If you are "
5455
  "вы используйте эту функцию для того, чтобы \"поделиться\" контентом, "
5456
  "рекомендуется ограничиться ID."
5457
 
5458
+ #: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2131
5459
  msgid "Available Shortcode"
5460
  msgstr "Доступный короткий код"
5461
 
5462
+ #: ../modules/mycred-module-hooks.php:2095
5463
  msgid "Amount to award for viewing videos."
5464
  msgstr "Сумма вознаграждения за просмотр видео."
5465
 
5466
+ #: ../modules/mycred-module-hooks.php:2105
5467
  msgid "Award Logic"
5468
  msgstr "Логика вознаграждения"
5469
 
5470
+ #: ../modules/mycred-module-hooks.php:2107
5471
  #, php-format
5472
  msgid "Select when %_plural% should be awarded or deducted."
5473
  msgstr "Выбрать, когда %_plural% должны быть начислены или удержаны."
5474
 
5475
+ #: ../modules/mycred-module-hooks.php:2108
5476
  msgid "Play - As soon as video starts playing."
5477
  msgstr "Play - как только видео начинает играть."
5478
 
5479
+ #: ../modules/mycred-module-hooks.php:2109
5480
  msgid "Full - First when the entire video has played."
5481
  msgstr "Full - Первый, когда видео воспроизводится полностью."
5482
 
5483
+ #: ../modules/mycred-module-hooks.php:2110
5484
  msgid "Interval - For each x number of seconds watched."
5485
  msgstr "Interval - Для каждой х секунды просмотра."
5486
 
5487
+ #: ../modules/mycred-module-hooks.php:2115
5488
  msgid "Number of seconds"
5489
  msgstr "Число секунд"
5490
 
5491
+ #: ../modules/mycred-module-hooks.php:2122
5492
  msgid "Leniency"
5493
  msgstr "Мягкость"
5494
 
5495
+ #: ../modules/mycred-module-hooks.php:2124
5496
  msgid ""
5497
  "The maximum percentage a users view of a movie can differ from the actual "
5498
  "length."
5500
  "Максимальный процент фильма, который просматривает пользователь, может "
5501
  "отличаться от настоящей длины."
5502
 
5503
+ #: ../modules/mycred-module-hooks.php:2127
5504
  msgid ""
5505
  "Do not set this value to zero! A lot of thing can happen while a user "
5506
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5510
  "может произойти много вещей, а иногда несколько секунд могут упасть со "
5511
  "счетчика из-за ошибок воспроизведения или буферизации."
5512
 
5513
+ #: ../modules/mycred-module-hooks.php:2195
5514
  msgid "Affiliate Program"
5515
  msgstr "Партнерская программа"
5516
 
5517
+ #: ../modules/mycred-module-hooks.php:2204
5518
  msgid "Per Day"
5519
  msgstr "В день"
5520
 
5521
+ #: ../modules/mycred-module-hooks.php:2316
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
  "видимы для пользователей, которые просматривают свои собственные профайлы "
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
  "Вы можете переносить ссылку направления в вашем профайле пользователя, меняя "
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
 
5624
+ #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
5625
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5626
  msgid "Access denied for this action"
5627
  msgstr "Для этого действия доступ запрещен"
5628
 
5629
+ #: ../modules/mycred-module-log.php:196
5630
  msgid "Row Deleted"
5631
  msgstr "Строка удалена"
5632
 
5633
+ #: ../modules/mycred-module-log.php:223
5634
  msgid "Log entry not found"
5635
  msgstr "Запись в журнале не найдена"
5636
 
5637
+ #: ../modules/mycred-module-log.php:236
5638
  msgid "Entry Updated"
5639
  msgstr "Запись обновлена"
5640
 
5641
+ #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:436
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
 
5650
+ #: ../modules/mycred-module-log.php:311
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 история"
5933
  msgid "Forum authors can receive %_plural% for creating new topics."
5934
  msgstr "Авторы форума могут получить %_plural% для создания новых тем."
5935
 
5936
+ #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-simplepress.php:
5937
+ #: 336
5938
  #, php-format
5939
  msgid "%plural% for Topic Deletion"
5940
  msgstr "%plural% за Удаление темы"
5970
  msgid "Show users %_plural% balance in replies"
5971
  msgstr "Показать баланс %_plural% пользователей в ответах"
5972
 
5973
+ #: ../plugins/mycred-hook-bbPress.php:568
5974
+ #, php-format
5975
+ msgid "%plural% for Reply Deletion"
5976
+ msgstr ""
5977
+
5978
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5979
  msgid "BuddyPress: Gallery Actions"
5980
  msgstr "BuddyPress: Действия Галереи"
6371
  msgid "%plural% for Topic Post Deletion"
6372
  msgstr "%plural% за Удаление публикации в теме"
6373
 
6374
+ #: ../plugins/mycred-hook-woocommerce.php:67
6375
  msgid "Reward with %plural%"
6376
  msgstr ""
6377
 
6378
+ #: ../plugins/mycred-hook-woocommerce.php:197
 
 
 
 
6379
  msgid "WooCommerce Product Reviews"
6380
  msgstr ""
6381
 
6382
+ #: ../plugins/mycred-hook-woocommerce.php:198
6383
  #, php-format
6384
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6385
  msgstr ""
6411
  #, php-format
6412
  msgid "Awards %_plural% for users voting in polls."
6413
  msgstr "Награда %_plural% для пользователей, которые принимают участие в опросах."
6414
+ �ользователей, которые принимают участие в опросах."
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: Sat Jul 26 2014 20:57:35 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,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"
@@ -94,7 +94,7 @@ msgid "Log entry updated"
94
  msgstr "Log inlägg updaterad"
95
 
96
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
97
- #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
98
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
99
  msgid "Setup"
100
  msgstr "Setup"
@@ -122,7 +122,7 @@ msgid "This Hook has no settings"
122
  msgstr "Denna Krok har inga inställningar"
123
 
124
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
125
- #: 1305
126
  msgid "No limit"
127
  msgstr "Ingen gräns"
128
 
@@ -148,7 +148,7 @@ msgstr "En gång om dagen (börjar om efter midnatt)"
148
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
149
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
150
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
151
- #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
152
  msgid "Select"
153
  msgstr "Välj"
154
 
@@ -413,8 +413,8 @@ msgstr ""
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:164 ..
417
- #: modules/mycred-module-log.php:324 ../modules/mycred-module-log.php:577 ..
418
  #: modules/mycred-module-settings.php:312
419
  msgid "Access Denied"
420
  msgstr "Nekad Åtkomst"
@@ -438,12 +438,12 @@ 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:189
442
  msgid "Enable"
443
  msgstr "On"
444
 
445
  #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
446
- #: php:204
447
  msgid "Update Changes"
448
  msgstr "Spara"
449
 
@@ -518,13 +518,13 @@ msgstr "Minimum saldo för att ränta skall gälla."
518
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
519
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
520
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
521
- #: modules/mycred-module-hooks.php:633 ../modules/mycred-module-hooks.php:1503 ..
522
- #: modules/mycred-module-hooks.php:1845 ../plugins/mycred-hook-badgeOS.php:115 ..
523
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
524
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
525
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
526
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
527
- #: php:300 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
528
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
529
  msgid "Log Template"
530
  msgstr "Log Mall"
@@ -561,8 +561,8 @@ msgstr "Betala Användare"
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:769 ..
565
- #: includes/mycred-shortcodes.php:907
566
  msgid "Amount"
567
  msgstr "Summa"
568
 
@@ -572,7 +572,7 @@ 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:1860
576
  msgid "Interval"
577
  msgstr "Tal"
578
 
@@ -787,7 +787,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:2495
791
  msgid "Available Shortcodes"
792
  msgstr ""
793
 
@@ -945,7 +945,7 @@ 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:370 ../modules/mycred-
949
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
950
  msgid "Actions"
951
  msgstr "Åtgärder"
@@ -1381,7 +1381,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:2460
1385
  msgid "Title"
1386
  msgstr "Titel"
1387
 
@@ -1567,8 +1567,8 @@ msgid "Usage"
1567
  msgstr "Användning"
1568
 
1569
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1570
- #: transfer.php:243 ../modules/mycred-module-hooks.php:1219 ../modules/mycred-
1571
- #: module-hooks.php:1510
1572
  msgid "Limits"
1573
  msgstr "Begränsning"
1574
 
@@ -1581,7 +1581,7 @@ msgid "not yet used"
1581
  msgstr "oanvänd"
1582
 
1583
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1584
- #: php:1950
1585
  msgid "Total"
1586
  msgstr "Total"
1587
 
@@ -1751,7 +1751,7 @@ msgid "Apply Coupon"
1751
  msgstr "Validera"
1752
 
1753
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1754
- #: notices/myCRED-addon-email-notices.php:1104
1755
  msgid "Email Notice"
1756
  msgstr "E-postmeddelande"
1757
 
@@ -1942,17 +1942,17 @@ msgstr ""
1942
  "åsidosättas när du redigerar postmeddelanden."
1943
 
1944
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1945
- #: notices/myCRED-addon-email-notices.php:771
1946
  msgid "Email Settings"
1947
  msgstr "E-mail inställningar"
1948
 
1949
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1950
- #: notices/myCRED-addon-email-notices.php:894
1951
  msgid "Senders Name:"
1952
  msgstr "Avsändarens Namn:"
1953
 
1954
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1955
- #: notices/myCRED-addon-email-notices.php:896
1956
  msgid "Senders Email:"
1957
  msgstr "Avsändarens e-postadress"
1958
 
@@ -1976,140 +1976,140 @@ msgstr "Standrad e-post css design"
1976
  msgid "Ignored if HTML is not allowed in emails."
1977
  msgstr "Ignoreras om e-post inte använder HTML formatering."
1978
 
1979
- #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
1980
- #: notices/myCRED-addon-email-notices.php:820
1981
  msgid "Email Subject"
1982
  msgstr "Ämne"
1983
 
1984
- #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1985
  msgid "Status"
1986
  msgstr "Status"
1987
 
1988
- #: ../addons/email-notices/myCRED-addon-email-notices.php:726
1989
  msgid "Not Active"
1990
  msgstr "Inte Aktiv"
1991
 
1992
- #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1993
  #, php-format
1994
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1995
  msgstr "Planerad:<br /><strong>%1%s</strong>"
1996
 
1997
- #: ../addons/email-notices/myCRED-addon-email-notices.php:732
1998
  msgid "Active"
1999
  msgstr "Aktiv"
2000
 
2001
- #: ../addons/email-notices/myCRED-addon-email-notices.php:734
2002
  #, php-format
2003
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2004
  msgstr "Aktiv - Sist kört:<br /><strong>%1$s</strong>"
2005
 
2006
- #: ../addons/email-notices/myCRED-addon-email-notices.php:744
2007
  msgid "Email is sent when"
2008
  msgstr "E-post skickas när"
2009
 
2010
- #: ../addons/email-notices/myCRED-addon-email-notices.php:746
2011
  msgid "Missing instance for this notice!"
2012
  msgstr "E-post meddelandet saknar inställningar för när e-post skall skickas!"
2013
 
2014
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
2015
- #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
2016
- #: addon-email-notices.php:759
2017
  msgid "Sent To"
2018
  msgstr "Skicka till"
2019
 
2020
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
2021
- #: notices/myCRED-addon-email-notices.php:884 ../includes/mycred-admin.php:764 ..
2022
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:542
2023
  msgid "User"
2024
  msgstr "Användare"
2025
 
2026
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
2027
- #: notices/myCRED-addon-email-notices.php:885
2028
  msgid "Administrator"
2029
  msgstr "Administratörer"
2030
 
2031
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
2032
  msgid "Both Administrator and User"
2033
  msgstr "Både Administratörer och Användare"
2034
 
2035
- #: ../addons/email-notices/myCRED-addon-email-notices.php:780
2036
  msgid "Available Template Tags"
2037
  msgstr "Valbara Template Tags"
2038
 
2039
- #: ../addons/email-notices/myCRED-addon-email-notices.php:791
2040
  msgid "Email Header"
2041
  msgstr "E-post header"
2042
 
2043
- #: ../addons/email-notices/myCRED-addon-email-notices.php:851
2044
  msgid "Send this email notice when..."
2045
  msgstr "Skicka e-post när ..."
2046
 
2047
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
2048
  msgid "Recipient:"
2049
  msgstr "Mottagare"
2050
 
2051
- #: ../addons/email-notices/myCRED-addon-email-notices.php:886
2052
  msgid "Both"
2053
  msgstr "Båda"
2054
 
2055
- #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
2056
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2057
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2058
  #: module-settings.php:526
2059
  msgid "Label"
2060
  msgstr "Titel"
2061
 
2062
- #: ../addons/email-notices/myCRED-addon-email-notices.php:898
2063
  msgid "Reply-To Email:"
2064
  msgstr "Svars e-postadress:"
2065
 
2066
- #: ../addons/email-notices/myCRED-addon-email-notices.php:904
2067
  msgid "Save"
2068
  msgstr "Spara"
2069
 
2070
- #: ../addons/email-notices/myCRED-addon-email-notices.php:916
2071
  msgid "CSS Styling"
2072
  msgstr "CSS design"
2073
 
2074
- #: ../addons/email-notices/myCRED-addon-email-notices.php:932
2075
  msgid "Site Related"
2076
  msgstr "Hemsida relaterat"
2077
 
2078
- #: ../addons/email-notices/myCRED-addon-email-notices.php:933
2079
  msgid "Your websites title"
2080
  msgstr "Din hemsidas titel"
2081
 
2082
- #: ../addons/email-notices/myCRED-addon-email-notices.php:934
2083
  msgid "Your websites address"
2084
  msgstr "Din hemsidas URL adress"
2085
 
2086
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
2087
  msgid "Your websites tagline (description)"
2088
  msgstr "Din hemsidas beskrivning"
2089
 
2090
- #: ../addons/email-notices/myCRED-addon-email-notices.php:936
2091
  msgid "Your websites admin email"
2092
  msgstr "Din hemsidas administratör e-postadress"
2093
 
2094
- #: ../addons/email-notices/myCRED-addon-email-notices.php:937
2095
  msgid "Total number of blog members"
2096
  msgstr "Total antal användare på hemsidan"
2097
 
2098
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
2099
- #: notices/myCRED-addon-email-notices.php:1018 ../addons/email-notices/myCRED-
2100
- #: addon-email-notices.php:1024
2101
  msgid "Email Notice Updated."
2102
  msgstr ""
2103
 
2104
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2105
  msgid "Email Notice Activated"
2106
  msgstr "E-post meddelande aktiverad"
2107
 
2108
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2109
  msgid "Email Notice Saved"
2110
  msgstr "E-post meddelande inställningar updaterade"
2111
 
2112
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1040
2113
  msgid ""
2114
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2115
  "are not yet ready to use this email notice!"
@@ -2117,35 +2117,35 @@ msgstr ""
2117
  "När ett e-post meddelande blir \"publicerad\" så börjar den användas med det "
2118
  "samma! Spara som kladd om du inte vill använda meddelandet just nu."
2119
 
2120
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1042
2121
  #, php-format
2122
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2123
  msgstr "E-post meddelandet aktiveras:<br /><stong>%1$s</strong>"
2124
 
2125
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1044
2126
  msgid "This email notice is active."
2127
  msgstr "Detta e-post meddelande är inte aktivt."
2128
 
2129
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2130
  msgid "Settings saved."
2131
  msgstr ""
2132
 
2133
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2134
  msgid "Unsubscribe"
2135
  msgstr ""
2136
 
2137
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1124
2138
  msgid "There are no email notifications yet."
2139
  msgstr ""
2140
 
2141
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1130
2142
  msgid "Save Changes"
2143
  msgstr ""
2144
 
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:765
2149
  msgid "Current Balance"
2150
  msgstr "Nuvarande Saldo"
2151
 
@@ -2264,7 +2264,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:912
2268
  msgid "Exchange Rate"
2269
  msgstr "Växlings kurs"
2270
 
@@ -2608,7 +2608,7 @@ 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:770
2612
  msgid "Log Entry"
2613
  msgstr "Log Inlägg"
2614
 
@@ -2691,7 +2691,7 @@ msgid "Reject"
2691
  msgstr "Avvisa"
2692
 
2693
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2694
- #: modules/mycred-module-log.php:502 ../modules/mycred-module-settings.php:488 ..
2695
  #: modules/mycred-module-settings.php:507
2696
  msgid "Delete"
2697
  msgstr "Radera"
@@ -3122,11 +3122,11 @@ msgstr "Radera alla ranger"
3122
  msgid "Assign Ranks to Users"
3123
  msgstr "Rangordna Användare"
3124
 
3125
- #: ../addons/ranks/includes/mycred-rank-functions.php:197
3126
  msgid "mycred_get_users_rank() : Missing required user id"
3127
  msgstr "mycred_get_users_rank(): Användar ID saknas"
3128
 
3129
- #: ../addons/ranks/includes/mycred-rank-functions.php:207
3130
  msgid "no rank"
3131
  msgstr "ingen rang"
3132
 
@@ -3305,7 +3305,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:2277
3309
  msgid "Transfer"
3310
  msgstr ""
3311
 
@@ -3340,7 +3340,7 @@ msgid ""
3340
  msgstr ""
3341
 
3342
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3343
- #: php:1009
3344
  msgid "Insufficient Funds. Please try a lower amount."
3345
  msgstr ""
3346
 
@@ -3494,24 +3494,24 @@ msgstr ""
3494
  msgid "Show users limit"
3495
  msgstr ""
3496
 
3497
- #: ../addons/transfer/myCRED-addon-transfer.php:798
3498
  msgid "username"
3499
  msgstr ""
3500
 
3501
- #: ../addons/transfer/myCRED-addon-transfer.php:800
3502
  msgid "email"
3503
  msgstr ""
3504
 
3505
- #: ../addons/transfer/myCRED-addon-transfer.php:802
3506
  #, php-format
3507
  msgid "recipients %s"
3508
  msgstr ""
3509
 
3510
- #: ../addons/transfer/myCRED-addon-transfer.php:875
3511
  msgid "To:"
3512
  msgstr ""
3513
 
3514
- #: ../addons/transfer/myCRED-addon-transfer.php:881
3515
  msgid "Amount:"
3516
  msgstr ""
3517
 
@@ -3563,8 +3563,8 @@ msgstr ""
3563
  msgid "Total: %s"
3564
  msgstr ""
3565
 
3566
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:252 ..
3567
- #: modules/mycred-module-log.php:253
3568
  msgid "History"
3569
  msgstr ""
3570
 
@@ -3636,15 +3636,15 @@ msgstr ""
3636
  msgid "%singular% balance"
3637
  msgstr ""
3638
 
3639
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:771
3640
  msgid "Update Balance"
3641
  msgstr ""
3642
 
3643
- #: ../includes/mycred-admin.php:763
3644
  msgid "ID"
3645
  msgstr ""
3646
 
3647
- #: ../includes/mycred-admin.php:769
3648
  msgid "A positive or negative value"
3649
  msgstr ""
3650
 
@@ -3696,290 +3696,298 @@ msgstr ""
3696
  msgid "Available Template Tags:"
3697
  msgstr ""
3698
 
3699
- #: ../includes/mycred-functions.php:1643
3700
  msgid "Entire Log"
3701
  msgstr ""
3702
 
3703
- #: ../includes/mycred-functions.php:1648 ../includes/mycred-functions.php:1649
3704
  msgid "Displayed Rows"
3705
  msgstr ""
3706
 
3707
- #: ../includes/mycred-functions.php:1653
3708
  msgid "Search Results"
3709
  msgstr ""
3710
 
3711
- #: ../includes/mycred-functions.php:1654
3712
  msgid "My Entire Log"
3713
  msgstr ""
3714
 
3715
- #: ../includes/mycred-functions.php:1774
3716
  msgid "ref empty"
3717
  msgstr ""
3718
 
3719
- #: ../includes/mycred-functions.php:1782
3720
  msgid "incorrect user id format"
3721
  msgstr ""
3722
 
3723
- #: ../includes/mycred-functions.php:1795
3724
  msgid "incorrect unix timestamp (from):"
3725
  msgstr ""
3726
 
3727
- #: ../includes/mycred-functions.php:1804
3728
  msgid "incorrect unix timestamp (to):"
3729
  msgstr ""
3730
 
3731
- #: ../includes/mycred-functions.php:2166
3732
  msgid "Website Registration"
3733
  msgstr ""
3734
 
3735
- #: ../includes/mycred-functions.php:2167
3736
  msgid "Website Visit"
3737
  msgstr ""
3738
 
3739
- #: ../includes/mycred-functions.php:2168
 
 
 
 
 
 
 
 
3740
  msgid "Logging in"
3741
  msgstr ""
3742
 
3743
- #: ../includes/mycred-functions.php:2169
3744
  msgid "Publishing Content"
3745
  msgstr ""
3746
 
3747
- #: ../includes/mycred-functions.php:2170 ../modules/mycred-module-hooks.php:1168
3748
  msgid "Approved Comment"
3749
  msgstr ""
3750
 
3751
- #: ../includes/mycred-functions.php:2171
3752
  msgid "Unapproved Comment"
3753
  msgstr ""
3754
 
3755
- #: ../includes/mycred-functions.php:2172
3756
  msgid "SPAM Comment"
3757
  msgstr ""
3758
 
3759
- #: ../includes/mycred-functions.php:2173
3760
  msgid "Deleted Comment"
3761
  msgstr ""
3762
 
3763
- #: ../includes/mycred-functions.php:2174
3764
  msgid "Link Click"
3765
  msgstr ""
3766
 
3767
- #: ../includes/mycred-functions.php:2175
3768
  msgid "Watching Video"
3769
  msgstr ""
3770
 
3771
- #: ../includes/mycred-functions.php:2176
3772
  msgid "Visitor Referral"
3773
  msgstr ""
3774
 
3775
- #: ../includes/mycred-functions.php:2177
3776
  msgid "Signup Referral"
3777
  msgstr ""
3778
 
3779
- #: ../includes/mycred-functions.php:2181
3780
  msgid "New Profile Update"
3781
  msgstr ""
3782
 
3783
- #: ../includes/mycred-functions.php:2182
3784
  msgid "Avatar Upload"
3785
  msgstr ""
3786
 
3787
- #: ../includes/mycred-functions.php:2183
3788
  msgid "New Friendship"
3789
  msgstr ""
3790
 
3791
- #: ../includes/mycred-functions.php:2184
3792
  msgid "Ended Friendship"
3793
  msgstr ""
3794
 
3795
- #: ../includes/mycred-functions.php:2185
3796
  msgid "New Profile Comment"
3797
  msgstr ""
3798
 
3799
- #: ../includes/mycred-functions.php:2186
3800
  msgid "Profile Comment Deletion"
3801
  msgstr ""
3802
 
3803
- #: ../includes/mycred-functions.php:2187
3804
  msgid "New Message"
3805
  msgstr ""
3806
 
3807
- #: ../includes/mycred-functions.php:2188
3808
  msgid "Sending Gift"
3809
  msgstr ""
3810
 
3811
- #: ../includes/mycred-functions.php:2189
3812
  msgid "New Group"
3813
  msgstr ""
3814
 
3815
- #: ../includes/mycred-functions.php:2190
3816
  msgid "Deleted Group"
3817
  msgstr ""
3818
 
3819
- #: ../includes/mycred-functions.php:2191
3820
  msgid "New Group Forum Topic"
3821
  msgstr ""
3822
 
3823
- #: ../includes/mycred-functions.php:2192
3824
  msgid "Edit Group Forum Topic"
3825
  msgstr ""
3826
 
3827
- #: ../includes/mycred-functions.php:2193
3828
  msgid "New Group Forum Post"
3829
  msgstr ""
3830
 
3831
- #: ../includes/mycred-functions.php:2194
3832
  msgid "Edit Group Forum Post"
3833
  msgstr ""
3834
 
3835
- #: ../includes/mycred-functions.php:2195
3836
  msgid "Joining Group"
3837
  msgstr ""
3838
 
3839
- #: ../includes/mycred-functions.php:2196
3840
  msgid "Leaving Group"
3841
  msgstr ""
3842
 
3843
- #: ../includes/mycred-functions.php:2197
3844
  msgid "New Group Avatar"
3845
  msgstr ""
3846
 
3847
- #: ../includes/mycred-functions.php:2198
3848
  msgid "New Group Comment"
3849
  msgstr ""
3850
 
3851
- #: ../includes/mycred-functions.php:2202 ../plugins/mycred-hook-buddypress-media.
3852
  #: php:166
3853
  msgid "Photo Upload"
3854
  msgstr ""
3855
 
3856
- #: ../includes/mycred-functions.php:2203 ../plugins/mycred-hook-buddypress-media.
3857
  #: php:176
3858
  msgid "Video Upload"
3859
  msgstr ""
3860
 
3861
- #: ../includes/mycred-functions.php:2204 ../plugins/mycred-hook-buddypress-media.
3862
  #: php:186
3863
  msgid "Music Upload"
3864
  msgstr ""
3865
 
3866
- #: ../includes/mycred-functions.php:2208
3867
  msgid "New Link"
3868
  msgstr ""
3869
 
3870
- #: ../includes/mycred-functions.php:2209
3871
  msgid "Link Voting"
3872
  msgstr ""
3873
 
3874
- #: ../includes/mycred-functions.php:2210
3875
  msgid "Link Update"
3876
  msgstr ""
3877
 
3878
- #: ../includes/mycred-functions.php:2214
3879
  msgid "New Forum (bbPress)"
3880
  msgstr ""
3881
 
3882
- #: ../includes/mycred-functions.php:2215
3883
  msgid "New Forum Topic (bbPress)"
3884
  msgstr ""
3885
 
3886
- #: ../includes/mycred-functions.php:2216
3887
  msgid "Favorited Topic (bbPress)"
3888
  msgstr ""
3889
 
3890
- #: ../includes/mycred-functions.php:2217
3891
  msgid "New Topic Reply (bbPress)"
3892
  msgstr ""
3893
 
3894
- #: ../includes/mycred-functions.php:2221
3895
  msgid "Form Submission (Contact Form 7)"
3896
  msgstr ""
3897
 
3898
- #: ../includes/mycred-functions.php:2224
3899
  msgid "Form Submission (Gravity Form)"
3900
  msgstr ""
3901
 
3902
- #: ../includes/mycred-functions.php:2227
3903
  msgid "New Forum Topic (SimplePress)"
3904
  msgstr ""
3905
 
3906
- #: ../includes/mycred-functions.php:2228
3907
  msgid "New Forum Post (SimplePress)"
3908
  msgstr ""
3909
 
3910
- #: ../includes/mycred-functions.php:2232
3911
  msgid "Poll Voting"
3912
  msgstr ""
3913
 
3914
- #: ../includes/mycred-functions.php:2235
3915
  msgid "Sending an Invite"
3916
  msgstr ""
3917
 
3918
- #: ../includes/mycred-functions.php:2236
3919
  msgid "Accepting an Invite"
3920
  msgstr ""
3921
 
3922
- #: ../includes/mycred-functions.php:2242
3923
  msgid "Banking Payout"
3924
  msgstr ""
3925
 
3926
- #: ../includes/mycred-functions.php:2245
3927
  msgid "buyCRED Purchase (PayPal Standard)"
3928
  msgstr ""
3929
 
3930
- #: ../includes/mycred-functions.php:2246
3931
  msgid "buyCRED Purchase (Skrill)"
3932
  msgstr ""
3933
 
3934
- #: ../includes/mycred-functions.php:2247
3935
  msgid "buyCRED Purchase (Zombaio)"
3936
  msgstr ""
3937
 
3938
- #: ../includes/mycred-functions.php:2248
3939
  msgid "buyCRED Purchase (NETBilling)"
3940
  msgstr ""
3941
 
3942
- #: ../includes/mycred-functions.php:2249
3943
  msgid "buyCRED Purchase (BitPay)"
3944
  msgstr ""
3945
 
3946
- #: ../includes/mycred-functions.php:2254
3947
  msgid "Coupon Purchase"
3948
  msgstr ""
3949
 
3950
- #: ../includes/mycred-functions.php:2257
3951
  msgid "Store Purchase (WooCommerce)"
3952
  msgstr ""
3953
 
3954
- #: ../includes/mycred-functions.php:2258
3955
  msgid "Store Purchase (MarketPress)"
3956
  msgstr ""
3957
 
3958
- #: ../includes/mycred-functions.php:2259
3959
  msgid "Store Purchase (WP E-Commerce)"
3960
  msgstr ""
3961
 
3962
- #: ../includes/mycred-functions.php:2264
3963
  msgid "Event Payment (Event Espresso)"
3964
  msgstr ""
3965
 
3966
- #: ../includes/mycred-functions.php:2265
3967
  msgid "Event Sale (Event Espresso)"
3968
  msgstr ""
3969
 
3970
- #: ../includes/mycred-functions.php:2269
3971
  msgid "Event Payment (Events Manager)"
3972
  msgstr ""
3973
 
3974
- #: ../includes/mycred-functions.php:2270
3975
  msgid "Event Sale (Events Manager)"
3976
  msgstr ""
3977
 
3978
- #: ../includes/mycred-functions.php:2274
3979
  msgid "Content Purchase / Sale"
3980
  msgstr ""
3981
 
3982
- #: ../includes/mycred-functions.php:2281
3983
  msgid "Manual Adjustment by Admin"
3984
  msgstr ""
3985
 
@@ -4248,7 +4256,7 @@ msgstr ""
4248
  msgid "Entry"
4249
  msgstr ""
4250
 
4251
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:464
4252
  msgid "User Missing"
4253
  msgstr "Användare saknas"
4254
 
@@ -4460,60 +4468,60 @@ msgstr ""
4460
  msgid "A video ID is required for this shortcode"
4461
  msgstr ""
4462
 
4463
- #: ../includes/mycred-shortcodes.php:861 ../includes/mycred-shortcodes.php:955
4464
  msgid "Point types not found."
4465
  msgstr ""
4466
 
4467
- #: ../includes/mycred-shortcodes.php:867 ../includes/mycred-shortcodes.php:875 ..
4468
- #: includes/mycred-shortcodes.php:967 ../includes/mycred-shortcodes.php:987
4469
  #, php-format
4470
  msgid "You are excluded from using %s."
4471
  msgstr ""
4472
 
4473
- #: ../includes/mycred-shortcodes.php:871 ../includes/mycred-shortcodes.php:977
4474
  msgid "Your balance is too low to use this feature."
4475
  msgstr ""
4476
 
4477
- #: ../includes/mycred-shortcodes.php:892
4478
  #, php-format
4479
  msgid "Convert <span>%s</span> to <span>%s</span>"
4480
  msgstr ""
4481
 
4482
- #: ../includes/mycred-shortcodes.php:901
4483
  #, php-format
4484
  msgid "Your current %s balance"
4485
  msgstr ""
4486
 
4487
- #: ../includes/mycred-shortcodes.php:909
4488
  #, php-format
4489
  msgid "Minimum %s"
4490
  msgstr ""
4491
 
4492
- #: ../includes/mycred-shortcodes.php:913
4493
  #, php-format
4494
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4495
  msgstr ""
4496
 
4497
- #: ../includes/mycred-shortcodes.php:919
4498
  msgid "Exchange"
4499
  msgstr ""
4500
 
4501
- #: ../includes/mycred-shortcodes.php:1000
4502
  #, php-format
4503
  msgid "You must exchange at least %s!"
4504
  msgstr ""
4505
 
4506
- #: ../includes/mycred-shortcodes.php:1022
4507
  #, php-format
4508
  msgid "Exchange from %s"
4509
  msgstr ""
4510
 
4511
- #: ../includes/mycred-shortcodes.php:1034
4512
  #, php-format
4513
  msgid "Exchange to %s"
4514
  msgstr ""
4515
 
4516
- #: ../includes/mycred-shortcodes.php:1042
4517
  #, php-format
4518
  msgid "You have successfully exchanged %s into %s."
4519
  msgstr ""
@@ -5014,216 +5022,252 @@ msgstr ""
5014
 
5015
  #: ../modules/mycred-module-hooks.php:101
5016
  #, php-format
5017
- msgid "%plural% for logins"
5018
  msgstr ""
5019
 
5020
  #: ../modules/mycred-module-hooks.php:102
 
 
 
 
 
 
 
 
 
 
 
5021
  #, php-format
5022
  msgid ""
5023
  "Award %_plural% for logging in to your website. You can also set an optional "
5024
  "limit."
5025
  msgstr ""
5026
 
5027
- #: ../modules/mycred-module-hooks.php:108
5028
  #, php-format
5029
  msgid "%plural% for publishing content"
5030
  msgstr ""
5031
 
5032
- #: ../modules/mycred-module-hooks.php:109
5033
  #, php-format
5034
  msgid ""
5035
  "Award %_plural% for publishing content on your website. If your custom post "
5036
  "type is not shown bellow, make sure it is set to \"Public\"."
5037
  msgstr ""
5038
 
5039
- #: ../modules/mycred-module-hooks.php:115
5040
  #, php-format
5041
  msgid "%plural% for comments"
5042
  msgstr ""
5043
 
5044
- #: ../modules/mycred-module-hooks.php:115
5045
  #, php-format
5046
  msgid "%plural% for Disqus comments"
5047
  msgstr ""
5048
 
5049
- #: ../modules/mycred-module-hooks.php:116
5050
  #, php-format
5051
  msgid "Award %_plural% for making comments."
5052
  msgstr ""
5053
 
5054
- #: ../modules/mycred-module-hooks.php:122
5055
  #, php-format
5056
  msgid "%plural% for clicking on links"
5057
  msgstr ""
5058
 
5059
- #: ../modules/mycred-module-hooks.php:123
5060
  msgid ""
5061
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5062
  "shortcode."
5063
  msgstr ""
5064
 
5065
- #: ../modules/mycred-module-hooks.php:129
5066
  #, php-format
5067
  msgid "%plural% for viewing Videos"
5068
  msgstr ""
5069
 
5070
- #: ../modules/mycred-module-hooks.php:130
5071
  msgid ""
5072
  "Award %_plural% to users who watches videos embedded using the "
5073
  "[mycred_video] shortcode."
5074
  msgstr ""
5075
 
5076
- #: ../modules/mycred-module-hooks.php:136
5077
  #, php-format
5078
  msgid "%plural% for referrals"
5079
  msgstr ""
5080
 
5081
- #: ../modules/mycred-module-hooks.php:137
5082
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5083
  msgstr ""
5084
 
5085
- #: ../modules/mycred-module-hooks.php:170
5086
  #, php-format
5087
  msgid "%s Hooks"
5088
  msgstr ""
5089
 
5090
- #: ../modules/mycred-module-hooks.php:173
5091
  msgid ""
5092
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5093
  "depending on their actions around your website."
5094
  msgstr ""
5095
 
5096
- #: ../modules/mycred-module-hooks.php:345 ../modules/mycred-module-hooks.php:439 .
5097
- #: ./modules/mycred-module-hooks.php:751 ../modules/mycred-module-hooks.php:764 ..
5098
- #: modules/mycred-module-hooks.php:800 ../modules/mycred-module-hooks.php:1180 ..
5099
- #: modules/mycred-module-hooks.php:1197 ../modules/mycred-module-hooks.php:1214 .
5100
- #: ./modules/mycred-module-hooks.php:2370 ../modules/mycred-module-hooks.php:2399
5101
- #: ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 .
5102
- #: ./plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ..
5103
- #: plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ..
5104
- #: plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ..
5105
- #: plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-
5106
- #: buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ..
5107
- #: plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-
5108
- #: buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ..
5109
- #: plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-
5110
- #: buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ..
5111
- #: plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-
5112
- #: buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ..
5113
- #: plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
5114
- #: buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-
5115
- #: hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ..
5116
- #: plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:
5117
- #: 446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-
5118
- #: buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-
5119
- #: hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ..
5120
- #: plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:
5121
- #: 978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-
5122
- #: buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ..
5123
- #: plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:
5124
- #: 1044 ../plugins/mycred-hook-contact-form7.php:141 ../plugins/mycred-hook-
5125
- #: gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.php:219 ..
5126
- #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-jetpack.php:
5127
- #: 506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-sharethis.
5128
- #: php:258 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-
5129
- #: simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ..
5130
- #: plugins/mycred-hook-simplepress.php:380
 
5131
  msgid "Log template"
5132
  msgstr ""
5133
 
5134
- #: ../modules/mycred-module-hooks.php:640 ../modules/mycred-module-hooks.php:2378
5135
- #: ../modules/mycred-module-hooks.php:2407 ../plugins/mycred-hook-invite-anyone.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5136
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5137
  msgid "Limit"
5138
  msgstr ""
5139
 
5140
- #: ../modules/mycred-module-hooks.php:745
5141
  #, php-format
5142
  msgid "%plural% for Posts"
5143
  msgstr ""
5144
 
5145
- #: ../modules/mycred-module-hooks.php:758
5146
  #, php-format
5147
  msgid "%plural% for Pages"
5148
  msgstr ""
5149
 
5150
- #: ../modules/mycred-module-hooks.php:794
5151
  #, php-format
5152
  msgid "%plural% for %s"
5153
  msgstr ""
5154
 
5155
- #: ../modules/mycred-module-hooks.php:1166
5156
  msgid ""
5157
  "%plural% are only awarded when your website has been synced with the Disqus "
5158
  "server!"
5159
  msgstr ""
5160
 
5161
- #: ../modules/mycred-module-hooks.php:1171 ../modules/mycred-module-hooks.php:
5162
- #: 1188 ../modules/mycred-module-hooks.php:1205
5163
  msgid "Comment Author"
5164
  msgstr ""
5165
 
5166
- #: ../modules/mycred-module-hooks.php:1175 ../modules/mycred-module-hooks.php:
5167
- #: 1192 ../modules/mycred-module-hooks.php:1209
5168
- msgid "Content Author"
5169
- msgstr ""
5170
-
5171
- #: ../modules/mycred-module-hooks.php:1185
5172
  msgid "Comment Marked SPAM"
5173
  msgstr ""
5174
 
5175
- #: ../modules/mycred-module-hooks.php:1202
5176
  msgid "Trashed / Unapproved Comments"
5177
  msgstr ""
5178
 
5179
- #: ../modules/mycred-module-hooks.php:1222
5180
  msgid "Limit per post"
5181
  msgstr ""
5182
 
5183
- #: ../modules/mycred-module-hooks.php:1224
5184
  msgid ""
5185
  "The number of comments per post that grants %_plural% to the comment author. "
5186
  "Use zero for unlimited."
5187
  msgstr ""
5188
 
5189
- #: ../modules/mycred-module-hooks.php:1228
5190
  msgid "Limit per day"
5191
  msgstr ""
5192
 
5193
- #: ../modules/mycred-module-hooks.php:1230
5194
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5195
  msgstr ""
5196
 
5197
- #: ../modules/mycred-module-hooks.php:1235
5198
  msgid ""
5199
  "%plural% is to be awarded even when comment authors reply to their own "
5200
  "comment."
5201
  msgstr ""
5202
 
5203
- #: ../modules/mycred-module-hooks.php:1306
5204
  msgid "Once for each unique URL"
5205
  msgstr ""
5206
 
5207
- #: ../modules/mycred-module-hooks.php:1307
5208
  msgid "Once for each unique link id"
5209
  msgstr ""
5210
 
5211
- #: ../modules/mycred-module-hooks.php:1500
5212
  msgid ""
5213
  "The default amount to award for clicking on links. You can override this in "
5214
  "the shortcode."
5215
  msgstr ""
5216
 
5217
- #: ../modules/mycred-module-hooks.php:1507
5218
  #, php-format
5219
  msgid "Custom tags: %url%, %title% or %id%."
5220
  msgstr ""
5221
 
5222
- #: ../modules/mycred-module-hooks.php:1518 ../modules/mycred-module-hooks.php:2481
5223
  msgid "Note!"
5224
  msgstr ""
5225
 
5226
- #: ../modules/mycred-module-hooks.php:1518
5227
  msgid ""
5228
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5229
  "generate one automatically based on the value set under href. If you are "
@@ -5231,220 +5275,220 @@ msgid ""
5231
  "by ID."
5232
  msgstr ""
5233
 
5234
- #: ../modules/mycred-module-hooks.php:1520 ../modules/mycred-module-hooks.php:1878
5235
  msgid "Available Shortcode"
5236
  msgstr ""
5237
 
5238
- #: ../modules/mycred-module-hooks.php:1842
5239
  msgid "Amount to award for viewing videos."
5240
  msgstr ""
5241
 
5242
- #: ../modules/mycred-module-hooks.php:1852
5243
  msgid "Award Logic"
5244
  msgstr ""
5245
 
5246
- #: ../modules/mycred-module-hooks.php:1854
5247
  #, php-format
5248
  msgid "Select when %_plural% should be awarded or deducted."
5249
  msgstr ""
5250
 
5251
- #: ../modules/mycred-module-hooks.php:1855
5252
  msgid "Play - As soon as video starts playing."
5253
  msgstr ""
5254
 
5255
- #: ../modules/mycred-module-hooks.php:1856
5256
  msgid "Full - First when the entire video has played."
5257
  msgstr ""
5258
 
5259
- #: ../modules/mycred-module-hooks.php:1857
5260
  msgid "Interval - For each x number of seconds watched."
5261
  msgstr ""
5262
 
5263
- #: ../modules/mycred-module-hooks.php:1862
5264
  msgid "Number of seconds"
5265
  msgstr ""
5266
 
5267
- #: ../modules/mycred-module-hooks.php:1869
5268
  msgid "Leniency"
5269
  msgstr ""
5270
 
5271
- #: ../modules/mycred-module-hooks.php:1871
5272
  msgid ""
5273
  "The maximum percentage a users view of a movie can differ from the actual "
5274
  "length."
5275
  msgstr ""
5276
 
5277
- #: ../modules/mycred-module-hooks.php:1874
5278
  msgid ""
5279
  "Do not set this value to zero! A lot of thing can happen while a user "
5280
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5281
  "buffering or play back errors."
5282
  msgstr ""
5283
 
5284
- #: ../modules/mycred-module-hooks.php:1942
5285
  msgid "Affiliate Program"
5286
  msgstr ""
5287
 
5288
- #: ../modules/mycred-module-hooks.php:1951
5289
  msgid "Per Day"
5290
  msgstr ""
5291
 
5292
- #: ../modules/mycred-module-hooks.php:2063
5293
  msgid "Link"
5294
  msgstr ""
5295
 
5296
- #: ../modules/mycred-module-hooks.php:2364
5297
  msgid "Referring Visitors"
5298
  msgstr ""
5299
 
5300
- #: ../modules/mycred-module-hooks.php:2388 ../modules/mycred-module-hooks.php:2417
5301
  msgid "The number of referrals each member can make. Use zero for unlimited."
5302
  msgstr ""
5303
 
5304
- #: ../modules/mycred-module-hooks.php:2392 ../modules/mycred-module-hooks.php:2421
5305
  msgid "Referring Signups"
5306
  msgstr ""
5307
 
5308
- #: ../modules/mycred-module-hooks.php:2396
5309
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5310
  msgstr ""
5311
 
5312
- #: ../modules/mycred-module-hooks.php:2423
5313
  msgid "Registrations are disabled."
5314
  msgstr ""
5315
 
5316
- #: ../modules/mycred-module-hooks.php:2430
5317
  msgid "Referral Links"
5318
  msgstr ""
5319
 
5320
- #: ../modules/mycred-module-hooks.php:2434
5321
  msgid "Assign numeric referral IDs to each user."
5322
  msgstr ""
5323
 
5324
- #: ../modules/mycred-module-hooks.php:2435 ../modules/mycred-module-hooks.php:2441
5325
  msgid "Example"
5326
  msgstr ""
5327
 
5328
- #: ../modules/mycred-module-hooks.php:2440
5329
  msgid "Assign usernames as IDs for each user."
5330
  msgstr ""
5331
 
5332
- #: ../modules/mycred-module-hooks.php:2444
5333
  msgid "IP Limit"
5334
  msgstr ""
5335
 
5336
- #: ../modules/mycred-module-hooks.php:2448
5337
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5338
  msgstr ""
5339
 
5340
- #: ../modules/mycred-module-hooks.php:2452 ../modules/mycred-module-hooks.php:2485
5341
  msgid "BuddyPress Profile"
5342
  msgstr ""
5343
 
5344
- #: ../modules/mycred-module-hooks.php:2455
5345
  msgid "Insert Link in users Profile"
5346
  msgstr ""
5347
 
5348
- #: ../modules/mycred-module-hooks.php:2456
5349
  msgid ""
5350
  "Option to inser the referral link in users profiles. Links will only be "
5351
  "visible to users viewing their own profiles or administrators."
5352
  msgstr ""
5353
 
5354
- #: ../modules/mycred-module-hooks.php:2462
5355
  msgid "Leave empty to hide."
5356
  msgstr ""
5357
 
5358
- #: ../modules/mycred-module-hooks.php:2465
5359
  msgid "Description"
5360
  msgstr ""
5361
 
5362
- #: ../modules/mycred-module-hooks.php:2466
5363
  msgid "Optional description to insert under the link."
5364
  msgstr ""
5365
 
5366
- #: ../modules/mycred-module-hooks.php:2478
5367
  msgid "Profile Positioning"
5368
  msgstr ""
5369
 
5370
- #: ../modules/mycred-module-hooks.php:2480
5371
  msgid ""
5372
  "You can move around the referral link on your users profile by changing the "
5373
  "position. Increase to move up, decrease to move down."
5374
  msgstr ""
5375
 
5376
- #: ../modules/mycred-module-hooks.php:2481
5377
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5378
  msgstr ""
5379
 
5380
- #: ../modules/mycred-module-hooks.php:2487
5381
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5382
  msgstr ""
5383
 
5384
- #: ../modules/mycred-module-log.php:187 ../modules/mycred-module-log.php:208 ..
5385
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5386
  msgid "Access denied for this action"
5387
  msgstr ""
5388
 
5389
- #: ../modules/mycred-module-log.php:194
5390
  msgid "Row Deleted"
5391
  msgstr ""
5392
 
5393
- #: ../modules/mycred-module-log.php:221
5394
  msgid "Log entry not found"
5395
  msgstr ""
5396
 
5397
- #: ../modules/mycred-module-log.php:234
5398
  msgid "Entry Updated"
5399
  msgstr ""
5400
 
5401
- #: ../modules/mycred-module-log.php:288 ../modules/mycred-module-settings.php:436
5402
  msgid "Entries"
5403
  msgstr ""
5404
 
5405
- #: ../modules/mycred-module-log.php:303 ../modules/mycred-module-log.php:383 ..
5406
- #: modules/mycred-module-log.php:627 ../modules/mycred-module-settings.php:574
5407
  msgid "Export"
5408
  msgstr ""
5409
 
5410
- #: ../modules/mycred-module-log.php:309
5411
  msgid "Search results for"
5412
  msgstr ""
5413
 
5414
- #: ../modules/mycred-module-log.php:377
5415
  #, php-format
5416
  msgid "%s Log"
5417
  msgstr ""
5418
 
5419
- #: ../modules/mycred-module-log.php:502
5420
  msgid "Edit"
5421
  msgstr ""
5422
 
5423
- #: ../modules/mycred-module-log.php:543
5424
  msgid "Time"
5425
  msgstr "Tid"
5426
 
5427
- #: ../modules/mycred-module-log.php:547
5428
  msgid "Current Log Entry"
5429
  msgstr ""
5430
 
5431
- #: ../modules/mycred-module-log.php:549
5432
  msgid "The current saved log entry"
5433
  msgstr ""
5434
 
5435
- #: ../modules/mycred-module-log.php:552
5436
  msgid "Adjust Log Entry"
5437
  msgstr ""
5438
 
5439
- #: ../modules/mycred-module-log.php:554
5440
  msgid "The new log entry"
5441
  msgstr ""
5442
 
5443
- #: ../modules/mycred-module-log.php:557
5444
  msgid "Update Log Entry"
5445
  msgstr ""
5446
 
5447
- #: ../modules/mycred-module-log.php:621
5448
  #, php-format
5449
  msgid "My %s History"
5450
  msgstr ""
@@ -5673,8 +5717,8 @@ msgstr ""
5673
  msgid "Forum authors can receive %_plural% for creating new topics."
5674
  msgstr ""
5675
 
5676
- #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 .
5677
- #: ./plugins/mycred-hook-simplepress.php:336
5678
  #, php-format
5679
  msgid "%plural% for Topic Deletion"
5680
  msgstr ""
@@ -5710,6 +5754,11 @@ msgstr ""
5710
  msgid "Show users %_plural% balance in replies"
5711
  msgstr ""
5712
 
 
 
 
 
 
5713
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5714
  msgid "BuddyPress: Gallery Actions"
5715
  msgstr ""
@@ -6086,19 +6135,15 @@ msgstr ""
6086
  msgid "%plural% for Topic Post Deletion"
6087
  msgstr ""
6088
 
6089
- #: ../plugins/mycred-hook-woocommerce.php:65
6090
  msgid "Reward with %plural%"
6091
  msgstr ""
6092
 
6093
- #: ../plugins/mycred-hook-woocommerce.php:70
6094
- msgid "User is excluded from this point type."
6095
- msgstr ""
6096
-
6097
- #: ../plugins/mycred-hook-woocommerce.php:199
6098
  msgid "WooCommerce Product Reviews"
6099
  msgstr ""
6100
 
6101
- #: ../plugins/mycred-hook-woocommerce.php:200
6102
  #, php-format
6103
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6104
  msgstr ""
@@ -6128,3 +6173,7 @@ msgstr ""
6128
  #, php-format
6129
  msgid "Awards %_plural% for users voting in polls."
6130
  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
  "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"
94
  msgstr "Log inlägg updaterad"
95
 
96
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
97
+ #: notices.php:718 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
98
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
99
  msgid "Setup"
100
  msgstr "Setup"
122
  msgstr "Denna Krok har inga inställningar"
123
 
124
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
125
+ #: 1558
126
  msgid "No limit"
127
  msgstr "Ingen gräns"
128
 
148
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
149
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
150
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
151
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:868
152
  msgid "Select"
153
  msgstr "Välj"
154
 
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"
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
 
518
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
519
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
520
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
521
+ #: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
522
+ #: modules/mycred-module-hooks.php:2098 ../plugins/mycred-hook-badgeOS.php:115 ..
523
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
524
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
525
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
526
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
527
+ #: php:298 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
528
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
529
  msgid "Log Template"
530
  msgstr "Log Mall"
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
 
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
 
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
 
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"
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
 
1567
  msgstr "Användning"
1568
 
1569
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1570
+ #: transfer.php:243 ../modules/mycred-module-hooks.php:1472 ../modules/mycred-
1571
+ #: module-hooks.php:1763
1572
  msgid "Limits"
1573
  msgstr "Begränsning"
1574
 
1581
  msgstr "oanvänd"
1582
 
1583
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1584
+ #: php:2203
1585
  msgid "Total"
1586
  msgstr "Total"
1587
 
1751
  msgstr "Validera"
1752
 
1753
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1754
+ #: notices/myCRED-addon-email-notices.php:1115
1755
  msgid "Email Notice"
1756
  msgstr "E-postmeddelande"
1757
 
1942
  "åsidosättas när du redigerar postmeddelanden."
1943
 
1944
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1945
+ #: notices/myCRED-addon-email-notices.php:782
1946
  msgid "Email Settings"
1947
  msgstr "E-mail inställningar"
1948
 
1949
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1950
+ #: notices/myCRED-addon-email-notices.php:905
1951
  msgid "Senders Name:"
1952
  msgstr "Avsändarens Namn:"
1953
 
1954
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1955
+ #: notices/myCRED-addon-email-notices.php:907
1956
  msgid "Senders Email:"
1957
  msgstr "Avsändarens e-postadress"
1958
 
1976
  msgid "Ignored if HTML is not allowed in emails."
1977
  msgstr "Ignoreras om e-post inte använder HTML formatering."
1978
 
1979
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:716 ../addons/email-
1980
+ #: notices/myCRED-addon-email-notices.php:831
1981
  msgid "Email Subject"
1982
  msgstr "Ämne"
1983
 
1984
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:717
1985
  msgid "Status"
1986
  msgstr "Status"
1987
 
1988
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1989
  msgid "Not Active"
1990
  msgstr "Inte Aktiv"
1991
 
1992
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:739
1993
  #, php-format
1994
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1995
  msgstr "Planerad:<br /><strong>%1%s</strong>"
1996
 
1997
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:743
1998
  msgid "Active"
1999
  msgstr "Aktiv"
2000
 
2001
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:745
2002
  #, php-format
2003
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2004
  msgstr "Aktiv - Sist kört:<br /><strong>%1$s</strong>"
2005
 
2006
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755
2007
  msgid "Email is sent when"
2008
  msgstr "E-post skickas när"
2009
 
2010
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757
2011
  msgid "Missing instance for this notice!"
2012
  msgstr "E-post meddelandet saknar inställningar för när e-post skall skickas!"
2013
 
2014
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
2015
+ #: notices/myCRED-addon-email-notices.php:768 ../addons/email-notices/myCRED-
2016
+ #: addon-email-notices.php:770
2017
  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
 
2026
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:768 ../addons/email-
2027
+ #: notices/myCRED-addon-email-notices.php:896
2028
  msgid "Administrator"
2029
  msgstr "Administratörer"
2030
 
2031
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:770
2032
  msgid "Both Administrator and User"
2033
  msgstr "Både Administratörer och Användare"
2034
 
2035
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
2036
  msgid "Available Template Tags"
2037
  msgstr "Valbara Template Tags"
2038
 
2039
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:802
2040
  msgid "Email Header"
2041
  msgstr "E-post header"
2042
 
2043
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:862
2044
  msgid "Send this email notice when..."
2045
  msgstr "Skicka e-post när ..."
2046
 
2047
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:893
2048
  msgid "Recipient:"
2049
  msgstr "Mottagare"
2050
 
2051
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:897
2052
  msgid "Both"
2053
  msgstr "Båda"
2054
 
2055
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:901 ..
2056
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2057
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2058
  #: module-settings.php:526
2059
  msgid "Label"
2060
  msgstr "Titel"
2061
 
2062
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2063
  msgid "Reply-To Email:"
2064
  msgstr "Svars e-postadress:"
2065
 
2066
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:915
2067
  msgid "Save"
2068
  msgstr "Spara"
2069
 
2070
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:927
2071
  msgid "CSS Styling"
2072
  msgstr "CSS design"
2073
 
2074
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:943
2075
  msgid "Site Related"
2076
  msgstr "Hemsida relaterat"
2077
 
2078
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:944
2079
  msgid "Your websites title"
2080
  msgstr "Din hemsidas titel"
2081
 
2082
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:945
2083
  msgid "Your websites address"
2084
  msgstr "Din hemsidas URL adress"
2085
 
2086
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:946
2087
  msgid "Your websites tagline (description)"
2088
  msgstr "Din hemsidas beskrivning"
2089
 
2090
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:947
2091
  msgid "Your websites admin email"
2092
  msgstr "Din hemsidas administratör e-postadress"
2093
 
2094
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:948
2095
  msgid "Total number of blog members"
2096
  msgstr "Total antal användare på hemsidan"
2097
 
2098
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1026 ../addons/email-
2099
+ #: notices/myCRED-addon-email-notices.php:1029 ../addons/email-notices/myCRED-
2100
+ #: addon-email-notices.php:1035
2101
  msgid "Email Notice Updated."
2102
  msgstr ""
2103
 
2104
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1031
2105
  msgid "Email Notice Activated"
2106
  msgstr "E-post meddelande aktiverad"
2107
 
2108
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1032
2109
  msgid "Email Notice Saved"
2110
  msgstr "E-post meddelande inställningar updaterade"
2111
 
2112
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2113
  msgid ""
2114
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2115
  "are not yet ready to use this email notice!"
2117
  "När ett e-post meddelande blir \"publicerad\" så börjar den användas med det "
2118
  "samma! Spara som kladd om du inte vill använda meddelandet just nu."
2119
 
2120
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2121
  #, php-format
2122
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2123
  msgstr "E-post meddelandet aktiveras:<br /><stong>%1$s</strong>"
2124
 
2125
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2126
  msgid "This email notice is active."
2127
  msgstr "Detta e-post meddelande är inte aktivt."
2128
 
2129
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1066
2130
  msgid "Settings saved."
2131
  msgstr ""
2132
 
2133
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1114
2134
  msgid "Unsubscribe"
2135
  msgstr ""
2136
 
2137
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1135
2138
  msgid "There are no email notifications yet."
2139
  msgstr ""
2140
 
2141
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1141
2142
  msgid "Save Changes"
2143
  msgstr ""
2144
 
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
  #: 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
 
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
 
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"
3122
  msgid "Assign Ranks to Users"
3123
  msgstr "Rangordna Användare"
3124
 
3125
+ #: ../addons/ranks/includes/mycred-rank-functions.php:229
3126
  msgid "mycred_get_users_rank() : Missing required user id"
3127
  msgstr "mycred_get_users_rank(): Användar ID saknas"
3128
 
3129
+ #: ../addons/ranks/includes/mycred-rank-functions.php:238
3130
  msgid "no rank"
3131
  msgstr "ingen rang"
3132
 
3305
  msgstr ""
3306
 
3307
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3308
+ #: php:2295
3309
  msgid "Transfer"
3310
  msgstr ""
3311
 
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
 
3494
  msgid "Show users limit"
3495
  msgstr ""
3496
 
3497
+ #: ../addons/transfer/myCRED-addon-transfer.php:800
3498
  msgid "username"
3499
  msgstr ""
3500
 
3501
+ #: ../addons/transfer/myCRED-addon-transfer.php:802
3502
  msgid "email"
3503
  msgstr ""
3504
 
3505
+ #: ../addons/transfer/myCRED-addon-transfer.php:804
3506
  #, php-format
3507
  msgid "recipients %s"
3508
  msgstr ""
3509
 
3510
+ #: ../addons/transfer/myCRED-addon-transfer.php:877
3511
  msgid "To:"
3512
  msgstr ""
3513
 
3514
+ #: ../addons/transfer/myCRED-addon-transfer.php:883
3515
  msgid "Amount:"
3516
  msgstr ""
3517
 
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
 
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
  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
 
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
 
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 ""
5022
 
5023
  #: ../modules/mycred-module-hooks.php:101
5024
  #, php-format
5025
+ msgid "%plural% for viewing content"
5026
  msgstr ""
5027
 
5028
  #: ../modules/mycred-module-hooks.php:102
5029
+ msgid ""
5030
+ "Award %_plural% to your users for viewing posts and / or %plural% to your "
5031
+ "authors for members viewing their content."
5032
+ msgstr ""
5033
+
5034
+ #: ../modules/mycred-module-hooks.php:108
5035
+ #, php-format
5036
+ msgid "%plural% for logins"
5037
+ msgstr ""
5038
+
5039
+ #: ../modules/mycred-module-hooks.php:109
5040
  #, php-format
5041
  msgid ""
5042
  "Award %_plural% for logging in to your website. You can also set an optional "
5043
  "limit."
5044
  msgstr ""
5045
 
5046
+ #: ../modules/mycred-module-hooks.php:115
5047
  #, php-format
5048
  msgid "%plural% for publishing content"
5049
  msgstr ""
5050
 
5051
+ #: ../modules/mycred-module-hooks.php:116
5052
  #, php-format
5053
  msgid ""
5054
  "Award %_plural% for publishing content on your website. If your custom post "
5055
  "type is not shown bellow, make sure it is set to \"Public\"."
5056
  msgstr ""
5057
 
5058
+ #: ../modules/mycred-module-hooks.php:122
5059
  #, php-format
5060
  msgid "%plural% for comments"
5061
  msgstr ""
5062
 
5063
+ #: ../modules/mycred-module-hooks.php:122
5064
  #, php-format
5065
  msgid "%plural% for Disqus comments"
5066
  msgstr ""
5067
 
5068
+ #: ../modules/mycred-module-hooks.php:123
5069
  #, php-format
5070
  msgid "Award %_plural% for making comments."
5071
  msgstr ""
5072
 
5073
+ #: ../modules/mycred-module-hooks.php:129
5074
  #, php-format
5075
  msgid "%plural% for clicking on links"
5076
  msgstr ""
5077
 
5078
+ #: ../modules/mycred-module-hooks.php:130
5079
  msgid ""
5080
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5081
  "shortcode."
5082
  msgstr ""
5083
 
5084
+ #: ../modules/mycred-module-hooks.php:136
5085
  #, php-format
5086
  msgid "%plural% for viewing Videos"
5087
  msgstr ""
5088
 
5089
+ #: ../modules/mycred-module-hooks.php:137
5090
  msgid ""
5091
  "Award %_plural% to users who watches videos embedded using the "
5092
  "[mycred_video] shortcode."
5093
  msgstr ""
5094
 
5095
+ #: ../modules/mycred-module-hooks.php:143
5096
  #, php-format
5097
  msgid "%plural% for referrals"
5098
  msgstr ""
5099
 
5100
+ #: ../modules/mycred-module-hooks.php:144
5101
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5102
  msgstr ""
5103
 
5104
+ #: ../modules/mycred-module-hooks.php:177
5105
  #, php-format
5106
  msgid "%s Hooks"
5107
  msgstr ""
5108
 
5109
+ #: ../modules/mycred-module-hooks.php:180
5110
  msgid ""
5111
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5112
  "depending on their actions around your website."
5113
  msgstr ""
5114
 
5115
+ #: ../modules/mycred-module-hooks.php:352 ../modules/mycred-module-hooks.php:446 .
5116
+ #: ./modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:622 ..
5117
+ #: modules/mycred-module-hooks.php:684 ../modules/mycred-module-hooks.php:1004 ..
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.
5125
+ #: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
5126
+ #: buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ..
5127
+ #: plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-
5128
+ #: buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ..
5129
+ #: plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-
5130
+ #: buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ..
5131
+ #: plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-
5132
+ #: buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ..
5133
+ #: plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-
5134
+ #: buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ..
5135
+ #: plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:
5136
+ #: 407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-
5137
+ #: buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-
5138
+ #: hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ..
5139
+ #: plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:
5140
+ #: 939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-
5141
+ #: buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-
5142
+ #: hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ..
5143
+ #: plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:
5144
+ #: 1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-
5145
+ #: form7.php:141 ../plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-
5146
+ #: hook-invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:240 ..
5147
+ #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5148
+ #: plugins/mycred-hook-sharethis.php:258 ../plugins/mycred-hook-simplepress.php:
5149
+ #: 330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-
5150
+ #: simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
5151
  msgid "Log template"
5152
  msgstr ""
5153
 
5154
+ #: ../modules/mycred-module-hooks.php:586
5155
+ #, php-format
5156
+ msgid "%plural% for viewing Posts"
5157
+ msgstr ""
5158
+
5159
+ #: ../modules/mycred-module-hooks.php:589 ../modules/mycred-module-hooks.php:600 .
5160
+ #: ./modules/mycred-module-hooks.php:614 ../modules/mycred-module-hooks.php:625 ..
5161
+ #: modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:687
5162
+ msgid "Member"
5163
+ msgstr ""
5164
+
5165
+ #: ../modules/mycred-module-hooks.php:593 ../modules/mycred-module-hooks.php:606 .
5166
+ #: ./modules/mycred-module-hooks.php:618 ../modules/mycred-module-hooks.php:631 ..
5167
+ #: modules/mycred-module-hooks.php:680 ../modules/mycred-module-hooks.php:693 ..
5168
+ #: modules/mycred-module-hooks.php:1428 ../modules/mycred-module-hooks.php:1445 .
5169
+ #: ./modules/mycred-module-hooks.php:1462
5170
+ msgid "Content Author"
5171
+ msgstr ""
5172
+
5173
+ #: ../modules/mycred-module-hooks.php:611
5174
+ #, php-format
5175
+ msgid "%plural% for viewing Pages"
5176
+ msgstr ""
5177
+
5178
+ #: ../modules/mycred-module-hooks.php:673
5179
+ #, php-format
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 ""
5188
 
5189
+ #: ../modules/mycred-module-hooks.php:998
5190
  #, php-format
5191
  msgid "%plural% for Posts"
5192
  msgstr ""
5193
 
5194
+ #: ../modules/mycred-module-hooks.php:1011
5195
  #, php-format
5196
  msgid "%plural% for Pages"
5197
  msgstr ""
5198
 
5199
+ #: ../modules/mycred-module-hooks.php:1047
5200
  #, php-format
5201
  msgid "%plural% for %s"
5202
  msgstr ""
5203
 
5204
+ #: ../modules/mycred-module-hooks.php:1419
5205
  msgid ""
5206
  "%plural% are only awarded when your website has been synced with the Disqus "
5207
  "server!"
5208
  msgstr ""
5209
 
5210
+ #: ../modules/mycred-module-hooks.php:1424 ../modules/mycred-module-hooks.php:
5211
+ #: 1441 ../modules/mycred-module-hooks.php:1458
5212
  msgid "Comment Author"
5213
  msgstr ""
5214
 
5215
+ #: ../modules/mycred-module-hooks.php:1438
 
 
 
 
 
5216
  msgid "Comment Marked SPAM"
5217
  msgstr ""
5218
 
5219
+ #: ../modules/mycred-module-hooks.php:1455
5220
  msgid "Trashed / Unapproved Comments"
5221
  msgstr ""
5222
 
5223
+ #: ../modules/mycred-module-hooks.php:1475
5224
  msgid "Limit per post"
5225
  msgstr ""
5226
 
5227
+ #: ../modules/mycred-module-hooks.php:1477
5228
  msgid ""
5229
  "The number of comments per post that grants %_plural% to the comment author. "
5230
  "Use zero for unlimited."
5231
  msgstr ""
5232
 
5233
+ #: ../modules/mycred-module-hooks.php:1481
5234
  msgid "Limit per day"
5235
  msgstr ""
5236
 
5237
+ #: ../modules/mycred-module-hooks.php:1483
5238
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5239
  msgstr ""
5240
 
5241
+ #: ../modules/mycred-module-hooks.php:1488
5242
  msgid ""
5243
  "%plural% is to be awarded even when comment authors reply to their own "
5244
  "comment."
5245
  msgstr ""
5246
 
5247
+ #: ../modules/mycred-module-hooks.php:1559
5248
  msgid "Once for each unique URL"
5249
  msgstr ""
5250
 
5251
+ #: ../modules/mycred-module-hooks.php:1560
5252
  msgid "Once for each unique link id"
5253
  msgstr ""
5254
 
5255
+ #: ../modules/mycred-module-hooks.php:1753
5256
  msgid ""
5257
  "The default amount to award for clicking on links. You can override this in "
5258
  "the shortcode."
5259
  msgstr ""
5260
 
5261
+ #: ../modules/mycred-module-hooks.php:1760
5262
  #, php-format
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
 
5270
+ #: ../modules/mycred-module-hooks.php:1771
5271
  msgid ""
5272
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5273
  "generate one automatically based on the value set under href. If you are "
5275
  "by ID."
5276
  msgstr ""
5277
 
5278
+ #: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2131
5279
  msgid "Available Shortcode"
5280
  msgstr ""
5281
 
5282
+ #: ../modules/mycred-module-hooks.php:2095
5283
  msgid "Amount to award for viewing videos."
5284
  msgstr ""
5285
 
5286
+ #: ../modules/mycred-module-hooks.php:2105
5287
  msgid "Award Logic"
5288
  msgstr ""
5289
 
5290
+ #: ../modules/mycred-module-hooks.php:2107
5291
  #, php-format
5292
  msgid "Select when %_plural% should be awarded or deducted."
5293
  msgstr ""
5294
 
5295
+ #: ../modules/mycred-module-hooks.php:2108
5296
  msgid "Play - As soon as video starts playing."
5297
  msgstr ""
5298
 
5299
+ #: ../modules/mycred-module-hooks.php:2109
5300
  msgid "Full - First when the entire video has played."
5301
  msgstr ""
5302
 
5303
+ #: ../modules/mycred-module-hooks.php:2110
5304
  msgid "Interval - For each x number of seconds watched."
5305
  msgstr ""
5306
 
5307
+ #: ../modules/mycred-module-hooks.php:2115
5308
  msgid "Number of seconds"
5309
  msgstr ""
5310
 
5311
+ #: ../modules/mycred-module-hooks.php:2122
5312
  msgid "Leniency"
5313
  msgstr ""
5314
 
5315
+ #: ../modules/mycred-module-hooks.php:2124
5316
  msgid ""
5317
  "The maximum percentage a users view of a movie can differ from the actual "
5318
  "length."
5319
  msgstr ""
5320
 
5321
+ #: ../modules/mycred-module-hooks.php:2127
5322
  msgid ""
5323
  "Do not set this value to zero! A lot of thing can happen while a user "
5324
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5325
  "buffering or play back errors."
5326
  msgstr ""
5327
 
5328
+ #: ../modules/mycred-module-hooks.php:2195
5329
  msgid "Affiliate Program"
5330
  msgstr ""
5331
 
5332
+ #: ../modules/mycred-module-hooks.php:2204
5333
  msgid "Per Day"
5334
  msgstr ""
5335
 
5336
+ #: ../modules/mycred-module-hooks.php:2316
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
 
5428
+ #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
5429
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5430
  msgid "Access denied for this action"
5431
  msgstr ""
5432
 
5433
+ #: ../modules/mycred-module-log.php:196
5434
  msgid "Row Deleted"
5435
  msgstr ""
5436
 
5437
+ #: ../modules/mycred-module-log.php:223
5438
  msgid "Log entry not found"
5439
  msgstr ""
5440
 
5441
+ #: ../modules/mycred-module-log.php:236
5442
  msgid "Entry Updated"
5443
  msgstr ""
5444
 
5445
+ #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:436
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
 
5454
+ #: ../modules/mycred-module-log.php:311
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 ""
5717
  msgid "Forum authors can receive %_plural% for creating new topics."
5718
  msgstr ""
5719
 
5720
+ #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-simplepress.php:
5721
+ #: 336
5722
  #, php-format
5723
  msgid "%plural% for Topic Deletion"
5724
  msgstr ""
5754
  msgid "Show users %_plural% balance in replies"
5755
  msgstr ""
5756
 
5757
+ #: ../plugins/mycred-hook-bbPress.php:568
5758
+ #, php-format
5759
+ msgid "%plural% for Reply Deletion"
5760
+ msgstr ""
5761
+
5762
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5763
  msgid "BuddyPress: Gallery Actions"
5764
  msgstr ""
6135
  msgid "%plural% for Topic Post Deletion"
6136
  msgstr ""
6137
 
6138
+ #: ../plugins/mycred-hook-woocommerce.php:67
6139
  msgid "Reward with %plural%"
6140
  msgstr ""
6141
 
6142
+ #: ../plugins/mycred-hook-woocommerce.php:197
 
 
 
 
6143
  msgid "WooCommerce Product Reviews"
6144
  msgstr ""
6145
 
6146
+ #: ../plugins/mycred-hook-woocommerce.php:198
6147
  #, php-format
6148
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6149
  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 ""
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: Sat Jul 26 2014 20:58:45 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,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"
@@ -92,7 +92,7 @@ msgid "Log entry updated"
92
  msgstr "日志条目更新"
93
 
94
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
95
- #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
96
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
97
  msgid "Setup"
98
  msgstr "设置"
@@ -118,7 +118,7 @@ msgid "This Hook has no settings"
118
  msgstr "这个钩子没有设置"
119
 
120
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
121
- #: 1305
122
  msgid "No limit"
123
  msgstr "没有限制"
124
 
@@ -144,7 +144,7 @@ msgstr "每天一次(在午夜重置)"
144
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
145
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
146
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
147
- #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
148
  msgid "Select"
149
  msgstr "选择"
150
 
@@ -405,8 +405,8 @@ msgstr "你可以定期给用户奖励 %_plural%,在这里设置你希望奖
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:164 ..
409
- #: modules/mycred-module-log.php:324 ../modules/mycred-module-log.php:577 ..
410
  #: modules/mycred-module-settings.php:312
411
  msgid "Access Denied"
412
  msgstr "拒绝访问"
@@ -430,12 +430,12 @@ 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:189
434
  msgid "Enable"
435
  msgstr "启用"
436
 
437
  #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
438
- #: php:204
439
  msgid "Update Changes"
440
  msgstr "更新设置"
441
 
@@ -508,13 +508,13 @@ msgstr "申请获取利息的最少余额。"
508
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
509
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
510
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
511
- #: modules/mycred-module-hooks.php:633 ../modules/mycred-module-hooks.php:1503 ..
512
- #: modules/mycred-module-hooks.php:1845 ../plugins/mycred-hook-badgeOS.php:115 ..
513
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
514
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
515
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
516
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
517
- #: php:300 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
518
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
519
  msgid "Log Template"
520
  msgstr "日志模板"
@@ -548,8 +548,8 @@ msgstr "用户支付"
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:769 ..
552
- #: includes/mycred-shortcodes.php:907
553
  msgid "Amount"
554
  msgstr "数量"
555
 
@@ -559,7 +559,7 @@ 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:1860
563
  msgid "Interval"
564
  msgstr "间隔"
565
 
@@ -767,7 +767,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:2495
771
  msgid "Available Shortcodes"
772
  msgstr "可用简码"
773
 
@@ -925,7 +925,7 @@ 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:370 ../modules/mycred-
929
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
930
  msgid "Actions"
931
  msgstr "操作"
@@ -1357,7 +1357,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:2460
1361
  msgid "Title"
1362
  msgstr "标题"
1363
 
@@ -1531,8 +1531,8 @@ msgid "Usage"
1531
  msgstr "用法"
1532
 
1533
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1534
- #: transfer.php:243 ../modules/mycred-module-hooks.php:1219 ../modules/mycred-
1535
- #: module-hooks.php:1510
1536
  msgid "Limits"
1537
  msgstr "限制"
1538
 
@@ -1545,7 +1545,7 @@ msgid "not yet used"
1545
  msgstr "还没有使用"
1546
 
1547
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1548
- #: php:1950
1549
  msgid "Total"
1550
  msgstr "全部"
1551
 
@@ -1707,7 +1707,7 @@ msgid "Apply Coupon"
1707
  msgstr "申请优惠券"
1708
 
1709
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1710
- #: notices/myCRED-addon-email-notices.php:1104
1711
  msgid "Email Notice"
1712
  msgstr "邮件通知"
1713
 
@@ -1892,17 +1892,17 @@ msgid ""
1892
  msgstr "默认的电子邮件设置。这些设置可以在编辑邮件时被单独覆盖。"
1893
 
1894
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1895
- #: notices/myCRED-addon-email-notices.php:771
1896
  msgid "Email Settings"
1897
  msgstr "邮件设置"
1898
 
1899
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1900
- #: notices/myCRED-addon-email-notices.php:894
1901
  msgid "Senders Name:"
1902
  msgstr "发件人名称:"
1903
 
1904
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1905
- #: notices/myCRED-addon-email-notices.php:896
1906
  msgid "Senders Email:"
1907
  msgstr "发件人的邮箱:"
1908
 
@@ -1926,174 +1926,174 @@ msgstr "默认邮件样式"
1926
  msgid "Ignored if HTML is not allowed in emails."
1927
  msgstr "如果邮件不允许使用HTML,请忽略。"
1928
 
1929
- #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
1930
- #: notices/myCRED-addon-email-notices.php:820
1931
  msgid "Email Subject"
1932
  msgstr "邮件主题"
1933
 
1934
- #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1935
  msgid "Status"
1936
  msgstr "状态"
1937
 
1938
- #: ../addons/email-notices/myCRED-addon-email-notices.php:726
1939
  msgid "Not Active"
1940
  msgstr "没启用"
1941
 
1942
- #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1943
  #, php-format
1944
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1945
  msgstr "预定:<br /><strong>%1$s</strong>"
1946
 
1947
- #: ../addons/email-notices/myCRED-addon-email-notices.php:732
1948
  msgid "Active"
1949
  msgstr "状态"
1950
 
1951
- #: ../addons/email-notices/myCRED-addon-email-notices.php:734
1952
  #, php-format
1953
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1954
  msgstr "使用中 - 最后运行:<br /><strong>%1$s</strong>"
1955
 
1956
- #: ../addons/email-notices/myCRED-addon-email-notices.php:744
1957
  msgid "Email is sent when"
1958
  msgstr "发送邮件,当"
1959
 
1960
- #: ../addons/email-notices/myCRED-addon-email-notices.php:746
1961
  msgid "Missing instance for this notice!"
1962
  msgstr "本通知缺少实例!"
1963
 
1964
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1965
- #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
1966
- #: addon-email-notices.php:759
1967
  msgid "Sent To"
1968
  msgstr "发送给"
1969
 
1970
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1971
- #: notices/myCRED-addon-email-notices.php:884 ../includes/mycred-admin.php:764 ..
1972
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:542
1973
  msgid "User"
1974
  msgstr "用户"
1975
 
1976
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
1977
- #: notices/myCRED-addon-email-notices.php:885
1978
  msgid "Administrator"
1979
  msgstr "管理员"
1980
 
1981
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1982
  msgid "Both Administrator and User"
1983
  msgstr "管理员和用户"
1984
 
1985
- #: ../addons/email-notices/myCRED-addon-email-notices.php:780
1986
  msgid "Available Template Tags"
1987
  msgstr "可用的模板标签"
1988
 
1989
- #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1990
  msgid "Email Header"
1991
  msgstr "邮件头部"
1992
 
1993
- #: ../addons/email-notices/myCRED-addon-email-notices.php:851
1994
  msgid "Send this email notice when..."
1995
  msgstr "发送该邮件通知当..."
1996
 
1997
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1998
  msgid "Recipient:"
1999
  msgstr "收件人:"
2000
 
2001
- #: ../addons/email-notices/myCRED-addon-email-notices.php:886
2002
  msgid "Both"
2003
  msgstr "两者"
2004
 
2005
- #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
2006
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2007
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2008
  #: module-settings.php:526
2009
  msgid "Label"
2010
  msgstr "标签"
2011
 
2012
- #: ../addons/email-notices/myCRED-addon-email-notices.php:898
2013
  msgid "Reply-To Email:"
2014
  msgstr "回复给邮件:"
2015
 
2016
- #: ../addons/email-notices/myCRED-addon-email-notices.php:904
2017
  msgid "Save"
2018
  msgstr "保存"
2019
 
2020
- #: ../addons/email-notices/myCRED-addon-email-notices.php:916
2021
  msgid "CSS Styling"
2022
  msgstr "CSS样式"
2023
 
2024
- #: ../addons/email-notices/myCRED-addon-email-notices.php:932
2025
  msgid "Site Related"
2026
  msgstr "网站相关"
2027
 
2028
- #: ../addons/email-notices/myCRED-addon-email-notices.php:933
2029
  msgid "Your websites title"
2030
  msgstr "您的网站标题"
2031
 
2032
- #: ../addons/email-notices/myCRED-addon-email-notices.php:934
2033
  msgid "Your websites address"
2034
  msgstr "您的网站地址"
2035
 
2036
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
2037
  msgid "Your websites tagline (description)"
2038
  msgstr "您的网站标语(介绍)"
2039
 
2040
- #: ../addons/email-notices/myCRED-addon-email-notices.php:936
2041
  msgid "Your websites admin email"
2042
  msgstr "您的网站管理邮箱"
2043
 
2044
- #: ../addons/email-notices/myCRED-addon-email-notices.php:937
2045
  msgid "Total number of blog members"
2046
  msgstr "博客成员总数"
2047
 
2048
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
2049
- #: notices/myCRED-addon-email-notices.php:1018 ../addons/email-notices/myCRED-
2050
- #: addon-email-notices.php:1024
2051
  msgid "Email Notice Updated."
2052
  msgstr ""
2053
 
2054
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2055
  msgid "Email Notice Activated"
2056
  msgstr "邮件通知已激活"
2057
 
2058
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2059
  msgid "Email Notice Saved"
2060
  msgstr "邮件通知已保存"
2061
 
2062
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1040
2063
  msgid ""
2064
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2065
  "are not yet ready to use this email notice!"
2066
  msgstr "一旦通知 \"发布 \" 它将被激活!如果你还没有准备好要使用此邮件通知,请选择 \"保存草案 \"!"
2067
 
2068
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1042
2069
  #, php-format
2070
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2071
  msgstr "该通知将被激活于:<br /><strong>%1$s</strong>"
2072
 
2073
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1044
2074
  msgid "This email notice is active."
2075
  msgstr "此邮件通知已被激活。"
2076
 
2077
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2078
  msgid "Settings saved."
2079
  msgstr ""
2080
 
2081
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2082
  msgid "Unsubscribe"
2083
  msgstr ""
2084
 
2085
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1124
2086
  msgid "There are no email notifications yet."
2087
  msgstr ""
2088
 
2089
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1130
2090
  msgid "Save Changes"
2091
  msgstr ""
2092
 
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:765
2097
  msgid "Current Balance"
2098
  msgstr "当前余额"
2099
 
@@ -2207,7 +2207,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:912
2211
  msgid "Exchange Rate"
2212
  msgstr "汇率"
2213
 
@@ -2535,7 +2535,7 @@ msgid "Log"
2535
  msgstr "日志"
2536
 
2537
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2538
- #: includes/mycred-admin.php:735 ../includes/mycred-admin.php:770
2539
  msgid "Log Entry"
2540
  msgstr "日志条目"
2541
 
@@ -2616,7 +2616,7 @@ msgid "Reject"
2616
  msgstr "拒绝"
2617
 
2618
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2619
- #: modules/mycred-module-log.php:502 ../modules/mycred-module-settings.php:488 ..
2620
  #: modules/mycred-module-settings.php:507
2621
  msgid "Delete"
2622
  msgstr "删除"
@@ -3030,11 +3030,11 @@ msgstr "移除所有等级"
3030
  msgid "Assign Ranks to Users"
3031
  msgstr "分配等级给用户"
3032
 
3033
- #: ../addons/ranks/includes/mycred-rank-functions.php:197
3034
  msgid "mycred_get_users_rank() : Missing required user id"
3035
  msgstr "mycred_get_users_rank() : 缺失必要的用户ID"
3036
 
3037
- #: ../addons/ranks/includes/mycred-rank-functions.php:207
3038
  msgid "no rank"
3039
  msgstr "没有排名"
3040
 
@@ -3211,7 +3211,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:2277
3215
  msgid "Transfer"
3216
  msgstr "转账"
3217
 
@@ -3246,7 +3246,7 @@ msgid ""
3246
  msgstr "这个 myCRED 扩展还没有进行设置!在完成设置前,任何转账都是不允许的!"
3247
 
3248
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3249
- #: php:1009
3250
  msgid "Insufficient Funds. Please try a lower amount."
3251
  msgstr ""
3252
 
@@ -3400,24 +3400,24 @@ msgstr "显示用户余额"
3400
  msgid "Show users limit"
3401
  msgstr "显示用户限制"
3402
 
3403
- #: ../addons/transfer/myCRED-addon-transfer.php:798
3404
  msgid "username"
3405
  msgstr "用户名"
3406
 
3407
- #: ../addons/transfer/myCRED-addon-transfer.php:800
3408
  msgid "email"
3409
  msgstr "邮箱"
3410
 
3411
- #: ../addons/transfer/myCRED-addon-transfer.php:802
3412
  #, php-format
3413
  msgid "recipients %s"
3414
  msgstr "接收人 %s"
3415
 
3416
- #: ../addons/transfer/myCRED-addon-transfer.php:875
3417
  msgid "To:"
3418
  msgstr "给:"
3419
 
3420
- #: ../addons/transfer/myCRED-addon-transfer.php:881
3421
  msgid "Amount:"
3422
  msgstr "数目:"
3423
 
@@ -3469,8 +3469,8 @@ msgstr "排除"
3469
  msgid "Total: %s"
3470
  msgstr ""
3471
 
3472
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:252 ..
3473
- #: modules/mycred-module-log.php:253
3474
  msgid "History"
3475
  msgstr "历史"
3476
 
@@ -3542,15 +3542,15 @@ msgstr ""
3542
  msgid "%singular% balance"
3543
  msgstr "%singular% 余额"
3544
 
3545
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:771
3546
  msgid "Update Balance"
3547
  msgstr "更新余额"
3548
 
3549
- #: ../includes/mycred-admin.php:763
3550
  msgid "ID"
3551
  msgstr "ID"
3552
 
3553
- #: ../includes/mycred-admin.php:769
3554
  msgid "A positive or negative value"
3555
  msgstr "正值或负值"
3556
 
@@ -3602,290 +3602,298 @@ msgstr "和"
3602
  msgid "Available Template Tags:"
3603
  msgstr "可用的模板标签:"
3604
 
3605
- #: ../includes/mycred-functions.php:1643
3606
  msgid "Entire Log"
3607
  msgstr "全部日志"
3608
 
3609
- #: ../includes/mycred-functions.php:1648 ../includes/mycred-functions.php:1649
3610
  msgid "Displayed Rows"
3611
  msgstr "显示的行"
3612
 
3613
- #: ../includes/mycred-functions.php:1653
3614
  msgid "Search Results"
3615
  msgstr "搜索结果"
3616
 
3617
- #: ../includes/mycred-functions.php:1654
3618
  msgid "My Entire Log"
3619
  msgstr "我的整个日志"
3620
 
3621
- #: ../includes/mycred-functions.php:1774
3622
  msgid "ref empty"
3623
  msgstr "ref 为空"
3624
 
3625
- #: ../includes/mycred-functions.php:1782
3626
  msgid "incorrect user id format"
3627
  msgstr "不正确的用户ID格式"
3628
 
3629
- #: ../includes/mycred-functions.php:1795
3630
  msgid "incorrect unix timestamp (from):"
3631
  msgstr "不正确的unix时间戳(from):"
3632
 
3633
- #: ../includes/mycred-functions.php:1804
3634
  msgid "incorrect unix timestamp (to):"
3635
  msgstr "不正确的UNIX时间戳(to):"
3636
 
3637
- #: ../includes/mycred-functions.php:2166
3638
  msgid "Website Registration"
3639
  msgstr ""
3640
 
3641
- #: ../includes/mycred-functions.php:2167
3642
  msgid "Website Visit"
3643
  msgstr ""
3644
 
3645
- #: ../includes/mycred-functions.php:2168
 
 
 
 
 
 
 
 
3646
  msgid "Logging in"
3647
  msgstr ""
3648
 
3649
- #: ../includes/mycred-functions.php:2169
3650
  msgid "Publishing Content"
3651
  msgstr ""
3652
 
3653
- #: ../includes/mycred-functions.php:2170 ../modules/mycred-module-hooks.php:1168
3654
  msgid "Approved Comment"
3655
  msgstr "批准评论"
3656
 
3657
- #: ../includes/mycred-functions.php:2171
3658
  msgid "Unapproved Comment"
3659
  msgstr ""
3660
 
3661
- #: ../includes/mycred-functions.php:2172
3662
  msgid "SPAM Comment"
3663
  msgstr ""
3664
 
3665
- #: ../includes/mycred-functions.php:2173
3666
  msgid "Deleted Comment"
3667
  msgstr ""
3668
 
3669
- #: ../includes/mycred-functions.php:2174
3670
  msgid "Link Click"
3671
  msgstr ""
3672
 
3673
- #: ../includes/mycred-functions.php:2175
3674
  msgid "Watching Video"
3675
  msgstr ""
3676
 
3677
- #: ../includes/mycred-functions.php:2176
3678
  msgid "Visitor Referral"
3679
  msgstr ""
3680
 
3681
- #: ../includes/mycred-functions.php:2177
3682
  msgid "Signup Referral"
3683
  msgstr ""
3684
 
3685
- #: ../includes/mycred-functions.php:2181
3686
  msgid "New Profile Update"
3687
  msgstr ""
3688
 
3689
- #: ../includes/mycred-functions.php:2182
3690
  msgid "Avatar Upload"
3691
  msgstr ""
3692
 
3693
- #: ../includes/mycred-functions.php:2183
3694
  msgid "New Friendship"
3695
  msgstr ""
3696
 
3697
- #: ../includes/mycred-functions.php:2184
3698
  msgid "Ended Friendship"
3699
  msgstr ""
3700
 
3701
- #: ../includes/mycred-functions.php:2185
3702
  msgid "New Profile Comment"
3703
  msgstr ""
3704
 
3705
- #: ../includes/mycred-functions.php:2186
3706
  msgid "Profile Comment Deletion"
3707
  msgstr ""
3708
 
3709
- #: ../includes/mycred-functions.php:2187
3710
  msgid "New Message"
3711
  msgstr ""
3712
 
3713
- #: ../includes/mycred-functions.php:2188
3714
  msgid "Sending Gift"
3715
  msgstr ""
3716
 
3717
- #: ../includes/mycred-functions.php:2189
3718
  msgid "New Group"
3719
  msgstr ""
3720
 
3721
- #: ../includes/mycred-functions.php:2190
3722
  msgid "Deleted Group"
3723
  msgstr ""
3724
 
3725
- #: ../includes/mycred-functions.php:2191
3726
  msgid "New Group Forum Topic"
3727
  msgstr ""
3728
 
3729
- #: ../includes/mycred-functions.php:2192
3730
  msgid "Edit Group Forum Topic"
3731
  msgstr ""
3732
 
3733
- #: ../includes/mycred-functions.php:2193
3734
  msgid "New Group Forum Post"
3735
  msgstr ""
3736
 
3737
- #: ../includes/mycred-functions.php:2194
3738
  msgid "Edit Group Forum Post"
3739
  msgstr ""
3740
 
3741
- #: ../includes/mycred-functions.php:2195
3742
  msgid "Joining Group"
3743
  msgstr ""
3744
 
3745
- #: ../includes/mycred-functions.php:2196
3746
  msgid "Leaving Group"
3747
  msgstr ""
3748
 
3749
- #: ../includes/mycred-functions.php:2197
3750
  msgid "New Group Avatar"
3751
  msgstr ""
3752
 
3753
- #: ../includes/mycred-functions.php:2198
3754
  msgid "New Group Comment"
3755
  msgstr ""
3756
 
3757
- #: ../includes/mycred-functions.php:2202 ../plugins/mycred-hook-buddypress-media.
3758
  #: php:166
3759
  msgid "Photo Upload"
3760
  msgstr "照片上传"
3761
 
3762
- #: ../includes/mycred-functions.php:2203 ../plugins/mycred-hook-buddypress-media.
3763
  #: php:176
3764
  msgid "Video Upload"
3765
  msgstr "视频上传"
3766
 
3767
- #: ../includes/mycred-functions.php:2204 ../plugins/mycred-hook-buddypress-media.
3768
  #: php:186
3769
  msgid "Music Upload"
3770
  msgstr "音乐上传"
3771
 
3772
- #: ../includes/mycred-functions.php:2208
3773
  msgid "New Link"
3774
  msgstr ""
3775
 
3776
- #: ../includes/mycred-functions.php:2209
3777
  msgid "Link Voting"
3778
  msgstr ""
3779
 
3780
- #: ../includes/mycred-functions.php:2210
3781
  msgid "Link Update"
3782
  msgstr ""
3783
 
3784
- #: ../includes/mycred-functions.php:2214
3785
  msgid "New Forum (bbPress)"
3786
  msgstr ""
3787
 
3788
- #: ../includes/mycred-functions.php:2215
3789
  msgid "New Forum Topic (bbPress)"
3790
  msgstr ""
3791
 
3792
- #: ../includes/mycred-functions.php:2216
3793
  msgid "Favorited Topic (bbPress)"
3794
  msgstr ""
3795
 
3796
- #: ../includes/mycred-functions.php:2217
3797
  msgid "New Topic Reply (bbPress)"
3798
  msgstr ""
3799
 
3800
- #: ../includes/mycred-functions.php:2221
3801
  msgid "Form Submission (Contact Form 7)"
3802
  msgstr ""
3803
 
3804
- #: ../includes/mycred-functions.php:2224
3805
  msgid "Form Submission (Gravity Form)"
3806
  msgstr ""
3807
 
3808
- #: ../includes/mycred-functions.php:2227
3809
  msgid "New Forum Topic (SimplePress)"
3810
  msgstr ""
3811
 
3812
- #: ../includes/mycred-functions.php:2228
3813
  msgid "New Forum Post (SimplePress)"
3814
  msgstr ""
3815
 
3816
- #: ../includes/mycred-functions.php:2232
3817
  msgid "Poll Voting"
3818
  msgstr ""
3819
 
3820
- #: ../includes/mycred-functions.php:2235
3821
  msgid "Sending an Invite"
3822
  msgstr ""
3823
 
3824
- #: ../includes/mycred-functions.php:2236
3825
  msgid "Accepting an Invite"
3826
  msgstr ""
3827
 
3828
- #: ../includes/mycred-functions.php:2242
3829
  msgid "Banking Payout"
3830
  msgstr ""
3831
 
3832
- #: ../includes/mycred-functions.php:2245
3833
  msgid "buyCRED Purchase (PayPal Standard)"
3834
  msgstr ""
3835
 
3836
- #: ../includes/mycred-functions.php:2246
3837
  msgid "buyCRED Purchase (Skrill)"
3838
  msgstr ""
3839
 
3840
- #: ../includes/mycred-functions.php:2247
3841
  msgid "buyCRED Purchase (Zombaio)"
3842
  msgstr ""
3843
 
3844
- #: ../includes/mycred-functions.php:2248
3845
  msgid "buyCRED Purchase (NETBilling)"
3846
  msgstr ""
3847
 
3848
- #: ../includes/mycred-functions.php:2249
3849
  msgid "buyCRED Purchase (BitPay)"
3850
  msgstr ""
3851
 
3852
- #: ../includes/mycred-functions.php:2254
3853
  msgid "Coupon Purchase"
3854
  msgstr ""
3855
 
3856
- #: ../includes/mycred-functions.php:2257
3857
  msgid "Store Purchase (WooCommerce)"
3858
  msgstr ""
3859
 
3860
- #: ../includes/mycred-functions.php:2258
3861
  msgid "Store Purchase (MarketPress)"
3862
  msgstr ""
3863
 
3864
- #: ../includes/mycred-functions.php:2259
3865
  msgid "Store Purchase (WP E-Commerce)"
3866
  msgstr ""
3867
 
3868
- #: ../includes/mycred-functions.php:2264
3869
  msgid "Event Payment (Event Espresso)"
3870
  msgstr ""
3871
 
3872
- #: ../includes/mycred-functions.php:2265
3873
  msgid "Event Sale (Event Espresso)"
3874
  msgstr ""
3875
 
3876
- #: ../includes/mycred-functions.php:2269
3877
  msgid "Event Payment (Events Manager)"
3878
  msgstr ""
3879
 
3880
- #: ../includes/mycred-functions.php:2270
3881
  msgid "Event Sale (Events Manager)"
3882
  msgstr ""
3883
 
3884
- #: ../includes/mycred-functions.php:2274
3885
  msgid "Content Purchase / Sale"
3886
  msgstr ""
3887
 
3888
- #: ../includes/mycred-functions.php:2281
3889
  msgid "Manual Adjustment by Admin"
3890
  msgstr ""
3891
 
@@ -4158,7 +4166,7 @@ msgstr "没有可用的导出选项。"
4158
  msgid "Entry"
4159
  msgstr "条目"
4160
 
4161
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:464
4162
  msgid "User Missing"
4163
  msgstr "用户丢失"
4164
 
@@ -4370,60 +4378,60 @@ msgstr "错误 - 请重试"
4370
  msgid "A video ID is required for this shortcode"
4371
  msgstr "这个简码需要一个视频ID"
4372
 
4373
- #: ../includes/mycred-shortcodes.php:861 ../includes/mycred-shortcodes.php:955
4374
  msgid "Point types not found."
4375
  msgstr ""
4376
 
4377
- #: ../includes/mycred-shortcodes.php:867 ../includes/mycred-shortcodes.php:875 ..
4378
- #: includes/mycred-shortcodes.php:967 ../includes/mycred-shortcodes.php:987
4379
  #, php-format
4380
  msgid "You are excluded from using %s."
4381
  msgstr ""
4382
 
4383
- #: ../includes/mycred-shortcodes.php:871 ../includes/mycred-shortcodes.php:977
4384
  msgid "Your balance is too low to use this feature."
4385
  msgstr ""
4386
 
4387
- #: ../includes/mycred-shortcodes.php:892
4388
  #, php-format
4389
  msgid "Convert <span>%s</span> to <span>%s</span>"
4390
  msgstr ""
4391
 
4392
- #: ../includes/mycred-shortcodes.php:901
4393
  #, php-format
4394
  msgid "Your current %s balance"
4395
  msgstr ""
4396
 
4397
- #: ../includes/mycred-shortcodes.php:909
4398
  #, php-format
4399
  msgid "Minimum %s"
4400
  msgstr ""
4401
 
4402
- #: ../includes/mycred-shortcodes.php:913
4403
  #, php-format
4404
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4405
  msgstr ""
4406
 
4407
- #: ../includes/mycred-shortcodes.php:919
4408
  msgid "Exchange"
4409
  msgstr ""
4410
 
4411
- #: ../includes/mycred-shortcodes.php:1000
4412
  #, php-format
4413
  msgid "You must exchange at least %s!"
4414
  msgstr ""
4415
 
4416
- #: ../includes/mycred-shortcodes.php:1022
4417
  #, php-format
4418
  msgid "Exchange from %s"
4419
  msgstr ""
4420
 
4421
- #: ../includes/mycred-shortcodes.php:1034
4422
  #, php-format
4423
  msgid "Exchange to %s"
4424
  msgstr ""
4425
 
4426
- #: ../includes/mycred-shortcodes.php:1042
4427
  #, php-format
4428
  msgid "You have successfully exchanged %s into %s."
4429
  msgstr ""
@@ -4928,216 +4936,252 @@ msgstr ""
4928
 
4929
  #: ../modules/mycred-module-hooks.php:101
4930
  #, php-format
 
 
 
 
 
 
 
 
 
 
 
4931
  msgid "%plural% for logins"
4932
  msgstr "%plural% 给登录"
4933
 
4934
- #: ../modules/mycred-module-hooks.php:102
4935
  #, php-format
4936
  msgid ""
4937
  "Award %_plural% for logging in to your website. You can also set an optional "
4938
  "limit."
4939
  msgstr "奖励 %plural% 给登录您网站的用户。您还可以设置一个可选的限制。"
4940
 
4941
- #: ../modules/mycred-module-hooks.php:108
4942
  #, php-format
4943
  msgid "%plural% for publishing content"
4944
  msgstr "%plural% 给发布内容"
4945
 
4946
- #: ../modules/mycred-module-hooks.php:109
4947
  #, php-format
4948
  msgid ""
4949
  "Award %_plural% for publishing content on your website. If your custom post "
4950
  "type is not shown bellow, make sure it is set to \"Public\"."
4951
  msgstr "奖励 %_plural% 给在您的网站上发布内容。如果您的自定义文章类型没有显示在下面,请确保它是设置为 \"公开 \"。"
4952
 
4953
- #: ../modules/mycred-module-hooks.php:115
4954
  #, php-format
4955
  msgid "%plural% for comments"
4956
  msgstr "%plural% 给评论"
4957
 
4958
- #: ../modules/mycred-module-hooks.php:115
4959
  #, php-format
4960
  msgid "%plural% for Disqus comments"
4961
  msgstr "%plural% 给 Disqus 评论"
4962
 
4963
- #: ../modules/mycred-module-hooks.php:116
4964
  #, php-format
4965
  msgid "Award %_plural% for making comments."
4966
  msgstr "奖励 %_plural% 给发布评论。"
4967
 
4968
- #: ../modules/mycred-module-hooks.php:122
4969
  #, php-format
4970
  msgid "%plural% for clicking on links"
4971
  msgstr "%plural% 给点击链接"
4972
 
4973
- #: ../modules/mycred-module-hooks.php:123
4974
  msgid ""
4975
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4976
  "shortcode."
4977
  msgstr "奖励 %_plural% 给那些点击使用 [mycred_link] 简码生成的链接的用户。"
4978
 
4979
- #: ../modules/mycred-module-hooks.php:129
4980
  #, php-format
4981
  msgid "%plural% for viewing Videos"
4982
  msgstr "%plural% 给观看视频"
4983
 
4984
- #: ../modules/mycred-module-hooks.php:130
4985
  msgid ""
4986
  "Award %_plural% to users who watches videos embedded using the "
4987
  "[mycred_video] shortcode."
4988
  msgstr "奖励 %_plural% 给那些观看使用 [mycred_video] 简码添加的视频的用户。"
4989
 
4990
- #: ../modules/mycred-module-hooks.php:136
4991
  #, php-format
4992
  msgid "%plural% for referrals"
4993
  msgstr "%plural% 给推介"
4994
 
4995
- #: ../modules/mycred-module-hooks.php:137
4996
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
4997
  msgstr "奖励 %_plural% 给那些推介其他访客和/或新用户注册的用户。"
4998
 
4999
- #: ../modules/mycred-module-hooks.php:170
5000
  #, php-format
5001
  msgid "%s Hooks"
5002
  msgstr "%s 钩子"
5003
 
5004
- #: ../modules/mycred-module-hooks.php:173
5005
  msgid ""
5006
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5007
  "depending on their actions around your website."
5008
  msgstr "钩子是用来奖励或扣除用户 %_plural% 的,这取决于他们在您网站的操作实例。"
5009
 
5010
- #: ../modules/mycred-module-hooks.php:345 ../modules/mycred-module-hooks.php:439 .
5011
- #: ./modules/mycred-module-hooks.php:751 ../modules/mycred-module-hooks.php:764 ..
5012
- #: modules/mycred-module-hooks.php:800 ../modules/mycred-module-hooks.php:1180 ..
5013
- #: modules/mycred-module-hooks.php:1197 ../modules/mycred-module-hooks.php:1214 .
5014
- #: ./modules/mycred-module-hooks.php:2370 ../modules/mycred-module-hooks.php:2399
5015
- #: ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 .
5016
- #: ./plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ..
5017
- #: plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ..
5018
- #: plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ..
5019
- #: plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-
5020
- #: buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ..
5021
- #: plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-
5022
- #: buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ..
5023
- #: plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-
5024
- #: buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ..
5025
- #: plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-
5026
- #: buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ..
5027
- #: plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
5028
- #: buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-
5029
- #: hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ..
5030
- #: plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:
5031
- #: 446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-
5032
- #: buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-
5033
- #: hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ..
5034
- #: plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:
5035
- #: 978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-
5036
- #: buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ..
5037
- #: plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:
5038
- #: 1044 ../plugins/mycred-hook-contact-form7.php:141 ../plugins/mycred-hook-
5039
- #: gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.php:219 ..
5040
- #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-jetpack.php:
5041
- #: 506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-sharethis.
5042
- #: php:258 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-
5043
- #: simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ..
5044
- #: plugins/mycred-hook-simplepress.php:380
 
5045
  msgid "Log template"
5046
  msgstr "日志模板"
5047
 
5048
- #: ../modules/mycred-module-hooks.php:640 ../modules/mycred-module-hooks.php:2378
5049
- #: ../modules/mycred-module-hooks.php:2407 ../plugins/mycred-hook-invite-anyone.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5050
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5051
  msgid "Limit"
5052
  msgstr "限制"
5053
 
5054
- #: ../modules/mycred-module-hooks.php:745
5055
  #, php-format
5056
  msgid "%plural% for Posts"
5057
  msgstr "%plural% 给文章"
5058
 
5059
- #: ../modules/mycred-module-hooks.php:758
5060
  #, php-format
5061
  msgid "%plural% for Pages"
5062
  msgstr "%plural% 给页面"
5063
 
5064
- #: ../modules/mycred-module-hooks.php:794
5065
  #, php-format
5066
  msgid "%plural% for %s"
5067
  msgstr "%plural% 给 %s"
5068
 
5069
- #: ../modules/mycred-module-hooks.php:1166
5070
  msgid ""
5071
  "%plural% are only awarded when your website has been synced with the Disqus "
5072
  "server!"
5073
  msgstr "只在你的网站和 Disqus 服务器同步的时候才奖励 %plural% 。"
5074
 
5075
- #: ../modules/mycred-module-hooks.php:1171 ../modules/mycred-module-hooks.php:
5076
- #: 1188 ../modules/mycred-module-hooks.php:1205
5077
  msgid "Comment Author"
5078
  msgstr "评论作者"
5079
 
5080
- #: ../modules/mycred-module-hooks.php:1175 ../modules/mycred-module-hooks.php:
5081
- #: 1192 ../modules/mycred-module-hooks.php:1209
5082
- msgid "Content Author"
5083
- msgstr "内容作者"
5084
-
5085
- #: ../modules/mycred-module-hooks.php:1185
5086
  msgid "Comment Marked SPAM"
5087
  msgstr "评论标识为垃圾"
5088
 
5089
- #: ../modules/mycred-module-hooks.php:1202
5090
  msgid "Trashed / Unapproved Comments"
5091
  msgstr "丢弃/未经批准的评论"
5092
 
5093
- #: ../modules/mycred-module-hooks.php:1222
5094
  msgid "Limit per post"
5095
  msgstr "每篇文章的限制"
5096
 
5097
- #: ../modules/mycred-module-hooks.php:1224
5098
  msgid ""
5099
  "The number of comments per post that grants %_plural% to the comment author. "
5100
  "Use zero for unlimited."
5101
  msgstr "奖励 %_plural% 至评论作者的每个帖子的评论数。使用零为无限。"
5102
 
5103
- #: ../modules/mycred-module-hooks.php:1228
5104
  msgid "Limit per day"
5105
  msgstr "每天的限制"
5106
 
5107
- #: ../modules/mycred-module-hooks.php:1230
5108
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5109
  msgstr "每天奖励 %_plural% 的留言数。使用零为无限。"
5110
 
5111
- #: ../modules/mycred-module-hooks.php:1235
5112
  msgid ""
5113
  "%plural% is to be awarded even when comment authors reply to their own "
5114
  "comment."
5115
  msgstr "当评论作者回复自己的评论时同样奖励 %plural% 。"
5116
 
5117
- #: ../modules/mycred-module-hooks.php:1306
5118
  msgid "Once for each unique URL"
5119
  msgstr "每个唯一的链接奖励一次"
5120
 
5121
- #: ../modules/mycred-module-hooks.php:1307
5122
  msgid "Once for each unique link id"
5123
  msgstr "每个唯一的链接ID 奖励一次"
5124
 
5125
- #: ../modules/mycred-module-hooks.php:1500
5126
  msgid ""
5127
  "The default amount to award for clicking on links. You can override this in "
5128
  "the shortcode."
5129
  msgstr "预设的点击链接的奖励数量。您可以在简码中覆盖它。"
5130
 
5131
- #: ../modules/mycred-module-hooks.php:1507
5132
  #, php-format
5133
  msgid "Custom tags: %url%, %title% or %id%."
5134
  msgstr "自定义标签:%url% 、%title% 或 %id%。"
5135
 
5136
- #: ../modules/mycred-module-hooks.php:1518 ../modules/mycred-module-hooks.php:2481
5137
  msgid "Note!"
5138
  msgstr "注意!"
5139
 
5140
- #: ../modules/mycred-module-hooks.php:1518
5141
  msgid ""
5142
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5143
  "generate one automatically based on the value set under href. If you are "
@@ -5147,220 +5191,220 @@ msgstr ""
5147
  "如果使用 mycred_link 简码时没有设置ID,简码会自动根据 href 的值来生成一个。如果您使用这个函数来 \"共享 "
5148
  "\"内容,建议您通过ID进行限制。"
5149
 
5150
- #: ../modules/mycred-module-hooks.php:1520 ../modules/mycred-module-hooks.php:1878
5151
  msgid "Available Shortcode"
5152
  msgstr "可用简码"
5153
 
5154
- #: ../modules/mycred-module-hooks.php:1842
5155
  msgid "Amount to award for viewing videos."
5156
  msgstr "奖励给观看视频的数量"
5157
 
5158
- #: ../modules/mycred-module-hooks.php:1852
5159
  msgid "Award Logic"
5160
  msgstr "奖励逻辑"
5161
 
5162
- #: ../modules/mycred-module-hooks.php:1854
5163
  #, php-format
5164
  msgid "Select when %_plural% should be awarded or deducted."
5165
  msgstr "选择什么时候奖励或扣除 %_plural% 。"
5166
 
5167
- #: ../modules/mycred-module-hooks.php:1855
5168
  msgid "Play - As soon as video starts playing."
5169
  msgstr "播放 - 当视频开始播放。"
5170
 
5171
- #: ../modules/mycred-module-hooks.php:1856
5172
  msgid "Full - First when the entire video has played."
5173
  msgstr "完整 - 当整个视频已经播放完。"
5174
 
5175
- #: ../modules/mycred-module-hooks.php:1857
5176
  msgid "Interval - For each x number of seconds watched."
5177
  msgstr "间隔 - 每个观看了 X 秒。"
5178
 
5179
- #: ../modules/mycred-module-hooks.php:1862
5180
  msgid "Number of seconds"
5181
  msgstr "秒数"
5182
 
5183
- #: ../modules/mycred-module-hooks.php:1869
5184
  msgid "Leniency"
5185
  msgstr "宽大"
5186
 
5187
- #: ../modules/mycred-module-hooks.php:1871
5188
  msgid ""
5189
  "The maximum percentage a users view of a movie can differ from the actual "
5190
  "length."
5191
  msgstr "用户观看电影的最大百分比,可以不同于电影的实际长度。"
5192
 
5193
- #: ../modules/mycred-module-hooks.php:1874
5194
  msgid ""
5195
  "Do not set this value to zero! A lot of thing can happen while a user "
5196
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5197
  "buffering or play back errors."
5198
  msgstr "不要设置此值为零!用户观看一部电影可能发生很多事情,有时由于缓冲或播放错误,几秒钟就可以删除计数器。"
5199
 
5200
- #: ../modules/mycred-module-hooks.php:1942
5201
  msgid "Affiliate Program"
5202
  msgstr "联盟计划"
5203
 
5204
- #: ../modules/mycred-module-hooks.php:1951
5205
  msgid "Per Day"
5206
  msgstr "每天"
5207
 
5208
- #: ../modules/mycred-module-hooks.php:2063
5209
  msgid "Link"
5210
  msgstr "链接"
5211
 
5212
- #: ../modules/mycred-module-hooks.php:2364
5213
  msgid "Referring Visitors"
5214
  msgstr "推介访客"
5215
 
5216
- #: ../modules/mycred-module-hooks.php:2388 ../modules/mycred-module-hooks.php:2417
5217
  msgid "The number of referrals each member can make. Use zero for unlimited."
5218
  msgstr "每个用户可以推介的人数。使用零为无限。"
5219
 
5220
- #: ../modules/mycred-module-hooks.php:2392 ../modules/mycred-module-hooks.php:2421
5221
  msgid "Referring Signups"
5222
  msgstr "推介注册"
5223
 
5224
- #: ../modules/mycred-module-hooks.php:2396
5225
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5226
  msgstr "访客禁用 Cookies 的话是不奖励 %_plural% 的。"
5227
 
5228
- #: ../modules/mycred-module-hooks.php:2423
5229
  msgid "Registrations are disabled."
5230
  msgstr "注册被禁用。"
5231
 
5232
- #: ../modules/mycred-module-hooks.php:2430
5233
  msgid "Referral Links"
5234
  msgstr "推介链接"
5235
 
5236
- #: ../modules/mycred-module-hooks.php:2434
5237
  msgid "Assign numeric referral IDs to each user."
5238
  msgstr "分配数字推介ID给每个用户。"
5239
 
5240
- #: ../modules/mycred-module-hooks.php:2435 ../modules/mycred-module-hooks.php:2441
5241
  msgid "Example"
5242
  msgstr "例如"
5243
 
5244
- #: ../modules/mycred-module-hooks.php:2440
5245
  msgid "Assign usernames as IDs for each user."
5246
  msgstr "分配用户名作为ID给每个用户。"
5247
 
5248
- #: ../modules/mycred-module-hooks.php:2444
5249
  msgid "IP Limit"
5250
  msgstr "IP限制"
5251
 
5252
- #: ../modules/mycred-module-hooks.php:2448
5253
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5254
  msgstr "每个IP可获得奖励 %_plural% 的次数。使用零为无限。"
5255
 
5256
- #: ../modules/mycred-module-hooks.php:2452 ../modules/mycred-module-hooks.php:2485
5257
  msgid "BuddyPress Profile"
5258
  msgstr "BuddyPress 个人资料"
5259
 
5260
- #: ../modules/mycred-module-hooks.php:2455
5261
  msgid "Insert Link in users Profile"
5262
  msgstr "在用户的个人资料插入链接"
5263
 
5264
- #: ../modules/mycred-module-hooks.php:2456
5265
  msgid ""
5266
  "Option to inser the referral link in users profiles. Links will only be "
5267
  "visible to users viewing their own profiles or administrators."
5268
  msgstr "选项用来在用户的个人资料中插入推介链接。链接只对管理员或用户自己查看他们的个人资料时可见。"
5269
 
5270
- #: ../modules/mycred-module-hooks.php:2462
5271
  msgid "Leave empty to hide."
5272
  msgstr "留空则隐藏。"
5273
 
5274
- #: ../modules/mycred-module-hooks.php:2465
5275
  msgid "Description"
5276
  msgstr "描述"
5277
 
5278
- #: ../modules/mycred-module-hooks.php:2466
5279
  msgid "Optional description to insert under the link."
5280
  msgstr "(可选)插入到链接中的描述"
5281
 
5282
- #: ../modules/mycred-module-hooks.php:2478
5283
  msgid "Profile Positioning"
5284
  msgstr "个人资料定位"
5285
 
5286
- #: ../modules/mycred-module-hooks.php:2480
5287
  msgid ""
5288
  "You can move around the referral link on your users profile by changing the "
5289
  "position. Increase to move up, decrease to move down."
5290
  msgstr "您可以在个人资料中更改推荐链接的位置。增加则向上移动,减少则向下移动。"
5291
 
5292
- #: ../modules/mycred-module-hooks.php:2481
5293
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5294
  msgstr "你不能移动推介链接到用户的\"基本\"资料信息上方!"
5295
 
5296
- #: ../modules/mycred-module-hooks.php:2487
5297
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5298
  msgstr "需要启用 BuddyPress 个人资料扩展。"
5299
 
5300
- #: ../modules/mycred-module-log.php:187 ../modules/mycred-module-log.php:208 ..
5301
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5302
  msgid "Access denied for this action"
5303
  msgstr "拒绝访问这个动作"
5304
 
5305
- #: ../modules/mycred-module-log.php:194
5306
  msgid "Row Deleted"
5307
  msgstr "行已删除"
5308
 
5309
- #: ../modules/mycred-module-log.php:221
5310
  msgid "Log entry not found"
5311
  msgstr "没有找到日志条目"
5312
 
5313
- #: ../modules/mycred-module-log.php:234
5314
  msgid "Entry Updated"
5315
  msgstr "项目更新"
5316
 
5317
- #: ../modules/mycred-module-log.php:288 ../modules/mycred-module-settings.php:436
5318
  msgid "Entries"
5319
  msgstr "条目"
5320
 
5321
- #: ../modules/mycred-module-log.php:303 ../modules/mycred-module-log.php:383 ..
5322
- #: modules/mycred-module-log.php:627 ../modules/mycred-module-settings.php:574
5323
  msgid "Export"
5324
  msgstr "导出"
5325
 
5326
- #: ../modules/mycred-module-log.php:309
5327
  msgid "Search results for"
5328
  msgstr "搜索结果"
5329
 
5330
- #: ../modules/mycred-module-log.php:377
5331
  #, php-format
5332
  msgid "%s Log"
5333
  msgstr "%s 日志"
5334
 
5335
- #: ../modules/mycred-module-log.php:502
5336
  msgid "Edit"
5337
  msgstr "编辑"
5338
 
5339
- #: ../modules/mycred-module-log.php:543
5340
  msgid "Time"
5341
  msgstr "时间"
5342
 
5343
- #: ../modules/mycred-module-log.php:547
5344
  msgid "Current Log Entry"
5345
  msgstr "当前日志条目"
5346
 
5347
- #: ../modules/mycred-module-log.php:549
5348
  msgid "The current saved log entry"
5349
  msgstr "当前保存的日志条目"
5350
 
5351
- #: ../modules/mycred-module-log.php:552
5352
  msgid "Adjust Log Entry"
5353
  msgstr "调整日志条目"
5354
 
5355
- #: ../modules/mycred-module-log.php:554
5356
  msgid "The new log entry"
5357
  msgstr "新的日志条目"
5358
 
5359
- #: ../modules/mycred-module-log.php:557
5360
  msgid "Update Log Entry"
5361
  msgstr "更新日志条目"
5362
 
5363
- #: ../modules/mycred-module-log.php:621
5364
  #, php-format
5365
  msgid "My %s History"
5366
  msgstr "我的 %s 历史"
@@ -5591,8 +5635,8 @@ msgstr "%plural% 给新话题"
5591
  msgid "Forum authors can receive %_plural% for creating new topics."
5592
  msgstr "论坛作者新建话题可以获得 %_plural% 。"
5593
 
5594
- #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 .
5595
- #: ./plugins/mycred-hook-simplepress.php:336
5596
  #, php-format
5597
  msgid "%plural% for Topic Deletion"
5598
  msgstr "%plural% 给删除话题"
@@ -5628,6 +5672,11 @@ msgstr "当话题作者回复自己的话题时同样奖励 %_plural%"
5628
  msgid "Show users %_plural% balance in replies"
5629
  msgstr "在回复中显示用户的 %_plural% 余额"
5630
 
 
 
 
 
 
5631
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5632
  msgid "BuddyPress: Gallery Actions"
5633
  msgstr "BuddyPress:相册操作"
@@ -6004,19 +6053,15 @@ msgstr "当话题作者在他们自己的话题发布帖子时同样奖励 %_plu
6004
  msgid "%plural% for Topic Post Deletion"
6005
  msgstr "%plural% 给话题帖子删除"
6006
 
6007
- #: ../plugins/mycred-hook-woocommerce.php:65
6008
  msgid "Reward with %plural%"
6009
  msgstr ""
6010
 
6011
- #: ../plugins/mycred-hook-woocommerce.php:70
6012
- msgid "User is excluded from this point type."
6013
- msgstr ""
6014
-
6015
- #: ../plugins/mycred-hook-woocommerce.php:199
6016
  msgid "WooCommerce Product Reviews"
6017
  msgstr ""
6018
 
6019
- #: ../plugins/mycred-hook-woocommerce.php:200
6020
  #, php-format
6021
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6022
  msgstr ""
@@ -6046,3 +6091,5 @@ msgstr "WP-Polls"
6046
  #, php-format
6047
  msgid "Awards %_plural% for users voting in polls."
6048
  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: 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
  "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"
92
  msgstr "日志条目更新"
93
 
94
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
95
+ #: notices.php:718 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
96
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
97
  msgid "Setup"
98
  msgstr "设置"
118
  msgstr "这个钩子没有设置"
119
 
120
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
121
+ #: 1558
122
  msgid "No limit"
123
  msgstr "没有限制"
124
 
144
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
145
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
146
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
147
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:868
148
  msgid "Select"
149
  msgstr "选择"
150
 
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 "拒绝访问"
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
 
508
  #: addons/gateway/carts/mycred-marketpress.php:424 ..
509
  #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
510
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
511
+ #: modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
512
+ #: modules/mycred-module-hooks.php:2098 ../plugins/mycred-hook-badgeOS.php:115 ..
513
  #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
514
  #: plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
515
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
516
  #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
517
+ #: php:298 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
518
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
519
  msgid "Log Template"
520
  msgstr "日志模板"
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
 
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
 
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
 
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 "操作"
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
 
1531
  msgstr "用法"
1532
 
1533
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1534
+ #: transfer.php:243 ../modules/mycred-module-hooks.php:1472 ../modules/mycred-
1535
+ #: module-hooks.php:1763
1536
  msgid "Limits"
1537
  msgstr "限制"
1538
 
1545
  msgstr "还没有使用"
1546
 
1547
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1548
+ #: php:2203
1549
  msgid "Total"
1550
  msgstr "全部"
1551
 
1707
  msgstr "申请优惠券"
1708
 
1709
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1710
+ #: notices/myCRED-addon-email-notices.php:1115
1711
  msgid "Email Notice"
1712
  msgstr "邮件通知"
1713
 
1892
  msgstr "默认的电子邮件设置。这些设置可以在编辑邮件时被单独覆盖。"
1893
 
1894
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1895
+ #: notices/myCRED-addon-email-notices.php:782
1896
  msgid "Email Settings"
1897
  msgstr "邮件设置"
1898
 
1899
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1900
+ #: notices/myCRED-addon-email-notices.php:905
1901
  msgid "Senders Name:"
1902
  msgstr "发件人名称:"
1903
 
1904
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1905
+ #: notices/myCRED-addon-email-notices.php:907
1906
  msgid "Senders Email:"
1907
  msgstr "发件人的邮箱:"
1908
 
1926
  msgid "Ignored if HTML is not allowed in emails."
1927
  msgstr "如果邮件不允许使用HTML,请忽略。"
1928
 
1929
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:716 ../addons/email-
1930
+ #: notices/myCRED-addon-email-notices.php:831
1931
  msgid "Email Subject"
1932
  msgstr "邮件主题"
1933
 
1934
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:717
1935
  msgid "Status"
1936
  msgstr "状态"
1937
 
1938
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1939
  msgid "Not Active"
1940
  msgstr "没启用"
1941
 
1942
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:739
1943
  #, php-format
1944
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1945
  msgstr "预定:<br /><strong>%1$s</strong>"
1946
 
1947
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:743
1948
  msgid "Active"
1949
  msgstr "状态"
1950
 
1951
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:745
1952
  #, php-format
1953
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1954
  msgstr "使用中 - 最后运行:<br /><strong>%1$s</strong>"
1955
 
1956
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755
1957
  msgid "Email is sent when"
1958
  msgstr "发送邮件,当"
1959
 
1960
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1961
  msgid "Missing instance for this notice!"
1962
  msgstr "本通知缺少实例!"
1963
 
1964
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
1965
+ #: notices/myCRED-addon-email-notices.php:768 ../addons/email-notices/myCRED-
1966
+ #: addon-email-notices.php:770
1967
  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
 
1976
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:768 ../addons/email-
1977
+ #: notices/myCRED-addon-email-notices.php:896
1978
  msgid "Administrator"
1979
  msgstr "管理员"
1980
 
1981
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:770
1982
  msgid "Both Administrator and User"
1983
  msgstr "管理员和用户"
1984
 
1985
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1986
  msgid "Available Template Tags"
1987
  msgstr "可用的模板标签"
1988
 
1989
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:802
1990
  msgid "Email Header"
1991
  msgstr "邮件头部"
1992
 
1993
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:862
1994
  msgid "Send this email notice when..."
1995
  msgstr "发送该邮件通知当..."
1996
 
1997
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:893
1998
  msgid "Recipient:"
1999
  msgstr "收件人:"
2000
 
2001
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:897
2002
  msgid "Both"
2003
  msgstr "两者"
2004
 
2005
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:901 ..
2006
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2007
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2008
  #: module-settings.php:526
2009
  msgid "Label"
2010
  msgstr "标签"
2011
 
2012
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2013
  msgid "Reply-To Email:"
2014
  msgstr "回复给邮件:"
2015
 
2016
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:915
2017
  msgid "Save"
2018
  msgstr "保存"
2019
 
2020
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:927
2021
  msgid "CSS Styling"
2022
  msgstr "CSS样式"
2023
 
2024
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:943
2025
  msgid "Site Related"
2026
  msgstr "网站相关"
2027
 
2028
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:944
2029
  msgid "Your websites title"
2030
  msgstr "您的网站标题"
2031
 
2032
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:945
2033
  msgid "Your websites address"
2034
  msgstr "您的网站地址"
2035
 
2036
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:946
2037
  msgid "Your websites tagline (description)"
2038
  msgstr "您的网站标语(介绍)"
2039
 
2040
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:947
2041
  msgid "Your websites admin email"
2042
  msgstr "您的网站管理邮箱"
2043
 
2044
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:948
2045
  msgid "Total number of blog members"
2046
  msgstr "博客成员总数"
2047
 
2048
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1026 ../addons/email-
2049
+ #: notices/myCRED-addon-email-notices.php:1029 ../addons/email-notices/myCRED-
2050
+ #: addon-email-notices.php:1035
2051
  msgid "Email Notice Updated."
2052
  msgstr ""
2053
 
2054
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1031
2055
  msgid "Email Notice Activated"
2056
  msgstr "邮件通知已激活"
2057
 
2058
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1032
2059
  msgid "Email Notice Saved"
2060
  msgstr "邮件通知已保存"
2061
 
2062
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2063
  msgid ""
2064
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2065
  "are not yet ready to use this email notice!"
2066
  msgstr "一旦通知 \"发布 \" 它将被激活!如果你还没有准备好要使用此邮件通知,请选择 \"保存草案 \"!"
2067
 
2068
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2069
  #, php-format
2070
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2071
  msgstr "该通知将被激活于:<br /><strong>%1$s</strong>"
2072
 
2073
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2074
  msgid "This email notice is active."
2075
  msgstr "此邮件通知已被激活。"
2076
 
2077
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1066
2078
  msgid "Settings saved."
2079
  msgstr ""
2080
 
2081
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1114
2082
  msgid "Unsubscribe"
2083
  msgstr ""
2084
 
2085
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1135
2086
  msgid "There are no email notifications yet."
2087
  msgstr ""
2088
 
2089
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1141
2090
  msgid "Save Changes"
2091
  msgstr ""
2092
 
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
  #: 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
 
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
 
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 "删除"
3030
  msgid "Assign Ranks to Users"
3031
  msgstr "分配等级给用户"
3032
 
3033
+ #: ../addons/ranks/includes/mycred-rank-functions.php:229
3034
  msgid "mycred_get_users_rank() : Missing required user id"
3035
  msgstr "mycred_get_users_rank() : 缺失必要的用户ID"
3036
 
3037
+ #: ../addons/ranks/includes/mycred-rank-functions.php:238
3038
  msgid "no rank"
3039
  msgstr "没有排名"
3040
 
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
  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
 
3400
  msgid "Show users limit"
3401
  msgstr "显示用户限制"
3402
 
3403
+ #: ../addons/transfer/myCRED-addon-transfer.php:800
3404
  msgid "username"
3405
  msgstr "用户名"
3406
 
3407
+ #: ../addons/transfer/myCRED-addon-transfer.php:802
3408
  msgid "email"
3409
  msgstr "邮箱"
3410
 
3411
+ #: ../addons/transfer/myCRED-addon-transfer.php:804
3412
  #, php-format
3413
  msgid "recipients %s"
3414
  msgstr "接收人 %s"
3415
 
3416
+ #: ../addons/transfer/myCRED-addon-transfer.php:877
3417
  msgid "To:"
3418
  msgstr "给:"
3419
 
3420
+ #: ../addons/transfer/myCRED-addon-transfer.php:883
3421
  msgid "Amount:"
3422
  msgstr "数目:"
3423
 
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
 
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
  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
 
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
 
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 ""
4936
 
4937
  #: ../modules/mycred-module-hooks.php:101
4938
  #, php-format
4939
+ msgid "%plural% for viewing content"
4940
+ msgstr ""
4941
+
4942
+ #: ../modules/mycred-module-hooks.php:102
4943
+ msgid ""
4944
+ "Award %_plural% to your users for viewing posts and / or %plural% to your "
4945
+ "authors for members viewing their content."
4946
+ msgstr ""
4947
+
4948
+ #: ../modules/mycred-module-hooks.php:108
4949
+ #, php-format
4950
  msgid "%plural% for logins"
4951
  msgstr "%plural% 给登录"
4952
 
4953
+ #: ../modules/mycred-module-hooks.php:109
4954
  #, php-format
4955
  msgid ""
4956
  "Award %_plural% for logging in to your website. You can also set an optional "
4957
  "limit."
4958
  msgstr "奖励 %plural% 给登录您网站的用户。您还可以设置一个可选的限制。"
4959
 
4960
+ #: ../modules/mycred-module-hooks.php:115
4961
  #, php-format
4962
  msgid "%plural% for publishing content"
4963
  msgstr "%plural% 给发布内容"
4964
 
4965
+ #: ../modules/mycred-module-hooks.php:116
4966
  #, php-format
4967
  msgid ""
4968
  "Award %_plural% for publishing content on your website. If your custom post "
4969
  "type is not shown bellow, make sure it is set to \"Public\"."
4970
  msgstr "奖励 %_plural% 给在您的网站上发布内容。如果您的自定义文章类型没有显示在下面,请确保它是设置为 \"公开 \"。"
4971
 
4972
+ #: ../modules/mycred-module-hooks.php:122
4973
  #, php-format
4974
  msgid "%plural% for comments"
4975
  msgstr "%plural% 给评论"
4976
 
4977
+ #: ../modules/mycred-module-hooks.php:122
4978
  #, php-format
4979
  msgid "%plural% for Disqus comments"
4980
  msgstr "%plural% 给 Disqus 评论"
4981
 
4982
+ #: ../modules/mycred-module-hooks.php:123
4983
  #, php-format
4984
  msgid "Award %_plural% for making comments."
4985
  msgstr "奖励 %_plural% 给发布评论。"
4986
 
4987
+ #: ../modules/mycred-module-hooks.php:129
4988
  #, php-format
4989
  msgid "%plural% for clicking on links"
4990
  msgstr "%plural% 给点击链接"
4991
 
4992
+ #: ../modules/mycred-module-hooks.php:130
4993
  msgid ""
4994
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4995
  "shortcode."
4996
  msgstr "奖励 %_plural% 给那些点击使用 [mycred_link] 简码生成的链接的用户。"
4997
 
4998
+ #: ../modules/mycred-module-hooks.php:136
4999
  #, php-format
5000
  msgid "%plural% for viewing Videos"
5001
  msgstr "%plural% 给观看视频"
5002
 
5003
+ #: ../modules/mycred-module-hooks.php:137
5004
  msgid ""
5005
  "Award %_plural% to users who watches videos embedded using the "
5006
  "[mycred_video] shortcode."
5007
  msgstr "奖励 %_plural% 给那些观看使用 [mycred_video] 简码添加的视频的用户。"
5008
 
5009
+ #: ../modules/mycred-module-hooks.php:143
5010
  #, php-format
5011
  msgid "%plural% for referrals"
5012
  msgstr "%plural% 给推介"
5013
 
5014
+ #: ../modules/mycred-module-hooks.php:144
5015
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5016
  msgstr "奖励 %_plural% 给那些推介其他访客和/或新用户注册的用户。"
5017
 
5018
+ #: ../modules/mycred-module-hooks.php:177
5019
  #, php-format
5020
  msgid "%s Hooks"
5021
  msgstr "%s 钩子"
5022
 
5023
+ #: ../modules/mycred-module-hooks.php:180
5024
  msgid ""
5025
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5026
  "depending on their actions around your website."
5027
  msgstr "钩子是用来奖励或扣除用户 %_plural% 的,这取决于他们在您网站的操作实例。"
5028
 
5029
+ #: ../modules/mycred-module-hooks.php:352 ../modules/mycred-module-hooks.php:446 .
5030
+ #: ./modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:622 ..
5031
+ #: modules/mycred-module-hooks.php:684 ../modules/mycred-module-hooks.php:1004 ..
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.
5039
+ #: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
5040
+ #: buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ..
5041
+ #: plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-
5042
+ #: buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ..
5043
+ #: plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-
5044
+ #: buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ..
5045
+ #: plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-
5046
+ #: buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ..
5047
+ #: plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-
5048
+ #: buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ..
5049
+ #: plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:
5050
+ #: 407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-
5051
+ #: buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-
5052
+ #: hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ..
5053
+ #: plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:
5054
+ #: 939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-
5055
+ #: buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-
5056
+ #: hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ..
5057
+ #: plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:
5058
+ #: 1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-
5059
+ #: form7.php:141 ../plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-
5060
+ #: hook-invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:240 ..
5061
+ #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5062
+ #: plugins/mycred-hook-sharethis.php:258 ../plugins/mycred-hook-simplepress.php:
5063
+ #: 330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-
5064
+ #: simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
5065
  msgid "Log template"
5066
  msgstr "日志模板"
5067
 
5068
+ #: ../modules/mycred-module-hooks.php:586
5069
+ #, php-format
5070
+ msgid "%plural% for viewing Posts"
5071
+ msgstr ""
5072
+
5073
+ #: ../modules/mycred-module-hooks.php:589 ../modules/mycred-module-hooks.php:600 .
5074
+ #: ./modules/mycred-module-hooks.php:614 ../modules/mycred-module-hooks.php:625 ..
5075
+ #: modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:687
5076
+ msgid "Member"
5077
+ msgstr ""
5078
+
5079
+ #: ../modules/mycred-module-hooks.php:593 ../modules/mycred-module-hooks.php:606 .
5080
+ #: ./modules/mycred-module-hooks.php:618 ../modules/mycred-module-hooks.php:631 ..
5081
+ #: modules/mycred-module-hooks.php:680 ../modules/mycred-module-hooks.php:693 ..
5082
+ #: modules/mycred-module-hooks.php:1428 ../modules/mycred-module-hooks.php:1445 .
5083
+ #: ./modules/mycred-module-hooks.php:1462
5084
+ msgid "Content Author"
5085
+ msgstr "内容作者"
5086
+
5087
+ #: ../modules/mycred-module-hooks.php:611
5088
+ #, php-format
5089
+ msgid "%plural% for viewing Pages"
5090
+ msgstr ""
5091
+
5092
+ #: ../modules/mycred-module-hooks.php:673
5093
+ #, php-format
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 "限制"
5102
 
5103
+ #: ../modules/mycred-module-hooks.php:998
5104
  #, php-format
5105
  msgid "%plural% for Posts"
5106
  msgstr "%plural% 给文章"
5107
 
5108
+ #: ../modules/mycred-module-hooks.php:1011
5109
  #, php-format
5110
  msgid "%plural% for Pages"
5111
  msgstr "%plural% 给页面"
5112
 
5113
+ #: ../modules/mycred-module-hooks.php:1047
5114
  #, php-format
5115
  msgid "%plural% for %s"
5116
  msgstr "%plural% 给 %s"
5117
 
5118
+ #: ../modules/mycred-module-hooks.php:1419
5119
  msgid ""
5120
  "%plural% are only awarded when your website has been synced with the Disqus "
5121
  "server!"
5122
  msgstr "只在你的网站和 Disqus 服务器同步的时候才奖励 %plural% 。"
5123
 
5124
+ #: ../modules/mycred-module-hooks.php:1424 ../modules/mycred-module-hooks.php:
5125
+ #: 1441 ../modules/mycred-module-hooks.php:1458
5126
  msgid "Comment Author"
5127
  msgstr "评论作者"
5128
 
5129
+ #: ../modules/mycred-module-hooks.php:1438
 
 
 
 
 
5130
  msgid "Comment Marked SPAM"
5131
  msgstr "评论标识为垃圾"
5132
 
5133
+ #: ../modules/mycred-module-hooks.php:1455
5134
  msgid "Trashed / Unapproved Comments"
5135
  msgstr "丢弃/未经批准的评论"
5136
 
5137
+ #: ../modules/mycred-module-hooks.php:1475
5138
  msgid "Limit per post"
5139
  msgstr "每篇文章的限制"
5140
 
5141
+ #: ../modules/mycred-module-hooks.php:1477
5142
  msgid ""
5143
  "The number of comments per post that grants %_plural% to the comment author. "
5144
  "Use zero for unlimited."
5145
  msgstr "奖励 %_plural% 至评论作者的每个帖子的评论数。使用零为无限。"
5146
 
5147
+ #: ../modules/mycred-module-hooks.php:1481
5148
  msgid "Limit per day"
5149
  msgstr "每天的限制"
5150
 
5151
+ #: ../modules/mycred-module-hooks.php:1483
5152
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5153
  msgstr "每天奖励 %_plural% 的留言数。使用零为无限。"
5154
 
5155
+ #: ../modules/mycred-module-hooks.php:1488
5156
  msgid ""
5157
  "%plural% is to be awarded even when comment authors reply to their own "
5158
  "comment."
5159
  msgstr "当评论作者回复自己的评论时同样奖励 %plural% 。"
5160
 
5161
+ #: ../modules/mycred-module-hooks.php:1559
5162
  msgid "Once for each unique URL"
5163
  msgstr "每个唯一的链接奖励一次"
5164
 
5165
+ #: ../modules/mycred-module-hooks.php:1560
5166
  msgid "Once for each unique link id"
5167
  msgstr "每个唯一的链接ID 奖励一次"
5168
 
5169
+ #: ../modules/mycred-module-hooks.php:1753
5170
  msgid ""
5171
  "The default amount to award for clicking on links. You can override this in "
5172
  "the shortcode."
5173
  msgstr "预设的点击链接的奖励数量。您可以在简码中覆盖它。"
5174
 
5175
+ #: ../modules/mycred-module-hooks.php:1760
5176
  #, php-format
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
 
5184
+ #: ../modules/mycred-module-hooks.php:1771
5185
  msgid ""
5186
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5187
  "generate one automatically based on the value set under href. If you are "
5191
  "如果使用 mycred_link 简码时没有设置ID,简码会自动根据 href 的值来生成一个。如果您使用这个函数来 \"共享 "
5192
  "\"内容,建议您通过ID进行限制。"
5193
 
5194
+ #: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2131
5195
  msgid "Available Shortcode"
5196
  msgstr "可用简码"
5197
 
5198
+ #: ../modules/mycred-module-hooks.php:2095
5199
  msgid "Amount to award for viewing videos."
5200
  msgstr "奖励给观看视频的数量"
5201
 
5202
+ #: ../modules/mycred-module-hooks.php:2105
5203
  msgid "Award Logic"
5204
  msgstr "奖励逻辑"
5205
 
5206
+ #: ../modules/mycred-module-hooks.php:2107
5207
  #, php-format
5208
  msgid "Select when %_plural% should be awarded or deducted."
5209
  msgstr "选择什么时候奖励或扣除 %_plural% 。"
5210
 
5211
+ #: ../modules/mycred-module-hooks.php:2108
5212
  msgid "Play - As soon as video starts playing."
5213
  msgstr "播放 - 当视频开始播放。"
5214
 
5215
+ #: ../modules/mycred-module-hooks.php:2109
5216
  msgid "Full - First when the entire video has played."
5217
  msgstr "完整 - 当整个视频已经播放完。"
5218
 
5219
+ #: ../modules/mycred-module-hooks.php:2110
5220
  msgid "Interval - For each x number of seconds watched."
5221
  msgstr "间隔 - 每个观看了 X 秒。"
5222
 
5223
+ #: ../modules/mycred-module-hooks.php:2115
5224
  msgid "Number of seconds"
5225
  msgstr "秒数"
5226
 
5227
+ #: ../modules/mycred-module-hooks.php:2122
5228
  msgid "Leniency"
5229
  msgstr "宽大"
5230
 
5231
+ #: ../modules/mycred-module-hooks.php:2124
5232
  msgid ""
5233
  "The maximum percentage a users view of a movie can differ from the actual "
5234
  "length."
5235
  msgstr "用户观看电影的最大百分比,可以不同于电影的实际长度。"
5236
 
5237
+ #: ../modules/mycred-module-hooks.php:2127
5238
  msgid ""
5239
  "Do not set this value to zero! A lot of thing can happen while a user "
5240
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5241
  "buffering or play back errors."
5242
  msgstr "不要设置此值为零!用户观看一部电影可能发生很多事情,有时由于缓冲或播放错误,几秒钟就可以删除计数器。"
5243
 
5244
+ #: ../modules/mycred-module-hooks.php:2195
5245
  msgid "Affiliate Program"
5246
  msgstr "联盟计划"
5247
 
5248
+ #: ../modules/mycred-module-hooks.php:2204
5249
  msgid "Per Day"
5250
  msgstr "每天"
5251
 
5252
+ #: ../modules/mycred-module-hooks.php:2316
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
 
5344
+ #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
5345
  #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5346
  msgid "Access denied for this action"
5347
  msgstr "拒绝访问这个动作"
5348
 
5349
+ #: ../modules/mycred-module-log.php:196
5350
  msgid "Row Deleted"
5351
  msgstr "行已删除"
5352
 
5353
+ #: ../modules/mycred-module-log.php:223
5354
  msgid "Log entry not found"
5355
  msgstr "没有找到日志条目"
5356
 
5357
+ #: ../modules/mycred-module-log.php:236
5358
  msgid "Entry Updated"
5359
  msgstr "项目更新"
5360
 
5361
+ #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:436
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
 
5370
+ #: ../modules/mycred-module-log.php:311
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 历史"
5635
  msgid "Forum authors can receive %_plural% for creating new topics."
5636
  msgstr "论坛作者新建话题可以获得 %_plural% 。"
5637
 
5638
+ #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-simplepress.php:
5639
+ #: 336
5640
  #, php-format
5641
  msgid "%plural% for Topic Deletion"
5642
  msgstr "%plural% 给删除话题"
5672
  msgid "Show users %_plural% balance in replies"
5673
  msgstr "在回复中显示用户的 %_plural% 余额"
5674
 
5675
+ #: ../plugins/mycred-hook-bbPress.php:568
5676
+ #, php-format
5677
+ msgid "%plural% for Reply Deletion"
5678
+ msgstr ""
5679
+
5680
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5681
  msgid "BuddyPress: Gallery Actions"
5682
  msgstr "BuddyPress:相册操作"
6053
  msgid "%plural% for Topic Post Deletion"
6054
  msgstr "%plural% 给话题帖子删除"
6055
 
6056
+ #: ../plugins/mycred-hook-woocommerce.php:67
6057
  msgid "Reward with %plural%"
6058
  msgstr ""
6059
 
6060
+ #: ../plugins/mycred-hook-woocommerce.php:197
 
 
 
 
6061
  msgid "WooCommerce Product Reviews"
6062
  msgstr ""
6063
 
6064
+ #: ../plugins/mycred-hook-woocommerce.php:198
6065
  #, php-format
6066
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6067
  msgstr ""
6091
  #, php-format
6092
  msgid "Awards %_plural% for users voting in polls."
6093
  msgstr "奖励 %_plural% 给在投票调查中投票的用户。"
6094
+ for users voting in polls."
6095
+ msgstr "奖励 %_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: Sat Jul 26 2014 20:53:23 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"
@@ -96,7 +96,7 @@ msgid "Log entry updated"
96
  msgstr ""
97
 
98
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
99
- #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
100
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
101
  msgid "Setup"
102
  msgstr ""
@@ -122,7 +122,7 @@ msgid "This Hook has no settings"
122
  msgstr ""
123
 
124
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
125
- #: 1305
126
  msgid "No limit"
127
  msgstr ""
128
 
@@ -148,7 +148,7 @@ msgstr ""
148
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
149
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
150
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
151
- #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
152
  msgid "Select"
153
  msgstr ""
154
 
@@ -407,8 +407,8 @@ msgstr ""
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:164 ..
411
- #: /modules/mycred-module-log.php:324 ../modules/mycred-module-log.php:577 ..
412
  #: /modules/mycred-module-settings.php:312
413
  msgid "Access Denied"
414
  msgstr ""
@@ -432,12 +432,12 @@ 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:189
436
  msgid "Enable"
437
  msgstr ""
438
 
439
  #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
440
- #: php:204
441
  msgid "Update Changes"
442
  msgstr ""
443
 
@@ -510,13 +510,13 @@ msgstr ""
510
  #: /addons/gateway/carts/mycred-marketpress.php:424 ..
511
  #: /addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
512
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
513
- #: /modules/mycred-module-hooks.php:633 ../modules/mycred-module-hooks.php:1503 ..
514
- #: /modules/mycred-module-hooks.php:1845 ../plugins/mycred-hook-badgeOS.php:115 ..
515
  #: /plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
516
  #: /plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
517
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
518
  #: /plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
519
- #: php:300 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
520
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
521
  msgid "Log Template"
522
  msgstr ""
@@ -550,8 +550,8 @@ msgstr ""
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:769 ..
554
- #: /includes/mycred-shortcodes.php:907
555
  msgid "Amount"
556
  msgstr ""
557
 
@@ -561,7 +561,7 @@ 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:1860
565
  msgid "Interval"
566
  msgstr ""
567
 
@@ -767,7 +767,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:2495
771
  msgid "Available Shortcodes"
772
  msgstr ""
773
 
@@ -925,7 +925,7 @@ 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:370 ../modules/mycred-
929
  #: module-settings.php:440 ../modules/mycred-module-settings.php:455
930
  msgid "Actions"
931
  msgstr ""
@@ -1353,7 +1353,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:2460
1357
  msgid "Title"
1358
  msgstr ""
1359
 
@@ -1527,8 +1527,8 @@ msgid "Usage"
1527
  msgstr ""
1528
 
1529
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1530
- #: transfer.php:243 ../modules/mycred-module-hooks.php:1219 ../modules/mycred-
1531
- #: module-hooks.php:1510
1532
  msgid "Limits"
1533
  msgstr ""
1534
 
@@ -1541,7 +1541,7 @@ msgid "not yet used"
1541
  msgstr ""
1542
 
1543
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1544
- #: php:1950
1545
  msgid "Total"
1546
  msgstr ""
1547
 
@@ -1703,7 +1703,7 @@ msgid "Apply Coupon"
1703
  msgstr ""
1704
 
1705
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1706
- #: notices/myCRED-addon-email-notices.php:1104
1707
  msgid "Email Notice"
1708
  msgstr ""
1709
 
@@ -1888,17 +1888,17 @@ msgid ""
1888
  msgstr ""
1889
 
1890
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1891
- #: notices/myCRED-addon-email-notices.php:771
1892
  msgid "Email Settings"
1893
  msgstr ""
1894
 
1895
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1896
- #: notices/myCRED-addon-email-notices.php:894
1897
  msgid "Senders Name:"
1898
  msgstr ""
1899
 
1900
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1901
- #: notices/myCRED-addon-email-notices.php:896
1902
  msgid "Senders Email:"
1903
  msgstr ""
1904
 
@@ -1922,174 +1922,174 @@ msgstr ""
1922
  msgid "Ignored if HTML is not allowed in emails."
1923
  msgstr ""
1924
 
1925
- #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
1926
- #: notices/myCRED-addon-email-notices.php:820
1927
  msgid "Email Subject"
1928
  msgstr ""
1929
 
1930
- #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1931
  msgid "Status"
1932
  msgstr ""
1933
 
1934
- #: ../addons/email-notices/myCRED-addon-email-notices.php:726
1935
  msgid "Not Active"
1936
  msgstr ""
1937
 
1938
- #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1939
  #, php-format
1940
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1941
  msgstr ""
1942
 
1943
- #: ../addons/email-notices/myCRED-addon-email-notices.php:732
1944
  msgid "Active"
1945
  msgstr ""
1946
 
1947
- #: ../addons/email-notices/myCRED-addon-email-notices.php:734
1948
  #, php-format
1949
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1950
  msgstr ""
1951
 
1952
- #: ../addons/email-notices/myCRED-addon-email-notices.php:744
1953
  msgid "Email is sent when"
1954
  msgstr ""
1955
 
1956
- #: ../addons/email-notices/myCRED-addon-email-notices.php:746
1957
  msgid "Missing instance for this notice!"
1958
  msgstr ""
1959
 
1960
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1961
- #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
1962
- #: addon-email-notices.php:759
1963
  msgid "Sent To"
1964
  msgstr ""
1965
 
1966
- #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1967
- #: notices/myCRED-addon-email-notices.php:884 ../includes/mycred-admin.php:764 ..
1968
- #: /includes/mycred-log.php:633 ../modules/mycred-module-log.php:542
1969
  msgid "User"
1970
  msgstr ""
1971
 
1972
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
1973
- #: notices/myCRED-addon-email-notices.php:885
1974
  msgid "Administrator"
1975
  msgstr ""
1976
 
1977
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1978
  msgid "Both Administrator and User"
1979
  msgstr ""
1980
 
1981
- #: ../addons/email-notices/myCRED-addon-email-notices.php:780
1982
  msgid "Available Template Tags"
1983
  msgstr ""
1984
 
1985
- #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1986
  msgid "Email Header"
1987
  msgstr ""
1988
 
1989
- #: ../addons/email-notices/myCRED-addon-email-notices.php:851
1990
  msgid "Send this email notice when..."
1991
  msgstr ""
1992
 
1993
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1994
  msgid "Recipient:"
1995
  msgstr ""
1996
 
1997
- #: ../addons/email-notices/myCRED-addon-email-notices.php:886
1998
  msgid "Both"
1999
  msgstr ""
2000
 
2001
- #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
2002
  #: /addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2003
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2004
  #: module-settings.php:526
2005
  msgid "Label"
2006
  msgstr ""
2007
 
2008
- #: ../addons/email-notices/myCRED-addon-email-notices.php:898
2009
  msgid "Reply-To Email:"
2010
  msgstr ""
2011
 
2012
- #: ../addons/email-notices/myCRED-addon-email-notices.php:904
2013
  msgid "Save"
2014
  msgstr ""
2015
 
2016
- #: ../addons/email-notices/myCRED-addon-email-notices.php:916
2017
  msgid "CSS Styling"
2018
  msgstr ""
2019
 
2020
- #: ../addons/email-notices/myCRED-addon-email-notices.php:932
2021
  msgid "Site Related"
2022
  msgstr ""
2023
 
2024
- #: ../addons/email-notices/myCRED-addon-email-notices.php:933
2025
  msgid "Your websites title"
2026
  msgstr ""
2027
 
2028
- #: ../addons/email-notices/myCRED-addon-email-notices.php:934
2029
  msgid "Your websites address"
2030
  msgstr ""
2031
 
2032
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
2033
  msgid "Your websites tagline (description)"
2034
  msgstr ""
2035
 
2036
- #: ../addons/email-notices/myCRED-addon-email-notices.php:936
2037
  msgid "Your websites admin email"
2038
  msgstr ""
2039
 
2040
- #: ../addons/email-notices/myCRED-addon-email-notices.php:937
2041
  msgid "Total number of blog members"
2042
  msgstr ""
2043
 
2044
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
2045
- #: notices/myCRED-addon-email-notices.php:1018 ../addons/email-notices/myCRED-
2046
- #: addon-email-notices.php:1024
2047
  msgid "Email Notice Updated."
2048
  msgstr ""
2049
 
2050
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2051
  msgid "Email Notice Activated"
2052
  msgstr ""
2053
 
2054
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2055
  msgid "Email Notice Saved"
2056
  msgstr ""
2057
 
2058
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1040
2059
  msgid ""
2060
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2061
  "are not yet ready to use this email notice!"
2062
  msgstr ""
2063
 
2064
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1042
2065
  #, php-format
2066
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2067
  msgstr ""
2068
 
2069
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1044
2070
  msgid "This email notice is active."
2071
  msgstr ""
2072
 
2073
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2074
  msgid "Settings saved."
2075
  msgstr ""
2076
 
2077
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2078
  msgid "Unsubscribe"
2079
  msgstr ""
2080
 
2081
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1124
2082
  msgid "There are no email notifications yet."
2083
  msgstr ""
2084
 
2085
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1130
2086
  msgid "Save Changes"
2087
  msgstr ""
2088
 
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:765
2093
  msgid "Current Balance"
2094
  msgstr ""
2095
 
@@ -2203,7 +2203,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:912
2207
  msgid "Exchange Rate"
2208
  msgstr ""
2209
 
@@ -2528,7 +2528,7 @@ msgid "Log"
2528
  msgstr ""
2529
 
2530
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2531
- #: /includes/mycred-admin.php:735 ../includes/mycred-admin.php:770
2532
  msgid "Log Entry"
2533
  msgstr ""
2534
 
@@ -2609,7 +2609,7 @@ msgid "Reject"
2609
  msgstr ""
2610
 
2611
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2612
- #: /modules/mycred-module-log.php:502 ../modules/mycred-module-settings.php:488 ..
2613
  #: /modules/mycred-module-settings.php:507
2614
  msgid "Delete"
2615
  msgstr ""
@@ -3023,11 +3023,11 @@ msgstr ""
3023
  msgid "Assign Ranks to Users"
3024
  msgstr ""
3025
 
3026
- #: ../addons/ranks/includes/mycred-rank-functions.php:197
3027
  msgid "mycred_get_users_rank() : Missing required user id"
3028
  msgstr ""
3029
 
3030
- #: ../addons/ranks/includes/mycred-rank-functions.php:207
3031
  msgid "no rank"
3032
  msgstr ""
3033
 
@@ -3204,7 +3204,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:2277
3208
  msgid "Transfer"
3209
  msgstr ""
3210
 
@@ -3239,7 +3239,7 @@ msgid ""
3239
  msgstr ""
3240
 
3241
  #: ../addons/transfer/myCRED-addon-transfer.php:147 ../includes/mycred-shortcodes.
3242
- #: php:1009
3243
  msgid "Insufficient Funds. Please try a lower amount."
3244
  msgstr ""
3245
 
@@ -3393,24 +3393,24 @@ msgstr ""
3393
  msgid "Show users limit"
3394
  msgstr ""
3395
 
3396
- #: ../addons/transfer/myCRED-addon-transfer.php:798
3397
  msgid "username"
3398
  msgstr ""
3399
 
3400
- #: ../addons/transfer/myCRED-addon-transfer.php:800
3401
  msgid "email"
3402
  msgstr ""
3403
 
3404
- #: ../addons/transfer/myCRED-addon-transfer.php:802
3405
  #, php-format
3406
  msgid "recipients %s"
3407
  msgstr ""
3408
 
3409
- #: ../addons/transfer/myCRED-addon-transfer.php:875
3410
  msgid "To:"
3411
  msgstr ""
3412
 
3413
- #: ../addons/transfer/myCRED-addon-transfer.php:881
3414
  msgid "Amount:"
3415
  msgstr ""
3416
 
@@ -3462,8 +3462,8 @@ msgstr ""
3462
  msgid "Total: %s"
3463
  msgstr ""
3464
 
3465
- #: ../includes/mycred-admin.php:422 ../modules/mycred-module-log.php:252 ..
3466
- #: /modules/mycred-module-log.php:253
3467
  msgid "History"
3468
  msgstr ""
3469
 
@@ -3535,15 +3535,15 @@ msgstr ""
3535
  msgid "%singular% balance"
3536
  msgstr ""
3537
 
3538
- #: ../includes/mycred-admin.php:739 ../includes/mycred-admin.php:771
3539
  msgid "Update Balance"
3540
  msgstr ""
3541
 
3542
- #: ../includes/mycred-admin.php:763
3543
  msgid "ID"
3544
  msgstr ""
3545
 
3546
- #: ../includes/mycred-admin.php:769
3547
  msgid "A positive or negative value"
3548
  msgstr ""
3549
 
@@ -3595,290 +3595,298 @@ msgstr ""
3595
  msgid "Available Template Tags:"
3596
  msgstr ""
3597
 
3598
- #: ../includes/mycred-functions.php:1643
3599
  msgid "Entire Log"
3600
  msgstr ""
3601
 
3602
- #: ../includes/mycred-functions.php:1648 ../includes/mycred-functions.php:1649
3603
  msgid "Displayed Rows"
3604
  msgstr ""
3605
 
3606
- #: ../includes/mycred-functions.php:1653
3607
  msgid "Search Results"
3608
  msgstr ""
3609
 
3610
- #: ../includes/mycred-functions.php:1654
3611
  msgid "My Entire Log"
3612
  msgstr ""
3613
 
3614
- #: ../includes/mycred-functions.php:1774
3615
  msgid "ref empty"
3616
  msgstr ""
3617
 
3618
- #: ../includes/mycred-functions.php:1782
3619
  msgid "incorrect user id format"
3620
  msgstr ""
3621
 
3622
- #: ../includes/mycred-functions.php:1795
3623
  msgid "incorrect unix timestamp (from):"
3624
  msgstr ""
3625
 
3626
- #: ../includes/mycred-functions.php:1804
3627
  msgid "incorrect unix timestamp (to):"
3628
  msgstr ""
3629
 
3630
- #: ../includes/mycred-functions.php:2166
3631
  msgid "Website Registration"
3632
  msgstr ""
3633
 
3634
- #: ../includes/mycred-functions.php:2167
3635
  msgid "Website Visit"
3636
  msgstr ""
3637
 
3638
- #: ../includes/mycred-functions.php:2168
 
 
 
 
 
 
 
 
3639
  msgid "Logging in"
3640
  msgstr ""
3641
 
3642
- #: ../includes/mycred-functions.php:2169
3643
  msgid "Publishing Content"
3644
  msgstr ""
3645
 
3646
- #: ../includes/mycred-functions.php:2170 ../modules/mycred-module-hooks.php:1168
3647
  msgid "Approved Comment"
3648
  msgstr ""
3649
 
3650
- #: ../includes/mycred-functions.php:2171
3651
  msgid "Unapproved Comment"
3652
  msgstr ""
3653
 
3654
- #: ../includes/mycred-functions.php:2172
3655
  msgid "SPAM Comment"
3656
  msgstr ""
3657
 
3658
- #: ../includes/mycred-functions.php:2173
3659
  msgid "Deleted Comment"
3660
  msgstr ""
3661
 
3662
- #: ../includes/mycred-functions.php:2174
3663
  msgid "Link Click"
3664
  msgstr ""
3665
 
3666
- #: ../includes/mycred-functions.php:2175
3667
  msgid "Watching Video"
3668
  msgstr ""
3669
 
3670
- #: ../includes/mycred-functions.php:2176
3671
  msgid "Visitor Referral"
3672
  msgstr ""
3673
 
3674
- #: ../includes/mycred-functions.php:2177
3675
  msgid "Signup Referral"
3676
  msgstr ""
3677
 
3678
- #: ../includes/mycred-functions.php:2181
3679
  msgid "New Profile Update"
3680
  msgstr ""
3681
 
3682
- #: ../includes/mycred-functions.php:2182
3683
  msgid "Avatar Upload"
3684
  msgstr ""
3685
 
3686
- #: ../includes/mycred-functions.php:2183
3687
  msgid "New Friendship"
3688
  msgstr ""
3689
 
3690
- #: ../includes/mycred-functions.php:2184
3691
  msgid "Ended Friendship"
3692
  msgstr ""
3693
 
3694
- #: ../includes/mycred-functions.php:2185
3695
  msgid "New Profile Comment"
3696
  msgstr ""
3697
 
3698
- #: ../includes/mycred-functions.php:2186
3699
  msgid "Profile Comment Deletion"
3700
  msgstr ""
3701
 
3702
- #: ../includes/mycred-functions.php:2187
3703
  msgid "New Message"
3704
  msgstr ""
3705
 
3706
- #: ../includes/mycred-functions.php:2188
3707
  msgid "Sending Gift"
3708
  msgstr ""
3709
 
3710
- #: ../includes/mycred-functions.php:2189
3711
  msgid "New Group"
3712
  msgstr ""
3713
 
3714
- #: ../includes/mycred-functions.php:2190
3715
  msgid "Deleted Group"
3716
  msgstr ""
3717
 
3718
- #: ../includes/mycred-functions.php:2191
3719
  msgid "New Group Forum Topic"
3720
  msgstr ""
3721
 
3722
- #: ../includes/mycred-functions.php:2192
3723
  msgid "Edit Group Forum Topic"
3724
  msgstr ""
3725
 
3726
- #: ../includes/mycred-functions.php:2193
3727
  msgid "New Group Forum Post"
3728
  msgstr ""
3729
 
3730
- #: ../includes/mycred-functions.php:2194
3731
  msgid "Edit Group Forum Post"
3732
  msgstr ""
3733
 
3734
- #: ../includes/mycred-functions.php:2195
3735
  msgid "Joining Group"
3736
  msgstr ""
3737
 
3738
- #: ../includes/mycred-functions.php:2196
3739
  msgid "Leaving Group"
3740
  msgstr ""
3741
 
3742
- #: ../includes/mycred-functions.php:2197
3743
  msgid "New Group Avatar"
3744
  msgstr ""
3745
 
3746
- #: ../includes/mycred-functions.php:2198
3747
  msgid "New Group Comment"
3748
  msgstr ""
3749
 
3750
- #: ../includes/mycred-functions.php:2202 ../plugins/mycred-hook-buddypress-media.
3751
  #: php:166
3752
  msgid "Photo Upload"
3753
  msgstr ""
3754
 
3755
- #: ../includes/mycred-functions.php:2203 ../plugins/mycred-hook-buddypress-media.
3756
  #: php:176
3757
  msgid "Video Upload"
3758
  msgstr ""
3759
 
3760
- #: ../includes/mycred-functions.php:2204 ../plugins/mycred-hook-buddypress-media.
3761
  #: php:186
3762
  msgid "Music Upload"
3763
  msgstr ""
3764
 
3765
- #: ../includes/mycred-functions.php:2208
3766
  msgid "New Link"
3767
  msgstr ""
3768
 
3769
- #: ../includes/mycred-functions.php:2209
3770
  msgid "Link Voting"
3771
  msgstr ""
3772
 
3773
- #: ../includes/mycred-functions.php:2210
3774
  msgid "Link Update"
3775
  msgstr ""
3776
 
3777
- #: ../includes/mycred-functions.php:2214
3778
  msgid "New Forum (bbPress)"
3779
  msgstr ""
3780
 
3781
- #: ../includes/mycred-functions.php:2215
3782
  msgid "New Forum Topic (bbPress)"
3783
  msgstr ""
3784
 
3785
- #: ../includes/mycred-functions.php:2216
3786
  msgid "Favorited Topic (bbPress)"
3787
  msgstr ""
3788
 
3789
- #: ../includes/mycred-functions.php:2217
3790
  msgid "New Topic Reply (bbPress)"
3791
  msgstr ""
3792
 
3793
- #: ../includes/mycred-functions.php:2221
3794
  msgid "Form Submission (Contact Form 7)"
3795
  msgstr ""
3796
 
3797
- #: ../includes/mycred-functions.php:2224
3798
  msgid "Form Submission (Gravity Form)"
3799
  msgstr ""
3800
 
3801
- #: ../includes/mycred-functions.php:2227
3802
  msgid "New Forum Topic (SimplePress)"
3803
  msgstr ""
3804
 
3805
- #: ../includes/mycred-functions.php:2228
3806
  msgid "New Forum Post (SimplePress)"
3807
  msgstr ""
3808
 
3809
- #: ../includes/mycred-functions.php:2232
3810
  msgid "Poll Voting"
3811
  msgstr ""
3812
 
3813
- #: ../includes/mycred-functions.php:2235
3814
  msgid "Sending an Invite"
3815
  msgstr ""
3816
 
3817
- #: ../includes/mycred-functions.php:2236
3818
  msgid "Accepting an Invite"
3819
  msgstr ""
3820
 
3821
- #: ../includes/mycred-functions.php:2242
3822
  msgid "Banking Payout"
3823
  msgstr ""
3824
 
3825
- #: ../includes/mycred-functions.php:2245
3826
  msgid "buyCRED Purchase (PayPal Standard)"
3827
  msgstr ""
3828
 
3829
- #: ../includes/mycred-functions.php:2246
3830
  msgid "buyCRED Purchase (Skrill)"
3831
  msgstr ""
3832
 
3833
- #: ../includes/mycred-functions.php:2247
3834
  msgid "buyCRED Purchase (Zombaio)"
3835
  msgstr ""
3836
 
3837
- #: ../includes/mycred-functions.php:2248
3838
  msgid "buyCRED Purchase (NETBilling)"
3839
  msgstr ""
3840
 
3841
- #: ../includes/mycred-functions.php:2249
3842
  msgid "buyCRED Purchase (BitPay)"
3843
  msgstr ""
3844
 
3845
- #: ../includes/mycred-functions.php:2254
3846
  msgid "Coupon Purchase"
3847
  msgstr ""
3848
 
3849
- #: ../includes/mycred-functions.php:2257
3850
  msgid "Store Purchase (WooCommerce)"
3851
  msgstr ""
3852
 
3853
- #: ../includes/mycred-functions.php:2258
3854
  msgid "Store Purchase (MarketPress)"
3855
  msgstr ""
3856
 
3857
- #: ../includes/mycred-functions.php:2259
3858
  msgid "Store Purchase (WP E-Commerce)"
3859
  msgstr ""
3860
 
3861
- #: ../includes/mycred-functions.php:2264
3862
  msgid "Event Payment (Event Espresso)"
3863
  msgstr ""
3864
 
3865
- #: ../includes/mycred-functions.php:2265
3866
  msgid "Event Sale (Event Espresso)"
3867
  msgstr ""
3868
 
3869
- #: ../includes/mycred-functions.php:2269
3870
  msgid "Event Payment (Events Manager)"
3871
  msgstr ""
3872
 
3873
- #: ../includes/mycred-functions.php:2270
3874
  msgid "Event Sale (Events Manager)"
3875
  msgstr ""
3876
 
3877
- #: ../includes/mycred-functions.php:2274
3878
  msgid "Content Purchase / Sale"
3879
  msgstr ""
3880
 
3881
- #: ../includes/mycred-functions.php:2281
3882
  msgid "Manual Adjustment by Admin"
3883
  msgstr ""
3884
 
@@ -4147,7 +4155,7 @@ msgstr ""
4147
  msgid "Entry"
4148
  msgstr ""
4149
 
4150
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:464
4151
  msgid "User Missing"
4152
  msgstr ""
4153
 
@@ -4359,60 +4367,60 @@ msgstr ""
4359
  msgid "A video ID is required for this shortcode"
4360
  msgstr ""
4361
 
4362
- #: ../includes/mycred-shortcodes.php:861 ../includes/mycred-shortcodes.php:955
4363
  msgid "Point types not found."
4364
  msgstr ""
4365
 
4366
- #: ../includes/mycred-shortcodes.php:867 ../includes/mycred-shortcodes.php:875 ..
4367
- #: /includes/mycred-shortcodes.php:967 ../includes/mycred-shortcodes.php:987
4368
  #, php-format
4369
  msgid "You are excluded from using %s."
4370
  msgstr ""
4371
 
4372
- #: ../includes/mycred-shortcodes.php:871 ../includes/mycred-shortcodes.php:977
4373
  msgid "Your balance is too low to use this feature."
4374
  msgstr ""
4375
 
4376
- #: ../includes/mycred-shortcodes.php:892
4377
  #, php-format
4378
  msgid "Convert <span>%s</span> to <span>%s</span>"
4379
  msgstr ""
4380
 
4381
- #: ../includes/mycred-shortcodes.php:901
4382
  #, php-format
4383
  msgid "Your current %s balance"
4384
  msgstr ""
4385
 
4386
- #: ../includes/mycred-shortcodes.php:909
4387
  #, php-format
4388
  msgid "Minimum %s"
4389
  msgstr ""
4390
 
4391
- #: ../includes/mycred-shortcodes.php:913
4392
  #, php-format
4393
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4394
  msgstr ""
4395
 
4396
- #: ../includes/mycred-shortcodes.php:919
4397
  msgid "Exchange"
4398
  msgstr ""
4399
 
4400
- #: ../includes/mycred-shortcodes.php:1000
4401
  #, php-format
4402
  msgid "You must exchange at least %s!"
4403
  msgstr ""
4404
 
4405
- #: ../includes/mycred-shortcodes.php:1022
4406
  #, php-format
4407
  msgid "Exchange from %s"
4408
  msgstr ""
4409
 
4410
- #: ../includes/mycred-shortcodes.php:1034
4411
  #, php-format
4412
  msgid "Exchange to %s"
4413
  msgstr ""
4414
 
4415
- #: ../includes/mycred-shortcodes.php:1042
4416
  #, php-format
4417
  msgid "You have successfully exchanged %s into %s."
4418
  msgstr ""
@@ -4913,216 +4921,252 @@ msgstr ""
4913
 
4914
  #: ../modules/mycred-module-hooks.php:101
4915
  #, php-format
4916
- msgid "%plural% for logins"
4917
  msgstr ""
4918
 
4919
  #: ../modules/mycred-module-hooks.php:102
 
 
 
 
 
 
 
 
 
 
 
4920
  #, php-format
4921
  msgid ""
4922
  "Award %_plural% for logging in to your website. You can also set an optional "
4923
  "limit."
4924
  msgstr ""
4925
 
4926
- #: ../modules/mycred-module-hooks.php:108
4927
  #, php-format
4928
  msgid "%plural% for publishing content"
4929
  msgstr ""
4930
 
4931
- #: ../modules/mycred-module-hooks.php:109
4932
  #, php-format
4933
  msgid ""
4934
  "Award %_plural% for publishing content on your website. If your custom post "
4935
  "type is not shown bellow, make sure it is set to \"Public\"."
4936
  msgstr ""
4937
 
4938
- #: ../modules/mycred-module-hooks.php:115
4939
  #, php-format
4940
  msgid "%plural% for comments"
4941
  msgstr ""
4942
 
4943
- #: ../modules/mycred-module-hooks.php:115
4944
  #, php-format
4945
  msgid "%plural% for Disqus comments"
4946
  msgstr ""
4947
 
4948
- #: ../modules/mycred-module-hooks.php:116
4949
  #, php-format
4950
  msgid "Award %_plural% for making comments."
4951
  msgstr ""
4952
 
4953
- #: ../modules/mycred-module-hooks.php:122
4954
  #, php-format
4955
  msgid "%plural% for clicking on links"
4956
  msgstr ""
4957
 
4958
- #: ../modules/mycred-module-hooks.php:123
4959
  msgid ""
4960
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4961
  "shortcode."
4962
  msgstr ""
4963
 
4964
- #: ../modules/mycred-module-hooks.php:129
4965
  #, php-format
4966
  msgid "%plural% for viewing Videos"
4967
  msgstr ""
4968
 
4969
- #: ../modules/mycred-module-hooks.php:130
4970
  msgid ""
4971
  "Award %_plural% to users who watches videos embedded using the "
4972
  "[mycred_video] shortcode."
4973
  msgstr ""
4974
 
4975
- #: ../modules/mycred-module-hooks.php:136
4976
  #, php-format
4977
  msgid "%plural% for referrals"
4978
  msgstr ""
4979
 
4980
- #: ../modules/mycred-module-hooks.php:137
4981
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
4982
  msgstr ""
4983
 
4984
- #: ../modules/mycred-module-hooks.php:170
4985
  #, php-format
4986
  msgid "%s Hooks"
4987
  msgstr ""
4988
 
4989
- #: ../modules/mycred-module-hooks.php:173
4990
  msgid ""
4991
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
4992
  "depending on their actions around your website."
4993
  msgstr ""
4994
 
4995
- #: ../modules/mycred-module-hooks.php:345 ../modules/mycred-module-hooks.php:439 .
4996
- #: ./modules/mycred-module-hooks.php:751 ../modules/mycred-module-hooks.php:764 ..
4997
- #: /modules/mycred-module-hooks.php:800 ../modules/mycred-module-hooks.php:1180 ..
4998
- #: /modules/mycred-module-hooks.php:1197 ../modules/mycred-module-hooks.php:1214 .
4999
- #: ./modules/mycred-module-hooks.php:2370 ../modules/mycred-module-hooks.php:2399
5000
- #: ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 .
5001
- #: ./plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ..
5002
- #: /plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ..
5003
- #: /plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ..
5004
- #: /plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-
5005
- #: buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ..
5006
- #: /plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-
5007
- #: buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ..
5008
- #: /plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-
5009
- #: buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ..
5010
- #: /plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-
5011
- #: buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ..
5012
- #: /plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
5013
- #: buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-
5014
- #: hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ..
5015
- #: /plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:
5016
- #: 446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-
5017
- #: buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-
5018
- #: hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ..
5019
- #: /plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:
5020
- #: 978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-
5021
- #: buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ..
5022
- #: /plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:
5023
- #: 1044 ../plugins/mycred-hook-contact-form7.php:141 ../plugins/mycred-hook-
5024
- #: gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.php:219 ..
5025
- #: /plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-jetpack.php:
5026
- #: 506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-sharethis.
5027
- #: php:258 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-
5028
- #: simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ..
5029
- #: /plugins/mycred-hook-simplepress.php:380
 
5030
  msgid "Log template"
5031
  msgstr ""
5032
 
5033
- #: ../modules/mycred-module-hooks.php:640 ../modules/mycred-module-hooks.php:2378
5034
- #: ../modules/mycred-module-hooks.php:2407 ../plugins/mycred-hook-invite-anyone.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5035
  #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
5036
  msgid "Limit"
5037
  msgstr ""
5038
 
5039
- #: ../modules/mycred-module-hooks.php:745
5040
  #, php-format
5041
  msgid "%plural% for Posts"
5042
  msgstr ""
5043
 
5044
- #: ../modules/mycred-module-hooks.php:758
5045
  #, php-format
5046
  msgid "%plural% for Pages"
5047
  msgstr ""
5048
 
5049
- #: ../modules/mycred-module-hooks.php:794
5050
  #, php-format
5051
  msgid "%plural% for %s"
5052
  msgstr ""
5053
 
5054
- #: ../modules/mycred-module-hooks.php:1166
5055
  msgid ""
5056
  "%plural% are only awarded when your website has been synced with the Disqus "
5057
  "server!"
5058
  msgstr ""
5059
 
5060
- #: ../modules/mycred-module-hooks.php:1171 ../modules/mycred-module-hooks.php:
5061
- #: 1188 ../modules/mycred-module-hooks.php:1205
5062
  msgid "Comment Author"
5063
  msgstr ""
5064
 
5065
- #: ../modules/mycred-module-hooks.php:1175 ../modules/mycred-module-hooks.php:
5066
- #: 1192 ../modules/mycred-module-hooks.php:1209
5067
- msgid "Content Author"
5068
- msgstr ""
5069
-
5070
- #: ../modules/mycred-module-hooks.php:1185
5071
  msgid "Comment Marked SPAM"
5072
  msgstr ""
5073
 
5074
- #: ../modules/mycred-module-hooks.php:1202
5075
  msgid "Trashed / Unapproved Comments"
5076
  msgstr ""
5077
 
5078
- #: ../modules/mycred-module-hooks.php:1222
5079
  msgid "Limit per post"
5080
  msgstr ""
5081
 
5082
- #: ../modules/mycred-module-hooks.php:1224
5083
  msgid ""
5084
  "The number of comments per post that grants %_plural% to the comment author. "
5085
  "Use zero for unlimited."
5086
  msgstr ""
5087
 
5088
- #: ../modules/mycred-module-hooks.php:1228
5089
  msgid "Limit per day"
5090
  msgstr ""
5091
 
5092
- #: ../modules/mycred-module-hooks.php:1230
5093
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5094
  msgstr ""
5095
 
5096
- #: ../modules/mycred-module-hooks.php:1235
5097
  msgid ""
5098
  "%plural% is to be awarded even when comment authors reply to their own "
5099
  "comment."
5100
  msgstr ""
5101
 
5102
- #: ../modules/mycred-module-hooks.php:1306
5103
  msgid "Once for each unique URL"
5104
  msgstr ""
5105
 
5106
- #: ../modules/mycred-module-hooks.php:1307
5107
  msgid "Once for each unique link id"
5108
  msgstr ""
5109
 
5110
- #: ../modules/mycred-module-hooks.php:1500
5111
  msgid ""
5112
  "The default amount to award for clicking on links. You can override this in "
5113
  "the shortcode."
5114
  msgstr ""
5115
 
5116
- #: ../modules/mycred-module-hooks.php:1507
5117
  #, php-format
5118
  msgid "Custom tags: %url%, %title% or %id%."
5119
  msgstr ""
5120
 
5121
- #: ../modules/mycred-module-hooks.php:1518 ../modules/mycred-module-hooks.php:2481
5122
  msgid "Note!"
5123
  msgstr ""
5124
 
5125
- #: ../modules/mycred-module-hooks.php:1518
5126
  msgid ""
5127
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5128
  "generate one automatically based on the value set under href. If you are "
@@ -5130,220 +5174,220 @@ msgid ""
5130
  "by ID."
5131
  msgstr ""
5132
 
5133
- #: ../modules/mycred-module-hooks.php:1520 ../modules/mycred-module-hooks.php:1878
5134
  msgid "Available Shortcode"
5135
  msgstr ""
5136
 
5137
- #: ../modules/mycred-module-hooks.php:1842
5138
  msgid "Amount to award for viewing videos."
5139
  msgstr ""
5140
 
5141
- #: ../modules/mycred-module-hooks.php:1852
5142
  msgid "Award Logic"
5143
  msgstr ""
5144
 
5145
- #: ../modules/mycred-module-hooks.php:1854
5146
  #, php-format
5147
  msgid "Select when %_plural% should be awarded or deducted."
5148
  msgstr ""
5149
 
5150
- #: ../modules/mycred-module-hooks.php:1855
5151
  msgid "Play - As soon as video starts playing."
5152
  msgstr ""
5153
 
5154
- #: ../modules/mycred-module-hooks.php:1856
5155
  msgid "Full - First when the entire video has played."
5156
  msgstr ""
5157
 
5158
- #: ../modules/mycred-module-hooks.php:1857
5159
  msgid "Interval - For each x number of seconds watched."
5160
  msgstr ""
5161
 
5162
- #: ../modules/mycred-module-hooks.php:1862
5163
  msgid "Number of seconds"
5164
  msgstr ""
5165
 
5166
- #: ../modules/mycred-module-hooks.php:1869
5167
  msgid "Leniency"
5168
  msgstr ""
5169
 
5170
- #: ../modules/mycred-module-hooks.php:1871
5171
  msgid ""
5172
  "The maximum percentage a users view of a movie can differ from the actual "
5173
  "length."
5174
  msgstr ""
5175
 
5176
- #: ../modules/mycred-module-hooks.php:1874
5177
  msgid ""
5178
  "Do not set this value to zero! A lot of thing can happen while a user "
5179
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5180
  "buffering or play back errors."
5181
  msgstr ""
5182
 
5183
- #: ../modules/mycred-module-hooks.php:1942
5184
  msgid "Affiliate Program"
5185
  msgstr ""
5186
 
5187
- #: ../modules/mycred-module-hooks.php:1951
5188
  msgid "Per Day"
5189
  msgstr ""
5190
 
5191
- #: ../modules/mycred-module-hooks.php:2063
5192
  msgid "Link"
5193
  msgstr ""
5194
 
5195
- #: ../modules/mycred-module-hooks.php:2364
5196
  msgid "Referring Visitors"
5197
  msgstr ""
5198
 
5199
- #: ../modules/mycred-module-hooks.php:2388 ../modules/mycred-module-hooks.php:2417
5200
  msgid "The number of referrals each member can make. Use zero for unlimited."
5201
  msgstr ""
5202
 
5203
- #: ../modules/mycred-module-hooks.php:2392 ../modules/mycred-module-hooks.php:2421
5204
  msgid "Referring Signups"
5205
  msgstr ""
5206
 
5207
- #: ../modules/mycred-module-hooks.php:2396
5208
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5209
  msgstr ""
5210
 
5211
- #: ../modules/mycred-module-hooks.php:2423
5212
  msgid "Registrations are disabled."
5213
  msgstr ""
5214
 
5215
- #: ../modules/mycred-module-hooks.php:2430
5216
  msgid "Referral Links"
5217
  msgstr ""
5218
 
5219
- #: ../modules/mycred-module-hooks.php:2434
5220
  msgid "Assign numeric referral IDs to each user."
5221
  msgstr ""
5222
 
5223
- #: ../modules/mycred-module-hooks.php:2435 ../modules/mycred-module-hooks.php:2441
5224
  msgid "Example"
5225
  msgstr ""
5226
 
5227
- #: ../modules/mycred-module-hooks.php:2440
5228
  msgid "Assign usernames as IDs for each user."
5229
  msgstr ""
5230
 
5231
- #: ../modules/mycred-module-hooks.php:2444
5232
  msgid "IP Limit"
5233
  msgstr ""
5234
 
5235
- #: ../modules/mycred-module-hooks.php:2448
5236
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5237
  msgstr ""
5238
 
5239
- #: ../modules/mycred-module-hooks.php:2452 ../modules/mycred-module-hooks.php:2485
5240
  msgid "BuddyPress Profile"
5241
  msgstr ""
5242
 
5243
- #: ../modules/mycred-module-hooks.php:2455
5244
  msgid "Insert Link in users Profile"
5245
  msgstr ""
5246
 
5247
- #: ../modules/mycred-module-hooks.php:2456
5248
  msgid ""
5249
  "Option to inser the referral link in users profiles. Links will only be "
5250
  "visible to users viewing their own profiles or administrators."
5251
  msgstr ""
5252
 
5253
- #: ../modules/mycred-module-hooks.php:2462
5254
  msgid "Leave empty to hide."
5255
  msgstr ""
5256
 
5257
- #: ../modules/mycred-module-hooks.php:2465
5258
  msgid "Description"
5259
  msgstr ""
5260
 
5261
- #: ../modules/mycred-module-hooks.php:2466
5262
  msgid "Optional description to insert under the link."
5263
  msgstr ""
5264
 
5265
- #: ../modules/mycred-module-hooks.php:2478
5266
  msgid "Profile Positioning"
5267
  msgstr ""
5268
 
5269
- #: ../modules/mycred-module-hooks.php:2480
5270
  msgid ""
5271
  "You can move around the referral link on your users profile by changing the "
5272
  "position. Increase to move up, decrease to move down."
5273
  msgstr ""
5274
 
5275
- #: ../modules/mycred-module-hooks.php:2481
5276
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5277
  msgstr ""
5278
 
5279
- #: ../modules/mycred-module-hooks.php:2487
5280
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5281
  msgstr ""
5282
 
5283
- #: ../modules/mycred-module-log.php:187 ../modules/mycred-module-log.php:208 ..
5284
  #: /modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5285
  msgid "Access denied for this action"
5286
  msgstr ""
5287
 
5288
- #: ../modules/mycred-module-log.php:194
5289
  msgid "Row Deleted"
5290
  msgstr ""
5291
 
5292
- #: ../modules/mycred-module-log.php:221
5293
  msgid "Log entry not found"
5294
  msgstr ""
5295
 
5296
- #: ../modules/mycred-module-log.php:234
5297
  msgid "Entry Updated"
5298
  msgstr ""
5299
 
5300
- #: ../modules/mycred-module-log.php:288 ../modules/mycred-module-settings.php:436
5301
  msgid "Entries"
5302
  msgstr ""
5303
 
5304
- #: ../modules/mycred-module-log.php:303 ../modules/mycred-module-log.php:383 ..
5305
- #: /modules/mycred-module-log.php:627 ../modules/mycred-module-settings.php:574
5306
  msgid "Export"
5307
  msgstr ""
5308
 
5309
- #: ../modules/mycred-module-log.php:309
5310
  msgid "Search results for"
5311
  msgstr ""
5312
 
5313
- #: ../modules/mycred-module-log.php:377
5314
  #, php-format
5315
  msgid "%s Log"
5316
  msgstr ""
5317
 
5318
- #: ../modules/mycred-module-log.php:502
5319
  msgid "Edit"
5320
  msgstr ""
5321
 
5322
- #: ../modules/mycred-module-log.php:543
5323
  msgid "Time"
5324
  msgstr ""
5325
 
5326
- #: ../modules/mycred-module-log.php:547
5327
  msgid "Current Log Entry"
5328
  msgstr ""
5329
 
5330
- #: ../modules/mycred-module-log.php:549
5331
  msgid "The current saved log entry"
5332
  msgstr ""
5333
 
5334
- #: ../modules/mycred-module-log.php:552
5335
  msgid "Adjust Log Entry"
5336
  msgstr ""
5337
 
5338
- #: ../modules/mycred-module-log.php:554
5339
  msgid "The new log entry"
5340
  msgstr ""
5341
 
5342
- #: ../modules/mycred-module-log.php:557
5343
  msgid "Update Log Entry"
5344
  msgstr ""
5345
 
5346
- #: ../modules/mycred-module-log.php:621
5347
  #, php-format
5348
  msgid "My %s History"
5349
  msgstr ""
@@ -5572,8 +5616,8 @@ msgstr ""
5572
  msgid "Forum authors can receive %_plural% for creating new topics."
5573
  msgstr ""
5574
 
5575
- #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 .
5576
- #: ./plugins/mycred-hook-simplepress.php:336
5577
  #, php-format
5578
  msgid "%plural% for Topic Deletion"
5579
  msgstr ""
@@ -5609,6 +5653,11 @@ msgstr ""
5609
  msgid "Show users %_plural% balance in replies"
5610
  msgstr ""
5611
 
 
 
 
 
 
5612
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5613
  msgid "BuddyPress: Gallery Actions"
5614
  msgstr ""
@@ -5985,19 +6034,15 @@ msgstr ""
5985
  msgid "%plural% for Topic Post Deletion"
5986
  msgstr ""
5987
 
5988
- #: ../plugins/mycred-hook-woocommerce.php:65
5989
  msgid "Reward with %plural%"
5990
  msgstr ""
5991
 
5992
- #: ../plugins/mycred-hook-woocommerce.php:70
5993
- msgid "User is excluded from this point type."
5994
- msgstr ""
5995
-
5996
- #: ../plugins/mycred-hook-woocommerce.php:199
5997
  msgid "WooCommerce Product Reviews"
5998
  msgstr ""
5999
 
6000
- #: ../plugins/mycred-hook-woocommerce.php:200
6001
  #, php-format
6002
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6003
  msgstr ""
@@ -6027,3 +6072,7 @@ msgstr ""
6027
  #, php-format
6028
  msgid "Awards %_plural% for users voting in polls."
6029
  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"
96
  msgstr ""
97
 
98
  #: ../mycred.php:727 ../mycred.php:748 ../addons/email-notices/myCRED-addon-email-
99
+ #: notices.php:718 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
100
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
101
  msgid "Setup"
102
  msgstr ""
122
  msgstr ""
123
 
124
  #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
125
+ #: 1558
126
  msgid "No limit"
127
  msgstr ""
128
 
148
  #: creds/abstracts/mycred-abstract-payment-gateway.php:982 ../addons/buy-
149
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1005 ../addons/buy-
150
  #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
151
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:868
152
  msgid "Select"
153
  msgstr ""
154
 
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 ""
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
 
510
  #: /addons/gateway/carts/mycred-marketpress.php:424 ..
511
  #: /addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
512
  #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:368 ..
513
+ #: /modules/mycred-module-hooks.php:886 ../modules/mycred-module-hooks.php:1756 ..
514
+ #: /modules/mycred-module-hooks.php:2098 ../plugins/mycred-hook-badgeOS.php:115 ..
515
  #: /plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
516
  #: /plugins/mycred-hook-events-manager-light.php:154 ../plugins/mycred-hook-
517
  #: events-manager-light.php:167 ../plugins/mycred-hook-gd-star-rating.php:109 ..
518
  #: /plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.
519
+ #: php:298 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-
520
  #: hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
521
  msgid "Log Template"
522
  msgstr ""
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
 
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
 
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
 
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 ""
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
 
1527
  msgstr ""
1528
 
1529
  #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1530
+ #: transfer.php:243 ../modules/mycred-module-hooks.php:1472 ../modules/mycred-
1531
+ #: module-hooks.php:1763
1532
  msgid "Limits"
1533
  msgstr ""
1534
 
1541
  msgstr ""
1542
 
1543
  #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1544
+ #: php:2203
1545
  msgid "Total"
1546
  msgstr ""
1547
 
1703
  msgstr ""
1704
 
1705
  #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1706
+ #: notices/myCRED-addon-email-notices.php:1115
1707
  msgid "Email Notice"
1708
  msgstr ""
1709
 
1888
  msgstr ""
1889
 
1890
  #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1891
+ #: notices/myCRED-addon-email-notices.php:782
1892
  msgid "Email Settings"
1893
  msgstr ""
1894
 
1895
  #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1896
+ #: notices/myCRED-addon-email-notices.php:905
1897
  msgid "Senders Name:"
1898
  msgstr ""
1899
 
1900
  #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1901
+ #: notices/myCRED-addon-email-notices.php:907
1902
  msgid "Senders Email:"
1903
  msgstr ""
1904
 
1922
  msgid "Ignored if HTML is not allowed in emails."
1923
  msgstr ""
1924
 
1925
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:716 ../addons/email-
1926
+ #: notices/myCRED-addon-email-notices.php:831
1927
  msgid "Email Subject"
1928
  msgstr ""
1929
 
1930
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:717
1931
  msgid "Status"
1932
  msgstr ""
1933
 
1934
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1935
  msgid "Not Active"
1936
  msgstr ""
1937
 
1938
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:739
1939
  #, php-format
1940
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1941
  msgstr ""
1942
 
1943
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:743
1944
  msgid "Active"
1945
  msgstr ""
1946
 
1947
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:745
1948
  #, php-format
1949
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1950
  msgstr ""
1951
 
1952
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755
1953
  msgid "Email is sent when"
1954
  msgstr ""
1955
 
1956
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1957
  msgid "Missing instance for this notice!"
1958
  msgstr ""
1959
 
1960
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:766 ../addons/email-
1961
+ #: notices/myCRED-addon-email-notices.php:768 ../addons/email-notices/myCRED-
1962
+ #: addon-email-notices.php:770
1963
  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
 
1972
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:768 ../addons/email-
1973
+ #: notices/myCRED-addon-email-notices.php:896
1974
  msgid "Administrator"
1975
  msgstr ""
1976
 
1977
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:770
1978
  msgid "Both Administrator and User"
1979
  msgstr ""
1980
 
1981
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1982
  msgid "Available Template Tags"
1983
  msgstr ""
1984
 
1985
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:802
1986
  msgid "Email Header"
1987
  msgstr ""
1988
 
1989
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:862
1990
  msgid "Send this email notice when..."
1991
  msgstr ""
1992
 
1993
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:893
1994
  msgid "Recipient:"
1995
  msgstr ""
1996
 
1997
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:897
1998
  msgid "Both"
1999
  msgstr ""
2000
 
2001
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:901 ..
2002
  #: /addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
2003
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
2004
  #: module-settings.php:526
2005
  msgid "Label"
2006
  msgstr ""
2007
 
2008
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2009
  msgid "Reply-To Email:"
2010
  msgstr ""
2011
 
2012
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:915
2013
  msgid "Save"
2014
  msgstr ""
2015
 
2016
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:927
2017
  msgid "CSS Styling"
2018
  msgstr ""
2019
 
2020
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:943
2021
  msgid "Site Related"
2022
  msgstr ""
2023
 
2024
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:944
2025
  msgid "Your websites title"
2026
  msgstr ""
2027
 
2028
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:945
2029
  msgid "Your websites address"
2030
  msgstr ""
2031
 
2032
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:946
2033
  msgid "Your websites tagline (description)"
2034
  msgstr ""
2035
 
2036
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:947
2037
  msgid "Your websites admin email"
2038
  msgstr ""
2039
 
2040
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:948
2041
  msgid "Total number of blog members"
2042
  msgstr ""
2043
 
2044
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1026 ../addons/email-
2045
+ #: notices/myCRED-addon-email-notices.php:1029 ../addons/email-notices/myCRED-
2046
+ #: addon-email-notices.php:1035
2047
  msgid "Email Notice Updated."
2048
  msgstr ""
2049
 
2050
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1031
2051
  msgid "Email Notice Activated"
2052
  msgstr ""
2053
 
2054
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1032
2055
  msgid "Email Notice Saved"
2056
  msgstr ""
2057
 
2058
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2059
  msgid ""
2060
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2061
  "are not yet ready to use this email notice!"
2062
  msgstr ""
2063
 
2064
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2065
  #, php-format
2066
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2067
  msgstr ""
2068
 
2069
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2070
  msgid "This email notice is active."
2071
  msgstr ""
2072
 
2073
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1066
2074
  msgid "Settings saved."
2075
  msgstr ""
2076
 
2077
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1114
2078
  msgid "Unsubscribe"
2079
  msgstr ""
2080
 
2081
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1135
2082
  msgid "There are no email notifications yet."
2083
  msgstr ""
2084
 
2085
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1141
2086
  msgid "Save Changes"
2087
  msgstr ""
2088
 
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
  #: /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
 
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
 
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 ""
3023
  msgid "Assign Ranks to Users"
3024
  msgstr ""
3025
 
3026
+ #: ../addons/ranks/includes/mycred-rank-functions.php:229
3027
  msgid "mycred_get_users_rank() : Missing required user id"
3028
  msgstr ""
3029
 
3030
+ #: ../addons/ranks/includes/mycred-rank-functions.php:238
3031
  msgid "no rank"
3032
  msgstr ""
3033
 
3204
  msgstr ""
3205
 
3206
  #: ../addons/transfer/myCRED-addon-transfer.php:45 ../includes/mycred-functions.
3207
+ #: php:2295
3208
  msgid "Transfer"
3209
  msgstr ""
3210
 
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
 
3393
  msgid "Show users limit"
3394
  msgstr ""
3395
 
3396
+ #: ../addons/transfer/myCRED-addon-transfer.php:800
3397
  msgid "username"
3398
  msgstr ""
3399
 
3400
+ #: ../addons/transfer/myCRED-addon-transfer.php:802
3401
  msgid "email"
3402
  msgstr ""
3403
 
3404
+ #: ../addons/transfer/myCRED-addon-transfer.php:804
3405
  #, php-format
3406
  msgid "recipients %s"
3407
  msgstr ""
3408
 
3409
+ #: ../addons/transfer/myCRED-addon-transfer.php:877
3410
  msgid "To:"
3411
  msgstr ""
3412
 
3413
+ #: ../addons/transfer/myCRED-addon-transfer.php:883
3414
  msgid "Amount:"
3415
  msgstr ""
3416
 
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
 
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
  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
 
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
 
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 ""
4921
 
4922
  #: ../modules/mycred-module-hooks.php:101
4923
  #, php-format
4924
+ msgid "%plural% for viewing content"
4925
  msgstr ""
4926
 
4927
  #: ../modules/mycred-module-hooks.php:102
4928
+ msgid ""
4929
+ "Award %_plural% to your users for viewing posts and / or %plural% to your "
4930
+ "authors for members viewing their content."
4931
+ msgstr ""
4932
+
4933
+ #: ../modules/mycred-module-hooks.php:108
4934
+ #, php-format
4935
+ msgid "%plural% for logins"
4936
+ msgstr ""
4937
+
4938
+ #: ../modules/mycred-module-hooks.php:109
4939
  #, php-format
4940
  msgid ""
4941
  "Award %_plural% for logging in to your website. You can also set an optional "
4942
  "limit."
4943
  msgstr ""
4944
 
4945
+ #: ../modules/mycred-module-hooks.php:115
4946
  #, php-format
4947
  msgid "%plural% for publishing content"
4948
  msgstr ""
4949
 
4950
+ #: ../modules/mycred-module-hooks.php:116
4951
  #, php-format
4952
  msgid ""
4953
  "Award %_plural% for publishing content on your website. If your custom post "
4954
  "type is not shown bellow, make sure it is set to \"Public\"."
4955
  msgstr ""
4956
 
4957
+ #: ../modules/mycred-module-hooks.php:122
4958
  #, php-format
4959
  msgid "%plural% for comments"
4960
  msgstr ""
4961
 
4962
+ #: ../modules/mycred-module-hooks.php:122
4963
  #, php-format
4964
  msgid "%plural% for Disqus comments"
4965
  msgstr ""
4966
 
4967
+ #: ../modules/mycred-module-hooks.php:123
4968
  #, php-format
4969
  msgid "Award %_plural% for making comments."
4970
  msgstr ""
4971
 
4972
+ #: ../modules/mycred-module-hooks.php:129
4973
  #, php-format
4974
  msgid "%plural% for clicking on links"
4975
  msgstr ""
4976
 
4977
+ #: ../modules/mycred-module-hooks.php:130
4978
  msgid ""
4979
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4980
  "shortcode."
4981
  msgstr ""
4982
 
4983
+ #: ../modules/mycred-module-hooks.php:136
4984
  #, php-format
4985
  msgid "%plural% for viewing Videos"
4986
  msgstr ""
4987
 
4988
+ #: ../modules/mycred-module-hooks.php:137
4989
  msgid ""
4990
  "Award %_plural% to users who watches videos embedded using the "
4991
  "[mycred_video] shortcode."
4992
  msgstr ""
4993
 
4994
+ #: ../modules/mycred-module-hooks.php:143
4995
  #, php-format
4996
  msgid "%plural% for referrals"
4997
  msgstr ""
4998
 
4999
+ #: ../modules/mycred-module-hooks.php:144
5000
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5001
  msgstr ""
5002
 
5003
+ #: ../modules/mycred-module-hooks.php:177
5004
  #, php-format
5005
  msgid "%s Hooks"
5006
  msgstr ""
5007
 
5008
+ #: ../modules/mycred-module-hooks.php:180
5009
  msgid ""
5010
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5011
  "depending on their actions around your website."
5012
  msgstr ""
5013
 
5014
+ #: ../modules/mycred-module-hooks.php:352 ../modules/mycred-module-hooks.php:446 .
5015
+ #: ./modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:622 ..
5016
+ #: /modules/mycred-module-hooks.php:684 ../modules/mycred-module-hooks.php:1004 ..
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.
5024
+ #: php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-
5025
+ #: buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ..
5026
+ #: /plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-
5027
+ #: buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ..
5028
+ #: /plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-
5029
+ #: buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ..
5030
+ #: /plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-
5031
+ #: buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ..
5032
+ #: /plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-
5033
+ #: buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ..
5034
+ #: /plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:
5035
+ #: 407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-
5036
+ #: buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-
5037
+ #: hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ..
5038
+ #: /plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:
5039
+ #: 939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-
5040
+ #: buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-
5041
+ #: hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ..
5042
+ #: /plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:
5043
+ #: 1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-
5044
+ #: form7.php:141 ../plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-
5045
+ #: hook-invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:240 ..
5046
+ #: /plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5047
+ #: /plugins/mycred-hook-sharethis.php:258 ../plugins/mycred-hook-simplepress.php:
5048
+ #: 330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-
5049
+ #: simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
5050
  msgid "Log template"
5051
  msgstr ""
5052
 
5053
+ #: ../modules/mycred-module-hooks.php:586
5054
+ #, php-format
5055
+ msgid "%plural% for viewing Posts"
5056
+ msgstr ""
5057
+
5058
+ #: ../modules/mycred-module-hooks.php:589 ../modules/mycred-module-hooks.php:600 .
5059
+ #: ./modules/mycred-module-hooks.php:614 ../modules/mycred-module-hooks.php:625 ..
5060
+ #: /modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:687
5061
+ msgid "Member"
5062
+ msgstr ""
5063
+
5064
+ #: ../modules/mycred-module-hooks.php:593 ../modules/mycred-module-hooks.php:606 .
5065
+ #: ./modules/mycred-module-hooks.php:618 ../modules/mycred-module-hooks.php:631 ..
5066
+ #: /modules/mycred-module-hooks.php:680 ../modules/mycred-module-hooks.php:693 ..
5067
+ #: /modules/mycred-module-hooks.php:1428 ../modules/mycred-module-hooks.php:1445 .
5068
+ #: ./modules/mycred-module-hooks.php:1462
5069
+ msgid "Content Author"
5070
+ msgstr ""
5071
+
5072
+ #: ../modules/mycred-module-hooks.php:611
5073
+ #, php-format
5074
+ msgid "%plural% for viewing Pages"
5075
+ msgstr ""
5076
+
5077
+ #: ../modules/mycred-module-hooks.php:673
5078
+ #, php-format
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 ""
5087
 
5088
+ #: ../modules/mycred-module-hooks.php:998
5089
  #, php-format
5090
  msgid "%plural% for Posts"
5091
  msgstr ""
5092
 
5093
+ #: ../modules/mycred-module-hooks.php:1011
5094
  #, php-format
5095
  msgid "%plural% for Pages"
5096
  msgstr ""
5097
 
5098
+ #: ../modules/mycred-module-hooks.php:1047
5099
  #, php-format
5100
  msgid "%plural% for %s"
5101
  msgstr ""
5102
 
5103
+ #: ../modules/mycred-module-hooks.php:1419
5104
  msgid ""
5105
  "%plural% are only awarded when your website has been synced with the Disqus "
5106
  "server!"
5107
  msgstr ""
5108
 
5109
+ #: ../modules/mycred-module-hooks.php:1424 ../modules/mycred-module-hooks.php:
5110
+ #: 1441 ../modules/mycred-module-hooks.php:1458
5111
  msgid "Comment Author"
5112
  msgstr ""
5113
 
5114
+ #: ../modules/mycred-module-hooks.php:1438
 
 
 
 
 
5115
  msgid "Comment Marked SPAM"
5116
  msgstr ""
5117
 
5118
+ #: ../modules/mycred-module-hooks.php:1455
5119
  msgid "Trashed / Unapproved Comments"
5120
  msgstr ""
5121
 
5122
+ #: ../modules/mycred-module-hooks.php:1475
5123
  msgid "Limit per post"
5124
  msgstr ""
5125
 
5126
+ #: ../modules/mycred-module-hooks.php:1477
5127
  msgid ""
5128
  "The number of comments per post that grants %_plural% to the comment author. "
5129
  "Use zero for unlimited."
5130
  msgstr ""
5131
 
5132
+ #: ../modules/mycred-module-hooks.php:1481
5133
  msgid "Limit per day"
5134
  msgstr ""
5135
 
5136
+ #: ../modules/mycred-module-hooks.php:1483
5137
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5138
  msgstr ""
5139
 
5140
+ #: ../modules/mycred-module-hooks.php:1488
5141
  msgid ""
5142
  "%plural% is to be awarded even when comment authors reply to their own "
5143
  "comment."
5144
  msgstr ""
5145
 
5146
+ #: ../modules/mycred-module-hooks.php:1559
5147
  msgid "Once for each unique URL"
5148
  msgstr ""
5149
 
5150
+ #: ../modules/mycred-module-hooks.php:1560
5151
  msgid "Once for each unique link id"
5152
  msgstr ""
5153
 
5154
+ #: ../modules/mycred-module-hooks.php:1753
5155
  msgid ""
5156
  "The default amount to award for clicking on links. You can override this in "
5157
  "the shortcode."
5158
  msgstr ""
5159
 
5160
+ #: ../modules/mycred-module-hooks.php:1760
5161
  #, php-format
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
 
5169
+ #: ../modules/mycred-module-hooks.php:1771
5170
  msgid ""
5171
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5172
  "generate one automatically based on the value set under href. If you are "
5174
  "by ID."
5175
  msgstr ""
5176
 
5177
+ #: ../modules/mycred-module-hooks.php:1773 ../modules/mycred-module-hooks.php:2131
5178
  msgid "Available Shortcode"
5179
  msgstr ""
5180
 
5181
+ #: ../modules/mycred-module-hooks.php:2095
5182
  msgid "Amount to award for viewing videos."
5183
  msgstr ""
5184
 
5185
+ #: ../modules/mycred-module-hooks.php:2105
5186
  msgid "Award Logic"
5187
  msgstr ""
5188
 
5189
+ #: ../modules/mycred-module-hooks.php:2107
5190
  #, php-format
5191
  msgid "Select when %_plural% should be awarded or deducted."
5192
  msgstr ""
5193
 
5194
+ #: ../modules/mycred-module-hooks.php:2108
5195
  msgid "Play - As soon as video starts playing."
5196
  msgstr ""
5197
 
5198
+ #: ../modules/mycred-module-hooks.php:2109
5199
  msgid "Full - First when the entire video has played."
5200
  msgstr ""
5201
 
5202
+ #: ../modules/mycred-module-hooks.php:2110
5203
  msgid "Interval - For each x number of seconds watched."
5204
  msgstr ""
5205
 
5206
+ #: ../modules/mycred-module-hooks.php:2115
5207
  msgid "Number of seconds"
5208
  msgstr ""
5209
 
5210
+ #: ../modules/mycred-module-hooks.php:2122
5211
  msgid "Leniency"
5212
  msgstr ""
5213
 
5214
+ #: ../modules/mycred-module-hooks.php:2124
5215
  msgid ""
5216
  "The maximum percentage a users view of a movie can differ from the actual "
5217
  "length."
5218
  msgstr ""
5219
 
5220
+ #: ../modules/mycred-module-hooks.php:2127
5221
  msgid ""
5222
  "Do not set this value to zero! A lot of thing can happen while a user "
5223
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5224
  "buffering or play back errors."
5225
  msgstr ""
5226
 
5227
+ #: ../modules/mycred-module-hooks.php:2195
5228
  msgid "Affiliate Program"
5229
  msgstr ""
5230
 
5231
+ #: ../modules/mycred-module-hooks.php:2204
5232
  msgid "Per Day"
5233
  msgstr ""
5234
 
5235
+ #: ../modules/mycred-module-hooks.php:2316
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
 
5327
+ #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
5328
  #: /modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5329
  msgid "Access denied for this action"
5330
  msgstr ""
5331
 
5332
+ #: ../modules/mycred-module-log.php:196
5333
  msgid "Row Deleted"
5334
  msgstr ""
5335
 
5336
+ #: ../modules/mycred-module-log.php:223
5337
  msgid "Log entry not found"
5338
  msgstr ""
5339
 
5340
+ #: ../modules/mycred-module-log.php:236
5341
  msgid "Entry Updated"
5342
  msgstr ""
5343
 
5344
+ #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:436
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
 
5353
+ #: ../modules/mycred-module-log.php:311
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 ""
5616
  msgid "Forum authors can receive %_plural% for creating new topics."
5617
  msgstr ""
5618
 
5619
+ #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-simplepress.php:
5620
+ #: 336
5621
  #, php-format
5622
  msgid "%plural% for Topic Deletion"
5623
  msgstr ""
5653
  msgid "Show users %_plural% balance in replies"
5654
  msgstr ""
5655
 
5656
+ #: ../plugins/mycred-hook-bbPress.php:568
5657
+ #, php-format
5658
+ msgid "%plural% for Reply Deletion"
5659
+ msgstr ""
5660
+
5661
  #: ../plugins/mycred-hook-buddypress-gallery.php:19
5662
  msgid "BuddyPress: Gallery Actions"
5663
  msgstr ""
6034
  msgid "%plural% for Topic Post Deletion"
6035
  msgstr ""
6036
 
6037
+ #: ../plugins/mycred-hook-woocommerce.php:67
6038
  msgid "Reward with %plural%"
6039
  msgstr ""
6040
 
6041
+ #: ../plugins/mycred-hook-woocommerce.php:197
 
 
 
 
6042
  msgid "WooCommerce Product Reviews"
6043
  msgstr ""
6044
 
6045
+ #: ../plugins/mycred-hook-woocommerce.php:198
6046
  #, php-format
6047
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6048
  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 ""
modules/mycred-module-addons.php CHANGED
@@ -157,7 +157,7 @@ if ( ! class_exists( 'myCRED_Addons_Module' ) ) {
157
  'name' => 'Banking',
158
  'description' => __( 'Setup recurring payouts or offer / charge interest on user account balances.', 'mycred' ),
159
  'addon_url' => 'http://mycred.me/add-ons/banking/',
160
- 'version' => '1.1',
161
  'author' => 'Gabriel S Merovingi',
162
  'author_url' => 'http://www.merovingi.com',
163
  'path' => myCRED_ADDONS_DIR . 'banking/myCRED-addon-banking.php'
@@ -216,7 +216,7 @@ if ( ! class_exists( 'myCRED_Addons_Module' ) ) {
216
  'author' => 'Gabriel S Merovingi',
217
  'author_url' => 'http://www.merovingi.com',
218
  'path' => myCRED_ADDONS_DIR . 'notifications/myCRED-addon-notifications.php',
219
- 'pro_url' => 'http://mycred.me/add-ons/notifications-plus/'
220
  );
221
 
222
  // Ranks Add-on
157
  'name' => 'Banking',
158
  'description' => __( 'Setup recurring payouts or offer / charge interest on user account balances.', 'mycred' ),
159
  'addon_url' => 'http://mycred.me/add-ons/banking/',
160
+ 'version' => '1.2',
161
  'author' => 'Gabriel S Merovingi',
162
  'author_url' => 'http://www.merovingi.com',
163
  'path' => myCRED_ADDONS_DIR . 'banking/myCRED-addon-banking.php'
216
  'author' => 'Gabriel S Merovingi',
217
  'author_url' => 'http://www.merovingi.com',
218
  'path' => myCRED_ADDONS_DIR . 'notifications/myCRED-addon-notifications.php',
219
+ 'pro_url' => 'http://mycred.me/store/notifications-plus-add-on/'
220
  );
221
 
222
  // Ranks Add-on
modules/mycred-module-buddypress.php CHANGED
@@ -331,7 +331,7 @@ if ( ! class_exists( 'myCRED_BuddyPress_Module' ) ) {
331
 
332
  if ( count( $mycred_types ) > 1 ) : ?>
333
 
334
- <form action="" method="get" style="display: block; height: 48px; float: right;"><label>Show:</label> <?php mycred_types_select_from_dropdown( 'show-ctype', 'mycred-select-type', $type ); ?> <input type="submit" class="btn btn-large btn-primary button button-large button-primary" value="<?php _e( 'Go', 'mycred' ); ?>" /></form>
335
  <?php endif; ?>
336
 
337
  <div class="wrap" id="myCRED-wrap">
331
 
332
  if ( count( $mycred_types ) > 1 ) : ?>
333
 
334
+ <form action="" id="mycred-sort-cred-history-form" method="get" style="display: block; height: 48px; float: right;"><label>Show:</label> <?php mycred_types_select_from_dropdown( 'show-ctype', 'mycred-select-type', $type ); ?> <input type="submit" class="btn btn-large btn-primary button button-large button-primary" value="<?php _e( 'Go', 'mycred' ); ?>" /></form>
335
  <?php endif; ?>
336
 
337
  <div class="wrap" id="myCRED-wrap">
modules/mycred-module-hooks.php CHANGED
@@ -96,6 +96,13 @@ if ( ! class_exists( 'myCRED_Hooks_Module' ) ) {
96
  'callback' => array( 'myCRED_Hook_Site_Visits' )
97
  );
98
 
 
 
 
 
 
 
 
99
  // Logins
100
  $installed['logging_in'] = array(
101
  'title' => __( '%plural% for logins', 'mycred' ),
@@ -378,21 +385,21 @@ if ( ! class_exists( 'myCRED_Hook_Site_Visits' ) ) {
378
  /**
379
  * Run
380
  * @since 1.5
381
- * @version 1.0
382
  */
383
  public function run() {
384
  // Make sure user is logged in. Also to prevent unneccery db queries we
385
  // check to make sure the user does not have the cookie.
386
  if ( is_user_logged_in() && ! isset( $_COOKIE['mycred_site_visit'] ) )
387
- add_action( 'mycred_init', array( $this, 'visit' ) );
388
  }
389
 
390
  /**
391
  * Visit Hook
392
  * @since 1.5
393
- * @version 1.0
394
  */
395
- public function visit() {
396
  // Current User ID
397
  $user_id = get_current_user_id();
398
 
@@ -401,14 +408,14 @@ if ( ! class_exists( 'myCRED_Hook_Site_Visits' ) ) {
401
  setcookie( 'mycred_site_visit', 1, $lifespan );
402
 
403
  // Make sure user is not excluded
404
- if ( $this->core->exclude_user( $user_id ) === true ) return;
405
 
406
  // Store todays date as an integer
407
- $today = (int) apply_filter( 'mycred_site_visit_id', date_i18n( 'Ynj' ) );
408
  $data = '';
409
 
410
  // Make sure this is unique
411
- if ( $this->core->has_entry( 'site_visit', $user_id, $today, $data, $this->mycred_type ) ) return;
412
 
413
  // Execute
414
  $this->core->add_creds(
@@ -448,6 +455,252 @@ if ( ! class_exists( 'myCRED_Hook_Site_Visits' ) ) {
448
  }
449
  }
450
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
451
  /**
452
  * Hook for loggins
453
  * @since 0.1
96
  'callback' => array( 'myCRED_Hook_Site_Visits' )
97
  );
98
 
99
+ // View Content
100
+ $installed['view_contents'] = array(
101
+ 'title' => __( '%plural% for viewing content', 'mycred' ),
102
+ 'description' => __( 'Award %_plural% to your users for viewing posts and / or %plural% to your authors for members viewing their content.', 'mycred' ),
103
+ 'callback' => array( 'myCRED_Hook_View_Contents' )
104
+ );
105
+
106
  // Logins
107
  $installed['logging_in'] = array(
108
  'title' => __( '%plural% for logins', 'mycred' ),
385
  /**
386
  * Run
387
  * @since 1.5
388
+ * @version 1.0.1
389
  */
390
  public function run() {
391
  // Make sure user is logged in. Also to prevent unneccery db queries we
392
  // check to make sure the user does not have the cookie.
393
  if ( is_user_logged_in() && ! isset( $_COOKIE['mycred_site_visit'] ) )
394
+ $this->site_visit();
395
  }
396
 
397
  /**
398
  * Visit Hook
399
  * @since 1.5
400
+ * @version 1.1
401
  */
402
+ public function site_visit() {
403
  // Current User ID
404
  $user_id = get_current_user_id();
405
 
408
  setcookie( 'mycred_site_visit', 1, $lifespan );
409
 
410
  // Make sure user is not excluded
411
+ if ( $this->core->exclude_user( $user_id ) ) return;
412
 
413
  // Store todays date as an integer
414
+ $today = (int) apply_filters( 'mycred_site_visit_id', date_i18n( 'Ynj' ) );
415
  $data = '';
416
 
417
  // Make sure this is unique
418
+ if ( $this->core->has_entry( 'site_visit', $today, $user_id, $data, $this->mycred_type ) ) return;
419
 
420
  // Execute
421
  $this->core->add_creds(
455
  }
456
  }
457
 
458
+ /**
459
+ * Hook for viewing content
460
+ * @since 1.5.1
461
+ * @version 1.0
462
+ */
463
+ if ( ! class_exists( 'myCRED_Hook_View_Contents' ) ) {
464
+ class myCRED_Hook_View_Contents extends myCRED_Hook {
465
+
466
+ /**
467
+ * Construct
468
+ */
469
+ function __construct( $hook_prefs, $type = 'mycred_default' ) {
470
+ $defaults = array(
471
+ 'post' => array(
472
+ 'creds' => 1,
473
+ 'log' => '%plural% for viewing a post',
474
+ 'acreds' => 1,
475
+ 'alog' => '%plural% for view of your post',
476
+ 'visitor' => 0
477
+ ),
478
+ 'page' => array(
479
+ 'creds' => 1,
480
+ 'log' => '%plural% for viewing a page',
481
+ 'acreds' => 1,
482
+ 'alog' => '%plural% for view of your page',
483
+ 'visitor' => 0
484
+ )
485
+ );
486
+
487
+ if ( isset( $hook_prefs['view_contents'] ) )
488
+ $defaults = $hook_prefs['view_contents'];
489
+
490
+ parent::__construct( array(
491
+ 'id' => 'view_contents',
492
+ 'defaults' => $defaults
493
+ ), $hook_prefs, $type );
494
+ }
495
+
496
+ /**
497
+ * Run
498
+ * @since 1.5.1
499
+ * @version 1.0
500
+ */
501
+ public function run() {
502
+ if ( is_user_logged_in() )
503
+ add_action( 'wp_footer', array( $this, 'content_loaded' ) );
504
+ }
505
+
506
+ /**
507
+ * Content Loaded
508
+ * @since 1.5.1
509
+ * @version 1.0
510
+ */
511
+ public function content_loaded() {
512
+ // Only applicable on single post type view
513
+ if ( ! is_single() && ! is_page() ) return;
514
+
515
+ global $post;
516
+
517
+ // Make sure this post type award points. Any amount but zero.
518
+ if ( isset( $this->prefs[ $post->post_type ]['creds'] ) && $this->prefs[ $post->post_type ]['creds'] != 0 && apply_filters( 'mycred_view_content', true, $this ) === true ) {
519
+
520
+ $user_id = get_current_user_id();
521
+
522
+ // No payout for viewing our own content
523
+ if ( $post->post_author != $user_id ) {
524
+
525
+ // Make sure user is not excluded
526
+ if ( $this->core->exclude_user( $user_id ) === true ) return;
527
+
528
+ // Prep data
529
+ $data = array( 'ref_type' => 'post' );
530
+
531
+ // Make sure this is unique
532
+ if ( ! $this->core->has_entry( 'view_content', $post->ID, $user_id, $data, $this->mycred_type ) )
533
+ $this->core->add_creds(
534
+ 'view_content',
535
+ $user_id,
536
+ $this->prefs[ $post->post_type ]['creds'],
537
+ $this->prefs[ $post->post_type ]['log'],
538
+ $post->ID,
539
+ $data,
540
+ $this->mycred_type
541
+ );
542
+
543
+ }
544
+
545
+ }
546
+
547
+ // Make sure this post type award points to the author. Any amount but zero.
548
+ if ( isset( $this->prefs[ $post->post_type ]['acreds'] ) && $this->prefs[ $post->post_type ]['acreds'] != 0 && apply_filters( 'mycred_view_content_author', true, $this ) === true ) {
549
+
550
+ $user_id = $post->post_author;
551
+
552
+ // No payout for viewing our own content
553
+ if ( get_current_user_id() != $user_id ) {
554
+
555
+ // Make sure user is not excluded
556
+ if ( $this->core->exclude_user( $user_id ) === true ) return;
557
+
558
+ // Prep data
559
+ $data = array( 'ref_type' => 'post', 'cui' => get_current_user_id() );
560
+
561
+ // Make sure this is unique
562
+ if ( ! $this->core->has_entry( 'view_content_author', $post->ID, $user_id, $data, $this->mycred_type ) )
563
+ $this->core->add_creds(
564
+ 'view_content_author',
565
+ $user_id,
566
+ $this->prefs[ $post->post_type ]['acreds'],
567
+ $this->prefs[ $post->post_type ]['alog'],
568
+ $post->ID,
569
+ $data,
570
+ $this->mycred_type
571
+ );
572
+
573
+ }
574
+
575
+ }
576
+ }
577
+
578
+ /**
579
+ * Preference for read content hook
580
+ * @since 1.5.1
581
+ * @version 1.0
582
+ */
583
+ public function preferences() {
584
+ $prefs = $this->prefs; ?>
585
+
586
+ <label class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for viewing Posts', 'mycred' ) ); ?></label>
587
+ <ol class="inline">
588
+ <li>
589
+ <label for="<?php echo $this->field_id( array( 'post' => 'creds' ) ); ?>"><?php _e( 'Member', 'mycred' ); ?></label>
590
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'post' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'post' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['post']['creds'] ); ?>" size="8" /></div>
591
+ </li>
592
+ <li>
593
+ <label for="<?php echo $this->field_id( array( 'post' => 'acreds' ) ); ?>"><?php _e( 'Content Author', 'mycred' ); ?></label>
594
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'post' => 'acreds' ) ); ?>" id="<?php echo $this->field_id( array( 'post' => 'acreds' ) ); ?>" value="<?php echo $this->core->number( $prefs['post']['acreds'] ); ?>" size="8" /></div>
595
+ </li>
596
+ </ol>
597
+ <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
598
+ <ol>
599
+ <li>
600
+ <label for="<?php echo $this->field_id( array( 'post' => 'log' ) ); ?>"><?php _e( 'Member', 'mycred' ); ?></label>
601
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'post' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'post' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['post']['log'] ); ?>" class="long" /></div>
602
+ <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
603
+ </li>
604
+ <li class="empty">&nbsp;</li>
605
+ <li>
606
+ <label for="<?php echo $this->field_id( array( 'post' => 'alog' ) ); ?>"><?php _e( 'Content Author', 'mycred' ); ?></label>
607
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'post' => 'alog' ) ); ?>" id="<?php echo $this->field_id( array( 'post' => 'alog' ) ); ?>" value="<?php echo esc_attr( $prefs['post']['alog'] ); ?>" class="long" /></div>
608
+ <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
609
+ </li>
610
+ </ol>
611
+ <label class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for viewing Pages', 'mycred' ) ); ?></label>
612
+ <ol class="inline">
613
+ <li>
614
+ <label for="<?php echo $this->field_id( array( 'page' => 'creds' ) ); ?>"><?php _e( 'Member', 'mycred' ); ?></label>
615
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'page' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'page' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['page']['creds'] ); ?>" size="8" /></div>
616
+ </li>
617
+ <li>
618
+ <label for="<?php echo $this->field_id( array( 'page' => 'acreds' ) ); ?>"><?php _e( 'Content Author', 'mycred' ); ?></label>
619
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'page' => 'acreds' ) ); ?>" id="<?php echo $this->field_id( array( 'page' => 'acreds' ) ); ?>" value="<?php echo $this->core->number( $prefs['page']['acreds'] ); ?>" size="8" /></div>
620
+ </li>
621
+ </ol>
622
+ <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
623
+ <ol>
624
+ <li>
625
+ <label for="<?php echo $this->field_id( array( 'page' => 'log' ) ); ?>"><?php _e( 'Member', 'mycred' ); ?></label>
626
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'page' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'page' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['page']['log'] ); ?>" class="long" /></div>
627
+ <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
628
+ </li>
629
+ <li class="empty">&nbsp;</li>
630
+ <li>
631
+ <label for="<?php echo $this->field_id( array( 'page' => 'alog' ) ); ?>"><?php _e( 'Content Author', 'mycred' ); ?></label>
632
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'page' => 'alog' ) ); ?>" id="<?php echo $this->field_id( array( 'page' => 'alog' ) ); ?>" value="<?php echo esc_attr( $prefs['page']['alog'] ); ?>" class="long" /></div>
633
+ <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
634
+ </li>
635
+ </ol>
636
+ <?php
637
+ // Get all not built-in post types (excludes posts, pages, media)
638
+ $post_type_args = array(
639
+ 'public' => true,
640
+ '_builtin' => false
641
+ );
642
+ $post_types = get_post_types( $post_type_args, 'objects', 'and' );
643
+ foreach ( $post_types as $post_type ) {
644
+ // Points to award/deduct
645
+ if ( isset( $prefs[ $post_type->name ]['creds'] ) )
646
+ $_creds = $prefs[ $post_type->name ]['creds'];
647
+ else
648
+ $_creds = 0;
649
+
650
+ // Log template
651
+ if ( isset( $prefs[ $post_type->name ]['log'] ) )
652
+ $_log = $prefs[ $post_type->name ]['log'];
653
+ else
654
+ $_log = '%plural% for viewing ' . $post_type->labels->name;
655
+
656
+ // Points to award/deduct
657
+ if ( isset( $prefs[ $post_type->name ]['acreds'] ) )
658
+ $_acreds = $prefs[ $post_type->name ]['acreds'];
659
+ else
660
+ $_acreds = 0;
661
+
662
+ // Log template
663
+ if ( isset( $prefs[ $post_type->name ]['alog'] ) )
664
+ $_alog = $prefs[ $post_type->name ]['alog'];
665
+ else
666
+ $_alog = '%plural% for view of your ' . $post_type->labels->name;
667
+
668
+ if ( isset( $prefs[ $post_type->name ]['visitor'] ) )
669
+ $visitor = (int) $prefs[ $post_type->name ]['visitor'];
670
+ else
671
+ $visitor = 0; ?>
672
+
673
+ <label class="subheader"><?php echo sprintf( $this->core->template_tags_general( __( '%plural% for viewing %s', 'mycred' ) ), $post_type->labels->name ); ?></label>
674
+ <ol class="inline">
675
+ <li>
676
+ <label for="<?php echo $this->field_id( array( $post_type->name => 'creds' ) ); ?>"><?php _e( 'Member', 'mycred' ); ?></label>
677
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type->name => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( $post_type->name => 'creds' ) ); ?>" value="<?php echo $this->core->number( $_creds ); ?>" size="8" /></div>
678
+ </li>
679
+ <li>
680
+ <label for="<?php echo $this->field_id( array( $post_type->name => 'acreds' ) ); ?>"><?php _e( 'Content Author', 'mycred' ); ?></label>
681
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type->name => 'acreds' ) ); ?>" id="<?php echo $this->field_id( array( $post_type->name => 'acreds' ) ); ?>" value="<?php echo $this->core->number( $_acreds ); ?>" size="8" /></div>
682
+ </li>
683
+ </ol>
684
+ <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
685
+ <ol>
686
+ <li>
687
+ <label for="<?php echo $this->field_id( array( $post_type->name => 'log' ) ); ?>"><?php _e( 'Member', 'mycred' ); ?></label>
688
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type->name => 'log' ) ); ?>" id="<?php echo $this->field_id( array( $post_type->name => 'log' ) ); ?>" value="<?php echo esc_attr( $_log ); ?>" class="long" /></div>
689
+ <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
690
+ </li>
691
+ <li class="empty">&nbsp;</li>
692
+ <li>
693
+ <label for="<?php echo $this->field_id( array( $post_type->name => 'alog' ) ); ?>"><?php _e( 'Content Author', 'mycred' ); ?></label>
694
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type->name => 'alog' ) ); ?>" id="<?php echo $this->field_id( array( $post_type->name => 'alog' ) ); ?>" value="<?php echo esc_attr( $_alog ); ?>" class="long" /></div>
695
+ <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
696
+ </li>
697
+ </ol>
698
+ <?php
699
+ }
700
+ }
701
+ }
702
+ }
703
+
704
  /**
705
  * Hook for loggins
706
  * @since 0.1
modules/mycred-module-log.php CHANGED
@@ -63,7 +63,7 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) {
63
  /**
64
  * Create CSV File Export
65
  * @since 1.4
66
- * @version 1.0
67
  */
68
  public function download_export_log() {
69
  if ( ! isset( $_REQUEST['mycred-export'] ) || $_REQUEST['mycred-export'] != 'do' ) return;
@@ -110,8 +110,10 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) {
110
  switch ( $type ) {
111
  case 'all' :
112
 
 
113
  unset( $data );
114
  $data = array();
 
115
  $data['number'] = -1;
116
 
117
  break;
@@ -316,7 +318,7 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) {
316
  /**
317
  * Admin Page
318
  * @since 0.1
319
- * @version 1.2
320
  */
321
  public function admin_page() {
322
  // Security
@@ -367,15 +369,11 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) {
367
 
368
  $log = new myCRED_Query_Log( $args );
369
 
370
- $log->headers['column-actions'] = __( 'Actions', 'mycred' );
371
-
372
- $url = 'myCRED';
373
- if ( $args['ctype'] != 'mycred_default' )
374
- $url = 'myCRED_' . $args['ctype']; ?>
375
 
376
  <div class="wrap" id="myCRED-wrap">
377
  <h2><?php $this->page_title( sprintf( __( '%s Log', 'mycred' ), $this->core->plural() ) ); ?></h2>
378
- <?php $log->filter_dates( admin_url( 'admin.php?page=' . $url ) ); ?>
379
 
380
  <?php do_action( 'mycred_top_log_page', $this ); ?>
381
 
@@ -408,7 +406,7 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) {
408
 
409
  $log->search(); ?>
410
 
411
- <input type="hidden" name="page" value="myCRED" />
412
  <?php do_action( 'mycred_above_log_table', $this ); ?>
413
 
414
  <div class="tablenav top">
63
  /**
64
  * Create CSV File Export
65
  * @since 1.4
66
+ * @version 1.0.1
67
  */
68
  public function download_export_log() {
69
  if ( ! isset( $_REQUEST['mycred-export'] ) || $_REQUEST['mycred-export'] != 'do' ) return;
110
  switch ( $type ) {
111
  case 'all' :
112
 
113
+ $old_data = $data;
114
  unset( $data );
115
  $data = array();
116
+ $data['ctype'] = $old_data['ctype'];
117
  $data['number'] = -1;
118
 
119
  break;
318
  /**
319
  * Admin Page
320
  * @since 0.1
321
+ * @version 1.2.1
322
  */
323
  public function admin_page() {
324
  // Security
369
 
370
  $log = new myCRED_Query_Log( $args );
371
 
372
+ $log->headers['column-actions'] = __( 'Actions', 'mycred' ); ?>
 
 
 
 
373
 
374
  <div class="wrap" id="myCRED-wrap">
375
  <h2><?php $this->page_title( sprintf( __( '%s Log', 'mycred' ), $this->core->plural() ) ); ?></h2>
376
+ <?php $log->filter_dates( admin_url( 'admin.php?page=' . $this->screen_id ) ); ?>
377
 
378
  <?php do_action( 'mycred_top_log_page', $this ); ?>
379
 
406
 
407
  $log->search(); ?>
408
 
409
+ <input type="hidden" name="page" value="<?php echo $this->screen_id; ?>" />
410
  <?php do_action( 'mycred_above_log_table', $this ); ?>
411
 
412
  <div class="tablenav top">
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
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' );
24
  define( 'myCRED_SLUG', 'mycred' );
25
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
26
 
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
  * 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
 
plugins/mycred-hook-buddypress-media.php CHANGED
@@ -112,7 +112,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
112
  // Get media details from id
113
  $model = new RTMediaModel();
114
  $media = $model->get_media( array( 'id' => $id ), 0, 1 );
115
- if ( ! isset( $media[0]->media_type ) ) continue;
116
 
117
  // If this media type awards zero, bail
118
  if ( $this->prefs['delete_media'][ $media[0]->media_type ] == $this->core->zero() ) return;
112
  // Get media details from id
113
  $model = new RTMediaModel();
114
  $media = $model->get_media( array( 'id' => $id ), 0, 1 );
115
+ if ( ! isset( $media[0]->media_type ) ) return;
116
 
117
  // If this media type awards zero, bail
118
  if ( $this->prefs['delete_media'][ $media[0]->media_type ] == $this->core->zero() ) return;
plugins/mycred-hook-woocommerce.php CHANGED
@@ -42,7 +42,7 @@ endif;
42
  /**
43
  * Product Metabox
44
  * @since 1.5
45
- * @version 1.0
46
  */
47
  if ( ! function_exists( 'mycred_woo_product_metabox' ) ) :
48
  function mycred_woo_product_metabox( $post )
@@ -58,17 +58,15 @@ if ( ! function_exists( 'mycred_woo_product_metabox' ) ) :
58
  }
59
 
60
  $count = 0;
 
61
  foreach ( $types as $type => $label ) {
62
  $count ++;
63
- $mycred = mycred( $type ); ?>
 
64
 
65
  <p class="<?php if ( $count == 1 ) echo 'first'; ?>"><label for="mycred-reward-purchase-with-<?php echo $type; ?>"><input class="toggle-mycred-reward" data-id="<?php echo $type; ?>" <?php if ( $prefs[ $type ] != '' ) echo 'checked="checked"'; ?> type="checkbox" name="mycred_reward[<?php echo $type; ?>][use]" id="mycred-reward-purchase-with-<?php echo $type; ?>" value="<?php echo $prefs[ $type ]; ?>" /> <?php echo $mycred->template_tags_general( __( 'Reward with %plural%', 'mycred' ) ); ?></label></p>
66
  <div class="mycred-woo-wrap" id="reward-<?php echo $type; ?>" style="display:<?php if ( $prefs[ $type ] == '' ) echo 'none'; else echo 'block'; ?>">
67
- <?php if ( ! $mycred->exclude_user( $post->post_author ) ) : ?>
68
  <label><?php echo $mycred->plural(); ?></label> <input type="text" size="8" name="mycred_reward[<?php echo $type; ?>][amount]" value="<?php echo $prefs[ $type ]; ?>" placeholder="<?php echo $mycred->zero(); ?>" />
69
- <?php else : ?>
70
- <p><?php _e( 'User is excluded from this point type.', 'mycred' ); ?></p>
71
- <?php endif; ?>
72
  </div>
73
  <?php
74
  } ?>
42
  /**
43
  * Product Metabox
44
  * @since 1.5
45
+ * @version 1.1
46
  */
47
  if ( ! function_exists( 'mycred_woo_product_metabox' ) ) :
48
  function mycred_woo_product_metabox( $post )
58
  }
59
 
60
  $count = 0;
61
+ $cui = get_current_user_id();
62
  foreach ( $types as $type => $label ) {
63
  $count ++;
64
+ $mycred = mycred( $type );
65
+ if ( ! $mycred->can_edit_creds( $cui ) ) continue; ?>
66
 
67
  <p class="<?php if ( $count == 1 ) echo 'first'; ?>"><label for="mycred-reward-purchase-with-<?php echo $type; ?>"><input class="toggle-mycred-reward" data-id="<?php echo $type; ?>" <?php if ( $prefs[ $type ] != '' ) echo 'checked="checked"'; ?> type="checkbox" name="mycred_reward[<?php echo $type; ?>][use]" id="mycred-reward-purchase-with-<?php echo $type; ?>" value="<?php echo $prefs[ $type ]; ?>" /> <?php echo $mycred->template_tags_general( __( 'Reward with %plural%', 'mycred' ) ); ?></label></p>
68
  <div class="mycred-woo-wrap" id="reward-<?php echo $type; ?>" style="display:<?php if ( $prefs[ $type ] == '' ) echo 'none'; else echo 'block'; ?>">
 
69
  <label><?php echo $mycred->plural(); ?></label> <input type="text" size="8" name="mycred_reward[<?php echo $type; ?>][amount]" value="<?php echo $prefs[ $type ]; ?>" placeholder="<?php echo $mycred->zero(); ?>" />
 
 
 
70
  </div>
71
  <?php
72
  } ?>
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
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -11,10 +11,6 @@ myCRED is an adaptive points management system that lets you award / charge your
11
 
12
  == Description ==
13
 
14
- **Important! myCRED 1.5 requires WordPress 3.8 or higher! Websites using WordPress 3.5 or higher would need to use version 1.4.7.**
15
-
16
- **Premium buyCRED Gateway users must disable their premium gateways before updating myCRED! Please update to the latest version before enabling them again!**
17
-
18
  I felt that todays WordPress community lacks a flexible points management system. Existing system often feel restrictive, stale or lack support for popular plugins.
19
 
20
  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.
@@ -104,8 +100,8 @@ myCRED supports importing, exporting, inline editing and manual deletion of log
104
 
105
  == Upgrade Notice ==
106
 
107
- = 1.5 =
108
- Expanding multiple point type support.
109
 
110
 
111
  == Other Notes ==
@@ -128,28 +124,25 @@ Expanding multiple point type support.
128
 
129
  == Changelog ==
130
 
131
- = 1.5 =
132
- * NEW - buyCRED now supports sales of multiple point types at the same time.
133
- * TWEAK - buyCRED now saves a pending payment that users can cancel or pay later via the mycred_buy_pending shortcode.
134
- * NEW - Profile / Balance editor.
135
- * NEW - Option to override the buyCRED gateway exchange rate on a user level basis.
136
- * NEW - Option to exclude users from their profile.
137
- * NEW - New shortcode mycred_exchange which lets your users exchange one point type for another.
138
- * FIX - When creating a new point type, the first time this point types settings are saved, the "Exclude" checkboxes get checked.
139
- * FIX - Incorrect logic for the Affiliate Hook.
140
- * NEW - Added new Badges add-on.
141
- * TWEAK - If a signup needs to be verified in BuddyPress, the affiliates hook will award points first when the new registration has been verified.
142
- * TWEAK - If a signup needs to be verified in BuddyPress, the registration hook will award points first when the new registration has been verified.
143
- * TWEAK - Leaderboard shortcode and widget now supports being based on either your users current balance or most points gained by reference.
144
- * NEW - The mycred_my_ranking shortcode now has a new attribute that allows you to set what to return if a user is not in the list.
145
- * NEW - Added new mycred_decline_store_purchase filter to all supported shopping carts allowing third-parties to decline store purchases using the myCRED gateway for any custom reason.
146
- * FIX - Adjusted the log editor javascript to better handle html code in log entries.
147
- * NEW - Added new hook for daily site visits.
148
- * NEW - Added new Hook for sharing content on social media sites via the ShareThis plugin.
149
- * TWEAK - Added option to override a users interest rate for the Banking add-on along with excluding users based on user ID or role.
150
- * NEW - Re-wrote the transfer shortcode to use a form to submit making customisations easier. You no longer need to replace the transfer.js file.
151
- * NEW - Added option to transfer shortcode to override the button label.
152
 
 
 
153
 
154
  = 1.4.7 =
155
  http://mycred.me/support/changelog/2/
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
 
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
 
101
  == Upgrade Notice ==
102
 
103
+ = 1.5.1 =
104
+ Important bug fixes.
105
 
106
 
107
  == Other Notes ==
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/
146
 
147
  = 1.4.7 =
148
  http://mycred.me/support/changelog/2/