myCRED - Version 1.7.9.1

Version Description

Last set of bug fixes for the 1.7.x version.

=

Download this release

Release Info

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

Code changes from version 1.7.9 to 1.7.9.1

abstracts/mycred-abstract-hook.php CHANGED
@@ -188,7 +188,7 @@ if ( ! class_exists( 'myCRED_Hook' ) ) :
188
  /**
189
  * Check Limit
190
  * @since 1.6
191
- * @version 1.1
192
  */
193
  function over_hook_limit( $instance = '', $reference = '', $user_id = NULL, $ref_id = NULL ) {
194
 
@@ -227,6 +227,9 @@ if ( ! class_exists( 'myCRED_Hook' ) ) :
227
  if ( count( explode( '/', $prefs ) ) != 2 )
228
  $prefs = '0/x';
229
 
 
 
 
230
  // Prep settings
231
  list ( $amount, $period ) = explode( '/', $prefs );
232
  $amount = (int) $amount;
188
  /**
189
  * Check Limit
190
  * @since 1.6
191
+ * @version 1.2
192
  */
193
  function over_hook_limit( $instance = '', $reference = '', $user_id = NULL, $ref_id = NULL ) {
194
 
227
  if ( count( explode( '/', $prefs ) ) != 2 )
228
  $prefs = '0/x';
229
 
230
+ // Set to "no limit"
231
+ if ( ! $exists_check && $prefs === '0/x' ) return false;
232
+
233
  // Prep settings
234
  list ( $amount, $period ) = explode( '/', $prefs );
235
  $amount = (int) $amount;
abstracts/mycred-abstract-module.php CHANGED
@@ -448,15 +448,13 @@ if ( ! class_exists( 'myCRED_Module' ) ) :
448
  /**
449
  * Save Log Entries per page
450
  * @since 0.1
451
- * @version 1.0
452
  */
453
  function set_entries_per_page() {
454
 
455
  if ( ! isset( $_REQUEST['wp_screen_options']['option'] ) || ! isset( $_REQUEST['wp_screen_options']['value'] ) ) return;
456
 
457
  $settings_key = 'mycred_epp_' . $_GET['page'];
458
- if ( ! $this->is_main_type )
459
- $settings_key .= '_' . $this->mycred_type;
460
 
461
  if ( $_REQUEST['wp_screen_options']['option'] == $settings_key ) {
462
  $value = absint( $_REQUEST['wp_screen_options']['value'] );
448
  /**
449
  * Save Log Entries per page
450
  * @since 0.1
451
+ * @version 1.0.1
452
  */
453
  function set_entries_per_page() {
454
 
455
  if ( ! isset( $_REQUEST['wp_screen_options']['option'] ) || ! isset( $_REQUEST['wp_screen_options']['value'] ) ) return;
456
 
457
  $settings_key = 'mycred_epp_' . $_GET['page'];
 
 
458
 
459
  if ( $_REQUEST['wp_screen_options']['option'] == $settings_key ) {
460
  $value = absint( $_REQUEST['wp_screen_options']['value'] );
addons/badges/includes/mycred-badge-functions.php CHANGED
@@ -625,7 +625,7 @@ endif;
625
  /**
626
  * Assign Badge to User
627
  * @since 1.7
628
- * @version 1.0.1
629
  */
630
  if ( ! function_exists( 'mycred_assign_badge_to_user' ) ) :
631
  function mycred_assign_badge_to_user( $user_id = NULL, $badge_id = NULL, $level = 0 ) {
@@ -650,6 +650,9 @@ if ( ! function_exists( 'mycred_assign_badge_to_user' ) ) :
650
  // Save the badge connection
651
  mycred_update_user_meta( $user_id, $meta_key, '', $value );
652
 
 
 
 
653
  return true;
654
 
655
  }
@@ -659,34 +662,51 @@ endif;
659
  * Get Users Badges
660
  * Returns the badge post IDs that a given user currently holds.
661
  * @since 1.5
662
- * @version 1.2
663
  */
664
  if ( ! function_exists( 'mycred_get_users_badges' ) ) :
665
- function mycred_get_users_badges( $user_id = NULL ) {
666
 
667
  if ( $user_id === NULL ) return '';
668
 
669
- global $wpdb;
 
670
 
671
- $query = $wpdb->get_results( $wpdb->prepare( "
672
- SELECT *
673
- FROM {$wpdb->usermeta}
674
- WHERE user_id = %d
675
- AND meta_key LIKE %s", $user_id, 'mycred_badge%' ) );
676
 
677
- $badge_ids = array();
678
- if ( ! empty( $query ) ) {
679
- foreach ( $query as $badge ) {
 
680
 
681
- $badge_id = substr( $badge->meta_key, 12 );
682
- if ( $badge_id == '' ) continue;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
683
 
684
- $badge_id = (int) $badge_id;
685
- if ( array_key_exists( $badge_id, $badge_ids ) ) continue;
686
 
687
- $badge_ids[ $badge_id ] = $badge->meta_value;
 
 
 
 
688
 
689
  }
 
690
  }
691
 
692
  return apply_filters( 'mycred_get_users_badges', $badge_ids, $user_id );
625
  /**
626
  * Assign Badge to User
627
  * @since 1.7
628
+ * @version 1.0.2
629
  */
630
  if ( ! function_exists( 'mycred_assign_badge_to_user' ) ) :
631
  function mycred_assign_badge_to_user( $user_id = NULL, $badge_id = NULL, $level = 0 ) {
650
  // Save the badge connection
651
  mycred_update_user_meta( $user_id, $meta_key, '', $value );
652
 
653
+ // Reset badge id cache
654
+ mycred_get_users_badges( $user_id, true );
655
+
656
  return true;
657
 
658
  }
662
  * Get Users Badges
663
  * Returns the badge post IDs that a given user currently holds.
664
  * @since 1.5
665
+ * @version 1.3
666
  */
667
  if ( ! function_exists( 'mycred_get_users_badges' ) ) :
668
+ function mycred_get_users_badges( $user_id = NULL, $force = false ) {
669
 
670
  if ( $user_id === NULL ) return '';
671
 
672
+ $badge_ids = array();
673
+ if ( ! $force ) {
674
 
675
+ $query = mycred_get_user_meta( $user_id, 'mycred_badge_ids' );
 
 
 
 
676
 
677
+ if ( is_array( $query ) && ! empty( $query ) )
678
+ $badge_ids = $query;
679
+
680
+ }
681
 
682
+ if ( empty( $badge_ids ) ) {
683
+
684
+ global $wpdb;
685
+
686
+ $query = $wpdb->get_results( $wpdb->prepare( "
687
+ SELECT *
688
+ FROM {$wpdb->usermeta}
689
+ WHERE user_id = %d
690
+ AND meta_key LIKE %s", $user_id, 'mycred_badge%' ) );
691
+
692
+ if ( ! empty( $query ) ) {
693
+
694
+ foreach ( $query as $badge ) {
695
+
696
+ $badge_id = substr( $badge->meta_key, 12 );
697
+ if ( $badge_id == '' ) continue;
698
 
699
+ $badge_id = (int) $badge_id;
700
+ if ( array_key_exists( $badge_id, $badge_ids ) ) continue;
701
 
702
+ $badge_ids[ $badge_id ] = $badge->meta_value;
703
+
704
+ }
705
+
706
+ mycred_update_user_meta( $user_id, 'mycred_badge_ids', '', $badge_ids );
707
 
708
  }
709
+
710
  }
711
 
712
  return apply_filters( 'mycred_get_users_badges', $badge_ids, $user_id );
addons/email-notices/myCRED-addon-email-notices.php CHANGED
@@ -1009,12 +1009,18 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1009
  /**
1010
  * Badge Check
1011
  * @since 1.7
1012
- * @version 1.0.2
1013
  */
1014
  public function badge_check( $user_id, $badge_id, $level_reached ) {
1015
 
1016
  if ( $level_reached === false ) return;
1017
 
 
 
 
 
 
 
1018
  $events = array( 'badges|positive' );
1019
  $request = array(
1020
  'ref' => 'badge',
@@ -1126,7 +1132,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1126
  /**
1127
  * Do Email Notices
1128
  * @since 1.1
1129
- * @version 1.2
1130
  */
1131
  public function do_email_notices( $events = array(), $request = array() ) {
1132
 
@@ -1208,23 +1214,27 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1208
  if ( $settings['reply_to'] != '' )
1209
  $headers[] = 'Reply-To: ' . $settings['reply_to'];
1210
 
1211
- // Both means we blank carbon copy the admin so the user does not see email
1212
- if ( $settings['recipient'] == 'both' )
1213
- $headers[] = 'Bcc: ' . get_option( 'admin_email' );
1214
-
1215
  // If email was successfully sent we update 'last_run'
1216
- if ( $this->wp_mail( $to, $subject, $message, $headers, $attachments, $request, $notice->ID ) === true )
 
1217
  update_post_meta( $notice->ID, 'mycred_email_last_run', time() );
1218
 
 
 
 
 
 
1219
  }
1220
  else {
1221
 
1222
  // If email was successfully sent we update 'last_run'
1223
  if ( $this->wp_mail( $to, $subject, $message, $headers, $attachments, $request, $notice->ID ) === true ) {
 
1224
  update_post_meta( $notice->ID, 'mycred_email_last_run', time() );
1225
 
1226
  if ( $settings['recipient'] == 'both' )
1227
  $this->wp_mail( get_option( 'admin_email' ), $subject, $message, $headers, $attachments, $request, $notice->ID );
 
1228
  }
1229
 
1230
  }
@@ -1262,7 +1272,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1262
  $subject = $mycred->parse_template_tags( $subject, $entry );
1263
  $message = $mycred->parse_template_tags( $message, $entry );
1264
 
1265
- if ( $this->emailnotices['use_html'] === true )
1266
  $message = wpautop( $message );
1267
 
1268
  $message = wptexturize( $message );
@@ -1271,7 +1281,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1271
  $message = apply_filters( 'mycred_email_message_body', $message, $filtered, $this );
1272
 
1273
  // Construct HTML Content
1274
- if ( $this->emailnotices['use_html'] === true ) {
1275
  $styling = $this->get_email_styling( $email_id );
1276
  $message = '<html><head><title>' . $subject . '</title><style type="text/css" media="all"> ' . trim( $styling ) . '</style></head><body>' . $message . '</body></html>';
1277
  }
@@ -1297,7 +1307,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1297
  */
1298
  public function get_email_format() {
1299
 
1300
- if ( $this->emailnotices['use_html'] === false )
1301
  return 'text/plain';
1302
 
1303
  return 'text/html';
@@ -1329,15 +1339,15 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1329
  $content = str_replace( '%new_balance%', $new_balance, $content );
1330
  $content = str_replace( '%new_balance_f%', $type->format_creds( $new_balance ), $content );
1331
 
1332
- $content = str_replace( '%amount%', $request['amount'], $content );
1333
- $content = str_replace( '%entry%', $request['entry'], $content );
1334
- $content = str_replace( '%data%', maybe_serialize( $request['data'] ), $content );
1335
 
1336
- $content = str_replace( '%blog_name%', get_option( 'blogname' ), $content );
1337
- $content = str_replace( '%blog_url%', get_option( 'home' ), $content );
1338
- $content = str_replace( '%blog_info%', get_option( 'blogdescription' ), $content );
1339
- $content = str_replace( '%admin_email%', get_option( 'admin_email' ), $content );
1340
- $content = str_replace( '%num_members%', $this->core->count_members(), $content );
1341
 
1342
  return $content;
1343
 
1009
  /**
1010
  * Badge Check
1011
  * @since 1.7
1012
+ * @version 1.0.3
1013
  */
1014
  public function badge_check( $user_id, $badge_id, $level_reached ) {
1015
 
1016
  if ( $level_reached === false ) return;
1017
 
1018
+ $meta_key = 'mycred_badge' . $badge_id;
1019
+
1020
+ // No assignment should occur if we already have this badge + level
1021
+ $current_level = mycred_get_user_meta( $user_id, $meta_key );
1022
+ if ( $current_level != '' && $current_level == $level_reached ) return;
1023
+
1024
  $events = array( 'badges|positive' );
1025
  $request = array(
1026
  'ref' => 'badge',
1132
  /**
1133
  * Do Email Notices
1134
  * @since 1.1
1135
+ * @version 1.2.1
1136
  */
1137
  public function do_email_notices( $events = array(), $request = array() ) {
1138
 
1214
  if ( $settings['reply_to'] != '' )
1215
  $headers[] = 'Reply-To: ' . $settings['reply_to'];
1216
 
 
 
 
 
1217
  // If email was successfully sent we update 'last_run'
1218
+ if ( $this->wp_mail( $to, $subject, $message, $headers, $attachments, $request, $notice->ID ) === true ) {
1219
+
1220
  update_post_meta( $notice->ID, 'mycred_email_last_run', time() );
1221
 
1222
+ if ( $settings['recipient'] == 'both' )
1223
+ $this->wp_mail( get_option( 'admin_email' ), $subject, $message, $headers, $attachments, $request, $notice->ID );
1224
+
1225
+ }
1226
+
1227
  }
1228
  else {
1229
 
1230
  // If email was successfully sent we update 'last_run'
1231
  if ( $this->wp_mail( $to, $subject, $message, $headers, $attachments, $request, $notice->ID ) === true ) {
1232
+
1233
  update_post_meta( $notice->ID, 'mycred_email_last_run', time() );
1234
 
1235
  if ( $settings['recipient'] == 'both' )
1236
  $this->wp_mail( get_option( 'admin_email' ), $subject, $message, $headers, $attachments, $request, $notice->ID );
1237
+
1238
  }
1239
 
1240
  }
1272
  $subject = $mycred->parse_template_tags( $subject, $entry );
1273
  $message = $mycred->parse_template_tags( $message, $entry );
1274
 
1275
+ if ( $this->emailnotices['use_html'] )
1276
  $message = wpautop( $message );
1277
 
1278
  $message = wptexturize( $message );
1281
  $message = apply_filters( 'mycred_email_message_body', $message, $filtered, $this );
1282
 
1283
  // Construct HTML Content
1284
+ if ( $this->emailnotices['use_html'] ) {
1285
  $styling = $this->get_email_styling( $email_id );
1286
  $message = '<html><head><title>' . $subject . '</title><style type="text/css" media="all"> ' . trim( $styling ) . '</style></head><body>' . $message . '</body></html>';
1287
  }
1307
  */
1308
  public function get_email_format() {
1309
 
1310
+ if ( ! $this->emailnotices['use_html'] )
1311
  return 'text/plain';
1312
 
1313
  return 'text/html';
1339
  $content = str_replace( '%new_balance%', $new_balance, $content );
1340
  $content = str_replace( '%new_balance_f%', $type->format_creds( $new_balance ), $content );
1341
 
1342
+ $content = str_replace( '%amount%', $request['amount'], $content );
1343
+ $content = str_replace( '%entry%', $request['entry'], $content );
1344
+ $content = str_replace( '%data%', maybe_serialize( $request['data'] ), $content );
1345
 
1346
+ $content = str_replace( '%blog_name%', get_option( 'blogname' ), $content );
1347
+ $content = str_replace( '%blog_url%', get_option( 'home' ), $content );
1348
+ $content = str_replace( '%blog_info%', get_option( 'blogdescription' ), $content );
1349
+ $content = str_replace( '%admin_email%', get_option( 'admin_email' ), $content );
1350
+ $content = str_replace( '%num_members%', $this->core->count_members(), $content );
1351
 
1352
  return $content;
1353
 
addons/gateway/event-booking/mycred-eventsmanager-pro.php DELETED
@@ -1,812 +0,0 @@
1
- <?php
2
- if ( ! defined( 'myCRED_VERSION' ) ) exit;
3
-
4
- /**
5
- * Events Manager Pro Gateway
6
- * @since 1.3
7
- * @version 1.3
8
- */
9
- if ( ! class_exists( 'EM_Gateway_myCRED' ) && class_exists( 'EM_Gateway' ) ) :
10
- class EM_Gateway_myCRED extends EM_Gateway {
11
-
12
- public $gateway = 'mycred';
13
- public $title = '';
14
- public $status = 4;
15
- public $status_txt = '';
16
- public $mycred_type = 'mycred_default';
17
- public $button_enabled = true;
18
- public $supports_multiple_bookings = true;
19
- public $registered_timer = 0;
20
-
21
- /**
22
- * Construct
23
- */
24
- function __construct() {
25
-
26
- // Default settings
27
- $defaults = array(
28
- 'setup' => 'off',
29
- 'type' => 'mycred_default',
30
- 'rate' => 100,
31
- 'share' => 0,
32
- 'log' => array(
33
- 'purchase' => __( 'Payment for tickets to %link_with_title%', 'mycred' ),
34
- 'refund' => __( 'Ticket refund for %link_with_title%', 'mycred' )
35
- ),
36
- 'refund' => 0,
37
- 'labels' => array(
38
- 'header' => __( 'Pay using your %_plural% balance', 'mycred' ),
39
- 'button' => __( 'Pay Now', 'mycred' ),
40
- 'link' => __( 'Pay', 'mycred' ),
41
- 'checkout' => __( '%plural% Cost', 'mycred' )
42
- ),
43
- 'messages' => array(
44
- 'success' => __( 'Thank you for your payment!', 'mycred' ),
45
- 'error' => __( "I'm sorry but you can not pay for these tickets using %_plural%", 'mycred' )
46
- )
47
- );
48
-
49
- // Settings
50
- $settings = get_option( 'mycred_eventsmanager_gateway_prefs' );
51
- $this->prefs = mycred_apply_defaults( $defaults, $settings );
52
-
53
- $this->mycred_type = $this->prefs['type'];
54
-
55
- // Load myCRED
56
- $this->core = mycred( $this->mycred_type );
57
-
58
- // Apply Whitelabeling
59
- $this->label = mycred_label();
60
- $this->title = strip_tags( $this->label );
61
- $this->status_txt = 'Paid using ' . strip_tags( $this->label );
62
-
63
- parent::__construct();
64
-
65
- if ( ! $this->is_active() ) return;
66
-
67
- // Currency
68
- add_filter( 'em_get_currencies', array( $this, 'add_currency' ) );
69
- if ( $this->single_currency() )
70
- add_filter( 'em_get_currency_formatted', array( $this, 'format_price' ), 10, 4 );
71
-
72
- // Adjust Ticket Columns
73
- add_filter( 'em_booking_form_tickets_cols', array( $this, 'ticket_columns' ), 10, 2 );
74
- add_action( 'em_booking_form_tickets_col_mycred', array( $this, 'ticket_col' ), 10, 2 );
75
- add_filter( 'em_bookings_table_cols_col_action', array( $this, 'bookings_table_actions' ), 10, 2 );
76
- add_action( 'em_cart_form_after_totals', array( $this, 'checkout_total' ) );
77
-
78
- // Refund
79
- if ( $this->prefs['refund'] != 0 )
80
- add_filter( 'em_booking_set_status', array( $this, 'refunds' ), 10, 2 );
81
-
82
- }
83
-
84
- /**
85
- * Add Currency
86
- * Adds "Points" as a form of currency
87
- * @since 1.3
88
- * @version 1.0
89
- */
90
- public function add_currency( $currencies ) {
91
-
92
- $currencies->names['XMY'] = $this->core->plural();
93
-
94
- if ( empty( $this->core->before ) && ! empty( $this->core->after ) ) {
95
- $currencies->symbols['XMY'] = $this->core->after;
96
- $currencies->true_symbols['XMY'] = $this->core->after;
97
- }
98
- elseif ( ! empty( $this->core->before ) && empty( $this->core->after ) ) {
99
- $currencies->symbols['XMY'] = $this->core->before;
100
- $currencies->true_symbols['XMY'] = $this->core->before;
101
- }
102
- else {
103
- $currencies->symbols['XMY'] = '';
104
- $currencies->true_symbols['XMY'] = '';
105
- }
106
-
107
- return $currencies;
108
-
109
- }
110
-
111
- /**
112
- * Check if using Single Currency
113
- * @since 1.3
114
- * @version 1.0
115
- */
116
- public function single_currency() {
117
-
118
- if ( $this->prefs['setup'] == 'single' ) return true;
119
- return false;
120
-
121
- }
122
-
123
- /**
124
- * Format Price dbem_bookings_currency_format
125
- * @since 1.3
126
- * @version 1.0
127
- */
128
- public function format_price( $formatted_price, $price, $currency, $format ) {
129
-
130
- if ( $currency == 'XMY' )
131
- return $this->core->format_creds( $price );
132
- else
133
- return $formatted_price;
134
-
135
- }
136
-
137
- /**
138
- * Adjust Ticket Columns
139
- * @since 1.3
140
- * @version 1.0
141
- */
142
- public function ticket_columns( $columns, $EM_Event ) {
143
-
144
- if ( ! $EM_Event->is_free() ) {
145
-
146
- unset( $columns['price'] );
147
- unset( $columns['type'] );
148
- unset( $columns['spaces'] );
149
-
150
- $columns['type'] = __( 'Ticket Type', 'mycred' );
151
-
152
- if ( $this->single_currency() ) {
153
- $columns['mycred'] = __( 'Price', 'mycred' );
154
- }
155
- else {
156
- $columns['price'] = __( 'Price', 'mycred' );
157
- $columns['mycred'] = $this->core->plural();
158
- }
159
- $columns['spaces'] = __( 'Spaces', 'mycred' );
160
-
161
- }
162
-
163
- $this->booking_cols = count( $columns );
164
-
165
- return $columns;
166
-
167
- }
168
-
169
- /**
170
- * Adjust Ticket Column Content
171
- * @since 1.3
172
- * @version 1.0
173
- */
174
- public function ticket_col( $EM_Ticket, $EM_Event ) {
175
-
176
- $ticket_price = $EM_Ticket->get_price( false );
177
-
178
- if ( $this->single_currency() )
179
- $price = $ticket_price;
180
- else
181
- $price = $this->prefs['rate'] * $ticket_price;
182
-
183
- if ( empty( $ticket_price ) )
184
- $price = 0;
185
-
186
- ?>
187
- <td class="em-bookings-ticket-table-points"><?php echo $this->core->format_creds( $price ); ?></td>
188
- <?php
189
-
190
- }
191
-
192
- public function checkout_total( $EM_Multiple_Booking ) {
193
-
194
- if ( ! is_user_logged_in() ) return;
195
-
196
- $total = $EM_Multiple_Booking->get_price();
197
- if ( $this->single_currency() )
198
- $price = $total;
199
- else
200
- $price = $this->prefs['rate'] * $total;
201
-
202
- $balance = $this->core->get_users_balance( get_current_user_id() );
203
- $color = '';
204
- if ( $balance < $price )
205
- $color = ' style="color:red;"';
206
-
207
- ?>
208
- <tr>
209
- <th colspan="2"><?php echo $this->core->template_tags_general( $this->prefs['labels']['checkout'] ); ?></th>
210
- <td><?php echo $this->core->format_creds( $price ); ?></td>
211
- </tr>
212
- <tr>
213
- <th colspan="2"><?php _e( 'Your Balance', 'mycred' ); ?></th>
214
- <td<?php echo $color; ?>><?php echo $this->core->format_creds( $balance ); ?></td>
215
- </tr>
216
- <?php
217
-
218
- }
219
-
220
- /**
221
- * Shows button, not needed if using the new form display
222
- * @since 1.3
223
- * @version 1.0
224
- */
225
- function booking_form_button() {
226
-
227
- if ( ! is_user_logged_in() ) return;
228
-
229
- $user_id = get_current_user_id();
230
-
231
- // Check for exclusion
232
- if ( $this->core->exclude_user( $user_id ) ) return;
233
-
234
- // Make sure we have points
235
- if ( $this->core->get_users_cred( $user_id, $this->mycred_type ) <= $this->core->format_number( 0 ) ) return;
236
-
237
- $button = get_option( 'em_'. $this->gateway . '_button', $this->title );
238
- ob_start();
239
- if ( preg_match( '/https?:\/\//', $button ) ) {
240
-
241
- ?>
242
- <input type="image" class="em-booking-submit em-gateway-button" id="em-gateway-button-<?php echo $this->gateway; ?>" src="<?php echo $button; ?>" alt="<?php echo $this->title; ?>" />
243
- <?php
244
-
245
- }
246
- else {
247
-
248
- ?>
249
- <input type="submit" class="em-booking-submit em-gateway-button" id="em-gateway-button-<?php echo $this->gateway; ?>" value="<?php echo $button; ?>" />
250
- <?php
251
-
252
- }
253
-
254
- $output = ob_get_contents();
255
- ob_end_clean();
256
-
257
- return $output;
258
-
259
- }
260
-
261
- /**
262
- * Add Booking
263
- * @since 1.3
264
- * @version 1.0
265
- */
266
- function booking_add( $EM_Event, $EM_Booking, $post_validation = false ) {
267
-
268
- global $wpdb, $wp_rewrite, $EM_Notices;
269
-
270
- $this->registered_timer = current_time( 'timestamp' );
271
-
272
- parent::booking_add( $EM_Event, $EM_Booking, $post_validation );
273
-
274
- if ( $post_validation && empty( $EM_Booking->booking_id ) ) {
275
-
276
- if ( get_option( 'dbem_multiple_bookings' ) && get_class( $EM_Booking ) == 'EM_Multiple_Booking' )
277
- add_filter( 'em_multiple_booking_save', array( &$this, 'em_booking_save' ), 10, 2 );
278
-
279
- else
280
- add_filter( 'em_booking_save', array( &$this, 'em_booking_save'), 10, 2 );
281
-
282
- }
283
-
284
- }
285
-
286
- /**
287
- * Booking Payment
288
- * @since 1.3
289
- * @version 1.2.1
290
- */
291
- function em_booking_save( $result, $EM_Booking ) {
292
-
293
- global $wpdb, $wp_rewrite, $EM_Notices;
294
-
295
- //make sure booking save was successful before we try anything
296
- if ( $result ) {
297
-
298
- if ( $EM_Booking->get_price() > 0 ) {
299
-
300
- // Authorize & Capture point payment
301
- $capture = $this->authorize_and_capture( $EM_Booking );
302
-
303
- // Payment Successfull
304
- if ( $capture ) {
305
-
306
- // Set booking status, but no emails sent
307
- if ( ! get_option( 'em_' . $this->gateway . '_manual_approval', false ) || ! get_option( 'dbem_bookings_approval' ) ) {
308
- $EM_Booking->set_status( 1, true ); //Approve
309
- }
310
-
311
- else {
312
- $EM_Booking->set_status( 0, false ); //Set back to normal "pending"
313
- }
314
-
315
- }
316
-
317
- // Authorization declined. Either because: 1. User not logged in 2. User is excluded from point type 3. Insufficient funds
318
- else {
319
-
320
- // not good.... error inserted into booking in capture function. Delete this booking from db
321
- if ( ! is_user_logged_in() && get_option( 'dbem_bookings_anonymous' ) && ! get_option( 'dbem_bookings_registration_disable' ) && ! empty( $EM_Booking->person_id ) ) {
322
-
323
- //delete the user we just created, only if created after em_booking_add filter is called (which is when a new user for this booking would be created)
324
- $EM_Person = $EM_Booking->get_person();
325
- if ( strtotime( $EM_Person->data->user_registered ) >= $this->registered_timer ) {
326
-
327
- if ( is_multisite() ) {
328
- include_once( ABSPATH.'/wp-admin/includes/ms.php' );
329
- wpmu_delete_user( $EM_Person->ID );
330
- }
331
- else {
332
- include_once( ABSPATH.'/wp-admin/includes/user.php' );
333
- wp_delete_user( $EM_Person->ID );
334
- }
335
-
336
- // remove email confirmation
337
- global $EM_Notices;
338
-
339
- $EM_Notices->notices['confirms'] = array();
340
-
341
- }
342
-
343
- }
344
-
345
- $EM_Booking->manage_override = true;
346
- $EM_Booking->delete();
347
- $EM_Booking->manage_override = false;
348
-
349
- return false;
350
-
351
- }
352
-
353
- }
354
-
355
- }
356
-
357
- return $result;
358
-
359
- }
360
-
361
- /**
362
- * Booking Payment
363
- * @since 1.6.9
364
- * @version 1.0
365
- */
366
- function authorize_and_capture( $EM_Booking ) {
367
-
368
- $user_id = $EM_Booking->person_id;
369
- $captured = false;
370
-
371
- // Make sure user is not excluded from the set point type
372
- if ( $this->core->exclude_user( $user_id ) ) {
373
-
374
- $EM_Booking->add_error( __( 'You can not pay using this gateway.', 'mycred' ) );
375
-
376
- }
377
-
378
- // User can not afford to pay
379
- elseif ( ! $this->can_pay( $EM_Booking ) ) {
380
-
381
- $EM_Booking->add_error( $this->core->template_tags_general( $this->prefs['messages']['error'] ) );
382
-
383
- }
384
-
385
- // User has not yet paid (prefered)
386
- elseif ( ! $this->has_paid( $EM_Booking ) ) {
387
-
388
- // Get Cost
389
- $cost = $this->get_cost( $EM_Booking );
390
-
391
- // Charge
392
- $this->core->add_creds(
393
- 'ticket_purchase',
394
- $EM_Booking->person_id,
395
- 0 - $cost,
396
- $this->prefs['log']['purchase'],
397
- $EM_Booking->event->post_id,
398
- array( 'ref_type' => 'post', 'bid' => (int) $EM_Booking->booking_id ),
399
- $this->mycred_type
400
- );
401
-
402
- // Log transaction with EM
403
- $transaction_id = time() . $EM_Booking->person_id;
404
- $EM_Booking->booking_meta[ $this->gateway ] = array( 'txn_id' => $transaction_id, 'amount' => $cost );
405
-
406
- $this->record_transaction( $EM_Booking, $cost, '', date( 'Y-m-d H:i:s', current_time( 'timestamp' ) ), $transaction_id, 'Completed', '' );
407
-
408
- // Profit sharing
409
- if ( $this->prefs['share'] != 0 ) {
410
-
411
- $event_post = get_post( (int) $EM_Booking->event->post_id );
412
- if ( $event_post !== NULL ) {
413
-
414
- $share = ( $this->prefs['share']/100 ) * $cost;
415
- $this->core->add_creds(
416
- 'ticket_sale',
417
- $event_post->post_author,
418
- $share,
419
- $this->prefs['log']['purchase'],
420
- $event_post->ID,
421
- array( 'ref_type' => 'post', 'bid' => (int) $EM_Booking->booking_id ),
422
- $this->mycred_type
423
- );
424
-
425
- }
426
-
427
- }
428
-
429
- $captured = true;
430
-
431
- }
432
-
433
- return $captured;
434
-
435
- }
436
-
437
- /**
438
- * Refunds
439
- * @since 1.3
440
- * @version 1.1.1
441
- */
442
- function refunds( $result, $EM_Booking ) {
443
-
444
- // Cancellation = refund
445
- if ( $EM_Booking->booking_status == 3 && $EM_Booking->previous_status == 1 && $this->prefs['refund'] > 0 ) {
446
-
447
- // Make sure user has paid for this to refund
448
- if ( $this->has_paid( $EM_Booking ) ) {
449
-
450
- // Get Cost
451
- $cost = $this->get_cost( $EM_Booking );
452
-
453
- // Refund
454
- if ( $this->prefs['refund'] != 100 )
455
- $refund = ( $this->prefs['refund'] / 100 ) * $cost;
456
- else
457
- $refund = $cost;
458
-
459
- // Charge
460
- $this->core->add_creds(
461
- 'ticket_purchase_refund',
462
- $EM_Booking->person_id,
463
- $refund,
464
- $this->prefs['log']['refund'],
465
- $EM_Booking->event->post_id,
466
- array( 'ref_type' => 'post', 'bid' => (int) $booking_id ),
467
- $this->mycred_type
468
- );
469
-
470
- }
471
-
472
- }
473
-
474
- return $result;
475
-
476
- }
477
-
478
- /**
479
- * Customize Booking Table Actions
480
- * @since 1.3
481
- * @version 1.0
482
- */
483
- function bookings_table_actions( $actions, $EM_Booking ) {
484
-
485
- $url = $EM_Booking->get_event()->get_bookings_url();
486
-
487
- if ( $EM_Booking->booking_status == 1 && $this->uses_gateway( $EM_Booking ) ) {
488
- return array(
489
- 'reject' => '<a class="em-bookings-reject" href="' . em_add_get_params( $url, array(
490
- 'action' => 'bookings_reject',
491
- 'booking_id' => $EM_Booking->booking_id
492
- ) ) . '">' . __( 'Reject', 'mycred' ) . '</a>',
493
- 'delete' => '<span class="trash"><a class="em-bookings-delete" href="' . em_add_get_params( $url, array(
494
- 'action' => 'bookings_delete',
495
- 'booking_id' => $EM_Booking->booking_id
496
- ) ) . '">' . __( 'Delete', 'mycred' ) . '</a></span>',
497
- 'edit' => '<a class="em-bookings-edit" href="' . em_add_get_params( $url, array(
498
- 'booking_id' => $EM_Booking->booking_id,
499
- 'em_ajax' => null,
500
- 'em_obj' => null
501
- ) ) . '">' . __( 'Edit/View', 'mycred' ) . '</a>'
502
- );
503
- }
504
-
505
- return $actions;
506
-
507
- }
508
-
509
- /**
510
- * Get Cost
511
- * @since 1.5.4
512
- * @version 1.0
513
- */
514
- function get_cost( $EM_Booking ) {
515
-
516
- $price = 0;
517
- foreach ( $EM_Booking->get_tickets_bookings()->tickets_bookings as $EM_Ticket_Booking ) {
518
- $price = $price + $EM_Ticket_Booking->get_price();
519
- }
520
-
521
- //calculate discounts, if any:
522
- $discount = $EM_Booking->get_price_discounts_amount('pre') + $EM_Booking->get_price_discounts_amount('post');
523
- if ( $discount > 0 ){
524
- $price = $price - $discount;
525
- }
526
-
527
- $cost = $this->core->number( $price );
528
- if ( ! $this->single_currency() ) {
529
- $exchange_rate = $this->prefs['rate'];
530
- $cost = $this->core->number( $exchange_rate*$cost );
531
- }
532
-
533
- return $cost;
534
-
535
- }
536
-
537
- /**
538
- * Can Pay Check
539
- * Checks if the user can pay for their booking.
540
- * @since 1.2
541
- * @version 1.2
542
- */
543
- function can_pay( $EM_Booking ) {
544
-
545
- $balance = $this->core->get_users_balance( $EM_Booking->person_id, $this->mycred_type );
546
- if ( $balance <= 0 ) return false;
547
-
548
- $cost = $this->get_cost( $EM_Booking );
549
-
550
- if ( $cost > 0 && $balance < $cost ) return false;
551
-
552
- return true;
553
- }
554
-
555
- /**
556
- * Has Paid
557
- * Checks if the user has paid for booking
558
- * @since 1.3
559
- * @version 1.2
560
- */
561
- function has_paid( $EM_Booking ) {
562
-
563
- if ( $this->core->has_entry(
564
- 'ticket_purchase',
565
- $EM_Booking->event->post_id,
566
- $EM_Booking->person_id,
567
- array(
568
- 'ref_type' => 'post',
569
- 'bid' => (int) $EM_Booking->booking_id
570
- ),
571
- $this->mycred_type
572
- ) ) return true;
573
-
574
- return false;
575
-
576
- }
577
-
578
- /**
579
- * Getway Settings
580
- * @since 1.3
581
- * @version 1.3
582
- */
583
- function mysettings() {
584
-
585
- global $page, $action;
586
-
587
- $gateway_link = admin_url( 'edit.php?post_type=' . EM_POST_TYPE_EVENT . '&page=events-manager-options#bookings' );
588
-
589
- if ( $this->prefs['setup'] == 'multi' )
590
- $box = 'display: block;';
591
- else
592
- $box = 'display: none;';
593
-
594
- $exchange_message = sprintf(
595
- __( 'How many %s is 1 %s worth?', 'mycred' ),
596
- $this->core->plural(),
597
- em_get_currency_symbol()
598
- );
599
-
600
- $mycred_types = mycred_get_types();
601
-
602
- do_action( 'mycred_em_before_settings', $this );
603
-
604
- ?>
605
- <h4><?php _e( 'Setup', 'mycred' ); ?></h4>
606
- <table class="form-table">
607
-
608
- <?php if ( count( $mycred_types ) > 1 ) : ?>
609
-
610
- <tr>
611
- <th scope="row"><?php _e( 'Point Type', 'mycred' ); ?></th>
612
- <td>
613
-
614
- <?php mycred_types_select_from_dropdown( 'mycred_gateway[type]', 'mycred-gateway-type', $this->prefs['type'] ); ?>
615
-
616
- </td>
617
- </tr>
618
-
619
- <?php else : ?>
620
-
621
- <input type="hidden" name="mycred_gateway[type]" value="mycred_default" />
622
-
623
- <?php endif; ?>
624
-
625
- <tr>
626
- <th scope="row"><?php _e( 'Payments', 'mycred' ); ?></th>
627
- <td>
628
- <input type="radio" name="mycred_gateway[setup]" id="mycred-gateway-setup-off" value="off"<?php checked( $this->prefs['setup'], 'off' ); ?> /> <label for="mycred-gateway-setup-off"><?php echo $this->core->template_tags_general( __( 'Disabled - Users CAN NOT pay for tickets using %plural%.', 'mycred' ) ); ?></label><br />
629
- <input type="radio" name="mycred_gateway[setup]" id="mycred-gateway-setup-single" value="single"<?php checked( $this->prefs['setup'], 'single' ); ?> /> <label for="mycred-gateway-setup-single"><?php echo $this->core->template_tags_general( __( 'Single - Users can ONLY pay for tickets using %plural%.', 'mycred' ) ); ?></label><br />
630
- <input type="radio" name="mycred_gateway[setup]" id="mycred-gateway-setup-multi" value="multi"<?php checked( $this->prefs['setup'], 'multi' ); ?> /> <label for="mycred-gateway-setup-multi"><?php echo $this->core->template_tags_general( __( 'Multi - Users can pay for tickets using other gateways or %plural%.', 'mycred' ) ); ?></label>
631
- </td>
632
- </tr>
633
- <tr>
634
- <th scope="row"><?php _e( 'Refunds', 'mycred' ); ?></th>
635
- <td>
636
- <input name="mycred_gateway[refund]" type="text" id="mycred-gateway-log-refund" value="<?php echo esc_attr( $this->prefs['refund'] ); ?>" size="5" /> %<br />
637
- <span class="description"><?php _e( 'The percentage of the paid amount to refund if a user cancels their booking. Use zero for no refunds. No refunds are given to "Rejected" bookings!', 'mycred' ); ?></span>
638
- </td>
639
- </tr>
640
- <tr>
641
- <th scope="row"><?php _e( 'Profit Sharing', 'mycred' ); ?></th>
642
- <td>
643
- <input name="mycred_gateway[share]" type="text" id="mycred-gateway-profit-sharing" value="<?php echo esc_attr( $this->prefs['share'] ); ?>" size="5" /> %<br />
644
- <span class="description"><?php _e( 'Option to share sales with the product owner. Use zero to disable.', 'mycred' ); ?></span>
645
- </td>
646
- </tr>
647
- </table>
648
- <table class="form-table" id="mycred-exchange-rate" style="<?php echo $box; ?>">
649
- <tr>
650
- <th scope="row"><?php _e( 'Exchange Rate', 'mycred' ); ?></th>
651
- <td>
652
- <input name="mycred_gateway[rate]" type="text" id="mycred-gateway-rate" size="6" value="<?php echo esc_attr( $this->prefs['rate'] ); ?>" /><br />
653
- <span class="description"><?php echo $exchange_message; ?></span>
654
- </td>
655
- </tr>
656
- </table>
657
- <h4><?php _e( 'Log Templates', 'mycred' ); ?></h4>
658
- <table class="form-table">
659
- <tr>
660
- <th scope="row"><?php _e( 'Purchases', 'mycred' ); ?></th>
661
- <td>
662
- <input name="mycred_gateway[log][purchase]" type="text" id="mycred-gateway-log-purchase" style="width: 95%;" value="<?php echo esc_attr( $this->prefs['log']['purchase'] ); ?>" size="45" /><br />
663
- <span class="description"><?php echo $this->core->available_template_tags( array( 'general', 'post' ) ); ?>></span>
664
- </td>
665
- </tr>
666
- <tr>
667
- <th scope="row"><?php _e( 'Refunds', 'mycred' ); ?></th>
668
- <td>
669
- <input name="mycred_gateway[log][refund]" type="text" id="mycred-gateway-log-refund" style="width: 95%;" value="<?php echo esc_attr( $this->prefs['log']['refund'] ); ?>" size="45" /><br />
670
- <span class="description"><?php echo $this->core->available_template_tags( array( 'general', 'post' ) ); ?></span>
671
- </td>
672
- </tr>
673
- </table>
674
- <script type="text/javascript">
675
- jQuery(function($){
676
- $('input[name="mycred_gateway[setup]"]').change(function(){
677
- if ( $(this).val() == 'multi' ) {
678
- $('#mycred-exchange-rate').show();
679
- }
680
- else {
681
- $('#mycred-exchange-rate').hide();
682
- }
683
- });
684
- });
685
- </script>
686
- <h4><?php _e( 'Labels', 'mycred' ); ?></h4>
687
- <table class="form-table">
688
- <tr valign="top">
689
- <th scope="row"><?php _e( 'Payment Link Label', 'mycred' ); ?></th>
690
- <td>
691
- <input name="mycred_gateway[labels][link]" type="text" id="mycred-gateway-labels-link" style="width: 95%" value="<?php echo esc_attr( $this->prefs['labels']['link'] ); ?>" size="45" /><br />
692
- <span class="description"><?php _e( 'The payment link shows / hides the payment form under "My Bookings". No HTML allowed.', 'mycred' ); ?></span>
693
- </td>
694
- </tr>
695
- <tr valign="top">
696
- <th scope="row"><?php _e( 'Payment Header', 'mycred' ); ?></th>
697
- <td>
698
- <input name="mycred_gateway[labels][header]" type="text" id="mycred-gateway-labels-header" style="width: 95%" value="<?php echo esc_attr( $this->prefs['labels']['header'] ); ?>" size="45" /><br />
699
- <span class="description"><?php _e( 'Shown on top of the payment form. No HTML allowed.', 'mycred' ); ?></span>
700
- </td>
701
- </tr>
702
- <tr valign="top">
703
- <th scope="row"><?php _e( 'Button Label', 'mycred' ); ?></th>
704
- <td>
705
- <input name="mycred_gateway[labels][button]" type="text" id="mycred-gateway-labels-button" style="width: 95%" value="<?php echo esc_attr( $this->prefs['labels']['button'] ); ?>" size="45" /><br />
706
- <span class="description"><?php _e( 'The button label for payments. No HTML allowed!', 'mycred' ); ?></span>
707
- </td>
708
- </tr>
709
- <tr valign="top">
710
- <th scope="row"><?php _e( 'Cart & Checkout Cost', 'mycred' ); ?></th>
711
- <td>
712
- <input name="mycred_gateway[labels][checkout]" type="text" id="mycred-gateway-labels-button" style="width: 95%" value="<?php echo esc_attr( $this->prefs['labels']['checkout'] ); ?>" size="45" /><br />
713
- <span class="description"><?php echo $this->core->template_tags_general( __( 'Label for cost in %plural%', 'mycred' ) ); ?></span><br /><?php echo $this->core->available_template_tags( array( 'general' ) ); ?></span>
714
- </td>
715
- </tr>
716
- </table>
717
- <h4><?php _e( 'Messages', 'mycred' ); ?></h4>
718
- <table class='form-table'>
719
- <tr valign="top">
720
- <th scope="row"><?php _e( 'Successful Payments', 'mycred' ); ?></th>
721
- <td>
722
- <input type="text" name="mycred_gateway[messages][success]" id="mycred-gateway-messages-success" style="width: 95%;" value="<?php echo esc_attr( $this->prefs['messages']['success'] ); ?>" /><br />
723
- <span class="description"><?php _e( 'No HTML allowed!', 'mycred' ); ?><br /><?php echo $this->core->available_template_tags( array( 'general' ) ); ?></span>
724
- </td>
725
- </tr>
726
- <tr valign="top">
727
- <th scope="row"><?php _e( 'Insufficient Funds', 'mycred' ); ?></th>
728
- <td>
729
- <input type="text" name="mycred_gateway[messages][error]" id="mycred-gateway-messages-error" style="width: 95%;" value="<?php echo esc_attr( $this->prefs['messages']['error'] ); ?>" /><br />
730
- <span class="description"><?php _e( 'No HTML allowed!', 'mycred' ); ?><br /><?php echo $this->core->available_template_tags( array( 'general' ) ); ?></span>
731
- </td>
732
- </tr>
733
- </table>
734
- <?php
735
-
736
- do_action( 'mycred_em_after_settings', $this );
737
-
738
- }
739
-
740
- /**
741
- * Update Getway Settings
742
- * @since 1.3
743
- * @version 1.2
744
- */
745
- function update() {
746
-
747
- parent::update();
748
-
749
- if ( ! isset( $_POST['mycred_gateway'] ) || ! is_array( $_POST['mycred_gateway'] ) ) return;
750
-
751
- // Prep
752
- $data = $_POST['mycred_gateway'];
753
- $new_settings = array();
754
-
755
- // Setup
756
- $new_settings['setup'] = $data['setup'];
757
- $new_settings['type'] = sanitize_text_field( $data['type'] );
758
- $new_settings['refund'] = abs( $data['refund'] );
759
- $new_settings['share'] = abs( $data['share'] );
760
-
761
- // Logs
762
- $new_settings['log']['purchase'] = sanitize_text_field( $data['log']['purchase'] );
763
- $new_settings['log']['refund'] = sanitize_text_field( $data['log']['refund'] );
764
-
765
- if ( $new_settings['setup'] == 'multi' )
766
- $new_settings['rate'] = sanitize_text_field( $data['rate'] );
767
- else
768
- $new_settings['rate'] = $this->prefs['rate'];
769
-
770
- // Override Pricing Options
771
- if ( $new_settings['setup'] == 'single' ) {
772
-
773
- update_option( 'dbem_bookings_currency_decimal_point', $this->core->format['separators']['decimal'] );
774
- update_option( 'dbem_bookings_currency_thousands_sep', $this->core->format['separators']['thousand'] );
775
- update_option( 'dbem_bookings_currency', 'XMY' );
776
-
777
- if ( empty( $this->core->before ) && ! empty( $this->core->after ) )
778
- $format = '@ #';
779
-
780
- elseif ( ! empty( $this->core->before ) && empty( $this->core->after ) )
781
- $format = '# @';
782
-
783
- update_option( 'dbem_bookings_currency_format', $format );
784
-
785
- }
786
-
787
- // Labels
788
- $new_settings['labels']['link'] = sanitize_text_field( stripslashes( $data['labels']['link'] ) );
789
- $new_settings['labels']['header'] = sanitize_text_field( stripslashes( $data['labels']['header'] ) );
790
- $new_settings['labels']['button'] = sanitize_text_field( stripslashes( $data['labels']['button'] ) );
791
- $new_settings['labels']['checkout'] = sanitize_text_field( stripslashes( $data['labels']['checkout'] ) );
792
-
793
- // Messages
794
- $new_settings['messages']['success'] = sanitize_text_field( stripslashes( $data['messages']['success'] ) );
795
- $new_settings['messages']['error'] = sanitize_text_field( stripslashes( $data['messages']['error'] ) );
796
-
797
- // Save Settings
798
- $current = $this->prefs;
799
- $this->prefs = mycred_apply_defaults( $current, $new_settings );
800
-
801
- update_option( 'mycred_eventsmanager_gateway_prefs', $this->prefs );
802
-
803
- // Let others play
804
- do_action( 'mycred_em_save_settings', $this );
805
-
806
- //default action is to return true
807
- return true;
808
-
809
- }
810
-
811
- }
812
- endif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
addons/gateway/myCRED-addon-gateway.php CHANGED
@@ -41,16 +41,8 @@ function mycred_load_events_manager() {
41
 
42
  if ( ! defined( 'EM_VERSION' ) ) return;
43
 
44
- // Pro
45
- if ( class_exists( 'EM_Pro' ) && class_exists( 'EM_Gateways' ) ) {
46
-
47
- require_once myCRED_GATE_EVENT_DIR . 'mycred-eventsmanager-pro.php';
48
- EM_Gateways::register_gateway( 'mycred', 'EM_Gateway_myCRED' );
49
-
50
- }
51
-
52
- // Free
53
- else {
54
 
55
  require_once myCRED_GATE_EVENT_DIR . 'mycred-eventsmanager.php';
56
  $events = new myCRED_Events_Manager_Gateway();
41
 
42
  if ( ! defined( 'EM_VERSION' ) ) return;
43
 
44
+ // Free version only
45
+ if ( ! class_exists( 'EM_Pro' ) ) {
 
 
 
 
 
 
 
 
46
 
47
  require_once myCRED_GATE_EVENT_DIR . 'mycred-eventsmanager.php';
48
  $events = new myCRED_Events_Manager_Gateway();
addons/ranks/myCRED-addon-ranks.php CHANGED
@@ -632,13 +632,13 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
632
  /**
633
  * Insert Rank In Profile Header
634
  * @since 1.1
635
- * @version 1.3
636
  */
637
  public function insert_rank_header() {
638
 
639
  $output = '';
640
  $user_id = bp_displayed_user_id();
641
- $mycred_types = mycred_get_usable_types();
642
 
643
  foreach ( $mycred_types as $type_id ) {
644
 
@@ -677,13 +677,13 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
677
  /**
678
  * Insert Rank In Profile Details
679
  * @since 1.1
680
- * @version 1.4
681
  */
682
  public function insert_rank_profile() {
683
 
684
  $output = '';
685
  $user_id = bp_displayed_user_id();
686
- $mycred_types = mycred_get_usable_types();
687
 
688
  $count = 0;
689
  foreach ( $mycred_types as $type_id ) {
@@ -736,7 +736,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
736
  /**
737
  * Insert Rank In bbPress Reply
738
  * @since 1.6
739
- * @version 1.1
740
  */
741
  public function insert_rank_bb_reply() {
742
 
@@ -744,7 +744,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
744
  $user_id = bbp_get_reply_author_id();
745
  if ( $user_id == 0 ) return;
746
 
747
- $mycred_types = mycred_get_usable_types();
748
 
749
  foreach ( $mycred_types as $type_id ) {
750
 
@@ -783,13 +783,13 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
783
  /**
784
  * Insert Rank In bbPress Profile
785
  * @since 1.6
786
- * @version 1.0
787
  */
788
  public function insert_rank_bb_profile() {
789
 
790
  $output = '';
791
  $user_id = bbp_get_displayed_user_id();
792
- $mycred_types = mycred_get_usable_types();
793
 
794
  foreach ( $mycred_types as $type_id => $label ) {
795
 
632
  /**
633
  * Insert Rank In Profile Header
634
  * @since 1.1
635
+ * @version 1.3.1
636
  */
637
  public function insert_rank_header() {
638
 
639
  $output = '';
640
  $user_id = bp_displayed_user_id();
641
+ $mycred_types = mycred_get_usable_types( $user_id );
642
 
643
  foreach ( $mycred_types as $type_id ) {
644
 
677
  /**
678
  * Insert Rank In Profile Details
679
  * @since 1.1
680
+ * @version 1.4.1
681
  */
682
  public function insert_rank_profile() {
683
 
684
  $output = '';
685
  $user_id = bp_displayed_user_id();
686
+ $mycred_types = mycred_get_usable_types( $user_id );
687
 
688
  $count = 0;
689
  foreach ( $mycred_types as $type_id ) {
736
  /**
737
  * Insert Rank In bbPress Reply
738
  * @since 1.6
739
+ * @version 1.1.1
740
  */
741
  public function insert_rank_bb_reply() {
742
 
744
  $user_id = bbp_get_reply_author_id();
745
  if ( $user_id == 0 ) return;
746
 
747
+ $mycred_types = mycred_get_usable_types( $user_id );
748
 
749
  foreach ( $mycred_types as $type_id ) {
750
 
783
  /**
784
  * Insert Rank In bbPress Profile
785
  * @since 1.6
786
+ * @version 1.0.1
787
  */
788
  public function insert_rank_bb_profile() {
789
 
790
  $output = '';
791
  $user_id = bbp_get_displayed_user_id();
792
+ $mycred_types = mycred_get_usable_types( $user_id );
793
 
794
  foreach ( $mycred_types as $type_id => $label ) {
795
 
addons/sell-content/includes/mycred-sell-functions.php CHANGED
@@ -333,33 +333,62 @@ endif;
333
  * Checks if a given purchase has expired. Left this in place from the old version
334
  * for backwards comp.
335
  * @since 1.7
336
- * @version 1.0.2
337
  */
338
  if ( ! function_exists( 'mycred_content_purchase_has_expired' ) ) :
339
  function mycred_content_purchase_has_expired( $payment = NULL ) {
340
 
341
- if ( ! is_object( $payment ) ) return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
342
 
343
  $settings = mycred_sell_content_settings();
344
- $post = get_post( $payment->ref_id );
345
  $point_types = $settings['type'];
346
  $has_expired = false;
347
- $length = 0;
348
 
349
  // Invalid post
350
- if ( ! isset( $post->ID ) ) return $has_expired;
351
 
352
  $filter = $settings['filters'][ $post->post_type ]['by'];
353
 
354
  // Manual mode - expiration settings are found in the post setting
355
  if ( $filter === 'manual' ) {
356
 
357
- $suffix = '_' . $payment->ctype;
358
- if ( $payment->ctype == MYCRED_DEFAULT_TYPE_KEY )
359
  $suffix = '';
360
 
361
  $sale_setup = (array) get_post_meta( $post->ID, 'myCRED_sell_content' . $suffix, true );
362
- if ( array_key_exists( 'expire', $sale_setup ) && $sale_setup['expire'] > 0 )
363
  $length = $sale_setup['expire'];
364
 
365
  }
@@ -367,24 +396,13 @@ if ( ! function_exists( 'mycred_content_purchase_has_expired' ) ) :
367
  // Else we need to check the point type setup in our add-on settings.
368
  else {
369
 
370
- $point_type_setup = mycred_get_option( 'mycred_sell_this_' . $payment->ctype );
371
- if ( array_key_exists( 'expire', $point_type_setup ) && $point_type_setup['expire'] > 0 )
372
  $length = $point_type_setup['expire'];
373
 
374
  }
375
 
376
- // If expiration is set
377
- if ( $length > 0 ) {
378
-
379
- $expiration = apply_filters( 'mycred_sell_expire_calc', absint( $length * HOUR_IN_SECONDS ), $length, $payment->user_id, $post->ID );
380
- $expiration = $expiration + $payment->time;
381
-
382
- if ( $expiration <= current_time( 'timestamp' ) )
383
- $has_expired = true;
384
-
385
- }
386
-
387
- return apply_filters( 'mycred_sell_content_sale_expired', $has_expired, $payment->user_id, $post->ID, $payment->time, $length );
388
 
389
  }
390
  endif;
@@ -624,7 +642,7 @@ endif;
624
  * Get Users Purchased Content
625
  * Returns an array of log entries for content purchases.
626
  * @since 1.7
627
- * @version 1.0
628
  */
629
  if ( ! function_exists( 'mycred_get_users_purchased_content' ) ) :
630
  function mycred_get_users_purchased_content( $user_id = NULL, $number = 25, $order = 'DESC', $point_type = NULL ) {
@@ -647,7 +665,7 @@ if ( ! function_exists( 'mycred_get_users_purchased_content' ) ) :
647
  if ( ! in_array( $order, array( 'ASC', 'DESC' ) ) )
648
  $order = 'DESC';
649
 
650
- $sql = apply_filters( 'mycred_get_users_purchased_content', "SELECT * FROM {$mycred->log_table} {$wheres} ORDER BY time {$order} {$limit};", $user_id, $number, $order, $point_type );
651
 
652
  return $wpdb->get_results( $sql );
653
 
333
  * Checks if a given purchase has expired. Left this in place from the old version
334
  * for backwards comp.
335
  * @since 1.7
336
+ * @version 1.1
337
  */
338
  if ( ! function_exists( 'mycred_content_purchase_has_expired' ) ) :
339
  function mycred_content_purchase_has_expired( $payment = NULL ) {
340
 
341
+ $has_expired = false;
342
+ if ( ! is_object( $payment ) ) return $has_expired;
343
+
344
+ $length = mycred_sell_content_get_expiration_length( $payment->ref_id, $payment->ctype );
345
+
346
+ // If expiration is set
347
+ if ( $length > 0 ) {
348
+
349
+ $expiration = apply_filters( 'mycred_sell_expire_calc', absint( $length * HOUR_IN_SECONDS ), $length, $payment->user_id, $payment->ref_id );
350
+ $expiration = $expiration + $payment->time;
351
+
352
+ if ( $expiration <= current_time( 'timestamp' ) )
353
+ $has_expired = true;
354
+
355
+ }
356
+
357
+ return apply_filters( 'mycred_sell_content_sale_expired', $has_expired, $payment->user_id, $payment->ref_id, $payment->time, $length );
358
+
359
+ }
360
+ endif;
361
+
362
+ /**
363
+ * Get Expiration Length
364
+ * @since 1.7.9.1
365
+ * @version 1.0
366
+ */
367
+ if ( ! function_exists( 'mycred_sell_content_get_expiration_length' ) ) :
368
+ function mycred_sell_content_get_expiration_length( $post_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
369
+
370
+ $length = 0;
371
+ if ( $post_id === NULL ) return $length;
372
 
373
  $settings = mycred_sell_content_settings();
374
+ $post = get_post( $post_id );
375
  $point_types = $settings['type'];
376
  $has_expired = false;
 
377
 
378
  // Invalid post
379
+ if ( ! isset( $post->ID ) ) return $length;
380
 
381
  $filter = $settings['filters'][ $post->post_type ]['by'];
382
 
383
  // Manual mode - expiration settings are found in the post setting
384
  if ( $filter === 'manual' ) {
385
 
386
+ $suffix = '_' . $type;
387
+ if ( $type == MYCRED_DEFAULT_TYPE_KEY )
388
  $suffix = '';
389
 
390
  $sale_setup = (array) get_post_meta( $post->ID, 'myCRED_sell_content' . $suffix, true );
391
+ if ( ! empty( $sale_setup ) && array_key_exists( 'expire', $sale_setup ) && $sale_setup['expire'] > 0 )
392
  $length = $sale_setup['expire'];
393
 
394
  }
396
  // Else we need to check the point type setup in our add-on settings.
397
  else {
398
 
399
+ $point_type_setup = (array) mycred_get_option( 'mycred_sell_this_' . $type );
400
+ if ( ! empty( $point_type_setup ) && array_key_exists( 'expire', $point_type_setup ) && $point_type_setup['expire'] > 0 )
401
  $length = $point_type_setup['expire'];
402
 
403
  }
404
 
405
+ return apply_filters( 'mycred_sell_content_expiration', $length, $post );
 
 
 
 
 
 
 
 
 
 
 
406
 
407
  }
408
  endif;
642
  * Get Users Purchased Content
643
  * Returns an array of log entries for content purchases.
644
  * @since 1.7
645
+ * @version 1.0.1
646
  */
647
  if ( ! function_exists( 'mycred_get_users_purchased_content' ) ) :
648
  function mycred_get_users_purchased_content( $user_id = NULL, $number = 25, $order = 'DESC', $point_type = NULL ) {
665
  if ( ! in_array( $order, array( 'ASC', 'DESC' ) ) )
666
  $order = 'DESC';
667
 
668
+ $sql = apply_filters( 'mycred_get_users_purchased_content', "SELECT * FROM {$mycred->log_table} log INNER JOIN {$wpdb->posts} posts ON ( log.ref_id = posts.ID ) {$wheres} ORDER BY time {$order} {$limit};", $user_id, $number, $order, $point_type );
669
 
670
  return $wpdb->get_results( $sql );
671
 
addons/sell-content/includes/mycred-sell-shortcodes.php CHANGED
@@ -176,7 +176,7 @@ endif;
176
  * Will show a given users payment history with links to the posts
177
  * they have purchased.
178
  * @since 1.7
179
- * @version 1.0
180
  */
181
  if ( ! function_exists( 'mycred_render_sell_history' ) ) :
182
  function mycred_render_sell_history( $atts, $content = '' ) {
@@ -205,7 +205,7 @@ if ( ! function_exists( 'mycred_render_sell_history' ) ) :
205
  'col-expires' => __( 'Expires', 'mycred' )
206
  ), $atts );
207
 
208
- if ( empty( $purchases ) && $no_result == '' ) return;
209
 
210
  ob_start();
211
 
@@ -227,8 +227,8 @@ if ( ! function_exists( 'mycred_render_sell_history' ) ) :
227
  if ( ! empty( $purchases ) ) {
228
  foreach ( $purchases as $entry ) {
229
 
230
- $mycred = mycred( $entry->ctype );
231
- $prefs = mycred_get_post_sale_setup( $entry->ref_id, $entry->ctype );
232
 
233
  echo '<td class="mycred-sell-' . $column_id . ' ' . $column_id . '">';
234
 
@@ -247,15 +247,15 @@ if ( ! function_exists( 'mycred_render_sell_history' ) ) :
247
 
248
  $expires = __( 'Never', 'mycred' );
249
  if ( $prefs['expire'] > 0 )
250
- $expires = sprintf( _x( 'Purchase expires in %s', 'e.g. 10 hours', 'mycred' ), ' ' . $prefs['expire'] . ' ' . $expiration );
251
 
252
  echo '<td class="">' . $expires . '</td>';
253
 
254
  }
255
  else {
256
 
257
- do_action( 'mycred_sales_history_column', $column_id, $entry, $prefs );
258
- do_action( 'mycred_sales_history_column_' . $column_id, $entry, $prefs );
259
 
260
  }
261
 
@@ -267,7 +267,7 @@ if ( ! function_exists( 'mycred_render_sell_history' ) ) :
267
  }
268
  else {
269
 
270
- echo '<tr><td class="no-results" colspan="' . count( $columns ) . '">' . $no_result . '</td></tr>';
271
 
272
  }
273
 
176
  * Will show a given users payment history with links to the posts
177
  * they have purchased.
178
  * @since 1.7
179
+ * @version 1.1
180
  */
181
  if ( ! function_exists( 'mycred_render_sell_history' ) ) :
182
  function mycred_render_sell_history( $atts, $content = '' ) {
205
  'col-expires' => __( 'Expires', 'mycred' )
206
  ), $atts );
207
 
208
+ if ( empty( $purchases ) && $nothing == '' ) return;
209
 
210
  ob_start();
211
 
227
  if ( ! empty( $purchases ) ) {
228
  foreach ( $purchases as $entry ) {
229
 
230
+ $mycred = mycred( $entry->ctype );
231
+ $expirares_in = mycred_sell_content_get_expiration_length( $entry->ref_id, $entry->ctype );
232
 
233
  echo '<td class="mycred-sell-' . $column_id . ' ' . $column_id . '">';
234
 
247
 
248
  $expires = __( 'Never', 'mycred' );
249
  if ( $prefs['expire'] > 0 )
250
+ $expires = sprintf( _x( 'Purchase expires in %s', 'e.g. 10 hours', 'mycred' ), $expirares_in . ' ' . $expiration );
251
 
252
  echo '<td class="">' . $expires . '</td>';
253
 
254
  }
255
  else {
256
 
257
+ do_action( 'mycred_sales_history_column', $column_id, $entry );
258
+ do_action( 'mycred_sales_history_column_' . $column_id, $entry );
259
 
260
  }
261
 
267
  }
268
  else {
269
 
270
+ echo '<tr><td class="no-results" colspan="' . count( $columns ) . '">' . $nothing . '</td></tr>';
271
 
272
  }
273
 
addons/transfer/includes/mycred-transfer-shortcodes.php CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
6
  * Renders a transfer form that allows users to send points to other users.
7
  * @see http://mycred.me/functions/mycred_transfer_render/
8
  * @since 0.1
9
- * @version 1.7.2
10
  */
11
  if ( ! function_exists( 'mycred_transfer_render' ) ) :
12
  function mycred_transfer_render( $atts, $content = NULL ) {
@@ -183,6 +183,8 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
183
 
184
  }
185
 
 
 
186
  // Show Balance
187
  $extras = array();
188
  if ( (bool) $show_balance && ! empty( $pref['templates']['balance'] ) ) {
6
  * Renders a transfer form that allows users to send points to other users.
7
  * @see http://mycred.me/functions/mycred_transfer_render/
8
  * @since 0.1
9
+ * @version 1.7.3
10
  */
11
  if ( ! function_exists( 'mycred_transfer_render' ) ) :
12
  function mycred_transfer_render( $atts, $content = NULL ) {
183
 
184
  }
185
 
186
+ $to_input = apply_filters( 'mycred_transfer_to_field', $to_input, $pref, $atts );
187
+
188
  // Show Balance
189
  $extras = array();
190
  if ( (bool) $show_balance && ! empty( $pref['templates']['balance'] ) ) {
addons/transfer/myCRED-addon-transfer.php CHANGED
@@ -573,14 +573,24 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
573
  /**
574
  * Get Recipient
575
  * @since 1.3.2
576
- * @version 1.2
577
  */
578
  public function get_recipient( $to = '' ) {
579
 
580
  $recipient_id = false;
581
  if ( ! empty( $to ) ) {
582
 
583
- if ( $this->transfers['autofill'] == 'user_login' ) {
 
 
 
 
 
 
 
 
 
 
584
 
585
  $user = get_user_by( 'login', $to );
586
  if ( isset( $user->ID ) )
@@ -588,6 +598,7 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
588
 
589
  }
590
 
 
591
  elseif ( $this->transfers['autofill'] == 'user_email' ) {
592
 
593
  $user = get_user_by( 'email', $to );
573
  /**
574
  * Get Recipient
575
  * @since 1.3.2
576
+ * @version 1.2.1
577
  */
578
  public function get_recipient( $to = '' ) {
579
 
580
  $recipient_id = false;
581
  if ( ! empty( $to ) ) {
582
 
583
+ // A numeric ID has been provided that we need to validate
584
+ if ( is_numeric( $to ) ) {
585
+
586
+ $user = get_userdata( $to );
587
+ if ( isset( $user->ID ) )
588
+ $recipient_id = $user->ID;
589
+
590
+ }
591
+
592
+ // A username has been provided
593
+ elseif ( $this->transfers['autofill'] == 'user_login' ) {
594
 
595
  $user = get_user_by( 'login', $to );
596
  if ( isset( $user->ID ) )
598
 
599
  }
600
 
601
+ // An email address has been provided
602
  elseif ( $this->transfers['autofill'] == 'user_email' ) {
603
 
604
  $user = get_user_by( 'email', $to );
includes/classes/class.query-leaderboard.php ADDED
@@ -0,0 +1,799 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if ( ! defined( 'myCRED_VERSION' ) ) exit;
3
+
4
+ /**
5
+ * Query Log
6
+ * @see http://codex.mycred.me/classes/mycred_query_leaderboard/
7
+ * @since 1.7.9.1
8
+ * @version 1.0
9
+ */
10
+ if ( ! class_exists( 'myCRED_Query_Leaderboard' ) ) :
11
+ class myCRED_Query_Leaderboard {
12
+
13
+ public $id = '';
14
+ public $now = 0;
15
+ public $core = NULL;
16
+ public $user_id = 0;
17
+ private $max_size = 250;
18
+
19
+ public $args = array();
20
+ public $based_on = 'balance';
21
+ public $references = array();
22
+ public $order = '';
23
+ public $limit = '';
24
+
25
+ public $leaderboard = false;
26
+
27
+ /**
28
+ * Construct
29
+ * Preps the class for getting a leaderboard based on the
30
+ * given arguments. Validates these arguments.
31
+ * @since 1.0
32
+ * @version 1.0
33
+ */
34
+ public function __construct( $args = array() ) {
35
+
36
+ if ( ! MYCRED_ENABLE_LOGGING ) return false;
37
+
38
+ // Generate a unique ID that identifies the leaderboard we are trying to build
39
+ $this->id = md5( implode( '|', $args ) );
40
+
41
+ // Parse and validate the given args
42
+ $this->parse_args( $args );
43
+
44
+ $this->now = current_time( 'timestamp' );
45
+ $this->core = mycred( $this->args['type'] );
46
+ $this->user_id = get_current_user_id();
47
+ $this->max_size = apply_filters( 'mycred_max_leaderboard_size', 250, $this );
48
+
49
+ // What is the leaderboard based on
50
+ $this->based_on = $this->args['based_on'];
51
+ $this->order = $this->args['order'];
52
+
53
+ // Setup limit
54
+ if ( $this->args['number'] > 0 ) {
55
+
56
+ $this->limit = 'LIMIT ' . $this->args['number'];
57
+ if ( $this->args['offset'] != 0 )
58
+ $this->limit .= ',' . $this->args['offset'];
59
+
60
+ }
61
+
62
+ }
63
+
64
+ /**
65
+ * Parse Arguments
66
+ * We have two jobs: Make sure we provide arguments we can understand and
67
+ * that the arguments we provided are valid.
68
+ * @since 1.0
69
+ * @version 1.0
70
+ */
71
+ public function parse_args( $args = array() ) {
72
+
73
+ /**
74
+ * Populate Query Arguments
75
+ * @uses mycred_query_leaderboard_args
76
+ * @see http://codex.mycred.me/filters/mycred_query_leaderboard_args/
77
+ */
78
+ $defaults = array(
79
+ 'based_on' => 'balance',
80
+ 'number' => 25,
81
+ 'offset' => 0,
82
+ 'type' => MYCRED_DEFAULT_TYPE_KEY,
83
+ 'timeframe' => '',
84
+ 'order' => 'DESC',
85
+ 'total' => 0,
86
+ 'exclude_zero' => 1,
87
+ 'forced' => 0
88
+ );
89
+ $args = apply_filters( 'mycred_query_leaderboard_args', shortcode_atts( $defaults, $args ), $args, $this );
90
+
91
+ // Based on
92
+ $based_on = sanitize_text_field( $args['based_on'] );
93
+ if ( $based_on != 'balance' ) {
94
+
95
+ $references = array();
96
+ if ( ! empty( $args['based_on'] ) ) {
97
+ foreach ( explode( ',', $based_on ) as $ref ) {
98
+ $ref = sanitize_key( $ref );
99
+ if ( strlen( $ref ) == 0 ) continue;
100
+ $references[] = $ref;
101
+ }
102
+ $this->references = $references;
103
+ }
104
+
105
+ $based_on = 'references';
106
+
107
+ }
108
+
109
+ $args['based_on'] = $based_on;
110
+
111
+ // Number or leaderboard size
112
+ $number = (int) sanitize_key( $args['number'] );
113
+ if ( $number < -1 )
114
+ $number = -1;
115
+
116
+ elseif ( ! is_numeric( $number ) )
117
+ $number = 25;
118
+
119
+ elseif ( $number > $this->max_size )
120
+ $number = $this->max_size;
121
+
122
+ $args['number'] = $number;
123
+
124
+ // Option to offset
125
+ $offset = (int) sanitize_key( $args['offset'] );
126
+ if ( ! is_numeric( $offset ) )
127
+ $offset = 0;
128
+
129
+ $args['offset'] = $offset;
130
+
131
+ // Point Type
132
+ $point_type = sanitize_key( $args['type'] );
133
+ if ( ! mycred_point_type_exists( $point_type ) )
134
+ $point_type = MYCRED_DEFAULT_TYPE_KEY;
135
+
136
+ $args['type'] = $point_type;
137
+
138
+ // Timeframe
139
+ $args['timeframe'] = sanitize_text_field( $args['timeframe'] );
140
+
141
+ // Order
142
+ $order = strtoupper( sanitize_text_field( $args['order'] ) );
143
+ if ( ! in_array( $order, array( 'ASC', 'DESC' ) ) )
144
+ $order = 'DESC';
145
+
146
+ $args['order'] = $order;
147
+
148
+ // Show total balance
149
+ $args['total'] = (bool) $args['total'];
150
+
151
+ // Exclude zero balances
152
+ $args['exclude_zero'] = (bool) $args['exclude_zero'];
153
+
154
+ // Force a new leaderboard instead of a cached one (if used)
155
+ $args['forced'] = (bool) $args['forced'];
156
+
157
+ $this->args = $args;
158
+
159
+ }
160
+
161
+ /**
162
+ * Get Leaderboard Results
163
+ * Returns the leaderboard data in an array form or false if the query results in no data.
164
+ * @since 1.0
165
+ * @version 1.0
166
+ */
167
+ public function get_leaderboard_results( $append_current_user = false ) {
168
+
169
+ $results = $this->get_cache();
170
+ if ( $results === false ) {
171
+
172
+ global $wpdb;
173
+
174
+ $results = $wpdb->get_results( $this->get_db_query(), 'ARRAY_A' );
175
+ if ( empty( $results ) )
176
+ $results = false;
177
+
178
+ }
179
+
180
+ if ( $results !== false )
181
+ $this->cache_result( $results );
182
+
183
+ $this->leaderboard = $results;
184
+
185
+ if ( $append_current_user )
186
+ $this->append_current_user();
187
+
188
+ $results = $this->leaderboard;
189
+ $this->leaderboard = apply_filters( 'mycred_get_leaderboard_results', $results, $append_current_user, $this );
190
+
191
+ }
192
+
193
+ /**
194
+ * Append Current User
195
+ * Appends the current logged in user to the end of the leaderboard if the user is not in the results.
196
+ * This is done separatelly since we can not cache a leaderboard for each user that might view the board.
197
+ * @since 1.0
198
+ * @version 1.0
199
+ */
200
+ public function append_current_user( $return = false ) {
201
+
202
+ if ( ! is_user_logged_in() || $this->leaderboard === false || $this->core->exclude_user( $this->user_id ) ) return;
203
+
204
+ // First we need to check if the user is already in the leaderboard
205
+ if ( $this->user_in_leaderboard() ) return;
206
+
207
+ // User is not in the leaderboard so we need to append him/her to the end of the leaderboard array.
208
+ $new_row = array( 'ID' => $this->user_id );
209
+ $new_row['position'] = $this->get_users_current_position();
210
+ $new_row['creds'] = $this->get_users_current_value();
211
+
212
+ if ( $return )
213
+ return $new_row;
214
+
215
+ $this->leaderboard[] = $new_row;
216
+
217
+ }
218
+
219
+ /**
220
+ * User In Leaderboard
221
+ * Checks if a given user or the current user is in the leaderboard.
222
+ * @since 1.0
223
+ * @version 1.0
224
+ */
225
+ public function user_in_leaderboard( $user_id = NULL ) {
226
+
227
+ $in_leaderboard = false;
228
+ if ( $this->leaderboard !== false && ! empty( $this->leaderboard ) ) {
229
+
230
+ if ( $user_id === NULL || absint( $user_id ) === 0 )
231
+ $user_id = $this->user_id;
232
+
233
+ $user_id = absint( $user_id );
234
+
235
+ foreach ( $this->leaderboard as $position => $user ) {
236
+ if ( absint( $user['ID'] ) === $user_id ) {
237
+ $in_leaderboard = true;
238
+ break;
239
+ }
240
+ }
241
+
242
+ }
243
+
244
+ return apply_filters( 'mycred_user_in_leaderboard', $in_leaderboard, $user_id, $this );
245
+
246
+ }
247
+
248
+ /**
249
+ * Get Database Query
250
+ * Returns the SQL query required for generating a leaderboard.
251
+ * @since 1.0
252
+ * @version 1.0
253
+ */
254
+ public function get_db_query() {
255
+
256
+ if ( $this->based_on == 'balance' )
257
+ $query = $this->get_balance_db_query();
258
+ else
259
+ $query = $this->get_reference_db_query();
260
+
261
+ return $query;
262
+
263
+ }
264
+
265
+ /**
266
+ * Get Balance Database Query
267
+ * Returns the SQL query required for generating a leaderboard that is based on balances.
268
+ * @since 1.0
269
+ * @version 1.0
270
+ */
271
+ public function get_balance_db_query() {
272
+
273
+ global $wpdb, $mycred_log_table;
274
+
275
+ $query = '';
276
+ $time_filter = $this->get_timefilter();
277
+ $exclude_filter = $this->get_excludefilter();
278
+ $multisite_check = $this->get_multisitefilter();
279
+
280
+ // Total balance
281
+ if ( $this->args['total'] ) {
282
+
283
+ $query = $wpdb->prepare( "
284
+ SELECT l.user_id AS ID, SUM( l.creds ) AS cred
285
+ FROM {$mycred_log_table} l
286
+ {$multisite_check}
287
+ WHERE l.ctype = %s AND ( ( l.creds > 0 ) OR ( l.creds < 0 AND l.ref = 'manual' ) )
288
+ {$time_filter}
289
+ {$exclude_filter}
290
+ GROUP BY l.user_id
291
+ ORDER BY SUM( l.creds ) {$this->order}, l.user_id ASC
292
+ {$this->limit};", $this->args['type'] );
293
+
294
+ }
295
+
296
+ // Current Balance
297
+ else {
298
+
299
+ $query = $wpdb->prepare( "
300
+ SELECT DISTINCT u.ID, l.meta_value AS cred
301
+ FROM {$wpdb->users} u
302
+ INNER JOIN {$wpdb->usermeta} l ON ( u.ID = l.user_id )
303
+ {$multisite_check}
304
+ WHERE l.meta_key = %s
305
+ {$exclude_filter}
306
+ ORDER BY l.meta_value+0 {$this->order}, l.user_id ASC
307
+ {$this->limit};", mycred_get_meta_key( $this->args['type'] ) );
308
+
309
+ }
310
+
311
+ return apply_filters( 'mycred_get_balance_leaderboard_sql', $query, $this );
312
+
313
+ }
314
+
315
+ /**
316
+ * Get Balance Database Query
317
+ * Returns the SQL query required for generating a leaderboard that is based on references.
318
+ * @since 1.0
319
+ * @version 1.0
320
+ */
321
+ public function get_reference_db_query() {
322
+
323
+ global $wpdb, $mycred_log_table;
324
+
325
+ $time_filter = $this->get_timefilter();
326
+ $multisite_check = $this->get_multisitefilter();
327
+
328
+ $reference = 'l.ref = %s';
329
+ if ( count( $this->references ) > 1 )
330
+ $reference = 'l.ref IN ( %s' . str_repeat( ', %s', ( count( $this->references ) - 1 ) ) . ' )';
331
+
332
+ if ( mycred_centralize_log() )
333
+ $query = $wpdb->prepare( "SELECT DISTINCT l.user_id AS ID, SUM( l.creds ) AS cred FROM {$mycred_log_table} l WHERE {$reference} {$time_filter} GROUP BY l.user_id ORDER BY SUM( l.creds ) {$this->order} {$this->limit};", $this->references );
334
+
335
+ // Multisite support
336
+ else {
337
+
338
+ $blog_id = absint( $GLOBALS['blog_id'] );
339
+ $query = $wpdb->prepare( "
340
+ SELECT DISTINCT l.user_id AS ID, SUM( l.creds ) AS cred
341
+ FROM {$mycred_log_table} l
342
+ {$multisite_check}
343
+ WHERE {$reference}
344
+ {$time_filter}
345
+ GROUP BY l.user_id
346
+ ORDER BY SUM( l.creds ) {$this->order}, l.user_id ASC
347
+ {$this->limit};", $this->references );
348
+
349
+ }
350
+
351
+ return apply_filters( 'mycred_get_reference_leaderboard_sql', $query, $this );
352
+
353
+ }
354
+
355
+ /**
356
+ * Get Users Leaderboard Position
357
+ * @since 1.0
358
+ * @version 1.0
359
+ */
360
+ public function get_users_current_position( $user_id = NULL, $no_position = '' ) {
361
+
362
+ $position = false;
363
+ // Better safe than sorry
364
+ if ( $user_id === NULL && ! is_user_logged_in() ) return $position;
365
+
366
+ if ( $user_id === NULL || absint( $user_id ) === 0 )
367
+ $user_id = $this->user_id;
368
+
369
+ global $wpdb, $mycred_log_table;
370
+
371
+ $time_filter = $this->get_timefilter();
372
+ $exclude_filter = $this->get_excludefilter();
373
+ $multisite_check = $this->get_multisitefilter();
374
+
375
+ if ( $this->based_on == 'balance' ) {
376
+
377
+ // Current Balance
378
+ if ( $this->args['total'] ) {
379
+
380
+ $position = $wpdb->get_var( $wpdb->prepare( "
381
+ SELECT rank FROM (
382
+ SELECT s.*, @rank := @rank + 1 rank FROM (
383
+ SELECT l.user_id, sum( l.creds ) TotalPoints FROM {$mycred_log_table} l
384
+ {$multisite_check}
385
+ WHERE l.ctype = %s AND ( ( l.creds > 0 ) OR ( l.creds < 0 AND l.ref = 'manual' ) )
386
+ {$time_filter}
387
+ {$exclude_filter}
388
+ GROUP BY l.user_id
389
+ ) s, (SELECT @rank := 0) init
390
+ ORDER BY TotalPoints DESC, s.user_id ASC
391
+ ) r
392
+ WHERE user_id = %d", $this->args['type'], $user_id ) );
393
+
394
+ }
395
+
396
+ else {
397
+
398
+ $position = $wpdb->get_var( $wpdb->prepare( "
399
+ SELECT rank FROM (
400
+ SELECT s.*, @rank := @rank + 1 rank FROM (
401
+ SELECT l.user_id, l.meta_value AS Balance FROM {$wpdb->usermeta} l
402
+ {$multisite_check}
403
+ WHERE l.meta_key = %s
404
+ {$exclude_filter}
405
+ ) s, (SELECT @rank := 0) init
406
+ ORDER BY Balance+0 DESC, s.user_id ASC
407
+ ) r
408
+ WHERE user_id = %d", mycred_get_meta_key( $this->args['type'] ), $user_id ) );
409
+
410
+ }
411
+
412
+ }
413
+
414
+ else {
415
+
416
+ $reference = 'l.ref = %s';
417
+ if ( count( $this->references ) > 1 )
418
+ $reference = 'l.ref IN ( %s' . str_repeat( ', %s', ( count( $this->references ) - 1 ) ) . ' )';
419
+
420
+ $position = $wpdb->get_var( $wpdb->prepare( "
421
+ SELECT rank FROM (
422
+ SELECT s.*, @rank := @rank + 1 rank FROM (
423
+ SELECT l.user_id, sum( l.creds ) TotalPoints FROM {$mycred_log_table} l
424
+ {$multisite_check}
425
+ WHERE l.ctype = %s AND ( ( l.creds > 0 ) OR ( l.creds < 0 AND l.ref = 'manual' ) )
426
+ {$reference}
427
+ {$time_filter}
428
+ {$exclude_filter}
429
+ GROUP BY l.user_id
430
+ ) s, (SELECT @rank := 0) init
431
+ ORDER BY TotalPoints DESC, s.user_id ASC
432
+ ) r
433
+ WHERE user_id = %d", $this->args['type'], $user_id ) );
434
+
435
+ }
436
+
437
+ if ( $position === NULL )
438
+ $position = $no_position;
439
+
440
+ return apply_filters( 'mycred_get_leaderboard_position', $position, $user_id, $no_position, $this );
441
+
442
+ }
443
+
444
+ /**
445
+ * Get Users Leaderboard Value
446
+ * @since 1.0
447
+ * @version 1.0
448
+ */
449
+ public function get_users_current_value( $user_id = NULL ) {
450
+
451
+ if ( $user_id === NULL || absint( $user_id ) === 0 )
452
+ $user_id = $this->user_id;
453
+
454
+ global $wpdb, $mycred_log_table;
455
+
456
+ $time_filter = $this->get_timefilter();
457
+ $multisite_check = $this->get_multisitefilter();
458
+
459
+ if ( $this->based_on == 'balance' ) {
460
+
461
+ $value = $this->core->get_users_balance( $user_id );
462
+ if ( $this->args['total'] ) {
463
+
464
+ if ( $this->args['timeframe'] == '' )
465
+ $value = mycred_query_users_total( $user_id, $this->args['type'] );
466
+
467
+ else {
468
+
469
+ $value = $wpdb->get_var( $wpdb->prepare( "
470
+ SELECT SUM( l.creds )
471
+ FROM {$mycred_log_table} l
472
+ {$multisite_check}
473
+ WHERE l.ctype = %s AND ( ( l.creds > 0 ) OR ( l.creds < 0 AND l.ref = 'manual' ) )
474
+ AND user_id = %d
475
+ {$time_filter};", $this->args['type'], $user_id ) );
476
+
477
+ if ( $value === NULL ) $value = 0;
478
+
479
+ }
480
+
481
+ }
482
+
483
+ }
484
+
485
+ else {
486
+
487
+ $reference = 'l.ref = %s';
488
+ if ( count( $this->references ) > 1 )
489
+ $reference = 'l.ref IN ( %s' . str_repeat( ', %s', ( count( $this->references ) - 1 ) ) . ' )';
490
+
491
+ if ( mycred_centralize_log() )
492
+ $query = $wpdb->prepare( "SELECT SUM( l.creds ) FROM {$mycred_log_table} l WHERE {$reference} AND user_id = %d {$time_filter};", $this->references, $user_id );
493
+
494
+ // Multisite support
495
+ else {
496
+
497
+ $blog_id = absint( $GLOBALS['blog_id'] );
498
+ $query = $wpdb->prepare( "
499
+ SELECT SUM( l.creds )
500
+ FROM {$mycred_log_table} l
501
+ {$multisite_check}
502
+ WHERE {$reference}
503
+ AND user_id = %d
504
+ {$time_filter};", $this->references, $user_id );
505
+
506
+ }
507
+
508
+ $value = $wpdb->get_var( $query );
509
+ if ( $value === NULL ) $value = 0;
510
+
511
+ }
512
+
513
+ return apply_filters( 'mycred_get_users_leaderboard_value', $value, $user_id, $this );
514
+
515
+ }
516
+
517
+ /**
518
+ * Get Time Filter
519
+ * Generates the required SQL query for filtering results based on time.
520
+ * Can only be used when the leaderboard is based either on total balance or based on references.
521
+ * @since 1.0
522
+ * @version 1.0
523
+ */
524
+ public function get_timefilter() {
525
+
526
+ $query = '';
527
+ if ( $this->args['timeframe'] === NULL || strlen( $this->args['timeframe'] ) == 0 ) return $query;
528
+
529
+ global $wpdb;
530
+
531
+ // Start of the week based of our settings
532
+ $week_starts = get_option( 'start_of_week' );
533
+ if ( $week_starts == 0 )
534
+ $week_starts = 'sunday';
535
+ else
536
+ $week_starts = 'monday';
537
+
538
+ // Filter: Daily
539
+ if ( $this->args['timeframe'] == 'today' )
540
+ $query = $wpdb->prepare( "AND l.time BETWEEN %d AND %d", strtotime( 'today midnight', $this->now ), $this->now );
541
+
542
+ // Filter: Weekly
543
+ elseif ( $this->args['timeframe'] == 'this-week' )
544
+ $query = $wpdb->prepare( "AND l.time BETWEEN %d AND %d", strtotime( $week_starts . ' this week', $this->now ), $this->now );
545
+
546
+ // Filter: Monthly
547
+ elseif ( $this->args['timeframe'] == 'this-month' )
548
+ $query = $wpdb->prepare( "AND l.time BETWEEN %d AND %d", strtotime( date( 'Y-m-01', $this->now ) ), $this->now );
549
+
550
+ else {
551
+
552
+ $start_from = strtotime( $this->args['timeframe'], $this->now );
553
+ if ( $start_from !== false && $start_from > 0 )
554
+ $query = $wpdb->prepare( "AND l.time BETWEEN %d AND %d", $start_from, $this->now );
555
+
556
+ }
557
+
558
+ return apply_filters( 'mycred_leaderboard_time_filter', $query, $this );
559
+
560
+ }
561
+
562
+ /**
563
+ * Get Exclude Filter
564
+ * Generates the required SQL query for filtering results based on if zero balances should
565
+ * be part of the leaderboard or not. By default, myCRED will not give a user a balance until they
566
+ * gain or lose points. A user that has no balance and is not excluded, is considered to have zero balance.
567
+ * @since 1.0
568
+ * @version 1.0
569
+ */
570
+ public function get_excludefilter() {
571
+
572
+ global $wpdb;
573
+
574
+ // Option to exclude zero balances
575
+ $query = '';
576
+ if ( $this->args['exclude_zero'] ) {
577
+
578
+ $balance_format = '%d';
579
+ if ( isset( $this->core->format['decimals'] ) && $this->core->format['decimals'] > 0 ) {
580
+ $length = absint( 65 - $this->core->format['decimals'] );
581
+ $balance_format = 'CAST( %f AS DECIMAL( ' . $length . ', ' . $this->core->format['decimals'] . ' ) )';
582
+ }
583
+
584
+ if ( ! $this->args['total'] )
585
+ $query = $wpdb->prepare( "AND l.meta_value != {$balance_format}", $this->core->zero() );
586
+
587
+ }
588
+
589
+ return apply_filters( 'mycred_leaderboard_exclude_filter', $query, $this );
590
+
591
+ }
592
+
593
+ /**
594
+ * Get Multisite Filter
595
+ * Generates the required SQL query for filtering results based on our multisite setup.
596
+ * Will return an empty string if we are not using multisites or if we have centralized the log.
597
+ * @since 1.0
598
+ * @version 1.0
599
+ */
600
+ public function get_multisitefilter() {
601
+
602
+ global $wpdb;
603
+
604
+ $multisite_check = "";
605
+ if ( ! mycred_centralize_log() ) {
606
+
607
+ $blog_id = absint( $GLOBALS['blog_id'] );
608
+ $multisite_check = "LEFT JOIN {$wpdb->usermeta} cap ON ( l.user_id = cap.user_id AND cap.meta_key = 'cap.wp_{$blog_id}_capabilities' )";
609
+
610
+ }
611
+
612
+ return apply_filters( 'mycred_leaderboard_musite_filter', $multisite_check, $this );
613
+
614
+ }
615
+
616
+ /**
617
+ * Get Cache Key
618
+ * @since 1.0
619
+ * @version 1.0
620
+ */
621
+ public function get_cache_key() {
622
+
623
+ return 'mycred-leaderboard-' . md5( implode( '|', $this->args ) );
624
+
625
+ }
626
+
627
+ /**
628
+ * Get Cached Leaderboard
629
+ * @since 1.0
630
+ * @version 1.0
631
+ */
632
+ public function get_cache() {
633
+
634
+ if ( $this->args['forced'] == 1 || MYCRED_DISABLE_LEADERBOARD_CACHE ) return false;
635
+
636
+ $cached_results = get_option( $this->get_cache_key(), false );
637
+ if ( $cached_results !== false )
638
+ $cached_results = maybe_unserialize( $cached_results );
639
+
640
+ return $cached_results;
641
+
642
+ }
643
+
644
+ /**
645
+ * Cache Results
646
+ * @since 1.0
647
+ * @version 1.0
648
+ */
649
+ public function cache_result( $data = array() ) {
650
+
651
+ if ( MYCRED_DISABLE_LEADERBOARD_CACHE ) return;
652
+
653
+ if ( $this->to_big_to_cache() ) return;
654
+
655
+ update_option( $this->get_cache_key(), $data );
656
+
657
+ }
658
+
659
+ /**
660
+ * Check if the cache is too big for storage in the db.
661
+ * @since 1.0
662
+ * @version 1.0
663
+ */
664
+ public function to_big_to_cache() {
665
+
666
+ $big = false;
667
+ if ( $this->leaderboard !== false ) {
668
+
669
+
670
+
671
+ }
672
+
673
+ return $big;
674
+
675
+ }
676
+
677
+ /**
678
+ * Is Leaderboard
679
+ * @since 1.0
680
+ * @version 1.0
681
+ */
682
+ public function is_leaderboard( $args = array() ) {
683
+
684
+ return ( $this->id == md5( implode( '|', $args ) ) );
685
+
686
+ }
687
+
688
+ /**
689
+ * Render Leaderboard
690
+ * @since 1.0
691
+ * @version 1.0
692
+ */
693
+ public function render( $args = array(), $content = '' ) {
694
+
695
+ extract( shortcode_atts( array(
696
+ 'wrap' => 'li',
697
+ 'template' => '#%position% %user_profile_link% %cred_f%',
698
+ 'nothing' => 'Leaderboard is empty',
699
+ ), $args ) );
700
+
701
+ $output = '';
702
+
703
+ // Leaderboard is empty
704
+ if ( $this->leaderboard === false || empty( $this->leaderboard ) ) {
705
+
706
+ $output .= '<p class="mycred-leaderboard-none">' . $nothing . '</p>';
707
+
708
+ }
709
+
710
+ // Got results to show
711
+ else {
712
+
713
+ // Wrapper
714
+ if ( $wrap == 'li' )
715
+ $output .= '<ol class="myCRED-leaderboard list-unstyled">';
716
+
717
+ // Loop
718
+ foreach ( $this->leaderboard as $position => $user ) {
719
+
720
+ // Prep
721
+ $class = array();
722
+ $row = $position;
723
+
724
+ if ( array_key_exists( 'position', $user ) )
725
+ $position = $user['position'];
726
+
727
+ else {
728
+
729
+ if ( $this->args['offset'] != '' && $this->args['offset'] > 0 )
730
+ $position = $position + $this->args['offset'];
731
+
732
+ $position++;
733
+
734
+ }
735
+
736
+ // Classes
737
+ $class[] = 'item-' . $row;
738
+ if ( $position == 0 )
739
+ $class[] = 'first-item';
740
+
741
+ if ( $this->user_id > 0 && $user['ID'] == $this->user_id )
742
+ $class[] = 'current-user';
743
+
744
+ if ( $position % 2 != 0 )
745
+ $class[] = 'alt';
746
+
747
+ $row_template = $template;
748
+ if ( ! empty( $content ) )
749
+ $row_template = $content;
750
+
751
+ // Template Tags
752
+ $layout = str_replace( array( '%ranking%', '%position%' ), $position, $row_template );
753
+
754
+ $layout = $this->core->template_tags_amount( $layout, $user['cred'] );
755
+ $layout = $this->core->template_tags_user( $layout, $user['ID'] );
756
+
757
+ // Wrapper
758
+ if ( ! empty( $wrap ) )
759
+ $layout = '<' . $wrap . ' class="%classes%">' . $layout . '</' . $wrap . '>';
760
+
761
+ $layout = str_replace( '%classes%', apply_filters( 'mycred_ranking_classes', implode( ' ', $class ), $this ), $layout );
762
+ $layout = apply_filters( 'mycred_ranking_row', $layout, $template, $user, $position, $this );
763
+
764
+ $output .= $layout . "\n";
765
+
766
+ }
767
+
768
+ if ( $wrap == 'li' )
769
+ $output .= '</ol>';
770
+
771
+ }
772
+
773
+ return apply_filters( 'mycred_leaderboard', $output, $args, $this );
774
+
775
+ }
776
+
777
+ }
778
+ endif;
779
+
780
+ /**
781
+ * Get Leaderboard
782
+ * @since 1.7.9.1
783
+ * @version 1.0
784
+ */
785
+ if ( ! function_exists( 'mycred_get_leaderboard' ) ) :
786
+ function mycred_get_leaderboard( $args = array() ) {
787
+
788
+ global $mycred_leaderboard;
789
+
790
+ // No need to do extra work if we already have the correct global
791
+ if ( is_object( $mycred_leaderboard ) && $mycred_leaderboard->is_leaderboard( $args ) )
792
+ return $mycred_leaderboard;
793
+
794
+ $mycred_leaderboard = new myCRED_Query_Leaderboard( $args );
795
+
796
+ return $mycred_leaderboard;
797
+
798
+ }
799
+ endif;
includes/classes/class.query-log.php CHANGED
@@ -579,7 +579,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
579
  }
580
 
581
  // Make sure query is properly formatted
582
- if ( array_key_exists( 'dates', $this->args['time'] ) && array_key_exists( 'compare', $this->args['time'] ) ) {
583
 
584
  // Between (requires dates to be an array)
585
  if ( in_array( $this->args['time']['compare'], array( 'BETWEEN', 'NOT BETWEEN' ) ) && is_array( $this->args['time']['dates'] ) ) {
@@ -2555,28 +2555,31 @@ endif;
2555
  /**
2556
  * Get Users Reference Sum
2557
  * @since 1.7
2558
- * @version 1.0
2559
  */
2560
  if ( ! function_exists( 'mycred_get_users_reference_sum' ) ) :
2561
- function mycred_get_users_reference_sum( $user_id = NULL, $point_type = MYCRED_DEFAULT_TYPE_KEY ) {
2562
 
2563
  if ( $user_id === NULL ) return false;
2564
 
2565
  $references = (array) mycred_get_user_meta( $user_id, 'mycred_ref_sums-' . $point_type, '', true );
2566
  $references = maybe_unserialize( $references );
2567
 
2568
- if ( empty( $references ) ) {
2569
 
2570
- global $wpdb;
2571
 
2572
- $query = $wpdb->get_results( $wpdb->prepare( "SELECT SUM(creds) AS total, ref AS reference FROM {$mycred->log_table} WHERE user_id = %d AND ctype = %s GROUP BY ref ORDER BY total DESC;", $user_id, $point_type ) );
2573
  if ( ! empty( $query ) ) {
 
 
2574
  foreach ( $query as $result ) {
2575
  $references[ $result->reference ] = $result->total;
2576
  }
2577
- }
2578
 
2579
- mycred_update_user_meta( $user_id, 'mycred_ref_sums-' . $point_type, '', $references );
 
 
2580
 
2581
  }
2582
 
579
  }
580
 
581
  // Make sure query is properly formatted
582
+ if ( is_array( $this->args['time'] ) && array_key_exists( 'dates', $this->args['time'] ) && array_key_exists( 'compare', $this->args['time'] ) ) {
583
 
584
  // Between (requires dates to be an array)
585
  if ( in_array( $this->args['time']['compare'], array( 'BETWEEN', 'NOT BETWEEN' ) ) && is_array( $this->args['time']['dates'] ) ) {
2555
  /**
2556
  * Get Users Reference Sum
2557
  * @since 1.7
2558
+ * @version 1.1
2559
  */
2560
  if ( ! function_exists( 'mycred_get_users_reference_sum' ) ) :
2561
+ function mycred_get_users_reference_sum( $user_id = NULL, $point_type = MYCRED_DEFAULT_TYPE_KEY, $force = false ) {
2562
 
2563
  if ( $user_id === NULL ) return false;
2564
 
2565
  $references = (array) mycred_get_user_meta( $user_id, 'mycred_ref_sums-' . $point_type, '', true );
2566
  $references = maybe_unserialize( $references );
2567
 
2568
+ if ( $force || empty( $references ) || empty( $references[0] ) ) {
2569
 
2570
+ global $wpdb, $mycred_log_table;
2571
 
2572
+ $query = $wpdb->get_results( $wpdb->prepare( "SELECT SUM(creds) AS total, ref AS reference FROM {$mycred_log_table} WHERE user_id = %d AND ctype = %s GROUP BY ref ORDER BY total DESC;", $user_id, $point_type ) );
2573
  if ( ! empty( $query ) ) {
2574
+
2575
+ $references = array();
2576
  foreach ( $query as $result ) {
2577
  $references[ $result->reference ] = $result->total;
2578
  }
 
2579
 
2580
+ mycred_update_user_meta( $user_id, 'mycred_ref_sums-' . $point_type, '', $references );
2581
+
2582
+ }
2583
 
2584
  }
2585
 
includes/mycred-functions.php CHANGED
@@ -295,13 +295,19 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
295
  * Returns the lowest point value available based on the number of decimal places
296
  * we use. So with 1 decimal = 0.1, 2 decimals 0.01 etc. Defaults to 1.
297
  * @since 1.7
298
- * @version 1.0.1
299
  */
300
  public function get_lowest_value() {
301
 
302
- $lowest = 1;
303
- if ( $this->format['decimals'] > 0 )
304
- $lowest = number_format( '0.' . zeroise( 1, $this->format['decimals'] ), $this->format['decimals'], '.', '' );
 
 
 
 
 
 
305
 
306
  return $lowest;
307
 
@@ -1715,16 +1721,17 @@ endif;
1715
  * Get Usable Point Types
1716
  * Returns an array of point type keys that a given user is allowed to use.
1717
  * @since 1.7
1718
- * @version 1.0
1719
  */
1720
  if ( ! function_exists( 'mycred_get_usable_types' ) ) :
1721
  function mycred_get_usable_types( $user_id = NULL ) {
1722
 
 
1723
  if ( $user_id === NULL )
1724
  $user_id = get_current_user_id();
1725
 
1726
  $usable = array();
1727
- if ( is_user_logged_in() ) {
1728
 
1729
  global $mycred;
1730
 
295
  * Returns the lowest point value available based on the number of decimal places
296
  * we use. So with 1 decimal = 0.1, 2 decimals 0.01 etc. Defaults to 1.
297
  * @since 1.7
298
+ * @version 1.1
299
  */
300
  public function get_lowest_value() {
301
 
302
+ $lowest = 1;
303
+ $decimals = $this->format['decimals'] - 1;
304
+
305
+ if ( $decimals > 0 ) {
306
+
307
+ $lowest = '0.' . str_repeat( '0', $decimals ) . '1';
308
+ $lowest = (float) $lowest;
309
+
310
+ }
311
 
312
  return $lowest;
313
 
1721
  * Get Usable Point Types
1722
  * Returns an array of point type keys that a given user is allowed to use.
1723
  * @since 1.7
1724
+ * @version 1.0.1
1725
  */
1726
  if ( ! function_exists( 'mycred_get_usable_types' ) ) :
1727
  function mycred_get_usable_types( $user_id = NULL ) {
1728
 
1729
+ $original_id = $user_id;
1730
  if ( $user_id === NULL )
1731
  $user_id = get_current_user_id();
1732
 
1733
  $usable = array();
1734
+ if ( is_user_logged_in() || $original_id !== NULL ) {
1735
 
1736
  global $mycred;
1737
 
includes/mycred-referrals.php CHANGED
@@ -38,7 +38,7 @@ if ( ! function_exists( 'mycred_detect_referred_visits' ) ) :
38
 
39
  $keys = apply_filters( 'mycred_referral_keys', array() );
40
  if ( ! empty( $keys ) ) {
41
- wp_redirect( remove_query_arg( $keys ) );
42
  exit;
43
  }
44
 
38
 
39
  $keys = apply_filters( 'mycred_referral_keys', array() );
40
  if ( ! empty( $keys ) ) {
41
+ wp_redirect( remove_query_arg( $keys ), 301 );
42
  exit;
43
  }
44
 
includes/shortcodes/mycred_leaderboard.php CHANGED
@@ -5,12 +5,12 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED Shortcode: mycred_leaderboard
6
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
7
  * @since 0.1
8
- * @version 1.5.4
9
  */
10
  if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
11
  function mycred_render_shortcode_leaderboard( $atts, $content = '' ) {
12
 
13
- extract( shortcode_atts( array(
14
  'number' => 25,
15
  'order' => 'DESC',
16
  'offset' => 0,
@@ -23,260 +23,19 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
23
  'current' => 0,
24
  'exclude_zero' => 1,
25
  'timeframe' => ''
26
- ), $atts ) );
27
 
28
  if ( ! MYCRED_ENABLE_LOGGING ) return '';
29
 
30
- if ( ! mycred_point_type_exists( $type ) )
31
- $type = MYCRED_DEFAULT_TYPE_KEY;
32
 
33
- if ( ! in_array( $order, array( 'ASC', 'DESC' ) ) )
34
- $order = 'DESC';
 
35
 
36
- if ( $number != '-1' )
37
- $limit = 'LIMIT ' . absint( $offset ) . ',' . absint( $number );
38
- else
39
- $limit = '';
40
-
41
- $mycred = mycred( $type );
42
-
43
- global $wpdb;
44
-
45
- // Option to exclude zero balances
46
- $excludes = '';
47
- if ( $exclude_zero == 1 ) {
48
-
49
- $balance_format = '%d';
50
- if ( isset( $mycred->format['decimals'] ) && $mycred->format['decimals'] > 0 ) {
51
- $length = absint( 65 - $mycred->format['decimals'] );
52
- $balance_format = 'CAST( %f AS DECIMAL( ' . $length . ', ' . $mycred->format['decimals'] . ' ) )';
53
- }
54
-
55
- if ( $total == 0 )
56
- $excludes = $wpdb->prepare( "AND l.meta_value != {$balance_format}", $mycred->zero() );
57
-
58
- }
59
-
60
- $based_on = sanitize_text_field( $based_on );
61
-
62
- // Leaderboard based on balance
63
- if ( $based_on == 'balance' ) {
64
-
65
- $multisite_check = "";
66
- if ( ! mycred_centralize_log() ) {
67
-
68
- $blog_id = absint( $GLOBALS['blog_id'] );
69
- $multisite_check = "LEFT JOIN {$wpdb->usermeta} cap ON ( l.user_id = cap.user_id AND cap.meta_key = 'cap.wp_{$blog_id}_capabilities' )";
70
-
71
- }
72
-
73
- // Total balance
74
- if ( $total == 1 ) {
75
-
76
- $query = $wpdb->prepare( "
77
- SELECT l.user_id AS ID, SUM( l.creds ) AS cred
78
- FROM {$mycred->log_table} l
79
- {$multisite_check}
80
- WHERE l.ctype = %s AND ( ( l.creds > 0 ) OR ( l.creds < 0 AND l.ref = 'manual' ) )
81
- {$excludes}
82
- GROUP BY l.user_id
83
- ORDER BY SUM( l.creds ) {$order}, l.user_id ASC
84
- {$limit};", $type );
85
-
86
- }
87
-
88
- // Current Balance
89
- else {
90
-
91
- $query = $wpdb->prepare( "
92
- SELECT DISTINCT u.ID, l.meta_value AS cred
93
- FROM {$wpdb->users} u
94
- INNER JOIN {$wpdb->usermeta} l ON ( u.ID = l.user_id )
95
- {$multisite_check}
96
- WHERE l.meta_key = %s
97
- {$excludes}
98
- ORDER BY l.meta_value+0 {$order}, l.user_id ASC
99
- {$limit};", mycred_get_meta_key( $type ) );
100
-
101
- }
102
-
103
- }
104
-
105
- // Leaderboard based on reference
106
- else {
107
-
108
- $time_filter = '';
109
- $now = current_time( 'timestamp' );
110
- if ( $timeframe != '' ) {
111
-
112
- // Start of the week based of our settings
113
- $week_starts = get_option( 'start_of_week' );
114
- if ( $week_starts == 0 )
115
- $week_starts = 'sunday';
116
- else
117
- $week_starts = 'monday';
118
-
119
- // Filter: Daily
120
- if ( $timeframe == 'today' )
121
- $time_filter = $wpdb->prepare( "AND log.time BETWEEN %d AND %d", strtotime( 'today midnight', $now ), $now );
122
-
123
- // Filter: Weekly
124
- elseif ( $timeframe == 'this-week' )
125
- $time_filter = $wpdb->prepare( "AND log.time BETWEEN %d AND %d", strtotime( $week_starts . ' this week', $now ), $now );
126
-
127
- // Filter: Monthly
128
- elseif ( $timeframe == 'this-month' )
129
- $time_filter = $wpdb->prepare( "AND log.time BETWEEN %d AND %d", strtotime( date( 'Y-m-01', $now ) ), $now );
130
-
131
- else {
132
-
133
- $start_from = strtotime( $timeframe, $now );
134
- if ( $start_from !== false && $start_from > 0 )
135
- $time_filter = $wpdb->prepare( "AND log.time BETWEEN %d AND %d", $start_from, $now );
136
-
137
- }
138
-
139
- $time_filter = apply_filters( 'mycred_leaderboard_time_filter', $time_filter, $based_on, $user_id, $ctype );
140
-
141
- }
142
-
143
- if ( mycred_centralize_log() )
144
- $query = $wpdb->prepare( "SELECT DISTINCT log.user_id AS ID, SUM( log.creds ) AS cred FROM {$mycred->log_table} log WHERE log.ref = %s {$time_filter} GROUP BY log.user_id ORDER BY SUM( log.creds ) {$order} {$limit};", $based_on );
145
-
146
- // Multisite support
147
- else {
148
-
149
- $blog_id = absint( $GLOBALS['blog_id'] );
150
- $query = $wpdb->prepare( "
151
- SELECT DISTINCT log.user_id AS ID, SUM( log.creds ) AS cred
152
- FROM {$mycred->log_table} log
153
- LEFT JOIN {$wpdb->usermeta} cap ON ( log.user_id = cap.user_id AND cap.meta_key = 'cap.wp_{$blog_id}_capabilities' )
154
- WHERE log.ref = %s
155
- {$time_filter}
156
- GROUP BY log.user_id
157
- ORDER BY SUM( log.creds ) {$order}, log.user_id ASC
158
- {$limit};", $based_on );
159
-
160
- }
161
-
162
- }
163
-
164
- $leaderboard = $wpdb->get_results( apply_filters( 'mycred_ranking_sql', $query, $atts ), 'ARRAY_A' );
165
- $output = '';
166
- $in_list = false;
167
- $current_user = wp_get_current_user();
168
-
169
- if ( ! empty( $leaderboard ) ) {
170
-
171
- // Check if current user is in the leaderboard
172
- if ( $current == 1 && is_user_logged_in() ) {
173
-
174
- // Find the current user in the leaderboard
175
- foreach ( $leaderboard as $position => $user ) {
176
- if ( $user['ID'] == $current_user->ID ) {
177
- $in_list = true;
178
- break;
179
- }
180
- }
181
-
182
- }
183
-
184
- // Load myCRED
185
- $mycred = mycred( $type );
186
-
187
- // Wrapper
188
- if ( $wrap == 'li' )
189
- $output .= '<ol class="myCRED-leaderboard list-unstyled">';
190
-
191
- // Loop
192
- foreach ( $leaderboard as $position => $user ) {
193
-
194
- // Prep
195
- $class = array();
196
-
197
- // Position
198
- if ( $offset != '' && $offset > 0 )
199
- $position = $position + $offset;
200
-
201
- // Classes
202
- $class[] = 'item-' . $position;
203
- if ( $position == 0 )
204
- $class[] = 'first-item';
205
-
206
- if ( $user['ID'] == $current_user->ID )
207
- $class[] = 'current-user';
208
-
209
- if ( $position % 2 != 0 )
210
- $class[] = 'alt';
211
-
212
- $row_template = $template;
213
- if ( ! empty( $content ) )
214
- $row_template = $content;
215
-
216
- // Template Tags
217
- $layout = str_replace( array( '%ranking%', '%position%' ), $position+1, $row_template );
218
-
219
- $layout = $mycred->template_tags_amount( $layout, $user['cred'] );
220
- $layout = $mycred->template_tags_user( $layout, $user['ID'] );
221
-
222
- // Wrapper
223
- if ( ! empty( $wrap ) )
224
- $layout = '<' . $wrap . ' class="%classes%">' . $layout . '</' . $wrap . '>';
225
-
226
- $layout = str_replace( '%classes%', apply_filters( 'mycred_ranking_classes', implode( ' ', $class ) ), $layout );
227
- $layout = apply_filters( 'mycred_ranking_row', $layout, $template, $user, $position+1 );
228
-
229
- $output .= $layout . "\n";
230
-
231
- }
232
-
233
- // Current user is not in list but we want to show his position
234
- if ( ! $in_list && $current == 1 && is_user_logged_in() ) {
235
-
236
- // Flush previous query
237
- $wpdb->flush();
238
-
239
- $current_position = mycred_render_shortcode_leaderbaord_position( array(
240
- 'based_on' => $based_on,
241
- 'user_id' => 'current',
242
- 'timeframe' => $timeframe,
243
- 'ctype' => $type
244
- ), $content );
245
-
246
- $row_template = $template;
247
- if ( ! empty( $content ) )
248
- $row_template = $content;
249
-
250
- // Template Tags
251
- $layout = str_replace( array( '%ranking%', '%position%' ), $current_position, $row_template );
252
-
253
- $layout = $mycred->template_tags_amount( $layout, $mycred->get_users_balance( $current_user->ID, $type ) );
254
- $layout = $mycred->template_tags_user( $layout, false, $current_user );
255
-
256
- // Wrapper
257
- if ( ! empty( $wrap ) )
258
- $layout = '<' . $wrap . ' class="%classes%">' . $layout . '</' . $wrap . '>';
259
-
260
- $layout = str_replace( '%classes%', apply_filters( 'mycred_ranking_classes', implode( ' ', $class ) ), $layout );
261
- $layout = apply_filters( 'mycred_ranking_row', $layout, $template, $current_user, $current_position );
262
-
263
- $output .= $layout . "\n";
264
-
265
- }
266
-
267
- if ( $wrap == 'li' )
268
- $output .= '</ol>';
269
-
270
- }
271
-
272
- // No result template is set
273
- else {
274
-
275
- $output .= '<p class="mycred-leaderboard-none">' . $nothing . '</p>';
276
-
277
- }
278
-
279
- return do_shortcode( apply_filters( 'mycred_leaderboard', $output, $atts ) );
280
 
281
  }
282
  endif;
5
  * myCRED Shortcode: mycred_leaderboard
6
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
7
  * @since 0.1
8
+ * @version 1.6
9
  */
10
  if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
11
  function mycred_render_shortcode_leaderboard( $atts, $content = '' ) {
12
 
13
+ $args = shortcode_atts( array(
14
  'number' => 25,
15
  'order' => 'DESC',
16
  'offset' => 0,
23
  'current' => 0,
24
  'exclude_zero' => 1,
25
  'timeframe' => ''
26
+ ), $atts );
27
 
28
  if ( ! MYCRED_ENABLE_LOGGING ) return '';
29
 
30
+ // Construct the leaderboard class
31
+ $leaderboard = mycred_get_leaderboard( $args );
32
 
33
+ // Just constructing the class will not yeld any results
34
+ // We need to run the query to populate the leaderboard
35
+ $leaderboard->get_leaderboard_results( (bool) $args['current'] );
36
 
37
+ // Render and return
38
+ return do_shortcode( $leaderboard->render( $args, $content ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
 
40
  }
41
  endif;
includes/shortcodes/mycred_leaderboard_position.php CHANGED
@@ -6,130 +6,41 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
6
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard_position/
7
  * Replaces the mycred_my_ranking shortcode.
8
  * @since 1.7
9
- * @version 1.1.3
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_leaderbaord_position' ) ) :
12
  function mycred_render_shortcode_leaderbaord_position( $atts, $content = '' ) {
13
 
14
- extract( shortcode_atts( array(
15
  'user_id' => 'current',
16
  'ctype' => MYCRED_DEFAULT_TYPE_KEY,
 
17
  'based_on' => 'balance',
18
  'total' => 0,
19
  'missing' => '-',
20
  'suffix' => 0,
21
  'timeframe' => ''
22
- ), $atts ) );
23
 
24
- // If we want the current users position but we are not logged in, we can not know a position.
25
- if ( ! is_user_logged_in() && $user_id === 'current' )
26
- return $content;
27
 
28
- if ( ! MYCRED_ENABLE_LOGGING ) return '';
 
29
 
30
- // Make sure we use a type that exists
31
- if ( ! mycred_point_type_exists( $ctype ) )
32
- $ctype = MYCRED_DEFAULT_TYPE_KEY;
33
 
34
- global $wpdb, $mycred;
 
35
 
36
- // Prep
37
- $user_id = mycred_get_user_id( $user_id );
38
- $based_on = sanitize_text_field( $based_on );
39
 
40
- // Get Position based on balance
41
- if ( $based_on == 'balance' ) {
42
-
43
- $multisite_check = "";
44
- if ( ! mycred_centralize_log() ) {
45
-
46
- $blog_id = absint( $GLOBALS['blog_id'] );
47
- $multisite_check = "LEFT JOIN {$wpdb->usermeta} cap ON ( t.user_id = cap.user_id AND cap.meta_key = 'cap.wp_{$blog_id}_capabilities' )";
48
-
49
- }
50
-
51
- // Current Balance
52
- if ( $total == 0 )
53
- $position = $wpdb->get_var( $wpdb->prepare( "
54
- SELECT rank FROM (
55
- SELECT s.*, @rank := @rank + 1 rank FROM (
56
- SELECT t.user_id, t.meta_value AS Balance FROM {$wpdb->usermeta} t
57
- {$multisite_check}
58
- WHERE t.meta_key = %s
59
- ) s, (SELECT @rank := 0) init
60
- ORDER BY Balance+0 DESC, s.user_id ASC
61
- ) r
62
- WHERE user_id = %d", mycred_get_meta_key( $ctype ), $user_id ) );
63
-
64
- // Total Balance
65
- else
66
- $position = $wpdb->get_var( $wpdb->prepare( "
67
- SELECT rank FROM (
68
- SELECT s.*, @rank := @rank + 1 rank FROM (
69
- SELECT t.user_id, sum(t.creds) TotalPoints FROM {$mycred->log_table} t
70
- {$multisite_check}
71
- WHERE t.ctype = %s AND ( ( t.creds > 0 ) OR ( t.creds < 0 AND t.ref = 'manual' ) )
72
- GROUP BY t.user_id
73
- ) s, (SELECT @rank := 0) init
74
- ORDER BY TotalPoints DESC, s.user_id ASC
75
- ) r
76
- WHERE user_id = %d", $ctype, $user_id ) );
77
-
78
- }
79
-
80
- // Get Position based on reference e.g. Most point gains for approved comments
81
- else {
82
-
83
- $time_filter = '';
84
- $now = current_time( 'timestamp' );
85
- if ( $timeframe != '' ) {
86
-
87
- // Start of the week based of our settings
88
- $week_starts = get_option( 'start_of_week' );
89
- if ( $week_starts == 0 )
90
- $week_starts = 'sunday';
91
- else
92
- $week_starts = 'monday';
93
-
94
- // Filter: Daily
95
- if ( $timeframe == 'today' )
96
- $time_filter = $wpdb->prepare( "AND time BETWEEN %d AND %d", strtotime( 'today midnight', $now ), $now );
97
-
98
- // Filter: Weekly
99
- elseif ( $timeframe == 'this-week' )
100
- $time_filter = $wpdb->prepare( "AND time BETWEEN %d AND %d", strtotime( $week_starts . ' this week', $now ), $now );
101
-
102
- // Filter: Monthly
103
- elseif ( $timeframe == 'this-month' )
104
- $time_filter = $wpdb->prepare( "AND time BETWEEN %d AND %d", strtotime( date( 'Y-m-01', $now ) ), $now );
105
-
106
- else
107
- $time_filter = $wpdb->prepare( "AND time BETWEEN %d AND %d", strtotime( $timeframe, $now ), $now );
108
-
109
- $time_filter = apply_filters( 'mycred_leaderboard_time_filter', $time_filter, $based_on, $user_id, $ctype );
110
-
111
- }
112
-
113
- $position = $wpdb->get_var( $wpdb->prepare( "
114
- SELECT rank FROM (
115
- SELECT s.*, @rank := @rank + 1 rank FROM (
116
- SELECT t.user_id, sum(t.creds) TotalPoints FROM {$mycred->log_table} t
117
- WHERE t.ref != 'manual' AND t.creds > 0 AND t.ctype = %s AND t.ref = %s {$time_filter}
118
- GROUP BY t.user_id
119
- ) s, (SELECT @rank := 0) init
120
- ORDER BY TotalPoints DESC, s.user_id ASC
121
- ) r
122
- WHERE user_id = %d", $ctype, $based_on, $user_id ) );
123
-
124
- }
125
-
126
- if ( $position === NULL )
127
- $position = $missing;
128
-
129
- elseif ( $suffix == 1 )
130
  $position = mycred_ordinal_suffix( $position, true );
131
 
132
- return apply_filters( 'mycred_get_leaderboard_position', $position, $user_id, $ctype );
133
 
134
  }
135
  endif;
6
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard_position/
7
  * Replaces the mycred_my_ranking shortcode.
8
  * @since 1.7
9
+ * @version 1.2
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_leaderbaord_position' ) ) :
12
  function mycred_render_shortcode_leaderbaord_position( $atts, $content = '' ) {
13
 
14
+ $args = shortcode_atts( array(
15
  'user_id' => 'current',
16
  'ctype' => MYCRED_DEFAULT_TYPE_KEY,
17
+ 'type' => '',
18
  'based_on' => 'balance',
19
  'total' => 0,
20
  'missing' => '-',
21
  'suffix' => 0,
22
  'timeframe' => ''
23
+ ), $atts );
24
 
25
+ if ( ! MYCRED_ENABLE_LOGGING ) return $content;
 
 
26
 
27
+ // Get the user ID we need a position for
28
+ $user_id = mycred_get_user_id( $args['user_id'] );
29
 
30
+ // Backwards comp.
31
+ if ( $args['type'] == '' )
32
+ $args['type'] = $args['ctype'];
33
 
34
+ // Construct the leaderboard class
35
+ $leaderboard = mycred_get_leaderboard( $args );
36
 
37
+ // Query the users position
38
+ $position = $leaderboard->get_users_current_position( $user_id, $missing );
 
39
 
40
+ if ( $position != $missing && $suffix == 1 )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  $position = mycred_ordinal_suffix( $position, true );
42
 
43
+ return $position;
44
 
45
  }
46
  endif;
includes/shortcodes/mycred_total_points.php CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
6
  * Allows to show total points of a specific point type or add up
7
  * points from the log based on reference, reference id or user id.
8
  * @since 1.6.6
9
- * @version 1.1.1
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_total_points' ) ) :
12
  function mycred_render_shortcode_total_points( $atts ) {
@@ -22,7 +22,6 @@ if ( ! function_exists( 'mycred_render_shortcode_total_points' ) ) :
22
  if ( ! mycred_point_type_exists( $type ) )
23
  $type = MYCRED_DEFAULT_TYPE_KEY;
24
 
25
- $ref = sanitize_key( $ref );
26
  $user_id = mycred_get_user_id( $user_id );
27
  $mycred = mycred( $type );
28
 
6
  * Allows to show total points of a specific point type or add up
7
  * points from the log based on reference, reference id or user id.
8
  * @since 1.6.6
9
+ * @version 1.1.2
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_total_points' ) ) :
12
  function mycred_render_shortcode_total_points( $atts ) {
22
  if ( ! mycred_point_type_exists( $type ) )
23
  $type = MYCRED_DEFAULT_TYPE_KEY;
24
 
 
25
  $user_id = mycred_get_user_id( $user_id );
26
  $mycred = mycred( $type );
27
 
lang/mycred-en_US.mo CHANGED
Binary file
lang/mycred-en_US.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
- "POT-Creation-Date: 2017-04-19 14:59+0000\n"
6
- "PO-Revision-Date: 2017-04-19 14:59+0000\n"
7
- "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
  "Language-Team: English (United States)\n"
9
  "Language: en-US\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -24,81 +24,80 @@ msgstr ""
24
  "X-Poedit-SearchPath-1: .\n"
25
  "X-Loco-Target-Locale: en_US"
26
 
27
- #: mycred.php:565
28
  #, php-format
29
  msgid "%s Log Import"
30
  msgstr ""
31
 
32
- #: mycred.php:566
33
  msgid "Import log entries via a CSV file."
34
  msgstr ""
35
 
36
- #: mycred.php:577
37
  #, php-format
38
  msgid "%s Balance Import"
39
  msgstr ""
40
 
41
- #: mycred.php:578
42
  msgid "Import balances via a CSV file."
43
  msgstr ""
44
 
45
- #: mycred.php:589
46
  #, php-format
47
  msgid "%s CubePoints Import"
48
  msgstr ""
49
 
50
- #: mycred.php:590
51
  msgid "Import CubePoints log entries and / or balances."
52
  msgstr ""
53
 
54
- #: mycred.php:632 modules/mycred-module-management.php:316
55
- #: modules/mycred-module-settings.php:425 modules/mycred-module-log.php:469
56
  #: addons/transfer/myCRED-addon-transfer.php:159
57
  #: addons/ranks/myCRED-addon-ranks.php:986
58
- #: addons/ranks/myCRED-addon-ranks.php:1568
59
- #: addons/badges/myCRED-addon-badges.php:702
60
  #: addons/gateway/event-booking/mycred-eventsmanager.php:537
61
  msgid "Processing..."
62
  msgstr ""
63
 
64
- #: mycred.php:633
65
  msgid "Sent"
66
  msgstr ""
67
 
68
- #: mycred.php:634
69
  msgid "Error - Try Again"
70
  msgstr ""
71
 
72
- #: mycred.php:809 mycred.php:810
73
  #, php-format
74
  msgid "About %s"
75
  msgstr ""
76
 
77
- #: mycred.php:818 mycred.php:819
78
  msgid "Awesome People"
79
  msgstr ""
80
 
81
- #: mycred.php:856 modules/mycred-module-management.php:558
82
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:34
83
  msgid "Balance"
84
  msgstr ""
85
 
86
- #: mycred.php:923 modules/mycred-module-management.php:473
87
  #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
88
- #: addons/buy-creds/modules/buycred-module-pending.php:444
89
  msgid "History"
90
  msgstr ""
91
 
92
- #: mycred.php:979 mycred.php:1000
93
  #: addons/notifications/myCRED-addon-notifications.php:194
94
  #: addons/email-notices/myCRED-addon-email-notices.php:277
95
  #: addons/banking/services/mycred-service-interest.php:477
96
  #: addons/gateway/event-booking/mycred-eventsmanager.php:591
97
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:605
98
  msgid "Setup"
99
  msgstr ""
100
 
101
- #: mycred.php:981 modules/mycred-module-settings.php:21
102
  #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
103
  #: modules/mycred-module-network.php:270
104
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
@@ -106,7 +105,7 @@ msgstr ""
106
  msgid "Settings"
107
  msgstr ""
108
 
109
- #: mycred.php:1021
110
  msgid ""
111
  "Make sure to backup your database and files before updating, in case "
112
  "anything goes wrong!"
@@ -116,43 +115,43 @@ msgstr ""
116
  msgid "This Hook has no settings"
117
  msgstr ""
118
 
119
- #: abstracts/mycred-abstract-hook.php:290
120
- #: abstracts/mycred-abstract-hook.php:361 includes/mycred-functions.php:2771
121
  msgid "No limit"
122
  msgstr ""
123
 
124
- #: abstracts/mycred-abstract-hook.php:291
125
  msgid "/ Day"
126
  msgstr ""
127
 
128
- #: abstracts/mycred-abstract-hook.php:292
129
  msgid "/ Week"
130
  msgstr ""
131
 
132
- #: abstracts/mycred-abstract-hook.php:293
133
  msgid "/ Month"
134
  msgstr ""
135
 
136
- #: abstracts/mycred-abstract-hook.php:294
137
  msgid "in Total"
138
  msgstr ""
139
 
140
- #: abstracts/mycred-abstract-hook.php:362
141
  msgid "Once every 24 hours"
142
  msgstr ""
143
 
144
- #: abstracts/mycred-abstract-hook.php:363
145
  msgid "Once every 7 days"
146
  msgstr ""
147
 
148
- #: abstracts/mycred-abstract-hook.php:364
149
  msgid "Once per day (reset at midnight)"
150
  msgstr ""
151
 
152
- #: abstracts/mycred-abstract-hook.php:371
153
  #: addons/email-notices/myCRED-addon-email-notices.php:531
154
  #: addons/email-notices/myCRED-addon-email-notices.php:862
155
- #: addons/badges/myCRED-addon-badges.php:880
156
  #: addons/banking/abstracts/mycred-abstract-service.php:351
157
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
158
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
@@ -167,19 +166,19 @@ msgstr ""
167
  msgid "Surprise"
168
  msgstr ""
169
 
170
- #: abstracts/mycred-abstract-module.php:522
171
  #: modules/mycred-module-network.php:218
172
  msgid "click to close"
173
  msgstr ""
174
 
175
- #: abstracts/mycred-abstract-module.php:523
176
  #: modules/mycred-module-network.php:219
177
  msgid "click to open"
178
  msgstr ""
179
 
180
- #: abstracts/mycred-abstract-module.php:556
181
  #: modules/mycred-module-network.php:261
182
- #: addons/email-notices/myCRED-addon-email-notices.php:1546
183
  #: addons/gateway/event-booking/mycred-eventespresso3.php:451
184
  #: addons/buy-creds/modules/buycred-module-core.php:597
185
  msgid "Settings Updated"
@@ -214,7 +213,7 @@ msgid "No recent activity found."
214
  msgstr ""
215
 
216
  #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
217
- #: modules/mycred-module-log.php:910
218
  #: includes/classes/class.query-export.php:263
219
  #: includes/classes/class.query-export.php:399
220
  #: includes/classes/class.query-log.php:892
@@ -234,7 +233,7 @@ msgstr ""
234
 
235
  #: modules/mycred-module-management.php:237
236
  #: modules/mycred-module-management.php:775 modules/mycred-module-log.php:93
237
- #: modules/mycred-module-log.php:918
238
  #: includes/classes/class.query-export.php:263
239
  #: includes/classes/class.query-export.php:360
240
  #: includes/classes/class.query-log.php:904
@@ -259,7 +258,7 @@ msgid "Edit Users Balance"
259
  msgstr ""
260
 
261
  #: modules/mycred-module-management.php:315
262
- #: modules/mycred-module-settings.php:430 modules/mycred-module-log.php:468
263
  #: addons/banking/myCRED-addon-banking.php:204
264
  msgid "Close"
265
  msgstr ""
@@ -293,7 +292,7 @@ msgstr ""
293
 
294
  #: modules/mycred-module-management.php:583
295
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
296
- #: addons/buy-creds/modules/buycred-module-pending.php:718
297
  msgid "Cancel"
298
  msgstr ""
299
 
@@ -303,7 +302,7 @@ msgid "ID"
303
  msgstr ""
304
 
305
  #: modules/mycred-module-management.php:747
306
- #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
307
  #: addons/buy-creds/modules/buycred-module-core.php:1374
308
  msgid "Username"
309
  msgstr ""
@@ -331,9 +330,9 @@ msgstr ""
331
  #: addons/transfer/includes/mycred-transfer-widgets.php:105
332
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
333
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
334
- #: addons/buy-creds/modules/buycred-module-pending.php:269
335
- #: addons/buy-creds/modules/buycred-module-pending.php:615
336
- #: addons/buy-creds/modules/buycred-module-pending.php:733
337
  msgid "Amount"
338
  msgstr ""
339
 
@@ -349,7 +348,7 @@ msgstr ""
349
  msgid "lowercase without empty spaces"
350
  msgstr ""
351
 
352
- #: modules/mycred-module-management.php:796 modules/mycred-module-log.php:929
353
  #: addons/gateway/event-booking/mycred-eventespresso3.php:518
354
  msgid "Log Entry"
355
  msgstr ""
@@ -407,7 +406,7 @@ msgid "Done!"
407
  msgstr ""
408
 
409
  #: modules/mycred-module-settings.php:431
410
- msgid "Export users %plural%"
411
  msgstr ""
412
 
413
  #: modules/mycred-module-settings.php:432
@@ -437,7 +436,7 @@ msgid "%s Settings"
437
  msgstr ""
438
 
439
  #: modules/mycred-module-settings.php:530 modules/mycred-module-addons.php:330
440
- #: modules/mycred-module-addons.php:368 modules/mycred-module-log.php:554
441
  #: modules/mycred-module-network.php:241 modules/mycred-module-network.php:276
442
  #: modules/mycred-module-network.php:292
443
  #: includes/importers/mycred-cubepoints.php:305
@@ -453,7 +452,6 @@ msgstr ""
453
  #: modules/mycred-module-settings.php:544 includes/mycred-setup.php:275
454
  #: addons/gateway/event-booking/mycred-eventespresso3.php:460
455
  #: addons/gateway/event-booking/mycred-eventsmanager.php:658
456
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
457
  msgid "Labels"
458
  msgstr ""
459
 
@@ -465,8 +463,8 @@ msgstr ""
465
  #: modules/mycred-module-settings.php:555
466
  #: modules/mycred-module-settings.php:605
467
  #: modules/mycred-module-settings.php:612
468
- #: modules/mycred-module-settings.php:799
469
- #: modules/mycred-module-settings.php:805 includes/mycred-setup.php:280
470
  #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
471
  #: includes/mycred-setup.php:340 addons/coupons/myCRED-addon-coupons.php:710
472
  #: addons/coupons/myCRED-addon-coupons.php:717
@@ -500,7 +498,7 @@ msgid ""
500
  msgstr ""
501
 
502
  #: modules/mycred-module-settings.php:562 includes/mycred-setup.php:293
503
- #: addons/email-notices/myCRED-addon-email-notices.php:1405
504
  msgid "Format"
505
  msgstr ""
506
 
@@ -594,15 +592,15 @@ msgstr ""
594
  msgid "Management"
595
  msgstr ""
596
 
597
- #: modules/mycred-module-settings.php:678 modules/mycred-module-log.php:433
598
  msgid "Entries"
599
  msgstr ""
600
 
601
  #: modules/mycred-module-settings.php:684
602
  #: modules/mycred-module-settings.php:709
603
- #: addons/ranks/myCRED-addon-ranks.php:1665
604
- #: addons/buy-creds/modules/buycred-module-pending.php:450
605
- #: addons/buy-creds/modules/buycred-module-pending.php:736
606
  msgid "Actions"
607
  msgstr ""
608
 
@@ -615,8 +613,8 @@ msgid "Balance Meta Key"
615
  msgstr ""
616
 
617
  #: modules/mycred-module-settings.php:703
618
- #: addons/ranks/myCRED-addon-ranks.php:1076
619
- #: addons/badges/myCRED-addon-badges.php:400
620
  msgid "Users"
621
  msgstr ""
622
 
@@ -624,7 +622,11 @@ msgstr ""
624
  msgid "Set all to zero"
625
  msgstr ""
626
 
627
- #: modules/mycred-module-settings.php:728 includes/mycred-widgets.php:573
 
 
 
 
628
  #: addons/transfer/myCRED-addon-transfer.php:370
629
  #: addons/sell-content/myCRED-addon-sell-content.php:581
630
  #: addons/transfer/includes/mycred-transfer-widgets.php:121
@@ -632,80 +634,79 @@ msgstr ""
632
  msgid "Point Types"
633
  msgstr ""
634
 
635
- #: modules/mycred-module-settings.php:742
636
- #: modules/mycred-module-settings.php:768
637
- #: modules/mycred-module-settings.php:798
638
  msgid "Meta Key"
639
  msgstr ""
640
 
641
- #: modules/mycred-module-settings.php:748
642
- #: modules/mycred-module-settings.php:774
643
- #: modules/mycred-module-settings.php:804
644
  #: addons/email-notices/myCRED-addon-email-notices.php:578
645
  #: addons/gateway/carts/mycred-woocommerce.php:155
646
  msgid "Label"
647
  msgstr ""
648
 
649
- #: modules/mycred-module-settings.php:755
650
- #: modules/mycred-module-settings.php:781
651
  #: includes/classes/class.query-log.php:1019
652
  #: includes/classes/class.query-log.php:1622
653
  #: addons/banking/services/mycred-service-payouts.php:472
654
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
655
  msgid "Delete"
656
  msgstr ""
657
 
658
- #: modules/mycred-module-settings.php:794
659
  msgid "Add New Type"
660
  msgstr ""
661
 
662
- #: modules/mycred-module-settings.php:810
663
  msgid ""
664
  "The meta key must be lowercase and only contain letters or underscores. All "
665
  "other characters will be deleted!"
666
  msgstr ""
667
 
668
- #: modules/mycred-module-settings.php:822
669
  #: addons/gateway/event-booking/mycred-eventespresso3.php:551
670
  #: addons/buy-creds/modules/buycred-module-core.php:650
671
  msgid "Update Settings"
672
  msgstr ""
673
 
674
- #: modules/mycred-module-settings.php:831
675
  msgid "Identify users by"
676
  msgstr ""
677
 
678
- #: modules/mycred-module-settings.php:837
679
  msgid "User ID"
680
  msgstr ""
681
 
682
- #: modules/mycred-module-settings.php:838
683
  msgid "User Email"
684
  msgstr ""
685
 
686
- #: modules/mycred-module-settings.php:839
687
  msgid "User Login"
688
  msgstr ""
689
 
690
- #: modules/mycred-module-settings.php:847
691
  msgid ""
692
  "Use ID if you intend to use this export as a backup of your current site "
693
  "while Email is recommended if you want to export to a different site."
694
  msgstr ""
695
 
696
- #: modules/mycred-module-settings.php:850
697
  msgid "Import Log Entry"
698
  msgstr ""
699
 
700
- #: modules/mycred-module-settings.php:852
701
  #, php-format
702
  msgid ""
703
  "Optional log entry to use if you intend to import this file in a different "
704
  "%s installation."
705
  msgstr ""
706
 
707
- #: modules/mycred-module-settings.php:855 modules/mycred-module-export.php:236
708
- #: modules/mycred-module-export.php:263 modules/mycred-module-export.php:313
709
  msgid "Export"
710
  msgstr ""
711
 
@@ -810,7 +811,7 @@ msgstr ""
810
  msgid "Log"
811
  msgstr ""
812
 
813
- #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:906
814
  #: includes/classes/class.query-export.php:263
815
  #: includes/classes/class.query-export.php:371
816
  #: includes/classes/class.query-log.php:891
@@ -851,57 +852,57 @@ msgid_plural "%d Entries Deleted"
851
  msgstr[0] ""
852
  msgstr[1] ""
853
 
854
- #: modules/mycred-module-log.php:467
855
  msgid "Edit Log Entry"
856
  msgstr ""
857
 
858
- #: modules/mycred-module-log.php:471
859
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
860
  msgstr ""
861
 
862
- #: modules/mycred-module-log.php:472
863
  msgid "The log entry was successfully updated."
864
  msgstr ""
865
 
866
- #: modules/mycred-module-log.php:473
867
  msgid "The selected log entry could not be deleted."
868
  msgstr ""
869
 
870
- #: modules/mycred-module-log.php:502
871
  msgid "Search results for"
872
  msgstr ""
873
 
874
- #: modules/mycred-module-log.php:507
875
  #, php-format
876
  msgctxt "e.g. Log entries from April 12th 2016"
877
  msgid "Log entries from %s"
878
  msgstr ""
879
 
880
- #: modules/mycred-module-log.php:554
881
  #, php-format
882
  msgid "%s Log"
883
  msgstr ""
884
 
885
- #: modules/mycred-module-log.php:564
886
  msgid ""
887
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
888
  "Certain hooks and shortcodes will not work correctly!"
889
  msgstr ""
890
 
891
- #: modules/mycred-module-log.php:666
892
  #, php-format
893
  msgid "My %s History"
894
  msgstr ""
895
 
896
- #: modules/mycred-module-log.php:925
897
  msgid "Original Entry"
898
  msgstr ""
899
 
900
- #: modules/mycred-module-log.php:937
901
  msgid "Delete Entry"
902
  msgstr ""
903
 
904
- #: modules/mycred-module-log.php:942
905
  msgid "Update Entry"
906
  msgstr ""
907
 
@@ -922,7 +923,7 @@ msgid "Master Template"
922
  msgstr ""
923
 
924
  #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:280
925
- #: modules/mycred-module-network.php:296 modules/mycred-module-export.php:354
926
  #: addons/sell-content/myCRED-addon-sell-content.php:481
927
  msgid "Enabled"
928
  msgstr ""
@@ -946,7 +947,7 @@ msgid "Note! %s has not yet been setup."
946
  msgstr ""
947
 
948
  #: modules/mycred-module-network.php:285 modules/mycred-module-network.php:301
949
- #: modules/mycred-module-export.php:353 plugins/mycred-hook-affiliatewp.php:362
950
  #: addons/sell-content/myCRED-addon-sell-content.php:396
951
  #: addons/sell-content/myCRED-addon-sell-content.php:480
952
  #: addons/buy-creds/modules/buycred-module-core.php:1127
@@ -974,68 +975,67 @@ msgstr ""
974
  msgid "Save Network Settings"
975
  msgstr ""
976
 
977
- #: modules/mycred-module-export.php:285 modules/mycred-module-export.php:332
978
  #: includes/classes/class.query-log.php:1687
979
  msgid ""
980
  "Log entries are exported to a CSV file and depending on the number of "
981
  "entries selected, the process may take a few seconds."
982
  msgstr ""
983
 
984
- #: modules/mycred-module-export.php:358
985
  msgid "Make both format options available."
986
  msgstr ""
987
 
988
- #: modules/mycred-module-export.php:360
989
  msgid "Exports"
990
  msgstr ""
991
 
992
- #: modules/mycred-module-export.php:366
993
  msgid "Front End Exports"
994
  msgstr ""
995
 
996
- #: modules/mycred-module-export.php:382 modules/mycred-module-export.php:430
997
  msgid "Export Format"
998
  msgstr ""
999
 
1000
- #: modules/mycred-module-export.php:398 modules/mycred-module-export.php:446
1001
  msgid "File Name"
1002
  msgstr ""
1003
 
1004
- #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
1005
  #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
1006
  #: includes/importers/mycred-cubepoints.php:353
1007
  #: includes/classes/class.query-export.php:263
1008
  #: includes/classes/class.query-export.php:391
1009
- #: addons/ranks/myCRED-addon-ranks.php:1079
1010
- #: addons/ranks/myCRED-addon-ranks.php:1247
1011
- #: addons/ranks/myCRED-addon-ranks.php:1254
1012
  #: addons/email-notices/myCRED-addon-email-notices.php:280
1013
  #: addons/email-notices/myCRED-addon-email-notices.php:585
1014
  #: addons/coupons/myCRED-addon-coupons.php:256
1015
  #: addons/coupons/myCRED-addon-coupons.php:520
1016
  #: addons/gateway/event-booking/mycred-eventespresso3.php:483
1017
  #: addons/gateway/event-booking/mycred-eventsmanager.php:604
1018
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611
1019
  #: addons/gateway/carts/mycred-wpecommerce.php:383
1020
  #: addons/gateway/carts/mycred-woocommerce.php:125
1021
  #: addons/gateway/carts/mycred-woocommerce.php:166
1022
- #: addons/buy-creds/modules/buycred-module-pending.php:557
1023
- #: addons/buy-creds/modules/buycred-module-pending.php:735
1024
  msgid "Point Type"
1025
  msgstr ""
1026
 
1027
- #: modules/mycred-module-export.php:407
1028
  msgid ""
1029
  "If enabled, users will only be able to export their own log entries! Export "
1030
  "tools becomes available wherever you are using the mycred_history shortcode "
1031
  "or in the users profile."
1032
  msgstr ""
1033
 
1034
- #: modules/mycred-module-export.php:414
1035
  msgid "Back End Exports"
1036
  msgstr ""
1037
 
1038
- #: modules/mycred-module-export.php:455
1039
  msgid ""
1040
  "Raw format should be used when you intend to use the export tool to backup "
1041
  "or import entries in another installation. Formatted exports reflect what "
@@ -1097,25 +1097,25 @@ msgstr ""
1097
 
1098
  #: modules/mycred-module-buddypress.php:404
1099
  #: modules/mycred-module-buddypress.php:411
1100
- #: addons/badges/myCRED-addon-badges.php:1140
1101
- #: addons/badges/myCRED-addon-badges.php:1174
1102
  #: addons/gateway/carts/mycred-woocommerce.php:147
1103
  msgid "Do not show"
1104
  msgstr ""
1105
 
1106
  #: modules/mycred-module-buddypress.php:405
1107
- #: addons/badges/myCRED-addon-badges.php:1141
1108
  msgid "Include in Profile Header"
1109
  msgstr ""
1110
 
1111
  #: modules/mycred-module-buddypress.php:406
1112
- #: addons/ranks/myCRED-addon-ranks.php:1478
1113
- #: addons/badges/myCRED-addon-badges.php:1142
1114
  msgid "Include under the \"Profile\" tab"
1115
  msgstr ""
1116
 
1117
  #: modules/mycred-module-buddypress.php:407
1118
- #: addons/badges/myCRED-addon-badges.php:1143
1119
  msgid "Include under the \"Profile\" tab and Profile Header"
1120
  msgstr ""
1121
 
@@ -1132,8 +1132,8 @@ msgid "Members and visitors can view other members %_singular% balance."
1132
  msgstr ""
1133
 
1134
  #: modules/mycred-module-buddypress.php:453
1135
- #: addons/ranks/myCRED-addon-ranks.php:1493
1136
- #: addons/ranks/myCRED-addon-ranks.php:1534
1137
  #: addons/notifications/myCRED-addon-notifications.php:198
1138
  msgid "Template"
1139
  msgstr ""
@@ -1225,10 +1225,10 @@ msgstr ""
1225
  #: plugins/mycred-hook-buddypress-media.php:348
1226
  #: plugins/mycred-hook-wp-favorite-posts.php:228
1227
  #: plugins/mycred-hook-wp-favorite-posts.php:240
1228
- #: plugins/mycred-hook-contact-form7.php:169
1229
  #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:485
1230
  #: plugins/mycred-hook-bbPress.php:536 plugins/mycred-hook-bbPress.php:560
1231
- #: plugins/mycred-hook-woocommerce.php:510
1232
  #: includes/shortcodes/mycred_hook_table.php:79
1233
  msgid "Limit"
1234
  msgstr ""
@@ -1274,13 +1274,13 @@ msgstr ""
1274
  #: plugins/mycred-hook-buddypress-media.php:372
1275
  #: plugins/mycred-hook-buddypress-media.php:390
1276
  #: plugins/mycred-hook-buddypress-media.php:408
1277
- #: plugins/mycred-hook-contact-form7.php:175
1278
  #: plugins/mycred-hook-jetpack.php:549 plugins/mycred-hook-jetpack.php:567
1279
  #: plugins/mycred-hook-bbPress.php:449 plugins/mycred-hook-bbPress.php:467
1280
  #: plugins/mycred-hook-bbPress.php:491 plugins/mycred-hook-bbPress.php:518
1281
  #: plugins/mycred-hook-bbPress.php:542 plugins/mycred-hook-bbPress.php:566
1282
  #: plugins/mycred-hook-bbPress.php:593
1283
- #: addons/badges/myCRED-addon-badges.php:949
1284
  msgid "Log template"
1285
  msgstr ""
1286
 
@@ -1334,12 +1334,12 @@ msgstr ""
1334
  #: plugins/mycred-hook-wp-favorite-posts.php:256
1335
  #: plugins/mycred-hook-wp-favorite-posts.php:274
1336
  #: plugins/mycred-hook-wp-favorite-posts.php:289
1337
- #: plugins/mycred-hook-contact-form7.php:176
1338
  #: plugins/mycred-hook-jetpack.php:550 plugins/mycred-hook-jetpack.php:568
1339
  #: plugins/mycred-hook-bbPress.php:450 plugins/mycred-hook-bbPress.php:468
1340
  #: plugins/mycred-hook-bbPress.php:492 plugins/mycred-hook-bbPress.php:519
1341
  #: plugins/mycred-hook-bbPress.php:543 plugins/mycred-hook-bbPress.php:567
1342
- #: plugins/mycred-hook-bbPress.php:594 plugins/mycred-hook-woocommerce.php:517
1343
  #: plugins/mycred-hook-badgeOS.php:328 plugins/mycred-hook-badgeOS.php:346
1344
  #: addons/transfer/includes/mycred-transfer-widgets.php:102
1345
  #: addons/transfer/includes/mycred-transfer-widgets.php:106
@@ -1363,7 +1363,7 @@ msgstr ""
1363
  #: plugins/mycred-hook-wp-polls.php:177
1364
  #: plugins/mycred-hook-wp-favorite-posts.php:273
1365
  #: plugins/mycred-hook-wp-favorite-posts.php:288
1366
- #: plugins/mycred-hook-woocommerce.php:516 plugins/mycred-hook-badgeOS.php:144
1367
  #: plugins/mycred-hook-badgeOS.php:146 plugins/mycred-hook-badgeOS.php:157
1368
  #: plugins/mycred-hook-badgeOS.php:327 plugins/mycred-hook-badgeOS.php:345
1369
  #: addons/coupons/myCRED-addon-coupons.php:764
@@ -1431,12 +1431,12 @@ msgid "Awards %_plural% for successful form submissions."
1431
  msgstr ""
1432
 
1433
  #: plugins/mycred-hook-gravityforms.php:130
1434
- #: plugins/mycred-hook-contact-form7.php:131
1435
  msgid "No forms found."
1436
  msgstr ""
1437
 
1438
  #: plugins/mycred-hook-gravityforms.php:156
1439
- #: plugins/mycred-hook-contact-form7.php:159
1440
  #, php-format
1441
  msgid "Form: %s"
1442
  msgstr ""
@@ -1486,7 +1486,6 @@ msgstr ""
1486
 
1487
  #: plugins/mycred-hook-buddypress.php:310
1488
  #: addons/gateway/event-booking/mycred-eventsmanager.php:692
1489
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:727
1490
  #: addons/gateway/carts/mycred-wpecommerce.php:415
1491
  msgid "Insufficient Funds"
1492
  msgstr ""
@@ -1664,7 +1663,6 @@ msgstr ""
1664
  #: includes/shortcodes/mycred_exchange.php:75
1665
  #: addons/gateway/event-booking/mycred-eventespresso3.php:498
1666
  #: addons/gateway/event-booking/mycred-eventsmanager.php:634
1667
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:650
1668
  #: addons/gateway/carts/mycred-wpecommerce.php:389
1669
  #: addons/gateway/carts/mycred-woocommerce.php:136
1670
  msgid "Exchange Rate"
@@ -1845,11 +1843,11 @@ msgstr ""
1845
  msgid "Leave empty for no rewards"
1846
  msgstr ""
1847
 
1848
- #: plugins/mycred-hook-woocommerce.php:384
1849
  msgid "WooCommerce Product Reviews"
1850
  msgstr ""
1851
 
1852
- #: plugins/mycred-hook-woocommerce.php:385
1853
  msgid ""
1854
  "Awards %_plural% for users leaving reviews on your WooCommerce products."
1855
  msgstr ""
@@ -1963,7 +1961,7 @@ msgid "Hide"
1963
  msgstr ""
1964
 
1965
  #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
1966
- #: addons/email-notices/myCRED-addon-email-notices.php:1435
1967
  msgid "Advanced"
1968
  msgstr ""
1969
 
@@ -2155,7 +2153,7 @@ msgid "Show the current users balance and history."
2155
  msgstr ""
2156
 
2157
  #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
2158
- #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1369
2159
  #: addons/gateway/carts/mycred-woocommerce.php:96
2160
  #: addons/transfer/includes/mycred-transfer-widgets.php:91
2161
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:203
@@ -2285,94 +2283,94 @@ msgstr ""
2285
  msgid "Points"
2286
  msgstr ""
2287
 
2288
- #: includes/mycred-functions.php:466
2289
  msgid "Deleted"
2290
  msgstr ""
2291
 
2292
- #: includes/mycred-functions.php:607
2293
  msgid "Deleted Item"
2294
  msgstr ""
2295
 
2296
- #: includes/mycred-functions.php:671
2297
  #: addons/email-notices/myCRED-addon-email-notices.php:864
2298
  #: addons/gateway/carts/mycred-wpecommerce.php:370
2299
  msgid "General"
2300
  msgstr ""
2301
 
2302
- #: includes/mycred-functions.php:678
2303
  msgid "User Related"
2304
  msgstr ""
2305
 
2306
- #: includes/mycred-functions.php:685
2307
  msgid "Post Related"
2308
  msgstr ""
2309
 
2310
- #: includes/mycred-functions.php:692
2311
  msgid "Comment Related"
2312
  msgstr ""
2313
 
2314
- #: includes/mycred-functions.php:699
2315
  msgid "Widget Related"
2316
  msgstr ""
2317
 
2318
- #: includes/mycred-functions.php:706
2319
  msgid "Amount Related"
2320
  msgstr ""
2321
 
2322
- #: includes/mycred-functions.php:713
2323
  msgid "Video Related"
2324
  msgstr ""
2325
 
2326
- #: includes/mycred-functions.php:724
2327
  msgid "and"
2328
  msgstr ""
2329
 
2330
- #: includes/mycred-functions.php:726
2331
  msgid "Available Template Tags:"
2332
  msgstr ""
2333
 
2334
- #: includes/mycred-functions.php:2777
2335
  msgid "in total"
2336
  msgstr ""
2337
 
2338
- #: includes/mycred-functions.php:2779
2339
  msgid "per day"
2340
  msgstr ""
2341
 
2342
- #: includes/mycred-functions.php:2782
2343
  msgid "per week"
2344
  msgstr ""
2345
 
2346
- #: includes/mycred-functions.php:2785
2347
  msgid "per month"
2348
  msgstr ""
2349
 
2350
- #: includes/mycred-functions.php:2787 includes/mycred-functions.php:2793
2351
  #, php-format
2352
  msgid "Maximum once"
2353
  msgid_plural "Maximum %d times"
2354
  msgstr[0] ""
2355
  msgstr[1] ""
2356
 
2357
- #: includes/mycred-functions.php:2815
2358
  #, php-format
2359
  msgctxt "e.g. 5 th"
2360
  msgid "%d th"
2361
  msgstr ""
2362
 
2363
- #: includes/mycred-functions.php:2819
2364
  #, php-format
2365
  msgctxt "e.g. 1 st"
2366
  msgid "%d st"
2367
  msgstr ""
2368
 
2369
- #: includes/mycred-functions.php:2820
2370
  #, php-format
2371
  msgctxt "e.g. 2 nd"
2372
  msgid "%d nd"
2373
  msgstr ""
2374
 
2375
- #: includes/mycred-functions.php:2821
2376
  #, php-format
2377
  msgctxt "e.g. 3 rd"
2378
  msgid "%d rd"
@@ -3222,7 +3220,6 @@ msgstr ""
3222
  #: addons/transfer/myCRED-addon-transfer.php:456
3223
  #: addons/sell-content/myCRED-addon-sell-content.php:685
3224
  #: addons/gateway/event-booking/mycred-eventsmanager.php:641
3225
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:657
3226
  msgid "Log Templates"
3227
  msgstr ""
3228
 
@@ -3298,8 +3295,8 @@ msgstr ""
3298
  #: addons/ranks/myCRED-addon-ranks.php:339
3299
  #: addons/ranks/myCRED-addon-ranks.php:340
3300
  #: addons/ranks/myCRED-addon-ranks.php:724
3301
- #: addons/ranks/myCRED-addon-ranks.php:1359
3302
- #: addons/ranks/myCRED-addon-ranks.php:1654
3303
  msgid "Ranks"
3304
  msgstr ""
3305
 
@@ -3338,7 +3335,7 @@ msgid "Search Ranks"
3338
  msgstr ""
3339
 
3340
  #: addons/ranks/myCRED-addon-ranks.php:230
3341
- #: addons/ranks/myCRED-addon-ranks.php:1375
3342
  msgid "Rank Logo"
3343
  msgstr ""
3344
 
@@ -3355,7 +3352,7 @@ msgid "Use as Logo"
3355
  msgstr ""
3356
 
3357
  #: addons/ranks/myCRED-addon-ranks.php:234
3358
- #: addons/ranks/myCRED-addon-ranks.php:1286
3359
  msgid "No ranks found"
3360
  msgstr ""
3361
 
@@ -3398,222 +3395,222 @@ msgstr ""
3398
  msgid "Are you sure you want to re-assign user ranks?"
3399
  msgstr ""
3400
 
3401
- #: addons/ranks/myCRED-addon-ranks.php:1073
3402
- #: addons/ranks/myCRED-addon-ranks.php:1174
3403
  msgid "Rank Title"
3404
  msgstr ""
3405
 
3406
- #: addons/ranks/myCRED-addon-ranks.php:1074
3407
  msgid "Logo"
3408
  msgstr ""
3409
 
3410
- #: addons/ranks/myCRED-addon-ranks.php:1075
3411
- #: addons/badges/myCRED-addon-badges.php:828
3412
- #: addons/badges/myCRED-addon-badges.php:829
3413
  msgid "Requirement"
3414
  msgstr ""
3415
 
3416
- #: addons/ranks/myCRED-addon-ranks.php:1101
3417
  msgid "No Logo Set"
3418
  msgstr ""
3419
 
3420
- #: addons/ranks/myCRED-addon-ranks.php:1116
3421
- #: addons/ranks/myCRED-addon-ranks.php:1121
3422
  msgid "Any Value"
3423
  msgstr ""
3424
 
3425
- #: addons/ranks/myCRED-addon-ranks.php:1118
3426
  #: addons/buy-creds/modules/buycred-module-core.php:345
3427
  msgid "Minimum %plural%"
3428
  msgstr ""
3429
 
3430
- #: addons/ranks/myCRED-addon-ranks.php:1123
3431
  msgid "Maximum %plural%"
3432
  msgstr ""
3433
 
3434
- #: addons/ranks/myCRED-addon-ranks.php:1189
3435
  msgid "Rank Setup"
3436
  msgstr ""
3437
 
3438
- #: addons/ranks/myCRED-addon-ranks.php:1230
3439
  msgid "Minimum Balance Requirement"
3440
  msgstr ""
3441
 
3442
- #: addons/ranks/myCRED-addon-ranks.php:1236
3443
  msgid "Maximum Balance Requirement"
3444
  msgstr ""
3445
 
3446
- #: addons/ranks/myCRED-addon-ranks.php:1275
3447
- #: addons/ranks/myCRED-addon-ranks.php:1276
3448
  msgid "Not Set"
3449
  msgstr ""
3450
 
3451
- #: addons/ranks/myCRED-addon-ranks.php:1366
3452
  msgid "Rank Features"
3453
  msgstr ""
3454
 
3455
- #: addons/ranks/myCRED-addon-ranks.php:1372
3456
  msgid "%plural% requirement"
3457
  msgstr ""
3458
 
3459
- #: addons/ranks/myCRED-addon-ranks.php:1378
3460
  msgid "Content"
3461
  msgstr ""
3462
 
3463
- #: addons/ranks/myCRED-addon-ranks.php:1381
3464
  msgid "Excerpt"
3465
  msgstr ""
3466
 
3467
- #: addons/ranks/myCRED-addon-ranks.php:1384
3468
  msgid "Comments"
3469
  msgstr ""
3470
 
3471
- #: addons/ranks/myCRED-addon-ranks.php:1387
3472
  msgid "Page Attributes"
3473
  msgstr ""
3474
 
3475
- #: addons/ranks/myCRED-addon-ranks.php:1390
3476
  msgid "Custom Fields"
3477
  msgstr ""
3478
 
3479
- #: addons/ranks/myCRED-addon-ranks.php:1395
3480
  msgid "Rank Post Type"
3481
  msgstr ""
3482
 
3483
- #: addons/ranks/myCRED-addon-ranks.php:1398
3484
  msgid "Make Ranks Public"
3485
  msgstr ""
3486
 
3487
- #: addons/ranks/myCRED-addon-ranks.php:1402
3488
  msgid "Rank SLUG"
3489
  msgstr ""
3490
 
3491
- #: addons/ranks/myCRED-addon-ranks.php:1404
3492
  msgid ""
3493
  "If you have selected to make Ranks public, you can select what rank archive "
3494
  "URL slug you want to use. Ignored if Ranks are not set to be public."
3495
  msgstr ""
3496
 
3497
- #: addons/ranks/myCRED-addon-ranks.php:1407
3498
  msgid "Display Order"
3499
  msgstr ""
3500
 
3501
- #: addons/ranks/myCRED-addon-ranks.php:1413
3502
  msgid "Ascending - Lowest rank to highest"
3503
  msgstr ""
3504
 
3505
- #: addons/ranks/myCRED-addon-ranks.php:1414
3506
  msgid "Descending - Highest rank to lowest"
3507
  msgstr ""
3508
 
3509
- #: addons/ranks/myCRED-addon-ranks.php:1425
3510
  msgid "Option to set in which order Ranks should be shown on the archive page."
3511
  msgstr ""
3512
 
3513
- #: addons/ranks/myCRED-addon-ranks.php:1432
3514
  msgid "Rank Behaviour"
3515
  msgstr ""
3516
 
3517
- #: addons/ranks/myCRED-addon-ranks.php:1437
3518
  msgid "Based on Current Balances"
3519
  msgstr ""
3520
 
3521
- #: addons/ranks/myCRED-addon-ranks.php:1439
3522
  msgid ""
3523
  "Users can be promoted or demoted depending on where their balance fits in "
3524
  "amongst your ranks."
3525
  msgstr ""
3526
 
3527
- #: addons/ranks/myCRED-addon-ranks.php:1445
3528
  msgid "Based on Total Balances"
3529
  msgstr ""
3530
 
3531
- #: addons/ranks/myCRED-addon-ranks.php:1447
3532
  msgid ""
3533
  "Users can only be promoted and gain higher ranks even if their balance "
3534
  "decreases."
3535
  msgstr ""
3536
 
3537
- #: addons/ranks/myCRED-addon-ranks.php:1454
3538
  msgid "Tools"
3539
  msgstr ""
3540
 
3541
- #: addons/ranks/myCRED-addon-ranks.php:1455
3542
  msgid ""
3543
  "Use this button to calculate or recalculate each individual users total "
3544
  "balance if you think your users total balances are incorrect, or if you "
3545
  "switch from Ranks being based on users current balance to total balance."
3546
  msgstr ""
3547
 
3548
- #: addons/ranks/myCRED-addon-ranks.php:1456
3549
  msgid "Calculate Totals"
3550
  msgstr ""
3551
 
3552
- #: addons/ranks/myCRED-addon-ranks.php:1460
3553
- #: addons/badges/myCRED-addon-badges.php:1130
3554
  msgid "Third-party Integrations"
3555
  msgstr ""
3556
 
3557
- #: addons/ranks/myCRED-addon-ranks.php:1476
3558
- #: addons/ranks/myCRED-addon-ranks.php:1517
3559
  msgid "Do not show."
3560
  msgstr ""
3561
 
3562
- #: addons/ranks/myCRED-addon-ranks.php:1477
3563
  msgid "Include in Profile Header."
3564
  msgstr ""
3565
 
3566
- #: addons/ranks/myCRED-addon-ranks.php:1479
3567
  msgid "Include under the \"Profile\" tab and Profile Header."
3568
  msgstr ""
3569
 
3570
- #: addons/ranks/myCRED-addon-ranks.php:1495
3571
- #: addons/ranks/myCRED-addon-ranks.php:1536
3572
  msgid ""
3573
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3574
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3575
  msgstr ""
3576
 
3577
- #: addons/ranks/myCRED-addon-ranks.php:1499
3578
- #: addons/ranks/myCRED-addon-ranks.php:1540
3579
- #: addons/badges/myCRED-addon-badges.php:1162
3580
- #: addons/badges/myCRED-addon-badges.php:1196
3581
  msgid "Not installed"
3582
  msgstr ""
3583
 
3584
- #: addons/ranks/myCRED-addon-ranks.php:1518
3585
  msgid "Include in Topic Replies"
3586
  msgstr ""
3587
 
3588
- #: addons/ranks/myCRED-addon-ranks.php:1519
3589
- #: addons/badges/myCRED-addon-badges.php:1175
3590
  msgid "Include in Profile"
3591
  msgstr ""
3592
 
3593
- #: addons/ranks/myCRED-addon-ranks.php:1520
3594
  msgid "Include in Topic Replies and Profile"
3595
  msgstr ""
3596
 
3597
- #: addons/ranks/myCRED-addon-ranks.php:1546
3598
- #: addons/email-notices/myCRED-addon-email-notices.php:1456
3599
- #: addons/badges/myCRED-addon-badges.php:1202
3600
  #: addons/buy-creds/modules/buycred-module-core.php:460
3601
  msgid "Available Shortcodes"
3602
  msgstr ""
3603
 
3604
- #: addons/ranks/myCRED-addon-ranks.php:1657
3605
  msgid "User Meta Key"
3606
  msgstr ""
3607
 
3608
- #: addons/ranks/myCRED-addon-ranks.php:1661
3609
  msgid "No. of ranks"
3610
  msgstr ""
3611
 
3612
- #: addons/ranks/myCRED-addon-ranks.php:1666
3613
  msgid "Remove All Ranks"
3614
  msgstr ""
3615
 
3616
- #: addons/ranks/myCRED-addon-ranks.php:1666
3617
  msgid "Assign Ranks to Users"
3618
  msgstr ""
3619
 
@@ -3799,12 +3796,12 @@ msgid "Both"
3799
  msgstr ""
3800
 
3801
  #: addons/email-notices/myCRED-addon-email-notices.php:610
3802
- #: addons/email-notices/myCRED-addon-email-notices.php:1467
3803
  msgid "Senders Name:"
3804
  msgstr ""
3805
 
3806
  #: addons/email-notices/myCRED-addon-email-notices.php:614
3807
- #: addons/email-notices/myCRED-addon-email-notices.php:1473
3808
  msgid "Senders Email:"
3809
  msgstr ""
3810
 
@@ -3941,90 +3938,90 @@ msgstr ""
3941
  msgid "user is promoted"
3942
  msgstr ""
3943
 
3944
- #: addons/email-notices/myCRED-addon-email-notices.php:1400
3945
  #: addons/coupons/myCRED-addon-coupons.php:114
3946
  msgid "Email Notices"
3947
  msgstr ""
3948
 
3949
- #: addons/email-notices/myCRED-addon-email-notices.php:1408
3950
  msgid "Plain Text"
3951
  msgstr ""
3952
 
3953
- #: addons/email-notices/myCRED-addon-email-notices.php:1416
3954
  #: addons/banking/services/mycred-service-payouts.php:825
3955
  msgid "Schedule"
3956
  msgstr ""
3957
 
3958
- #: addons/email-notices/myCRED-addon-email-notices.php:1420
3959
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
3960
  msgstr ""
3961
 
3962
- #: addons/email-notices/myCRED-addon-email-notices.php:1423
3963
  msgid "Send emails immediately"
3964
  msgstr ""
3965
 
3966
- #: addons/email-notices/myCRED-addon-email-notices.php:1426
3967
  msgid "Send emails once an hour"
3968
  msgstr ""
3969
 
3970
- #: addons/email-notices/myCRED-addon-email-notices.php:1429
3971
  msgid "Send emails once a day"
3972
  msgstr ""
3973
 
3974
- #: addons/email-notices/myCRED-addon-email-notices.php:1438
3975
  msgid "Filter Email Subjects"
3976
  msgstr ""
3977
 
3978
- #: addons/email-notices/myCRED-addon-email-notices.php:1441
3979
  msgid "Filter Email Body"
3980
  msgstr ""
3981
 
3982
- #: addons/email-notices/myCRED-addon-email-notices.php:1450
3983
  msgid ""
3984
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
3985
  "use a SMTP plugin for emails."
3986
  msgstr ""
3987
 
3988
- #: addons/email-notices/myCRED-addon-email-notices.php:1463
3989
  msgid "Defaults"
3990
  msgstr ""
3991
 
3992
- #: addons/email-notices/myCRED-addon-email-notices.php:1479
3993
  msgid "Reply-To:"
3994
  msgstr ""
3995
 
3996
- #: addons/email-notices/myCRED-addon-email-notices.php:1487
3997
  msgid "Default Email Content"
3998
  msgstr ""
3999
 
4000
- #: addons/email-notices/myCRED-addon-email-notices.php:1489
4001
  msgid "Default email content."
4002
  msgstr ""
4003
 
4004
- #: addons/email-notices/myCRED-addon-email-notices.php:1496
4005
  msgid "Default CSS Styling"
4006
  msgstr ""
4007
 
4008
- #: addons/email-notices/myCRED-addon-email-notices.php:1498
4009
  msgid ""
4010
  "Default email CSS styling. Note that if you intend to send HTML emails, you "
4011
  "should use inline CSS styling for best results."
4012
  msgstr ""
4013
 
4014
- #: addons/email-notices/myCRED-addon-email-notices.php:1596
4015
  msgid "Unsubscribe"
4016
  msgstr ""
4017
 
4018
- #: addons/email-notices/myCRED-addon-email-notices.php:1597
4019
  msgid "Email Notice"
4020
  msgstr ""
4021
 
4022
- #: addons/email-notices/myCRED-addon-email-notices.php:1618
4023
  msgid "There are no email notifications yet."
4024
  msgstr ""
4025
 
4026
- #: addons/email-notices/myCRED-addon-email-notices.php:1625
4027
- #: addons/buy-creds/modules/buycred-module-pending.php:490
4028
  msgid "Save Changes"
4029
  msgstr ""
4030
 
@@ -4061,9 +4058,9 @@ msgstr ""
4061
  #: addons/badges/myCRED-addon-badges.php:160
4062
  #: addons/badges/myCRED-addon-badges.php:295
4063
  #: addons/badges/myCRED-addon-badges.php:296
4064
- #: addons/badges/myCRED-addon-badges.php:1127
4065
- #: addons/badges/myCRED-addon-badges.php:1256
4066
- #: addons/badges/myCRED-addon-badges.php:1259
4067
  msgid "Badges"
4068
  msgstr ""
4069
 
@@ -4113,167 +4110,167 @@ msgstr ""
4113
  msgid "Badge Saved."
4114
  msgstr ""
4115
 
4116
- #: addons/badges/myCRED-addon-badges.php:396
4117
- #: addons/badges/myCRED-addon-badges.php:480
4118
  msgid "Badge Name"
4119
  msgstr ""
4120
 
4121
- #: addons/badges/myCRED-addon-badges.php:397
4122
  msgid "Default Image"
4123
  msgstr ""
4124
 
4125
- #: addons/badges/myCRED-addon-badges.php:398
4126
  msgid "First Level"
4127
  msgstr ""
4128
 
4129
- #: addons/badges/myCRED-addon-badges.php:399
4130
  msgid "Requirements"
4131
  msgstr ""
4132
 
4133
- #: addons/badges/myCRED-addon-badges.php:510
4134
- #: addons/badges/myCRED-addon-badges.php:801
4135
  msgid "Add Level"
4136
  msgstr ""
4137
 
4138
- #: addons/badges/myCRED-addon-badges.php:511
4139
- #: addons/badges/myCRED-addon-badges.php:802
4140
  msgid "Remove Level"
4141
  msgstr ""
4142
 
4143
- #: addons/badges/myCRED-addon-badges.php:512
4144
- #: addons/badges/myCRED-addon-badges.php:755
4145
- #: addons/badges/myCRED-addon-badges.php:818
4146
- #: addons/badges/myCRED-addon-badges.php:823
4147
  msgid "Set Image"
4148
  msgstr ""
4149
 
4150
- #: addons/badges/myCRED-addon-badges.php:513
4151
- #: addons/badges/myCRED-addon-badges.php:755
4152
- #: addons/badges/myCRED-addon-badges.php:823
4153
  msgid "Change Image"
4154
  msgstr ""
4155
 
4156
- #: addons/badges/myCRED-addon-badges.php:514
4157
  msgid "Are you sure you want to remove this level?"
4158
  msgstr ""
4159
 
4160
- #: addons/badges/myCRED-addon-badges.php:515
4161
- #: addons/badges/myCRED-addon-badges.php:819
4162
- #: addons/badges/myCRED-addon-badges.php:1288
4163
  msgid "Level"
4164
  msgstr ""
4165
 
4166
- #: addons/badges/myCRED-addon-badges.php:516
4167
  msgid "Badge Image"
4168
  msgstr ""
4169
 
4170
- #: addons/badges/myCRED-addon-badges.php:517
4171
  msgid "Use as Badge"
4172
  msgstr ""
4173
 
4174
- #: addons/badges/myCRED-addon-badges.php:518
4175
- #: addons/badges/myCRED-addon-badges.php:921
4176
  #: addons/badges/includes/mycred-badge-functions.php:272
4177
  msgctxt "Comparison of badge requirements. A AND B"
4178
  msgid "AND"
4179
  msgstr ""
4180
 
4181
- #: addons/badges/myCRED-addon-badges.php:519
4182
- #: addons/badges/myCRED-addon-badges.php:921
4183
  #: addons/badges/includes/mycred-badge-functions.php:270
4184
  msgctxt "Comparison of badge requirements. A OR B"
4185
  msgid "OR"
4186
  msgstr ""
4187
 
4188
- #: addons/badges/myCRED-addon-badges.php:571
4189
  msgid "Badge Setup"
4190
  msgstr ""
4191
 
4192
- #: addons/badges/myCRED-addon-badges.php:580
4193
  msgid "Default Badge Image"
4194
  msgstr ""
4195
 
4196
- #: addons/badges/myCRED-addon-badges.php:678
4197
  msgid "Assign Badge"
4198
  msgstr ""
4199
 
4200
- #: addons/badges/myCRED-addon-badges.php:679
4201
  msgid "Remove Connections"
4202
  msgstr ""
4203
 
4204
- #: addons/badges/myCRED-addon-badges.php:722
4205
  #: addons/badges/includes/mycred-badge-functions.php:288
4206
  msgid "This badge is manually awarded."
4207
  msgstr ""
4208
 
4209
- #: addons/badges/myCRED-addon-badges.php:758
4210
  msgid "Optional image to show when a user has not earned this badge."
4211
  msgstr ""
4212
 
4213
- #: addons/badges/myCRED-addon-badges.php:777
4214
  msgid "Time(s)"
4215
  msgstr ""
4216
 
4217
- #: addons/badges/myCRED-addon-badges.php:778
4218
  msgid "In total"
4219
  msgstr ""
4220
 
4221
- #: addons/badges/myCRED-addon-badges.php:825
4222
  #, php-format
4223
  msgid "Level %d"
4224
  msgstr ""
4225
 
4226
- #: addons/badges/myCRED-addon-badges.php:849
4227
  msgid "Select Point Type"
4228
  msgstr ""
4229
 
4230
- #: addons/badges/myCRED-addon-badges.php:863
4231
  msgid "Select Reference"
4232
  msgstr ""
4233
 
4234
- #: addons/badges/myCRED-addon-badges.php:939
4235
  msgid "Reward"
4236
  msgstr ""
4237
 
4238
- #: addons/badges/myCRED-addon-badges.php:1158
4239
- #: addons/badges/myCRED-addon-badges.php:1192
4240
  msgid "Show all badges, including badges users have not yet earned."
4241
  msgstr ""
4242
 
4243
- #: addons/badges/myCRED-addon-badges.php:1176
4244
  msgid "Include in Forum Replies"
4245
  msgstr ""
4246
 
4247
- #: addons/badges/myCRED-addon-badges.php:1177
4248
  msgid "Include in Profile and Forum Replies"
4249
  msgstr ""
4250
 
4251
- #: addons/badges/myCRED-addon-badges.php:1251
4252
  msgid "No image set"
4253
  msgstr ""
4254
 
4255
- #: addons/badges/myCRED-addon-badges.php:1283
4256
  msgid "Select a level"
4257
  msgstr ""
4258
 
4259
- #: addons/badges/myCRED-addon-badges.php:1297
4260
  msgid "Earned"
4261
  msgstr ""
4262
 
4263
- #: addons/badges/myCRED-addon-badges.php:1406
4264
  #, php-format
4265
  msgid "A total of %d users have received this badge."
4266
  msgstr ""
4267
 
4268
- #: addons/badges/myCRED-addon-badges.php:1408
4269
  msgid "No users has yet earned this badge."
4270
  msgstr ""
4271
 
4272
- #: addons/badges/myCRED-addon-badges.php:1433
4273
  msgid "No connections where removed."
4274
  msgstr ""
4275
 
4276
- #: addons/badges/myCRED-addon-badges.php:1435
4277
  #, php-format
4278
  msgid "%s connections where removed."
4279
  msgstr ""
@@ -4609,7 +4606,6 @@ msgstr ""
4609
  #: addons/sell-content/myCRED-addon-sell-content.php:719
4610
  #: addons/gateway/event-booking/mycred-eventespresso3.php:473
4611
  #: addons/gateway/event-booking/mycred-eventsmanager.php:675
4612
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:703
4613
  #: addons/transfer/includes/mycred-transfer-widgets.php:101
4614
  msgid "Button Label"
4615
  msgstr ""
@@ -4674,8 +4670,6 @@ msgstr ""
4674
  #: addons/gateway/event-booking/mycred-eventespresso3.php:495
4675
  #: addons/gateway/event-booking/mycred-eventsmanager.php:369
4676
  #: addons/gateway/event-booking/mycred-eventsmanager.php:373
4677
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:153
4678
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:156
4679
  msgid "Price"
4680
  msgstr ""
4681
 
@@ -5043,15 +5037,13 @@ msgstr ""
5043
 
5044
  #: addons/gateway/event-booking/mycred-eventespresso3.php:26
5045
  #: addons/gateway/event-booking/mycred-eventsmanager.php:594
5046
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:626
5047
  #: addons/buy-creds/modules/buycred-module-core.php:710
5048
  msgid "Payments"
5049
  msgstr ""
5050
 
5051
  #: addons/gateway/event-booking/mycred-eventespresso3.php:27
5052
  #: addons/gateway/event-booking/mycred-eventsmanager.php:36
5053
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39
5054
- #: addons/buy-creds/modules/buycred-module-pending.php:717
5055
  msgid "Pay Now"
5056
  msgstr ""
5057
 
@@ -5087,7 +5079,6 @@ msgstr ""
5087
 
5088
  #: addons/gateway/event-booking/mycred-eventespresso3.php:442
5089
  #: addons/gateway/event-booking/mycred-eventsmanager.php:580
5090
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:595
5091
  #, php-format
5092
  msgid "How many %s is 1 %s worth?"
5093
  msgstr ""
@@ -5128,7 +5119,6 @@ msgstr ""
5128
 
5129
  #: addons/gateway/event-booking/mycred-eventespresso3.php:510
5130
  #: addons/gateway/event-booking/mycred-eventsmanager.php:625
5131
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:641
5132
  #: addons/gateway/carts/mycred-wpecommerce.php:393
5133
  #: addons/gateway/carts/mycred-woocommerce.php:176
5134
  msgid "Profit Sharing"
@@ -5136,7 +5126,6 @@ msgstr ""
5136
 
5137
  #: addons/gateway/event-booking/mycred-eventespresso3.php:512
5138
  #: addons/gateway/event-booking/mycred-eventsmanager.php:628
5139
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:644
5140
  #: addons/gateway/carts/mycred-wpecommerce.php:397
5141
  #: addons/gateway/carts/mycred-woocommerce.php:178
5142
  msgid "Option to share sales with the product owner. Use zero to disable."
@@ -5175,42 +5164,34 @@ msgid "Message to show visitors (users not logged in) on the payment page."
5175
  msgstr ""
5176
 
5177
  #: addons/gateway/event-booking/mycred-eventsmanager.php:30
5178
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
5179
  msgid "Payment for tickets to %link_with_title%"
5180
  msgstr ""
5181
 
5182
  #: addons/gateway/event-booking/mycred-eventsmanager.php:31
5183
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
5184
  msgid "Ticket refund for %link_with_title%"
5185
  msgstr ""
5186
 
5187
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35
5188
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
5189
  msgid "Pay using your %_plural% balance"
5190
  msgstr ""
5191
 
5192
  #: addons/gateway/event-booking/mycred-eventsmanager.php:37
5193
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
5194
  msgid "Pay"
5195
  msgstr ""
5196
 
5197
  #: addons/gateway/event-booking/mycred-eventsmanager.php:40
5198
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
5199
  msgid "Thank you for your payment!"
5200
  msgstr ""
5201
 
5202
  #: addons/gateway/event-booking/mycred-eventsmanager.php:41
5203
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
5204
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
5205
  msgstr ""
5206
 
5207
  #: addons/gateway/event-booking/mycred-eventsmanager.php:366
5208
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:150
5209
  msgid "Ticket Type"
5210
  msgstr ""
5211
 
5212
  #: addons/gateway/event-booking/mycred-eventsmanager.php:377
5213
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:159
5214
  msgid "Spaces"
5215
  msgstr ""
5216
 
@@ -5228,24 +5209,19 @@ msgid "%s Payments"
5228
  msgstr ""
5229
 
5230
  #: addons/gateway/event-booking/mycred-eventsmanager.php:596
5231
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:628
5232
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
5233
  msgstr ""
5234
 
5235
  #: addons/gateway/event-booking/mycred-eventsmanager.php:597
5236
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:629
5237
  msgid "Single - Users can ONLY pay for tickets using %plural%."
5238
  msgstr ""
5239
 
5240
  #: addons/gateway/event-booking/mycred-eventsmanager.php:598
5241
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:630
5242
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
5243
  msgstr ""
5244
 
5245
  #: addons/gateway/event-booking/mycred-eventsmanager.php:618
5246
  #: addons/gateway/event-booking/mycred-eventsmanager.php:651
5247
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:634
5248
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:667
5249
  msgid "Refunds"
5250
  msgstr ""
5251
 
@@ -5256,89 +5232,45 @@ msgid ""
5256
  msgstr ""
5257
 
5258
  #: addons/gateway/event-booking/mycred-eventsmanager.php:644
5259
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:660
5260
  msgid "Purchases"
5261
  msgstr ""
5262
 
5263
  #: addons/gateway/event-booking/mycred-eventsmanager.php:661
5264
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:689
5265
  msgid "Payment Link Label"
5266
  msgstr ""
5267
 
5268
  #: addons/gateway/event-booking/mycred-eventsmanager.php:664
5269
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:692
5270
  msgid ""
5271
  "The payment link shows / hides the payment form under \"My Bookings\". No "
5272
  "HTML allowed."
5273
  msgstr ""
5274
 
5275
  #: addons/gateway/event-booking/mycred-eventsmanager.php:668
5276
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:696
5277
  msgid "Payment Header"
5278
  msgstr ""
5279
 
5280
  #: addons/gateway/event-booking/mycred-eventsmanager.php:671
5281
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:699
5282
  msgid "Shown on top of the payment form. No HTML allowed."
5283
  msgstr ""
5284
 
5285
  #: addons/gateway/event-booking/mycred-eventsmanager.php:678
5286
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:706
5287
  msgid "The button label for payments. No HTML allowed!"
5288
  msgstr ""
5289
 
5290
  #: addons/gateway/event-booking/mycred-eventsmanager.php:682
5291
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:717
5292
  #: addons/gateway/carts/mycred-wpecommerce.php:404
5293
  msgid "Messages"
5294
  msgstr ""
5295
 
5296
  #: addons/gateway/event-booking/mycred-eventsmanager.php:685
5297
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:720
5298
  msgid "Successful Payments"
5299
  msgstr ""
5300
 
5301
  #: addons/gateway/event-booking/mycred-eventsmanager.php:688
5302
  #: addons/gateway/event-booking/mycred-eventsmanager.php:695
5303
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:723
5304
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:730
5305
  msgid "No HTML allowed!"
5306
  msgstr ""
5307
 
5308
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
5309
- msgid "%plural% Cost"
5310
- msgstr ""
5311
-
5312
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:213
5313
- msgid "Your Balance"
5314
- msgstr ""
5315
-
5316
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:374
5317
- msgid "You can not pay using this gateway."
5318
- msgstr ""
5319
-
5320
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:492
5321
- msgid "Reject"
5322
- msgstr ""
5323
-
5324
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:501
5325
- msgid "Edit/View"
5326
- msgstr ""
5327
-
5328
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:637
5329
- msgid ""
5330
- "The percentage of the paid amount to refund if a user cancels their booking. "
5331
- "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
5332
- msgstr ""
5333
-
5334
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:710
5335
- msgid "Cart & Checkout Cost"
5336
- msgstr ""
5337
-
5338
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:713
5339
- msgid "Label for cost in %plural%"
5340
- msgstr ""
5341
-
5342
  #: addons/gateway/carts/mycred-wpecommerce.php:20
5343
  msgid "Payment for Order: #%order_id%"
5344
  msgstr ""
@@ -5486,7 +5418,7 @@ msgid "You can not use this gateway. Please try a different payment option."
5486
  msgstr ""
5487
 
5488
  #: addons/gateway/carts/mycred-woocommerce.php:319
5489
- #: addons/sell-content/includes/mycred-sell-functions.php:512
5490
  msgid "Insufficient funds."
5491
  msgstr ""
5492
 
@@ -5519,7 +5451,7 @@ msgstr ""
5519
 
5520
  #: addons/transfer/includes/mycred-transfer-widgets.php:113
5521
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
5522
- #: addons/buy-creds/modules/buycred-module-pending.php:549
5523
  #: addons/buy-creds/modules/buycred-module-core.php:1487
5524
  msgid "Recipient"
5525
  msgstr ""
@@ -5672,76 +5604,76 @@ msgstr ""
5672
  msgid "An unknown error occurred. Coupon not used."
5673
  msgstr ""
5674
 
5675
- #: addons/sell-content/includes/mycred-sell-functions.php:503
5676
  #, php-format
5677
  msgctxt "Point type name"
5678
  msgid "You can not pay using %s"
5679
  msgstr ""
5680
 
5681
- #: addons/sell-content/includes/mycred-sell-functions.php:764
5682
  #, php-format
5683
  msgctxt "all post type name"
5684
  msgid "All %s"
5685
  msgstr ""
5686
 
5687
- #: addons/sell-content/includes/mycred-sell-functions.php:768
5688
  #, php-format
5689
  msgctxt "all post type name"
5690
  msgid "%s I manually select"
5691
  msgstr ""
5692
 
5693
- #: addons/sell-content/includes/mycred-sell-functions.php:772
5694
  #, php-format
5695
  msgctxt "%s = post type name"
5696
  msgid "All %s except"
5697
  msgstr ""
5698
 
5699
- #: addons/sell-content/includes/mycred-sell-functions.php:773
5700
  #, php-format
5701
  msgctxt "%s = post type name"
5702
  msgid "Comma separated list of %s IDs to exclude"
5703
  msgstr ""
5704
 
5705
- #: addons/sell-content/includes/mycred-sell-functions.php:776
5706
  #, php-format
5707
  msgctxt "%s = post type name"
5708
  msgid "Only %s"
5709
  msgstr ""
5710
 
5711
- #: addons/sell-content/includes/mycred-sell-functions.php:777
5712
  #, php-format
5713
  msgctxt "%s = post type name"
5714
  msgid "Comma separated list of %s IDs"
5715
  msgstr ""
5716
 
5717
- #: addons/sell-content/includes/mycred-sell-functions.php:789
5718
  #, php-format
5719
  msgctxt "e.g. Only \"Posts\" in \"Categories\""
5720
  msgid "Only %s in %s"
5721
  msgstr ""
5722
 
5723
- #: addons/sell-content/includes/mycred-sell-functions.php:790
5724
- #: addons/sell-content/includes/mycred-sell-functions.php:794
5725
- #: addons/sell-content/includes/mycred-sell-functions.php:800
5726
- #: addons/sell-content/includes/mycred-sell-functions.php:804
5727
  #, php-format
5728
  msgctxt "%s = taxonomy name"
5729
  msgid "Comma separated list of %s slugs"
5730
  msgstr ""
5731
 
5732
- #: addons/sell-content/includes/mycred-sell-functions.php:793
5733
  #, php-format
5734
  msgctxt "e.g. Only \"Posts\" not in \"Categories\""
5735
  msgid "Only %s not in %s"
5736
  msgstr ""
5737
 
5738
- #: addons/sell-content/includes/mycred-sell-functions.php:799
5739
  #, php-format
5740
  msgctxt "e.g. Only \"Posts\" with \"Tags\""
5741
  msgid "Only %s with %s"
5742
  msgstr ""
5743
 
5744
- #: addons/sell-content/includes/mycred-sell-functions.php:803
5745
  #, php-format
5746
  msgctxt "e.g. Only \"Posts\" without \"Tags\""
5747
  msgid "Only %s without %s"
@@ -5759,9 +5691,9 @@ msgstr ""
5759
 
5760
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:204
5761
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
5762
- #: addons/buy-creds/modules/buycred-module-pending.php:270
5763
- #: addons/buy-creds/modules/buycred-module-pending.php:621
5764
- #: addons/buy-creds/modules/buycred-module-pending.php:734
5765
  #: addons/buy-creds/gateways/bank-transfer.php:141
5766
  msgid "Cost"
5767
  msgstr ""
@@ -5901,34 +5833,32 @@ msgstr ""
5901
  msgid "December"
5902
  msgstr ""
5903
 
5904
- #: addons/buy-creds/modules/buycred-module-pending.php:138
5905
  msgctxt "Post Type General Name"
5906
  msgid "Pending Payments"
5907
  msgstr ""
5908
 
5909
- #: addons/buy-creds/modules/buycred-module-pending.php:139
5910
  msgctxt "Post Type Singular Name"
5911
  msgid "Pending Payment"
5912
  msgstr ""
5913
 
5914
- #: addons/buy-creds/modules/buycred-module-pending.php:140
5915
  #: addons/buy-creds/modules/buycred-module-pending.php:142
5916
- #: addons/buy-creds/modules/buycred-module-pending.php:232
5917
- #: addons/buy-creds/modules/buycred-module-pending.php:233
 
5918
  msgid "Pending Payments"
5919
  msgstr ""
5920
 
5921
- #: addons/buy-creds/modules/buycred-module-pending.php:146
5922
  msgid "Edit Pending Payment"
5923
  msgstr ""
5924
 
5925
- #: addons/buy-creds/modules/buycred-module-pending.php:149
5926
- #: addons/buy-creds/modules/buycred-module-pending.php:150
5927
  msgid "Not found in Trash"
5928
  msgstr ""
5929
 
5930
- #: addons/buy-creds/modules/buycred-module-pending.php:180
5931
- #: addons/buy-creds/modules/buycred-module-pending.php:181
5932
  #: addons/buy-creds/modules/buycred-module-pending.php:182
5933
  #: addons/buy-creds/modules/buycred-module-pending.php:183
5934
  #: addons/buy-creds/modules/buycred-module-pending.php:184
@@ -5936,63 +5866,65 @@ msgstr ""
5936
  #: addons/buy-creds/modules/buycred-module-pending.php:186
5937
  #: addons/buy-creds/modules/buycred-module-pending.php:187
5938
  #: addons/buy-creds/modules/buycred-module-pending.php:188
 
 
5939
  msgid "Payment Updated."
5940
  msgstr ""
5941
 
5942
- #: addons/buy-creds/modules/buycred-module-pending.php:216
5943
  msgid "Pending payment successfully credited to account."
5944
  msgstr ""
5945
 
5946
- #: addons/buy-creds/modules/buycred-module-pending.php:218
5947
  msgid "Failed to credit the pending payment to account."
5948
  msgstr ""
5949
 
5950
- #: addons/buy-creds/modules/buycred-module-pending.php:266
5951
- #: addons/buy-creds/modules/buycred-module-pending.php:731
5952
  #: addons/buy-creds/modules/buycred-module-core.php:771
5953
  #: addons/buy-creds/gateways/bank-transfer.php:142
5954
  msgid "Transaction ID"
5955
  msgstr ""
5956
 
5957
- #: addons/buy-creds/modules/buycred-module-pending.php:268
5958
  #: addons/buy-creds/modules/buycred-module-core.php:767
5959
  msgid "Buyer"
5960
  msgstr ""
5961
 
5962
- #: addons/buy-creds/modules/buycred-module-pending.php:271
5963
- #: addons/buy-creds/modules/buycred-module-pending.php:596
5964
- #: addons/buy-creds/modules/buycred-module-pending.php:732
5965
  #: addons/buy-creds/modules/buycred-module-core.php:766
5966
  #: addons/buy-creds/includes/buycred-functions.php:119
5967
  msgid "Gateway"
5968
  msgstr ""
5969
 
5970
- #: addons/buy-creds/modules/buycred-module-pending.php:272
5971
  msgid "Type"
5972
  msgstr ""
5973
 
5974
- #: addons/buy-creds/modules/buycred-module-pending.php:369
5975
- #: addons/buy-creds/modules/buycred-module-pending.php:478
5976
  msgid "Pay Out"
5977
  msgstr ""
5978
 
5979
- #: addons/buy-creds/modules/buycred-module-pending.php:441
5980
  msgid "Pending Payment"
5981
  msgstr ""
5982
 
5983
- #: addons/buy-creds/modules/buycred-module-pending.php:473
5984
  msgid "Save"
5985
  msgstr ""
5986
 
5987
- #: addons/buy-creds/modules/buycred-module-pending.php:479
5988
  msgid "Trash"
5989
  msgstr ""
5990
 
5991
- #: addons/buy-creds/modules/buycred-module-pending.php:543
5992
  msgid "Payer"
5993
  msgstr ""
5994
 
5995
- #: addons/buy-creds/modules/buycred-module-pending.php:627
5996
  #: addons/buy-creds/gateways/bank-transfer.php:209
5997
  #: addons/buy-creds/gateways/bitpay.php:251
5998
  #: addons/buy-creds/gateways/paypal-standard.php:279
@@ -6000,16 +5932,16 @@ msgstr ""
6000
  msgid "Currency"
6001
  msgstr ""
6002
 
6003
- #: addons/buy-creds/modules/buycred-module-pending.php:652
6004
  msgid "Pending request created."
6005
  msgstr ""
6006
 
6007
- #: addons/buy-creds/modules/buycred-module-pending.php:700
6008
  #, php-format
6009
  msgid "Pending payment updated by %s"
6010
  msgstr ""
6011
 
6012
- #: addons/buy-creds/modules/buycred-module-pending.php:798
6013
  msgid "No pending payments found"
6014
  msgstr ""
6015
 
@@ -6467,7 +6399,3 @@ msgid ""
6467
  "Optional text to show user once a transaction has been successfully "
6468
  "completed. This text is shown by Skrill."
6469
  msgstr ""
6470
-
6471
- #. Description of the plugin
6472
- msgid "An adaptive points management system for WordPress powered websites."
6473
- msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
+ "POT-Creation-Date: 2017-08-29 08:43+0000\n"
6
+ "PO-Revision-Date: 2017-08-29 08:43+0000\n"
7
+ "Last-Translator: mycredlabs <gabriel.s@merovingi.com>\n"
8
  "Language-Team: English (United States)\n"
9
  "Language: en-US\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
24
  "X-Poedit-SearchPath-1: .\n"
25
  "X-Loco-Target-Locale: en_US"
26
 
27
+ #: mycred.php:568
28
  #, php-format
29
  msgid "%s Log Import"
30
  msgstr ""
31
 
32
+ #: mycred.php:569
33
  msgid "Import log entries via a CSV file."
34
  msgstr ""
35
 
36
+ #: mycred.php:580
37
  #, php-format
38
  msgid "%s Balance Import"
39
  msgstr ""
40
 
41
+ #: mycred.php:581
42
  msgid "Import balances via a CSV file."
43
  msgstr ""
44
 
45
+ #: mycred.php:592
46
  #, php-format
47
  msgid "%s CubePoints Import"
48
  msgstr ""
49
 
50
+ #: mycred.php:593
51
  msgid "Import CubePoints log entries and / or balances."
52
  msgstr ""
53
 
54
+ #: mycred.php:635 modules/mycred-module-management.php:316
55
+ #: modules/mycred-module-settings.php:425 modules/mycred-module-log.php:463
56
  #: addons/transfer/myCRED-addon-transfer.php:159
57
  #: addons/ranks/myCRED-addon-ranks.php:986
58
+ #: addons/ranks/myCRED-addon-ranks.php:1572
59
+ #: addons/badges/myCRED-addon-badges.php:727
60
  #: addons/gateway/event-booking/mycred-eventsmanager.php:537
61
  msgid "Processing..."
62
  msgstr ""
63
 
64
+ #: mycred.php:636
65
  msgid "Sent"
66
  msgstr ""
67
 
68
+ #: mycred.php:637
69
  msgid "Error - Try Again"
70
  msgstr ""
71
 
72
+ #: mycred.php:812 mycred.php:813
73
  #, php-format
74
  msgid "About %s"
75
  msgstr ""
76
 
77
+ #: mycred.php:821 mycred.php:822
78
  msgid "Awesome People"
79
  msgstr ""
80
 
81
+ #: mycred.php:859 modules/mycred-module-management.php:558
82
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:34
83
  msgid "Balance"
84
  msgstr ""
85
 
86
+ #: mycred.php:926 modules/mycred-module-management.php:473
87
  #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
88
+ #: addons/buy-creds/modules/buycred-module-pending.php:471
89
  msgid "History"
90
  msgstr ""
91
 
92
+ #: mycred.php:997 mycred.php:1018
93
  #: addons/notifications/myCRED-addon-notifications.php:194
94
  #: addons/email-notices/myCRED-addon-email-notices.php:277
95
  #: addons/banking/services/mycred-service-interest.php:477
96
  #: addons/gateway/event-booking/mycred-eventsmanager.php:591
 
97
  msgid "Setup"
98
  msgstr ""
99
 
100
+ #: mycred.php:999 modules/mycred-module-settings.php:21
101
  #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
102
  #: modules/mycred-module-network.php:270
103
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
105
  msgid "Settings"
106
  msgstr ""
107
 
108
+ #: mycred.php:1039
109
  msgid ""
110
  "Make sure to backup your database and files before updating, in case "
111
  "anything goes wrong!"
115
  msgid "This Hook has no settings"
116
  msgstr ""
117
 
118
+ #: abstracts/mycred-abstract-hook.php:293
119
+ #: abstracts/mycred-abstract-hook.php:364 includes/mycred-functions.php:2784
120
  msgid "No limit"
121
  msgstr ""
122
 
123
+ #: abstracts/mycred-abstract-hook.php:294
124
  msgid "/ Day"
125
  msgstr ""
126
 
127
+ #: abstracts/mycred-abstract-hook.php:295
128
  msgid "/ Week"
129
  msgstr ""
130
 
131
+ #: abstracts/mycred-abstract-hook.php:296
132
  msgid "/ Month"
133
  msgstr ""
134
 
135
+ #: abstracts/mycred-abstract-hook.php:297
136
  msgid "in Total"
137
  msgstr ""
138
 
139
+ #: abstracts/mycred-abstract-hook.php:365
140
  msgid "Once every 24 hours"
141
  msgstr ""
142
 
143
+ #: abstracts/mycred-abstract-hook.php:366
144
  msgid "Once every 7 days"
145
  msgstr ""
146
 
147
+ #: abstracts/mycred-abstract-hook.php:367
148
  msgid "Once per day (reset at midnight)"
149
  msgstr ""
150
 
151
+ #: abstracts/mycred-abstract-hook.php:374
152
  #: addons/email-notices/myCRED-addon-email-notices.php:531
153
  #: addons/email-notices/myCRED-addon-email-notices.php:862
154
+ #: addons/badges/myCRED-addon-badges.php:905
155
  #: addons/banking/abstracts/mycred-abstract-service.php:351
156
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
157
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
166
  msgid "Surprise"
167
  msgstr ""
168
 
169
+ #: abstracts/mycred-abstract-module.php:520
170
  #: modules/mycred-module-network.php:218
171
  msgid "click to close"
172
  msgstr ""
173
 
174
+ #: abstracts/mycred-abstract-module.php:521
175
  #: modules/mycred-module-network.php:219
176
  msgid "click to open"
177
  msgstr ""
178
 
179
+ #: abstracts/mycred-abstract-module.php:554
180
  #: modules/mycred-module-network.php:261
181
+ #: addons/email-notices/myCRED-addon-email-notices.php:1556
182
  #: addons/gateway/event-booking/mycred-eventespresso3.php:451
183
  #: addons/buy-creds/modules/buycred-module-core.php:597
184
  msgid "Settings Updated"
213
  msgstr ""
214
 
215
  #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
216
+ #: modules/mycred-module-log.php:896
217
  #: includes/classes/class.query-export.php:263
218
  #: includes/classes/class.query-export.php:399
219
  #: includes/classes/class.query-log.php:892
233
 
234
  #: modules/mycred-module-management.php:237
235
  #: modules/mycred-module-management.php:775 modules/mycred-module-log.php:93
236
+ #: modules/mycred-module-log.php:904
237
  #: includes/classes/class.query-export.php:263
238
  #: includes/classes/class.query-export.php:360
239
  #: includes/classes/class.query-log.php:904
258
  msgstr ""
259
 
260
  #: modules/mycred-module-management.php:315
261
+ #: modules/mycred-module-settings.php:430 modules/mycred-module-log.php:462
262
  #: addons/banking/myCRED-addon-banking.php:204
263
  msgid "Close"
264
  msgstr ""
292
 
293
  #: modules/mycred-module-management.php:583
294
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
295
+ #: addons/buy-creds/modules/buycred-module-pending.php:745
296
  msgid "Cancel"
297
  msgstr ""
298
 
302
  msgstr ""
303
 
304
  #: modules/mycred-module-management.php:747
305
+ #: modules/mycred-module-export.php:432 modules/mycred-module-export.php:480
306
  #: addons/buy-creds/modules/buycred-module-core.php:1374
307
  msgid "Username"
308
  msgstr ""
330
  #: addons/transfer/includes/mycred-transfer-widgets.php:105
331
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
332
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
333
+ #: addons/buy-creds/modules/buycred-module-pending.php:296
334
+ #: addons/buy-creds/modules/buycred-module-pending.php:642
335
+ #: addons/buy-creds/modules/buycred-module-pending.php:760
336
  msgid "Amount"
337
  msgstr ""
338
 
348
  msgid "lowercase without empty spaces"
349
  msgstr ""
350
 
351
+ #: modules/mycred-module-management.php:796 modules/mycred-module-log.php:915
352
  #: addons/gateway/event-booking/mycred-eventespresso3.php:518
353
  msgid "Log Entry"
354
  msgstr ""
406
  msgstr ""
407
 
408
  #: modules/mycred-module-settings.php:431
409
+ msgid "Export %singular% Balances"
410
  msgstr ""
411
 
412
  #: modules/mycred-module-settings.php:432
436
  msgstr ""
437
 
438
  #: modules/mycred-module-settings.php:530 modules/mycred-module-addons.php:330
439
+ #: modules/mycred-module-addons.php:368 modules/mycred-module-log.php:544
440
  #: modules/mycred-module-network.php:241 modules/mycred-module-network.php:276
441
  #: modules/mycred-module-network.php:292
442
  #: includes/importers/mycred-cubepoints.php:305
452
  #: modules/mycred-module-settings.php:544 includes/mycred-setup.php:275
453
  #: addons/gateway/event-booking/mycred-eventespresso3.php:460
454
  #: addons/gateway/event-booking/mycred-eventsmanager.php:658
 
455
  msgid "Labels"
456
  msgstr ""
457
 
463
  #: modules/mycred-module-settings.php:555
464
  #: modules/mycred-module-settings.php:605
465
  #: modules/mycred-module-settings.php:612
466
+ #: modules/mycred-module-settings.php:800
467
+ #: modules/mycred-module-settings.php:806 includes/mycred-setup.php:280
468
  #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
469
  #: includes/mycred-setup.php:340 addons/coupons/myCRED-addon-coupons.php:710
470
  #: addons/coupons/myCRED-addon-coupons.php:717
498
  msgstr ""
499
 
500
  #: modules/mycred-module-settings.php:562 includes/mycred-setup.php:293
501
+ #: addons/email-notices/myCRED-addon-email-notices.php:1415
502
  msgid "Format"
503
  msgstr ""
504
 
592
  msgid "Management"
593
  msgstr ""
594
 
595
+ #: modules/mycred-module-settings.php:678 modules/mycred-module-log.php:427
596
  msgid "Entries"
597
  msgstr ""
598
 
599
  #: modules/mycred-module-settings.php:684
600
  #: modules/mycred-module-settings.php:709
601
+ #: addons/ranks/myCRED-addon-ranks.php:1669
602
+ #: addons/buy-creds/modules/buycred-module-pending.php:477
603
+ #: addons/buy-creds/modules/buycred-module-pending.php:763
604
  msgid "Actions"
605
  msgstr ""
606
 
613
  msgstr ""
614
 
615
  #: modules/mycred-module-settings.php:703
616
+ #: addons/ranks/myCRED-addon-ranks.php:1080
617
+ #: addons/badges/myCRED-addon-badges.php:425
618
  msgid "Users"
619
  msgstr ""
620
 
622
  msgid "Set all to zero"
623
  msgstr ""
624
 
625
+ #: modules/mycred-module-settings.php:712
626
+ msgid "Export Balances"
627
+ msgstr ""
628
+
629
+ #: modules/mycred-module-settings.php:729 includes/mycred-widgets.php:573
630
  #: addons/transfer/myCRED-addon-transfer.php:370
631
  #: addons/sell-content/myCRED-addon-sell-content.php:581
632
  #: addons/transfer/includes/mycred-transfer-widgets.php:121
634
  msgid "Point Types"
635
  msgstr ""
636
 
637
+ #: modules/mycred-module-settings.php:743
638
+ #: modules/mycred-module-settings.php:769
639
+ #: modules/mycred-module-settings.php:799
640
  msgid "Meta Key"
641
  msgstr ""
642
 
643
+ #: modules/mycred-module-settings.php:749
644
+ #: modules/mycred-module-settings.php:775
645
+ #: modules/mycred-module-settings.php:805
646
  #: addons/email-notices/myCRED-addon-email-notices.php:578
647
  #: addons/gateway/carts/mycred-woocommerce.php:155
648
  msgid "Label"
649
  msgstr ""
650
 
651
+ #: modules/mycred-module-settings.php:756
652
+ #: modules/mycred-module-settings.php:782
653
  #: includes/classes/class.query-log.php:1019
654
  #: includes/classes/class.query-log.php:1622
655
  #: addons/banking/services/mycred-service-payouts.php:472
 
656
  msgid "Delete"
657
  msgstr ""
658
 
659
+ #: modules/mycred-module-settings.php:795
660
  msgid "Add New Type"
661
  msgstr ""
662
 
663
+ #: modules/mycred-module-settings.php:811
664
  msgid ""
665
  "The meta key must be lowercase and only contain letters or underscores. All "
666
  "other characters will be deleted!"
667
  msgstr ""
668
 
669
+ #: modules/mycred-module-settings.php:823
670
  #: addons/gateway/event-booking/mycred-eventespresso3.php:551
671
  #: addons/buy-creds/modules/buycred-module-core.php:650
672
  msgid "Update Settings"
673
  msgstr ""
674
 
675
+ #: modules/mycred-module-settings.php:836
676
  msgid "Identify users by"
677
  msgstr ""
678
 
679
+ #: modules/mycred-module-settings.php:842
680
  msgid "User ID"
681
  msgstr ""
682
 
683
+ #: modules/mycred-module-settings.php:843
684
  msgid "User Email"
685
  msgstr ""
686
 
687
+ #: modules/mycred-module-settings.php:844
688
  msgid "User Login"
689
  msgstr ""
690
 
691
+ #: modules/mycred-module-settings.php:852
692
  msgid ""
693
  "Use ID if you intend to use this export as a backup of your current site "
694
  "while Email is recommended if you want to export to a different site."
695
  msgstr ""
696
 
697
+ #: modules/mycred-module-settings.php:857
698
  msgid "Import Log Entry"
699
  msgstr ""
700
 
701
+ #: modules/mycred-module-settings.php:859
702
  #, php-format
703
  msgid ""
704
  "Optional log entry to use if you intend to import this file in a different "
705
  "%s installation."
706
  msgstr ""
707
 
708
+ #: modules/mycred-module-settings.php:866 modules/mycred-module-export.php:268
709
+ #: modules/mycred-module-export.php:295 modules/mycred-module-export.php:345
710
  msgid "Export"
711
  msgstr ""
712
 
811
  msgid "Log"
812
  msgstr ""
813
 
814
+ #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:892
815
  #: includes/classes/class.query-export.php:263
816
  #: includes/classes/class.query-export.php:371
817
  #: includes/classes/class.query-log.php:891
852
  msgstr[0] ""
853
  msgstr[1] ""
854
 
855
+ #: modules/mycred-module-log.php:461
856
  msgid "Edit Log Entry"
857
  msgstr ""
858
 
859
+ #: modules/mycred-module-log.php:465
860
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
861
  msgstr ""
862
 
863
+ #: modules/mycred-module-log.php:466
864
  msgid "The log entry was successfully updated."
865
  msgstr ""
866
 
867
+ #: modules/mycred-module-log.php:467
868
  msgid "The selected log entry could not be deleted."
869
  msgstr ""
870
 
871
+ #: modules/mycred-module-log.php:496
872
  msgid "Search results for"
873
  msgstr ""
874
 
875
+ #: modules/mycred-module-log.php:501
876
  #, php-format
877
  msgctxt "e.g. Log entries from April 12th 2016"
878
  msgid "Log entries from %s"
879
  msgstr ""
880
 
881
+ #: modules/mycred-module-log.php:544
882
  #, php-format
883
  msgid "%s Log"
884
  msgstr ""
885
 
886
+ #: modules/mycred-module-log.php:554
887
  msgid ""
888
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
889
  "Certain hooks and shortcodes will not work correctly!"
890
  msgstr ""
891
 
892
+ #: modules/mycred-module-log.php:652
893
  #, php-format
894
  msgid "My %s History"
895
  msgstr ""
896
 
897
+ #: modules/mycred-module-log.php:911
898
  msgid "Original Entry"
899
  msgstr ""
900
 
901
+ #: modules/mycred-module-log.php:923
902
  msgid "Delete Entry"
903
  msgstr ""
904
 
905
+ #: modules/mycred-module-log.php:928
906
  msgid "Update Entry"
907
  msgstr ""
908
 
923
  msgstr ""
924
 
925
  #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:280
926
+ #: modules/mycred-module-network.php:296 modules/mycred-module-export.php:386
927
  #: addons/sell-content/myCRED-addon-sell-content.php:481
928
  msgid "Enabled"
929
  msgstr ""
947
  msgstr ""
948
 
949
  #: modules/mycred-module-network.php:285 modules/mycred-module-network.php:301
950
+ #: modules/mycred-module-export.php:385 plugins/mycred-hook-affiliatewp.php:362
951
  #: addons/sell-content/myCRED-addon-sell-content.php:396
952
  #: addons/sell-content/myCRED-addon-sell-content.php:480
953
  #: addons/buy-creds/modules/buycred-module-core.php:1127
975
  msgid "Save Network Settings"
976
  msgstr ""
977
 
978
+ #: modules/mycred-module-export.php:317 modules/mycred-module-export.php:364
979
  #: includes/classes/class.query-log.php:1687
980
  msgid ""
981
  "Log entries are exported to a CSV file and depending on the number of "
982
  "entries selected, the process may take a few seconds."
983
  msgstr ""
984
 
985
+ #: modules/mycred-module-export.php:390
986
  msgid "Make both format options available."
987
  msgstr ""
988
 
989
+ #: modules/mycred-module-export.php:392
990
  msgid "Exports"
991
  msgstr ""
992
 
993
+ #: modules/mycred-module-export.php:398
994
  msgid "Front End Exports"
995
  msgstr ""
996
 
997
+ #: modules/mycred-module-export.php:414 modules/mycred-module-export.php:462
998
  msgid "Export Format"
999
  msgstr ""
1000
 
1001
+ #: modules/mycred-module-export.php:430 modules/mycred-module-export.php:478
1002
  msgid "File Name"
1003
  msgstr ""
1004
 
1005
+ #: modules/mycred-module-export.php:432 modules/mycred-module-export.php:480
1006
  #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
1007
  #: includes/importers/mycred-cubepoints.php:353
1008
  #: includes/classes/class.query-export.php:263
1009
  #: includes/classes/class.query-export.php:391
1010
+ #: addons/ranks/myCRED-addon-ranks.php:1083
1011
+ #: addons/ranks/myCRED-addon-ranks.php:1251
1012
+ #: addons/ranks/myCRED-addon-ranks.php:1258
1013
  #: addons/email-notices/myCRED-addon-email-notices.php:280
1014
  #: addons/email-notices/myCRED-addon-email-notices.php:585
1015
  #: addons/coupons/myCRED-addon-coupons.php:256
1016
  #: addons/coupons/myCRED-addon-coupons.php:520
1017
  #: addons/gateway/event-booking/mycred-eventespresso3.php:483
1018
  #: addons/gateway/event-booking/mycred-eventsmanager.php:604
 
1019
  #: addons/gateway/carts/mycred-wpecommerce.php:383
1020
  #: addons/gateway/carts/mycred-woocommerce.php:125
1021
  #: addons/gateway/carts/mycred-woocommerce.php:166
1022
+ #: addons/buy-creds/modules/buycred-module-pending.php:584
1023
+ #: addons/buy-creds/modules/buycred-module-pending.php:762
1024
  msgid "Point Type"
1025
  msgstr ""
1026
 
1027
+ #: modules/mycred-module-export.php:439
1028
  msgid ""
1029
  "If enabled, users will only be able to export their own log entries! Export "
1030
  "tools becomes available wherever you are using the mycred_history shortcode "
1031
  "or in the users profile."
1032
  msgstr ""
1033
 
1034
+ #: modules/mycred-module-export.php:446
1035
  msgid "Back End Exports"
1036
  msgstr ""
1037
 
1038
+ #: modules/mycred-module-export.php:487
1039
  msgid ""
1040
  "Raw format should be used when you intend to use the export tool to backup "
1041
  "or import entries in another installation. Formatted exports reflect what "
1097
 
1098
  #: modules/mycred-module-buddypress.php:404
1099
  #: modules/mycred-module-buddypress.php:411
1100
+ #: addons/badges/myCRED-addon-badges.php:1165
1101
+ #: addons/badges/myCRED-addon-badges.php:1199
1102
  #: addons/gateway/carts/mycred-woocommerce.php:147
1103
  msgid "Do not show"
1104
  msgstr ""
1105
 
1106
  #: modules/mycred-module-buddypress.php:405
1107
+ #: addons/badges/myCRED-addon-badges.php:1166
1108
  msgid "Include in Profile Header"
1109
  msgstr ""
1110
 
1111
  #: modules/mycred-module-buddypress.php:406
1112
+ #: addons/ranks/myCRED-addon-ranks.php:1482
1113
+ #: addons/badges/myCRED-addon-badges.php:1167
1114
  msgid "Include under the \"Profile\" tab"
1115
  msgstr ""
1116
 
1117
  #: modules/mycred-module-buddypress.php:407
1118
+ #: addons/badges/myCRED-addon-badges.php:1168
1119
  msgid "Include under the \"Profile\" tab and Profile Header"
1120
  msgstr ""
1121
 
1132
  msgstr ""
1133
 
1134
  #: modules/mycred-module-buddypress.php:453
1135
+ #: addons/ranks/myCRED-addon-ranks.php:1497
1136
+ #: addons/ranks/myCRED-addon-ranks.php:1538
1137
  #: addons/notifications/myCRED-addon-notifications.php:198
1138
  msgid "Template"
1139
  msgstr ""
1225
  #: plugins/mycred-hook-buddypress-media.php:348
1226
  #: plugins/mycred-hook-wp-favorite-posts.php:228
1227
  #: plugins/mycred-hook-wp-favorite-posts.php:240
1228
+ #: plugins/mycred-hook-contact-form7.php:172
1229
  #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:485
1230
  #: plugins/mycred-hook-bbPress.php:536 plugins/mycred-hook-bbPress.php:560
1231
+ #: plugins/mycred-hook-woocommerce.php:514
1232
  #: includes/shortcodes/mycred_hook_table.php:79
1233
  msgid "Limit"
1234
  msgstr ""
1274
  #: plugins/mycred-hook-buddypress-media.php:372
1275
  #: plugins/mycred-hook-buddypress-media.php:390
1276
  #: plugins/mycred-hook-buddypress-media.php:408
1277
+ #: plugins/mycred-hook-contact-form7.php:178
1278
  #: plugins/mycred-hook-jetpack.php:549 plugins/mycred-hook-jetpack.php:567
1279
  #: plugins/mycred-hook-bbPress.php:449 plugins/mycred-hook-bbPress.php:467
1280
  #: plugins/mycred-hook-bbPress.php:491 plugins/mycred-hook-bbPress.php:518
1281
  #: plugins/mycred-hook-bbPress.php:542 plugins/mycred-hook-bbPress.php:566
1282
  #: plugins/mycred-hook-bbPress.php:593
1283
+ #: addons/badges/myCRED-addon-badges.php:974
1284
  msgid "Log template"
1285
  msgstr ""
1286
 
1334
  #: plugins/mycred-hook-wp-favorite-posts.php:256
1335
  #: plugins/mycred-hook-wp-favorite-posts.php:274
1336
  #: plugins/mycred-hook-wp-favorite-posts.php:289
1337
+ #: plugins/mycred-hook-contact-form7.php:179
1338
  #: plugins/mycred-hook-jetpack.php:550 plugins/mycred-hook-jetpack.php:568
1339
  #: plugins/mycred-hook-bbPress.php:450 plugins/mycred-hook-bbPress.php:468
1340
  #: plugins/mycred-hook-bbPress.php:492 plugins/mycred-hook-bbPress.php:519
1341
  #: plugins/mycred-hook-bbPress.php:543 plugins/mycred-hook-bbPress.php:567
1342
+ #: plugins/mycred-hook-bbPress.php:594 plugins/mycred-hook-woocommerce.php:521
1343
  #: plugins/mycred-hook-badgeOS.php:328 plugins/mycred-hook-badgeOS.php:346
1344
  #: addons/transfer/includes/mycred-transfer-widgets.php:102
1345
  #: addons/transfer/includes/mycred-transfer-widgets.php:106
1363
  #: plugins/mycred-hook-wp-polls.php:177
1364
  #: plugins/mycred-hook-wp-favorite-posts.php:273
1365
  #: plugins/mycred-hook-wp-favorite-posts.php:288
1366
+ #: plugins/mycred-hook-woocommerce.php:520 plugins/mycred-hook-badgeOS.php:144
1367
  #: plugins/mycred-hook-badgeOS.php:146 plugins/mycred-hook-badgeOS.php:157
1368
  #: plugins/mycred-hook-badgeOS.php:327 plugins/mycred-hook-badgeOS.php:345
1369
  #: addons/coupons/myCRED-addon-coupons.php:764
1431
  msgstr ""
1432
 
1433
  #: plugins/mycred-hook-gravityforms.php:130
1434
+ #: plugins/mycred-hook-contact-form7.php:134
1435
  msgid "No forms found."
1436
  msgstr ""
1437
 
1438
  #: plugins/mycred-hook-gravityforms.php:156
1439
+ #: plugins/mycred-hook-contact-form7.php:162
1440
  #, php-format
1441
  msgid "Form: %s"
1442
  msgstr ""
1486
 
1487
  #: plugins/mycred-hook-buddypress.php:310
1488
  #: addons/gateway/event-booking/mycred-eventsmanager.php:692
 
1489
  #: addons/gateway/carts/mycred-wpecommerce.php:415
1490
  msgid "Insufficient Funds"
1491
  msgstr ""
1663
  #: includes/shortcodes/mycred_exchange.php:75
1664
  #: addons/gateway/event-booking/mycred-eventespresso3.php:498
1665
  #: addons/gateway/event-booking/mycred-eventsmanager.php:634
 
1666
  #: addons/gateway/carts/mycred-wpecommerce.php:389
1667
  #: addons/gateway/carts/mycred-woocommerce.php:136
1668
  msgid "Exchange Rate"
1843
  msgid "Leave empty for no rewards"
1844
  msgstr ""
1845
 
1846
+ #: plugins/mycred-hook-woocommerce.php:388
1847
  msgid "WooCommerce Product Reviews"
1848
  msgstr ""
1849
 
1850
+ #: plugins/mycred-hook-woocommerce.php:389
1851
  msgid ""
1852
  "Awards %_plural% for users leaving reviews on your WooCommerce products."
1853
  msgstr ""
1961
  msgstr ""
1962
 
1963
  #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
1964
+ #: addons/email-notices/myCRED-addon-email-notices.php:1445
1965
  msgid "Advanced"
1966
  msgstr ""
1967
 
2153
  msgstr ""
2154
 
2155
  #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
2156
+ #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1373
2157
  #: addons/gateway/carts/mycred-woocommerce.php:96
2158
  #: addons/transfer/includes/mycred-transfer-widgets.php:91
2159
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:203
2283
  msgid "Points"
2284
  msgstr ""
2285
 
2286
+ #: includes/mycred-functions.php:472
2287
  msgid "Deleted"
2288
  msgstr ""
2289
 
2290
+ #: includes/mycred-functions.php:613
2291
  msgid "Deleted Item"
2292
  msgstr ""
2293
 
2294
+ #: includes/mycred-functions.php:677
2295
  #: addons/email-notices/myCRED-addon-email-notices.php:864
2296
  #: addons/gateway/carts/mycred-wpecommerce.php:370
2297
  msgid "General"
2298
  msgstr ""
2299
 
2300
+ #: includes/mycred-functions.php:684
2301
  msgid "User Related"
2302
  msgstr ""
2303
 
2304
+ #: includes/mycred-functions.php:691
2305
  msgid "Post Related"
2306
  msgstr ""
2307
 
2308
+ #: includes/mycred-functions.php:698
2309
  msgid "Comment Related"
2310
  msgstr ""
2311
 
2312
+ #: includes/mycred-functions.php:705
2313
  msgid "Widget Related"
2314
  msgstr ""
2315
 
2316
+ #: includes/mycred-functions.php:712
2317
  msgid "Amount Related"
2318
  msgstr ""
2319
 
2320
+ #: includes/mycred-functions.php:719
2321
  msgid "Video Related"
2322
  msgstr ""
2323
 
2324
+ #: includes/mycred-functions.php:730
2325
  msgid "and"
2326
  msgstr ""
2327
 
2328
+ #: includes/mycred-functions.php:732
2329
  msgid "Available Template Tags:"
2330
  msgstr ""
2331
 
2332
+ #: includes/mycred-functions.php:2790
2333
  msgid "in total"
2334
  msgstr ""
2335
 
2336
+ #: includes/mycred-functions.php:2792
2337
  msgid "per day"
2338
  msgstr ""
2339
 
2340
+ #: includes/mycred-functions.php:2795
2341
  msgid "per week"
2342
  msgstr ""
2343
 
2344
+ #: includes/mycred-functions.php:2798
2345
  msgid "per month"
2346
  msgstr ""
2347
 
2348
+ #: includes/mycred-functions.php:2800 includes/mycred-functions.php:2806
2349
  #, php-format
2350
  msgid "Maximum once"
2351
  msgid_plural "Maximum %d times"
2352
  msgstr[0] ""
2353
  msgstr[1] ""
2354
 
2355
+ #: includes/mycred-functions.php:2828
2356
  #, php-format
2357
  msgctxt "e.g. 5 th"
2358
  msgid "%d th"
2359
  msgstr ""
2360
 
2361
+ #: includes/mycred-functions.php:2832
2362
  #, php-format
2363
  msgctxt "e.g. 1 st"
2364
  msgid "%d st"
2365
  msgstr ""
2366
 
2367
+ #: includes/mycred-functions.php:2833
2368
  #, php-format
2369
  msgctxt "e.g. 2 nd"
2370
  msgid "%d nd"
2371
  msgstr ""
2372
 
2373
+ #: includes/mycred-functions.php:2834
2374
  #, php-format
2375
  msgctxt "e.g. 3 rd"
2376
  msgid "%d rd"
3220
  #: addons/transfer/myCRED-addon-transfer.php:456
3221
  #: addons/sell-content/myCRED-addon-sell-content.php:685
3222
  #: addons/gateway/event-booking/mycred-eventsmanager.php:641
 
3223
  msgid "Log Templates"
3224
  msgstr ""
3225
 
3295
  #: addons/ranks/myCRED-addon-ranks.php:339
3296
  #: addons/ranks/myCRED-addon-ranks.php:340
3297
  #: addons/ranks/myCRED-addon-ranks.php:724
3298
+ #: addons/ranks/myCRED-addon-ranks.php:1363
3299
+ #: addons/ranks/myCRED-addon-ranks.php:1658
3300
  msgid "Ranks"
3301
  msgstr ""
3302
 
3335
  msgstr ""
3336
 
3337
  #: addons/ranks/myCRED-addon-ranks.php:230
3338
+ #: addons/ranks/myCRED-addon-ranks.php:1379
3339
  msgid "Rank Logo"
3340
  msgstr ""
3341
 
3352
  msgstr ""
3353
 
3354
  #: addons/ranks/myCRED-addon-ranks.php:234
3355
+ #: addons/ranks/myCRED-addon-ranks.php:1290
3356
  msgid "No ranks found"
3357
  msgstr ""
3358
 
3395
  msgid "Are you sure you want to re-assign user ranks?"
3396
  msgstr ""
3397
 
3398
+ #: addons/ranks/myCRED-addon-ranks.php:1077
3399
+ #: addons/ranks/myCRED-addon-ranks.php:1178
3400
  msgid "Rank Title"
3401
  msgstr ""
3402
 
3403
+ #: addons/ranks/myCRED-addon-ranks.php:1078
3404
  msgid "Logo"
3405
  msgstr ""
3406
 
3407
+ #: addons/ranks/myCRED-addon-ranks.php:1079
3408
+ #: addons/badges/myCRED-addon-badges.php:853
3409
+ #: addons/badges/myCRED-addon-badges.php:854
3410
  msgid "Requirement"
3411
  msgstr ""
3412
 
3413
+ #: addons/ranks/myCRED-addon-ranks.php:1105
3414
  msgid "No Logo Set"
3415
  msgstr ""
3416
 
3417
+ #: addons/ranks/myCRED-addon-ranks.php:1120
3418
+ #: addons/ranks/myCRED-addon-ranks.php:1125
3419
  msgid "Any Value"
3420
  msgstr ""
3421
 
3422
+ #: addons/ranks/myCRED-addon-ranks.php:1122
3423
  #: addons/buy-creds/modules/buycred-module-core.php:345
3424
  msgid "Minimum %plural%"
3425
  msgstr ""
3426
 
3427
+ #: addons/ranks/myCRED-addon-ranks.php:1127
3428
  msgid "Maximum %plural%"
3429
  msgstr ""
3430
 
3431
+ #: addons/ranks/myCRED-addon-ranks.php:1193
3432
  msgid "Rank Setup"
3433
  msgstr ""
3434
 
3435
+ #: addons/ranks/myCRED-addon-ranks.php:1234
3436
  msgid "Minimum Balance Requirement"
3437
  msgstr ""
3438
 
3439
+ #: addons/ranks/myCRED-addon-ranks.php:1240
3440
  msgid "Maximum Balance Requirement"
3441
  msgstr ""
3442
 
3443
+ #: addons/ranks/myCRED-addon-ranks.php:1279
3444
+ #: addons/ranks/myCRED-addon-ranks.php:1280
3445
  msgid "Not Set"
3446
  msgstr ""
3447
 
3448
+ #: addons/ranks/myCRED-addon-ranks.php:1370
3449
  msgid "Rank Features"
3450
  msgstr ""
3451
 
3452
+ #: addons/ranks/myCRED-addon-ranks.php:1376
3453
  msgid "%plural% requirement"
3454
  msgstr ""
3455
 
3456
+ #: addons/ranks/myCRED-addon-ranks.php:1382
3457
  msgid "Content"
3458
  msgstr ""
3459
 
3460
+ #: addons/ranks/myCRED-addon-ranks.php:1385
3461
  msgid "Excerpt"
3462
  msgstr ""
3463
 
3464
+ #: addons/ranks/myCRED-addon-ranks.php:1388
3465
  msgid "Comments"
3466
  msgstr ""
3467
 
3468
+ #: addons/ranks/myCRED-addon-ranks.php:1391
3469
  msgid "Page Attributes"
3470
  msgstr ""
3471
 
3472
+ #: addons/ranks/myCRED-addon-ranks.php:1394
3473
  msgid "Custom Fields"
3474
  msgstr ""
3475
 
3476
+ #: addons/ranks/myCRED-addon-ranks.php:1399
3477
  msgid "Rank Post Type"
3478
  msgstr ""
3479
 
3480
+ #: addons/ranks/myCRED-addon-ranks.php:1402
3481
  msgid "Make Ranks Public"
3482
  msgstr ""
3483
 
3484
+ #: addons/ranks/myCRED-addon-ranks.php:1406
3485
  msgid "Rank SLUG"
3486
  msgstr ""
3487
 
3488
+ #: addons/ranks/myCRED-addon-ranks.php:1408
3489
  msgid ""
3490
  "If you have selected to make Ranks public, you can select what rank archive "
3491
  "URL slug you want to use. Ignored if Ranks are not set to be public."
3492
  msgstr ""
3493
 
3494
+ #: addons/ranks/myCRED-addon-ranks.php:1411
3495
  msgid "Display Order"
3496
  msgstr ""
3497
 
3498
+ #: addons/ranks/myCRED-addon-ranks.php:1417
3499
  msgid "Ascending - Lowest rank to highest"
3500
  msgstr ""
3501
 
3502
+ #: addons/ranks/myCRED-addon-ranks.php:1418
3503
  msgid "Descending - Highest rank to lowest"
3504
  msgstr ""
3505
 
3506
+ #: addons/ranks/myCRED-addon-ranks.php:1429
3507
  msgid "Option to set in which order Ranks should be shown on the archive page."
3508
  msgstr ""
3509
 
3510
+ #: addons/ranks/myCRED-addon-ranks.php:1436
3511
  msgid "Rank Behaviour"
3512
  msgstr ""
3513
 
3514
+ #: addons/ranks/myCRED-addon-ranks.php:1441
3515
  msgid "Based on Current Balances"
3516
  msgstr ""
3517
 
3518
+ #: addons/ranks/myCRED-addon-ranks.php:1443
3519
  msgid ""
3520
  "Users can be promoted or demoted depending on where their balance fits in "
3521
  "amongst your ranks."
3522
  msgstr ""
3523
 
3524
+ #: addons/ranks/myCRED-addon-ranks.php:1449
3525
  msgid "Based on Total Balances"
3526
  msgstr ""
3527
 
3528
+ #: addons/ranks/myCRED-addon-ranks.php:1451
3529
  msgid ""
3530
  "Users can only be promoted and gain higher ranks even if their balance "
3531
  "decreases."
3532
  msgstr ""
3533
 
3534
+ #: addons/ranks/myCRED-addon-ranks.php:1458
3535
  msgid "Tools"
3536
  msgstr ""
3537
 
3538
+ #: addons/ranks/myCRED-addon-ranks.php:1459
3539
  msgid ""
3540
  "Use this button to calculate or recalculate each individual users total "
3541
  "balance if you think your users total balances are incorrect, or if you "
3542
  "switch from Ranks being based on users current balance to total balance."
3543
  msgstr ""
3544
 
3545
+ #: addons/ranks/myCRED-addon-ranks.php:1460
3546
  msgid "Calculate Totals"
3547
  msgstr ""
3548
 
3549
+ #: addons/ranks/myCRED-addon-ranks.php:1464
3550
+ #: addons/badges/myCRED-addon-badges.php:1155
3551
  msgid "Third-party Integrations"
3552
  msgstr ""
3553
 
3554
+ #: addons/ranks/myCRED-addon-ranks.php:1480
3555
+ #: addons/ranks/myCRED-addon-ranks.php:1521
3556
  msgid "Do not show."
3557
  msgstr ""
3558
 
3559
+ #: addons/ranks/myCRED-addon-ranks.php:1481
3560
  msgid "Include in Profile Header."
3561
  msgstr ""
3562
 
3563
+ #: addons/ranks/myCRED-addon-ranks.php:1483
3564
  msgid "Include under the \"Profile\" tab and Profile Header."
3565
  msgstr ""
3566
 
3567
+ #: addons/ranks/myCRED-addon-ranks.php:1499
3568
+ #: addons/ranks/myCRED-addon-ranks.php:1540
3569
  msgid ""
3570
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3571
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3572
  msgstr ""
3573
 
3574
+ #: addons/ranks/myCRED-addon-ranks.php:1503
3575
+ #: addons/ranks/myCRED-addon-ranks.php:1544
3576
+ #: addons/badges/myCRED-addon-badges.php:1187
3577
+ #: addons/badges/myCRED-addon-badges.php:1221
3578
  msgid "Not installed"
3579
  msgstr ""
3580
 
3581
+ #: addons/ranks/myCRED-addon-ranks.php:1522
3582
  msgid "Include in Topic Replies"
3583
  msgstr ""
3584
 
3585
+ #: addons/ranks/myCRED-addon-ranks.php:1523
3586
+ #: addons/badges/myCRED-addon-badges.php:1200
3587
  msgid "Include in Profile"
3588
  msgstr ""
3589
 
3590
+ #: addons/ranks/myCRED-addon-ranks.php:1524
3591
  msgid "Include in Topic Replies and Profile"
3592
  msgstr ""
3593
 
3594
+ #: addons/ranks/myCRED-addon-ranks.php:1550
3595
+ #: addons/email-notices/myCRED-addon-email-notices.php:1466
3596
+ #: addons/badges/myCRED-addon-badges.php:1227
3597
  #: addons/buy-creds/modules/buycred-module-core.php:460
3598
  msgid "Available Shortcodes"
3599
  msgstr ""
3600
 
3601
+ #: addons/ranks/myCRED-addon-ranks.php:1661
3602
  msgid "User Meta Key"
3603
  msgstr ""
3604
 
3605
+ #: addons/ranks/myCRED-addon-ranks.php:1665
3606
  msgid "No. of ranks"
3607
  msgstr ""
3608
 
3609
+ #: addons/ranks/myCRED-addon-ranks.php:1670
3610
  msgid "Remove All Ranks"
3611
  msgstr ""
3612
 
3613
+ #: addons/ranks/myCRED-addon-ranks.php:1670
3614
  msgid "Assign Ranks to Users"
3615
  msgstr ""
3616
 
3796
  msgstr ""
3797
 
3798
  #: addons/email-notices/myCRED-addon-email-notices.php:610
3799
+ #: addons/email-notices/myCRED-addon-email-notices.php:1477
3800
  msgid "Senders Name:"
3801
  msgstr ""
3802
 
3803
  #: addons/email-notices/myCRED-addon-email-notices.php:614
3804
+ #: addons/email-notices/myCRED-addon-email-notices.php:1483
3805
  msgid "Senders Email:"
3806
  msgstr ""
3807
 
3938
  msgid "user is promoted"
3939
  msgstr ""
3940
 
3941
+ #: addons/email-notices/myCRED-addon-email-notices.php:1410
3942
  #: addons/coupons/myCRED-addon-coupons.php:114
3943
  msgid "Email Notices"
3944
  msgstr ""
3945
 
3946
+ #: addons/email-notices/myCRED-addon-email-notices.php:1418
3947
  msgid "Plain Text"
3948
  msgstr ""
3949
 
3950
+ #: addons/email-notices/myCRED-addon-email-notices.php:1426
3951
  #: addons/banking/services/mycred-service-payouts.php:825
3952
  msgid "Schedule"
3953
  msgstr ""
3954
 
3955
+ #: addons/email-notices/myCRED-addon-email-notices.php:1430
3956
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
3957
  msgstr ""
3958
 
3959
+ #: addons/email-notices/myCRED-addon-email-notices.php:1433
3960
  msgid "Send emails immediately"
3961
  msgstr ""
3962
 
3963
+ #: addons/email-notices/myCRED-addon-email-notices.php:1436
3964
  msgid "Send emails once an hour"
3965
  msgstr ""
3966
 
3967
+ #: addons/email-notices/myCRED-addon-email-notices.php:1439
3968
  msgid "Send emails once a day"
3969
  msgstr ""
3970
 
3971
+ #: addons/email-notices/myCRED-addon-email-notices.php:1448
3972
  msgid "Filter Email Subjects"
3973
  msgstr ""
3974
 
3975
+ #: addons/email-notices/myCRED-addon-email-notices.php:1451
3976
  msgid "Filter Email Body"
3977
  msgstr ""
3978
 
3979
+ #: addons/email-notices/myCRED-addon-email-notices.php:1460
3980
  msgid ""
3981
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
3982
  "use a SMTP plugin for emails."
3983
  msgstr ""
3984
 
3985
+ #: addons/email-notices/myCRED-addon-email-notices.php:1473
3986
  msgid "Defaults"
3987
  msgstr ""
3988
 
3989
+ #: addons/email-notices/myCRED-addon-email-notices.php:1489
3990
  msgid "Reply-To:"
3991
  msgstr ""
3992
 
3993
+ #: addons/email-notices/myCRED-addon-email-notices.php:1497
3994
  msgid "Default Email Content"
3995
  msgstr ""
3996
 
3997
+ #: addons/email-notices/myCRED-addon-email-notices.php:1499
3998
  msgid "Default email content."
3999
  msgstr ""
4000
 
4001
+ #: addons/email-notices/myCRED-addon-email-notices.php:1506
4002
  msgid "Default CSS Styling"
4003
  msgstr ""
4004
 
4005
+ #: addons/email-notices/myCRED-addon-email-notices.php:1508
4006
  msgid ""
4007
  "Default email CSS styling. Note that if you intend to send HTML emails, you "
4008
  "should use inline CSS styling for best results."
4009
  msgstr ""
4010
 
4011
+ #: addons/email-notices/myCRED-addon-email-notices.php:1606
4012
  msgid "Unsubscribe"
4013
  msgstr ""
4014
 
4015
+ #: addons/email-notices/myCRED-addon-email-notices.php:1607
4016
  msgid "Email Notice"
4017
  msgstr ""
4018
 
4019
+ #: addons/email-notices/myCRED-addon-email-notices.php:1628
4020
  msgid "There are no email notifications yet."
4021
  msgstr ""
4022
 
4023
+ #: addons/email-notices/myCRED-addon-email-notices.php:1635
4024
+ #: addons/buy-creds/modules/buycred-module-pending.php:517
4025
  msgid "Save Changes"
4026
  msgstr ""
4027
 
4058
  #: addons/badges/myCRED-addon-badges.php:160
4059
  #: addons/badges/myCRED-addon-badges.php:295
4060
  #: addons/badges/myCRED-addon-badges.php:296
4061
+ #: addons/badges/myCRED-addon-badges.php:1152
4062
+ #: addons/badges/myCRED-addon-badges.php:1281
4063
+ #: addons/badges/myCRED-addon-badges.php:1284
4064
  msgid "Badges"
4065
  msgstr ""
4066
 
4110
  msgid "Badge Saved."
4111
  msgstr ""
4112
 
4113
+ #: addons/badges/myCRED-addon-badges.php:421
4114
+ #: addons/badges/myCRED-addon-badges.php:505
4115
  msgid "Badge Name"
4116
  msgstr ""
4117
 
4118
+ #: addons/badges/myCRED-addon-badges.php:422
4119
  msgid "Default Image"
4120
  msgstr ""
4121
 
4122
+ #: addons/badges/myCRED-addon-badges.php:423
4123
  msgid "First Level"
4124
  msgstr ""
4125
 
4126
+ #: addons/badges/myCRED-addon-badges.php:424
4127
  msgid "Requirements"
4128
  msgstr ""
4129
 
4130
+ #: addons/badges/myCRED-addon-badges.php:535
4131
+ #: addons/badges/myCRED-addon-badges.php:826
4132
  msgid "Add Level"
4133
  msgstr ""
4134
 
4135
+ #: addons/badges/myCRED-addon-badges.php:536
4136
+ #: addons/badges/myCRED-addon-badges.php:827
4137
  msgid "Remove Level"
4138
  msgstr ""
4139
 
4140
+ #: addons/badges/myCRED-addon-badges.php:537
4141
+ #: addons/badges/myCRED-addon-badges.php:780
4142
+ #: addons/badges/myCRED-addon-badges.php:843
4143
+ #: addons/badges/myCRED-addon-badges.php:848
4144
  msgid "Set Image"
4145
  msgstr ""
4146
 
4147
+ #: addons/badges/myCRED-addon-badges.php:538
4148
+ #: addons/badges/myCRED-addon-badges.php:780
4149
+ #: addons/badges/myCRED-addon-badges.php:848
4150
  msgid "Change Image"
4151
  msgstr ""
4152
 
4153
+ #: addons/badges/myCRED-addon-badges.php:539
4154
  msgid "Are you sure you want to remove this level?"
4155
  msgstr ""
4156
 
4157
+ #: addons/badges/myCRED-addon-badges.php:540
4158
+ #: addons/badges/myCRED-addon-badges.php:844
4159
+ #: addons/badges/myCRED-addon-badges.php:1313
4160
  msgid "Level"
4161
  msgstr ""
4162
 
4163
+ #: addons/badges/myCRED-addon-badges.php:541
4164
  msgid "Badge Image"
4165
  msgstr ""
4166
 
4167
+ #: addons/badges/myCRED-addon-badges.php:542
4168
  msgid "Use as Badge"
4169
  msgstr ""
4170
 
4171
+ #: addons/badges/myCRED-addon-badges.php:543
4172
+ #: addons/badges/myCRED-addon-badges.php:946
4173
  #: addons/badges/includes/mycred-badge-functions.php:272
4174
  msgctxt "Comparison of badge requirements. A AND B"
4175
  msgid "AND"
4176
  msgstr ""
4177
 
4178
+ #: addons/badges/myCRED-addon-badges.php:544
4179
+ #: addons/badges/myCRED-addon-badges.php:946
4180
  #: addons/badges/includes/mycred-badge-functions.php:270
4181
  msgctxt "Comparison of badge requirements. A OR B"
4182
  msgid "OR"
4183
  msgstr ""
4184
 
4185
+ #: addons/badges/myCRED-addon-badges.php:596
4186
  msgid "Badge Setup"
4187
  msgstr ""
4188
 
4189
+ #: addons/badges/myCRED-addon-badges.php:605
4190
  msgid "Default Badge Image"
4191
  msgstr ""
4192
 
4193
+ #: addons/badges/myCRED-addon-badges.php:703
4194
  msgid "Assign Badge"
4195
  msgstr ""
4196
 
4197
+ #: addons/badges/myCRED-addon-badges.php:704
4198
  msgid "Remove Connections"
4199
  msgstr ""
4200
 
4201
+ #: addons/badges/myCRED-addon-badges.php:747
4202
  #: addons/badges/includes/mycred-badge-functions.php:288
4203
  msgid "This badge is manually awarded."
4204
  msgstr ""
4205
 
4206
+ #: addons/badges/myCRED-addon-badges.php:783
4207
  msgid "Optional image to show when a user has not earned this badge."
4208
  msgstr ""
4209
 
4210
+ #: addons/badges/myCRED-addon-badges.php:802
4211
  msgid "Time(s)"
4212
  msgstr ""
4213
 
4214
+ #: addons/badges/myCRED-addon-badges.php:803
4215
  msgid "In total"
4216
  msgstr ""
4217
 
4218
+ #: addons/badges/myCRED-addon-badges.php:850
4219
  #, php-format
4220
  msgid "Level %d"
4221
  msgstr ""
4222
 
4223
+ #: addons/badges/myCRED-addon-badges.php:874
4224
  msgid "Select Point Type"
4225
  msgstr ""
4226
 
4227
+ #: addons/badges/myCRED-addon-badges.php:888
4228
  msgid "Select Reference"
4229
  msgstr ""
4230
 
4231
+ #: addons/badges/myCRED-addon-badges.php:964
4232
  msgid "Reward"
4233
  msgstr ""
4234
 
4235
+ #: addons/badges/myCRED-addon-badges.php:1183
4236
+ #: addons/badges/myCRED-addon-badges.php:1217
4237
  msgid "Show all badges, including badges users have not yet earned."
4238
  msgstr ""
4239
 
4240
+ #: addons/badges/myCRED-addon-badges.php:1201
4241
  msgid "Include in Forum Replies"
4242
  msgstr ""
4243
 
4244
+ #: addons/badges/myCRED-addon-badges.php:1202
4245
  msgid "Include in Profile and Forum Replies"
4246
  msgstr ""
4247
 
4248
+ #: addons/badges/myCRED-addon-badges.php:1276
4249
  msgid "No image set"
4250
  msgstr ""
4251
 
4252
+ #: addons/badges/myCRED-addon-badges.php:1308
4253
  msgid "Select a level"
4254
  msgstr ""
4255
 
4256
+ #: addons/badges/myCRED-addon-badges.php:1322
4257
  msgid "Earned"
4258
  msgstr ""
4259
 
4260
+ #: addons/badges/myCRED-addon-badges.php:1431
4261
  #, php-format
4262
  msgid "A total of %d users have received this badge."
4263
  msgstr ""
4264
 
4265
+ #: addons/badges/myCRED-addon-badges.php:1433
4266
  msgid "No users has yet earned this badge."
4267
  msgstr ""
4268
 
4269
+ #: addons/badges/myCRED-addon-badges.php:1458
4270
  msgid "No connections where removed."
4271
  msgstr ""
4272
 
4273
+ #: addons/badges/myCRED-addon-badges.php:1460
4274
  #, php-format
4275
  msgid "%s connections where removed."
4276
  msgstr ""
4606
  #: addons/sell-content/myCRED-addon-sell-content.php:719
4607
  #: addons/gateway/event-booking/mycred-eventespresso3.php:473
4608
  #: addons/gateway/event-booking/mycred-eventsmanager.php:675
 
4609
  #: addons/transfer/includes/mycred-transfer-widgets.php:101
4610
  msgid "Button Label"
4611
  msgstr ""
4670
  #: addons/gateway/event-booking/mycred-eventespresso3.php:495
4671
  #: addons/gateway/event-booking/mycred-eventsmanager.php:369
4672
  #: addons/gateway/event-booking/mycred-eventsmanager.php:373
 
 
4673
  msgid "Price"
4674
  msgstr ""
4675
 
5037
 
5038
  #: addons/gateway/event-booking/mycred-eventespresso3.php:26
5039
  #: addons/gateway/event-booking/mycred-eventsmanager.php:594
 
5040
  #: addons/buy-creds/modules/buycred-module-core.php:710
5041
  msgid "Payments"
5042
  msgstr ""
5043
 
5044
  #: addons/gateway/event-booking/mycred-eventespresso3.php:27
5045
  #: addons/gateway/event-booking/mycred-eventsmanager.php:36
5046
+ #: addons/buy-creds/modules/buycred-module-pending.php:744
 
5047
  msgid "Pay Now"
5048
  msgstr ""
5049
 
5079
 
5080
  #: addons/gateway/event-booking/mycred-eventespresso3.php:442
5081
  #: addons/gateway/event-booking/mycred-eventsmanager.php:580
 
5082
  #, php-format
5083
  msgid "How many %s is 1 %s worth?"
5084
  msgstr ""
5119
 
5120
  #: addons/gateway/event-booking/mycred-eventespresso3.php:510
5121
  #: addons/gateway/event-booking/mycred-eventsmanager.php:625
 
5122
  #: addons/gateway/carts/mycred-wpecommerce.php:393
5123
  #: addons/gateway/carts/mycred-woocommerce.php:176
5124
  msgid "Profit Sharing"
5126
 
5127
  #: addons/gateway/event-booking/mycred-eventespresso3.php:512
5128
  #: addons/gateway/event-booking/mycred-eventsmanager.php:628
 
5129
  #: addons/gateway/carts/mycred-wpecommerce.php:397
5130
  #: addons/gateway/carts/mycred-woocommerce.php:178
5131
  msgid "Option to share sales with the product owner. Use zero to disable."
5164
  msgstr ""
5165
 
5166
  #: addons/gateway/event-booking/mycred-eventsmanager.php:30
 
5167
  msgid "Payment for tickets to %link_with_title%"
5168
  msgstr ""
5169
 
5170
  #: addons/gateway/event-booking/mycred-eventsmanager.php:31
 
5171
  msgid "Ticket refund for %link_with_title%"
5172
  msgstr ""
5173
 
5174
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35
 
5175
  msgid "Pay using your %_plural% balance"
5176
  msgstr ""
5177
 
5178
  #: addons/gateway/event-booking/mycred-eventsmanager.php:37
 
5179
  msgid "Pay"
5180
  msgstr ""
5181
 
5182
  #: addons/gateway/event-booking/mycred-eventsmanager.php:40
 
5183
  msgid "Thank you for your payment!"
5184
  msgstr ""
5185
 
5186
  #: addons/gateway/event-booking/mycred-eventsmanager.php:41
 
5187
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
5188
  msgstr ""
5189
 
5190
  #: addons/gateway/event-booking/mycred-eventsmanager.php:366
 
5191
  msgid "Ticket Type"
5192
  msgstr ""
5193
 
5194
  #: addons/gateway/event-booking/mycred-eventsmanager.php:377
 
5195
  msgid "Spaces"
5196
  msgstr ""
5197
 
5209
  msgstr ""
5210
 
5211
  #: addons/gateway/event-booking/mycred-eventsmanager.php:596
 
5212
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
5213
  msgstr ""
5214
 
5215
  #: addons/gateway/event-booking/mycred-eventsmanager.php:597
 
5216
  msgid "Single - Users can ONLY pay for tickets using %plural%."
5217
  msgstr ""
5218
 
5219
  #: addons/gateway/event-booking/mycred-eventsmanager.php:598
 
5220
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
5221
  msgstr ""
5222
 
5223
  #: addons/gateway/event-booking/mycred-eventsmanager.php:618
5224
  #: addons/gateway/event-booking/mycred-eventsmanager.php:651
 
 
5225
  msgid "Refunds"
5226
  msgstr ""
5227
 
5232
  msgstr ""
5233
 
5234
  #: addons/gateway/event-booking/mycred-eventsmanager.php:644
 
5235
  msgid "Purchases"
5236
  msgstr ""
5237
 
5238
  #: addons/gateway/event-booking/mycred-eventsmanager.php:661
 
5239
  msgid "Payment Link Label"
5240
  msgstr ""
5241
 
5242
  #: addons/gateway/event-booking/mycred-eventsmanager.php:664
 
5243
  msgid ""
5244
  "The payment link shows / hides the payment form under \"My Bookings\". No "
5245
  "HTML allowed."
5246
  msgstr ""
5247
 
5248
  #: addons/gateway/event-booking/mycred-eventsmanager.php:668
 
5249
  msgid "Payment Header"
5250
  msgstr ""
5251
 
5252
  #: addons/gateway/event-booking/mycred-eventsmanager.php:671
 
5253
  msgid "Shown on top of the payment form. No HTML allowed."
5254
  msgstr ""
5255
 
5256
  #: addons/gateway/event-booking/mycred-eventsmanager.php:678
 
5257
  msgid "The button label for payments. No HTML allowed!"
5258
  msgstr ""
5259
 
5260
  #: addons/gateway/event-booking/mycred-eventsmanager.php:682
 
5261
  #: addons/gateway/carts/mycred-wpecommerce.php:404
5262
  msgid "Messages"
5263
  msgstr ""
5264
 
5265
  #: addons/gateway/event-booking/mycred-eventsmanager.php:685
 
5266
  msgid "Successful Payments"
5267
  msgstr ""
5268
 
5269
  #: addons/gateway/event-booking/mycred-eventsmanager.php:688
5270
  #: addons/gateway/event-booking/mycred-eventsmanager.php:695
 
 
5271
  msgid "No HTML allowed!"
5272
  msgstr ""
5273
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5274
  #: addons/gateway/carts/mycred-wpecommerce.php:20
5275
  msgid "Payment for Order: #%order_id%"
5276
  msgstr ""
5418
  msgstr ""
5419
 
5420
  #: addons/gateway/carts/mycred-woocommerce.php:319
5421
+ #: addons/sell-content/includes/mycred-sell-functions.php:534
5422
  msgid "Insufficient funds."
5423
  msgstr ""
5424
 
5451
 
5452
  #: addons/transfer/includes/mycred-transfer-widgets.php:113
5453
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
5454
+ #: addons/buy-creds/modules/buycred-module-pending.php:576
5455
  #: addons/buy-creds/modules/buycred-module-core.php:1487
5456
  msgid "Recipient"
5457
  msgstr ""
5604
  msgid "An unknown error occurred. Coupon not used."
5605
  msgstr ""
5606
 
5607
+ #: addons/sell-content/includes/mycred-sell-functions.php:525
5608
  #, php-format
5609
  msgctxt "Point type name"
5610
  msgid "You can not pay using %s"
5611
  msgstr ""
5612
 
5613
+ #: addons/sell-content/includes/mycred-sell-functions.php:786
5614
  #, php-format
5615
  msgctxt "all post type name"
5616
  msgid "All %s"
5617
  msgstr ""
5618
 
5619
+ #: addons/sell-content/includes/mycred-sell-functions.php:790
5620
  #, php-format
5621
  msgctxt "all post type name"
5622
  msgid "%s I manually select"
5623
  msgstr ""
5624
 
5625
+ #: addons/sell-content/includes/mycred-sell-functions.php:794
5626
  #, php-format
5627
  msgctxt "%s = post type name"
5628
  msgid "All %s except"
5629
  msgstr ""
5630
 
5631
+ #: addons/sell-content/includes/mycred-sell-functions.php:795
5632
  #, php-format
5633
  msgctxt "%s = post type name"
5634
  msgid "Comma separated list of %s IDs to exclude"
5635
  msgstr ""
5636
 
5637
+ #: addons/sell-content/includes/mycred-sell-functions.php:798
5638
  #, php-format
5639
  msgctxt "%s = post type name"
5640
  msgid "Only %s"
5641
  msgstr ""
5642
 
5643
+ #: addons/sell-content/includes/mycred-sell-functions.php:799
5644
  #, php-format
5645
  msgctxt "%s = post type name"
5646
  msgid "Comma separated list of %s IDs"
5647
  msgstr ""
5648
 
5649
+ #: addons/sell-content/includes/mycred-sell-functions.php:811
5650
  #, php-format
5651
  msgctxt "e.g. Only \"Posts\" in \"Categories\""
5652
  msgid "Only %s in %s"
5653
  msgstr ""
5654
 
5655
+ #: addons/sell-content/includes/mycred-sell-functions.php:812
5656
+ #: addons/sell-content/includes/mycred-sell-functions.php:816
5657
+ #: addons/sell-content/includes/mycred-sell-functions.php:822
5658
+ #: addons/sell-content/includes/mycred-sell-functions.php:826
5659
  #, php-format
5660
  msgctxt "%s = taxonomy name"
5661
  msgid "Comma separated list of %s slugs"
5662
  msgstr ""
5663
 
5664
+ #: addons/sell-content/includes/mycred-sell-functions.php:815
5665
  #, php-format
5666
  msgctxt "e.g. Only \"Posts\" not in \"Categories\""
5667
  msgid "Only %s not in %s"
5668
  msgstr ""
5669
 
5670
+ #: addons/sell-content/includes/mycred-sell-functions.php:821
5671
  #, php-format
5672
  msgctxt "e.g. Only \"Posts\" with \"Tags\""
5673
  msgid "Only %s with %s"
5674
  msgstr ""
5675
 
5676
+ #: addons/sell-content/includes/mycred-sell-functions.php:825
5677
  #, php-format
5678
  msgctxt "e.g. Only \"Posts\" without \"Tags\""
5679
  msgid "Only %s without %s"
5691
 
5692
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:204
5693
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
5694
+ #: addons/buy-creds/modules/buycred-module-pending.php:297
5695
+ #: addons/buy-creds/modules/buycred-module-pending.php:648
5696
+ #: addons/buy-creds/modules/buycred-module-pending.php:761
5697
  #: addons/buy-creds/gateways/bank-transfer.php:141
5698
  msgid "Cost"
5699
  msgstr ""
5833
  msgid "December"
5834
  msgstr ""
5835
 
5836
+ #: addons/buy-creds/modules/buycred-module-pending.php:140
5837
  msgctxt "Post Type General Name"
5838
  msgid "Pending Payments"
5839
  msgstr ""
5840
 
5841
+ #: addons/buy-creds/modules/buycred-module-pending.php:141
5842
  msgctxt "Post Type Singular Name"
5843
  msgid "Pending Payment"
5844
  msgstr ""
5845
 
 
5846
  #: addons/buy-creds/modules/buycred-module-pending.php:142
5847
+ #: addons/buy-creds/modules/buycred-module-pending.php:144
5848
+ #: addons/buy-creds/modules/buycred-module-pending.php:234
5849
+ #: addons/buy-creds/modules/buycred-module-pending.php:235
5850
  msgid "Pending Payments"
5851
  msgstr ""
5852
 
5853
+ #: addons/buy-creds/modules/buycred-module-pending.php:148
5854
  msgid "Edit Pending Payment"
5855
  msgstr ""
5856
 
5857
+ #: addons/buy-creds/modules/buycred-module-pending.php:151
5858
+ #: addons/buy-creds/modules/buycred-module-pending.php:152
5859
  msgid "Not found in Trash"
5860
  msgstr ""
5861
 
 
 
5862
  #: addons/buy-creds/modules/buycred-module-pending.php:182
5863
  #: addons/buy-creds/modules/buycred-module-pending.php:183
5864
  #: addons/buy-creds/modules/buycred-module-pending.php:184
5866
  #: addons/buy-creds/modules/buycred-module-pending.php:186
5867
  #: addons/buy-creds/modules/buycred-module-pending.php:187
5868
  #: addons/buy-creds/modules/buycred-module-pending.php:188
5869
+ #: addons/buy-creds/modules/buycred-module-pending.php:189
5870
+ #: addons/buy-creds/modules/buycred-module-pending.php:190
5871
  msgid "Payment Updated."
5872
  msgstr ""
5873
 
5874
+ #: addons/buy-creds/modules/buycred-module-pending.php:218
5875
  msgid "Pending payment successfully credited to account."
5876
  msgstr ""
5877
 
5878
+ #: addons/buy-creds/modules/buycred-module-pending.php:220
5879
  msgid "Failed to credit the pending payment to account."
5880
  msgstr ""
5881
 
5882
+ #: addons/buy-creds/modules/buycred-module-pending.php:293
5883
+ #: addons/buy-creds/modules/buycred-module-pending.php:758
5884
  #: addons/buy-creds/modules/buycred-module-core.php:771
5885
  #: addons/buy-creds/gateways/bank-transfer.php:142
5886
  msgid "Transaction ID"
5887
  msgstr ""
5888
 
5889
+ #: addons/buy-creds/modules/buycred-module-pending.php:295
5890
  #: addons/buy-creds/modules/buycred-module-core.php:767
5891
  msgid "Buyer"
5892
  msgstr ""
5893
 
5894
+ #: addons/buy-creds/modules/buycred-module-pending.php:298
5895
+ #: addons/buy-creds/modules/buycred-module-pending.php:623
5896
+ #: addons/buy-creds/modules/buycred-module-pending.php:759
5897
  #: addons/buy-creds/modules/buycred-module-core.php:766
5898
  #: addons/buy-creds/includes/buycred-functions.php:119
5899
  msgid "Gateway"
5900
  msgstr ""
5901
 
5902
+ #: addons/buy-creds/modules/buycred-module-pending.php:299
5903
  msgid "Type"
5904
  msgstr ""
5905
 
5906
+ #: addons/buy-creds/modules/buycred-module-pending.php:396
5907
+ #: addons/buy-creds/modules/buycred-module-pending.php:505
5908
  msgid "Pay Out"
5909
  msgstr ""
5910
 
5911
+ #: addons/buy-creds/modules/buycred-module-pending.php:468
5912
  msgid "Pending Payment"
5913
  msgstr ""
5914
 
5915
+ #: addons/buy-creds/modules/buycred-module-pending.php:500
5916
  msgid "Save"
5917
  msgstr ""
5918
 
5919
+ #: addons/buy-creds/modules/buycred-module-pending.php:506
5920
  msgid "Trash"
5921
  msgstr ""
5922
 
5923
+ #: addons/buy-creds/modules/buycred-module-pending.php:570
5924
  msgid "Payer"
5925
  msgstr ""
5926
 
5927
+ #: addons/buy-creds/modules/buycred-module-pending.php:654
5928
  #: addons/buy-creds/gateways/bank-transfer.php:209
5929
  #: addons/buy-creds/gateways/bitpay.php:251
5930
  #: addons/buy-creds/gateways/paypal-standard.php:279
5932
  msgid "Currency"
5933
  msgstr ""
5934
 
5935
+ #: addons/buy-creds/modules/buycred-module-pending.php:679
5936
  msgid "Pending request created."
5937
  msgstr ""
5938
 
5939
+ #: addons/buy-creds/modules/buycred-module-pending.php:727
5940
  #, php-format
5941
  msgid "Pending payment updated by %s"
5942
  msgstr ""
5943
 
5944
+ #: addons/buy-creds/modules/buycred-module-pending.php:825
5945
  msgid "No pending payments found"
5946
  msgstr ""
5947
 
6399
  "Optional text to show user once a transaction has been successfully "
6400
  "completed. This text is shown by Skrill."
6401
  msgstr ""
 
 
 
 
lang/mycred-es_ES.mo CHANGED
Binary file
lang/mycred-es_ES.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
- "POT-Creation-Date: 2017-04-19 15:00+0000\n"
6
- "PO-Revision-Date: 2017-04-19 15:00+0000\n"
7
- "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
  "Language-Team: Spanish (Spain)\n"
9
  "Language: es-ES\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -19,136 +19,470 @@ msgstr ""
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
 
22
  "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
23
  "content/plugins/mycred\n"
24
- "X-Poedit-SearchPath-1: .\n"
25
- "X-Loco-Target-Locale: es_ES"
26
 
27
- #: mycred.php:578
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  msgid "Import balances via a CSV file."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
30
 
31
- #: abstracts/mycred-abstract-hook.php:291
32
  msgid "/ Day"
33
- msgstr ""
34
 
35
- #: abstracts/mycred-abstract-hook.php:292
36
  msgid "/ Week"
37
- msgstr ""
38
 
39
- #: abstracts/mycred-abstract-hook.php:293
40
  msgid "/ Month"
41
- msgstr ""
42
 
43
- #: abstracts/mycred-abstract-hook.php:294
44
  msgid "in Total"
45
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
 
47
  #: modules/mycred-module-management.php:184
48
  msgid "Balance successfully updated"
49
- msgstr ""
50
 
51
  #: modules/mycred-module-management.php:189
52
  msgid "Request declined"
53
- msgstr ""
54
 
55
  #: modules/mycred-module-management.php:224
56
  msgid "No recent activity found."
57
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58
 
59
  #: modules/mycred-module-management.php:237
60
  #: modules/mycred-module-management.php:775 modules/mycred-module-log.php:93
61
- #: modules/mycred-module-log.php:918
62
  #: includes/classes/class.query-export.php:263
63
  #: includes/classes/class.query-export.php:360
64
  #: includes/classes/class.query-log.php:904
65
  #: addons/transfer/includes/mycred-transfer-widgets.php:109
66
  msgid "Reference"
67
- msgstr ""
 
 
 
 
 
 
 
 
 
68
 
69
  #: modules/mycred-module-management.php:280
70
  msgid "View complete history"
71
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
 
73
  #: modules/mycred-module-management.php:555
74
  msgid "Balances"
75
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
 
77
  #: modules/mycred-module-management.php:747
78
- #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
79
  #: addons/buy-creds/modules/buycred-module-core.php:1374
80
  msgid "Username"
81
- msgstr ""
 
 
 
 
 
 
 
82
 
83
  #: modules/mycred-module-management.php:759
84
  msgid "Total Balance"
85
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
 
87
  #: modules/mycred-module-management.php:785
88
  msgid "Log under a custom reference"
89
- msgstr ""
90
 
91
  #: modules/mycred-module-management.php:791
92
  msgid "lowercase without empty spaces"
93
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
94
 
95
  #: modules/mycred-module-management.php:804
96
  msgid "Update"
97
- msgstr ""
98
 
99
  #: modules/mycred-module-management.php:807
100
  msgid "Recent Activity"
101
- msgstr ""
 
 
 
 
 
 
 
 
102
 
103
  #: modules/mycred-module-settings.php:240
104
  msgid "Invalid decimal value."
105
- msgstr ""
106
 
107
  #: modules/mycred-module-settings.php:290
108
  msgid "Log Updated"
109
- msgstr ""
110
 
111
- #: modules/mycred-module-settings.php:432
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  msgid ""
113
  "In order to adjust the number of decimal places you want to use we must "
114
  "update your log. It is highly recommended that you backup your current log "
115
  "before continuing!"
116
  msgstr ""
 
 
 
117
 
118
  #: modules/mycred-module-settings.php:457
119
  msgid "Update Database"
120
- msgstr ""
121
 
122
  #: modules/mycred-module-settings.php:468
123
  #: modules/mycred-module-settings.php:480
124
  msgid "No decimals"
125
- msgstr ""
126
 
127
  #: modules/mycred-module-settings.php:492
128
  #, php-format
129
  msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
130
  msgstr ""
 
 
 
 
 
 
 
131
 
132
  #: modules/mycred-module-settings.php:530 modules/mycred-module-addons.php:330
133
- #: modules/mycred-module-addons.php:368 modules/mycred-module-log.php:554
134
  #: modules/mycred-module-network.php:241 modules/mycred-module-network.php:276
135
  #: modules/mycred-module-network.php:292
136
  #: includes/importers/mycred-cubepoints.php:305
137
  #: includes/importers/mycred-balances.php:245
138
  #: includes/importers/mycred-log-entries.php:239
139
  msgid "Documentation"
140
- msgstr ""
 
 
 
 
 
 
 
 
 
 
141
 
142
  #: modules/mycred-module-settings.php:548 includes/mycred-setup.php:279
143
  msgid "Singular"
144
- msgstr ""
145
 
146
  #: modules/mycred-module-settings.php:549
147
  #: modules/mycred-module-settings.php:555
148
  #: modules/mycred-module-settings.php:605
149
  #: modules/mycred-module-settings.php:612
150
- #: modules/mycred-module-settings.php:799
151
- #: modules/mycred-module-settings.php:805 includes/mycred-setup.php:280
152
  #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
153
  #: includes/mycred-setup.php:340 addons/coupons/myCRED-addon-coupons.php:710
154
  #: addons/coupons/myCRED-addon-coupons.php:717
@@ -169,5457 +503,4827 @@ msgstr ""
169
  #: addons/buy-creds/modules/buycred-module-core.php:427
170
  #: addons/buy-creds/modules/buycred-module-core.php:454
171
  msgid "Required"
172
- msgstr ""
173
 
174
  #: modules/mycred-module-settings.php:554 includes/mycred-setup.php:285
175
  msgid "Plural"
176
- msgstr ""
177
 
178
  #: modules/mycred-module-settings.php:559 includes/mycred-setup.php:290
179
  msgid ""
180
  "These labels are used throughout the admin area and when presenting points "
181
  "to your users."
182
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
 
184
  #: modules/mycred-module-settings.php:591
185
  msgid "Set decimals to zero if you prefer to use whole numbers."
186
- msgstr ""
 
 
 
 
187
 
188
  #: modules/mycred-module-settings.php:593
189
  msgid ""
190
  "As this is your main point type, the value you select here will be the "
191
  "largest number of decimals your installation will support."
192
  msgstr ""
 
 
 
 
 
 
193
 
194
  #: modules/mycred-module-settings.php:604 includes/mycred-setup.php:332
195
  msgid "Point Editors"
196
- msgstr ""
197
 
198
  #: modules/mycred-module-settings.php:606 includes/mycred-setup.php:334
199
  msgid "The capability of users who can edit balances."
200
- msgstr ""
201
 
202
  #: modules/mycred-module-settings.php:611 includes/mycred-setup.php:339
203
  msgid "Point Administrators"
204
- msgstr ""
205
 
206
  #: modules/mycred-module-settings.php:613 includes/mycred-setup.php:341
207
  msgid "The capability of users who can edit settings."
208
- msgstr ""
209
 
210
  #: modules/mycred-module-settings.php:619 includes/mycred-setup.php:346
211
  msgid "Max. Amount"
212
- msgstr ""
213
 
214
  #: modules/mycred-module-settings.php:621 includes/mycred-setup.php:348
215
  msgid "The maximum amount allowed to be paid out in a single instance."
216
- msgstr ""
217
 
218
  #: modules/mycred-module-settings.php:626 includes/mycred-setup.php:353
219
  msgid "Exclude by User ID"
220
- msgstr ""
221
 
222
  #: modules/mycred-module-settings.php:627 includes/mycred-setup.php:354
223
  msgid "Optional"
224
- msgstr ""
225
 
226
  #: modules/mycred-module-settings.php:628 includes/mycred-setup.php:355
227
  msgid "Comma separated list of user IDs to exclude from using this point type."
228
  msgstr ""
 
 
229
 
230
  #: modules/mycred-module-settings.php:632 includes/mycred-setup.php:359
231
  msgid "Exclude point editors"
232
- msgstr ""
233
 
234
  #: modules/mycred-module-settings.php:635 includes/mycred-setup.php:362
235
  msgid "Exclude point administrators"
236
- msgstr ""
237
 
238
  #: modules/mycred-module-settings.php:645
239
  msgid "Other Settings"
240
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
 
242
  #: modules/mycred-module-settings.php:697
243
  msgid "Balance Meta Key"
244
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
 
246
- #: modules/mycred-module-settings.php:810
 
 
 
 
247
  msgid ""
248
  "The meta key must be lowercase and only contain letters or underscores. All "
249
  "other characters will be deleted!"
250
  msgstr ""
 
 
251
 
252
- #: modules/mycred-module-addons.php:275
253
- msgid ""
254
- "Gives you access to your myCRED Statistics based on your users gains and "
255
- "loses."
256
- msgstr ""
257
-
258
- #: modules/mycred-module-log.php:215
259
- msgid "Invalid or empty reference"
260
- msgstr ""
261
 
262
- #: modules/mycred-module-log.php:220
263
- msgid "Log Entry cannot be empty"
264
- msgstr ""
265
 
266
- #: modules/mycred-module-log.php:241
267
- msgid "Could not save the new log entry"
268
- msgstr ""
269
 
270
- #: modules/mycred-module-log.php:262
271
- msgid "Log entry successfully updated"
272
- msgstr ""
273
 
274
- #: modules/mycred-module-log.php:307
275
- #, php-format
276
- msgid "1 Entry Deleted"
277
- msgid_plural "%d Entries Deleted"
278
- msgstr[0] ""
279
- msgstr[1] ""
280
 
281
- #: modules/mycred-module-log.php:472
282
- msgid "The log entry was successfully updated."
 
 
283
  msgstr ""
 
 
284
 
285
- #: modules/mycred-module-log.php:473
286
- msgid "The selected log entry could not be deleted."
287
- msgstr ""
288
 
289
- #: modules/mycred-module-log.php:507
290
  #, php-format
291
- msgctxt "e.g. Log entries from April 12th 2016"
292
- msgid "Log entries from %s"
293
- msgstr ""
294
-
295
- #: modules/mycred-module-log.php:564
296
  msgid ""
297
- "Warning. The required Mcrypt PHP Library is not installed on this server! "
298
- "Certain hooks and shortcodes will not work correctly!"
299
- msgstr ""
300
-
301
- #: modules/mycred-module-log.php:925
302
- msgid "Original Entry"
303
  msgstr ""
 
 
304
 
305
- #: modules/mycred-module-log.php:937
306
- msgid "Delete Entry"
307
- msgstr ""
 
308
 
309
- #: modules/mycred-module-log.php:942
310
- msgid "Update Entry"
311
- msgstr ""
 
312
 
313
- #: modules/mycred-module-network.php:141
314
- msgid "Blocked"
315
  msgstr ""
 
316
 
317
- #: modules/mycred-module-network.php:149
318
- msgid "Installed"
 
319
  msgstr ""
 
 
320
 
321
- #: modules/mycred-module-network.php:151
322
- msgid "Not Installed"
 
 
 
323
  msgstr ""
 
 
 
 
324
 
325
- #: modules/mycred-module-network.php:247
326
- msgid "I am sorry but your network is too big to use these features."
 
 
327
  msgstr ""
 
 
328
 
329
- #: modules/mycred-module-network.php:312
330
- msgid "Blog IDs"
331
  msgstr ""
 
 
332
 
333
- #: modules/mycred-module-export.php:358
334
- msgid "Make both format options available."
 
 
 
335
  msgstr ""
 
 
 
 
336
 
337
- #: modules/mycred-module-export.php:360
338
- msgid "Exports"
339
  msgstr ""
 
340
 
341
- #: modules/mycred-module-export.php:366
342
- msgid "Front End Exports"
 
 
343
  msgstr ""
 
 
344
 
345
- #: modules/mycred-module-export.php:382 modules/mycred-module-export.php:430
346
- msgid "Export Format"
 
 
 
347
  msgstr ""
 
 
 
 
348
 
349
- #: modules/mycred-module-export.php:398 modules/mycred-module-export.php:446
350
- msgid "File Name"
 
 
351
  msgstr ""
 
 
352
 
353
- #: modules/mycred-module-export.php:407
354
  msgid ""
355
- "If enabled, users will only be able to export their own log entries! Export "
356
- "tools becomes available wherever you are using the mycred_history shortcode "
357
- "or in the users profile."
358
- msgstr ""
359
-
360
- #: modules/mycred-module-export.php:414
361
- msgid "Back End Exports"
362
- msgstr ""
363
-
364
- #: modules/mycred-module-export.php:455
365
- msgid ""
366
- "Raw format should be used when you intend to use the export tool to backup "
367
- "or import entries in another installation. Formatted exports reflect what "
368
- "users see in their history archive."
369
  msgstr ""
 
 
 
370
 
371
- #: modules/mycred-module-buddypress.php:352
372
- msgid "Show:"
373
- msgstr ""
 
374
 
375
- #: modules/mycred-module-buddypress.php:447
376
- msgid "Members and visitors can view other members %_singular% balance."
377
- msgstr ""
378
 
379
- #: modules/mycred-module-buddypress.php:508
380
- msgid "The history page slug. Must be URL friendly."
381
- msgstr ""
382
 
383
- #: plugins/mycred-hook-invite-anyone.php:205
384
- msgid "Sending Invites"
385
- msgstr ""
386
 
387
- #: plugins/mycred-hook-invite-anyone.php:222
388
- #: plugins/mycred-hook-invite-anyone.php:246
389
- #: plugins/mycred-hook-wp-polls.php:178
390
- #: plugins/mycred-hook-wp-postratings.php:208
391
- #: plugins/mycred-hook-wp-postratings.php:215
392
- #: plugins/mycred-hook-gravityforms.php:173
393
- #: plugins/mycred-hook-simplepress.php:308
394
- #: plugins/mycred-hook-simplepress.php:326
395
- #: plugins/mycred-hook-simplepress.php:350
396
- #: plugins/mycred-hook-simplepress.php:377
397
- #: plugins/mycred-hook-buddypress.php:630
398
- #: plugins/mycred-hook-buddypress.php:654
399
- #: plugins/mycred-hook-buddypress.php:678
400
- #: plugins/mycred-hook-buddypress.php:702
401
- #: plugins/mycred-hook-buddypress.php:726
402
- #: plugins/mycred-hook-buddypress.php:753
403
- #: plugins/mycred-hook-buddypress.php:777
404
- #: plugins/mycred-hook-buddypress.php:795
405
- #: plugins/mycred-hook-buddypress.php:819
406
- #: plugins/mycred-hook-buddypress.php:837
407
- #: plugins/mycred-hook-buddypress.php:861
408
- #: plugins/mycred-hook-buddypress.php:885
409
- #: plugins/mycred-hook-buddypress.php:1521
410
- #: plugins/mycred-hook-buddypress.php:1539
411
- #: plugins/mycred-hook-buddypress.php:1563
412
- #: plugins/mycred-hook-buddypress.php:1587
413
- #: plugins/mycred-hook-buddypress.php:1611
414
- #: plugins/mycred-hook-buddypress.php:1635
415
- #: plugins/mycred-hook-buddypress.php:1659
416
- #: plugins/mycred-hook-buddypress.php:1683
417
- #: plugins/mycred-hook-buddypress.php:1707
418
- #: plugins/mycred-hook-buddypress.php:1725
419
- #: plugins/mycred-hook-buddypress.php:1749
420
- #: plugins/mycred-hook-affiliatewp.php:299
421
- #: plugins/mycred-hook-affiliatewp.php:326
422
- #: plugins/mycred-hook-affiliatewp.php:370
423
- #: plugins/mycred-hook-affiliatewp.php:377
424
- #: plugins/mycred-hook-events-manager-light.php:218
425
- #: plugins/mycred-hook-events-manager-light.php:236
426
- #: plugins/mycred-hook-sharethis.php:274
427
- #: plugins/mycred-hook-buddypress-media.php:307
428
- #: plugins/mycred-hook-buddypress-media.php:331
429
- #: plugins/mycred-hook-buddypress-media.php:355
430
- #: plugins/mycred-hook-buddypress-media.php:373
431
- #: plugins/mycred-hook-buddypress-media.php:391
432
- #: plugins/mycred-hook-buddypress-media.php:409
433
- #: plugins/mycred-hook-wp-favorite-posts.php:249
434
- #: plugins/mycred-hook-wp-favorite-posts.php:256
435
- #: plugins/mycred-hook-wp-favorite-posts.php:274
436
- #: plugins/mycred-hook-wp-favorite-posts.php:289
437
- #: plugins/mycred-hook-contact-form7.php:176
438
- #: plugins/mycred-hook-jetpack.php:550 plugins/mycred-hook-jetpack.php:568
439
- #: plugins/mycred-hook-bbPress.php:450 plugins/mycred-hook-bbPress.php:468
440
- #: plugins/mycred-hook-bbPress.php:492 plugins/mycred-hook-bbPress.php:519
441
- #: plugins/mycred-hook-bbPress.php:543 plugins/mycred-hook-bbPress.php:567
442
- #: plugins/mycred-hook-bbPress.php:594 plugins/mycred-hook-woocommerce.php:517
443
- #: plugins/mycred-hook-badgeOS.php:328 plugins/mycred-hook-badgeOS.php:346
444
- #: addons/transfer/includes/mycred-transfer-widgets.php:102
445
- #: addons/transfer/includes/mycred-transfer-widgets.php:106
446
- #: addons/transfer/includes/mycred-transfer-widgets.php:110
447
- #: addons/transfer/includes/mycred-transfer-widgets.php:122
448
- msgid "required"
449
- msgstr ""
450
 
451
- #: plugins/mycred-hook-invite-anyone.php:229
452
- msgid "Accepted Invites"
453
- msgstr ""
454
 
455
- #: plugins/mycred-hook-wp-postratings.php:15
456
- msgid "Post Ratings"
457
- msgstr ""
458
 
459
- #: plugins/mycred-hook-wp-postratings.php:16
460
- msgid ""
461
- "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
462
- "author and the user rating."
463
- msgstr ""
464
 
465
- #: plugins/mycred-hook-wp-postratings.php:85
466
- msgid "Based on rating"
467
- msgstr ""
 
 
 
 
 
 
468
 
469
- #: plugins/mycred-hook-wp-postratings.php:161
470
- msgid "Content Rating"
471
- msgstr ""
472
 
473
- #: plugins/mycred-hook-wp-postratings.php:165
474
- #: plugins/mycred-hook-wp-favorite-posts.php:222
475
- #: plugins/mycred-hook-wp-favorite-posts.php:267
476
- msgid "Member"
477
- msgstr ""
478
 
479
- #: plugins/mycred-hook-wp-postratings.php:177
480
- #: plugins/mycred-hook-wp-favorite-posts.php:234
481
- #: plugins/mycred-hook-wp-favorite-posts.php:282
482
- msgid "Content Author"
483
- msgstr ""
484
 
485
- #: plugins/mycred-hook-wp-postratings.php:192
486
- #: plugins/mycred-hook-wp-postratings.php:199
487
- msgid "Use the Rating Value instead of the amount set here."
488
- msgstr ""
489
 
490
- #: plugins/mycred-hook-wp-postratings.php:207
491
- #: plugins/mycred-hook-wp-favorite-posts.php:248
492
- msgid "Member Log Template"
493
- msgstr ""
494
 
495
- #: plugins/mycred-hook-wp-postratings.php:214
496
- #: plugins/mycred-hook-wp-favorite-posts.php:255
497
- msgid "Content Author Log Template"
498
- msgstr ""
499
 
500
- #: plugins/mycred-hook-gravityforms.php:156
501
- #: plugins/mycred-hook-contact-form7.php:159
502
  #, php-format
503
- msgid "Form: %s"
504
- msgstr ""
505
-
506
- #: plugins/mycred-hook-simplepress.php:291 plugins/mycred-hook-bbPress.php:475
507
- #: plugins/mycred-hook-bbPress.php:550
508
- msgid "New Topic"
509
- msgstr ""
510
-
511
- #: plugins/mycred-hook-simplepress.php:315 plugins/mycred-hook-bbPress.php:508
512
- msgid "Deleted Topic"
513
- msgstr ""
514
-
515
- #: plugins/mycred-hook-simplepress.php:333
516
- msgid "New Topic Post"
517
- msgstr ""
518
 
519
- #: plugins/mycred-hook-simplepress.php:359
520
- msgid "Topic authors can receive %_plural% for posting on their own Topic."
521
- msgstr ""
522
 
523
- #: plugins/mycred-hook-simplepress.php:366
524
- msgid "Deleted Topic Post"
525
  msgstr ""
 
 
526
 
527
- #: plugins/mycred-hook-buddypress.php:613
528
- msgid "New Profile Activity"
529
- msgstr ""
530
 
531
- #: plugins/mycred-hook-buddypress.php:637
532
- msgid "Deleted Profile Activity"
533
- msgstr ""
534
 
535
- #: plugins/mycred-hook-buddypress.php:661
536
- msgid "New Profile Avatar Upload"
537
- msgstr ""
538
 
539
- #: plugins/mycred-hook-buddypress.php:685
540
- msgid "New Profile Cover Upload"
541
- msgstr ""
 
 
542
 
543
- #: plugins/mycred-hook-buddypress.php:709
544
- msgid "New Friendships"
545
- msgstr ""
 
546
 
547
- #: plugins/mycred-hook-buddypress.php:735
548
  msgid ""
549
- "Users with zero balance can not add friends. Requires that you deduct "
550
- "%_plural% for adding a new friend."
551
  msgstr ""
 
 
552
 
553
- #: plugins/mycred-hook-buddypress.php:742
554
- msgid "Ending Friendships"
555
- msgstr ""
 
556
 
557
- #: plugins/mycred-hook-buddypress.php:760
558
- msgid "New Comment"
559
- msgstr ""
560
 
561
- #: plugins/mycred-hook-buddypress.php:802
562
- msgid "Favorite Activity"
563
- msgstr ""
564
 
565
- #: plugins/mycred-hook-buddypress.php:826
566
- msgid "Removing Favorit Activity"
567
- msgstr ""
568
 
569
- #: plugins/mycred-hook-buddypress.php:844
570
- msgid "New Private Message"
571
- msgstr ""
572
 
573
- #: plugins/mycred-hook-buddypress.php:1502
574
- msgid "Group Creation"
575
- msgstr ""
576
 
577
- #: plugins/mycred-hook-buddypress.php:1508
578
- msgid ""
579
- "If you use a negative value and the user does not have enough %_plural%, the "
580
- "\"Create Group\" button will be disabled."
581
- msgstr ""
582
-
583
- #: plugins/mycred-hook-buddypress.php:1513
584
- msgid "No. of Members"
585
- msgstr ""
586
 
587
- #: plugins/mycred-hook-buddypress.php:1515
588
- msgid ""
589
- "The number of members a group must gain before awarding %_plural%. Use zero "
590
- "to award as soon as the group is created."
591
- msgstr ""
592
 
593
- #: plugins/mycred-hook-buddypress.php:1528
594
- msgid "Group Deletions"
595
- msgstr ""
 
 
596
 
597
- #: plugins/mycred-hook-buddypress.php:1546
598
- msgid "New Group Avatar Upload"
599
- msgstr ""
600
 
601
- #: plugins/mycred-hook-buddypress.php:1570
602
- msgid "New Group Cover Upload"
603
- msgstr ""
 
604
 
605
- #: plugins/mycred-hook-buddypress.php:1594
606
- msgid "New Forum Topics"
607
  msgstr ""
 
608
 
609
- #: plugins/mycred-hook-buddypress.php:1618
610
- msgid "Editing Forum Topics"
611
- msgstr ""
 
612
 
613
- #: plugins/mycred-hook-buddypress.php:1642
614
- msgid "New Forum Posts"
615
- msgstr ""
 
 
 
 
 
616
 
617
- #: plugins/mycred-hook-buddypress.php:1666
618
- msgid "Editing Forum Posts"
619
- msgstr ""
620
 
621
- #: plugins/mycred-hook-buddypress.php:1690
622
- msgid "Joining Groups"
623
- msgstr ""
624
 
625
- #: plugins/mycred-hook-buddypress.php:1714
626
- msgid "Leaving Groups"
627
- msgstr ""
628
 
629
- #: plugins/mycred-hook-buddypress.php:1732
630
- msgid "New Group Comments"
631
- msgstr ""
 
632
 
633
- #: plugins/mycred-hook-affiliatewp.php:15
634
- msgid "AffiliateWP"
635
- msgstr ""
636
 
637
- #: plugins/mycred-hook-affiliatewp.php:16
 
638
  msgid ""
639
- "Awards %_plural% for affiliate signups, referring visitors and store sale "
640
- "referrals."
641
  msgstr ""
 
 
642
 
643
- #: plugins/mycred-hook-affiliatewp.php:287
644
- msgid "Affiliate Signup"
645
- msgstr ""
646
 
647
- #: plugins/mycred-hook-affiliatewp.php:293
648
- #: plugins/mycred-hook-affiliatewp.php:312
649
- #: addons/banking/services/mycred-service-payouts.php:768
650
- #: addons/banking/services/mycred-service-payouts.php:775
651
- msgid "Use zero to disable."
652
- msgstr ""
653
 
654
- #: plugins/mycred-hook-affiliatewp.php:333
655
- msgid "Referring Sales"
656
- msgstr ""
657
 
658
- #: plugins/mycred-hook-affiliatewp.php:338
659
- msgid "Pay a set amount"
660
- msgstr ""
661
 
662
- #: plugins/mycred-hook-affiliatewp.php:342
663
- msgid "All referrals will pay the same amount."
664
- msgstr ""
665
 
666
- #: plugins/mycred-hook-affiliatewp.php:348
667
- msgid "Pay the referral amount"
668
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
669
 
670
- #: plugins/mycred-hook-affiliatewp.php:350
671
- msgid "Points Currency Code"
 
 
 
672
  msgstr ""
 
 
 
673
 
674
- #: plugins/mycred-hook-affiliatewp.php:352
675
- msgid "Requires AffiliateWP and your store to use points as currency."
676
- msgstr ""
677
 
678
- #: plugins/mycred-hook-affiliatewp.php:358
679
- msgid "Apply an exchange rate"
 
 
 
680
  msgstr ""
 
 
 
 
681
 
682
- #: plugins/mycred-hook-affiliatewp.php:369
683
- msgid "Log template - Payout"
684
- msgstr ""
685
 
686
- #: plugins/mycred-hook-affiliatewp.php:376
687
- msgid "Log template - Refund"
688
- msgstr ""
 
689
 
690
- #: plugins/mycred-hook-sharethis.php:257
691
- msgid "Publishing Posts"
692
- msgstr ""
693
 
694
- #: plugins/mycred-hook-buddypress-media.php:362
695
- msgid "Photo Deletion"
696
- msgstr ""
 
 
697
 
698
- #: plugins/mycred-hook-buddypress-media.php:380
699
- msgid "Video Deletion"
700
- msgstr ""
 
 
 
701
 
702
- #: plugins/mycred-hook-buddypress-media.php:398
703
- msgid "Music Deletion"
704
- msgstr ""
 
705
 
706
- #: plugins/mycred-hook-bbPress.php:433
707
- msgid "New Forums"
708
- msgstr ""
 
 
 
709
 
710
- #: plugins/mycred-hook-bbPress.php:457
711
- msgid "Deleting Forums"
712
- msgstr ""
 
 
 
713
 
714
- #: plugins/mycred-hook-bbPress.php:526
715
- msgid "Adding Topic to Favorites"
716
- msgstr ""
717
 
718
- #: plugins/mycred-hook-bbPress.php:576
719
- msgid "Topic authors can receive %_plural% for replying to their own Topic."
720
- msgstr ""
721
 
722
- #: plugins/mycred-hook-bbPress.php:583
723
- msgid "Deleted Reply"
724
- msgstr ""
 
 
 
 
725
 
726
- #: plugins/mycred-hook-bbPress.php:608
727
- msgid "Show users %_plural% balance in their bbPress profiles"
728
- msgstr ""
 
729
 
730
- #: plugins/mycred-hook-woocommerce.php:158
731
- msgid "Leave empty for no rewards"
732
- msgstr ""
 
 
733
 
734
- #: plugins/mycred-hook-badgeOS.php:317
735
- #, php-format
736
- msgid "Earning: %s"
737
- msgstr ""
738
 
739
- #: plugins/mycred-hook-badgeOS.php:335
740
- #, php-format
741
- msgid "Revoked: %s"
742
- msgstr ""
743
 
744
- #: includes/mycred-setup.php:106
745
- #, php-format
746
- msgid ""
747
- "Before you can begin using %s, you must setup your first point type. This "
748
- "includes what you want to call your points, how these points are presented "
749
- "and who has access to it."
750
- msgstr ""
751
-
752
- #: includes/mycred-setup.php:111
753
- msgid "Your First Point Type"
754
- msgstr ""
755
-
756
- #: includes/mycred-setup.php:127
757
- msgid "Advanced Settings"
758
- msgstr ""
759
-
760
- #: includes/mycred-setup.php:133
761
- msgid "Change Default Point Type Key"
762
- msgstr ""
763
-
764
- #: includes/mycred-setup.php:135
765
- msgid ""
766
- "You can change the meta key used to store the default point type using the "
767
- "MYCRED_DEFAULT_TYPE_KEY constant. Copy the above code to your wp-config.php "
768
- "file to use."
769
- msgstr ""
770
-
771
- #: includes/mycred-setup.php:136
772
- msgid ""
773
- "If you intend to change the default meta key, you should do so before "
774
- "continuing on in this setup!"
775
- msgstr ""
776
-
777
- #: includes/mycred-setup.php:139
778
- msgid "Whitelabel"
779
- msgstr ""
780
 
781
- #: includes/mycred-setup.php:141
782
- msgid ""
783
- "You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
784
- "above code to your wp-config.php file to use."
785
  msgstr ""
 
 
786
 
787
- #: includes/mycred-setup.php:149
788
- msgid "Create Point Type"
789
- msgstr ""
 
 
 
790
 
791
- #: includes/mycred-setup.php:149
792
- msgid "Hide"
793
- msgstr ""
794
 
795
- #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
796
- #: addons/email-notices/myCRED-addon-email-notices.php:1435
797
- msgid "Advanced"
798
- msgstr ""
799
 
800
- #: includes/mycred-setup.php:155
801
- msgid "Processing ..."
802
- msgstr ""
803
 
804
- #: includes/mycred-setup.php:160
805
- msgid "Setup Complete!"
806
- msgstr ""
807
 
808
- #: includes/mycred-setup.php:161
809
- msgid "Congratulations! You are now ready to use myCRED. What's next?"
810
- msgstr ""
 
811
 
812
- #: includes/mycred-setup.php:166
813
- msgid "Enabling Hooks"
814
- msgstr ""
815
 
816
- #: includes/mycred-setup.php:167
817
- msgid ""
818
- "If you intend to give your users points for interacting with your website "
819
- "automatically, your next step should be to enable and setup the hooks you "
820
- "want to use."
821
- msgstr ""
822
 
823
- #: includes/mycred-setup.php:168
824
- msgid "Setup Hooks"
825
- msgstr ""
826
 
827
- #: includes/mycred-setup.php:172
828
- msgid ""
829
- "If you want to use advanced features such as Transfers, Point Purchases etc. "
830
- "your next step should be to enable and setup your add-ons."
831
- msgstr ""
832
 
833
- #: includes/mycred-setup.php:173
834
- msgid "Setup Add-ons"
835
- msgstr ""
836
 
837
- #: includes/mycred-setup.php:176
838
- msgid "Adjust Settings"
839
- msgstr ""
 
840
 
841
- #: includes/mycred-setup.php:177
842
  msgid ""
843
- "If you need to make further changes to your settings or add new point types, "
844
- "you can visit your default point type's settings."
845
- msgstr ""
846
-
847
- #: includes/mycred-setup.php:178
848
- msgid "View Settings"
849
- msgstr ""
850
-
851
- #: includes/mycred-setup.php:322
852
- msgid "Set to decimals to zero if you prefer to use whole numbers."
853
- msgstr ""
854
-
855
- #: includes/mycred-setup.php:394 includes/mycred-setup.php:453
856
- msgid "Please make sure you fill out all required fields!"
857
- msgstr ""
858
-
859
- #: includes/mycred-remote.php:619
860
- msgid "16, 24 or 32 characters"
861
- msgstr ""
862
-
863
- #: includes/mycred-install.php:63
864
- msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
865
- msgstr ""
866
-
867
- #: includes/mycred-install.php:68
868
- msgid "myCRED requires PHP 5.3 or higher. Version detected: "
869
- msgstr ""
870
-
871
- #: includes/mycred-widgets.php:22
872
- msgid "Show the current users balance and history."
873
- msgstr ""
874
-
875
- #: includes/mycred-widgets.php:192
876
- msgid "Balance Layout"
877
- msgstr ""
878
-
879
- #: includes/mycred-widgets.php:285
880
- msgid "Leaderboard based on instances or balances."
881
  msgstr ""
 
 
882
 
883
- #: includes/mycred-widgets.php:419
884
- msgid "Timeframe"
885
- msgstr ""
886
 
887
- #: includes/mycred-widgets.php:421
888
- msgid ""
889
- "Option to limit the leaderboard based on a specific timeframe. Leave empty "
890
- "if not used."
891
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
892
 
893
- #: includes/mycred-widgets.php:472
894
- msgid "Shows multiple balances."
895
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
896
 
897
- #: includes/mycred-functions.php:2777
898
- msgid "in total"
899
- msgstr ""
900
-
901
- #: includes/mycred-functions.php:2779
902
- msgid "per day"
903
- msgstr ""
904
-
905
- #: includes/mycred-functions.php:2782
906
- msgid "per week"
907
- msgstr ""
908
-
909
- #: includes/mycred-functions.php:2785
910
- msgid "per month"
911
- msgstr ""
912
-
913
- #: includes/mycred-functions.php:2787 includes/mycred-functions.php:2793
914
- #, php-format
915
- msgid "Maximum once"
916
- msgid_plural "Maximum %d times"
917
- msgstr[0] ""
918
- msgstr[1] ""
919
-
920
- #: includes/mycred-functions.php:2815
921
- #, php-format
922
- msgctxt "e.g. 5 th"
923
- msgid "%d th"
924
- msgstr ""
925
-
926
- #: includes/mycred-functions.php:2819
927
- #, php-format
928
- msgctxt "e.g. 1 st"
929
- msgid "%d st"
930
- msgstr ""
931
-
932
- #: includes/mycred-functions.php:2820
933
- #, php-format
934
- msgctxt "e.g. 2 nd"
935
- msgid "%d nd"
936
- msgstr ""
937
-
938
- #: includes/mycred-functions.php:2821
939
- #, php-format
940
- msgctxt "e.g. 3 rd"
941
- msgid "%d rd"
942
- msgstr ""
943
-
944
- #: includes/importers/mycred-cubepoints.php:85
945
- msgid "Could not find a CubePoints installation."
946
- msgstr ""
947
-
948
- #: includes/importers/mycred-cubepoints.php:289
949
- #: includes/importers/mycred-balances.php:230
950
- msgid "View Users"
951
- msgstr ""
952
-
953
- #: includes/importers/mycred-cubepoints.php:305
954
- msgid "Import CubePoints"
955
- msgstr ""
956
-
957
- #: includes/importers/mycred-balances.php:117
958
- #: includes/importers/mycred-balances.php:144
959
- #: includes/importers/mycred-log-entries.php:117
960
- #: includes/importers/mycred-log-entries.php:142
961
- msgid "The file does not exist or could not be read."
962
- msgstr ""
963
-
964
- #: includes/importers/mycred-balances.php:220
965
- #: includes/importers/mycred-log-entries.php:204
966
- msgid ""
967
- "Invalid CSV file. Please consult the documentation for further assistance."
968
- msgstr ""
969
-
970
- #: includes/importers/mycred-balances.php:245
971
- #, php-format
972
- msgid "Import Balances %s"
973
- msgstr ""
974
-
975
- #: includes/importers/mycred-log-entries.php:213
976
- #, php-format
977
- msgid ""
978
- "Import complete - A total of <strong>%d</strong> log entries were "
979
- "successfully imported. <strong>%d</strong> was skipped."
980
- msgstr ""
981
-
982
- #: includes/importers/mycred-log-entries.php:239
983
- #, php-format
984
- msgid "Import Log Entries %s"
985
- msgstr ""
986
-
987
- #: includes/shortcodes/mycred_exchange.php:27
988
- #: includes/shortcodes/mycred_hook_table.php:24
989
- msgid "Point type not found."
990
- msgstr ""
991
-
992
- #: includes/shortcodes/mycred_hook_table.php:21
993
- msgid "No instances found for this point type"
994
- msgstr ""
995
-
996
- #: includes/shortcodes/mycred_hook_table.php:77
997
- msgid "Instance"
998
- msgstr ""
999
-
1000
- #: includes/classes/class.query-export.php:263
1001
- msgid "Reference ID"
1002
- msgstr ""
1003
-
1004
- #: includes/classes/class.query-export.php:263
1005
- msgid "Data"
1006
- msgstr ""
1007
-
1008
- #: includes/classes/class.query-export.php:464
1009
- msgid "Export log entries raw"
1010
- msgstr ""
1011
-
1012
- #: includes/classes/class.query-export.php:465
1013
- msgid "Export log entries formatted"
1014
- msgstr ""
1015
-
1016
- #: includes/classes/class.query-export.php:482
1017
- msgid "All Log Entries"
1018
- msgstr ""
1019
-
1020
- #: includes/classes/class.query-export.php:492
1021
- msgid "Users Log Entries"
1022
- msgstr ""
1023
-
1024
- #: includes/classes/class.query-export.php:493
1025
- msgid "Export History"
1026
- msgstr ""
1027
-
1028
- #: includes/classes/class.query-log.php:1016
1029
- msgid "Bulk Actions"
1030
- msgstr ""
1031
-
1032
- #: includes/classes/class.query-log.php:1017
1033
- msgid "Export Raw"
1034
- msgstr ""
1035
-
1036
- #: includes/classes/class.query-log.php:1018
1037
- msgid "Export Formatted"
1038
- msgstr ""
1039
-
1040
- #: includes/classes/class.query-log.php:1034
1041
- msgid "Apply"
1042
- msgstr ""
1043
-
1044
- #: includes/classes/class.query-log.php:1072
1045
- msgid "User ID, Username, Email or Nicename"
1046
- msgstr ""
1047
-
1048
- #: includes/classes/class.query-log.php:1139
1049
- msgid "Log entries navigation"
1050
- msgstr ""
1051
-
1052
- #: includes/classes/class.query-log.php:1269
1053
- #, php-format
1054
- msgid "1 entry"
1055
- msgid_plural "%d entries"
1056
- msgstr[0] ""
1057
- msgstr[1] ""
1058
-
1059
- #: includes/classes/class.query-log.php:1408
1060
- #: includes/classes/class.query-log.php:1458
1061
- msgid "Select all"
1062
- msgstr ""
1063
-
1064
- #: includes/classes/class.query-log.php:1518
1065
- msgid "Select entry"
1066
- msgstr ""
1067
-
1068
- #: includes/classes/class.query-log.php:1539
1069
- msgid "Show more details"
1070
- msgstr ""
1071
-
1072
- #: includes/classes/class.query-log.php:1563
1073
- msgid "Filter by Date"
1074
- msgstr ""
1075
-
1076
- #: includes/classes/class.query-log.php:1612
1077
- msgid "Filter by User"
1078
- msgstr ""
1079
-
1080
- #: includes/classes/class.query-log.php:1614
1081
- msgid "Filter by ID"
1082
- msgstr ""
1083
-
1084
- #: includes/classes/class.query-log.php:2198
1085
- msgid "Profile Update Removal"
1086
- msgstr ""
1087
-
1088
- #: includes/classes/class.query-log.php:2200
1089
- msgid "Profile Cover Upload"
1090
- msgstr ""
1091
-
1092
- #: includes/classes/class.query-log.php:2205
1093
- msgid "Add Activity to Favorites"
1094
- msgstr ""
1095
-
1096
- #: includes/classes/class.query-log.php:2206
1097
- msgid "Remove Activity from Favorites"
1098
- msgstr ""
1099
-
1100
- #: includes/classes/class.query-log.php:2218
1101
- msgid "New Group Cover"
1102
- msgstr ""
1103
-
1104
- #: includes/classes/class.query-log.php:2258
1105
- msgid "Affiliate Signup (AffiliateWP)"
1106
- msgstr ""
1107
-
1108
- #: includes/classes/class.query-log.php:2259
1109
- msgid "Referred Visit (AffiliateWP)"
1110
- msgstr ""
1111
-
1112
- #: includes/classes/class.query-log.php:2260
1113
- msgid "Affiliate Referral (AffiliateWP)"
1114
- msgstr ""
1115
-
1116
- #: includes/classes/class.query-log.php:2261
1117
- msgid "Referral Refund (AffiliateWP)"
1118
- msgstr ""
1119
-
1120
- #: includes/classes/class.query-log.php:2265
1121
- msgid "Adding a Rating"
1122
- msgstr ""
1123
-
1124
- #: includes/classes/class.query-log.php:2266
1125
- msgid "Receiving a Rating"
1126
- msgstr ""
1127
-
1128
- #: includes/classes/class.query-log.php:2281
1129
- msgid "Recurring Payout"
1130
- msgstr ""
1131
-
1132
- #: includes/classes/class.query-log.php:2285
1133
- msgid "Badge Reward"
1134
- msgstr ""
1135
-
1136
- #: includes/classes/class.query-log.php:2293
1137
- msgid "buyCRED Purchase (Bank Transfer)"
1138
- msgstr ""
1139
-
1140
- #: includes/classes/class.query-log.php:2298
1141
- #: addons/coupons/myCRED-addon-coupons.php:460
1142
- msgid "Coupon Usage"
1143
- msgstr ""
1144
-
1145
- #: includes/classes/class.query-log.php:2303
1146
- msgid "Store Reward (WooCommerce)"
1147
- msgstr ""
1148
-
1149
- #: includes/classes/class.query-log.php:2304
1150
- msgid "Product Review (WooCommerce)"
1151
- msgstr ""
1152
-
1153
- #: includes/classes/class.query-log.php:2308
1154
- msgid "Store Reward (MarketPress)"
1155
- msgstr ""
1156
-
1157
- #: includes/classes/class.query-log.php:2327
1158
- msgid "Content Purchase"
1159
- msgstr ""
1160
-
1161
- #: includes/classes/class.query-log.php:2328
1162
- msgid "Content Sale"
1163
- msgstr ""
1164
-
1165
- #: addons/banking/myCRED-addon-banking.php:142
1166
- msgid ""
1167
- "Instead of creating %_plural% out of thin-air, all payouts are made from a "
1168
- "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
1169
- "deposited back into this account. If the central bank runs out of %_plural%, "
1170
- "no %_plural% will be paid out."
1171
- msgstr ""
1172
-
1173
- #: addons/banking/myCRED-addon-banking.php:151
1174
- msgid ""
1175
- "Offer your users interest on the %_plural% they earn on your website. The "
1176
- "interest is compounded daily."
1177
- msgstr ""
1178
-
1179
- #: addons/banking/myCRED-addon-banking.php:202
1180
- msgid "New Recurring Payout"
1181
- msgstr ""
1182
-
1183
- #: addons/banking/myCRED-addon-banking.php:203
1184
- msgid "Edit Recurring Payout"
1185
- msgstr ""
1186
-
1187
- #: addons/banking/myCRED-addon-banking.php:205
1188
- msgid "Please fill out all required fields that are highlighted in red."
1189
- msgstr ""
1190
-
1191
- #: addons/banking/myCRED-addon-banking.php:206
1192
- msgid "Are you sure you want to remove this schedule? This can not be undone!"
1193
- msgstr ""
1194
-
1195
- #: addons/banking/myCRED-addon-banking.php:271
1196
- msgid "Warning"
1197
- msgstr ""
1198
-
1199
- #: addons/banking/myCRED-addon-banking.php:271
1200
- msgid ""
1201
- "This banking service uses the WordPress CRON to schedule events. If the "
1202
- "WordPress CRON is disabled, this service will not work correctly."
1203
- msgstr ""
1204
-
1205
- #: addons/transfer/myCRED-addon-transfer.php:177
1206
- msgid "The selected point type can not be transferred."
1207
- msgstr ""
1208
-
1209
- #: addons/transfer/myCRED-addon-transfer.php:366
1210
- #: addons/buy-creds/modules/buycred-module-core.php:329
1211
- msgid "Features"
1212
- msgstr ""
1213
-
1214
- #: addons/transfer/myCRED-addon-transfer.php:393
1215
- msgid "Should the page reload once a transfer has been completed?"
1216
- msgstr ""
1217
-
1218
- #: addons/transfer/myCRED-addon-transfer.php:398
1219
- msgid "Message Length"
1220
- msgstr ""
1221
-
1222
- #: addons/transfer/myCRED-addon-transfer.php:400
1223
- msgid ""
1224
- "The maximum length of messages users can attach to a transfer. Use zero to "
1225
- "disable."
1226
- msgstr ""
1227
-
1228
- #: addons/transfer/myCRED-addon-transfer.php:449
1229
- msgid "Default Button Label"
1230
- msgstr ""
1231
-
1232
- #: addons/transfer/myCRED-addon-transfer.php:451
1233
- msgid ""
1234
- "The default transfer button label. You can override this in the shortcode or "
1235
- "widget if needed."
1236
- msgstr ""
1237
-
1238
- #: addons/transfer/myCRED-addon-transfer.php:474
1239
- msgid "Warning Messages"
1240
- msgstr ""
1241
-
1242
- #: addons/transfer/myCRED-addon-transfer.php:478
1243
- msgid "Insufficient Funds Warning"
1244
- msgstr ""
1245
-
1246
- #: addons/transfer/myCRED-addon-transfer.php:480
1247
- msgid "Message to show the user if they try to send more then they can afford."
1248
- msgstr ""
1249
-
1250
- #: addons/transfer/myCRED-addon-transfer.php:485
1251
- msgid "Limit Reached Warning"
1252
- msgstr ""
1253
-
1254
- #: addons/transfer/myCRED-addon-transfer.php:487
1255
- msgid ""
1256
- "Message to show the user once they reach their transfer limit. Ignored if no "
1257
- "limits are enforced."
1258
- msgstr ""
1259
-
1260
- #: addons/transfer/myCRED-addon-transfer.php:493
1261
- #: addons/sell-content/myCRED-addon-sell-content.php:762
1262
- msgid "Visitors Template"
1263
- msgstr ""
1264
-
1265
- #: addons/transfer/myCRED-addon-transfer.php:494
1266
- msgid ""
1267
- "The template to use when the transfer shortcode or widget is viewed by "
1268
- "someone who is not logged in."
1269
- msgstr ""
1270
-
1271
- #: addons/transfer/myCRED-addon-transfer.php:507
1272
- msgid "Limit Template"
1273
- msgstr ""
1274
-
1275
- #: addons/transfer/myCRED-addon-transfer.php:508
1276
- msgid ""
1277
- "The template to use if you select to show the transfer limit in the transfer "
1278
- "shortcode or widget. Ignored if there is no limit enforced."
1279
- msgstr ""
1280
-
1281
- #: addons/transfer/myCRED-addon-transfer.php:523
1282
- msgid "Balance Template"
1283
- msgstr ""
1284
-
1285
- #: addons/transfer/myCRED-addon-transfer.php:524
1286
- msgid ""
1287
- "The template to use if you select to show the users balance in the transfer "
1288
- "shortcode or widget. Ignored if balances are not shown."
1289
- msgstr ""
1290
-
1291
- #: addons/ranks/myCRED-addon-ranks.php:216
1292
- #, php-format
1293
- msgid "Ranks for %s"
1294
- msgstr ""
1295
-
1296
- #: addons/ranks/myCRED-addon-ranks.php:230
1297
- #: addons/ranks/myCRED-addon-ranks.php:1375
1298
- msgid "Rank Logo"
1299
- msgstr ""
1300
-
1301
- #: addons/ranks/myCRED-addon-ranks.php:231
1302
- msgid "Set rank logo"
1303
- msgstr ""
1304
-
1305
- #: addons/ranks/myCRED-addon-ranks.php:232
1306
- msgid "Remove rank logo"
1307
- msgstr ""
1308
-
1309
- #: addons/ranks/myCRED-addon-ranks.php:233
1310
- msgid "Use as Logo"
1311
- msgstr ""
1312
-
1313
- #: addons/ranks/myCRED-addon-ranks.php:288
1314
- msgid "Rank Enabled."
1315
- msgstr ""
1316
-
1317
- #: addons/ranks/myCRED-addon-ranks.php:289
1318
- msgid "Rank Saved."
1319
- msgstr ""
1320
-
1321
- #: addons/ranks/myCRED-addon-ranks.php:895
1322
- msgid "No ranks exists."
1323
- msgstr ""
1324
-
1325
- #: addons/ranks/myCRED-addon-ranks.php:1189
1326
- msgid "Rank Setup"
1327
- msgstr ""
1328
-
1329
- #: addons/ranks/myCRED-addon-ranks.php:1230
1330
- msgid "Minimum Balance Requirement"
1331
- msgstr ""
1332
-
1333
- #: addons/ranks/myCRED-addon-ranks.php:1236
1334
- msgid "Maximum Balance Requirement"
1335
- msgstr ""
1336
-
1337
- #: addons/ranks/myCRED-addon-ranks.php:1395
1338
- msgid "Rank Post Type"
1339
- msgstr ""
1340
-
1341
- #: addons/ranks/myCRED-addon-ranks.php:1398
1342
- msgid "Make Ranks Public"
1343
- msgstr ""
1344
-
1345
- #: addons/ranks/myCRED-addon-ranks.php:1402
1346
- msgid "Rank SLUG"
1347
- msgstr ""
1348
-
1349
- #: addons/ranks/myCRED-addon-ranks.php:1404
1350
- msgid ""
1351
- "If you have selected to make Ranks public, you can select what rank archive "
1352
- "URL slug you want to use. Ignored if Ranks are not set to be public."
1353
- msgstr ""
1354
-
1355
- #: addons/ranks/myCRED-addon-ranks.php:1425
1356
- msgid "Option to set in which order Ranks should be shown on the archive page."
1357
- msgstr ""
1358
-
1359
- #: addons/ranks/myCRED-addon-ranks.php:1432
1360
- msgid "Rank Behaviour"
1361
- msgstr ""
1362
-
1363
- #: addons/ranks/myCRED-addon-ranks.php:1437
1364
- msgid "Based on Current Balances"
1365
- msgstr ""
1366
-
1367
- #: addons/ranks/myCRED-addon-ranks.php:1439
1368
- msgid ""
1369
- "Users can be promoted or demoted depending on where their balance fits in "
1370
- "amongst your ranks."
1371
- msgstr ""
1372
-
1373
- #: addons/ranks/myCRED-addon-ranks.php:1445
1374
- msgid "Based on Total Balances"
1375
- msgstr ""
1376
-
1377
- #: addons/ranks/myCRED-addon-ranks.php:1447
1378
- msgid ""
1379
- "Users can only be promoted and gain higher ranks even if their balance "
1380
- "decreases."
1381
- msgstr ""
1382
-
1383
- #: addons/ranks/myCRED-addon-ranks.php:1454
1384
- msgid "Tools"
1385
- msgstr ""
1386
-
1387
- #: addons/ranks/myCRED-addon-ranks.php:1455
1388
- msgid ""
1389
- "Use this button to calculate or recalculate each individual users total "
1390
- "balance if you think your users total balances are incorrect, or if you "
1391
- "switch from Ranks being based on users current balance to total balance."
1392
- msgstr ""
1393
-
1394
- #: addons/ranks/myCRED-addon-ranks.php:1460
1395
- #: addons/badges/myCRED-addon-badges.php:1130
1396
- msgid "Third-party Integrations"
1397
- msgstr ""
1398
-
1399
- #: addons/ranks/myCRED-addon-ranks.php:1495
1400
- #: addons/ranks/myCRED-addon-ranks.php:1536
1401
- msgid ""
1402
- "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
1403
- "for the title and %rank_logo% to show the rank logo. HTML is allowed."
1404
- msgstr ""
1405
-
1406
- #: addons/ranks/myCRED-addon-ranks.php:1499
1407
- #: addons/ranks/myCRED-addon-ranks.php:1540
1408
- #: addons/badges/myCRED-addon-badges.php:1162
1409
- #: addons/badges/myCRED-addon-badges.php:1196
1410
- msgid "Not installed"
1411
- msgstr ""
1412
-
1413
- #: addons/ranks/myCRED-addon-ranks.php:1518
1414
- msgid "Include in Topic Replies"
1415
- msgstr ""
1416
-
1417
- #: addons/ranks/myCRED-addon-ranks.php:1520
1418
- msgid "Include in Topic Replies and Profile"
1419
- msgstr ""
1420
-
1421
- #: addons/notifications/myCRED-addon-notifications.php:200
1422
- msgid "Restore to default"
1423
- msgstr ""
1424
-
1425
- #: addons/notifications/myCRED-addon-notifications.php:216
1426
- msgid ""
1427
- "Number of seconds before a notice is automatically removed after being shown "
1428
- "to user. Use zero to disable."
1429
- msgstr ""
1430
-
1431
- #: addons/email-notices/myCRED-addon-email-notices.php:128
1432
- #: addons/email-notices/myCRED-addon-email-notices.php:134
1433
- #: addons/email-notices/myCRED-addon-email-notices.php:140
1434
- #: addons/email-notices/myCRED-addon-email-notices.php:196
1435
- #: addons/email-notices/myCRED-addon-email-notices.php:197
1436
- msgid "Email Notifications"
1437
- msgstr ""
1438
-
1439
- #: addons/email-notices/myCRED-addon-email-notices.php:129
1440
- msgid "Email Notification"
1441
- msgstr ""
1442
-
1443
- #: addons/email-notices/myCRED-addon-email-notices.php:132
1444
- msgid "Edit Email Notification"
1445
- msgstr ""
1446
-
1447
- #: addons/email-notices/myCRED-addon-email-notices.php:133
1448
- msgid "New Email Notification"
1449
- msgstr ""
1450
-
1451
- #: addons/email-notices/myCRED-addon-email-notices.php:136
1452
- msgid "Search Email Notifications"
1453
- msgstr ""
1454
-
1455
- #: addons/email-notices/myCRED-addon-email-notices.php:137
1456
- msgid "No email notifications found"
1457
- msgstr ""
1458
-
1459
- #: addons/email-notices/myCRED-addon-email-notices.php:138
1460
- msgid "No email notifications found in Trash"
1461
- msgstr ""
1462
-
1463
- #: addons/email-notices/myCRED-addon-email-notices.php:176
1464
- msgid "Email Notice Activated."
1465
- msgstr ""
1466
-
1467
- #: addons/email-notices/myCRED-addon-email-notices.php:351
1468
- #: addons/email-notices/myCRED-addon-email-notices.php:591
1469
- msgid "All types"
1470
- msgstr ""
1471
-
1472
- #: addons/email-notices/myCRED-addon-email-notices.php:709
1473
- msgid "Instance Related"
1474
- msgstr ""
1475
-
1476
- #: addons/email-notices/myCRED-addon-email-notices.php:715
1477
- msgid "The users new balance"
1478
- msgstr ""
1479
-
1480
- #: addons/email-notices/myCRED-addon-email-notices.php:723
1481
- msgid "The users old balance"
1482
- msgstr ""
1483
-
1484
- #: addons/email-notices/myCRED-addon-email-notices.php:731
1485
- msgid "The amount of points gained or lost in this instance"
1486
- msgstr ""
1487
-
1488
- #: addons/email-notices/myCRED-addon-email-notices.php:739
1489
- msgid "The log entry"
1490
- msgstr ""
1491
-
1492
- #: addons/email-notices/myCRED-addon-email-notices.php:744
1493
- #, php-format
1494
- msgid "You can also use %s."
1495
- msgstr ""
1496
-
1497
- #: addons/email-notices/myCRED-addon-email-notices.php:744
1498
- msgid "user related template tags"
1499
- msgstr ""
1500
-
1501
- #: addons/email-notices/myCRED-addon-email-notices.php:875
1502
- msgid "Badge Add-on"
1503
- msgstr ""
1504
-
1505
- #: addons/email-notices/myCRED-addon-email-notices.php:876
1506
- msgid "user gains a badge"
1507
- msgstr ""
1508
-
1509
- #: addons/email-notices/myCRED-addon-email-notices.php:1408
1510
- msgid "Plain Text"
1511
- msgstr ""
1512
-
1513
- #: addons/email-notices/myCRED-addon-email-notices.php:1416
1514
- #: addons/banking/services/mycred-service-payouts.php:825
1515
- msgid "Schedule"
1516
- msgstr ""
1517
-
1518
- #: addons/email-notices/myCRED-addon-email-notices.php:1438
1519
- msgid "Filter Email Subjects"
1520
- msgstr ""
1521
-
1522
- #: addons/email-notices/myCRED-addon-email-notices.php:1441
1523
- msgid "Filter Email Body"
1524
- msgstr ""
1525
-
1526
- #: addons/email-notices/myCRED-addon-email-notices.php:1463
1527
- msgid "Defaults"
1528
- msgstr ""
1529
-
1530
- #: addons/email-notices/myCRED-addon-email-notices.php:1496
1531
- msgid "Default CSS Styling"
1532
- msgstr ""
1533
-
1534
- #: addons/email-notices/myCRED-addon-email-notices.php:1498
1535
- msgid ""
1536
- "Default email CSS styling. Note that if you intend to send HTML emails, you "
1537
- "should use inline CSS styling for best results."
1538
- msgstr ""
1539
-
1540
- #: addons/stats/myCRED-addon-stats.php:58
1541
- msgid "Statistics"
1542
- msgstr ""
1543
-
1544
- #: addons/stats/myCRED-addon-stats.php:172
1545
- msgid "Statistics Color"
1546
- msgstr ""
1547
-
1548
- #: addons/stats/myCRED-addon-stats.php:176
1549
- msgid "Positive Values"
1550
- msgstr ""
1551
-
1552
- #: addons/stats/myCRED-addon-stats.php:182
1553
- msgid "Negative Values"
1554
- msgstr ""
1555
-
1556
- #: addons/stats/myCRED-addon-stats.php:248
1557
- msgid "Overview"
1558
- msgstr ""
1559
-
1560
- #: addons/stats/myCRED-addon-stats.php:310
1561
- msgid "Refresh"
1562
- msgstr ""
1563
-
1564
- #: addons/stats/myCRED-addon-stats.php:417
1565
- msgid "Your log is empty. No statistics can be shown."
1566
- msgstr ""
1567
-
1568
- #: addons/badges/myCRED-addon-badges.php:275
1569
- msgid "Badge Enabled."
1570
- msgstr ""
1571
-
1572
- #: addons/badges/myCRED-addon-badges.php:276
1573
- msgid "Badge Saved."
1574
- msgstr ""
1575
-
1576
- #: addons/badges/myCRED-addon-badges.php:398
1577
- msgid "First Level"
1578
- msgstr ""
1579
-
1580
- #: addons/badges/myCRED-addon-badges.php:510
1581
- #: addons/badges/myCRED-addon-badges.php:801
1582
- msgid "Add Level"
1583
- msgstr ""
1584
-
1585
- #: addons/badges/myCRED-addon-badges.php:511
1586
- #: addons/badges/myCRED-addon-badges.php:802
1587
- msgid "Remove Level"
1588
- msgstr ""
1589
-
1590
- #: addons/badges/myCRED-addon-badges.php:512
1591
- #: addons/badges/myCRED-addon-badges.php:755
1592
- #: addons/badges/myCRED-addon-badges.php:818
1593
- #: addons/badges/myCRED-addon-badges.php:823
1594
- msgid "Set Image"
1595
- msgstr ""
1596
-
1597
- #: addons/badges/myCRED-addon-badges.php:513
1598
- #: addons/badges/myCRED-addon-badges.php:755
1599
- #: addons/badges/myCRED-addon-badges.php:823
1600
- msgid "Change Image"
1601
- msgstr ""
1602
-
1603
- #: addons/badges/myCRED-addon-badges.php:514
1604
- msgid "Are you sure you want to remove this level?"
1605
- msgstr ""
1606
-
1607
- #: addons/badges/myCRED-addon-badges.php:515
1608
- #: addons/badges/myCRED-addon-badges.php:819
1609
- #: addons/badges/myCRED-addon-badges.php:1288
1610
- msgid "Level"
1611
- msgstr ""
1612
-
1613
- #: addons/badges/myCRED-addon-badges.php:518
1614
- #: addons/badges/myCRED-addon-badges.php:921
1615
- #: addons/badges/includes/mycred-badge-functions.php:272
1616
- msgctxt "Comparison of badge requirements. A AND B"
1617
- msgid "AND"
1618
- msgstr ""
1619
-
1620
- #: addons/badges/myCRED-addon-badges.php:519
1621
- #: addons/badges/myCRED-addon-badges.php:921
1622
- #: addons/badges/includes/mycred-badge-functions.php:270
1623
- msgctxt "Comparison of badge requirements. A OR B"
1624
- msgid "OR"
1625
- msgstr ""
1626
-
1627
- #: addons/badges/myCRED-addon-badges.php:571
1628
- msgid "Badge Setup"
1629
- msgstr ""
1630
-
1631
- #: addons/badges/myCRED-addon-badges.php:580
1632
- msgid "Default Badge Image"
1633
- msgstr ""
1634
-
1635
- #: addons/badges/myCRED-addon-badges.php:722
1636
- #: addons/badges/includes/mycred-badge-functions.php:288
1637
- msgid "This badge is manually awarded."
1638
- msgstr ""
1639
-
1640
- #: addons/badges/myCRED-addon-badges.php:758
1641
- msgid "Optional image to show when a user has not earned this badge."
1642
- msgstr ""
1643
-
1644
- #: addons/badges/myCRED-addon-badges.php:825
1645
- #, php-format
1646
- msgid "Level %d"
1647
- msgstr ""
1648
-
1649
- #: addons/badges/myCRED-addon-badges.php:849
1650
- msgid "Select Point Type"
1651
- msgstr ""
1652
-
1653
- #: addons/badges/myCRED-addon-badges.php:863
1654
- msgid "Select Reference"
1655
- msgstr ""
1656
-
1657
- #: addons/badges/myCRED-addon-badges.php:939
1658
- msgid "Reward"
1659
- msgstr ""
1660
-
1661
- #: addons/badges/myCRED-addon-badges.php:1158
1662
- #: addons/badges/myCRED-addon-badges.php:1192
1663
- msgid "Show all badges, including badges users have not yet earned."
1664
- msgstr ""
1665
-
1666
- #: addons/badges/myCRED-addon-badges.php:1251
1667
- msgid "No image set"
1668
- msgstr ""
1669
-
1670
- #: addons/badges/myCRED-addon-badges.php:1283
1671
- msgid "Select a level"
1672
- msgstr ""
1673
-
1674
- #: addons/badges/myCRED-addon-badges.php:1297
1675
- msgid "Earned"
1676
- msgstr ""
1677
-
1678
- #: addons/badges/myCRED-addon-badges.php:1406
1679
- #, php-format
1680
- msgid "A total of %d users have received this badge."
1681
- msgstr ""
1682
-
1683
- #: addons/badges/myCRED-addon-badges.php:1433
1684
- msgid "No connections where removed."
1685
- msgstr ""
1686
-
1687
- #: addons/coupons/myCRED-addon-coupons.php:251
1688
- msgid "Used"
1689
- msgstr ""
1690
-
1691
- #: addons/coupons/myCRED-addon-coupons.php:298
1692
- #: addons/coupons/myCRED-addon-coupons.php:649
1693
- #, php-format
1694
- msgid "1 time"
1695
- msgid_plural "%d times"
1696
- msgstr[0] ""
1697
- msgstr[1] ""
1698
-
1699
- #: addons/coupons/myCRED-addon-coupons.php:486
1700
- msgid ""
1701
- "Warning. The previous expiration date set for this coupon was formatted "
1702
- "incorrectly and was deleted. If you still want the coupon to expire, please "
1703
- "enter a new date or leave empty to disable."
1704
- msgstr ""
1705
-
1706
- #: addons/coupons/myCRED-addon-coupons.php:515
1707
- msgid "The amount of %plural% a user receives when redeeming this coupon."
1708
- msgstr ""
1709
-
1710
- #: addons/coupons/myCRED-addon-coupons.php:568
1711
- msgid ""
1712
- "The maximum number of times this coupon can be used in total. Once this is "
1713
- "reached, the coupon is automatically trashed."
1714
- msgstr ""
1715
-
1716
- #: addons/coupons/myCRED-addon-coupons.php:705
1717
- msgid "Message Templates"
1718
- msgstr ""
1719
-
1720
- #: addons/coupons/myCRED-addon-coupons.php:748
1721
- msgid "Excluded Message"
1722
- msgstr ""
1723
-
1724
- #: addons/coupons/myCRED-addon-coupons.php:750
1725
- msgid ""
1726
- "Message to show when a user is excluded from the point type the coupon gives."
1727
- msgstr ""
1728
-
1729
- #: addons/sell-content/myCRED-addon-sell-content.php:153
1730
- msgid "Error"
1731
- msgstr ""
1732
-
1733
- #: addons/sell-content/myCRED-addon-sell-content.php:378
1734
- msgid "Users profit share when their content is purchased."
1735
- msgstr ""
1736
-
1737
- #: addons/sell-content/myCRED-addon-sell-content.php:394
1738
- #: addons/sell-content/myCRED-addon-sell-content.php:409
1739
- #, php-format
1740
- msgctxt "Points Name"
1741
- msgid "%s Profit Share"
1742
- msgstr ""
1743
-
1744
- #: addons/sell-content/myCRED-addon-sell-content.php:397
1745
- msgid "Not accepted as payment."
1746
- msgstr ""
1747
-
1748
- #: addons/sell-content/myCRED-addon-sell-content.php:412
1749
- #, php-format
1750
- msgctxt "Points Name"
1751
- msgid "User can not pay using %s"
1752
- msgstr ""
1753
-
1754
- #: addons/sell-content/myCRED-addon-sell-content.php:424
1755
- #, php-format
1756
- msgctxt "Buying Points"
1757
- msgid "%s Profit Share"
1758
- msgstr ""
1759
-
1760
- #: addons/sell-content/myCRED-addon-sell-content.php:427
1761
- msgid "Leave empty to use the default."
1762
- msgstr ""
1763
-
1764
- #: addons/sell-content/myCRED-addon-sell-content.php:512
1765
- msgid "Which post type(s) content field do you want to sell access to?"
1766
- msgstr ""
1767
 
1768
- #: addons/sell-content/myCRED-addon-sell-content.php:582
1769
- msgid "Which point type(s) can be used as payment for accessing content?"
1770
- msgstr ""
1771
 
1772
- #: addons/sell-content/myCRED-addon-sell-content.php:635
1773
- #: addons/sell-content/myCRED-addon-sell-content.php:1019
1774
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:198
1775
- msgid "Hour(s)"
1776
- msgstr ""
1777
 
1778
- #: addons/sell-content/myCRED-addon-sell-content.php:643
1779
- msgid "Default Status"
1780
- msgstr ""
1781
 
1782
- #: addons/sell-content/myCRED-addon-sell-content.php:651
1783
- msgid "Default Price"
1784
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1785
 
1786
- #: addons/sell-content/myCRED-addon-sell-content.php:657
1787
- #: addons/sell-content/myCRED-addon-sell-content.php:1079
1788
- msgid "Expiration"
1789
- msgstr ""
1790
 
1791
- #: addons/sell-content/myCRED-addon-sell-content.php:659
1792
- #, php-format
1793
  msgid ""
1794
- "Option to automatically expire purchases after certain number of %s. Use "
1795
- "zero to disable."
1796
  msgstr ""
 
 
 
1797
 
1798
- #: addons/sell-content/myCRED-addon-sell-content.php:666
1799
- msgid "Option to pay a percentage of each sale with the content author."
1800
- msgstr ""
1801
 
1802
- #: addons/sell-content/myCRED-addon-sell-content.php:680
1803
- msgid "Button CSS Classes"
1804
- msgstr ""
1805
 
1806
- #: addons/sell-content/myCRED-addon-sell-content.php:689
1807
- msgid "Payment log entry template"
1808
- msgstr ""
 
 
1809
 
1810
- #: addons/sell-content/myCRED-addon-sell-content.php:696
1811
- msgid "Profit Share payout log entry template"
1812
- msgstr ""
 
 
1813
 
1814
- #: addons/sell-content/myCRED-addon-sell-content.php:710
1815
- msgid "Transactions"
1816
- msgstr ""
 
1817
 
1818
- #: addons/sell-content/myCRED-addon-sell-content.php:714
1819
- msgid "Reload page after successful payments."
1820
- msgstr ""
 
1821
 
1822
- #: addons/sell-content/myCRED-addon-sell-content.php:721
1823
- msgid ""
1824
- "Option to show a custom button label while the payment is being processed. "
1825
- "HTML is allowed."
1826
- msgstr ""
1827
 
1828
- #: addons/sell-content/myCRED-addon-sell-content.php:728
1829
- msgid "Purchase Template"
1830
- msgstr ""
1831
 
1832
- #: addons/sell-content/myCRED-addon-sell-content.php:729
1833
- msgid ""
1834
- "The content will be replaced with this template when viewed by a user that "
1835
- "has not paid for the content but can afford to pay."
1836
- msgstr ""
1837
 
1838
- #: addons/sell-content/myCRED-addon-sell-content.php:745
1839
- msgid "Insufficient Funds Template"
1840
- msgstr ""
 
1841
 
1842
- #: addons/sell-content/myCRED-addon-sell-content.php:746
1843
- msgid ""
1844
- "The content will be replaced with this template when viewed by a user that "
1845
- "has not paid for the content and can not afford to pay."
1846
- msgstr ""
1847
 
1848
- #: addons/sell-content/myCRED-addon-sell-content.php:763
1849
- msgid ""
1850
- "The content will be replaced with this template when viewed by someone who "
1851
- "is not logged in on your website."
1852
- msgstr ""
1853
 
1854
- #: addons/sell-content/myCRED-addon-sell-content.php:1056
1855
- msgid "Never expires"
1856
- msgstr ""
 
1857
 
1858
- #: addons/banking/services/mycred-service-central.php:110
1859
- msgid "Central Bank Account"
1860
- msgstr ""
1861
 
1862
- #: addons/banking/services/mycred-service-central.php:113
1863
- msgid "The ID of the user representing the central bank."
1864
- msgstr ""
1865
 
1866
- #: addons/banking/services/mycred-service-interest.php:429
1867
- msgid "Daily Compound Schedule"
1868
  msgstr ""
 
 
1869
 
1870
- #: addons/banking/services/mycred-service-interest.php:432
1871
- #: addons/banking/services/mycred-service-interest.php:457
1872
- #: addons/banking/services/mycred-service-payouts.php:728
1873
- msgid "Year"
1874
- msgstr ""
1875
 
1876
- #: addons/banking/services/mycred-service-interest.php:433
1877
- #: addons/banking/services/mycred-service-interest.php:458
1878
- #: addons/banking/services/mycred-service-payouts.php:734
1879
- #: addons/banking/includes/mycred-banking-functions.php:95
1880
- msgid "Month"
1881
- msgstr ""
1882
 
1883
- #: addons/banking/services/mycred-service-interest.php:434
1884
- #: addons/banking/services/mycred-service-interest.php:459
1885
- #: addons/banking/includes/mycred-banking-functions.php:85
1886
- msgid "Day"
1887
- msgstr ""
1888
 
1889
- #: addons/banking/services/mycred-service-interest.php:454
1890
- msgid "Payout Schedule"
1891
- msgstr ""
1892
 
1893
- #: addons/banking/services/mycred-service-interest.php:493
1894
- msgid "Payout Frequency"
 
 
1895
  msgstr ""
 
 
1896
 
1897
- #: addons/banking/services/mycred-service-interest.php:506
1898
- msgid "Payout Log Table"
1899
- msgstr ""
 
 
1900
 
1901
- #: addons/banking/services/mycred-service-interest.php:519
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1902
  msgid ""
1903
- "Changing the payout period once the service is enabled, will only take "
1904
- "effect once the currently scheduled payout runs. To change this, you will "
1905
- "also need to adjust the payout schedule above."
1906
  msgstr ""
 
 
1907
 
1908
- #: addons/banking/services/mycred-service-interest.php:524
1909
- msgid "Exclude by ID"
1910
- msgstr ""
1911
 
1912
- #: addons/banking/services/mycred-service-interest.php:535
1913
- msgid "Exclude by Role"
1914
- msgstr ""
1915
 
1916
- #: addons/banking/services/mycred-service-interest.php:539
1917
- msgid "Roles to exclude"
1918
- msgstr ""
 
1919
 
1920
- #: addons/banking/services/mycred-service-interest.php:655
1921
- msgid "Leave empty to pay the default rate."
1922
- msgstr ""
1923
 
1924
- #: addons/banking/services/mycred-service-payouts.php:30
1925
- msgid "Waiting to Start"
1926
- msgstr ""
1927
 
1928
- #: addons/banking/services/mycred-service-payouts.php:32
1929
- msgid "Running"
1930
- msgstr ""
1931
 
1932
- #: addons/banking/services/mycred-service-payouts.php:33
1933
- msgid "Finished"
1934
- msgstr ""
 
1935
 
1936
- #: addons/banking/services/mycred-service-payouts.php:34
1937
- msgid "Stopped"
1938
- msgstr ""
1939
 
1940
- #: addons/banking/services/mycred-service-payouts.php:446
1941
- msgid "Not yet started"
 
 
1942
  msgstr ""
 
 
1943
 
1944
- #: addons/banking/services/mycred-service-payouts.php:457
1945
- msgid "Currently Running"
1946
- msgstr ""
1947
 
1948
- #: addons/banking/services/mycred-service-payouts.php:472
1949
- msgid "View Schedule"
 
 
1950
  msgstr ""
 
 
1951
 
1952
- #: addons/banking/services/mycred-service-payouts.php:472
1953
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
1954
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
1955
- msgid "View"
1956
- msgstr ""
1957
 
1958
- #: addons/banking/services/mycred-service-payouts.php:472
1959
- msgid "Delete Schedule"
1960
- msgstr ""
1961
 
1962
- #: addons/banking/services/mycred-service-payouts.php:523
1963
- #: addons/banking/services/mycred-service-payouts.php:766
1964
- msgid "Min. Balance"
1965
- msgstr ""
1966
 
1967
- #: addons/banking/services/mycred-service-payouts.php:526
1968
- #: addons/banking/services/mycred-service-payouts.php:773
1969
- msgid "Max. Balance"
1970
- msgstr ""
 
 
 
1971
 
1972
- #: addons/banking/services/mycred-service-payouts.php:531
1973
- msgid "Exclude Users"
1974
- msgstr ""
1975
 
1976
- #: addons/banking/services/mycred-service-payouts.php:533
1977
- msgid "Include Users"
1978
- msgstr ""
1979
 
1980
- #: addons/banking/services/mycred-service-payouts.php:540
1981
- msgid "Exclude Roles"
1982
- msgstr ""
1983
 
1984
- #: addons/banking/services/mycred-service-payouts.php:542
1985
- msgid "Include Roles"
1986
- msgstr ""
1987
 
1988
- #: addons/banking/services/mycred-service-payouts.php:559
1989
- #: addons/banking/services/mycred-service-payouts.php:879
1990
- msgid "Job Title"
1991
- msgstr ""
1992
 
1993
- #: addons/banking/services/mycred-service-payouts.php:573
1994
- msgid "Start Date"
1995
- msgstr ""
1996
 
1997
- #: addons/banking/services/mycred-service-payouts.php:579
1998
- msgid "Eligible"
 
 
1999
  msgstr ""
 
 
2000
 
2001
- #: addons/banking/services/mycred-service-payouts.php:580
2002
- #, php-format
2003
- msgid "1 User"
2004
- msgid_plural "%d Users"
2005
- msgstr[0] ""
2006
- msgstr[1] ""
2007
 
2008
- #: addons/banking/services/mycred-service-payouts.php:585
2009
- msgid "Runs"
2010
- msgstr ""
 
 
 
2011
 
2012
- #: addons/banking/services/mycred-service-payouts.php:586
2013
- msgid "Infinite"
2014
- msgstr ""
2015
 
2016
- #: addons/banking/services/mycred-service-payouts.php:609
2017
- msgid "Will payout even if the central bank account has run out of funds."
2018
- msgstr ""
2019
 
2020
- #: addons/banking/services/mycred-service-payouts.php:614
2021
- msgid "Paid Out"
2022
- msgstr ""
2023
 
2024
- #: addons/banking/services/mycred-service-payouts.php:615
2025
- msgid "Completed"
2026
- msgstr ""
2027
 
2028
- #: addons/banking/services/mycred-service-payouts.php:616
2029
- msgid "Misses"
2030
- msgstr ""
2031
 
2032
- #: addons/banking/services/mycred-service-payouts.php:617
2033
- msgid "Runs Left"
2034
- msgstr ""
2035
 
2036
- #: addons/banking/services/mycred-service-payouts.php:637
2037
- msgid ""
2038
- "A miss is when a payout was declined by the plugin. This can be due to "
2039
- "custom code declining the payout or if the user is excluded."
2040
- msgstr ""
2041
 
2042
- #: addons/banking/services/mycred-service-payouts.php:682
2043
- msgid "Schedule Title"
2044
- msgstr ""
2045
 
2046
- #: addons/banking/services/mycred-service-payouts.php:694
2047
- #: addons/banking/services/mycred-service-payouts.php:881
2048
- msgid "Frequency"
2049
- msgstr ""
 
 
 
 
2050
 
2051
- #: addons/banking/services/mycred-service-payouts.php:715
2052
- msgid "Payout even if the central bank account runs out of funds."
2053
- msgstr ""
 
 
2054
 
2055
- #: addons/banking/services/mycred-service-payouts.php:722
2056
- msgid "First Payout"
2057
- msgstr ""
2058
 
2059
- #: addons/banking/services/mycred-service-payouts.php:754
2060
- msgid "Repeat"
2061
- msgstr ""
2062
 
2063
- #: addons/banking/services/mycred-service-payouts.php:756
2064
- msgid "Use -1 for infinite runs."
2065
- msgstr ""
2066
 
2067
- #: addons/banking/services/mycred-service-payouts.php:784
2068
- msgid "Limit by ID"
2069
- msgstr ""
2070
 
2071
- #: addons/banking/services/mycred-service-payouts.php:798
2072
- msgid "Limit by Role(s)"
2073
- msgstr ""
2074
 
2075
- #: addons/banking/services/mycred-service-payouts.php:846
2076
- msgid "Include:"
2077
- msgstr ""
2078
 
2079
- #: addons/banking/services/mycred-service-payouts.php:847
2080
- msgid "Exclude:"
2081
- msgstr ""
2082
 
2083
- #: addons/banking/services/mycred-service-payouts.php:872
2084
  msgid ""
2085
- "As long as this service remains disabled, none of your scheduled payouts "
2086
- "will run!"
2087
- msgstr ""
2088
-
2089
- #: addons/banking/services/mycred-service-payouts.php:875
2090
- msgid "Schedules"
2091
  msgstr ""
 
 
2092
 
2093
- #: addons/banking/services/mycred-service-payouts.php:882
2094
- msgid "Last Ran"
2095
- msgstr ""
2096
 
2097
- #: addons/banking/services/mycred-service-payouts.php:883
2098
- msgid "Next Run"
2099
  msgstr ""
 
 
2100
 
2101
- #: addons/banking/services/mycred-service-payouts.php:891
2102
- msgid "No schedules found."
2103
- msgstr ""
2104
 
2105
- #: addons/banking/services/mycred-service-payouts.php:955
2106
- msgid "Schedule Added"
2107
- msgstr ""
2108
 
2109
- #: addons/banking/services/mycred-service-payouts.php:962
2110
  msgid ""
2111
- "While the recurring payout has been successfully saved, based on the limits "
2112
- "you set, right now there are no users that are eligible for a payout!"
2113
  msgstr ""
 
2114
 
2115
- #: addons/banking/services/mycred-service-payouts.php:974
2116
- #: addons/banking/services/mycred-service-payouts.php:988
2117
- msgid "Schedule not found. Please refresh this page and try again."
2118
- msgstr ""
2119
 
2120
- #: addons/banking/services/mycred-service-payouts.php:993
2121
- msgid "Schedule Deleted"
2122
- msgstr ""
 
2123
 
2124
- #: addons/banking/includes/mycred-banking-functions.php:80
2125
- msgid "Hour"
2126
- msgstr ""
 
2127
 
2128
- #: addons/banking/includes/mycred-banking-functions.php:90
2129
- msgid "Week"
2130
- msgstr ""
2131
 
2132
- #: addons/banking/includes/mycred-banking-functions.php:100
2133
- msgid "Quarter"
2134
- msgstr ""
2135
 
2136
- #: addons/banking/includes/mycred-banking-functions.php:105
2137
- msgid "Semiannual"
2138
- msgstr ""
2139
 
2140
- #: addons/banking/includes/mycred-banking-functions.php:110
2141
- msgid "Annual"
2142
- msgstr ""
2143
 
2144
- #: addons/banking/includes/mycred-banking-functions.php:283
2145
- msgid "A title must be set."
2146
- msgstr ""
2147
 
2148
- #: addons/banking/includes/mycred-banking-functions.php:290
2149
- msgid "The amount to payout can not be zero."
2150
- msgstr ""
2151
 
2152
- #: addons/banking/includes/mycred-banking-functions.php:296
2153
- msgid "Start date can not be in the past."
2154
- msgstr ""
2155
 
2156
- #: addons/banking/includes/mycred-banking-functions.php:303
2157
- msgid "Repeat can not be zero."
2158
- msgstr ""
2159
 
2160
- #: addons/banking/includes/mycred-banking-functions.php:309
2161
- msgid "Duplicate schedule."
2162
  msgstr ""
 
 
 
 
 
 
2163
 
2164
- #: addons/gateway/carts/mycred-woocommerce.php:30
2165
- msgid "Let users pay using points."
 
 
2166
  msgstr ""
 
 
2167
 
2168
- #: addons/gateway/carts/mycred-woocommerce.php:270
2169
- #, php-format
2170
- msgid "%s Payment"
2171
- msgstr ""
2172
 
2173
- #: addons/gateway/carts/mycred-woocommerce.php:422
2174
- #, php-format
2175
- msgctxt "%s = Point amount formatted"
2176
- msgid "Refunded %s"
2177
- msgstr ""
2178
 
2179
- #: addons/transfer/includes/mycred-transfer-widgets.php:113
2180
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
2181
- #: addons/buy-creds/modules/buycred-module-pending.php:549
2182
- #: addons/buy-creds/modules/buycred-module-core.php:1487
2183
- msgid "Recipient"
2184
- msgstr ""
2185
 
2186
- #: addons/transfer/includes/mycred-transfer-widgets.php:117
2187
- msgid "Recipient Placeholder"
2188
- msgstr ""
2189
 
2190
- #: addons/transfer/includes/mycred-transfer-widgets.php:125
2191
- msgid "Message for Excluded Users"
2192
- msgstr ""
2193
 
2194
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:44
2195
- #, php-format
2196
- msgid "Total %s:"
2197
- msgstr ""
2198
 
2199
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:138
2200
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:266
2201
- #, php-format
2202
- msgid "Total amount of %s in circulation"
2203
- msgstr ""
2204
 
2205
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:171
2206
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:301
2207
- msgid "Total gains (%)"
2208
  msgstr ""
 
 
2209
 
2210
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:174
2211
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:305
2212
- msgid "Total loses (%)"
2213
- msgstr ""
2214
 
2215
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:178
2216
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:308
2217
- #, php-format
2218
- msgid "Total Gained: %s"
2219
- msgstr ""
2220
 
2221
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:178
2222
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:308
2223
- #, php-format
2224
- msgid "Total Spent: %s"
2225
- msgstr ""
2226
 
2227
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:192
2228
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:322
2229
- msgid "This Year"
2230
- msgstr ""
2231
 
2232
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:196
2233
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:198
2234
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:200
2235
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
2236
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:326
2237
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:328
2238
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:330
2239
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:332
2240
- #: addons/badges/includes/mycred-badge-functions.php:268
2241
- msgid "Gained"
2242
- msgstr ""
2243
 
2244
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:197
2245
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:199
2246
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:201
2247
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
2248
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:327
2249
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:329
2250
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:331
2251
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:333
2252
- #: addons/badges/includes/mycred-badge-functions.php:268
2253
- msgid "Lost"
2254
- msgstr ""
2255
 
2256
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
2257
  msgid ""
2258
- "Most common ways your users have lost or spent points during this period."
2259
  msgstr ""
 
 
2260
 
2261
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
2262
- msgid ""
2263
- "Most common ways your users have lost or spent %_plural% during this period."
2264
- msgstr ""
2265
 
2266
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
2267
- msgid "Loses in the last 10 days"
 
 
2268
  msgstr ""
 
 
2269
 
2270
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
2271
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
2272
- msgid "No data found"
 
 
2273
  msgstr ""
 
 
2274
 
2275
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
2276
- msgid "Most common ways your users have gained points during this period."
2277
- msgstr ""
2278
 
2279
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
2280
- msgid "Most common ways your users have gained %_plural% during this period."
2281
- msgstr ""
 
2282
 
2283
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
2284
- msgid "Gains in the last 10 days"
2285
- msgstr ""
2286
 
2287
- #: addons/badges/includes/mycred-badge-functions.php:249
2288
  #, php-format
2289
- msgid "Level %s"
2290
- msgstr ""
2291
 
2292
- #: addons/badges/includes/mycred-badge-functions.php:266
2293
  #, php-format
2294
- msgctxt "\"Points\" for \"reference\" x times"
2295
- msgid "%s for \"%s\" x %d"
2296
- msgstr ""
2297
 
2298
- #: addons/badges/includes/mycred-badge-functions.php:268
2299
- #, php-format
2300
- msgctxt "\"Gained/Lost\" \"x points\" for \"reference\""
2301
- msgid "%s %s for \"%s\""
2302
- msgstr ""
2303
 
2304
- #: addons/coupons/includes/mycred-coupon-functions.php:393
2305
- msgid "An unknown error occurred. Coupon not used."
2306
- msgstr ""
2307
 
2308
- #: addons/sell-content/includes/mycred-sell-functions.php:503
2309
- #, php-format
2310
- msgctxt "Point type name"
2311
- msgid "You can not pay using %s"
2312
- msgstr ""
2313
 
2314
- #: addons/sell-content/includes/mycred-sell-functions.php:764
 
2315
  #, php-format
2316
- msgctxt "all post type name"
2317
- msgid "All %s"
2318
- msgstr ""
2319
 
2320
- #: addons/sell-content/includes/mycred-sell-functions.php:768
2321
  #, php-format
2322
- msgctxt "all post type name"
2323
- msgid "%s I manually select"
 
 
2324
  msgstr ""
 
 
 
2325
 
2326
- #: addons/sell-content/includes/mycred-sell-functions.php:772
2327
- #, php-format
2328
- msgctxt "%s = post type name"
2329
- msgid "All %s except"
2330
- msgstr ""
2331
 
2332
- #: addons/sell-content/includes/mycred-sell-functions.php:773
2333
- #, php-format
2334
- msgctxt "%s = post type name"
2335
- msgid "Comma separated list of %s IDs to exclude"
2336
- msgstr ""
2337
 
2338
- #: addons/sell-content/includes/mycred-sell-functions.php:776
2339
- #, php-format
2340
- msgctxt "%s = post type name"
2341
- msgid "Only %s"
2342
- msgstr ""
2343
 
2344
- #: addons/sell-content/includes/mycred-sell-functions.php:777
2345
- #, php-format
2346
- msgctxt "%s = post type name"
2347
- msgid "Comma separated list of %s IDs"
 
2348
  msgstr ""
 
 
 
2349
 
2350
- #: addons/sell-content/includes/mycred-sell-functions.php:789
2351
- #, php-format
2352
- msgctxt "e.g. Only \"Posts\" in \"Categories\""
2353
- msgid "Only %s in %s"
2354
  msgstr ""
 
 
2355
 
2356
- #: addons/sell-content/includes/mycred-sell-functions.php:790
2357
- #: addons/sell-content/includes/mycred-sell-functions.php:794
2358
- #: addons/sell-content/includes/mycred-sell-functions.php:800
2359
- #: addons/sell-content/includes/mycred-sell-functions.php:804
2360
- #, php-format
2361
- msgctxt "%s = taxonomy name"
2362
- msgid "Comma separated list of %s slugs"
 
2363
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2364
 
2365
- #: addons/sell-content/includes/mycred-sell-functions.php:793
2366
- #, php-format
2367
- msgctxt "e.g. Only \"Posts\" not in \"Categories\""
2368
- msgid "Only %s not in %s"
2369
- msgstr ""
2370
 
2371
- #: addons/sell-content/includes/mycred-sell-functions.php:799
2372
- #, php-format
2373
- msgctxt "e.g. Only \"Posts\" with \"Tags\""
2374
- msgid "Only %s with %s"
2375
  msgstr ""
 
 
2376
 
2377
- #: addons/sell-content/includes/mycred-sell-functions.php:803
2378
- #, php-format
2379
- msgctxt "e.g. Only \"Posts\" without \"Tags\""
2380
- msgid "Only %s without %s"
2381
- msgstr ""
2382
 
2383
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:68
2384
  msgid ""
2385
- "This shortcode can not be used in content that has not been set for sale!"
 
 
2386
  msgstr ""
 
 
 
2387
 
2388
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:70
 
 
 
 
2389
  msgid ""
2390
- "This content is currently unattainable. Apologies for the inconvenience."
 
2391
  msgstr ""
 
 
 
2392
 
2393
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:250
2394
- #, php-format
2395
- msgctxt "e.g. 10 hours"
2396
- msgid "Purchase expires in %s"
2397
- msgstr ""
2398
 
2399
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:225
2400
- #, php-format
2401
- msgctxt "%s is replaced with the point amount and name."
2402
- msgid "Received new request to purchase %s."
2403
- msgstr ""
2404
 
2405
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:576
2406
- msgid "First Name"
 
 
2407
  msgstr ""
 
 
 
2408
 
2409
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
2410
- msgid "Last Name"
2411
- msgstr ""
2412
 
2413
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:590
2414
- msgid "Address Line 1"
2415
- msgstr ""
2416
 
2417
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:598
2418
- msgid "Address Line 2"
2419
- msgstr ""
2420
 
2421
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:606
2422
- msgid "City"
2423
  msgstr ""
 
 
2424
 
2425
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:612
2426
- msgid "Zip"
2427
  msgstr ""
 
2428
 
2429
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
2430
- msgid "State"
2431
- msgstr ""
2432
 
2433
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:628
2434
- msgid "Country"
2435
- msgstr ""
2436
 
2437
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:633
2438
- msgid "Choose Country"
2439
- msgstr ""
2440
 
2441
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:691
2442
- msgctxt "buyCRED order description"
2443
- msgid "Item"
2444
- msgstr ""
2445
 
2446
- #: addons/buy-creds/modules/buycred-module-pending.php:180
2447
- #: addons/buy-creds/modules/buycred-module-pending.php:181
2448
- #: addons/buy-creds/modules/buycred-module-pending.php:182
2449
- #: addons/buy-creds/modules/buycred-module-pending.php:183
2450
- #: addons/buy-creds/modules/buycred-module-pending.php:184
2451
- #: addons/buy-creds/modules/buycred-module-pending.php:185
2452
- #: addons/buy-creds/modules/buycred-module-pending.php:186
2453
- #: addons/buy-creds/modules/buycred-module-pending.php:187
2454
- #: addons/buy-creds/modules/buycred-module-pending.php:188
2455
- msgid "Payment Updated."
2456
- msgstr ""
2457
 
2458
- #: addons/buy-creds/modules/buycred-module-pending.php:216
2459
- msgid "Pending payment successfully credited to account."
2460
  msgstr ""
 
2461
 
2462
- #: addons/buy-creds/modules/buycred-module-pending.php:218
2463
- msgid "Failed to credit the pending payment to account."
2464
- msgstr ""
2465
 
2466
- #: addons/buy-creds/modules/buycred-module-pending.php:441
2467
- msgid "Pending Payment"
2468
- msgstr ""
2469
 
2470
- #: addons/buy-creds/modules/buycred-module-pending.php:479
2471
- msgid "Trash"
2472
- msgstr ""
2473
 
2474
- #: addons/buy-creds/modules/buycred-module-pending.php:543
2475
- msgid "Payer"
 
 
2476
  msgstr ""
 
 
 
2477
 
2478
- #: addons/buy-creds/modules/buycred-module-pending.php:652
2479
- msgid "Pending request created."
2480
- msgstr ""
2481
 
2482
- #: addons/buy-creds/modules/buycred-module-pending.php:700
2483
- #, php-format
2484
- msgid "Pending payment updated by %s"
 
2485
  msgstr ""
 
 
2486
 
2487
- #: addons/buy-creds/modules/buycred-module-core.php:138
2488
- msgid "Bank Transfer"
2489
- msgstr ""
2490
 
2491
- #: addons/buy-creds/modules/buycred-module-core.php:347
2492
  msgid ""
2493
- "Minimum amount of %plural% a user must purchase. Will default to %cred%."
 
2494
  msgstr ""
 
 
2495
 
2496
- #: addons/buy-creds/modules/buycred-module-core.php:361
2497
- msgid "Redirects"
2498
- msgstr ""
 
2499
 
2500
- #: addons/buy-creds/modules/buycred-module-core.php:365
2501
- msgid ""
2502
- "Where should users be redirected to upon successfully completing a purchase. "
2503
- "You can nominate a specific URL or a page."
2504
- msgstr ""
2505
 
2506
- #: addons/buy-creds/modules/buycred-module-core.php:368
2507
- #: addons/buy-creds/modules/buycred-module-core.php:393
2508
- msgid "Redirect to Page"
2509
- msgstr ""
 
2510
 
2511
- #: addons/buy-creds/modules/buycred-module-core.php:384
2512
- #: addons/buy-creds/modules/buycred-module-core.php:409
2513
- msgid "Redirect to URL"
2514
- msgstr ""
2515
 
2516
- #: addons/buy-creds/modules/buycred-module-core.php:390
2517
- msgid ""
2518
- "Where should users be redirected to if they cancel a transaction. You can "
2519
- "nominate a specific URL or a page."
2520
- msgstr ""
2521
 
2522
- #: addons/buy-creds/modules/buycred-module-core.php:419
2523
- msgid "Login Message"
2524
- msgstr ""
2525
 
2526
- #: addons/buy-creds/modules/buycred-module-core.php:421
 
 
 
 
 
 
 
 
2527
  msgid ""
2528
- "Message to show in shortcodes when viewed by someone who is not logged in."
 
 
2529
  msgstr ""
 
 
 
2530
 
2531
- #: addons/buy-creds/modules/buycred-module-core.php:1104
2532
- msgid "Users exchange rate when buying points."
 
 
2533
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2534
 
2535
- #: addons/buy-creds/modules/buycred-module-core.php:1115
2536
- msgid "buyCRED Exchange Rates"
2537
- msgstr ""
 
2538
 
2539
- #: addons/buy-creds/modules/buycred-module-core.php:1125
2540
  #, php-format
2541
- msgctxt "Points Name"
2542
- msgid "Buying %s"
2543
- msgstr ""
2544
 
2545
- #: addons/buy-creds/modules/buycred-module-core.php:1128
2546
- msgid "This point type is not for sale."
2547
- msgstr ""
2548
 
2549
- #: addons/buy-creds/modules/buycred-module-core.php:1140
2550
- #: addons/buy-creds/modules/buycred-module-core.php:1155
2551
- #, php-format
2552
- msgctxt "Buying Points"
2553
- msgid "Buying %s"
2554
- msgstr ""
2555
 
2556
- #: addons/buy-creds/modules/buycred-module-core.php:1143
2557
- #, php-format
2558
- msgctxt "Points Name"
2559
- msgid "User can not buy %s"
2560
  msgstr ""
 
 
2561
 
2562
- #: addons/buy-creds/modules/buycred-module-core.php:1158
2563
- msgid "Leave empty to use the default rate."
2564
- msgstr ""
2565
 
2566
- #: addons/buy-creds/modules/buycred-module-core.php:1531
2567
- msgid "Pay Using"
2568
- msgstr ""
2569
 
2570
- #: addons/buy-creds/includes/buycred-functions.php:115
2571
- msgid "Unknown Gateway"
2572
- msgstr ""
2573
 
2574
- #: addons/buy-creds/gateways/bank-transfer.php:168
2575
- msgid "Continue"
2576
- msgstr ""
2577
 
2578
- #: addons/buy-creds/gateways/bank-transfer.php:196
2579
- msgid "Checkout Logo"
2580
  msgstr ""
 
 
2581
 
2582
- #: addons/buy-creds/gateways/bank-transfer.php:202
2583
- msgid "Bank Account Information"
2584
- msgstr ""
2585
 
2586
- #: addons/buy-creds/gateways/bank-transfer.php:206
2587
- msgid "Bank transfer details to show the user on the checkout page."
2588
- msgstr ""
2589
 
2590
- #: addons/buy-creds/gateways/paypal-standard.php:256
2591
- #, php-format
2592
- msgctxt "Return label. %s = Website name"
2593
- msgid "Return to %s"
2594
- msgstr ""
2595
 
2596
- #. Description of the plugin
2597
- msgid "An adaptive points management system for WordPress powered websites."
2598
- msgstr ""
2599
 
2600
- #: mycred.php:565
2601
- #, php-format
2602
- msgid "%s Log Import"
2603
- msgstr "Registro de Importe %s"
 
 
 
2604
 
2605
- #: mycred.php:566
2606
- msgid "Import log entries via a CSV file."
2607
- msgstr "Importa las entradas de registro atraves de un fichero CSV."
2608
 
2609
- #: mycred.php:577
2610
- #, php-format
2611
- msgid "%s Balance Import"
2612
- msgstr "%s balance de Importar"
 
 
 
2613
 
2614
- #: mycred.php:589
2615
  #, php-format
2616
- msgid "%s CubePoints Import"
2617
- msgstr "Importar CubePoints %s"
2618
 
2619
- #: mycred.php:590
2620
- msgid "Import CubePoints log entries and / or balances."
2621
- msgstr "Importar las entradas de registro de CubePoints y/o saldos."
2622
 
2623
- #: mycred.php:632 modules/mycred-module-management.php:316
2624
- #: modules/mycred-module-settings.php:425 modules/mycred-module-log.php:469
2625
- #: addons/transfer/myCRED-addon-transfer.php:159
2626
- #: addons/ranks/myCRED-addon-ranks.php:986
2627
- #: addons/ranks/myCRED-addon-ranks.php:1568
2628
- #: addons/badges/myCRED-addon-badges.php:702
2629
- #: addons/gateway/event-booking/mycred-eventsmanager.php:537
2630
- msgid "Processing..."
2631
- msgstr "Procesando..."
2632
 
2633
- #: mycred.php:633
2634
- msgid "Sent"
2635
- msgstr "Enviado"
2636
 
2637
- #: mycred.php:634
2638
- msgid "Error - Try Again"
2639
- msgstr "Error - Inténtelo de nuevo."
2640
 
2641
- #: mycred.php:809 mycred.php:810
2642
- #, php-format
2643
- msgid "About %s"
2644
- msgstr "Sobre"
2645
 
2646
- #: mycred.php:818 mycred.php:819
2647
- msgid "Awesome People"
2648
- msgstr "Gente genial"
2649
 
2650
- #: mycred.php:856 modules/mycred-module-management.php:558
2651
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:34
2652
- msgid "Balance"
2653
- msgstr "Saldo"
 
2654
 
2655
- #: mycred.php:923 modules/mycred-module-management.php:473
2656
- #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
2657
- #: addons/buy-creds/modules/buycred-module-pending.php:444
2658
- msgid "History"
2659
- msgstr "Historial"
2660
 
2661
- #: mycred.php:979 mycred.php:1000
2662
- #: addons/notifications/myCRED-addon-notifications.php:194
2663
- #: addons/email-notices/myCRED-addon-email-notices.php:277
2664
- #: addons/banking/services/mycred-service-interest.php:477
2665
- #: addons/gateway/event-booking/mycred-eventsmanager.php:591
2666
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:605
2667
- msgid "Setup"
2668
- msgstr "Configurar"
2669
 
2670
- #: mycred.php:981 modules/mycred-module-settings.php:21
2671
- #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
2672
- #: modules/mycred-module-network.php:270
2673
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
2674
- #: addons/buy-creds/modules/buycred-module-core.php:592
2675
- msgid "Settings"
2676
- msgstr "Configuraciones"
2677
 
2678
- #: mycred.php:1021
2679
- msgid ""
2680
- "Make sure to backup your database and files before updating, in case "
2681
- "anything goes wrong!"
2682
- msgstr ""
2683
- "Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
2684
- "archivo, por si acaso!"
2685
 
2686
- #: abstracts/mycred-abstract-hook.php:90
2687
- msgid "This Hook has no settings"
2688
- msgstr "Este gancho no ha sido configurado"
2689
 
2690
- #: abstracts/mycred-abstract-hook.php:290
2691
- #: abstracts/mycred-abstract-hook.php:361 includes/mycred-functions.php:2771
2692
- msgid "No limit"
2693
- msgstr "Sin Limite"
2694
 
2695
- #: abstracts/mycred-abstract-hook.php:362
2696
- msgid "Once every 24 hours"
2697
- msgstr "Una vez cada 24 horas"
2698
 
2699
- #: abstracts/mycred-abstract-hook.php:363
2700
- msgid "Once every 7 days"
2701
- msgstr "Una vez cada 7 dias"
2702
 
2703
- #: abstracts/mycred-abstract-hook.php:364
2704
- msgid "Once per day (reset at midnight)"
2705
- msgstr "Una vez al dia (reinicializado al medianoche)"
2706
 
2707
- #: abstracts/mycred-abstract-hook.php:371
2708
- #: addons/email-notices/myCRED-addon-email-notices.php:531
2709
- #: addons/email-notices/myCRED-addon-email-notices.php:862
2710
- #: addons/badges/myCRED-addon-badges.php:880
2711
- #: addons/banking/abstracts/mycred-abstract-service.php:351
2712
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
2713
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
2714
- #: addons/buy-creds/modules/buycred-module-core.php:376
2715
- #: addons/buy-creds/modules/buycred-module-core.php:401
2716
- #: addons/buy-creds/gateways/zombaio.php:406
2717
- msgid "Select"
2718
- msgstr "Seleccionar"
2719
 
2720
- #: abstracts/mycred-abstract-module.php:400
2721
- #: abstracts/mycred-abstract-module.php:410
2722
- msgid "Surprise"
2723
- msgstr "Sorpresa"
2724
 
2725
- #: abstracts/mycred-abstract-module.php:522
2726
- #: modules/mycred-module-network.php:218
2727
- msgid "click to close"
2728
- msgstr "haga clic para cerrar"
2729
 
2730
- #: abstracts/mycred-abstract-module.php:523
2731
- #: modules/mycred-module-network.php:219
2732
- msgid "click to open"
2733
- msgstr "haga clic para abrir"
 
 
2734
 
2735
- #: abstracts/mycred-abstract-module.php:556
2736
- #: modules/mycred-module-network.php:261
2737
- #: addons/email-notices/myCRED-addon-email-notices.php:1546
2738
- #: addons/gateway/event-booking/mycred-eventespresso3.php:451
2739
- #: addons/buy-creds/modules/buycred-module-core.php:597
2740
- msgid "Settings Updated"
2741
- msgstr "Configuraciones Actualizadas"
2742
 
2743
- #: modules/mycred-module-management.php:101
2744
- msgid "Update Balance"
2745
- msgstr "Actualizar Saldo"
 
 
2746
 
2747
- #: modules/mycred-module-management.php:114
2748
- msgid "User is excluded"
2749
- msgstr "El Usuario ha sido excluido"
 
 
2750
 
2751
- #: modules/mycred-module-management.php:122
2752
- msgid "Log Entry can not be empty"
2753
- msgstr "Entrada de registro no puede estar vacío"
 
 
2754
 
2755
- #: modules/mycred-module-management.php:130 modules/mycred-module-log.php:225
2756
- msgid "Amount can not be zero"
2757
- msgstr "La Cantidad no Puede ser Cero"
2758
 
2759
- #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
2760
- #: modules/mycred-module-log.php:910
2761
- #: includes/classes/class.query-export.php:263
2762
- #: includes/classes/class.query-export.php:399
2763
- #: includes/classes/class.query-log.php:892
2764
- #: includes/classes/class.query-log.php:905
2765
- #: addons/banking/services/mycred-service-payouts.php:740
2766
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:202
2767
- #: addons/buy-creds/modules/buycred-module-core.php:768
2768
- msgid "Date"
2769
- msgstr "Fecha"
2770
 
2771
- #: modules/mycred-module-management.php:236
2772
- #: addons/banking/services/mycred-service-interest.php:435
2773
- #: addons/banking/services/mycred-service-interest.php:460
2774
- #: addons/banking/services/mycred-service-payouts.php:746
2775
- msgid "Time"
2776
- msgstr "Tiempo"
2777
 
2778
- #. need more context: entrada or inscripción
2779
- #: modules/mycred-module-management.php:238 modules/mycred-module-log.php:96
2780
- #: includes/classes/class.query-export.php:263
2781
- #: includes/classes/class.query-export.php:406
2782
- #: includes/classes/class.query-log.php:894
2783
- #: includes/classes/class.query-log.php:907
2784
- msgid "Entry"
2785
- msgstr "Entrada"
 
2786
 
2787
- #: modules/mycred-module-management.php:314
2788
- msgid "Edit Users Balance"
2789
- msgstr "Editar saldo del usuario"
 
2790
 
2791
- #: modules/mycred-module-management.php:315
2792
- #: modules/mycred-module-settings.php:430 modules/mycred-module-log.php:468
2793
- #: addons/banking/myCRED-addon-banking.php:204
2794
- msgid "Close"
2795
- msgstr "Cerrar"
2796
 
2797
- #: modules/mycred-module-management.php:453
2798
- #: modules/mycred-module-management.php:571
2799
- #: addons/sell-content/myCRED-addon-sell-content.php:411
2800
- #: addons/buy-creds/modules/buycred-module-core.php:1142
2801
- msgid "Excluded"
2802
- msgstr "Excluido"
2803
 
2804
- #: modules/mycred-module-management.php:463
2805
- #: addons/coupons/myCRED-addon-coupons.php:309
2806
- msgid "Total"
2807
- msgstr "Total"
2808
 
2809
- #: modules/mycred-module-management.php:474
2810
- msgid "Adjust"
2811
- msgstr "Modificar"
2812
 
2813
- #: modules/mycred-module-management.php:583
2814
- #: modules/mycred-module-management.php:583
2815
- #: includes/classes/class.query-log.php:1621
2816
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:68
2817
- msgid "Edit"
2818
- msgstr "Editar"
2819
 
2820
- #: modules/mycred-module-management.php:583
2821
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
2822
- #: addons/buy-creds/modules/buycred-module-pending.php:718
2823
- msgid "Cancel"
2824
- msgstr "Cancelar"
2825
 
2826
- #: modules/mycred-module-management.php:741
2827
- #: addons/banking/services/mycred-service-payouts.php:553
2828
- msgid "ID"
2829
- msgstr "ID"
 
 
2830
 
2831
- #: modules/mycred-module-management.php:753
2832
- #: addons/gateway/event-booking/mycred-eventespresso3.php:307
2833
- #: addons/gateway/event-booking/mycred-eventespresso3.php:332
2834
- #: addons/gateway/event-booking/mycred-eventsmanager.php:464
2835
- msgid "Current Balance"
2836
- msgstr "Saldo Actual"
2837
 
2838
- #: modules/mycred-module-management.php:768
2839
- #: plugins/mycred-hook-affiliatewp.php:291
2840
- #: plugins/mycred-hook-affiliatewp.php:310
2841
- #: plugins/mycred-hook-affiliatewp.php:340
2842
- #: includes/shortcodes/mycred_exchange.php:69
2843
- #: includes/shortcodes/mycred_hook_table.php:78
2844
- #: includes/classes/class.query-export.php:263
2845
- #: includes/classes/class.query-export.php:383
2846
- #: includes/classes/class.query-log.php:917
2847
- #: addons/transfer/includes/mycred-transfer-widgets.php:105
2848
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
2849
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
2850
- #: addons/buy-creds/modules/buycred-module-pending.php:269
2851
- #: addons/buy-creds/modules/buycred-module-pending.php:615
2852
- #: addons/buy-creds/modules/buycred-module-pending.php:733
2853
- msgid "Amount"
2854
- msgstr "Cantidad"
2855
 
2856
- #: modules/mycred-module-management.php:770
2857
- msgid "A positive or negative value"
2858
- msgstr "Un valor positivo o negativo"
 
2859
 
2860
- #: modules/mycred-module-management.php:796 modules/mycred-module-log.php:929
2861
- #: addons/gateway/event-booking/mycred-eventespresso3.php:518
2862
- msgid "Log Entry"
2863
- msgstr "Entrada de Registro"
 
2864
 
2865
- #: modules/mycred-module-management.php:797
2866
- #: addons/transfer/includes/mycred-transfer-widgets.php:92
2867
- #: addons/transfer/includes/mycred-transfer-widgets.php:114
2868
- #: addons/transfer/includes/mycred-transfer-widgets.php:118
2869
- #: addons/transfer/includes/mycred-transfer-widgets.php:126
2870
- msgid "optional"
2871
- msgstr "opcional"
2872
 
2873
- #: modules/mycred-module-settings.php:138
2874
- msgid "Accounts successfully reset"
2875
- msgstr "Las cuentas fueron reiniciadas con éxito."
 
2876
 
2877
- #: modules/mycred-module-settings.php:190
2878
- msgid "No users found to export"
2879
- msgstr "No se encontro usuarios para exportar"
2880
 
2881
- #: modules/mycred-module-settings.php:426
2882
- msgid ""
2883
- "Warning! All entries in your log will be permanently removed! This can not "
2884
- "be undone!"
 
 
2885
  msgstr ""
2886
- "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
2887
- "¡Esto no se puede deshacer!"
2888
 
2889
- #: modules/mycred-module-settings.php:427
 
2890
  msgid ""
2891
- "All log entries belonging to deleted users will be permanently deleted! This "
2892
- "can not be undone!"
2893
  msgstr ""
2894
- "¡Todas las entradas de registro perteneciendo al usuario seran "
2895
- "permanentemente borradas! ¡Esto no se puede deshacer!"
2896
 
2897
- #: modules/mycred-module-settings.php:428
2898
- msgid "Warning! All user balances will be set to zero! This can not be undone!"
2899
- msgstr ""
2900
- "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
2901
- "deshacer!"
2902
 
2903
- #: modules/mycred-module-settings.php:429
2904
- msgid "Done!"
2905
- msgstr "¡Realizado!"
 
2906
 
2907
- #: modules/mycred-module-settings.php:431
2908
- msgid "Export users %plural%"
2909
- msgstr "Exportar usuarios %plural%"
 
2910
 
2911
- #: modules/mycred-module-settings.php:530
 
 
 
2912
  #, php-format
2913
- msgid "%s Settings"
2914
- msgstr "Configuración de %s"
2915
 
2916
- #: modules/mycred-module-settings.php:539
2917
- msgid "Core Settings"
2918
- msgstr "Ajustes Basicos"
 
2919
 
2920
- #: modules/mycred-module-settings.php:544 includes/mycred-setup.php:275
2921
- #: addons/gateway/event-booking/mycred-eventespresso3.php:460
2922
- #: addons/gateway/event-booking/mycred-eventsmanager.php:658
2923
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
2924
- msgid "Labels"
2925
- msgstr "Etiquetas"
2926
 
2927
- #: modules/mycred-module-settings.php:562 includes/mycred-setup.php:293
2928
- #: addons/email-notices/myCRED-addon-email-notices.php:1405
2929
- msgid "Format"
2930
- msgstr "Formato"
2931
 
2932
- #: modules/mycred-module-settings.php:566 includes/mycred-setup.php:297
2933
- msgid "Prefix"
2934
- msgstr "Prefijo"
 
2935
 
2936
- #: modules/mycred-module-settings.php:572 includes/mycred-setup.php:303
2937
- msgid "Separators"
2938
- msgstr "Separadores"
2939
 
2940
- #: modules/mycred-module-settings.php:580 includes/mycred-setup.php:311
2941
- msgid "Decimals"
2942
- msgstr "Decimales"
 
2943
 
2944
- #: modules/mycred-module-settings.php:586 includes/mycred-setup.php:317
2945
- msgid "Suffix"
2946
- msgstr "Sufijo"
 
2947
 
2948
- #: modules/mycred-module-settings.php:593
2949
- msgid "Tip"
2950
- msgstr "Pista"
 
2951
 
2952
- #: modules/mycred-module-settings.php:600 includes/mycred-setup.php:328
2953
- msgid "Security"
2954
- msgstr "Seguridad"
 
2955
 
2956
- #: modules/mycred-module-settings.php:647
2957
- msgid "Delete log entries when user is deleted."
2958
- msgstr "Elimina las entradas de registro cuando se elimina el usuario."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2959
 
2960
- #: modules/mycred-module-settings.php:666
2961
- msgid "Management"
2962
- msgstr "Gestión"
2963
 
2964
- #: modules/mycred-module-settings.php:678 modules/mycred-module-log.php:433
2965
- msgid "Entries"
2966
- msgstr "Entradas"
 
2967
 
2968
- #: modules/mycred-module-settings.php:684
2969
- #: modules/mycred-module-settings.php:709
2970
- #: addons/ranks/myCRED-addon-ranks.php:1665
2971
- #: addons/buy-creds/modules/buycred-module-pending.php:450
2972
- #: addons/buy-creds/modules/buycred-module-pending.php:736
2973
- msgid "Actions"
2974
- msgstr "Acciones"
2975
 
2976
- #: modules/mycred-module-settings.php:687
2977
- msgid "Empty Log"
2978
- msgstr "Registro Vacío"
2979
 
2980
- #: modules/mycred-module-settings.php:703
2981
- #: addons/ranks/myCRED-addon-ranks.php:1076
2982
- #: addons/badges/myCRED-addon-badges.php:400
2983
- msgid "Users"
2984
- msgstr "Usuarios"
2985
 
2986
- #: modules/mycred-module-settings.php:711
2987
- msgid "Set all to zero"
2988
- msgstr "Ajusta todo a cero"
2989
 
2990
- #: modules/mycred-module-settings.php:728 includes/mycred-widgets.php:573
2991
- #: addons/transfer/myCRED-addon-transfer.php:370
2992
- #: addons/sell-content/myCRED-addon-sell-content.php:581
2993
- #: addons/transfer/includes/mycred-transfer-widgets.php:121
2994
- #: addons/buy-creds/modules/buycred-module-core.php:333
2995
- msgid "Point Types"
2996
- msgstr "Clase de Puntos"
2997
 
2998
- #: modules/mycred-module-settings.php:742
2999
- #: modules/mycred-module-settings.php:768
3000
- #: modules/mycred-module-settings.php:798
3001
- msgid "Meta Key"
3002
- msgstr "Clave Meta"
3003
 
3004
- #: modules/mycred-module-settings.php:748
3005
- #: modules/mycred-module-settings.php:774
3006
- #: modules/mycred-module-settings.php:804
3007
- #: addons/email-notices/myCRED-addon-email-notices.php:578
3008
- #: addons/gateway/carts/mycred-woocommerce.php:155
3009
- msgid "Label"
3010
- msgstr "Etiqueta"
3011
 
3012
- #: modules/mycred-module-settings.php:755
3013
- #: modules/mycred-module-settings.php:781
3014
- #: includes/classes/class.query-log.php:1019
3015
- #: includes/classes/class.query-log.php:1622
3016
- #: addons/banking/services/mycred-service-payouts.php:472
3017
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
3018
- msgid "Delete"
3019
- msgstr "Borrar"
3020
 
3021
- #: modules/mycred-module-settings.php:794
3022
- msgid "Add New Type"
3023
- msgstr "Añadir Nuevo Clase"
3024
 
3025
- #: modules/mycred-module-settings.php:822
3026
- #: addons/gateway/event-booking/mycred-eventespresso3.php:551
3027
- #: addons/buy-creds/modules/buycred-module-core.php:650
3028
- msgid "Update Settings"
3029
- msgstr "Actualizar Configuraciones"
3030
 
3031
- #: modules/mycred-module-settings.php:831
3032
- msgid "Identify users by"
3033
- msgstr "Identifique usuarios por"
3034
 
3035
- #: modules/mycred-module-settings.php:837
3036
- msgid "User ID"
3037
- msgstr "ID del Usuario"
3038
 
3039
- #: modules/mycred-module-settings.php:838
3040
- msgid "User Email"
3041
- msgstr "Email de Usuario"
3042
 
3043
- #: modules/mycred-module-settings.php:839
3044
- msgid "User Login"
3045
- msgstr "Ingreso de Usuario"
3046
 
3047
- #: modules/mycred-module-settings.php:847
3048
- msgid ""
3049
- "Use ID if you intend to use this export as a backup of your current site "
3050
- "while Email is recommended if you want to export to a different site."
3051
- msgstr ""
3052
- "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
3053
- "Email si deseas exportar la data a otro sitio"
3054
 
3055
- #: modules/mycred-module-settings.php:850
3056
- msgid "Import Log Entry"
3057
- msgstr "Importa la entrada de registro"
3058
 
3059
- #: modules/mycred-module-settings.php:852
3060
  #, php-format
3061
- msgid ""
3062
- "Optional log entry to use if you intend to import this file in a different "
3063
- "%s installation."
3064
- msgstr ""
3065
- "Usa la entrada de registro opcional si tiene la intención de importar este "
3066
- "fichero en otra instalación %s."
3067
 
3068
- #: modules/mycred-module-settings.php:855 modules/mycred-module-export.php:236
3069
- #: modules/mycred-module-export.php:263 modules/mycred-module-export.php:313
3070
- msgid "Export"
3071
- msgstr "Exportar"
3072
 
3073
- #: modules/mycred-module-addons.php:25 modules/mycred-module-addons.php:26
3074
- #: includes/mycred-setup.php:171
3075
- msgid "Add-ons"
3076
- msgstr "Extensiones"
3077
 
3078
- #: modules/mycred-module-addons.php:175
3079
- msgid "Give your users badges based on their interaction with your website."
3080
- msgstr ""
3081
- "Dar insignias a tus usuarios basado en sus interacciones con tu sitio web."
3082
 
3083
- #: modules/mycred-module-addons.php:186
3084
- msgid ""
3085
- "Setup recurring payouts or offer / charge interest on user account balances."
3086
- msgstr ""
3087
- "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
3088
- "de las cuentas de usuarios."
3089
 
3090
- #: modules/mycred-module-addons.php:197
3091
- msgid ""
3092
- "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
3093
- "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
3094
- "also let your users buy points for other members."
3095
- msgstr ""
3096
- "La Extensión <strong>compra</strong>CRED permite que tus usuarios compren "
3097
- "puntos utilizando PayPal, Skrill (Moneybookers) o NETbilling. <strong>"
3098
- "compra</strong>CRED tambien permite que tus usuarios compren puntos para "
3099
- "otros miembros."
3100
 
3101
- #: modules/mycred-module-addons.php:208
3102
- msgid ""
3103
- "The coupons add-on allows you to create coupons that users can use to add "
3104
- "points to their accounts."
3105
- msgstr ""
3106
- "Los cupones de add-on le permite crear cupones que los usuarios pueden "
3107
- "utilizar para agregar puntos a sus cuentas."
3108
 
3109
- #: modules/mycred-module-addons.php:219
3110
- msgid "Create email notices for any type of myCRED instance."
3111
- msgstr ""
3112
- "Crea avisos por correo electrónico para cualquier tipo de instancias de "
3113
- "myCRED."
3114
 
3115
- #: modules/mycred-module-addons.php:230
3116
- msgid ""
3117
- "Let your users pay using their <strong>my</strong>CRED points balance. "
3118
- "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
3119
- "Bookings: Event Espresso and Events Manager (free & pro)."
3120
- msgstr ""
3121
- "Permite que tus usuarios paguen utilizando el saldo de sus puntos <strong>"
3122
- "my</strong>CRED. Carritos soportados: WooCommerce, MarketPress and WP E-"
3123
- "Commerce. Reservas de Eventos soportados: Event Espresso and Events Manager "
3124
- "(gratis y pro)."
3125
 
3126
- #: modules/mycred-module-addons.php:241
3127
- msgid "Create pop-up notifications for when users gain or loose points."
3128
- msgstr ""
3129
- "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
3130
 
3131
- #: modules/mycred-module-addons.php:253
3132
- msgid ""
3133
- "Create ranks for users reaching a certain number of %_plural% with the "
3134
- "option to add logos for each rank."
3135
- msgstr ""
3136
- "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
3137
- "con la opción de añadir logotipos para cada rango."
3138
 
3139
- #: modules/mycred-module-addons.php:264
3140
- msgid ""
3141
- "This add-on allows you to sell posts, pages or any public post types on your "
3142
- "website. You can either sell the entire content or using our shortcode, sell "
3143
- "parts of your content allowing you to offer \"teasers\"."
3144
- msgstr ""
3145
- "Esta extensión permite que vendas posts, páginas o cualquier tipo de "
3146
- "publicación en tu sitio web. Puedes venter contenidos enteros o utilizando "
3147
- "el código corto (shortcode), vender partes de tu contenido permitiendote "
3148
- "ofrecer \"avances\"."
3149
 
3150
- #: modules/mycred-module-addons.php:286
3151
- msgid ""
3152
- "Allow your users to send or \"donate\" points to other members by either "
3153
- "using the mycred_transfer shortcode or the myCRED Transfer widget."
3154
- msgstr ""
3155
- "Permite que los usuarios envien o \"donen\" puntos a otros miembros "
3156
- "utilizando el código corto (shortcode) de mycred_transfer o el widget de "
3157
- "Transferencia myCRED."
3158
 
3159
- #: modules/mycred-module-addons.php:330
3160
- #, php-format
3161
- msgid "%s Add-ons"
3162
- msgstr "%s Extensiones (addons)"
3163
 
3164
- #: modules/mycred-module-addons.php:337
3165
- msgid "Add-on Activated"
3166
- msgstr "Extensión Activado"
3167
 
3168
- #: modules/mycred-module-addons.php:340
3169
- msgid "Add-on Deactivated"
3170
- msgstr "Extensión Desactivado"
3171
 
3172
- #: modules/mycred-module-addons.php:405
3173
- msgid "Activate Add-on"
3174
- msgstr "Activar Extensión"
3175
 
3176
- #: modules/mycred-module-addons.php:406
3177
- msgid "Activate"
3178
- msgstr "Activar"
3179
 
3180
- #: modules/mycred-module-addons.php:412
3181
- msgid "Deactivate Add-on"
3182
- msgstr "Desactivar Extensión"
3183
 
3184
- #: modules/mycred-module-addons.php:413
3185
- msgid "Deactivate"
3186
- msgstr "Desactivar"
3187
 
3188
- #: modules/mycred-module-log.php:24 modules/mycred-module-log.php:25
3189
- #: addons/gateway/event-booking/mycred-eventespresso3.php:515
3190
- msgid "Log"
3191
- msgstr "Registro"
3192
 
3193
- #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:906
3194
- #: includes/classes/class.query-export.php:263
3195
- #: includes/classes/class.query-export.php:371
3196
- #: includes/classes/class.query-log.php:891
3197
- #: includes/classes/class.query-log.php:903
3198
- #: addons/email-notices/myCRED-addon-email-notices.php:336
3199
- #: addons/email-notices/myCRED-addon-email-notices.php:568
3200
- msgid "User"
3201
- msgstr "Usuario"
 
 
3202
 
3203
- #: modules/mycred-module-log.php:173
3204
- msgid "Row Deleted"
3205
- msgstr "Fila Borrado"
3206
 
3207
- #: modules/mycred-module-log.php:232
3208
- msgid "Log entry not found"
3209
- msgstr "No se encontro la entrada de registro "
3210
 
3211
- #: modules/mycred-module-log.php:467
3212
- msgid "Edit Log Entry"
3213
- msgstr "Edidar entrada de registro"
3214
 
3215
- #: modules/mycred-module-log.php:471
3216
- msgid "Are you sure you want to delete this log entry? This can not be undone!"
3217
- msgstr ""
3218
- "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
3219
- "deshacer!"
3220
 
3221
- #: modules/mycred-module-log.php:502
3222
- msgid "Search results for"
3223
- msgstr "Buscar entre resultados por"
3224
 
3225
- #: modules/mycred-module-log.php:554
3226
- #, php-format
3227
- msgid "%s Log"
3228
- msgstr "Registro de %s"
3229
 
3230
- #: modules/mycred-module-log.php:666
3231
- #, php-format
3232
- msgid "My %s History"
3233
- msgstr "Mi Historial de %s"
3234
 
3235
- #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:275
3236
- msgid "Master Template"
3237
- msgstr "Plantilla Principal"
3238
 
3239
- #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:280
3240
- #: modules/mycred-module-network.php:296 modules/mycred-module-export.php:354
3241
- #: addons/sell-content/myCRED-addon-sell-content.php:481
3242
- msgid "Enabled"
3243
- msgstr "Habilitado"
3244
 
3245
- #: modules/mycred-module-network.php:187 modules/mycred-module-network.php:188
3246
- msgid "Network Settings"
3247
- msgstr "Configuración de la Red"
3248
 
3249
- #: modules/mycred-module-network.php:241
3250
- #, php-format
3251
- msgid "%s Network"
3252
- msgstr "Red de %s"
3253
 
3254
- #: modules/mycred-module-network.php:257
3255
- #, php-format
3256
- msgid "Note! %s has not yet been setup."
3257
- msgstr "¡Aviso! %s no ha sido configurado."
3258
 
3259
- #. also, "Inhabilitar"
3260
- #: modules/mycred-module-network.php:285 modules/mycred-module-network.php:301
3261
- #: modules/mycred-module-export.php:353 plugins/mycred-hook-affiliatewp.php:362
3262
- #: addons/sell-content/myCRED-addon-sell-content.php:396
3263
- #: addons/sell-content/myCRED-addon-sell-content.php:480
3264
- #: addons/buy-creds/modules/buycred-module-core.php:1127
3265
- msgid "Disabled"
3266
- msgstr "Desactivado"
3267
 
3268
- #: modules/mycred-module-network.php:291
3269
- msgid "Central Logging"
3270
- msgstr "Central de Registro"
3271
 
3272
- #: modules/mycred-module-network.php:308
3273
- msgid "Site Block"
3274
- msgstr "Bloqueo de Sitio"
3275
 
3276
- #: modules/mycred-module-network.php:314
3277
- #, php-format
3278
- msgid "Comma separated list of blog ids where %s is to be disabled."
3279
- msgstr "Lista separada por comas de blog IDs donde %s se va a inhabilitar."
3280
 
3281
- #: modules/mycred-module-network.php:327
3282
- msgid "Save Network Settings"
3283
- msgstr "Guardar las Configuraciones de la Eed"
3284
 
3285
- #: modules/mycred-module-export.php:285 modules/mycred-module-export.php:332
3286
- #: includes/classes/class.query-log.php:1687
3287
- msgid ""
3288
- "Log entries are exported to a CSV file and depending on the number of "
3289
- "entries selected, the process may take a few seconds."
3290
- msgstr ""
3291
- "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
3292
- "número de entradas seleccionadas, el proceso puede tardar unos segundos."
3293
 
3294
- #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
3295
- #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
3296
- #: includes/importers/mycred-cubepoints.php:353
3297
- #: includes/classes/class.query-export.php:263
3298
- #: includes/classes/class.query-export.php:391
3299
- #: addons/ranks/myCRED-addon-ranks.php:1079
3300
- #: addons/ranks/myCRED-addon-ranks.php:1247
3301
- #: addons/ranks/myCRED-addon-ranks.php:1254
3302
- #: addons/email-notices/myCRED-addon-email-notices.php:280
3303
- #: addons/email-notices/myCRED-addon-email-notices.php:585
3304
- #: addons/coupons/myCRED-addon-coupons.php:256
3305
- #: addons/coupons/myCRED-addon-coupons.php:520
3306
- #: addons/gateway/event-booking/mycred-eventespresso3.php:483
3307
- #: addons/gateway/event-booking/mycred-eventsmanager.php:604
3308
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611
3309
- #: addons/gateway/carts/mycred-wpecommerce.php:383
3310
- #: addons/gateway/carts/mycred-woocommerce.php:125
3311
- #: addons/gateway/carts/mycred-woocommerce.php:166
3312
- #: addons/buy-creds/modules/buycred-module-pending.php:557
3313
- #: addons/buy-creds/modules/buycred-module-pending.php:735
3314
- msgid "Point Type"
3315
- msgstr "Clase de Puntos"
3316
 
3317
- #: modules/mycred-module-buddypress.php:31
3318
- msgid "My History"
3319
- msgstr "Mi Historial"
3320
 
3321
- #: modules/mycred-module-buddypress.php:32
3322
- #, php-format
3323
- msgid "%s's History"
3324
- msgstr "La Historial de %s"
3325
 
3326
- #: modules/mycred-module-buddypress.php:131
3327
- msgid "Current balance"
3328
- msgstr "Saldo Actual"
3329
 
3330
- #: modules/mycred-module-buddypress.php:236
3331
- #: modules/mycred-module-buddypress.php:249
3332
- #: includes/classes/class.query-log.php:1745
3333
- msgid "All"
3334
- msgstr "Todo"
3335
 
3336
- #: modules/mycred-module-buddypress.php:237
3337
- #: includes/classes/class.query-log.php:1746
3338
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:189
3339
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:319
3340
- msgid "Today"
3341
- msgstr "Hoy"
3342
 
3343
- #: modules/mycred-module-buddypress.php:238
3344
- #: includes/classes/class.query-log.php:1747
3345
- msgid "Yesterday"
3346
- msgstr "Ayer"
3347
 
3348
- #: modules/mycred-module-buddypress.php:239
3349
- #: includes/classes/class.query-log.php:1748
3350
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:190
3351
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:320
3352
- msgid "This Week"
3353
- msgstr "Esta Semana"
3354
 
3355
- #: modules/mycred-module-buddypress.php:240
3356
- #: includes/classes/class.query-log.php:1749
3357
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:191
3358
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:321
3359
- msgid "This Month"
3360
- msgstr "Este Mes"
3361
 
3362
- #: modules/mycred-module-buddypress.php:352
3363
- msgid "Go"
3364
- msgstr "Ir a"
3365
 
3366
- #: modules/mycred-module-buddypress.php:404
3367
- #: modules/mycred-module-buddypress.php:411
3368
- #: addons/badges/myCRED-addon-badges.php:1140
3369
- #: addons/badges/myCRED-addon-badges.php:1174
3370
- #: addons/gateway/carts/mycred-woocommerce.php:147
3371
- msgid "Do not show"
3372
- msgstr "No Mostrar"
3373
 
3374
- #: modules/mycred-module-buddypress.php:405
3375
- #: addons/badges/myCRED-addon-badges.php:1141
3376
- msgid "Include in Profile Header"
3377
- msgstr "Incluir en el Encabezado del Perfil"
3378
 
3379
- #: modules/mycred-module-buddypress.php:406
3380
- #: addons/ranks/myCRED-addon-ranks.php:1478
3381
- #: addons/badges/myCRED-addon-badges.php:1142
3382
- msgid "Include under the \"Profile\" tab"
3383
- msgstr "Incluir debajo de la pestaña del \"Perfil\""
3384
 
3385
- #: modules/mycred-module-buddypress.php:407
3386
- #: addons/badges/myCRED-addon-badges.php:1143
3387
- msgid "Include under the \"Profile\" tab and Profile Header"
3388
- msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil"
3389
 
3390
- #: modules/mycred-module-buddypress.php:412
3391
- msgid "Show in Profile"
3392
- msgstr "Mostrar en Perfil"
3393
 
3394
- #: modules/mycred-module-buddypress.php:432
3395
- msgid "%singular% Balance"
3396
- msgstr "%singular% Saldo"
3397
 
3398
- #: modules/mycred-module-buddypress.php:453
3399
- #: addons/ranks/myCRED-addon-ranks.php:1493
3400
- #: addons/ranks/myCRED-addon-ranks.php:1534
3401
- #: addons/notifications/myCRED-addon-notifications.php:198
3402
- msgid "Template"
3403
- msgstr "Plantilla"
3404
 
3405
- #: modules/mycred-module-buddypress.php:463
3406
- msgid "%plural% History"
3407
- msgstr "Historial de %plural%"
3408
 
3409
- #: modules/mycred-module-buddypress.php:477
3410
- msgid "Members can view each others %_plural% history."
3411
- msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
3412
 
3413
- #: modules/mycred-module-buddypress.php:482
3414
- msgid "Menu Title"
3415
- msgstr "Título de Menú"
3416
 
3417
- #: modules/mycred-module-buddypress.php:484
3418
- msgid "Title shown to me"
3419
- msgstr "Título mostrado a mi"
3420
 
3421
- #: modules/mycred-module-buddypress.php:491
3422
- #, php-format
3423
- msgid "Title shown to others. Use %s to show the first name."
3424
- msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
3425
 
3426
- #: modules/mycred-module-buddypress.php:499
3427
- msgid "Menu Position"
3428
- msgstr "Posición del Menú"
3429
 
3430
- #: modules/mycred-module-buddypress.php:501
3431
- msgid "Current menu positions:"
3432
- msgstr "Posiciones Acuales del Menú"
 
 
 
 
 
 
 
 
 
3433
 
3434
- #: modules/mycred-module-buddypress.php:506
3435
- msgid "History URL slug"
3436
- msgstr "La ficha historial de la URL"
3437
 
3438
- #: modules/mycred-module-buddypress.php:513
3439
- msgid "Number of history entries to show"
3440
- msgstr "Numero de entradas de historial a mostrar"
3441
 
3442
- #. does this really need to be translated?
3443
- #: plugins/mycred-hook-invite-anyone.php:15
3444
- msgid "Invite Anyone Plugin"
3445
- msgstr "Invite Anyone Plugin"
3446
 
3447
- #: plugins/mycred-hook-invite-anyone.php:16
3448
- msgid ""
3449
- "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
3450
- "accepted."
3451
- msgstr ""
3452
- "Concede %_plural% por mandar invitaciones y/o %_plural% si se acepta la "
3453
- "invitación."
3454
 
3455
- #: plugins/mycred-hook-invite-anyone.php:215
3456
- #: plugins/mycred-hook-invite-anyone.php:239
3457
- #: plugins/mycred-hook-wp-postratings.php:171
3458
- #: plugins/mycred-hook-wp-postratings.php:183
3459
- #: plugins/mycred-hook-gravityforms.php:166
3460
- #: plugins/mycred-hook-simplepress.php:301
3461
- #: plugins/mycred-hook-simplepress.php:343
3462
- #: plugins/mycred-hook-buddypress.php:623
3463
- #: plugins/mycred-hook-buddypress.php:647
3464
- #: plugins/mycred-hook-buddypress.php:671
3465
- #: plugins/mycred-hook-buddypress.php:695
3466
- #: plugins/mycred-hook-buddypress.php:719
3467
- #: plugins/mycred-hook-buddypress.php:770
3468
- #: plugins/mycred-hook-buddypress.php:812
3469
- #: plugins/mycred-hook-buddypress.php:854
3470
- #: plugins/mycred-hook-buddypress.php:878
3471
- #: plugins/mycred-hook-buddypress.php:1556
3472
- #: plugins/mycred-hook-buddypress.php:1580
3473
- #: plugins/mycred-hook-buddypress.php:1604
3474
- #: plugins/mycred-hook-buddypress.php:1628
3475
- #: plugins/mycred-hook-buddypress.php:1652
3476
- #: plugins/mycred-hook-buddypress.php:1676
3477
- #: plugins/mycred-hook-buddypress.php:1700
3478
- #: plugins/mycred-hook-buddypress.php:1742
3479
- #: plugins/mycred-hook-affiliatewp.php:317
3480
- #: plugins/mycred-hook-events-manager-light.php:211
3481
- #: plugins/mycred-hook-sharethis.php:267
3482
- #: plugins/mycred-hook-buddypress-media.php:300
3483
- #: plugins/mycred-hook-buddypress-media.php:324
3484
- #: plugins/mycred-hook-buddypress-media.php:348
3485
- #: plugins/mycred-hook-wp-favorite-posts.php:228
3486
- #: plugins/mycred-hook-wp-favorite-posts.php:240
3487
- #: plugins/mycred-hook-contact-form7.php:169
3488
- #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:485
3489
- #: plugins/mycred-hook-bbPress.php:536 plugins/mycred-hook-bbPress.php:560
3490
- #: plugins/mycred-hook-woocommerce.php:510
3491
- #: includes/shortcodes/mycred_hook_table.php:79
3492
- msgid "Limit"
3493
- msgstr "Límite"
3494
 
3495
- #: plugins/mycred-hook-invite-anyone.php:221
3496
- #: plugins/mycred-hook-invite-anyone.php:245
3497
- #: plugins/mycred-hook-gravityforms.php:172
3498
- #: plugins/mycred-hook-simplepress.php:307
3499
- #: plugins/mycred-hook-simplepress.php:325
3500
- #: plugins/mycred-hook-simplepress.php:349
3501
- #: plugins/mycred-hook-simplepress.php:376
3502
- #: plugins/mycred-hook-buddypress.php:629
3503
- #: plugins/mycred-hook-buddypress.php:653
3504
- #: plugins/mycred-hook-buddypress.php:677
3505
- #: plugins/mycred-hook-buddypress.php:701
3506
- #: plugins/mycred-hook-buddypress.php:725
3507
- #: plugins/mycred-hook-buddypress.php:752
3508
- #: plugins/mycred-hook-buddypress.php:776
3509
- #: plugins/mycred-hook-buddypress.php:794
3510
- #: plugins/mycred-hook-buddypress.php:818
3511
- #: plugins/mycred-hook-buddypress.php:836
3512
- #: plugins/mycred-hook-buddypress.php:860
3513
- #: plugins/mycred-hook-buddypress.php:884
3514
- #: plugins/mycred-hook-buddypress.php:1520
3515
- #: plugins/mycred-hook-buddypress.php:1538
3516
- #: plugins/mycred-hook-buddypress.php:1562
3517
- #: plugins/mycred-hook-buddypress.php:1586
3518
- #: plugins/mycred-hook-buddypress.php:1610
3519
- #: plugins/mycred-hook-buddypress.php:1634
3520
- #: plugins/mycred-hook-buddypress.php:1658
3521
- #: plugins/mycred-hook-buddypress.php:1682
3522
- #: plugins/mycred-hook-buddypress.php:1706
3523
- #: plugins/mycred-hook-buddypress.php:1724
3524
- #: plugins/mycred-hook-buddypress.php:1748
3525
- #: plugins/mycred-hook-affiliatewp.php:298
3526
- #: plugins/mycred-hook-affiliatewp.php:325
3527
- #: plugins/mycred-hook-events-manager-light.php:217
3528
- #: plugins/mycred-hook-events-manager-light.php:235
3529
- #: plugins/mycred-hook-sharethis.php:273
3530
- #: plugins/mycred-hook-buddypress-media.php:306
3531
- #: plugins/mycred-hook-buddypress-media.php:330
3532
- #: plugins/mycred-hook-buddypress-media.php:354
3533
- #: plugins/mycred-hook-buddypress-media.php:372
3534
- #: plugins/mycred-hook-buddypress-media.php:390
3535
- #: plugins/mycred-hook-buddypress-media.php:408
3536
- #: plugins/mycred-hook-contact-form7.php:175
3537
- #: plugins/mycred-hook-jetpack.php:549 plugins/mycred-hook-jetpack.php:567
3538
- #: plugins/mycred-hook-bbPress.php:449 plugins/mycred-hook-bbPress.php:467
3539
- #: plugins/mycred-hook-bbPress.php:491 plugins/mycred-hook-bbPress.php:518
3540
- #: plugins/mycred-hook-bbPress.php:542 plugins/mycred-hook-bbPress.php:566
3541
- #: plugins/mycred-hook-bbPress.php:593
3542
- #: addons/badges/myCRED-addon-badges.php:949
3543
- msgid "Log template"
3544
- msgstr "Plantilla de Registro"
3545
 
3546
- #: plugins/mycred-hook-wp-polls.php:15
3547
- msgid "WP-Polls"
3548
- msgstr "WP-Polls"
 
3549
 
3550
- #: plugins/mycred-hook-wp-polls.php:16
3551
- msgid "Awards %_plural% for users voting in polls."
3552
- msgstr ""
3553
- "Concede %_plural% a usuarios que han votado en encuestas.Concede %_plural% a "
3554
- "usuarios que han votado en encuestas."
3555
 
3556
- #. can also be "Plantilla de Bitácora"
3557
- #: plugins/mycred-hook-wp-polls.php:177
3558
- #: plugins/mycred-hook-wp-favorite-posts.php:273
3559
- #: plugins/mycred-hook-wp-favorite-posts.php:288
3560
- #: plugins/mycred-hook-woocommerce.php:516 plugins/mycred-hook-badgeOS.php:144
3561
- #: plugins/mycred-hook-badgeOS.php:146 plugins/mycred-hook-badgeOS.php:157
3562
- #: plugins/mycred-hook-badgeOS.php:327 plugins/mycred-hook-badgeOS.php:345
3563
- #: addons/coupons/myCRED-addon-coupons.php:764
3564
- #: addons/banking/services/mycred-service-interest.php:510
3565
- #: addons/banking/services/mycred-service-payouts.php:710
3566
- #: addons/gateway/carts/mycred-wpecommerce.php:400
3567
- #: addons/gateway/carts/mycred-woocommerce.php:108
3568
- #: addons/gateway/carts/mycred-woocommerce.php:183
3569
- #: addons/buy-creds/modules/buycred-module-core.php:426
3570
- #: addons/buy-creds/modules/buycred-module-core.php:453
3571
- msgid "Log Template"
3572
- msgstr "Plantilla de Registro"
3573
 
3574
- #: plugins/mycred-hook-gravityforms.php:15
3575
- msgid "Gravityform Submissions"
3576
- msgstr "Entregas de Gravityform"
3577
 
3578
- #: plugins/mycred-hook-gravityforms.php:16
3579
- msgid "Awards %_plural% for successful form submissions."
3580
- msgstr "Concede %_plural% por el exitoso envío del formularios."
3581
 
3582
- #: plugins/mycred-hook-gravityforms.php:130
3583
- #: plugins/mycred-hook-contact-form7.php:131
3584
- msgid "No forms found."
3585
- msgstr "No se ha encontrado ningun formulario."
3586
 
3587
- #: plugins/mycred-hook-simplepress.php:16
3588
- msgid "Awards %_plural% for Simple:Press actions."
3589
- msgstr "Concede %_plural% por acciones en Simple:Press."
3590
 
3591
- #: plugins/mycred-hook-buddypress.php:16
3592
- msgid "BuddyPress: Members"
3593
- msgstr "BuddyPress: Miembros"
3594
 
3595
- #: plugins/mycred-hook-buddypress.php:17
3596
- msgid "Awards %_plural% for profile related actions."
3597
- msgstr "Concede %_plural% por acciones relacionados al perfil."
3598
 
3599
- #: plugins/mycred-hook-buddypress.php:25
3600
- msgid "BuddyPress: Groups"
3601
- msgstr "BuddyPress: Grupos"
3602
 
3603
- #: plugins/mycred-hook-buddypress.php:26
3604
- msgid ""
3605
- "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
3606
- "zero to disable a specific hook."
3607
- msgstr ""
3608
- "Concede %_plural% para acciones relacionados a grupos. Usa negativo para "
3609
- "sustraer %_plural% o cero para desabilitar un gancho especifico."
3610
 
3611
- #: plugins/mycred-hook-buddypress.php:310
3612
- #: addons/gateway/event-booking/mycred-eventsmanager.php:692
3613
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:727
3614
- #: addons/gateway/carts/mycred-wpecommerce.php:415
3615
- msgid "Insufficient Funds"
3616
- msgstr "Fondos Insuficientes"
3617
 
3618
- #: plugins/mycred-hook-buddypress.php:784
3619
- #: includes/classes/class.query-log.php:2189
3620
- msgid "Deleted Comment"
3621
- msgstr "Comentario Borrado"
3622
 
3623
- #: plugins/mycred-hook-buddypress.php:868
3624
- #: includes/classes/class.query-log.php:2208
3625
- msgid "Sending Gift"
3626
- msgstr "Mandando Regalo"
3627
 
3628
- #: plugins/mycred-hook-affiliatewp.php:306
3629
- msgid "Referring Visitors"
3630
- msgstr "Referiendo Visitantes"
3631
 
3632
- #: plugins/mycred-hook-affiliatewp.php:360
3633
- #: includes/shortcodes/mycred_exchange.php:75
3634
- #: addons/gateway/event-booking/mycred-eventespresso3.php:498
3635
- #: addons/gateway/event-booking/mycred-eventsmanager.php:634
3636
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:650
3637
- #: addons/gateway/carts/mycred-wpecommerce.php:389
3638
- #: addons/gateway/carts/mycred-woocommerce.php:136
3639
- msgid "Exchange Rate"
3640
- msgstr "Tipo de Cambio"
3641
 
3642
- #: plugins/mycred-hook-affiliatewp.php:362
3643
- #: addons/gateway/carts/mycred-wpecommerce.php:390
3644
- #, php-format
3645
- msgid "How much is 1 %s worth in %s"
3646
- msgstr "Cuanto vale 1 %s en %s"
3647
 
3648
- #: plugins/mycred-hook-events-manager-light.php:15
3649
- msgid "Events Manager"
3650
- msgstr "Gestionamiento de Eventos"
 
 
 
 
 
 
 
 
3651
 
3652
- #: plugins/mycred-hook-events-manager-light.php:16
3653
- msgid "Awards %_plural% for users attending events."
3654
- msgstr "Concede %_plural% para usuarios que asistieron actividades o eventos."
 
 
 
 
3655
 
3656
- #: plugins/mycred-hook-events-manager-light.php:201
3657
- msgid "Attending Event"
3658
- msgstr "Asistir Evento"
3659
 
3660
- #: plugins/mycred-hook-events-manager-light.php:225
3661
- msgid "Cancelling Attendance"
3662
- msgstr "Cancelando Asistencia"
3663
 
3664
- #: plugins/mycred-hook-sharethis.php:15
3665
- msgid "%plural% for Sharing"
3666
- msgstr "%plural% para Compartir"
3667
 
3668
- #: plugins/mycred-hook-sharethis.php:16
3669
- msgid ""
3670
- "Awards %_plural% for users sharing / liking your website content to popular "
3671
- "social media sites."
3672
- msgstr ""
3673
- "Concede %_plural% a usuarios por compartir / gustar el contenido de tu sitio "
3674
- "web atraves de sitio de los medios de comunicación social."
3675
 
3676
- #: plugins/mycred-hook-sharethis.php:216
3677
- msgid "Your ShareThis public key is not set."
3678
- msgstr "Tu llave publico de ShareThis no ha sido configurado."
 
 
3679
 
3680
- #: plugins/mycred-hook-sharethis.php:221
3681
- msgid "No ShareThis services detected. Please check your installation."
3682
  msgstr ""
3683
- "Ningun servicio ShareThis detectado. Por favor verifique su instalación."
3684
 
3685
- #: plugins/mycred-hook-buddypress-media.php:15
3686
- msgid "rtMedia Galleries"
3687
- msgstr "Galerías rtMedia (rtMedia Galleries)"
 
3688
 
3689
- #: plugins/mycred-hook-buddypress-media.php:16
 
 
 
 
3690
  msgid ""
3691
- "Award / Deduct %_plural% for users creating albums or uploading new photos."
 
3692
  msgstr ""
3693
- "Concede / Resta %_plural% a usuarios por crear álbumes o subir nuevos fotos."
 
 
3694
 
3695
- #: plugins/mycred-hook-buddypress-media.php:290
3696
- #: includes/classes/class.query-log.php:2223
3697
- msgid "Photo Upload"
3698
- msgstr "Subir Foto"
3699
 
3700
- #: plugins/mycred-hook-buddypress-media.php:314
3701
- #: includes/classes/class.query-log.php:2224
3702
- msgid "Video Upload"
3703
- msgstr "Subir Video"
3704
 
3705
- #: plugins/mycred-hook-buddypress-media.php:338
3706
- #: includes/classes/class.query-log.php:2225
3707
- msgid "Music Upload"
3708
- msgstr "Subir Música"
3709
 
3710
- #: plugins/mycred-hook-wp-favorite-posts.php:15
3711
- msgid "WP Favorite Posts"
3712
- msgstr "WP Favorite Posts"
3713
 
3714
- #: plugins/mycred-hook-wp-favorite-posts.php:16
3715
- msgid "Awards %_plural% for users adding posts to their favorites."
3716
- msgstr "Concede %_plural% a usuarios por añadir entradas a sus favoritos."
3717
 
3718
- #: plugins/mycred-hook-wp-favorite-posts.php:218
3719
- msgid "Adding Content to Favorites"
3720
- msgstr "Añadiendo Contenido a Favoritos"
 
 
 
3721
 
3722
- #: plugins/mycred-hook-wp-favorite-posts.php:263
3723
- msgid "Removing Content from Favorites"
3724
- msgstr "Quitando Contenido de Favoritos"
 
3725
 
3726
- #: plugins/mycred-hook-contact-form7.php:15
3727
- msgid "Contact Form 7 Form Submissions"
3728
- msgstr "Presentación Formulario de Contact Form 7"
3729
 
3730
- #: plugins/mycred-hook-contact-form7.php:16
3731
- msgid "Awards %_plural% for successful form submissions (by logged in users)."
3732
- msgstr ""
3733
- "Concede %_plural% por el exitoso envío del formulario (por usuarios que han "
3734
- "iniciado sesión)"
3735
 
3736
- #: plugins/mycred-hook-jetpack.php:15
3737
- msgid "Jetpack Subscriptions"
3738
- msgstr "Suscripciónes a Jetpack"
3739
 
3740
- #: plugins/mycred-hook-jetpack.php:16
3741
  msgid ""
3742
- "Awards %_plural% for users signing up for site or comment updates using "
3743
- "Jetpack."
3744
  msgstr ""
3745
- "Concede %_plural% a usuarios por incribirse a las actualizaciones del sitio "
3746
- "web o a los comentarios atraves de Jetpack."
3747
 
3748
- #: plugins/mycred-hook-jetpack.php:539
3749
- msgid "Site Subscriptions"
3750
- msgstr "Suscripciónes al Sitio Web"
3751
 
3752
- #: plugins/mycred-hook-jetpack.php:557
3753
- msgid "Comment Subscriptions"
3754
- msgstr "Suscripciónes a commentarios"
3755
 
3756
- #: plugins/mycred-hook-bbPress.php:16
3757
- msgid "Awards %_plural% for bbPress actions."
3758
- msgstr "Concede %_plural% por acciones en bbPress."
3759
 
3760
- #: plugins/mycred-hook-bbPress.php:501
3761
- msgid "Forum authors can receive %_plural% for creating new topics."
3762
- msgstr "Autores "
3763
 
3764
- #: plugins/mycred-hook-bbPress.php:605
3765
- msgid "Show users %_plural% balance in replies"
3766
- msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
3767
 
3768
- #: plugins/mycred-hook-woocommerce.php:91
3769
- #: plugins/mycred-hook-woocommerce.php:157
3770
- msgid "Reward with %plural%"
3771
- msgstr "Premiar con %plural%"
3772
 
3773
- #: plugins/mycred-hook-woocommerce.php:384
3774
- msgid "WooCommerce Product Reviews"
3775
- msgstr ""
3776
- " Revisión del Producto WooCommerce\n"
3777
 
3778
- #: plugins/mycred-hook-woocommerce.php:385
3779
- msgid ""
3780
- "Awards %_plural% for users leaving reviews on your WooCommerce products."
3781
- msgstr ""
3782
- "Concede %_plural% a usuarios por escribir reseñas sobre tus productos "
3783
- "WooCommerce."
3784
 
3785
- #: plugins/mycred-hook-badgeOS.php:15
3786
- msgid "BadgeOS"
3787
- msgstr "BadgeOS"
 
3788
 
3789
- #: plugins/mycred-hook-badgeOS.php:16
3790
- msgid ""
3791
- "Default settings for each BadgeOS Achievement type. These settings may be "
3792
- "overridden for individual achievement type."
3793
- msgstr ""
3794
- "Configuraciones predefinidos para cada clase de BadgeOS Logro (Achievement). "
3795
- "Estos ajustes pueden ser anulados para el tipo de logro individual."
3796
 
3797
- #: plugins/mycred-hook-badgeOS.php:124
3798
- #, php-format
3799
- msgid ""
3800
- "Please setup your <a href=\"%s\">default settings</a> before using this "
3801
- "feature."
 
 
 
 
 
 
3802
  msgstr ""
3803
- "Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> "
3804
- "antes de usar este función."
3805
 
3806
- #: plugins/mycred-hook-badgeOS.php:138 plugins/mycred-hook-badgeOS.php:140
3807
- msgid "%plural% to Award"
3808
- msgstr "%plural% a Conceder"
3809
 
3810
- #. also "Ponga cero para inhabilitar"
3811
- #: plugins/mycred-hook-badgeOS.php:142
3812
- msgid "Use zero to disable"
3813
- msgstr "Ponga cero para desactivar"
 
 
 
3814
 
3815
- #: plugins/mycred-hook-badgeOS.php:155
3816
- msgid "Deduction Log Template"
3817
- msgstr "Plantilla de Registro Descontado"
3818
 
3819
- #: includes/mycred-setup.php:50
3820
- msgid "myCRED needs your attention."
3821
- msgstr "myCRED precisa tu atención."
3822
 
3823
- #: includes/mycred-setup.php:50
3824
- msgid "Run Setup"
3825
- msgstr "Ejecutar Configuración"
 
 
 
3826
 
3827
- #: includes/mycred-setup.php:63 includes/mycred-setup.php:64
3828
- msgid "myCRED Setup"
3829
- msgstr "Instalación de myCRED"
3830
 
3831
- #: includes/mycred-setup.php:105
3832
- #: addons/sell-content/myCRED-addon-sell-content.php:639
3833
- #, php-format
3834
- msgid "%s Setup"
3835
- msgstr "Configurar %s"
3836
 
3837
- #: includes/mycred-remote.php:581
3838
- msgid "This feature requires WordPress Permalinks to be setup and enabled!"
 
 
3839
  msgstr ""
3840
- "¡Esta característica técnica requiere que los Permalinks de Wordpress esten "
3841
- "activados y configurado!"
3842
 
3843
- #: includes/mycred-remote.php:585
3844
- msgid "Click Update Settings to load the Remote API settings."
3845
- msgstr ""
3846
- "Haga clic sobre Actualizar Configuraciones para cargar la configuración de "
3847
- "API remoto."
3848
 
3849
- #: includes/mycred-remote.php:588
3850
- msgid "Allow Remote Access"
3851
- msgstr "Permita Acceso Remoto"
3852
 
3853
- #: includes/mycred-remote.php:613
3854
- msgid "Remote Access"
3855
- msgstr "Acceso Remoto"
3856
 
3857
- #: includes/mycred-remote.php:615 addons/buy-creds/gateways/bitpay.php:245
3858
- msgid "API Key"
3859
- msgstr "Clave de la API"
3860
 
3861
- #: includes/mycred-remote.php:618
3862
- msgid "Key"
3863
- msgstr "Clave"
3864
 
3865
- #: includes/mycred-remote.php:620
3866
- msgid "Required for this feature to work!<br />Minimum 12 characters."
3867
  msgstr ""
3868
- "¡Precisado para que esta característica técnica funcione!<br /> Minimo 12 "
3869
- "símbolos."
3870
 
3871
- #: includes/mycred-remote.php:623
3872
- msgid "Key Length"
3873
- msgstr "Longitud de la Clave"
3874
 
3875
- #: includes/mycred-remote.php:628
3876
- msgid "Generate New Key"
3877
- msgstr "Generar nueva clave"
 
 
 
 
3878
 
3879
- #: includes/mycred-remote.php:630
3880
- msgid "Warning!"
3881
- msgstr "¡Aviso!"
 
3882
 
3883
- #: includes/mycred-remote.php:630
3884
  msgid ""
3885
- "Keep this key safe! Those you share this key with will be able to remotely "
3886
- "deduct / add / transfer %plural%!"
3887
  msgstr ""
3888
- "¡Mantenga la seguridad de esta clave! Aquellos con quien compartes esta "
3889
- "clave podran restar / añadir / transferir %plural% de forma remota."
3890
 
3891
- #: includes/mycred-remote.php:632
3892
- msgid "Incoming URI"
3893
- msgstr "URI Entrante"
3894
 
3895
- #: includes/mycred-remote.php:636
3896
  msgid ""
3897
- "The incoming call address. Remote calls made to any other URL will be "
3898
- "ignored."
3899
  msgstr ""
3900
- "La dirección de la llamada entrante. Se ignorará las llamadas remotas a "
3901
- "cualquier otro URL."
3902
 
3903
- #: includes/mycred-remote.php:639
3904
- msgid "Debug Mode"
3905
- msgstr "Modo de Depuración"
3906
 
3907
- #: includes/mycred-remote.php:642
3908
  msgid ""
3909
- "Remember to disable when not used to prevent mischievous calls from learning "
3910
- "about your setup!"
3911
  msgstr ""
3912
- "Recuerda a desactivarlo cuando no está en uso para prevenir que llamadas "
3913
- "maliciosas conozcan detalles de tu configuración!"
 
3914
 
3915
- #: includes/mycred-about.php:32
3916
  #, php-format
3917
- msgid "Welcome to %s %s"
3918
- msgstr "Bienvenido a %s %s"
3919
 
3920
- #: includes/mycred-overview.php:25
3921
- #, php-format
3922
- msgid "%s Overview"
3923
- msgstr "Descripción de %s"
 
 
 
 
 
 
3924
 
3925
- #: includes/mycred-overview.php:83
3926
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:136
3927
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:264
3928
- msgid "Total amount in circulation"
3929
- msgstr "Suma total en circulación"
 
 
3930
 
3931
- #. also, "Otorgado"
3932
- #: includes/mycred-overview.php:86
3933
- msgid "Awarded"
3934
- msgstr "Concedido"
 
 
 
 
 
3935
 
3936
- #: includes/mycred-overview.php:89
3937
- msgid "Deducted"
3938
- msgstr "Deducido"
3939
 
3940
- #: includes/mycred-install.php:73
3941
- msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3942
- msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
3943
 
3944
- #: includes/mycred-install.php:78
3945
- msgid ""
3946
- "The mcrypt PHP library must be enabled in order to use this plugin! Please "
3947
- "check your PHP configuration or contact your host and ask them to enable it "
3948
- "for you!"
3949
- msgstr ""
3950
- "La biblioteca PHP mcrypt debe ser habilitado para poder usar este plugin! "
3951
- "Por favor verifica tu configuración de PHP o contacta a tu web host y "
3952
- "pideles que lo habiliten para ti!"
3953
 
3954
- #: includes/mycred-install.php:83
3955
- msgid ""
3956
- "Sorry but your WordPress installation does not reach the minimum "
3957
- "requirements for running myCRED. The following errors were given:"
3958
- msgstr ""
3959
- "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
3960
- "mínimos de mycred. Se produce los siguientes errores:"
3961
 
3962
- #: includes/mycred-widgets.php:19
3963
- #, php-format
3964
- msgid "(%s) My Balance"
3965
- msgstr "(%s) Mi Saldo"
3966
 
3967
- #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
3968
- #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1369
3969
- #: addons/gateway/carts/mycred-woocommerce.php:96
3970
- #: addons/transfer/includes/mycred-transfer-widgets.php:91
3971
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:203
3972
- #: addons/buy-creds/gateways/bank-transfer.php:190
3973
- #: addons/buy-creds/gateways/skrill.php:333
3974
- msgid "Title"
3975
- msgstr "Titulo"
3976
 
3977
- #: includes/mycred-widgets.php:199
3978
- msgid "Include history"
3979
- msgstr "Incluir el historial"
3980
 
3981
- #: includes/mycred-widgets.php:203
3982
- msgid "History Title"
3983
- msgstr "Titulo de Historial"
3984
 
3985
- #. the English needs to be corrected to "Number of Entries"
3986
- #: includes/mycred-widgets.php:207
3987
- msgid "Number of entires"
3988
- msgstr "Numero de Entradas"
3989
 
3990
- #: includes/mycred-widgets.php:211 includes/mycred-widgets.php:386
3991
- msgid "Row layout"
3992
- msgstr "Disposición de Filas"
3993
 
3994
- #: includes/mycred-widgets.php:218 includes/mycred-widgets.php:586
3995
- msgid "Show message when not logged in"
3996
- msgstr "Mostrar mensaje cuando no ha iniciado la sesión"
 
 
 
 
 
 
3997
 
3998
- #: includes/mycred-widgets.php:222 includes/mycred-widgets.php:590
3999
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:35
4000
- msgid "Message"
4001
- msgstr "Mensaje"
4002
 
4003
- #: includes/mycred-widgets.php:282
 
 
 
 
4004
  #, php-format
4005
- msgid "(%s) Leaderboard"
4006
- msgstr "(%s) Tabla de Clasificación"
4007
 
4008
- #: includes/mycred-widgets.php:373
4009
- msgid "Based On"
4010
- msgstr "Basado Sobre"
4011
 
4012
- #: includes/mycred-widgets.php:375
4013
- msgid ""
4014
- "Use \"balance\" to base the leaderboard on your users current balances or "
4015
- "use a specific reference."
4016
  msgstr ""
4017
- "Utiliza \"saldo\" para basar la tabla de clasificación sobre los saldos "
4018
- "actuales de tus usuarios o utiliza una referencia especifica."
4019
 
4020
- #: includes/mycred-widgets.php:375
4021
- msgid "Reference Guide"
4022
- msgstr "Guia de Referencia"
4023
 
4024
- #: includes/mycred-widgets.php:379
4025
- msgid "Visible to non-members"
4026
- msgstr "Visible al público (no miembros)"
 
4027
 
4028
- #: includes/mycred-widgets.php:382
4029
- msgid "Number of users"
4030
- msgstr "Numero de Usuarios"
4031
 
4032
- #: includes/mycred-widgets.php:391
4033
- msgid "Offset"
4034
- msgstr "Offset"
 
 
4035
 
4036
- #: includes/mycred-widgets.php:393
4037
- msgid "Optional offset of order. Use zero to return the first in the list."
4038
- msgstr ""
4039
- "Opcional desplazamiento (offset) de la orden. Utilice cero para devolver el "
4040
- "primero en la lista."
4041
 
4042
- #: includes/mycred-widgets.php:396
4043
- msgid "Order"
4044
- msgstr "Orden"
 
4045
 
4046
- #: includes/mycred-widgets.php:401 includes/classes/class.query-log.php:1081
4047
- msgid "Ascending"
4048
- msgstr "Ascendente"
 
4049
 
4050
- #: includes/mycred-widgets.php:402 includes/classes/class.query-log.php:1081
4051
- msgid "Descending"
4052
- msgstr "Descendente"
4053
 
4054
- #: includes/mycred-widgets.php:415
4055
- msgid "Append current users position"
4056
- msgstr "Añade la posición actual de usuarios "
4057
 
4058
- #: includes/mycred-widgets.php:416
4059
- msgid ""
4060
- "If the current user is not in this leaderboard, you can select to append "
4061
- "them at the end with their current position."
4062
- msgstr ""
4063
- "Si el usuario actual no esta en esta tabla de clasificación, puedes elegir a "
4064
- "agregarles al final con su posición actual."
4065
 
4066
- #: includes/mycred-widgets.php:469
4067
- #, php-format
4068
- msgid "(%s) Wallet"
4069
- msgstr "(%s) Cartera"
4070
 
4071
- #: includes/mycred-widgets.php:579
4072
- msgid "Row Layout"
4073
- msgstr "Disposición de Filas"
 
4074
 
4075
- #: includes/mycred-functions.php:85
4076
- msgid "Point"
4077
- msgstr "Punto"
4078
 
4079
- #: includes/mycred-functions.php:86
4080
- msgid "Points"
4081
- msgstr "Puntos"
4082
 
4083
- #: includes/mycred-functions.php:466
4084
- msgid "Deleted"
4085
- msgstr "Borrado"
 
 
 
 
 
 
 
 
4086
 
4087
- #: includes/mycred-functions.php:607
4088
- msgid "Deleted Item"
4089
- msgstr "Artículo Borrado"
4090
 
4091
- #: includes/mycred-functions.php:671
4092
- #: addons/email-notices/myCRED-addon-email-notices.php:864
4093
- #: addons/gateway/carts/mycred-wpecommerce.php:370
4094
- msgid "General"
4095
- msgstr "General"
4096
 
4097
- #: includes/mycred-functions.php:678
4098
- msgid "User Related"
4099
- msgstr "Relacionado al Usuario"
4100
 
4101
- #: includes/mycred-functions.php:685
4102
- msgid "Post Related"
4103
- msgstr "Relacionado a la Entrada"
4104
 
4105
- #: includes/mycred-functions.php:692
4106
- msgid "Comment Related"
4107
- msgstr "Relacionado al Comentario"
4108
 
4109
- #: includes/mycred-functions.php:699
4110
- msgid "Widget Related"
4111
- msgstr "Relacionado al Widget"
 
 
 
 
 
4112
 
4113
- #: includes/mycred-functions.php:706
4114
- msgid "Amount Related"
4115
- msgstr "Cantidad Relacionada"
 
4116
 
4117
- #: includes/mycred-functions.php:713
4118
- msgid "Video Related"
4119
- msgstr "Relacionado al Video"
4120
 
4121
- #: includes/mycred-functions.php:724
4122
- msgid "and"
4123
- msgstr "y"
4124
 
4125
- #: includes/mycred-functions.php:726
4126
- msgid "Available Template Tags:"
4127
- msgstr "Etiquetas de Plantilla Disponibles:"
 
 
4128
 
4129
- #: includes/importers/mycred-cubepoints.php:282
4130
- msgid "No balances were imported."
4131
- msgstr "Ningun saldo fue importado."
4132
 
4133
- #: includes/importers/mycred-cubepoints.php:282
4134
- msgid "No log entries were imported!"
4135
- msgstr "¡No se importo ninguna entrada de registro!"
4136
 
4137
- #: includes/importers/mycred-cubepoints.php:288
4138
- #: includes/importers/mycred-balances.php:229
4139
- #, php-format
4140
  msgid ""
4141
- "Import complete - A total of <strong>%d</strong> balances were successfully "
4142
- "imported. <strong>%d</strong> was skipped."
4143
  msgstr ""
4144
- "Importación Finalizado - En total, <strong>%d</strong> saldos fueron "
4145
- "importado con éxito. Se saltaron <strong>%d</strong>."
4146
-
4147
- #: includes/importers/mycred-cubepoints.php:340
4148
- #: includes/importers/mycred-cubepoints.php:364
4149
- #: includes/importers/mycred-balances.php:323
4150
- #: includes/importers/mycred-log-entries.php:308
4151
- msgid "Import"
4152
- msgstr "Importar"
4153
-
4154
- #: includes/importers/mycred-cubepoints.php:344
4155
- msgid "Select what to import"
4156
- msgstr "Elige lo que deseas importar"
4157
 
4158
- #: includes/importers/mycred-cubepoints.php:345
4159
- msgid "Log Entries Only"
4160
- msgstr "Solo Entradas de Registro"
4161
 
4162
- #: includes/importers/mycred-cubepoints.php:346
4163
- msgid "CubePoints Balances Only"
4164
- msgstr "Saldos de CubePoints Unicamente"
 
 
 
 
4165
 
4166
- #: includes/importers/mycred-cubepoints.php:347
4167
- msgid "Log Entries and Balances"
4168
- msgstr "Solo Entradas y Saldos de Registro"
4169
 
4170
- #: includes/importers/mycred-balances.php:284
4171
- #: includes/importers/mycred-log-entries.php:280
4172
- msgid "Choose a file from your computer:"
4173
- msgstr "Elige un fichero en tu ordenador:"
 
 
 
 
 
 
4174
 
4175
- #: includes/importers/mycred-balances.php:290
4176
- #: includes/importers/mycred-log-entries.php:286
4177
- #, php-format
4178
- msgid "Maximum size: %s"
4179
- msgstr "Tamaño Máximo: %s"
4180
 
4181
- #: includes/importers/mycred-balances.php:295
4182
- #: includes/importers/mycred-log-entries.php:291
4183
- msgid "OR enter path to file:"
4184
- msgstr "O rellena la ruta al fichero:"
4185
 
4186
- #: includes/importers/mycred-balances.php:303
4187
- #: includes/importers/mycred-log-entries.php:299
4188
- msgid "Delimiter"
4189
- msgstr "Delimitador"
4190
 
4191
- #: includes/importers/mycred-balances.php:311
4192
- msgid "Method"
4193
- msgstr "Método"
4194
 
4195
- #: includes/importers/mycred-balances.php:315
4196
- msgid "Replace current balances with the amount in this CSV file"
4197
- msgstr "Sustituir los balances actuales con los montos en el archivo CSV"
4198
 
4199
- #: includes/importers/mycred-balances.php:316
4200
- msgid "Adjust current balances according to the amount in this CSV file"
4201
- msgstr "Ajustar los balances actuales de acuerdo al monto en el archivo CSV"
 
 
 
 
 
 
4202
 
4203
- #: includes/importers/mycred-log-entries.php:214
4204
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:100
4205
- msgid "View Log"
4206
- msgstr "Ver Registro"
 
 
4207
 
4208
- #: includes/shortcodes/mycred_exchange.php:33
4209
- #: includes/shortcodes/mycred_exchange.php:41
4210
- #: includes/shortcodes/mycred_exchange.php:136
4211
- #: includes/shortcodes/mycred_exchange.php:156
4212
- #, php-format
4213
- msgid "You are excluded from using %s."
4214
- msgstr "Esta exluido del uso de %s."
4215
 
4216
- #: includes/shortcodes/mycred_exchange.php:37
4217
- #: includes/shortcodes/mycred_exchange.php:146
4218
- msgid "Your balance is too low to use this feature."
4219
- msgstr "Tu saldo esta demasiado bajo para usar esta característica."
4220
 
4221
- #: includes/shortcodes/mycred_exchange.php:63
4222
- #, php-format
4223
- msgid "Your current %s balance"
4224
- msgstr "Tu Saldo Actual %s"
4225
 
4226
- #: includes/shortcodes/mycred_exchange.php:70
4227
- #, php-format
4228
- msgid "Minimum %s"
4229
- msgstr "Minimo %s"
 
 
4230
 
4231
- #: includes/shortcodes/mycred_exchange.php:76
4232
- #, php-format
4233
- msgid "1 %s = <span class=\"rate\">%s</span> %s"
4234
- msgstr "1 %s = <span class=\"rate\">%s</span> %s"
4235
 
4236
- #: includes/shortcodes/mycred_exchange.php:124
4237
- msgid "Point types not found."
4238
- msgstr "Clase de puntos no encontrado."
4239
 
4240
- #: includes/shortcodes/mycred_exchange.php:169
4241
- #, php-format
4242
- msgid "You must exchange at least %s!"
4243
- msgstr "Debes intercambiar por lo menos %s!"
4244
 
4245
- #: includes/shortcodes/mycred_exchange.php:178
4246
- #: addons/transfer/myCRED-addon-transfer.php:174
4247
- msgid "Insufficient Funds. Please try a lower amount."
4248
- msgstr "Fondos Insuficientes. Por favor intenta con una cantidad menor."
4249
 
4250
- #: includes/shortcodes/mycred_exchange.php:191
4251
- #, php-format
4252
- msgid "Exchange from %s"
4253
- msgstr "Intercambiar desde %s"
4254
 
4255
- #: includes/shortcodes/mycred_exchange.php:203
4256
- #, php-format
4257
- msgid "Exchange to %s"
4258
- msgstr "Intercambiar a %s"
 
 
4259
 
4260
- #: includes/shortcodes/mycred_exchange.php:211
4261
- #, php-format
4262
- msgid "You have successfully exchanged %s into %s."
4263
- msgstr "Has intercambiado %s a %s con éxito."
4264
 
4265
- #: includes/shortcodes/mycred_video.php:44
4266
- msgid "A video ID is required for this shortcode"
4267
- msgstr "Este código corto (shortcode) precisa un ID del video."
4268
 
4269
- #: includes/classes/class.query-export.php:374
4270
- #: includes/classes/class.query-log.php:1526
4271
- msgid "User Missing"
4272
- msgstr "Usuario Ausente"
 
 
 
4273
 
4274
- #: includes/classes/class.query-export.php:487
4275
- msgid "Search Results"
4276
- msgstr "Resultados de la Búsqueda"
4277
 
4278
- #: includes/classes/class.query-log.php:954
4279
- msgid "No log entries found"
4280
- msgstr "Ninguna entrada de registro encontrada"
 
 
 
 
4281
 
4282
- #: includes/classes/class.query-log.php:1055
4283
- msgid "Show all references"
4284
- msgstr "Muestra todas las referencias"
4285
 
4286
- #: includes/classes/class.query-log.php:1080
4287
- msgid "Show in order"
4288
- msgstr "Mostrar en Orden"
 
 
 
 
4289
 
4290
- #: includes/classes/class.query-log.php:1101
4291
- msgid "Filter"
4292
- msgstr "Filtro"
4293
 
4294
- #: includes/classes/class.query-log.php:1694
4295
- msgid "No export options available."
4296
- msgstr "No hay opciones para exportar."
4297
 
4298
- #: includes/classes/class.query-log.php:1727
4299
- #: includes/classes/class.query-log.php:1729
4300
- msgid "Search Log"
4301
- msgstr "Busqueda de Registro"
4302
 
4303
- #. buscar las entradas en el registro
4304
- #: includes/classes/class.query-log.php:1728
4305
- msgid "search log entries"
4306
- msgstr "Búsqueda de las entradas de registro"
4307
 
4308
- #: includes/classes/class.query-log.php:2180
4309
- msgid "Website Registration"
4310
- msgstr "Inscripción del Sitio Web"
4311
 
4312
- #: includes/classes/class.query-log.php:2181
4313
- msgid "Website Visit"
4314
- msgstr "Visita de Sitio Web"
4315
 
4316
- #: includes/classes/class.query-log.php:2182
4317
- msgid "Viewing Content (Member)"
4318
- msgstr "Viendo Contenido (Miembro)"
 
 
 
 
 
 
 
4319
 
4320
- #: includes/classes/class.query-log.php:2183
4321
- msgid "Viewing Content (Author)"
4322
- msgstr "Viendo Contenido (Autor)"
4323
 
4324
- #: includes/classes/class.query-log.php:2184
4325
- msgid "Logging in"
4326
- msgstr "Accediendo"
 
4327
 
4328
- #: includes/classes/class.query-log.php:2185
4329
- msgid "Publishing Content"
4330
- msgstr "Publicando Contenido"
 
 
4331
 
4332
- #: includes/classes/class.query-log.php:2186
4333
- msgid "Approved Comment"
4334
- msgstr "Comentario Aprobado"
4335
 
4336
- #: includes/classes/class.query-log.php:2187
4337
- msgid "Unapproved Comment"
4338
- msgstr "Comentario no Aprobado"
 
4339
 
4340
- #: includes/classes/class.query-log.php:2188
4341
- msgid "SPAM Comment"
4342
- msgstr "Comentario SPAM"
 
4343
 
4344
- #: includes/classes/class.query-log.php:2190
4345
- msgid "Link Click"
4346
- msgstr "Click al Enlace"
 
4347
 
4348
- #: includes/classes/class.query-log.php:2191
4349
- msgid "Watching Video"
4350
- msgstr "Mirando Video"
4351
 
4352
- #: includes/classes/class.query-log.php:2192
4353
- msgid "Visitor Referral"
4354
- msgstr "Referencia de Visitante"
4355
 
4356
- #: includes/classes/class.query-log.php:2193
4357
- msgid "Signup Referral"
4358
- msgstr "Referencia de Inscripción "
 
 
4359
 
4360
- #: includes/classes/class.query-log.php:2197
4361
- msgid "New Profile Update"
4362
- msgstr "Nuevo Perfil Actualizado"
 
4363
 
4364
- #: includes/classes/class.query-log.php:2199
4365
- msgid "Avatar Upload"
4366
- msgstr "Subir Avatar"
4367
 
4368
- #: includes/classes/class.query-log.php:2201
4369
- msgid "New Friendship"
4370
- msgstr "Nueva Amistad"
 
4371
 
4372
- #: includes/classes/class.query-log.php:2202
4373
- msgid "Ended Friendship"
4374
- msgstr "Amistad Terminada"
4375
 
4376
- #: includes/classes/class.query-log.php:2203
4377
- msgid "New Profile Comment"
4378
- msgstr "Nuevo Comentario de Perfil"
4379
 
4380
- #: includes/classes/class.query-log.php:2204
4381
- msgid "Profile Comment Deletion"
4382
- msgstr "Borrar Comentario del Perfil"
4383
 
4384
- #: includes/classes/class.query-log.php:2207
4385
- msgid "New Message"
4386
- msgstr "Nuevo Mensaje"
 
 
 
 
4387
 
4388
- #: includes/classes/class.query-log.php:2209
4389
- msgid "New Group"
4390
- msgstr "Nuevo Grupo"
 
4391
 
4392
- #: includes/classes/class.query-log.php:2210
4393
- msgid "Deleted Group"
4394
- msgstr "Grupo Borrado"
4395
 
4396
- #: includes/classes/class.query-log.php:2211
4397
- msgid "New Group Forum Topic"
4398
- msgstr "Nuevo Tema del Fórum de Grupo"
4399
 
4400
- #: includes/classes/class.query-log.php:2212
4401
- msgid "Edit Group Forum Topic"
4402
- msgstr "Editar el Tema del Fórum de Grupo"
4403
 
4404
- #: includes/classes/class.query-log.php:2213
4405
- msgid "New Group Forum Post"
4406
- msgstr "Nueva Entrada del Fórum de Grupo"
4407
 
4408
- #: includes/classes/class.query-log.php:2214
4409
- msgid "Edit Group Forum Post"
4410
- msgstr "Editar Entrada del Fórum de Grupo"
 
4411
 
4412
- #: includes/classes/class.query-log.php:2215
4413
- msgid "Joining Group"
4414
- msgstr "Agregar al Grupo"
 
4415
 
4416
- #: includes/classes/class.query-log.php:2216
4417
- msgid "Leaving Group"
4418
- msgstr "Dejando el Grupo"
4419
 
4420
- #: includes/classes/class.query-log.php:2217
4421
- msgid "New Group Avatar"
4422
- msgstr "Nuevo Avatar del Grupo"
4423
 
4424
- #: includes/classes/class.query-log.php:2219
4425
- msgid "New Group Comment"
4426
- msgstr ""
4427
- "Nuevo Comentario al Grupo\n"
4428
 
4429
- #: includes/classes/class.query-log.php:2229
4430
- msgid "New Link"
4431
- msgstr "Nuevo Enlace"
4432
 
4433
- #: includes/classes/class.query-log.php:2230
4434
- msgid "Link Voting"
4435
- msgstr "Votar sobre Enlace"
4436
 
4437
- #: includes/classes/class.query-log.php:2231
4438
- msgid "Link Update"
4439
- msgstr "Enlace Actualizado"
4440
 
4441
- #: includes/classes/class.query-log.php:2235
4442
- msgid "New Forum (bbPress)"
4443
- msgstr "Nuevo Fórum (bbPress)"
4444
 
4445
- #: includes/classes/class.query-log.php:2236
4446
- msgid "New Forum Topic (bbPress)"
4447
- msgstr "Nuevo Tema de Fórum (bbPress)"
4448
 
4449
- #: includes/classes/class.query-log.php:2237
4450
- msgid "Favorited Topic (bbPress)"
4451
- msgstr "Tema Favorito (bbPress)"
4452
 
4453
- #: includes/classes/class.query-log.php:2238
4454
- msgid "New Topic Reply (bbPress)"
4455
- msgstr "Nueva Respuesta a Tema (bbPress)"
4456
 
4457
- #: includes/classes/class.query-log.php:2242
4458
- msgid "Form Submission (Contact Form 7)"
4459
- msgstr "Sumisión de Formulario (Contact Form 7)"
4460
 
4461
- #: includes/classes/class.query-log.php:2245
4462
- msgid "Form Submission (Gravity Form)"
4463
- msgstr "Sumisión de Formulario (Gravity Form)"
4464
 
4465
- #: includes/classes/class.query-log.php:2248
4466
- msgid "New Forum Topic (SimplePress)"
4467
- msgstr "Nuevo Tema de Fórum (SimplePress)"
4468
 
4469
- #: includes/classes/class.query-log.php:2249
4470
- msgid "New Forum Post (SimplePress)"
4471
- msgstr "Nueva Entrada de Fórum (SimplePress)"
 
4472
 
4473
- #: includes/classes/class.query-log.php:2270
4474
- msgid "Poll Voting"
4475
- msgstr "Votación"
4476
 
4477
- #: includes/classes/class.query-log.php:2273
4478
- msgid "Sending an Invite"
4479
- msgstr "Mandando una Invitación"
 
4480
 
4481
- #: includes/classes/class.query-log.php:2274
4482
- msgid "Accepting an Invite"
4483
- msgstr "Aceptando una Invitación"
4484
 
4485
- #: includes/classes/class.query-log.php:2280
4486
- #: addons/banking/myCRED-addon-banking.php:150
4487
- msgid "Compound Interest"
4488
- msgstr "Interés Compuesto"
4489
 
4490
- #: includes/classes/class.query-log.php:2288
4491
- msgid "buyCRED Purchase (PayPal Standard)"
4492
- msgstr "Compra buyCRED (PayPal Standard)"
4493
 
4494
- #: includes/classes/class.query-log.php:2289
4495
- msgid "buyCRED Purchase (Skrill)"
4496
- msgstr "Compra buyCRED (Skrill)"
 
4497
 
4498
- #: includes/classes/class.query-log.php:2290
4499
- msgid "buyCRED Purchase (Zombaio)"
4500
- msgstr "Compra buyCRED (Zombaio)"
4501
 
4502
- #: includes/classes/class.query-log.php:2291
4503
- msgid "buyCRED Purchase (NETBilling)"
4504
- msgstr "Compra buyCRED (NETBilling)"
4505
 
4506
- #: includes/classes/class.query-log.php:2292
4507
- msgid "buyCRED Purchase (BitPay)"
4508
- msgstr "Compra buyCRED (BitPay)"
4509
 
4510
- #: includes/classes/class.query-log.php:2302
4511
- msgid "Store Purchase (WooCommerce)"
4512
- msgstr "Compra de Tienda (WooCommerce)"
4513
 
4514
- #: includes/classes/class.query-log.php:2307
4515
- msgid "Store Purchase (MarketPress)"
4516
- msgstr "Compra de Tienda (MarketPress)"
4517
 
4518
- #: includes/classes/class.query-log.php:2311
4519
- msgid "Store Purchase (WP E-Commerce)"
4520
- msgstr "Compra de Tienda (WP E-Commerce)"
4521
 
4522
- #: includes/classes/class.query-log.php:2317
4523
- msgid "Event Payment (Event Espresso)"
4524
- msgstr "Pago por Evento (Event Espresso)"
4525
 
4526
- #: includes/classes/class.query-log.php:2318
4527
- msgid "Event Sale (Event Espresso)"
4528
- msgstr "Venta de Evento (Event Espresso)"
4529
 
4530
- #: includes/classes/class.query-log.php:2322
4531
- msgid "Event Payment (Events Manager)"
4532
- msgstr "Pago por Evento (Events Manager)"
4533
 
4534
- #: includes/classes/class.query-log.php:2323
4535
- msgid "Event Sale (Events Manager)"
4536
- msgstr "Venta de Evento (Events Manager)"
4537
 
4538
- #: includes/classes/class.query-log.php:2332
4539
- #: addons/transfer/myCRED-addon-transfer.php:48
4540
- msgid "Transfer"
4541
- msgstr "Transferir"
4542
 
4543
- #: includes/classes/class.query-log.php:2336
4544
- msgid "Manual Adjustment by Admin"
4545
- msgstr "Ajuste Manual por Admin"
4546
 
4547
- #: addons/banking/myCRED-addon-banking.php:45
4548
- #: addons/banking/myCRED-addon-banking.php:46
4549
- #: addons/banking/myCRED-addon-banking.php:47
4550
- msgid "Banking"
4551
- msgstr "Banco"
4552
 
4553
- #: addons/banking/myCRED-addon-banking.php:141
4554
- msgid "Central Banking"
4555
- msgstr "Banco Central"
 
4556
 
4557
- #: addons/banking/myCRED-addon-banking.php:159
4558
- msgid "Recurring Payouts"
4559
- msgstr "Pagos Recurrentes"
4560
 
4561
- #: addons/banking/myCRED-addon-banking.php:160
4562
- msgid "Setup mass %_singular% payouts for your users."
4563
- msgstr "Configurar pago en masa &_singular% para tus usuarios."
 
4564
 
4565
- #: addons/banking/myCRED-addon-banking.php:253
4566
- #, php-format
4567
- msgid "%s Banking"
4568
- msgstr "%s Bancario"
4569
 
4570
- #: addons/banking/myCRED-addon-banking.php:273
4571
- #: addons/buy-creds/modules/buycred-module-core.php:618
4572
- msgid "Enable"
4573
- msgstr "Habilitar"
4574
 
4575
- #: addons/banking/myCRED-addon-banking.php:292
4576
- msgid "Update Changes"
4577
- msgstr "Actualizar Cambios"
4578
 
4579
- #: addons/transfer/myCRED-addon-transfer.php:41
4580
- msgid "You do not have enough %plural% to send."
4581
- msgstr "No tienes bastante %plural% para mandar."
4582
 
4583
- #: addons/transfer/myCRED-addon-transfer.php:42
4584
- msgid "You have exceeded your %limit% transfer limit."
4585
- msgstr "Has excedido tu limite de transferencia de %limit%."
4586
 
4587
- #: addons/transfer/myCRED-addon-transfer.php:167
4588
- msgid "Transaction completed."
4589
- msgstr "Transacción Finalizada"
4590
 
4591
- #: addons/transfer/myCRED-addon-transfer.php:168
4592
  msgid ""
4593
- "Security token could not be verified. Please contact your site administrator!"
 
4594
  msgstr ""
4595
- "No se pudo verificar el 'token' (código) de seguridad. ¡Por favor, póngase "
4596
- "en contacto con el administrador del sitio!"
4597
 
4598
- #: addons/transfer/myCRED-addon-transfer.php:169
4599
- #: addons/transfer/myCRED-addon-transfer.php:176
4600
- msgid "Communications error. Please try again later."
4601
- msgstr "Error en comunicación. Por favor inténtelo de nuevo más tarde."
4602
 
4603
- #: addons/transfer/myCRED-addon-transfer.php:170
4604
- msgid "Recipient not found. Please try again."
4605
- msgstr "El recipiente no fuel encontrado. Por favor Inténtelo de nuevo."
4606
 
4607
- #: addons/transfer/myCRED-addon-transfer.php:171
4608
- msgid "Transaction declined by recipient."
4609
- msgstr "Transacción rechazada por el destinatario"
4610
 
4611
- #: addons/transfer/myCRED-addon-transfer.php:172
4612
- msgid "Incorrect amount. Please try again."
4613
- msgstr "Cantidad incorecta. Por favor inténtelo de nuevo."
4614
 
4615
- #: addons/transfer/myCRED-addon-transfer.php:173
 
 
 
 
4616
  msgid ""
4617
- "This myCRED Add-on has not yet been setup! No transfers are allowed until "
4618
- "this has been done!"
4619
  msgstr ""
4620
- "¡Esta Extensión de myCRED todavía no ha sido configurado! No se permite "
4621
- "transferencias hasta que se haga esto."
 
4622
 
4623
- #: addons/transfer/myCRED-addon-transfer.php:175
4624
- msgid "Transfer Limit exceeded."
4625
- msgstr "Límite de transferencia excedida."
4626
 
4627
- #: addons/transfer/myCRED-addon-transfer.php:340
4628
- msgid "No limits."
4629
- msgstr "Sin limite."
4630
 
4631
- #: addons/transfer/myCRED-addon-transfer.php:341
4632
- msgid "Impose daily limit."
4633
- msgstr "Imponer limite diario."
4634
 
4635
- #: addons/transfer/myCRED-addon-transfer.php:342
4636
- msgid "Impose weekly limit."
4637
- msgstr "Imponer limite semanal."
 
4638
 
4639
- #: addons/transfer/myCRED-addon-transfer.php:349
4640
- msgid "User Login (user_login)"
4641
- msgstr "Ingreso Usuario (user_login)"
4642
 
4643
- #: addons/transfer/myCRED-addon-transfer.php:350
4644
- msgid "User Email (user_email)"
4645
- msgstr "Correo Electrónico del Usuario (user_email)"
4646
 
4647
- #: addons/transfer/myCRED-addon-transfer.php:355
4648
- #: addons/buy-creds/gateways/bitpay.php:299
4649
- msgid "Yes"
4650
- msgstr "Sí"
4651
 
4652
- #: addons/transfer/myCRED-addon-transfer.php:356
4653
- #: addons/buy-creds/gateways/bitpay.php:298
4654
- msgid "No"
4655
- msgstr "No"
4656
 
4657
- #: addons/transfer/myCRED-addon-transfer.php:363
4658
- msgid "Transfers"
4659
- msgstr "Transferencias"
4660
 
4661
- #: addons/transfer/myCRED-addon-transfer.php:381
4662
- msgid "Reload"
4663
  msgstr "Recargar"
4664
 
4665
- #: addons/transfer/myCRED-addon-transfer.php:405
4666
- msgid "Autofill Recipient"
4667
- msgstr "Destinatario del Relleno Automático"
4668
 
4669
- #: addons/transfer/myCRED-addon-transfer.php:417
4670
- msgid "Select what user details recipients should be autofilled by."
4671
- msgstr ""
4672
- "Selecciona cuales detalles del usuario al destinatario deben ser rellenados "
4673
- "automáticamente."
 
 
 
 
 
4674
 
4675
- #: addons/transfer/myCRED-addon-transfer.php:424
4676
- #: addons/coupons/myCRED-addon-coupons.php:252
4677
- #: addons/banking/services/mycred-service-payouts.php:599
4678
- #: addons/banking/services/mycred-service-payouts.php:760
4679
- msgid "Limits"
4680
- msgstr "imites"
4681
 
4682
- #: addons/transfer/myCRED-addon-transfer.php:443
4683
- msgid "Limit Amount"
4684
- msgstr "Limitar la Cantidad"
4685
 
4686
- #: addons/transfer/myCRED-addon-transfer.php:456
4687
- #: addons/sell-content/myCRED-addon-sell-content.php:685
4688
- #: addons/gateway/event-booking/mycred-eventsmanager.php:641
4689
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:657
4690
- msgid "Log Templates"
4691
- msgstr "Plantillas de Registro"
4692
 
4693
- #: addons/transfer/myCRED-addon-transfer.php:460
4694
- msgid "Log template for sending"
4695
- msgstr "Plantilla de registros para transmitir"
4696
 
4697
- #: addons/transfer/myCRED-addon-transfer.php:467
4698
- msgid "Log template for receiving"
4699
- msgstr "Plantilla de registros para recibir"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4700
 
4701
- #: addons/ranks/myCRED-addon-ranks.php:218
4702
- #: addons/ranks/myCRED-addon-ranks.php:227
4703
- #: addons/ranks/myCRED-addon-ranks.php:237
4704
- #: addons/ranks/myCRED-addon-ranks.php:339
4705
- #: addons/ranks/myCRED-addon-ranks.php:340
4706
- #: addons/ranks/myCRED-addon-ranks.php:724
4707
- #: addons/ranks/myCRED-addon-ranks.php:1359
4708
- #: addons/ranks/myCRED-addon-ranks.php:1654
4709
- msgid "Ranks"
4710
- msgstr "Rangos"
4711
 
4712
- #: addons/ranks/myCRED-addon-ranks.php:222
4713
- #: addons/ranks/myCRED-addon-ranks.php:724
4714
- #: addons/ranks/myCRED-addon-ranks.php:873
4715
- #: addons/ranks/myCRED-addon-ranks.php:876
4716
- #: addons/ranks/myCRED-addon-ranks.php:904
4717
- msgid "Rank"
4718
- msgstr "Rango"
4719
 
4720
- #: addons/ranks/myCRED-addon-ranks.php:223
4721
- #: addons/ranks/myCRED-addon-ranks.php:224
4722
- #: addons/email-notices/myCRED-addon-email-notices.php:130
4723
- #: addons/email-notices/myCRED-addon-email-notices.php:131
4724
- #: addons/badges/myCRED-addon-badges.php:150
4725
- #: addons/badges/myCRED-addon-badges.php:151
4726
- #: addons/banking/services/mycred-service-payouts.php:896
4727
- msgid "Add New"
4728
- msgstr "Añade Nuevo"
4729
 
4730
- #: addons/ranks/myCRED-addon-ranks.php:225
4731
- msgid "Edit Rank"
4732
- msgstr "Editar Rango"
4733
 
4734
- #: addons/ranks/myCRED-addon-ranks.php:226
4735
- msgid "New Rank"
4736
- msgstr "Nuevo Rango"
 
4737
 
4738
- #: addons/ranks/myCRED-addon-ranks.php:228
4739
- msgid "View Rank"
4740
- msgstr "Ver Rango"
 
4741
 
4742
- #: addons/ranks/myCRED-addon-ranks.php:229
4743
- msgid "Search Ranks"
4744
- msgstr "Búsqueda de Rangos"
 
 
 
4745
 
4746
- #: addons/ranks/myCRED-addon-ranks.php:234
4747
- #: addons/ranks/myCRED-addon-ranks.php:1286
4748
- msgid "No ranks found"
4749
- msgstr "Ningun rango encontrado"
 
4750
 
4751
- #: addons/ranks/myCRED-addon-ranks.php:235
4752
- msgid "No ranks found in Trash"
4753
- msgstr "Ningun rango encontrao el la papelera"
4754
 
4755
- #: addons/ranks/myCRED-addon-ranks.php:283
4756
- #: addons/ranks/myCRED-addon-ranks.php:284
4757
- #: addons/ranks/myCRED-addon-ranks.php:285
4758
- #: addons/ranks/myCRED-addon-ranks.php:286
4759
- #: addons/ranks/myCRED-addon-ranks.php:287
4760
- #: addons/ranks/myCRED-addon-ranks.php:290
4761
- #: addons/ranks/myCRED-addon-ranks.php:291
4762
- msgid "Rank Updated."
4763
- msgstr "Rango Actualizado."
4764
 
4765
- #: addons/ranks/myCRED-addon-ranks.php:481
4766
- #, php-format
4767
- msgid "Completed - Total of %d users effected"
4768
- msgstr "Completado - Un total %d usuarios afectados"
4769
 
4770
- #: addons/ranks/myCRED-addon-ranks.php:987
4771
- msgid "Warning! All ranks will be deleted! This can not be undone!"
4772
- msgstr ""
4773
- "¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer esto!"
4774
 
4775
- #: addons/ranks/myCRED-addon-ranks.php:988
4776
- msgid "Are you sure you want to re-assign user ranks?"
4777
- msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
 
 
 
4778
 
4779
- #: addons/ranks/myCRED-addon-ranks.php:1073
4780
- #: addons/ranks/myCRED-addon-ranks.php:1174
4781
- msgid "Rank Title"
4782
- msgstr "Titulo de Rango"
 
 
4783
 
4784
- #: addons/ranks/myCRED-addon-ranks.php:1074
4785
- msgid "Logo"
4786
- msgstr "Logotipo"
4787
 
4788
- #: addons/ranks/myCRED-addon-ranks.php:1075
4789
- #: addons/badges/myCRED-addon-badges.php:828
4790
- #: addons/badges/myCRED-addon-badges.php:829
4791
- msgid "Requirement"
4792
- msgstr "Requisito"
4793
 
4794
- #: addons/ranks/myCRED-addon-ranks.php:1101
4795
- msgid "No Logo Set"
4796
- msgstr "No hay Logotipo Configurado"
4797
 
4798
- #: addons/ranks/myCRED-addon-ranks.php:1116
4799
- #: addons/ranks/myCRED-addon-ranks.php:1121
4800
- msgid "Any Value"
4801
- msgstr "Cualquier Valor"
4802
 
4803
- #: addons/ranks/myCRED-addon-ranks.php:1118
4804
- #: addons/buy-creds/modules/buycred-module-core.php:345
4805
- msgid "Minimum %plural%"
4806
- msgstr "Minimo %_plural%"
4807
 
4808
- #: addons/ranks/myCRED-addon-ranks.php:1123
4809
- msgid "Maximum %plural%"
4810
- msgstr "Maximo %plural%"
 
4811
 
4812
- #: addons/ranks/myCRED-addon-ranks.php:1275
4813
- #: addons/ranks/myCRED-addon-ranks.php:1276
4814
- msgid "Not Set"
4815
- msgstr "No Configurado"
4816
 
4817
- #: addons/ranks/myCRED-addon-ranks.php:1366
4818
- msgid "Rank Features"
4819
- msgstr "Caracteristicas de los Rangos"
4820
 
4821
- #: addons/ranks/myCRED-addon-ranks.php:1372
4822
- msgid "%plural% requirement"
4823
- msgstr "%plural% requisito"
 
4824
 
4825
- #: addons/ranks/myCRED-addon-ranks.php:1378
4826
- msgid "Content"
4827
- msgstr "Contenido"
4828
 
4829
- #: addons/ranks/myCRED-addon-ranks.php:1381
4830
- msgid "Excerpt"
4831
- msgstr "Extracto"
4832
 
4833
- #: addons/ranks/myCRED-addon-ranks.php:1384
4834
- msgid "Comments"
4835
- msgstr "Comentario"
4836
 
4837
- #: addons/ranks/myCRED-addon-ranks.php:1387
4838
- msgid "Page Attributes"
4839
- msgstr "Atributos de Página"
 
 
 
4840
 
4841
- #: addons/ranks/myCRED-addon-ranks.php:1390
4842
- msgid "Custom Fields"
4843
- msgstr "Campo Personalizado"
4844
 
4845
- #. not sure if this is order, as in ordering pizza or order as in rank, organization
4846
- #: addons/ranks/myCRED-addon-ranks.php:1407
4847
- msgid "Display Order"
4848
- msgstr "Orden de Visualización"
4849
 
4850
- #: addons/ranks/myCRED-addon-ranks.php:1413
4851
- msgid "Ascending - Lowest rank to highest"
4852
- msgstr "Ascendente - Rango más bajo a lo más alto"
4853
 
4854
- #: addons/ranks/myCRED-addon-ranks.php:1414
4855
- msgid "Descending - Highest rank to lowest"
4856
- msgstr "Descendiente - Rango más alto al más bajo"
4857
 
4858
- #: addons/ranks/myCRED-addon-ranks.php:1456
4859
- msgid "Calculate Totals"
4860
- msgstr "Calcular Totales"
4861
 
4862
- #: addons/ranks/myCRED-addon-ranks.php:1476
4863
- #: addons/ranks/myCRED-addon-ranks.php:1517
4864
- msgid "Do not show."
4865
- msgstr "No mostrar."
4866
 
4867
- #: addons/ranks/myCRED-addon-ranks.php:1477
4868
- msgid "Include in Profile Header."
4869
- msgstr "Incluir en Encabezado del Perfil"
4870
 
4871
- #: addons/ranks/myCRED-addon-ranks.php:1479
4872
- msgid "Include under the \"Profile\" tab and Profile Header."
4873
- msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil."
4874
 
4875
- #: addons/ranks/myCRED-addon-ranks.php:1519
4876
- #: addons/badges/myCRED-addon-badges.php:1175
4877
- msgid "Include in Profile"
4878
- msgstr "Incluir en el Perfil"
4879
 
4880
- #: addons/ranks/myCRED-addon-ranks.php:1546
4881
- #: addons/email-notices/myCRED-addon-email-notices.php:1456
4882
- #: addons/badges/myCRED-addon-badges.php:1202
4883
- #: addons/buy-creds/modules/buycred-module-core.php:460
4884
- msgid "Available Shortcodes"
4885
- msgstr "Códigos cortos Disponibles"
 
4886
 
4887
- #: addons/ranks/myCRED-addon-ranks.php:1657
4888
- msgid "User Meta Key"
4889
- msgstr "Clave Meta del Usuario"
4890
 
4891
- #: addons/ranks/myCRED-addon-ranks.php:1661
4892
- msgid "No. of ranks"
4893
- msgstr "Numero de Rangos"
 
4894
 
4895
- #: addons/ranks/myCRED-addon-ranks.php:1666
4896
- msgid "Remove All Ranks"
4897
- msgstr "Quitar todos los Rangos"
4898
 
4899
- #: addons/ranks/myCRED-addon-ranks.php:1666
4900
- msgid "Assign Ranks to Users"
4901
- msgstr "Asignar Rango a los Usuarios"
4902
 
4903
- #: addons/notifications/myCRED-addon-notifications.php:191
4904
- msgid "Notifications"
4905
- msgstr "Notificaciones"
4906
 
4907
- #: addons/notifications/myCRED-addon-notifications.php:200
4908
- msgid ""
4909
- "Use %entry% to show the log entry in the notice and %amount% for the amount."
4910
- msgstr ""
4911
- "Utiliza %entry% para mostrar la entrada de registro en el aviso y %amount% "
4912
- "para la cantidad."
4913
 
4914
- #: addons/notifications/myCRED-addon-notifications.php:207
4915
- msgid "Transient Lifespan"
4916
- msgstr "Duración de Transitorio"
4917
 
4918
- #: addons/notifications/myCRED-addon-notifications.php:209
4919
- msgid ""
4920
- "The number of days a users notification is saved before being automatically "
4921
- "deleted."
4922
- msgstr ""
4923
- "Cuantos dias una notificación del usuario se guarda antes de automáticamente "
4924
- "borrarse."
 
 
 
4925
 
4926
- #: addons/notifications/myCRED-addon-notifications.php:214
4927
- msgid "Duration"
4928
- msgstr "Duracion"
4929
 
4930
- #: addons/notifications/myCRED-addon-notifications.php:224
4931
- msgid "Use the included CSS Styling for notifications."
4932
- msgstr "Utilice el Estilo CSS incluido para notificaciones."
 
4933
 
4934
- #: addons/email-notices/myCRED-addon-email-notices.php:171
4935
- #: addons/email-notices/myCRED-addon-email-notices.php:172
4936
- #: addons/email-notices/myCRED-addon-email-notices.php:173
4937
- #: addons/email-notices/myCRED-addon-email-notices.php:174
4938
- #: addons/email-notices/myCRED-addon-email-notices.php:177
4939
- #: addons/email-notices/myCRED-addon-email-notices.php:178
4940
- #: addons/email-notices/myCRED-addon-email-notices.php:179
4941
- #: addons/email-notices/myCRED-addon-email-notices.php:180
4942
- msgid "Email Notice Updated."
4943
- msgstr "Aviso atraves de correo electrónico Actualizado."
4944
 
4945
- #: addons/email-notices/myCRED-addon-email-notices.php:258
4946
- #: addons/email-notices/myCRED-addon-email-notices.php:275
4947
- msgid "Email Subject"
4948
- msgstr "Asunto del Correo Electrónico"
4949
 
4950
- #: addons/email-notices/myCRED-addon-email-notices.php:276
4951
- #: addons/banking/services/mycred-service-payouts.php:565
4952
- #: addons/banking/services/mycred-service-payouts.php:880
4953
- msgid "Status"
4954
- msgstr "Estatus"
4955
 
4956
- #: addons/email-notices/myCRED-addon-email-notices.php:302
4957
- msgid "Not Active"
4958
- msgstr "No esta Activo"
 
 
 
 
4959
 
4960
- #: addons/email-notices/myCRED-addon-email-notices.php:305
4961
- #, php-format
4962
- msgid "Scheduled:<br /><strong>%1$s</strong>"
4963
- msgstr "Programada:<br /><strong>%1$s</strong>"
4964
 
4965
- #: addons/email-notices/myCRED-addon-email-notices.php:310
4966
- #: addons/banking/services/mycred-service-payouts.php:31
4967
- msgid "Active"
4968
- msgstr "Activo"
4969
 
4970
- #: addons/email-notices/myCRED-addon-email-notices.php:312
4971
  #, php-format
4972
- msgid "Active - Last run:<br /><strong>%1$s</strong>"
4973
- msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
4974
-
4975
- #: addons/email-notices/myCRED-addon-email-notices.php:325
4976
- msgid "Email is sent when"
4977
- msgstr "el Correo Electrónico se envia cuando"
4978
 
4979
- #: addons/email-notices/myCRED-addon-email-notices.php:327
4980
- msgid "Missing instance for this notice!"
4981
- msgstr "¡Falta una instancia para este aviso!"
4982
 
4983
- #: addons/email-notices/myCRED-addon-email-notices.php:336
4984
- #: addons/email-notices/myCRED-addon-email-notices.php:338
4985
- #: addons/email-notices/myCRED-addon-email-notices.php:340
4986
- msgid "Sent To"
4987
- msgstr "Enviado A:"
4988
 
4989
- #: addons/email-notices/myCRED-addon-email-notices.php:338
4990
- #: addons/email-notices/myCRED-addon-email-notices.php:571
4991
- msgid "Administrator"
4992
- msgstr "Administrador"
4993
 
4994
- #: addons/email-notices/myCRED-addon-email-notices.php:340
4995
- msgid "Both Administrator and User"
4996
- msgstr "Tanto Administrador como Usuario"
 
 
 
 
 
 
4997
 
4998
- #: addons/email-notices/myCRED-addon-email-notices.php:388
4999
- msgid "Email Settings"
5000
- msgstr "Configuraciones de Correo Electrónico"
5001
 
5002
- #: addons/email-notices/myCRED-addon-email-notices.php:397
5003
- msgid "Available Template Tags"
5004
- msgstr "Etiquetas (tags) de Plantilla Disponibles"
5005
 
5006
- #: addons/email-notices/myCRED-addon-email-notices.php:408
5007
- msgid "Email Header"
5008
- msgstr "Encabezado del Correo Electrónico"
5009
 
5010
- #: addons/email-notices/myCRED-addon-email-notices.php:494
5011
  msgid ""
5012
- "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
5013
- "you are not yet ready to use this email notice!"
5014
  msgstr ""
5015
- "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar "
5016
- "Borrador\" si aun no estás listo para utilizar este aviso por email!"
5017
-
5018
- #: addons/email-notices/myCRED-addon-email-notices.php:496
5019
- #, php-format
5020
- msgid "This notice will become active on:<br /><strong>%1$s</strong>"
5021
- msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
5022
 
5023
- #: addons/email-notices/myCRED-addon-email-notices.php:498
5024
- msgid "This email notice is active."
5025
- msgstr "Esta notificación de correo electrónico esta activada."
5026
-
5027
- #: addons/email-notices/myCRED-addon-email-notices.php:524
5028
- msgid "Send this email notice when..."
5029
- msgstr "Envia este aviso por correo electrónico cuando..."
5030
 
5031
- #: addons/email-notices/myCRED-addon-email-notices.php:566
5032
- msgid "Recipient:"
5033
- msgstr "Destinatario:"
 
 
 
 
5034
 
5035
- #: addons/email-notices/myCRED-addon-email-notices.php:574
5036
- msgid "Both"
5037
- msgstr "Ambos"
 
5038
 
5039
- #: addons/email-notices/myCRED-addon-email-notices.php:610
5040
- #: addons/email-notices/myCRED-addon-email-notices.php:1467
5041
- msgid "Senders Name:"
5042
- msgstr "Nombre del Remitente"
5043
 
5044
- #: addons/email-notices/myCRED-addon-email-notices.php:614
5045
- #: addons/email-notices/myCRED-addon-email-notices.php:1473
5046
- msgid "Senders Email:"
5047
- msgstr "Correo Electrónico del Remitente:"
5048
 
5049
- #: addons/email-notices/myCRED-addon-email-notices.php:618
5050
- msgid "Reply-To Email:"
5051
- msgstr "Responder-A Correo Electrónico:"
 
 
 
 
5052
 
5053
- #: addons/email-notices/myCRED-addon-email-notices.php:643
5054
- msgid "CSS Styling"
5055
- msgstr "Estilo CSS"
5056
 
5057
- #: addons/email-notices/myCRED-addon-email-notices.php:666
5058
- msgid "Site Related"
5059
- msgstr "Relacionado al Sitio"
 
 
 
 
5060
 
5061
- #: addons/email-notices/myCRED-addon-email-notices.php:672
5062
- msgid "Your websites title"
5063
- msgstr "Titulo de tu pagina web"
5064
 
5065
- #: addons/email-notices/myCRED-addon-email-notices.php:680
5066
- msgid "Your websites address"
5067
- msgstr "Dirección de tu pagina web"
5068
 
5069
- #: addons/email-notices/myCRED-addon-email-notices.php:688
5070
- msgid "Your websites tagline (description)"
5071
- msgstr "La descripción de tu sitio web (lema o eslogan)"
 
5072
 
5073
- #: addons/email-notices/myCRED-addon-email-notices.php:696
5074
- msgid "Your websites admin email"
5075
- msgstr "El correo electrónico de admin para tu pagina web"
5076
 
5077
- #: addons/email-notices/myCRED-addon-email-notices.php:704
5078
- msgid "Total number of blog members"
5079
- msgstr "Número total de miembros del blog"
5080
 
5081
- #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
5082
- #: addons/email-notices/myCRED-addon-email-notices.php:865
5083
- msgid "users balance changes"
5084
- msgstr "el saldo de usuario cambia"
5085
 
5086
- #: addons/email-notices/myCRED-addon-email-notices.php:866
5087
- msgid "user gains %_plural%"
5088
- msgstr "usuario gana %_plural%"
 
 
 
 
5089
 
5090
- #: addons/email-notices/myCRED-addon-email-notices.php:867
5091
- msgid "user lose %_plural%"
5092
- msgstr "usuario pierde %_plural%"
5093
 
5094
- #: addons/email-notices/myCRED-addon-email-notices.php:868
5095
- msgid "users balance reaches zero"
5096
- msgstr "saldo de usuario llega a cero"
 
 
 
 
5097
 
5098
- #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
5099
- #: addons/email-notices/myCRED-addon-email-notices.php:869
5100
- msgid "users balance goes minus"
5101
- msgstr "el saldo de usuario cae a negativo"
5102
 
5103
- #: addons/email-notices/myCRED-addon-email-notices.php:883
5104
- msgid "Sell Content Add-on"
5105
- msgstr "Extensión para Vender Contenido"
5106
 
5107
- #: addons/email-notices/myCRED-addon-email-notices.php:884
5108
- msgid "user buys content"
5109
- msgstr "usuario compra contenido"
5110
 
5111
- #: addons/email-notices/myCRED-addon-email-notices.php:885
5112
- msgid "authors content gets sold"
5113
- msgstr "el contenido del autor sera vendido"
 
 
 
5114
 
5115
- #: addons/email-notices/myCRED-addon-email-notices.php:892
5116
- msgid "buyCREDs Add-on"
5117
- msgstr "Extensión de compraCREDs"
5118
 
5119
- #: addons/email-notices/myCRED-addon-email-notices.php:893
5120
- msgid "user buys %_plural%"
5121
- msgstr "usuario compra %_plural%"
 
 
 
5122
 
5123
- #: addons/email-notices/myCRED-addon-email-notices.php:900
5124
- msgid "Transfer Add-on"
5125
- msgstr "Extensión de Transferencias"
 
 
 
 
5126
 
5127
- #: addons/email-notices/myCRED-addon-email-notices.php:901
5128
- msgid "user sends %_plural%"
5129
- msgstr "usuario manda %_plural%"
5130
 
5131
- #: addons/email-notices/myCRED-addon-email-notices.php:902
5132
- msgid "user receives %_plural%"
5133
- msgstr "usuario recibe %_plural%"
5134
 
5135
- #: addons/email-notices/myCRED-addon-email-notices.php:909
5136
- msgid "Ranks Add-on"
5137
- msgstr "Extensión de Rangos"
 
 
5138
 
5139
- #: addons/email-notices/myCRED-addon-email-notices.php:910
5140
- msgid "user is demoted"
5141
- msgstr "se ha degrado al usuario"
 
 
 
5142
 
5143
- #: addons/email-notices/myCRED-addon-email-notices.php:911
5144
- msgid "user is promoted"
5145
- msgstr "se ha promovido al usuario"
5146
 
5147
- #: addons/email-notices/myCRED-addon-email-notices.php:1400
5148
- #: addons/coupons/myCRED-addon-coupons.php:114
5149
- msgid "Email Notices"
5150
- msgstr "Avisos por Correo Electrónico"
 
5151
 
5152
- #: addons/email-notices/myCRED-addon-email-notices.php:1420
5153
- msgid "WordPress Cron is disabled. Emails will be sent immediately."
5154
- msgstr ""
5155
- "WordPress Cron esta desactivado. Los emails seran mandados inmediatamente."
 
5156
 
5157
- #: addons/email-notices/myCRED-addon-email-notices.php:1423
5158
- msgid "Send emails immediately"
5159
- msgstr "Mandar emails inmediatamente"
5160
 
5161
- #: addons/email-notices/myCRED-addon-email-notices.php:1426
5162
- msgid "Send emails once an hour"
5163
- msgstr "Mandar emails una vez a la hora"
 
5164
 
5165
- #: addons/email-notices/myCRED-addon-email-notices.php:1429
5166
- msgid "Send emails once a day"
5167
- msgstr "Mandar emails una vez al dia"
5168
 
5169
- #: addons/email-notices/myCRED-addon-email-notices.php:1450
5170
- msgid ""
5171
- "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
5172
- "use a SMTP plugin for emails."
5173
  msgstr ""
5174
- "Depurar SMTP. Habilitar si hay erores con wp_mail() o si utiliza un plugin "
5175
- "SMTP para email."
5176
 
5177
- #: addons/email-notices/myCRED-addon-email-notices.php:1479
5178
- msgid "Reply-To:"
5179
- msgstr "Responder-A:"
 
5180
 
5181
- #: addons/email-notices/myCRED-addon-email-notices.php:1487
5182
- msgid "Default Email Content"
5183
- msgstr "Contenido de Correo Electrónico Predefinido"
 
 
5184
 
5185
- #: addons/email-notices/myCRED-addon-email-notices.php:1489
5186
- msgid "Default email content."
5187
- msgstr "Contenido de correo electrónico predefinido."
5188
 
5189
- #: addons/email-notices/myCRED-addon-email-notices.php:1596
5190
- msgid "Unsubscribe"
5191
- msgstr "Cancelar la Suscripción"
5192
 
5193
- #: addons/email-notices/myCRED-addon-email-notices.php:1597
5194
- msgid "Email Notice"
5195
- msgstr "Aviso por Correo Electrónico"
 
5196
 
5197
- #: addons/email-notices/myCRED-addon-email-notices.php:1618
5198
- msgid "There are no email notifications yet."
5199
- msgstr "Todavía no hay notificaciones de email."
 
 
 
 
 
5200
 
5201
- #: addons/email-notices/myCRED-addon-email-notices.php:1625
5202
- #: addons/buy-creds/modules/buycred-module-pending.php:490
5203
- msgid "Save Changes"
5204
- msgstr "Guardar Cambios"
5205
 
5206
- #: addons/badges/myCRED-addon-badges.php:148
5207
- #: addons/badges/myCRED-addon-badges.php:154
5208
- #: addons/badges/myCRED-addon-badges.php:160
5209
- #: addons/badges/myCRED-addon-badges.php:295
5210
- #: addons/badges/myCRED-addon-badges.php:296
5211
- #: addons/badges/myCRED-addon-badges.php:1127
5212
- #: addons/badges/myCRED-addon-badges.php:1256
5213
- #: addons/badges/myCRED-addon-badges.php:1259
5214
- msgid "Badges"
5215
- msgstr "Insignias"
5216
 
5217
- #: addons/badges/myCRED-addon-badges.php:149
5218
- msgid "Badge"
5219
- msgstr "Insignia"
5220
 
5221
- #: addons/badges/myCRED-addon-badges.php:152
5222
- msgid "Edit Badge"
5223
- msgstr "Editar Insignia"
5224
 
5225
- #: addons/badges/myCRED-addon-badges.php:153
5226
- msgid "New Badge"
5227
- msgstr "Nueva Insignia"
5228
 
5229
- #: addons/badges/myCRED-addon-badges.php:155
5230
- msgid "View Badge"
5231
- msgstr "Ver Insignia"
5232
 
5233
- #: addons/badges/myCRED-addon-badges.php:156
5234
- msgid "Search Badge"
5235
- msgstr "Buscar Insignia"
 
5236
 
5237
- #: addons/badges/myCRED-addon-badges.php:157
5238
- msgid "No badges found"
5239
- msgstr "Ninguna Insignia Encontrada"
 
 
 
 
5240
 
5241
- #: addons/badges/myCRED-addon-badges.php:158
5242
- msgid "No badges found in Trash"
5243
- msgstr "Ninguna Insignia Encontrada en la Papelera"
5244
 
5245
- #: addons/badges/myCRED-addon-badges.php:270
5246
- #: addons/badges/myCRED-addon-badges.php:271
5247
- #: addons/badges/myCRED-addon-badges.php:272
5248
- #: addons/badges/myCRED-addon-badges.php:273
5249
- #: addons/badges/myCRED-addon-badges.php:277
5250
- #: addons/badges/myCRED-addon-badges.php:278
5251
- #: addons/badges/myCRED-addon-badges.php:279
5252
- msgid "Badge Updated."
5253
- msgstr "Insignia Actualizada"
5254
 
5255
- #: addons/badges/myCRED-addon-badges.php:396
5256
- #: addons/badges/myCRED-addon-badges.php:480
5257
- msgid "Badge Name"
5258
- msgstr "Nombre de Insignia"
5259
 
5260
- #: addons/badges/myCRED-addon-badges.php:397
5261
- msgid "Default Image"
5262
- msgstr "Imagen Predefinida"
 
 
 
 
5263
 
5264
- #: addons/badges/myCRED-addon-badges.php:399
5265
- msgid "Requirements"
5266
- msgstr "Requisitos"
 
 
 
 
5267
 
5268
- #: addons/badges/myCRED-addon-badges.php:516
5269
- msgid "Badge Image"
5270
- msgstr "Imagen de la Insignia"
5271
 
5272
- #: addons/badges/myCRED-addon-badges.php:517
5273
- msgid "Use as Badge"
5274
- msgstr "Utiliza como Insignia"
 
 
 
5275
 
5276
- #: addons/badges/myCRED-addon-badges.php:678
5277
- msgid "Assign Badge"
5278
- msgstr "Asignar Insignia"
5279
 
5280
- #: addons/badges/myCRED-addon-badges.php:679
5281
- msgid "Remove Connections"
5282
- msgstr "Quitar Conexiones"
5283
 
5284
- #: addons/badges/myCRED-addon-badges.php:777
5285
- msgid "Time(s)"
5286
- msgstr "Tiempo(s)"
5287
 
5288
- #: addons/badges/myCRED-addon-badges.php:778
5289
- msgid "In total"
5290
- msgstr "En Total"
5291
 
5292
- #: addons/badges/myCRED-addon-badges.php:1176
5293
- msgid "Include in Forum Replies"
5294
- msgstr "Incluir en Respuesta de Fórum"
5295
 
5296
- #: addons/badges/myCRED-addon-badges.php:1177
5297
- msgid "Include in Profile and Forum Replies"
5298
- msgstr "Incluir en Perfil y Respuestas de Fórum"
 
 
5299
 
5300
- #: addons/badges/myCRED-addon-badges.php:1408
5301
- msgid "No users has yet earned this badge."
5302
- msgstr "Ningun usuario ha ganado esta insignia."
 
 
 
5303
 
5304
- #: addons/badges/myCRED-addon-badges.php:1435
5305
- #, php-format
5306
- msgid "%s connections where removed."
5307
- msgstr "%s conexiones han sido quitados."
 
5308
 
5309
- #: addons/coupons/myCRED-addon-coupons.php:102
5310
- #: addons/coupons/myCRED-addon-coupons.php:108
5311
- #: addons/coupons/myCRED-addon-coupons.php:170
5312
- #: addons/coupons/myCRED-addon-coupons.php:171
5313
- #: addons/coupons/myCRED-addon-coupons.php:702
5314
- msgid "Coupons"
5315
- msgstr "Cupones"
5316
 
5317
- #: addons/coupons/myCRED-addon-coupons.php:103
5318
- msgid "Coupon"
5319
- msgstr "Cupón"
 
5320
 
5321
- #: addons/coupons/myCRED-addon-coupons.php:104
5322
- #: addons/coupons/myCRED-addon-coupons.php:105
5323
- msgid "Create New"
5324
- msgstr "Crear Nuevo"
5325
 
5326
- #: addons/coupons/myCRED-addon-coupons.php:106
5327
- msgid "Edit Coupon"
5328
- msgstr "Editar Cupón"
5329
 
5330
- #: addons/coupons/myCRED-addon-coupons.php:107
5331
- msgid "New Coupon"
5332
- msgstr "Nuevo Cupón"
 
 
 
 
 
 
5333
 
5334
- #: addons/coupons/myCRED-addon-coupons.php:110
5335
- msgid "Search coupons"
5336
- msgstr "Busqueda de Cupones"
5337
 
5338
- #: addons/coupons/myCRED-addon-coupons.php:111
5339
- msgid "No coupons found"
5340
- msgstr "Ningun Cupón Encontrado"
 
 
 
 
 
 
 
 
 
 
5341
 
5342
- #: addons/coupons/myCRED-addon-coupons.php:112
5343
- msgid "No coupons found in Trash"
5344
- msgstr "Ningun Cupón Encontrado en la Papelera"
5345
 
5346
- #: addons/coupons/myCRED-addon-coupons.php:145
5347
- #: addons/coupons/myCRED-addon-coupons.php:146
5348
- #: addons/coupons/myCRED-addon-coupons.php:147
5349
- #: addons/coupons/myCRED-addon-coupons.php:148
5350
- #: addons/coupons/myCRED-addon-coupons.php:151
5351
- #: addons/coupons/myCRED-addon-coupons.php:152
5352
- #: addons/coupons/myCRED-addon-coupons.php:153
5353
- #: addons/coupons/myCRED-addon-coupons.php:154
5354
- msgid "Coupon updated."
5355
- msgstr "Cupón Actualizado"
5356
 
5357
- #: addons/coupons/myCRED-addon-coupons.php:150
5358
- msgid "Coupon published."
5359
- msgstr "Cupón Publicado."
5360
 
5361
- #: addons/coupons/myCRED-addon-coupons.php:232
5362
- #: addons/coupons/myCRED-addon-coupons.php:249
5363
- msgid "Coupon Code"
5364
- msgstr "Código de Cupón"
5365
 
5366
- #: addons/coupons/myCRED-addon-coupons.php:250
5367
- #: addons/coupons/myCRED-addon-coupons.php:513
5368
- msgid "Value"
5369
- msgstr "Valor"
5370
 
5371
- #: addons/coupons/myCRED-addon-coupons.php:253
5372
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:205
5373
- msgid "Expires"
5374
- msgstr "Expire"
5375
 
5376
- #: addons/coupons/myCRED-addon-coupons.php:309
5377
- msgid "Per User"
5378
- msgstr "Por Usuario"
5379
 
5380
- #: addons/coupons/myCRED-addon-coupons.php:326
5381
- msgid "Expired"
5382
- msgstr "Caducado"
5383
 
5384
- #: addons/coupons/myCRED-addon-coupons.php:332
5385
- #, php-format
5386
- msgid "In %s time"
5387
- msgstr "En %s tiempo"
 
5388
 
5389
- #: addons/coupons/myCRED-addon-coupons.php:432
5390
- msgid "Coupon Setup"
5391
- msgstr "Configuración de Cupón"
5392
 
5393
- #: addons/coupons/myCRED-addon-coupons.php:441
5394
- msgid "Coupon Limits"
5395
- msgstr "Limites de Cupón"
 
5396
 
5397
- #: addons/coupons/myCRED-addon-coupons.php:450
5398
- msgid "Coupon Requirements"
5399
- msgstr "Requisitos de Cupón"
 
5400
 
5401
- #: addons/coupons/myCRED-addon-coupons.php:524
5402
- msgid "Select the point type that this coupon is applied."
5403
- msgstr "Elige el clase de puntos al cual este cupón se aplica."
5404
 
5405
- #: addons/coupons/myCRED-addon-coupons.php:536
5406
- msgid "Expire"
5407
- msgstr "Caducar"
5408
 
5409
- #: addons/coupons/myCRED-addon-coupons.php:538
5410
- msgid ""
5411
- "Optional date when this coupon expires. Expired coupons will be trashed."
5412
- msgstr ""
5413
- "La fecha opcional cuando este cupón caduca. Cupones caducados seran "
5414
- "destrozado."
5415
 
5416
- #: addons/coupons/myCRED-addon-coupons.php:566
5417
- msgid "Global Maximum"
5418
- msgstr "Máximo Global"
5419
 
5420
- #. not clear if this is referring to the maximum number of users or to the maximum "points" a user can have or accrue?
5421
- #: addons/coupons/myCRED-addon-coupons.php:573
5422
- msgid "User Maximum"
5423
- msgstr "Máximo Usuario"
5424
 
5425
- #: addons/coupons/myCRED-addon-coupons.php:575
5426
- msgid "The maximum number of times this coupon can be used by a user."
5427
- msgstr ""
5428
- "El máximo numero de veces que se puede utilizadar este cupón por un usuario."
5429
 
5430
- #: addons/coupons/myCRED-addon-coupons.php:603
5431
- #: addons/banking/services/mycred-service-interest.php:499
5432
- msgid "Minimum Balance"
5433
- msgstr "Saldo Minimo"
5434
 
5435
- #: addons/coupons/myCRED-addon-coupons.php:608
5436
- msgid ""
5437
- "Optional minimum balance a user must have in order to use this coupon. Use "
5438
- "zero to disable."
5439
- msgstr ""
5440
- "Mínimo saldo opcional que el usuario debe tener para utilizar este cupón. "
5441
- "Utilice cero para inhabilitar."
5442
 
5443
- #: addons/coupons/myCRED-addon-coupons.php:615
5444
- msgid "Maximum Balance"
5445
- msgstr "Saldo Máximo"
 
 
 
5446
 
5447
- #: addons/coupons/myCRED-addon-coupons.php:620
5448
- msgid ""
5449
- "Optional maximum balance a user can have in order to use this coupon. Use "
5450
- "zero to disable."
5451
- msgstr ""
5452
- "Saldo máximo opcional que un usuario puede tener para usar este cupón. Ponga "
5453
- "cero para desactivar."
5454
 
5455
- #: addons/coupons/myCRED-addon-coupons.php:709
5456
- msgid "Invalid Coupon Message"
5457
- msgstr "Mensaje Cupón Invalido"
5458
 
5459
- #: addons/coupons/myCRED-addon-coupons.php:711
5460
- msgid "Message to show when users try to use a coupon that does not exists."
 
 
 
 
 
5461
  msgstr ""
5462
- "Mostrar mensaje cuando los usuarios intenten usar un cupón que no existe."
5463
 
5464
- #: addons/coupons/myCRED-addon-coupons.php:716
5465
- msgid "Expired Coupon Message"
5466
- msgstr "Mensaje de Cupón Caducado"
5467
 
5468
- #: addons/coupons/myCRED-addon-coupons.php:718
5469
- msgid "Message to show when users try to use that has expired."
5470
- msgstr "Mostrar mensaje cuando los usuarios intenten usar lo que ha caducado."
5471
 
5472
- #: addons/coupons/myCRED-addon-coupons.php:725
5473
- msgid "Minimum Balance Message"
5474
- msgstr "Mensaje de Saldo Mínimo"
5475
 
5476
- #: addons/coupons/myCRED-addon-coupons.php:727
 
 
 
 
5477
  msgid ""
5478
- "Message to show when a user does not meet the minimum balance requirement. "
5479
- "(if used)"
5480
  msgstr ""
5481
- "Mostrar mensaje cuando el usuario no cumple con el saldo mínimo requerido. "
5482
- "(si se utiliza)"
5483
 
5484
- #: addons/coupons/myCRED-addon-coupons.php:732
5485
- msgid "Maximum Balance Message"
5486
- msgstr "Mensaje Saldo Máximo"
5487
 
5488
- #: addons/coupons/myCRED-addon-coupons.php:734
5489
- msgid ""
5490
- "Message to show when a user does not meet the maximum balance requirement. "
5491
- "(if used)"
5492
- msgstr ""
5493
- "Mostrar mensaje cuando un usuario no alcanza el saldo máximo requerido. (si "
5494
- "se utiliza)"
5495
 
5496
- #: addons/coupons/myCRED-addon-coupons.php:741
5497
- msgid "User Limit Message"
5498
- msgstr "Mensaje de Límite de Usuario"
5499
 
5500
- #: addons/coupons/myCRED-addon-coupons.php:743
5501
- msgid "Message to show when the user limit has been reached for the coupon."
5502
- msgstr "Mostrar mensaje cuando el cupón alcanza su límite de usuarios."
5503
 
5504
- #: addons/coupons/myCRED-addon-coupons.php:757
5505
- msgid "Success Message"
5506
- msgstr "Mensaje de éxito"
5507
 
5508
- #: addons/coupons/myCRED-addon-coupons.php:759
5509
- msgid ""
5510
- "Message to show when a coupon was successfully deposited to a users account."
5511
- msgstr ""
5512
- "Monstrar mensaje cuando un cupón se deposita con éxito en una cuenta usuaria."
5513
 
5514
- #: addons/coupons/myCRED-addon-coupons.php:766
5515
- msgid ""
5516
- "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
5517
- "code."
5518
- msgstr ""
5519
- "Entrada del registro al exitoso canje del cupón. Utilice %coupon% para "
5520
- "mostrar el código del cupón."
5521
 
5522
- #: addons/sell-content/myCRED-addon-sell-content.php:381
5523
- #: addons/sell-content/myCRED-addon-sell-content.php:384
5524
- #: addons/sell-content/myCRED-addon-sell-content.php:664
5525
- msgid "Profit Share"
5526
- msgstr "Reparto de Utilidades"
5527
 
5528
- #: addons/sell-content/myCRED-addon-sell-content.php:508
5529
- #: addons/sell-content/myCRED-addon-sell-content.php:1000
5530
- msgid "Sell Content"
5531
- msgstr "Vender Contenido"
5532
 
5533
- #: addons/sell-content/myCRED-addon-sell-content.php:511
5534
- msgid "Post Types"
5535
- msgstr "Post Types"
5536
 
5537
- #: addons/sell-content/myCRED-addon-sell-content.php:673
5538
- #: addons/sell-content/myCRED-addon-sell-content.php:719
5539
- #: addons/gateway/event-booking/mycred-eventespresso3.php:473
5540
- #: addons/gateway/event-booking/mycred-eventsmanager.php:675
5541
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:703
5542
- #: addons/transfer/includes/mycred-transfer-widgets.php:101
5543
- msgid "Button Label"
5544
- msgstr "Eqiqueta Asignada al Botón"
5545
 
5546
- #: addons/sell-content/myCRED-addon-sell-content.php:1073
5547
- #: addons/gateway/event-booking/mycred-eventespresso3.php:495
5548
- #: addons/gateway/event-booking/mycred-eventsmanager.php:369
5549
- #: addons/gateway/event-booking/mycred-eventsmanager.php:373
5550
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:153
5551
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:156
5552
- msgid "Price"
5553
- msgstr "Precio"
5554
 
5555
- #: addons/banking/services/mycred-service-central.php:117
5556
- msgid "Ignore Manual Adjustments"
5557
- msgstr "Ignorar Ajustes Manuales"
5558
 
5559
- #: addons/banking/services/mycred-service-interest.php:28
5560
- msgid "%plural% interest rate payment"
5561
- msgstr "%plural% pago de tasa de interés"
5562
 
5563
- #: addons/banking/services/mycred-service-interest.php:481
5564
- #: addons/banking/services/mycred-service-interest.php:652
5565
- msgid "Interest Rate"
5566
- msgstr "Tasa de Interés"
5567
 
5568
- #: addons/banking/services/mycred-service-interest.php:528
5569
- #: addons/banking/services/mycred-service-interest.php:529
5570
- #: addons/banking/services/mycred-service-payouts.php:791
5571
- msgid "Comma separated list of user IDs"
5572
- msgstr "Lista del IDs de usuarios delimitado por comas"
 
 
5573
 
5574
- #: addons/banking/services/mycred-service-payouts.php:573
5575
- msgid "Last Run"
5576
- msgstr "Ultima Ejecución"
 
 
5577
 
5578
- #: addons/banking/services/mycred-service-payouts.php:591
5579
- #: addons/gateway/carts/mycred-wpecommerce.php:396
5580
- msgid "Payout"
5581
- msgstr "Desembolso"
5582
 
5583
  #. also, "Cada Hora"
5584
  #: addons/banking/includes/mycred-banking-functions.php:79
5585
  msgid "Hourly"
5586
  msgstr "Por Hora"
5587
 
 
 
 
 
5588
  #: addons/banking/includes/mycred-banking-functions.php:84
5589
  msgid "Daily"
5590
- msgstr "Diario"
5591
 
5592
  #: addons/banking/includes/mycred-banking-functions.php:89
5593
  msgid "Weekly"
5594
- msgstr "Semanal"
 
 
 
 
5595
 
5596
  #: addons/banking/includes/mycred-banking-functions.php:94
5597
  msgid "Monthly"
5598
- msgstr "Mensual"
5599
 
5600
  #: addons/banking/includes/mycred-banking-functions.php:99
5601
  msgid "Quarterly"
5602
- msgstr "Trimestral"
 
 
 
 
5603
 
5604
  #: addons/banking/includes/mycred-banking-functions.php:104
5605
  msgid "Semiannually"
 
 
 
 
5606
  msgstr "Semestral"
5607
 
5608
  #: addons/banking/includes/mycred-banking-functions.php:109
5609
  msgid "Annually"
 
 
 
 
5610
  msgstr "Anual"
5611
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5612
  #: addons/gateway/event-booking/mycred-eventespresso3.php:26
5613
  #: addons/gateway/event-booking/mycred-eventsmanager.php:594
5614
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:626
5615
  #: addons/buy-creds/modules/buycred-module-core.php:710
5616
  msgid "Payments"
5617
  msgstr "Pagos"
5618
 
5619
  #: addons/gateway/event-booking/mycred-eventespresso3.php:27
5620
  #: addons/gateway/event-booking/mycred-eventsmanager.php:36
5621
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39
5622
- #: addons/buy-creds/modules/buycred-module-pending.php:717
5623
  msgid "Pay Now"
5624
  msgstr "Pagar Ahora"
5625
 
@@ -5637,7 +5341,7 @@ msgstr "Coste Total"
5637
  #: addons/gateway/event-booking/mycred-eventespresso3.php:315
5638
  #: addons/gateway/event-booking/mycred-eventespresso3.php:340
5639
  msgid "Balance After Purchase"
5640
- msgstr "Saldo Despues de Compra"
5641
 
5642
  #: addons/gateway/event-booking/mycred-eventespresso3.php:380
5643
  #, php-format
@@ -5651,11 +5355,10 @@ msgstr "Desactivar %s"
5651
 
5652
  #: addons/gateway/event-booking/mycred-eventespresso3.php:402
5653
  msgid "Gateway Settings"
5654
- msgstr "Configuraciones de la Pasarela de Pago"
5655
 
5656
  #: addons/gateway/event-booking/mycred-eventespresso3.php:442
5657
  #: addons/gateway/event-booking/mycred-eventsmanager.php:580
5658
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:595
5659
  #, php-format
5660
  msgid "How many %s is 1 %s worth?"
5661
  msgstr "¿Cuantos %s vale un %s?"
@@ -5663,19 +5366,19 @@ msgstr "¿Cuantos %s vale un %s?"
5663
  #. also, "Titulo de la Pasarela de Pago" depending on the technical nature of the action being done
5664
  #: addons/gateway/event-booking/mycred-eventespresso3.php:463
5665
  msgid "Gateway Title"
5666
- msgstr "Titulo de la Red de Enlace"
5667
 
5668
  #: addons/gateway/event-booking/mycred-eventespresso3.php:465
5669
  msgid "Title to show on Payment page"
5670
- msgstr "Titulo que se mostrara en tu pagina de Pago"
5671
 
5672
  #: addons/gateway/event-booking/mycred-eventespresso3.php:468
5673
  msgid "Payment Type"
5674
- msgstr "Clase de Pago"
5675
 
5676
  #: addons/gateway/event-booking/mycred-eventespresso3.php:470
5677
  msgid "Title to show on receipts and logs"
5678
- msgstr "El titulo a mostrar en la factura y en los registros."
5679
 
5680
  #: addons/gateway/event-booking/mycred-eventespresso3.php:475
5681
  msgid "Pay Button"
@@ -5690,16 +5393,16 @@ msgid ""
5690
  "You can disable purchases using this gateway by adding a custom Event Meta: "
5691
  "<code>mycred_no_sale</code>"
5692
  msgstr ""
5693
- "Puedes inhabilitar compras a traves de esta pasarela mediante la adición de "
5694
  "un Evento Meta personalizado: <code>mycred_no_sale</code>"
5695
 
5696
  #: addons/gateway/event-booking/mycred-eventespresso3.php:506
5697
  msgid "Users must be logged in to use this gateway!"
5698
- msgstr "¡Los usuarios deben estar conectado para usar esta pasarela de pago!"
 
5699
 
5700
  #: addons/gateway/event-booking/mycred-eventespresso3.php:510
5701
  #: addons/gateway/event-booking/mycred-eventsmanager.php:625
5702
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:641
5703
  #: addons/gateway/carts/mycred-wpecommerce.php:393
5704
  #: addons/gateway/carts/mycred-woocommerce.php:176
5705
  msgid "Profit Sharing"
@@ -5707,7 +5410,6 @@ msgstr "Reparto de Ganancias"
5707
 
5708
  #: addons/gateway/event-booking/mycred-eventespresso3.php:512
5709
  #: addons/gateway/event-booking/mycred-eventsmanager.php:628
5710
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:644
5711
  #: addons/gateway/carts/mycred-wpecommerce.php:397
5712
  #: addons/gateway/carts/mycred-woocommerce.php:178
5713
  msgid "Option to share sales with the product owner. Use zero to disable."
@@ -5729,8 +5431,8 @@ msgid ""
5729
  "Message to show users on the payment page before they are charged. Leave "
5730
  "empty to hide."
5731
  msgstr ""
5732
- "Mostrar mensaje a los usuarios en la pagina de pago antes de cobrar. Dejalo "
5733
- "vacío para ocultar. "
5734
 
5735
  #: addons/gateway/event-booking/mycred-eventespresso3.php:533
5736
  msgid "Insolvent users"
@@ -5739,8 +5441,7 @@ msgstr "Usuarios Insolventes"
5739
  #: addons/gateway/event-booking/mycred-eventespresso3.php:535
5740
  msgid "Message to show users who do not have enough points to pay."
5741
  msgstr ""
5742
- "Mostrar mensaje a los usuarios que no tienen suficientes puntos con que "
5743
- "pagar."
5744
 
5745
  #: addons/gateway/event-booking/mycred-eventespresso3.php:538
5746
  #: addons/gateway/carts/mycred-wpecommerce.php:411
@@ -5751,51 +5452,43 @@ msgstr "Visitantes"
5751
  msgid "Message to show visitors (users not logged in) on the payment page."
5752
  msgstr ""
5753
  "Mostrar mensaje a los visitantes (usuarios que no han iniciado sesión) en la "
5754
- "pagina de pago."
5755
 
5756
  #: addons/gateway/event-booking/mycred-eventsmanager.php:30
5757
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
5758
  msgid "Payment for tickets to %link_with_title%"
5759
  msgstr "Pago de entradas para %link_with_title%"
5760
 
5761
  #: addons/gateway/event-booking/mycred-eventsmanager.php:31
5762
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
5763
  msgid "Ticket refund for %link_with_title%"
5764
- msgstr "Reembolso de entrada para "
5765
 
5766
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35
5767
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
5768
  msgid "Pay using your %_plural% balance"
5769
  msgstr "Paga utilizando tu saldo de %_plural%"
5770
 
5771
  #: addons/gateway/event-booking/mycred-eventsmanager.php:37
5772
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
5773
  msgid "Pay"
5774
  msgstr "Pagar"
5775
 
5776
  #: addons/gateway/event-booking/mycred-eventsmanager.php:40
5777
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
5778
  msgid "Thank you for your payment!"
5779
  msgstr "¡Gracias por su pago!"
5780
 
5781
  #: addons/gateway/event-booking/mycred-eventsmanager.php:41
5782
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
5783
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
5784
  msgstr "Lo siento pero no puedes pagar estos billetes usando %_plural%"
5785
 
5786
  #: addons/gateway/event-booking/mycred-eventsmanager.php:366
5787
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:150
5788
  msgid "Ticket Type"
5789
  msgstr "Clase de Billete"
5790
 
5791
  #: addons/gateway/event-booking/mycred-eventsmanager.php:377
5792
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:159
5793
  msgid "Spaces"
5794
  msgstr "Espacios"
5795
 
5796
  #: addons/gateway/event-booking/mycred-eventsmanager.php:472
5797
  msgid "Balance After Payment"
5798
- msgstr "Saldo despues de Pago"
5799
 
5800
  #: addons/gateway/event-booking/mycred-eventsmanager.php:585
5801
  msgid "Click to toggle"
@@ -5804,29 +5497,26 @@ msgstr "Haga clic para alternar"
5804
  #: addons/gateway/event-booking/mycred-eventsmanager.php:586
5805
  #, php-format
5806
  msgid "%s Payments"
5807
- msgstr "Pagos de "
5808
 
5809
  #: addons/gateway/event-booking/mycred-eventsmanager.php:596
5810
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:628
5811
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
5812
- msgstr "Deshabilitado - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
 
5813
 
5814
  #: addons/gateway/event-booking/mycred-eventsmanager.php:597
5815
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:629
5816
  msgid "Single - Users can ONLY pay for tickets using %plural%."
5817
- msgstr "Individuales - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
 
5818
 
5819
  #: addons/gateway/event-booking/mycred-eventsmanager.php:598
5820
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:630
5821
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
5822
  msgstr ""
5823
- "Multi-usuarios pueden pagar entradas utilizando otras pasarelas de pago o "
5824
- "%plural%."
5825
 
5826
  #: addons/gateway/event-booking/mycred-eventsmanager.php:618
5827
  #: addons/gateway/event-booking/mycred-eventsmanager.php:651
5828
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:634
5829
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:667
5830
  msgid "Refunds"
5831
  msgstr "Reembolsos"
5832
 
@@ -5836,101 +5526,55 @@ msgid ""
5836
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
5837
  msgstr ""
5838
  "El porcentaje de la cantidad pagada que se reembolsará si se cancela una "
5839
- "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
5840
- "reservas \"Rechazadas\""
5841
 
5842
  #: addons/gateway/event-booking/mycred-eventsmanager.php:644
5843
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:660
5844
  msgid "Purchases"
5845
  msgstr "Compras"
5846
 
5847
  #: addons/gateway/event-booking/mycred-eventsmanager.php:661
5848
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:689
5849
  msgid "Payment Link Label"
5850
  msgstr "La Etiqueta del Enlace de Pago"
5851
 
5852
  #: addons/gateway/event-booking/mycred-eventsmanager.php:664
5853
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:692
5854
  msgid ""
5855
  "The payment link shows / hides the payment form under \"My Bookings\". No "
5856
  "HTML allowed."
5857
  msgstr ""
5858
  "El enlace de pago muestra / oculta el formulario de pago en \"Mis Reservas\"."
5859
- " ¡No se permite HTML!"
5860
 
5861
  #: addons/gateway/event-booking/mycred-eventsmanager.php:668
5862
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:696
5863
  msgid "Payment Header"
5864
  msgstr "Encabezado de Pago"
5865
 
5866
  #: addons/gateway/event-booking/mycred-eventsmanager.php:671
5867
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:699
5868
  msgid "Shown on top of the payment form. No HTML allowed."
5869
- msgstr "Mostrar en la encima del formulario de pago. No se permite HTML."
 
5870
 
5871
  #: addons/gateway/event-booking/mycred-eventsmanager.php:678
5872
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:706
5873
  msgid "The button label for payments. No HTML allowed!"
5874
- msgstr "La etiqueta para el botón de pagos. ¡No se permite HTML!"
5875
 
5876
  #: addons/gateway/event-booking/mycred-eventsmanager.php:682
5877
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:717
5878
  #: addons/gateway/carts/mycred-wpecommerce.php:404
5879
  msgid "Messages"
5880
  msgstr "Mensajes"
5881
 
5882
  #: addons/gateway/event-booking/mycred-eventsmanager.php:685
5883
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:720
5884
  msgid "Successful Payments"
5885
- msgstr "Compras Finalizadas con Exito"
5886
 
5887
  #: addons/gateway/event-booking/mycred-eventsmanager.php:688
5888
  #: addons/gateway/event-booking/mycred-eventsmanager.php:695
5889
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:723
5890
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:730
5891
  msgid "No HTML allowed!"
5892
  msgstr "¡No se permite HTML!"
5893
 
5894
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
5895
- msgid "%plural% Cost"
5896
- msgstr "%plural% Coste"
5897
-
5898
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:213
5899
- msgid "Your Balance"
5900
- msgstr "Su Saldo"
5901
-
5902
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:374
5903
- msgid "You can not pay using this gateway."
5904
- msgstr "No puede usar esta pasarela de pago."
5905
-
5906
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:492
5907
- msgid "Reject"
5908
- msgstr "Rechazar"
5909
-
5910
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:501
5911
- msgid "Edit/View"
5912
- msgstr "Editar/Ver"
5913
-
5914
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:637
5915
- msgid ""
5916
- "The percentage of the paid amount to refund if a user cancels their booking. "
5917
- "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
5918
- msgstr ""
5919
- "El porcentaje de la cantidad pagada que se reembolsará si se cancela una "
5920
- "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
5921
- "reservas \"Rechazadas\""
5922
-
5923
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:710
5924
- msgid "Cart & Checkout Cost"
5925
- msgstr "Coste de Carrito y Página de pago"
5926
-
5927
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:713
5928
- msgid "Label for cost in %plural%"
5929
- msgstr "Etiqueta para coste en %plural%"
5930
-
5931
  #: addons/gateway/carts/mycred-wpecommerce.php:20
5932
  msgid "Payment for Order: #%order_id%"
5933
- msgstr "Pago por el Pedido"
5934
 
5935
  #: addons/gateway/carts/mycred-wpecommerce.php:23
5936
  msgid "Store sale"
@@ -5938,7 +5582,7 @@ msgstr "Venta desde la Tienda"
5938
 
5939
  #: addons/gateway/carts/mycred-wpecommerce.php:25
5940
  msgid "You must be logged in to use this gateway"
5941
- msgstr "Debe esta conectado para usar esta pasarela de pago."
5942
 
5943
  #: addons/gateway/carts/mycred-wpecommerce.php:26
5944
  msgid "Insufficient Funds."
@@ -5946,7 +5590,7 @@ msgstr "Fondos Insuficientes."
5946
 
5947
  #: addons/gateway/carts/mycred-wpecommerce.php:27
5948
  msgid "Deduct the amount from your balance."
5949
- msgstr "Restar la cantidad de su saldo."
5950
 
5951
  #: addons/gateway/carts/mycred-wpecommerce.php:107
5952
  #: addons/buy-creds/gateways/bank-transfer.php:139
@@ -5980,15 +5624,19 @@ msgstr ""
5980
 
5981
  #: addons/gateway/carts/mycred-wpecommerce.php:412
5982
  msgid "Message to show visitors who are not logged in."
5983
- msgstr "Muestra mensaje a los visitantes que no han iniciado sesión."
5984
 
5985
  #: addons/gateway/carts/mycred-wpecommerce.php:416
5986
  msgid ""
5987
  "Message to show when users does not have enough %plural% to pay using this "
5988
  "gateway."
5989
  msgstr ""
5990
- "Monstrar mensaje cuando los usuarios no tienen bastante %plural% con que "
5991
- "pagar usando esta pasarela de pago."
 
 
 
 
5992
 
5993
  #: addons/gateway/carts/mycred-woocommerce.php:89
5994
  msgid "Enable/Disable"
@@ -6003,12 +5651,12 @@ msgid ""
6003
  "Users who are not logged in or excluded from using myCRED will not have "
6004
  "access to this gateway!"
6005
  msgstr ""
6006
- "¡Los usuarios que no estan ingresado o los que han sido excluido de utilizar "
6007
- "myCRED no tendran acceso a esta pasarela de pago!"
6008
 
6009
  #: addons/gateway/carts/mycred-woocommerce.php:98
6010
  msgid "Title to show for this payment option."
6011
- msgstr "Mostrar este titulo para esta opción de pago."
6012
 
6013
  #: addons/gateway/carts/mycred-woocommerce.php:99
6014
  msgid "Pay with myCRED"
@@ -6027,11 +5675,11 @@ msgstr "Plantilla de Registro de Reembolsos"
6027
  #: addons/gateway/carts/mycred-woocommerce.php:127
6028
  msgid "Select the point type users can use to pay."
6029
  msgstr ""
6030
- "Elige el clase de punto que los usuarios pueden utilizar para realizar pagos."
6031
 
6032
  #: addons/gateway/carts/mycred-woocommerce.php:132
6033
  msgid "How much is 1 %_singular% worth in %currency%?"
6034
- msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
6035
 
6036
  #: addons/gateway/carts/mycred-woocommerce.php:143
6037
  msgid "Show Total"
@@ -6057,83 +5705,317 @@ msgstr "Mostrar en el Carrito y en la página de pago"
6057
  msgid "Order Total in %_plural%"
6058
  msgstr "Total del Pedido en %_plural%"
6059
 
6060
- #: addons/gateway/carts/mycred-woocommerce.php:185
6061
- msgid "Log entry template for profit sharing."
6062
- msgstr "Plantilla para entradas de registro para el reparto de ganancias."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6063
 
6064
- #: addons/gateway/carts/mycred-woocommerce.php:191
6065
- msgid "Log entry template for refunds of profit shares."
6066
- msgstr ""
6067
- "Plantilla de entrada de registro para reembolsos de reparto de ganancias."
6068
 
6069
- #: addons/gateway/carts/mycred-woocommerce.php:294
6070
- msgid "You must be logged in to pay with %_plural%"
6071
- msgstr "Debes haber iniciado sesión para pagar con %_plural%"
 
 
6072
 
6073
- #: addons/gateway/carts/mycred-woocommerce.php:302
6074
- msgid "You can not use this gateway. Please try a different payment option."
6075
- msgstr ""
6076
- "No puede usar esta pasarela de pago. Por favor prueba una opción de pago "
6077
- "diferente."
6078
 
6079
- #: addons/gateway/carts/mycred-woocommerce.php:319
6080
- #: addons/sell-content/includes/mycred-sell-functions.php:512
6081
- msgid "Insufficient funds."
6082
- msgstr "Fondos Insuficientes."
 
6083
 
6084
- #: addons/gateway/carts/mycred-woocommerce.php:472
6085
- msgid "Your account has successfully been charged."
6086
- msgstr "Su cuenta ha sido cambiado con éxito."
 
 
6087
 
6088
- #: addons/transfer/includes/mycred-transfer-widgets.php:19
6089
  #, php-format
6090
- msgid "(%s) Transfer"
6091
- msgstr "(%s) Transfererir"
 
6092
 
6093
- #: addons/transfer/includes/mycred-transfer-widgets.php:22
6094
- msgid "Allow transfers between users."
6095
- msgstr "Permitir transferencias entre usuarios."
 
 
6096
 
6097
- #: addons/transfer/includes/mycred-transfer-widgets.php:95
6098
- msgid "Show users balance"
6099
- msgstr "Mostrar el saldo de usuarios"
 
 
6100
 
6101
- #: addons/transfer/includes/mycred-transfer-widgets.php:98
6102
- msgid "Show users limit"
6103
- msgstr "Mostrar los límites de usuarios"
 
 
6104
 
6105
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:157
6106
- msgid "username"
6107
- msgstr "nombre de usuario"
 
 
 
 
 
6108
 
6109
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:160
6110
- msgid "email"
6111
- msgstr "correo electrónico"
 
 
6112
 
6113
- #. is this recipients plural or recipient's with an apostrophe missing?
6114
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:162
6115
  #, php-format
6116
- msgid "recipients %s"
6117
- msgstr "destinatarios %s"
 
6118
 
6119
- #: addons/ranks/includes/mycred-rank-shortcodes.php:128
6120
- #: addons/ranks/includes/mycred-rank-shortcodes.php:211
6121
- msgid "No users found with this rank"
6122
- msgstr "Ningun usuario encontrado con este rango"
 
6123
 
6124
- #: addons/ranks/includes/mycred-rank-shortcodes.php:135
6125
- msgid "Rank ID is required!"
6126
- msgstr "¡ID de Rango obligatorio!"
 
 
 
6127
 
6128
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:103
6129
- msgid "Hooks"
6130
- msgstr "Ganchos"
 
6131
 
6132
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:204
6133
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
6134
- #: addons/buy-creds/modules/buycred-module-pending.php:270
6135
- #: addons/buy-creds/modules/buycred-module-pending.php:621
6136
- #: addons/buy-creds/modules/buycred-module-pending.php:734
6137
  #: addons/buy-creds/gateways/bank-transfer.php:141
6138
  msgid "Cost"
6139
  msgstr "Coste"
@@ -6142,9 +6024,21 @@ msgstr "Coste"
6142
  msgid "Never"
6143
  msgstr "Nunca"
6144
 
 
 
 
 
 
 
6145
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:163
6146
  msgid "Select currency"
6147
- msgstr "Elige moneda"
 
 
 
 
 
 
6148
 
6149
  #. also, "Pago de Prueba" depending on context
6150
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:445
@@ -6155,7 +6049,43 @@ msgstr "Probar Pago"
6155
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:451
6156
  #: addons/buy-creds/gateways/bank-transfer.php:129
6157
  msgid "Payment"
6158
- msgstr "PAgo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6159
 
6160
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:685
6161
  #: addons/buy-creds/gateways/bank-transfer.php:147
@@ -6163,6 +6093,11 @@ msgstr "PAgo"
6163
  msgid "%s Purchase"
6164
  msgstr "Compra %s"
6165
 
 
 
 
 
 
6166
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:786
6167
  #, php-format
6168
  msgid "Continue to %s"
@@ -6171,7 +6106,7 @@ msgstr "Continuar a %s"
6171
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:787
6172
  #: addons/buy-creds/gateways/bitpay.php:225
6173
  msgid "Click here if you are not automatically redirected"
6174
- msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
6175
 
6176
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1501
6177
  msgid "January"
@@ -6221,66 +6156,98 @@ msgstr "Noviembre"
6221
  msgid "December"
6222
  msgstr "Diciembre"
6223
 
6224
- #: addons/buy-creds/modules/buycred-module-pending.php:138
6225
  msgctxt "Post Type General Name"
6226
  msgid "Pending Payments"
6227
  msgstr "Pagos Pendientes"
6228
 
6229
- #: addons/buy-creds/modules/buycred-module-pending.php:139
6230
  msgctxt "Post Type Singular Name"
6231
  msgid "Pending Payment"
6232
  msgstr "Pago Pendiente"
6233
 
6234
- #: addons/buy-creds/modules/buycred-module-pending.php:140
6235
  #: addons/buy-creds/modules/buycred-module-pending.php:142
6236
- #: addons/buy-creds/modules/buycred-module-pending.php:232
6237
- #: addons/buy-creds/modules/buycred-module-pending.php:233
 
6238
  msgid "Pending Payments"
6239
  msgstr "Pagos Pendientes"
6240
 
6241
- #: addons/buy-creds/modules/buycred-module-pending.php:146
6242
  msgid "Edit Pending Payment"
6243
  msgstr "Editar Pago Pendiente"
6244
 
6245
- #: addons/buy-creds/modules/buycred-module-pending.php:149
6246
- #: addons/buy-creds/modules/buycred-module-pending.php:150
6247
  msgid "Not found in Trash"
6248
- msgstr "No ha sido encontrado en la Papelera"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6249
 
6250
- #: addons/buy-creds/modules/buycred-module-pending.php:266
6251
- #: addons/buy-creds/modules/buycred-module-pending.php:731
6252
  #: addons/buy-creds/modules/buycred-module-core.php:771
6253
  #: addons/buy-creds/gateways/bank-transfer.php:142
6254
  msgid "Transaction ID"
6255
- msgstr "Identificación de la Transacción"
6256
 
6257
- #: addons/buy-creds/modules/buycred-module-pending.php:268
6258
  #: addons/buy-creds/modules/buycred-module-core.php:767
6259
  msgid "Buyer"
6260
  msgstr "Comprador"
6261
 
6262
- #: addons/buy-creds/modules/buycred-module-pending.php:271
6263
- #: addons/buy-creds/modules/buycred-module-pending.php:596
6264
- #: addons/buy-creds/modules/buycred-module-pending.php:732
6265
  #: addons/buy-creds/modules/buycred-module-core.php:766
6266
  #: addons/buy-creds/includes/buycred-functions.php:119
6267
  msgid "Gateway"
6268
  msgstr "Pasarela"
6269
 
6270
- #: addons/buy-creds/modules/buycred-module-pending.php:272
6271
  msgid "Type"
6272
- msgstr "Clase"
6273
 
6274
- #: addons/buy-creds/modules/buycred-module-pending.php:369
6275
- #: addons/buy-creds/modules/buycred-module-pending.php:478
6276
  msgid "Pay Out"
6277
- msgstr "Desembolso"
6278
 
6279
- #: addons/buy-creds/modules/buycred-module-pending.php:473
 
 
 
 
6280
  msgid "Save"
6281
  msgstr "Guardar"
6282
 
6283
- #: addons/buy-creds/modules/buycred-module-pending.php:627
 
 
 
 
 
 
 
 
6284
  #: addons/buy-creds/gateways/bank-transfer.php:209
6285
  #: addons/buy-creds/gateways/bitpay.php:251
6286
  #: addons/buy-creds/gateways/paypal-standard.php:279
@@ -6288,9 +6255,18 @@ msgstr "Guardar"
6288
  msgid "Currency"
6289
  msgstr "Moneda"
6290
 
6291
- #: addons/buy-creds/modules/buycred-module-pending.php:798
 
 
 
 
 
 
 
 
 
6292
  msgid "No pending payments found"
6293
- msgstr "Ningun pago pendiente encontrado"
6294
 
6295
  #: addons/buy-creds/modules/buycred-module-core.php:28
6296
  #: addons/buy-creds/modules/buycred-module-core.php:29
@@ -6298,24 +6274,76 @@ msgstr "Ningun pago pendiente encontrado"
6298
  msgid "Payment Gateways"
6299
  msgstr "Pasarela de Pago"
6300
 
 
 
 
 
6301
  #: addons/buy-creds/modules/buycred-module-core.php:301
6302
  msgid "Please login to purchase %_plural%"
6303
- msgstr "Identifícate antes de comprar %_plural%"
6304
 
6305
  #: addons/buy-creds/modules/buycred-module-core.php:316
6306
  msgid "Gift purchase from %display_name%."
6307
- msgstr "Regalo comprado de parte de %display_name%."
6308
 
6309
  #: addons/buy-creds/modules/buycred-module-core.php:336
6310
  msgid ""
6311
  "Select the point types that users can buy. You must select at least one!"
6312
  msgstr ""
6313
- "Elige el clase de punto que el usuario puede comprar. Debes eligir al menos "
6314
- "uno!"
 
 
 
 
 
 
 
6315
 
6316
  #: addons/buy-creds/modules/buycred-module-core.php:355
6317
  msgid "Show seperate log for %_plural% purchases."
6318
- msgstr "Mostrar registro distinto para compras de %_plural%."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6319
 
6320
  #: addons/buy-creds/modules/buycred-module-core.php:433
6321
  msgid "Gifting"
@@ -6323,15 +6351,15 @@ msgstr "Regalar"
6323
 
6324
  #: addons/buy-creds/modules/buycred-module-core.php:438
6325
  msgid "Allow users to buy %_plural% for other users."
6326
- msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
6327
 
6328
  #: addons/buy-creds/modules/buycred-module-core.php:445
6329
  msgid "Allow users to buy %_plural% for content authors."
6330
- msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
6331
 
6332
  #: addons/buy-creds/modules/buycred-module-core.php:547
6333
  msgid "buyCRED Purchase Log"
6334
- msgstr "compraCRED Registro de Compras"
6335
 
6336
  #: addons/buy-creds/modules/buycred-module-core.php:548
6337
  #: addons/buy-creds/modules/buycred-module-core.php:778
@@ -6361,11 +6389,54 @@ msgstr "Pagado"
6361
 
6362
  #: addons/buy-creds/modules/buycred-module-core.php:982
6363
  msgid "No purchases found"
6364
- msgstr "No se encontro ninguna compra"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6365
 
6366
  #: addons/buy-creds/modules/buycred-module-core.php:1369
6367
  msgid "Buy Now"
6368
- msgstr "Compra Ahora"
 
 
 
 
 
 
 
 
6369
 
6370
  #: addons/buy-creds/gateways/bank-transfer.php:88
6371
  #: addons/buy-creds/gateways/bitpay.php:163
@@ -6375,8 +6446,25 @@ msgstr "Compra Ahora"
6375
  #: addons/buy-creds/gateways/skrill.php:186
6376
  msgid "Please setup this gateway before attempting to make a purchase!"
6377
  msgstr ""
6378
- "¡Por favor configure esta puerta de enlace antes de intentar hacer una "
6379
- "compra!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6380
 
6381
  #: addons/buy-creds/gateways/bank-transfer.php:215
6382
  #: addons/buy-creds/gateways/bitpay.php:265
@@ -6407,7 +6495,7 @@ msgstr "Desajuste de moneda. Esperaba: %s Recibido: %s"
6407
  #: addons/buy-creds/gateways/skrill.php:136
6408
  #, php-format
6409
  msgid "Payment not completed. Received: %s"
6410
- msgstr "Pago no cumplido. Recibido: %s"
6411
 
6412
  #: addons/buy-creds/gateways/bitpay.php:85
6413
  #: addons/buy-creds/gateways/netbilling.php:109
@@ -6415,7 +6503,7 @@ msgstr "Pago no cumplido. Recibido: %s"
6415
  #: addons/buy-creds/gateways/paypal-standard.php:168
6416
  #: addons/buy-creds/gateways/skrill.php:147
6417
  msgid "Failed to credit users account."
6418
- msgstr "No se pudo creditar la cuenta del usuario."
6419
 
6420
  #: addons/buy-creds/gateways/bitpay.php:208
6421
  #: addons/buy-creds/gateways/bitpay.php:219
@@ -6430,12 +6518,12 @@ msgstr "Procesando el pago &hellip;"
6430
  msgid ""
6431
  "Could not create a BitPay Invoice. Please contact the site administrator!"
6432
  msgstr ""
6433
- "¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con "
6434
- "el administrador del sitio!"
6435
 
6436
  #: addons/buy-creds/gateways/bitpay.php:212
6437
  msgid "Bitpay returned the following error message:"
6438
- msgstr "Bitpay comunico este mensaje de error:"
6439
 
6440
  #: addons/buy-creds/gateways/bitpay.php:254
6441
  msgid "Currency Code"
@@ -6489,7 +6577,7 @@ msgstr "Clave de Integridad del Pedido"
6489
 
6490
  #: addons/buy-creds/gateways/netbilling.php:224
6491
  msgid "Found under Step 12 on the Fraud Defense page."
6492
- msgstr "Se encuentra en Paso 12 de la página sobre Defensa contra Fraude."
6493
 
6494
  #: addons/buy-creds/gateways/netbilling.php:238
6495
  msgid "Postback CGI URL"
@@ -6508,33 +6596,34 @@ msgstr ""
6508
 
6509
  #: addons/buy-creds/gateways/netbilling.php:290
6510
  msgid "Incorrect Credit Card number"
6511
- msgstr "Número de Tarjeta de Crédito Incorrecta"
6512
 
6513
  #: addons/buy-creds/gateways/netbilling.php:296
6514
  msgid "The credit card entered is past its expiration date."
6515
- msgstr "La tarjeta de crédito ha pasado su fecha de vencimiento."
6516
 
6517
  #: addons/buy-creds/gateways/netbilling.php:299
6518
  msgid "The CVV2 number entered is not valid."
6519
- msgstr "El numero CVV2 teclado no es valido."
6520
 
6521
  #: addons/buy-creds/gateways/netbilling.php:306
6522
  msgid "The bank routing number entered is not valid."
6523
- msgstr "El número de ruta bancaria introducido no es valido."
6524
 
6525
  #: addons/buy-creds/gateways/netbilling.php:310
6526
  msgid "The bank account number entered is not valid."
6527
- msgstr "La cuenta bancaria introducida no es valida."
6528
 
6529
  #: addons/buy-creds/gateways/zombaio.php:204
6530
  #, php-format
6531
  msgid "Duplicate transaction. Received: %s"
6532
- msgstr "Transacción duplicado. Recibido: %s"
6533
 
6534
  #: addons/buy-creds/gateways/zombaio.php:210
6535
  #, php-format
6536
  msgid "Live transaction while debug mode is enabled! Received: %s"
6537
- msgstr "Depuración de transacciones en vivo esta habilitado! Recibido: %s"
 
6538
 
6539
  #: addons/buy-creds/gateways/zombaio.php:315
6540
  msgid "Site ID"
@@ -6552,7 +6641,7 @@ msgstr "ID de Precios"
6552
  #: addons/buy-creds/gateways/zombaio.php:333
6553
  #: addons/buy-creds/gateways/skrill.php:338
6554
  msgid "Logo URL"
6555
- msgstr "URL del Logotipo"
6556
 
6557
  #: addons/buy-creds/gateways/zombaio.php:339
6558
  msgid "IP Verification"
@@ -6560,7 +6649,7 @@ msgstr "Verificación de IP"
6560
 
6561
  #: addons/buy-creds/gateways/zombaio.php:342
6562
  msgid "Do not verify that callbacks are coming from Zombaio."
6563
- msgstr "No verifique que las devoluciónes de llamadas proceden de Zombaio."
6564
 
6565
  #: addons/buy-creds/gateways/zombaio.php:345
6566
  msgid "Language"
@@ -6575,27 +6664,33 @@ msgid ""
6575
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
6576
  "address and click validate."
6577
  msgstr ""
6578
- "Para que esta puerta de enlace funcione, ingrese en ZOA y ajuste la "
6579
  "devolución de datos de la URL a la dirección que se encuentra arriba y haga "
6580
  "clic sobre validar."
6581
 
6582
  #: addons/buy-creds/gateways/paypal-standard.php:192
6583
  #: addons/buy-creds/gateways/skrill.php:171
6584
  msgid "Success"
6585
- msgstr "Exito"
6586
 
6587
  #: addons/buy-creds/gateways/paypal-standard.php:193
6588
  #: addons/buy-creds/gateways/skrill.php:172
6589
  msgid "Thank you for your purchase"
6590
  msgstr "Gracias por su compra"
6591
 
 
 
 
 
 
 
6592
  #: addons/buy-creds/gateways/paypal-standard.php:285
6593
  msgid "Account Email"
6594
  msgstr "Cuenta de Correo Electrónico"
6595
 
6596
  #: addons/buy-creds/gateways/skrill.php:226
6597
  msgid "Return to "
6598
- msgstr "Volver a"
6599
 
6600
  #: addons/buy-creds/gateways/skrill.php:258
6601
  msgid "Product:"
@@ -6636,8 +6731,8 @@ msgstr "Página de Pago"
6636
  msgid ""
6637
  "If left empty, your account email is used as title on the Skill Payment Page."
6638
  msgstr ""
6639
- "Si se deja vacío, el correo electrónico de su cuenta sera utilizada como "
6640
- "título en la Página de Pagos Skrill. "
6641
 
6642
  #: addons/buy-creds/gateways/skrill.php:340
6643
  msgid ""
@@ -6645,9 +6740,9 @@ msgid ""
6645
  "integration results we recommend you use logos with dimensions up to 200px "
6646
  "in width and 50px in height."
6647
  msgstr ""
6648
- "La URL de la imagen que quieres usar en la encima de la pasarela de pago. "
6649
- "Para obtener la mejor integración recomendamos que uses logotipos con "
6650
- "dimensiones de hasta 200 píxeles de ancho y 50 px de altura."
6651
 
6652
  #: addons/buy-creds/gateways/skrill.php:343
6653
  msgid "Confirmation Note"
@@ -6658,5 +6753,5 @@ msgid ""
6658
  "Optional text to show user once a transaction has been successfully "
6659
  "completed. This text is shown by Skrill."
6660
  msgstr ""
6661
- "Texto opcional a mostrar al usuario cuando la transacción haya sido "
6662
- "completado con éxito. Este texto sera mostrado por Skrill."
2
  msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
+ "POT-Creation-Date: 2017-08-29 08:46+0000\n"
6
+ "PO-Revision-Date: 2017-08-29 08:47+0000\n"
7
+ "Last-Translator: mycredlabs <gabriel.s@merovingi.com>\n"
8
  "Language-Team: Spanish (Spain)\n"
9
  "Language: es-ES\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
+ "X-Loco-Target-Locale: es_ES\n"
23
  "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
24
  "content/plugins/mycred\n"
25
+ "X-Poedit-SearchPath-1: ."
 
26
 
27
+ #: modules/mycred-module-settings.php:431
28
+ msgid "Export %singular% Balances"
29
+ msgstr "Exportar %singular% saldos"
30
+
31
+ #: modules/mycred-module-settings.php:712
32
+ msgid "Export Balances"
33
+ msgstr "Exportar saldos"
34
+
35
+ #: mycred.php:568
36
+ #, php-format
37
+ msgid "%s Log Import"
38
+ msgstr "Registro de Importe %s"
39
+
40
+ #: mycred.php:569
41
+ msgid "Import log entries via a CSV file."
42
+ msgstr "Importar las entradas de registro atraves de un fichero CSV."
43
+
44
+ #: mycred.php:580
45
+ #, php-format
46
+ msgid "%s Balance Import"
47
+ msgstr "Importar saldo de %s"
48
+
49
+ #: mycred.php:581
50
  msgid "Import balances via a CSV file."
51
+ msgstr "Importar saldos a través de un archivo CSV."
52
+
53
+ #: mycred.php:592
54
+ #, php-format
55
+ msgid "%s CubePoints Import"
56
+ msgstr "Importar CubePoints %s"
57
+
58
+ #: mycred.php:593
59
+ msgid "Import CubePoints log entries and / or balances."
60
+ msgstr "Importar las entradas de registro de CubePoints y/o saldos."
61
+
62
+ #: mycred.php:635 modules/mycred-module-management.php:316
63
+ #: modules/mycred-module-settings.php:425 modules/mycred-module-log.php:463
64
+ #: addons/transfer/myCRED-addon-transfer.php:159
65
+ #: addons/ranks/myCRED-addon-ranks.php:986
66
+ #: addons/ranks/myCRED-addon-ranks.php:1572
67
+ #: addons/badges/myCRED-addon-badges.php:727
68
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:537
69
+ msgid "Processing..."
70
+ msgstr "Procesando..."
71
+
72
+ #: mycred.php:636
73
+ msgid "Sent"
74
+ msgstr "Enviado"
75
+
76
+ #: mycred.php:637
77
+ msgid "Error - Try Again"
78
+ msgstr "Error - Inténtelo de nuevo"
79
+
80
+ #: mycred.php:812 mycred.php:813
81
+ #, php-format
82
+ msgid "About %s"
83
+ msgstr "Acerca de %s"
84
+
85
+ #: mycred.php:821 mycred.php:822
86
+ msgid "Awesome People"
87
+ msgstr "Gente genial"
88
+
89
+ #: mycred.php:859 modules/mycred-module-management.php:558
90
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:34
91
+ msgid "Balance"
92
+ msgstr "Saldo"
93
+
94
+ #: mycred.php:926 modules/mycred-module-management.php:473
95
+ #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
96
+ #: addons/buy-creds/modules/buycred-module-pending.php:471
97
+ msgid "History"
98
+ msgstr "Historial"
99
+
100
+ #: mycred.php:997 mycred.php:1018
101
+ #: addons/notifications/myCRED-addon-notifications.php:194
102
+ #: addons/email-notices/myCRED-addon-email-notices.php:277
103
+ #: addons/banking/services/mycred-service-interest.php:477
104
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:591
105
+ msgid "Setup"
106
+ msgstr "Instalación"
107
+
108
+ #: mycred.php:999 modules/mycred-module-settings.php:21
109
+ #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
110
+ #: modules/mycred-module-network.php:270
111
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
112
+ #: addons/buy-creds/modules/buycred-module-core.php:592
113
+ msgid "Settings"
114
+ msgstr "Configuración"
115
+
116
+ #: mycred.php:1039
117
+ msgid ""
118
+ "Make sure to backup your database and files before updating, in case "
119
+ "anything goes wrong!"
120
  msgstr ""
121
+ "Antes de actualizar, asegúrate de crear copias de seguridad de tu base de "
122
+ "datos y archivos, ¡por si acaso!"
123
+
124
+ #: abstracts/mycred-abstract-hook.php:90
125
+ msgid "This Hook has no settings"
126
+ msgstr "Este hook no ha sido configurado"
127
+
128
+ #: abstracts/mycred-abstract-hook.php:293
129
+ #: abstracts/mycred-abstract-hook.php:364 includes/mycred-functions.php:2784
130
+ msgid "No limit"
131
+ msgstr "Sin Limite"
132
 
133
+ #: abstracts/mycred-abstract-hook.php:294
134
  msgid "/ Day"
135
+ msgstr "/ Día"
136
 
137
+ #: abstracts/mycred-abstract-hook.php:295
138
  msgid "/ Week"
139
+ msgstr "/ Semana"
140
 
141
+ #: abstracts/mycred-abstract-hook.php:296
142
  msgid "/ Month"
143
+ msgstr "/ Mes"
144
 
145
+ #: abstracts/mycred-abstract-hook.php:297
146
  msgid "in Total"
147
+ msgstr "en Total"
148
+
149
+ #: abstracts/mycred-abstract-hook.php:365
150
+ msgid "Once every 24 hours"
151
+ msgstr "Una vez cada 24 horas"
152
+
153
+ #: abstracts/mycred-abstract-hook.php:366
154
+ msgid "Once every 7 days"
155
+ msgstr "Una vez cada 7 dias"
156
+
157
+ #: abstracts/mycred-abstract-hook.php:367
158
+ msgid "Once per day (reset at midnight)"
159
+ msgstr "Una vez al dia (se restablece a medianoche)"
160
+
161
+ #: abstracts/mycred-abstract-hook.php:374
162
+ #: addons/email-notices/myCRED-addon-email-notices.php:531
163
+ #: addons/email-notices/myCRED-addon-email-notices.php:862
164
+ #: addons/badges/myCRED-addon-badges.php:905
165
+ #: addons/banking/abstracts/mycred-abstract-service.php:351
166
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
167
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
168
+ #: addons/buy-creds/modules/buycred-module-core.php:376
169
+ #: addons/buy-creds/modules/buycred-module-core.php:401
170
+ #: addons/buy-creds/gateways/zombaio.php:406
171
+ msgid "Select"
172
+ msgstr "Seleccionar"
173
+
174
+ #: abstracts/mycred-abstract-module.php:400
175
+ #: abstracts/mycred-abstract-module.php:410
176
+ msgid "Surprise"
177
+ msgstr "Sorpresa"
178
+
179
+ #: abstracts/mycred-abstract-module.php:520
180
+ #: modules/mycred-module-network.php:218
181
+ msgid "click to close"
182
+ msgstr "haga clic para cerrar"
183
+
184
+ #: abstracts/mycred-abstract-module.php:521
185
+ #: modules/mycred-module-network.php:219
186
+ msgid "click to open"
187
+ msgstr "haga clic para abrir"
188
+
189
+ #: abstracts/mycred-abstract-module.php:554
190
+ #: modules/mycred-module-network.php:261
191
+ #: addons/email-notices/myCRED-addon-email-notices.php:1556
192
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:451
193
+ #: addons/buy-creds/modules/buycred-module-core.php:597
194
+ msgid "Settings Updated"
195
+ msgstr "Configuraciones Actualizadas"
196
+
197
+ #: modules/mycred-module-management.php:101
198
+ msgid "Update Balance"
199
+ msgstr "Actualizar Saldo"
200
+
201
+ #: modules/mycred-module-management.php:114
202
+ msgid "User is excluded"
203
+ msgstr "El Usuario ha sido excluido"
204
+
205
+ #: modules/mycred-module-management.php:122
206
+ msgid "Log Entry can not be empty"
207
+ msgstr "Entrada de registro no puede estar vacío"
208
+
209
+ #: modules/mycred-module-management.php:130 modules/mycred-module-log.php:225
210
+ msgid "Amount can not be zero"
211
+ msgstr "La cantidad no puede ser cero"
212
 
213
  #: modules/mycred-module-management.php:184
214
  msgid "Balance successfully updated"
215
+ msgstr "Saldo actualizado con éxito"
216
 
217
  #: modules/mycred-module-management.php:189
218
  msgid "Request declined"
219
+ msgstr "Solicitud rechazada"
220
 
221
  #: modules/mycred-module-management.php:224
222
  msgid "No recent activity found."
223
+ msgstr "No se encontró actividad reciente."
224
+
225
+ #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
226
+ #: modules/mycred-module-log.php:896
227
+ #: includes/classes/class.query-export.php:263
228
+ #: includes/classes/class.query-export.php:399
229
+ #: includes/classes/class.query-log.php:892
230
+ #: includes/classes/class.query-log.php:905
231
+ #: addons/banking/services/mycred-service-payouts.php:740
232
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:202
233
+ #: addons/buy-creds/modules/buycred-module-core.php:768
234
+ msgid "Date"
235
+ msgstr "Fecha"
236
+
237
+ #: modules/mycred-module-management.php:236
238
+ #: addons/banking/services/mycred-service-interest.php:435
239
+ #: addons/banking/services/mycred-service-interest.php:460
240
+ #: addons/banking/services/mycred-service-payouts.php:746
241
+ msgid "Time"
242
+ msgstr "Tiempo"
243
 
244
  #: modules/mycred-module-management.php:237
245
  #: modules/mycred-module-management.php:775 modules/mycred-module-log.php:93
246
+ #: modules/mycred-module-log.php:904
247
  #: includes/classes/class.query-export.php:263
248
  #: includes/classes/class.query-export.php:360
249
  #: includes/classes/class.query-log.php:904
250
  #: addons/transfer/includes/mycred-transfer-widgets.php:109
251
  msgid "Reference"
252
+ msgstr "Referencia"
253
+
254
+ #. need more context: entrada or inscripción
255
+ #: modules/mycred-module-management.php:238 modules/mycred-module-log.php:96
256
+ #: includes/classes/class.query-export.php:263
257
+ #: includes/classes/class.query-export.php:406
258
+ #: includes/classes/class.query-log.php:894
259
+ #: includes/classes/class.query-log.php:907
260
+ msgid "Entry"
261
+ msgstr "Entrada"
262
 
263
  #: modules/mycred-module-management.php:280
264
  msgid "View complete history"
265
+ msgstr "Ver historial completo"
266
+
267
+ #: modules/mycred-module-management.php:314
268
+ msgid "Edit Users Balance"
269
+ msgstr "Editar saldo del usuario"
270
+
271
+ #: modules/mycred-module-management.php:315
272
+ #: modules/mycred-module-settings.php:430 modules/mycred-module-log.php:462
273
+ #: addons/banking/myCRED-addon-banking.php:204
274
+ msgid "Close"
275
+ msgstr "Cerrar"
276
+
277
+ #: modules/mycred-module-management.php:453
278
+ #: modules/mycred-module-management.php:571
279
+ #: addons/sell-content/myCRED-addon-sell-content.php:411
280
+ #: addons/buy-creds/modules/buycred-module-core.php:1142
281
+ msgid "Excluded"
282
+ msgstr "Excluido"
283
+
284
+ #: modules/mycred-module-management.php:463
285
+ #: addons/coupons/myCRED-addon-coupons.php:309
286
+ msgid "Total"
287
+ msgstr "Total"
288
+
289
+ #: modules/mycred-module-management.php:474
290
+ msgid "Adjust"
291
+ msgstr "Modificar"
292
 
293
  #: modules/mycred-module-management.php:555
294
  msgid "Balances"
295
+ msgstr "Saldos"
296
+
297
+ #: modules/mycred-module-management.php:583
298
+ #: modules/mycred-module-management.php:583
299
+ #: includes/classes/class.query-log.php:1621
300
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:68
301
+ msgid "Edit"
302
+ msgstr "Editar"
303
+
304
+ #: modules/mycred-module-management.php:583
305
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
306
+ #: addons/buy-creds/modules/buycred-module-pending.php:745
307
+ msgid "Cancel"
308
+ msgstr "Cancelar"
309
+
310
+ #: modules/mycred-module-management.php:741
311
+ #: addons/banking/services/mycred-service-payouts.php:553
312
+ msgid "ID"
313
+ msgstr "ID"
314
 
315
  #: modules/mycred-module-management.php:747
316
+ #: modules/mycred-module-export.php:432 modules/mycred-module-export.php:480
317
  #: addons/buy-creds/modules/buycred-module-core.php:1374
318
  msgid "Username"
319
+ msgstr "Usuario"
320
+
321
+ #: modules/mycred-module-management.php:753
322
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:307
323
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:332
324
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:464
325
+ msgid "Current Balance"
326
+ msgstr "Saldo Actual"
327
 
328
  #: modules/mycred-module-management.php:759
329
  msgid "Total Balance"
330
+ msgstr "Saldo Total"
331
+
332
+ #: modules/mycred-module-management.php:768
333
+ #: plugins/mycred-hook-affiliatewp.php:291
334
+ #: plugins/mycred-hook-affiliatewp.php:310
335
+ #: plugins/mycred-hook-affiliatewp.php:340
336
+ #: includes/shortcodes/mycred_exchange.php:69
337
+ #: includes/shortcodes/mycred_hook_table.php:78
338
+ #: includes/classes/class.query-export.php:263
339
+ #: includes/classes/class.query-export.php:383
340
+ #: includes/classes/class.query-log.php:917
341
+ #: addons/transfer/includes/mycred-transfer-widgets.php:105
342
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
343
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
344
+ #: addons/buy-creds/modules/buycred-module-pending.php:296
345
+ #: addons/buy-creds/modules/buycred-module-pending.php:642
346
+ #: addons/buy-creds/modules/buycred-module-pending.php:760
347
+ msgid "Amount"
348
+ msgstr "Cantidad"
349
+
350
+ #: modules/mycred-module-management.php:770
351
+ msgid "A positive or negative value"
352
+ msgstr "Un valor positivo o negativo"
353
 
354
  #: modules/mycred-module-management.php:785
355
  msgid "Log under a custom reference"
356
+ msgstr "Registro con una referencia personalizada"
357
 
358
  #: modules/mycred-module-management.php:791
359
  msgid "lowercase without empty spaces"
360
+ msgstr "minúsculas sin espacios"
361
+
362
+ #: modules/mycred-module-management.php:796 modules/mycred-module-log.php:915
363
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:518
364
+ msgid "Log Entry"
365
+ msgstr "Entrada de Registro"
366
+
367
+ #: modules/mycred-module-management.php:797
368
+ #: addons/transfer/includes/mycred-transfer-widgets.php:92
369
+ #: addons/transfer/includes/mycred-transfer-widgets.php:114
370
+ #: addons/transfer/includes/mycred-transfer-widgets.php:118
371
+ #: addons/transfer/includes/mycred-transfer-widgets.php:126
372
+ msgid "optional"
373
+ msgstr "opcional"
374
 
375
  #: modules/mycred-module-management.php:804
376
  msgid "Update"
377
+ msgstr "Actualizar"
378
 
379
  #: modules/mycred-module-management.php:807
380
  msgid "Recent Activity"
381
+ msgstr "Actividad Reciente"
382
+
383
+ #: modules/mycred-module-settings.php:138
384
+ msgid "Accounts successfully reset"
385
+ msgstr "Las cuentas se han restablecido con éxito"
386
+
387
+ #: modules/mycred-module-settings.php:190
388
+ msgid "No users found to export"
389
+ msgstr "No se encontraron usuarios para exportar"
390
 
391
  #: modules/mycred-module-settings.php:240
392
  msgid "Invalid decimal value."
393
+ msgstr "Valor decimal no válido."
394
 
395
  #: modules/mycred-module-settings.php:290
396
  msgid "Log Updated"
397
+ msgstr "Registro actualizado"
398
 
399
+ #: modules/mycred-module-settings.php:426
400
+ msgid ""
401
+ "Warning! All entries in your log will be permanently removed! This can not "
402
+ "be undone!"
403
+ msgstr ""
404
+ "Aviso: Todas las entradas en su registro se borrarán permanentemente. ¡Esto "
405
+ "no se puede deshacer!"
406
+
407
+ #: modules/mycred-module-settings.php:427
408
+ msgid ""
409
+ "All log entries belonging to deleted users will be permanently deleted! This "
410
+ "can not be undone!"
411
+ msgstr ""
412
+ "¡Todas las entradas de registro de usuarios borrados seran permanentemente "
413
+ "eliminadas. ¡Esto no se puede deshacer!"
414
+
415
+ #: modules/mycred-module-settings.php:428
416
+ msgid "Warning! All user balances will be set to zero! This can not be undone!"
417
+ msgstr ""
418
+ "Aviso: todo los saldos del usuario serán puestos a cero. ¡Esto no se puede "
419
+ "deshacer!"
420
+
421
+ #: modules/mycred-module-settings.php:429
422
+ msgid "Done!"
423
+ msgstr "¡Hecho!"
424
+
425
+ #: modules/mycred-module-settings.php:432
426
  msgid ""
427
  "In order to adjust the number of decimal places you want to use we must "
428
  "update your log. It is highly recommended that you backup your current log "
429
  "before continuing!"
430
  msgstr ""
431
+ "Para ajustar el número de decimales que desea utilizar, debemos actualizar "
432
+ "su registro. Es recomendable que haga una copia de seguridad de su registro "
433
+ "actual antes de continuar."
434
 
435
  #: modules/mycred-module-settings.php:457
436
  msgid "Update Database"
437
+ msgstr "Actualizar base de datos"
438
 
439
  #: modules/mycred-module-settings.php:468
440
  #: modules/mycred-module-settings.php:480
441
  msgid "No decimals"
442
+ msgstr "Sin decimales"
443
 
444
  #: modules/mycred-module-settings.php:492
445
  #, php-format
446
  msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
447
  msgstr ""
448
+ "<a href=\"%s\">Haga clic aquí</a> para cambiar la configuración "
449
+ "predeterminada de los tipos de punto."
450
+
451
+ #: modules/mycred-module-settings.php:530
452
+ #, php-format
453
+ msgid "%s Settings"
454
+ msgstr "Configuración de %s"
455
 
456
  #: modules/mycred-module-settings.php:530 modules/mycred-module-addons.php:330
457
+ #: modules/mycred-module-addons.php:368 modules/mycred-module-log.php:544
458
  #: modules/mycred-module-network.php:241 modules/mycred-module-network.php:276
459
  #: modules/mycred-module-network.php:292
460
  #: includes/importers/mycred-cubepoints.php:305
461
  #: includes/importers/mycred-balances.php:245
462
  #: includes/importers/mycred-log-entries.php:239
463
  msgid "Documentation"
464
+ msgstr "Documentación"
465
+
466
+ #: modules/mycred-module-settings.php:539
467
+ msgid "Core Settings"
468
+ msgstr "Ajustes Basicos"
469
+
470
+ #: modules/mycred-module-settings.php:544 includes/mycred-setup.php:275
471
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:460
472
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:658
473
+ msgid "Labels"
474
+ msgstr "Etiquetas"
475
 
476
  #: modules/mycred-module-settings.php:548 includes/mycred-setup.php:279
477
  msgid "Singular"
478
+ msgstr "Singular"
479
 
480
  #: modules/mycred-module-settings.php:549
481
  #: modules/mycred-module-settings.php:555
482
  #: modules/mycred-module-settings.php:605
483
  #: modules/mycred-module-settings.php:612
484
+ #: modules/mycred-module-settings.php:800
485
+ #: modules/mycred-module-settings.php:806 includes/mycred-setup.php:280
486
  #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
487
  #: includes/mycred-setup.php:340 addons/coupons/myCRED-addon-coupons.php:710
488
  #: addons/coupons/myCRED-addon-coupons.php:717
503
  #: addons/buy-creds/modules/buycred-module-core.php:427
504
  #: addons/buy-creds/modules/buycred-module-core.php:454
505
  msgid "Required"
506
+ msgstr "Requerido"
507
 
508
  #: modules/mycred-module-settings.php:554 includes/mycred-setup.php:285
509
  msgid "Plural"
510
+ msgstr "Plural"
511
 
512
  #: modules/mycred-module-settings.php:559 includes/mycred-setup.php:290
513
  msgid ""
514
  "These labels are used throughout the admin area and when presenting points "
515
  "to your users."
516
  msgstr ""
517
+ "Estas etiquetas se utilizan en todo el área de administración y cuando se "
518
+ "presentan puntos a los usuarios."
519
+
520
+ #: modules/mycred-module-settings.php:562 includes/mycred-setup.php:293
521
+ #: addons/email-notices/myCRED-addon-email-notices.php:1415
522
+ msgid "Format"
523
+ msgstr "Formato"
524
+
525
+ #: modules/mycred-module-settings.php:566 includes/mycred-setup.php:297
526
+ msgid "Prefix"
527
+ msgstr "Prefijo"
528
+
529
+ #: modules/mycred-module-settings.php:572 includes/mycred-setup.php:303
530
+ msgid "Separators"
531
+ msgstr "Separadores"
532
+
533
+ #: modules/mycred-module-settings.php:580 includes/mycred-setup.php:311
534
+ msgid "Decimals"
535
+ msgstr "Decimales"
536
+
537
+ #: modules/mycred-module-settings.php:586 includes/mycred-setup.php:317
538
+ msgid "Suffix"
539
+ msgstr "Sufijo"
540
 
541
  #: modules/mycred-module-settings.php:591
542
  msgid "Set decimals to zero if you prefer to use whole numbers."
543
+ msgstr "Ponga los decimales a cero si prefiere utilizar números enteros."
544
+
545
+ #: modules/mycred-module-settings.php:593
546
+ msgid "Tip"
547
+ msgstr "Consejo"
548
 
549
  #: modules/mycred-module-settings.php:593
550
  msgid ""
551
  "As this is your main point type, the value you select here will be the "
552
  "largest number of decimals your installation will support."
553
  msgstr ""
554
+ "Como este es tu tipo de punto principal, el valor que selecciones aquí será "
555
+ "el mayor número de decimales que su instalación soportará."
556
+
557
+ #: modules/mycred-module-settings.php:600 includes/mycred-setup.php:328
558
+ msgid "Security"
559
+ msgstr "Seguridad"
560
 
561
  #: modules/mycred-module-settings.php:604 includes/mycred-setup.php:332
562
  msgid "Point Editors"
563
+ msgstr "Editores de puntos"
564
 
565
  #: modules/mycred-module-settings.php:606 includes/mycred-setup.php:334
566
  msgid "The capability of users who can edit balances."
567
+ msgstr "La capacidad de usuarios que pueden editar saldos."
568
 
569
  #: modules/mycred-module-settings.php:611 includes/mycred-setup.php:339
570
  msgid "Point Administrators"
571
+ msgstr "Administradores de puntos"
572
 
573
  #: modules/mycred-module-settings.php:613 includes/mycred-setup.php:341
574
  msgid "The capability of users who can edit settings."
575
+ msgstr "La capacidad de usuarios que pueden editar la configuración."
576
 
577
  #: modules/mycred-module-settings.php:619 includes/mycred-setup.php:346
578
  msgid "Max. Amount"
579
+ msgstr "Cantidad máxima"
580
 
581
  #: modules/mycred-module-settings.php:621 includes/mycred-setup.php:348
582
  msgid "The maximum amount allowed to be paid out in a single instance."
583
+ msgstr "La cantidad máxima permitida que puede abonarse de una vez."
584
 
585
  #: modules/mycred-module-settings.php:626 includes/mycred-setup.php:353
586
  msgid "Exclude by User ID"
587
+ msgstr "Excluir por ID de usuario"
588
 
589
  #: modules/mycred-module-settings.php:627 includes/mycred-setup.php:354
590
  msgid "Optional"
591
+ msgstr "Opcional"
592
 
593
  #: modules/mycred-module-settings.php:628 includes/mycred-setup.php:355
594
  msgid "Comma separated list of user IDs to exclude from using this point type."
595
  msgstr ""
596
+ "Lista de ID de usuario separada por comas para descrtar el uso de este tipo "
597
+ "de punto."
598
 
599
  #: modules/mycred-module-settings.php:632 includes/mycred-setup.php:359
600
  msgid "Exclude point editors"
601
+ msgstr "Excluir editores de puntos"
602
 
603
  #: modules/mycred-module-settings.php:635 includes/mycred-setup.php:362
604
  msgid "Exclude point administrators"
605
+ msgstr "Excluir administradores de puntos"
606
 
607
  #: modules/mycred-module-settings.php:645
608
  msgid "Other Settings"
609
+ msgstr "Otras opciones"
610
+
611
+ #: modules/mycred-module-settings.php:647
612
+ msgid "Delete log entries when user is deleted."
613
+ msgstr "Elimina las entradas de registro cuando se elimina el usuario."
614
+
615
+ #: modules/mycred-module-settings.php:666
616
+ msgid "Management"
617
+ msgstr "Gestión"
618
+
619
+ #: modules/mycred-module-settings.php:678 modules/mycred-module-log.php:427
620
+ msgid "Entries"
621
+ msgstr "Entradas"
622
+
623
+ #: modules/mycred-module-settings.php:684
624
+ #: modules/mycred-module-settings.php:709
625
+ #: addons/ranks/myCRED-addon-ranks.php:1669
626
+ #: addons/buy-creds/modules/buycred-module-pending.php:477
627
+ #: addons/buy-creds/modules/buycred-module-pending.php:763
628
+ msgid "Actions"
629
+ msgstr "Acciones"
630
+
631
+ #: modules/mycred-module-settings.php:687
632
+ msgid "Empty Log"
633
+ msgstr "Registro Vacío"
634
 
635
  #: modules/mycred-module-settings.php:697
636
  msgid "Balance Meta Key"
637
+ msgstr "Clave Meta de Saldo"
638
+
639
+ #: modules/mycred-module-settings.php:703
640
+ #: addons/ranks/myCRED-addon-ranks.php:1080
641
+ #: addons/badges/myCRED-addon-badges.php:425
642
+ msgid "Users"
643
+ msgstr "Usuarios"
644
+
645
+ #: modules/mycred-module-settings.php:711
646
+ msgid "Set all to zero"
647
+ msgstr "Ajusta todo a cero"
648
+
649
+ #: modules/mycred-module-settings.php:729 includes/mycred-widgets.php:573
650
+ #: addons/transfer/myCRED-addon-transfer.php:370
651
+ #: addons/sell-content/myCRED-addon-sell-content.php:581
652
+ #: addons/transfer/includes/mycred-transfer-widgets.php:121
653
+ #: addons/buy-creds/modules/buycred-module-core.php:333
654
+ msgid "Point Types"
655
+ msgstr "Tipos de Puntos"
656
+
657
+ #: modules/mycred-module-settings.php:743
658
+ #: modules/mycred-module-settings.php:769
659
+ #: modules/mycred-module-settings.php:799
660
+ msgid "Meta Key"
661
+ msgstr "Clave Meta"
662
+
663
+ #: modules/mycred-module-settings.php:749
664
+ #: modules/mycred-module-settings.php:775
665
+ #: modules/mycred-module-settings.php:805
666
+ #: addons/email-notices/myCRED-addon-email-notices.php:578
667
+ #: addons/gateway/carts/mycred-woocommerce.php:155
668
+ msgid "Label"
669
+ msgstr "Etiqueta"
670
+
671
+ #: modules/mycred-module-settings.php:756
672
+ #: modules/mycred-module-settings.php:782
673
+ #: includes/classes/class.query-log.php:1019
674
+ #: includes/classes/class.query-log.php:1622
675
+ #: addons/banking/services/mycred-service-payouts.php:472
676
+ msgid "Delete"
677
+ msgstr "Borrar"
678
 
679
+ #: modules/mycred-module-settings.php:795
680
+ msgid "Add New Type"
681
+ msgstr "Añadir Nuevo Tipo"
682
+
683
+ #: modules/mycred-module-settings.php:811
684
  msgid ""
685
  "The meta key must be lowercase and only contain letters or underscores. All "
686
  "other characters will be deleted!"
687
  msgstr ""
688
+ "La clave meta debe estar en minúscula y sólo puede contener letras o guines "
689
+ "bajos. Todos los demás caracteres srán borrados."
690
 
691
+ #: modules/mycred-module-settings.php:823
692
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:551
693
+ #: addons/buy-creds/modules/buycred-module-core.php:650
694
+ msgid "Update Settings"
695
+ msgstr "Actualizar Configuraciones"
 
 
 
 
696
 
697
+ #: modules/mycred-module-settings.php:836
698
+ msgid "Identify users by"
699
+ msgstr "Identifique usuarios por"
700
 
701
+ #: modules/mycred-module-settings.php:842
702
+ msgid "User ID"
703
+ msgstr "ID del Usuario"
704
 
705
+ #: modules/mycred-module-settings.php:843
706
+ msgid "User Email"
707
+ msgstr "Email de Usuario"
708
 
709
+ #: modules/mycred-module-settings.php:844
710
+ msgid "User Login"
711
+ msgstr "Inicio de seisión de Usuario"
 
 
 
712
 
713
+ #: modules/mycred-module-settings.php:852
714
+ msgid ""
715
+ "Use ID if you intend to use this export as a backup of your current site "
716
+ "while Email is recommended if you want to export to a different site."
717
  msgstr ""
718
+ "Utiliza ID si quieres usar esta exportación como copia de seguridad de tu "
719
+ "sitio actual o Email si quieres exportar a otro sitio."
720
 
721
+ #: modules/mycred-module-settings.php:857
722
+ msgid "Import Log Entry"
723
+ msgstr "Importar la entrada de registro"
724
 
725
+ #: modules/mycred-module-settings.php:859
726
  #, php-format
 
 
 
 
 
727
  msgid ""
728
+ "Optional log entry to use if you intend to import this file in a different "
729
+ "%s installation."
 
 
 
 
730
  msgstr ""
731
+ "Entrada de registro opcional a usar si quieres importar este fichero a otra "
732
+ "instalación %s."
733
 
734
+ #: modules/mycred-module-settings.php:866 modules/mycred-module-export.php:268
735
+ #: modules/mycred-module-export.php:295 modules/mycred-module-export.php:345
736
+ msgid "Export"
737
+ msgstr "Exportar"
738
 
739
+ #: modules/mycred-module-addons.php:25 modules/mycred-module-addons.php:26
740
+ #: includes/mycred-setup.php:171
741
+ msgid "Add-ons"
742
+ msgstr "Extensiones"
743
 
744
+ #: modules/mycred-module-addons.php:175
745
+ msgid "Give your users badges based on their interaction with your website."
746
  msgstr ""
747
+ "Dar insignias a tus usuarios en base a sus interacciones con tu sitio web."
748
 
749
+ #: modules/mycred-module-addons.php:186
750
+ msgid ""
751
+ "Setup recurring payouts or offer / charge interest on user account balances."
752
  msgstr ""
753
+ "Configurar los pagos recurrentes u ofrecer / cobrar intereses sobre los "
754
+ "saldos de las cuentas de usuarios."
755
 
756
+ #: modules/mycred-module-addons.php:197
757
+ msgid ""
758
+ "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
759
+ "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
760
+ "also let your users buy points for other members."
761
  msgstr ""
762
+ "La extensión <strong>buy</strong>CRED permite que tus usuarios compren "
763
+ "puntos utilizando PayPal, Skrill (Moneybookers) o NETbilling. <strong>"
764
+ "buy</strong>CRED tambien permite que tus usuarios compren puntos para otros "
765
+ "miembros."
766
 
767
+ #: modules/mycred-module-addons.php:208
768
+ msgid ""
769
+ "The coupons add-on allows you to create coupons that users can use to add "
770
+ "points to their accounts."
771
  msgstr ""
772
+ "La extensión de cupones te permite crear cupones que los usuarios pueden "
773
+ "utilizar para agregar puntos a sus cuentas."
774
 
775
+ #: modules/mycred-module-addons.php:219
776
+ msgid "Create email notices for any type of myCRED instance."
777
  msgstr ""
778
+ "Crea avisos por correo electrónico para cualquier tipo de instancias de "
779
+ "myCRED."
780
 
781
+ #: modules/mycred-module-addons.php:230
782
+ msgid ""
783
+ "Let your users pay using their <strong>my</strong>CRED points balance. "
784
+ "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
785
+ "Bookings: Event Espresso and Events Manager (free & pro)."
786
  msgstr ""
787
+ "Permite que tus usuarios paguen utilizando el saldo de puntos <strong>"
788
+ "my</strong>CRED. Carritos soportados: WooCommerce, MarketPress y WP E-"
789
+ "Commerce. Reservas de Eventos soportadas: Event Espresso y Events Manager "
790
+ "(gratis y pro)."
791
 
792
+ #: modules/mycred-module-addons.php:241
793
+ msgid "Create pop-up notifications for when users gain or loose points."
794
  msgstr ""
795
+ "Crear notificaciones emergentes cuando los usuarios ganen o pierdan puntos."
796
 
797
+ #: modules/mycred-module-addons.php:253
798
+ msgid ""
799
+ "Create ranks for users reaching a certain number of %_plural% with the "
800
+ "option to add logos for each rank."
801
  msgstr ""
802
+ "Crear categorías para los usuarios que alcancen a un cierto número de "
803
+ "%_plural% con la opción de añadir logotipos para cada rango."
804
 
805
+ #: modules/mycred-module-addons.php:264
806
+ msgid ""
807
+ "This add-on allows you to sell posts, pages or any public post types on your "
808
+ "website. You can either sell the entire content or using our shortcode, sell "
809
+ "parts of your content allowing you to offer \"teasers\"."
810
  msgstr ""
811
+ "Esta extensión permite que vendas posts, páginas o cualquier tipo de "
812
+ "publicación de tu sitio web. Puedes vender contenidos enteros o, utilizando "
813
+ "el código corto (shortcode), vender partes de tu contenido permitiéndote "
814
+ "ofrecer \"adelantos\"."
815
 
816
+ #: modules/mycred-module-addons.php:275
817
+ msgid ""
818
+ "Gives you access to your myCRED Statistics based on your users gains and "
819
+ "loses."
820
  msgstr ""
821
+ "Le da acceso a sus estadísticas de myCRED en base a las ganancias y pérdidas "
822
+ "de sus usuarios."
823
 
824
+ #: modules/mycred-module-addons.php:286
825
  msgid ""
826
+ "Allow your users to send or \"donate\" points to other members by either "
827
+ "using the mycred_transfer shortcode or the myCRED Transfer widget."
 
 
 
 
 
 
 
 
 
 
 
 
828
  msgstr ""
829
+ "Permite que los usuarios envien o \"donen\" puntos a otros miembros "
830
+ "utilizando el código corto (shortcode) de mycred_transfer o el widget de "
831
+ "Transferencia myCRED."
832
 
833
+ #: modules/mycred-module-addons.php:330
834
+ #, php-format
835
+ msgid "%s Add-ons"
836
+ msgstr "Extensiones %s"
837
 
838
+ #: modules/mycred-module-addons.php:337
839
+ msgid "Add-on Activated"
840
+ msgstr "Extensión Activada"
841
 
842
+ #: modules/mycred-module-addons.php:340
843
+ msgid "Add-on Deactivated"
844
+ msgstr "Extensión Desactivada"
845
 
846
+ #: modules/mycred-module-addons.php:405
847
+ msgid "Activate Add-on"
848
+ msgstr "Activar Extensión"
849
 
850
+ #: modules/mycred-module-addons.php:406
851
+ msgid "Activate"
852
+ msgstr "Activar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
853
 
854
+ #: modules/mycred-module-addons.php:412
855
+ msgid "Deactivate Add-on"
856
+ msgstr "Desactivar Extensión"
857
 
858
+ #: modules/mycred-module-addons.php:413
859
+ msgid "Deactivate"
860
+ msgstr "Desactivar"
861
 
862
+ #: modules/mycred-module-log.php:24 modules/mycred-module-log.php:25
863
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:515
864
+ msgid "Log"
865
+ msgstr "Registro"
 
866
 
867
+ #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:892
868
+ #: includes/classes/class.query-export.php:263
869
+ #: includes/classes/class.query-export.php:371
870
+ #: includes/classes/class.query-log.php:891
871
+ #: includes/classes/class.query-log.php:903
872
+ #: addons/email-notices/myCRED-addon-email-notices.php:336
873
+ #: addons/email-notices/myCRED-addon-email-notices.php:568
874
+ msgid "User"
875
+ msgstr "Usuario"
876
 
877
+ #: modules/mycred-module-log.php:173
878
+ msgid "Row Deleted"
879
+ msgstr "Fila Borrada"
880
 
881
+ #: modules/mycred-module-log.php:215
882
+ msgid "Invalid or empty reference"
883
+ msgstr "Referencia no válida o vacía"
 
 
884
 
885
+ #: modules/mycred-module-log.php:220
886
+ msgid "Log Entry cannot be empty"
887
+ msgstr "La entrada del registro no puede estar vacía"
 
 
888
 
889
+ #: modules/mycred-module-log.php:232
890
+ msgid "Log entry not found"
891
+ msgstr "No se encontró la entrada de registro"
 
892
 
893
+ #: modules/mycred-module-log.php:241
894
+ msgid "Could not save the new log entry"
895
+ msgstr "No se pudo guardar la nueva entrada de registro"
 
896
 
897
+ #: modules/mycred-module-log.php:262
898
+ msgid "Log entry successfully updated"
899
+ msgstr "Entrada de registro actualizada correctamente"
 
900
 
901
+ #: modules/mycred-module-log.php:307
 
902
  #, php-format
903
+ msgid "1 Entry Deleted"
904
+ msgid_plural "%d Entries Deleted"
905
+ msgstr[0] "1 Entrada Borrada"
906
+ msgstr[1] "%d Entradas Borradas"
 
 
 
 
 
 
 
 
 
 
 
907
 
908
+ #: modules/mycred-module-log.php:461
909
+ msgid "Edit Log Entry"
910
+ msgstr "Editar entrada de registro"
911
 
912
+ #: modules/mycred-module-log.php:465
913
+ msgid "Are you sure you want to delete this log entry? This can not be undone!"
914
  msgstr ""
915
+ "¿Está seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
916
+ "deshacer!"
917
 
918
+ #: modules/mycred-module-log.php:466
919
+ msgid "The log entry was successfully updated."
920
+ msgstr "La entrada del registro se actualizó correctamente."
921
 
922
+ #: modules/mycred-module-log.php:467
923
+ msgid "The selected log entry could not be deleted."
924
+ msgstr "No se pudo eliminar la entrada de registro seleccionada."
925
 
926
+ #: modules/mycred-module-log.php:496
927
+ msgid "Search results for"
928
+ msgstr "Buscar resultados para"
929
 
930
+ #: modules/mycred-module-log.php:501
931
+ #, php-format
932
+ msgctxt "e.g. Log entries from April 12th 2016"
933
+ msgid "Log entries from %s"
934
+ msgstr "Entradas de registro del %s"
935
 
936
+ #: modules/mycred-module-log.php:544
937
+ #, php-format
938
+ msgid "%s Log"
939
+ msgstr "Registro de %s"
940
 
941
+ #: modules/mycred-module-log.php:554
942
  msgid ""
943
+ "Warning. The required Mcrypt PHP Library is not installed on this server! "
944
+ "Certain hooks and shortcodes will not work correctly!"
945
  msgstr ""
946
+ "Atención: La biblioteca de Mcrypt PHP no está instalada en este servidor. "
947
+ "Algunos hooks y atajos no funcionarán correctamente."
948
 
949
+ #: modules/mycred-module-log.php:652
950
+ #, php-format
951
+ msgid "My %s History"
952
+ msgstr "Mi Historial de %s"
953
 
954
+ #: modules/mycred-module-log.php:911
955
+ msgid "Original Entry"
956
+ msgstr "Entrada original"
957
 
958
+ #: modules/mycred-module-log.php:923
959
+ msgid "Delete Entry"
960
+ msgstr "Eliminar Entrad"
961
 
962
+ #: modules/mycred-module-log.php:928
963
+ msgid "Update Entry"
964
+ msgstr "Actualizar entrada"
965
 
966
+ #: modules/mycred-module-network.php:141
967
+ msgid "Blocked"
968
+ msgstr "Bloqueado"
969
 
970
+ #: modules/mycred-module-network.php:149
971
+ msgid "Installed"
972
+ msgstr "Instalado"
973
 
974
+ #: modules/mycred-module-network.php:151
975
+ msgid "Not Installed"
976
+ msgstr "No instalado"
 
 
 
 
 
 
977
 
978
+ #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:275
979
+ msgid "Master Template"
980
+ msgstr "Plantilla Principal"
 
 
981
 
982
+ #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:280
983
+ #: modules/mycred-module-network.php:296 modules/mycred-module-export.php:386
984
+ #: addons/sell-content/myCRED-addon-sell-content.php:481
985
+ msgid "Enabled"
986
+ msgstr "Habilitado"
987
 
988
+ #: modules/mycred-module-network.php:187 modules/mycred-module-network.php:188
989
+ msgid "Network Settings"
990
+ msgstr "Configuración de la Red"
991
 
992
+ #: modules/mycred-module-network.php:241
993
+ #, php-format
994
+ msgid "%s Network"
995
+ msgstr "Red de %s"
996
 
997
+ #: modules/mycred-module-network.php:247
998
+ msgid "I am sorry but your network is too big to use these features."
999
  msgstr ""
1000
+ "Lo siento, pero su red es demasiado grande para usar estas características."
1001
 
1002
+ #: modules/mycred-module-network.php:257
1003
+ #, php-format
1004
+ msgid "Note! %s has not yet been setup."
1005
+ msgstr "¡Aviso! %s no ha sido configurado."
1006
 
1007
+ #. also, "Inhabilitar"
1008
+ #: modules/mycred-module-network.php:285 modules/mycred-module-network.php:301
1009
+ #: modules/mycred-module-export.php:385 plugins/mycred-hook-affiliatewp.php:362
1010
+ #: addons/sell-content/myCRED-addon-sell-content.php:396
1011
+ #: addons/sell-content/myCRED-addon-sell-content.php:480
1012
+ #: addons/buy-creds/modules/buycred-module-core.php:1127
1013
+ msgid "Disabled"
1014
+ msgstr "Desactivado"
1015
 
1016
+ #: modules/mycred-module-network.php:291
1017
+ msgid "Central Logging"
1018
+ msgstr "Registro central"
1019
 
1020
+ #: modules/mycred-module-network.php:308
1021
+ msgid "Site Block"
1022
+ msgstr "Bloqueo de Sitio"
1023
 
1024
+ #: modules/mycred-module-network.php:312
1025
+ msgid "Blog IDs"
1026
+ msgstr "ID de blog"
1027
 
1028
+ #: modules/mycred-module-network.php:314
1029
+ #, php-format
1030
+ msgid "Comma separated list of blog ids where %s is to be disabled."
1031
+ msgstr "Lista separada por comas de ID de blog donde %s se va a inhabilitar."
1032
 
1033
+ #: modules/mycred-module-network.php:327
1034
+ msgid "Save Network Settings"
1035
+ msgstr "Guardar las Configuraciones de la Red"
1036
 
1037
+ #: modules/mycred-module-export.php:317 modules/mycred-module-export.php:364
1038
+ #: includes/classes/class.query-log.php:1687
1039
  msgid ""
1040
+ "Log entries are exported to a CSV file and depending on the number of "
1041
+ "entries selected, the process may take a few seconds."
1042
  msgstr ""
1043
+ "Se exportan las entradas de registro a un fichero CSV y dependiendo del "
1044
+ "número de entradas seleccionadas, el proceso puede tardar unos segundos."
1045
 
1046
+ #: modules/mycred-module-export.php:390
1047
+ msgid "Make both format options available."
1048
+ msgstr "Habilite ambas opciones de formato."
1049
 
1050
+ #: modules/mycred-module-export.php:392
1051
+ msgid "Exports"
1052
+ msgstr "Exportaciones"
 
 
 
1053
 
1054
+ #: modules/mycred-module-export.php:398
1055
+ msgid "Front End Exports"
1056
+ msgstr "Exportaciones front-end"
1057
 
1058
+ #: modules/mycred-module-export.php:414 modules/mycred-module-export.php:462
1059
+ msgid "Export Format"
1060
+ msgstr "Exportar Formato"
1061
 
1062
+ #: modules/mycred-module-export.php:430 modules/mycred-module-export.php:478
1063
+ msgid "File Name"
1064
+ msgstr "Nombre de Archivo"
1065
 
1066
+ #: modules/mycred-module-export.php:432 modules/mycred-module-export.php:480
1067
+ #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
1068
+ #: includes/importers/mycred-cubepoints.php:353
1069
+ #: includes/classes/class.query-export.php:263
1070
+ #: includes/classes/class.query-export.php:391
1071
+ #: addons/ranks/myCRED-addon-ranks.php:1083
1072
+ #: addons/ranks/myCRED-addon-ranks.php:1251
1073
+ #: addons/ranks/myCRED-addon-ranks.php:1258
1074
+ #: addons/email-notices/myCRED-addon-email-notices.php:280
1075
+ #: addons/email-notices/myCRED-addon-email-notices.php:585
1076
+ #: addons/coupons/myCRED-addon-coupons.php:256
1077
+ #: addons/coupons/myCRED-addon-coupons.php:520
1078
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:483
1079
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:604
1080
+ #: addons/gateway/carts/mycred-wpecommerce.php:383
1081
+ #: addons/gateway/carts/mycred-woocommerce.php:125
1082
+ #: addons/gateway/carts/mycred-woocommerce.php:166
1083
+ #: addons/buy-creds/modules/buycred-module-pending.php:584
1084
+ #: addons/buy-creds/modules/buycred-module-pending.php:762
1085
+ msgid "Point Type"
1086
+ msgstr "Tipo de Puntos"
1087
 
1088
+ #: modules/mycred-module-export.php:439
1089
+ msgid ""
1090
+ "If enabled, users will only be able to export their own log entries! Export "
1091
+ "tools becomes available wherever you are using the mycred_history shortcode "
1092
+ "or in the users profile."
1093
  msgstr ""
1094
+ "Si está activado, los usuarios sólo podrán exportar sus propias entradas de "
1095
+ "registro. Las herramientas de exportación estarán disponibles cuando utilice "
1096
+ "el código mycred_history o en el perfil de usuario."
1097
 
1098
+ #: modules/mycred-module-export.php:446
1099
+ msgid "Back End Exports"
1100
+ msgstr "Exportaciones back-end"
1101
 
1102
+ #: modules/mycred-module-export.php:487
1103
+ msgid ""
1104
+ "Raw format should be used when you intend to use the export tool to backup "
1105
+ "or import entries in another installation. Formatted exports reflect what "
1106
+ "users see in their history archive."
1107
  msgstr ""
1108
+ "Cuando pretenda utilizar la herramienta de exportación para realizar copias "
1109
+ "de seguridad o importar entradas en otra instalación, utilice archivos sin "
1110
+ "formato. Las exportaciones con formato reflejan lo que los usuarios ven en "
1111
+ "su archivo de historial."
1112
 
1113
+ #: modules/mycred-module-buddypress.php:31
1114
+ msgid "My History"
1115
+ msgstr "Mi Historial"
1116
 
1117
+ #: modules/mycred-module-buddypress.php:32
1118
+ #, php-format
1119
+ msgid "%s's History"
1120
+ msgstr "Historial de %s"
1121
 
1122
+ #: modules/mycred-module-buddypress.php:131
1123
+ msgid "Current balance"
1124
+ msgstr "Saldo Actual"
1125
 
1126
+ #: modules/mycred-module-buddypress.php:236
1127
+ #: modules/mycred-module-buddypress.php:249
1128
+ #: includes/classes/class.query-log.php:1745
1129
+ msgid "All"
1130
+ msgstr "Todo"
1131
 
1132
+ #: modules/mycred-module-buddypress.php:237
1133
+ #: includes/classes/class.query-log.php:1746
1134
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:189
1135
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:319
1136
+ msgid "Today"
1137
+ msgstr "Hoy"
1138
 
1139
+ #: modules/mycred-module-buddypress.php:238
1140
+ #: includes/classes/class.query-log.php:1747
1141
+ msgid "Yesterday"
1142
+ msgstr "Ayer"
1143
 
1144
+ #: modules/mycred-module-buddypress.php:239
1145
+ #: includes/classes/class.query-log.php:1748
1146
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:190
1147
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:320
1148
+ msgid "This Week"
1149
+ msgstr "Esta Semana"
1150
 
1151
+ #: modules/mycred-module-buddypress.php:240
1152
+ #: includes/classes/class.query-log.php:1749
1153
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:191
1154
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:321
1155
+ msgid "This Month"
1156
+ msgstr "Este Mes"
1157
 
1158
+ #: modules/mycred-module-buddypress.php:352
1159
+ msgid "Show:"
1160
+ msgstr "Mostrar:"
1161
 
1162
+ #: modules/mycred-module-buddypress.php:352
1163
+ msgid "Go"
1164
+ msgstr "Ir"
1165
 
1166
+ #: modules/mycred-module-buddypress.php:404
1167
+ #: modules/mycred-module-buddypress.php:411
1168
+ #: addons/badges/myCRED-addon-badges.php:1165
1169
+ #: addons/badges/myCRED-addon-badges.php:1199
1170
+ #: addons/gateway/carts/mycred-woocommerce.php:147
1171
+ msgid "Do not show"
1172
+ msgstr "No Mostrar"
1173
 
1174
+ #: modules/mycred-module-buddypress.php:405
1175
+ #: addons/badges/myCRED-addon-badges.php:1166
1176
+ msgid "Include in Profile Header"
1177
+ msgstr "Incluir en el Encabezado del Perfil"
1178
 
1179
+ #: modules/mycred-module-buddypress.php:406
1180
+ #: addons/ranks/myCRED-addon-ranks.php:1482
1181
+ #: addons/badges/myCRED-addon-badges.php:1167
1182
+ msgid "Include under the \"Profile\" tab"
1183
+ msgstr "Incluir en la pestaña \"Perfil\""
1184
 
1185
+ #: modules/mycred-module-buddypress.php:407
1186
+ #: addons/badges/myCRED-addon-badges.php:1168
1187
+ msgid "Include under the \"Profile\" tab and Profile Header"
1188
+ msgstr "Incluir bajo la pestaña \"Perfil\" y Encabezado de Perfil"
1189
 
1190
+ #: modules/mycred-module-buddypress.php:412
1191
+ msgid "Show in Profile"
1192
+ msgstr "Mostrar en Perfil"
 
1193
 
1194
+ #: modules/mycred-module-buddypress.php:432
1195
+ msgid "%singular% Balance"
1196
+ msgstr "Saldo %singular%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1197
 
1198
+ #: modules/mycred-module-buddypress.php:447
1199
+ msgid "Members and visitors can view other members %_singular% balance."
 
 
1200
  msgstr ""
1201
+ "Los miembros y los visitantes pueden ver el saldo % _singular% de otros "
1202
+ "miembros."
1203
 
1204
+ #: modules/mycred-module-buddypress.php:453
1205
+ #: addons/ranks/myCRED-addon-ranks.php:1497
1206
+ #: addons/ranks/myCRED-addon-ranks.php:1538
1207
+ #: addons/notifications/myCRED-addon-notifications.php:198
1208
+ msgid "Template"
1209
+ msgstr "Plantilla"
1210
 
1211
+ #: modules/mycred-module-buddypress.php:463
1212
+ msgid "%plural% History"
1213
+ msgstr "Historial de %plural%"
1214
 
1215
+ #: modules/mycred-module-buddypress.php:477
1216
+ msgid "Members can view each others %_plural% history."
1217
+ msgstr "Los miembros pueden ver sus historiales de %_plural%."
 
1218
 
1219
+ #: modules/mycred-module-buddypress.php:482
1220
+ msgid "Menu Title"
1221
+ msgstr "Título de Menú"
1222
 
1223
+ #: modules/mycred-module-buddypress.php:484
1224
+ msgid "Title shown to me"
1225
+ msgstr "Título que yo veo"
1226
 
1227
+ #: modules/mycred-module-buddypress.php:491
1228
+ #, php-format
1229
+ msgid "Title shown to others. Use %s to show the first name."
1230
+ msgstr "Título que ven los demás. Utilice %s para mostrar el nombre."
1231
 
1232
+ #: modules/mycred-module-buddypress.php:499
1233
+ msgid "Menu Position"
1234
+ msgstr "Posición del Menú"
1235
 
1236
+ #: modules/mycred-module-buddypress.php:501
1237
+ msgid "Current menu positions:"
1238
+ msgstr "Posiciones actuales del menú:"
 
 
 
1239
 
1240
+ #: modules/mycred-module-buddypress.php:506
1241
+ msgid "History URL slug"
1242
+ msgstr "Slug URL del historial"
1243
 
1244
+ #: modules/mycred-module-buddypress.php:508
1245
+ msgid "The history page slug. Must be URL friendly."
1246
+ msgstr "La URL del historial. Debe ser una URL semántica."
 
 
1247
 
1248
+ #: modules/mycred-module-buddypress.php:513
1249
+ msgid "Number of history entries to show"
1250
+ msgstr "Numero de entradas de historial a mostrar"
1251
 
1252
+ #. does this really need to be translated?
1253
+ #: plugins/mycred-hook-invite-anyone.php:15
1254
+ msgid "Invite Anyone Plugin"
1255
+ msgstr "Plugin Invitar a cualquiera"
1256
 
1257
+ #: plugins/mycred-hook-invite-anyone.php:16
1258
  msgid ""
1259
+ "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
1260
+ "accepted."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1261
  msgstr ""
1262
+ "Regala %_plural% por mandar invitaciones y/o %_plural% si se acepta la "
1263
+ "invitación."
1264
 
1265
+ #: plugins/mycred-hook-invite-anyone.php:205
1266
+ msgid "Sending Invites"
1267
+ msgstr "Enviando invitaciones"
1268
 
1269
+ #: plugins/mycred-hook-invite-anyone.php:215
1270
+ #: plugins/mycred-hook-invite-anyone.php:239
1271
+ #: plugins/mycred-hook-wp-postratings.php:171
1272
+ #: plugins/mycred-hook-wp-postratings.php:183
1273
+ #: plugins/mycred-hook-gravityforms.php:166
1274
+ #: plugins/mycred-hook-simplepress.php:301
1275
+ #: plugins/mycred-hook-simplepress.php:343
1276
+ #: plugins/mycred-hook-buddypress.php:623
1277
+ #: plugins/mycred-hook-buddypress.php:647
1278
+ #: plugins/mycred-hook-buddypress.php:671
1279
+ #: plugins/mycred-hook-buddypress.php:695
1280
+ #: plugins/mycred-hook-buddypress.php:719
1281
+ #: plugins/mycred-hook-buddypress.php:770
1282
+ #: plugins/mycred-hook-buddypress.php:812
1283
+ #: plugins/mycred-hook-buddypress.php:854
1284
+ #: plugins/mycred-hook-buddypress.php:878
1285
+ #: plugins/mycred-hook-buddypress.php:1556
1286
+ #: plugins/mycred-hook-buddypress.php:1580
1287
+ #: plugins/mycred-hook-buddypress.php:1604
1288
+ #: plugins/mycred-hook-buddypress.php:1628
1289
+ #: plugins/mycred-hook-buddypress.php:1652
1290
+ #: plugins/mycred-hook-buddypress.php:1676
1291
+ #: plugins/mycred-hook-buddypress.php:1700
1292
+ #: plugins/mycred-hook-buddypress.php:1742
1293
+ #: plugins/mycred-hook-affiliatewp.php:317
1294
+ #: plugins/mycred-hook-events-manager-light.php:211
1295
+ #: plugins/mycred-hook-sharethis.php:267
1296
+ #: plugins/mycred-hook-buddypress-media.php:300
1297
+ #: plugins/mycred-hook-buddypress-media.php:324
1298
+ #: plugins/mycred-hook-buddypress-media.php:348
1299
+ #: plugins/mycred-hook-wp-favorite-posts.php:228
1300
+ #: plugins/mycred-hook-wp-favorite-posts.php:240
1301
+ #: plugins/mycred-hook-contact-form7.php:172
1302
+ #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:485
1303
+ #: plugins/mycred-hook-bbPress.php:536 plugins/mycred-hook-bbPress.php:560
1304
+ #: plugins/mycred-hook-woocommerce.php:514
1305
+ #: includes/shortcodes/mycred_hook_table.php:79
1306
+ msgid "Limit"
1307
+ msgstr "Límite"
1308
 
1309
+ #: plugins/mycred-hook-invite-anyone.php:221
1310
+ #: plugins/mycred-hook-invite-anyone.php:245
1311
+ #: plugins/mycred-hook-gravityforms.php:172
1312
+ #: plugins/mycred-hook-simplepress.php:307
1313
+ #: plugins/mycred-hook-simplepress.php:325
1314
+ #: plugins/mycred-hook-simplepress.php:349
1315
+ #: plugins/mycred-hook-simplepress.php:376
1316
+ #: plugins/mycred-hook-buddypress.php:629
1317
+ #: plugins/mycred-hook-buddypress.php:653
1318
+ #: plugins/mycred-hook-buddypress.php:677
1319
+ #: plugins/mycred-hook-buddypress.php:701
1320
+ #: plugins/mycred-hook-buddypress.php:725
1321
+ #: plugins/mycred-hook-buddypress.php:752
1322
+ #: plugins/mycred-hook-buddypress.php:776
1323
+ #: plugins/mycred-hook-buddypress.php:794
1324
+ #: plugins/mycred-hook-buddypress.php:818
1325
+ #: plugins/mycred-hook-buddypress.php:836
1326
+ #: plugins/mycred-hook-buddypress.php:860
1327
+ #: plugins/mycred-hook-buddypress.php:884
1328
+ #: plugins/mycred-hook-buddypress.php:1520
1329
+ #: plugins/mycred-hook-buddypress.php:1538
1330
+ #: plugins/mycred-hook-buddypress.php:1562
1331
+ #: plugins/mycred-hook-buddypress.php:1586
1332
+ #: plugins/mycred-hook-buddypress.php:1610
1333
+ #: plugins/mycred-hook-buddypress.php:1634
1334
+ #: plugins/mycred-hook-buddypress.php:1658
1335
+ #: plugins/mycred-hook-buddypress.php:1682
1336
+ #: plugins/mycred-hook-buddypress.php:1706
1337
+ #: plugins/mycred-hook-buddypress.php:1724
1338
+ #: plugins/mycred-hook-buddypress.php:1748
1339
+ #: plugins/mycred-hook-affiliatewp.php:298
1340
+ #: plugins/mycred-hook-affiliatewp.php:325
1341
+ #: plugins/mycred-hook-events-manager-light.php:217
1342
+ #: plugins/mycred-hook-events-manager-light.php:235
1343
+ #: plugins/mycred-hook-sharethis.php:273
1344
+ #: plugins/mycred-hook-buddypress-media.php:306
1345
+ #: plugins/mycred-hook-buddypress-media.php:330
1346
+ #: plugins/mycred-hook-buddypress-media.php:354
1347
+ #: plugins/mycred-hook-buddypress-media.php:372
1348
+ #: plugins/mycred-hook-buddypress-media.php:390
1349
+ #: plugins/mycred-hook-buddypress-media.php:408
1350
+ #: plugins/mycred-hook-contact-form7.php:178
1351
+ #: plugins/mycred-hook-jetpack.php:549 plugins/mycred-hook-jetpack.php:567
1352
+ #: plugins/mycred-hook-bbPress.php:449 plugins/mycred-hook-bbPress.php:467
1353
+ #: plugins/mycred-hook-bbPress.php:491 plugins/mycred-hook-bbPress.php:518
1354
+ #: plugins/mycred-hook-bbPress.php:542 plugins/mycred-hook-bbPress.php:566
1355
+ #: plugins/mycred-hook-bbPress.php:593
1356
+ #: addons/badges/myCRED-addon-badges.php:974
1357
+ msgid "Log template"
1358
+ msgstr "Plantilla de Registro"
1359
 
1360
+ #: plugins/mycred-hook-invite-anyone.php:222
1361
+ #: plugins/mycred-hook-invite-anyone.php:246
1362
+ #: plugins/mycred-hook-wp-polls.php:178
1363
+ #: plugins/mycred-hook-wp-postratings.php:208
1364
+ #: plugins/mycred-hook-wp-postratings.php:215
1365
+ #: plugins/mycred-hook-gravityforms.php:173
1366
+ #: plugins/mycred-hook-simplepress.php:308
1367
+ #: plugins/mycred-hook-simplepress.php:326
1368
+ #: plugins/mycred-hook-simplepress.php:350
1369
+ #: plugins/mycred-hook-simplepress.php:377
1370
+ #: plugins/mycred-hook-buddypress.php:630
1371
+ #: plugins/mycred-hook-buddypress.php:654
1372
+ #: plugins/mycred-hook-buddypress.php:678
1373
+ #: plugins/mycred-hook-buddypress.php:702
1374
+ #: plugins/mycred-hook-buddypress.php:726
1375
+ #: plugins/mycred-hook-buddypress.php:753
1376
+ #: plugins/mycred-hook-buddypress.php:777
1377
+ #: plugins/mycred-hook-buddypress.php:795
1378
+ #: plugins/mycred-hook-buddypress.php:819
1379
+ #: plugins/mycred-hook-buddypress.php:837
1380
+ #: plugins/mycred-hook-buddypress.php:861
1381
+ #: plugins/mycred-hook-buddypress.php:885
1382
+ #: plugins/mycred-hook-buddypress.php:1521
1383
+ #: plugins/mycred-hook-buddypress.php:1539
1384
+ #: plugins/mycred-hook-buddypress.php:1563
1385
+ #: plugins/mycred-hook-buddypress.php:1587
1386
+ #: plugins/mycred-hook-buddypress.php:1611
1387
+ #: plugins/mycred-hook-buddypress.php:1635
1388
+ #: plugins/mycred-hook-buddypress.php:1659
1389
+ #: plugins/mycred-hook-buddypress.php:1683
1390
+ #: plugins/mycred-hook-buddypress.php:1707
1391
+ #: plugins/mycred-hook-buddypress.php:1725
1392
+ #: plugins/mycred-hook-buddypress.php:1749
1393
+ #: plugins/mycred-hook-affiliatewp.php:299
1394
+ #: plugins/mycred-hook-affiliatewp.php:326
1395
+ #: plugins/mycred-hook-affiliatewp.php:370
1396
+ #: plugins/mycred-hook-affiliatewp.php:377
1397
+ #: plugins/mycred-hook-events-manager-light.php:218
1398
+ #: plugins/mycred-hook-events-manager-light.php:236
1399
+ #: plugins/mycred-hook-sharethis.php:274
1400
+ #: plugins/mycred-hook-buddypress-media.php:307
1401
+ #: plugins/mycred-hook-buddypress-media.php:331
1402
+ #: plugins/mycred-hook-buddypress-media.php:355
1403
+ #: plugins/mycred-hook-buddypress-media.php:373
1404
+ #: plugins/mycred-hook-buddypress-media.php:391
1405
+ #: plugins/mycred-hook-buddypress-media.php:409
1406
+ #: plugins/mycred-hook-wp-favorite-posts.php:249
1407
+ #: plugins/mycred-hook-wp-favorite-posts.php:256
1408
+ #: plugins/mycred-hook-wp-favorite-posts.php:274
1409
+ #: plugins/mycred-hook-wp-favorite-posts.php:289
1410
+ #: plugins/mycred-hook-contact-form7.php:179
1411
+ #: plugins/mycred-hook-jetpack.php:550 plugins/mycred-hook-jetpack.php:568
1412
+ #: plugins/mycred-hook-bbPress.php:450 plugins/mycred-hook-bbPress.php:468
1413
+ #: plugins/mycred-hook-bbPress.php:492 plugins/mycred-hook-bbPress.php:519
1414
+ #: plugins/mycred-hook-bbPress.php:543 plugins/mycred-hook-bbPress.php:567
1415
+ #: plugins/mycred-hook-bbPress.php:594 plugins/mycred-hook-woocommerce.php:521
1416
+ #: plugins/mycred-hook-badgeOS.php:328 plugins/mycred-hook-badgeOS.php:346
1417
+ #: addons/transfer/includes/mycred-transfer-widgets.php:102
1418
+ #: addons/transfer/includes/mycred-transfer-widgets.php:106
1419
+ #: addons/transfer/includes/mycred-transfer-widgets.php:110
1420
+ #: addons/transfer/includes/mycred-transfer-widgets.php:122
1421
+ msgid "required"
1422
+ msgstr "requerido"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1423
 
1424
+ #: plugins/mycred-hook-invite-anyone.php:229
1425
+ msgid "Accepted Invites"
1426
+ msgstr "Invitaciones Aceptadas"
1427
 
1428
+ #: plugins/mycred-hook-wp-polls.php:15
1429
+ msgid "WP-Polls"
1430
+ msgstr "Encuestas WP"
 
 
1431
 
1432
+ #: plugins/mycred-hook-wp-polls.php:16
1433
+ msgid "Awards %_plural% for users voting in polls."
1434
+ msgstr "Regala %_plural% a usuarios que participan en las encuestas."
1435
 
1436
+ #. can also be "Plantilla de Bitácora"
1437
+ #: plugins/mycred-hook-wp-polls.php:177
1438
+ #: plugins/mycred-hook-wp-favorite-posts.php:273
1439
+ #: plugins/mycred-hook-wp-favorite-posts.php:288
1440
+ #: plugins/mycred-hook-woocommerce.php:520 plugins/mycred-hook-badgeOS.php:144
1441
+ #: plugins/mycred-hook-badgeOS.php:146 plugins/mycred-hook-badgeOS.php:157
1442
+ #: plugins/mycred-hook-badgeOS.php:327 plugins/mycred-hook-badgeOS.php:345
1443
+ #: addons/coupons/myCRED-addon-coupons.php:764
1444
+ #: addons/banking/services/mycred-service-interest.php:510
1445
+ #: addons/banking/services/mycred-service-payouts.php:710
1446
+ #: addons/gateway/carts/mycred-wpecommerce.php:400
1447
+ #: addons/gateway/carts/mycred-woocommerce.php:108
1448
+ #: addons/gateway/carts/mycred-woocommerce.php:183
1449
+ #: addons/buy-creds/modules/buycred-module-core.php:426
1450
+ #: addons/buy-creds/modules/buycred-module-core.php:453
1451
+ msgid "Log Template"
1452
+ msgstr "Plantilla de Registro"
1453
 
1454
+ #: plugins/mycred-hook-wp-postratings.php:15
1455
+ msgid "Post Ratings"
1456
+ msgstr "Valoraciones de las publicaciones"
 
1457
 
1458
+ #: plugins/mycred-hook-wp-postratings.php:16
 
1459
  msgid ""
1460
+ "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
1461
+ "author and the user rating."
1462
  msgstr ""
1463
+ "Premios% _plural% por valoraciones de las publicaciones. Premios % _plural% "
1464
+ "tanto para el autor de la publicación como para el usuario que la ha "
1465
+ "valorado."
1466
 
1467
+ #: plugins/mycred-hook-wp-postratings.php:85
1468
+ msgid "Based on rating"
1469
+ msgstr "Basado en la valoración"
1470
 
1471
+ #: plugins/mycred-hook-wp-postratings.php:161
1472
+ msgid "Content Rating"
1473
+ msgstr "Valoración del contenido"
1474
 
1475
+ #: plugins/mycred-hook-wp-postratings.php:165
1476
+ #: plugins/mycred-hook-wp-favorite-posts.php:222
1477
+ #: plugins/mycred-hook-wp-favorite-posts.php:267
1478
+ msgid "Member"
1479
+ msgstr "Miembro"
1480
 
1481
+ #: plugins/mycred-hook-wp-postratings.php:177
1482
+ #: plugins/mycred-hook-wp-favorite-posts.php:234
1483
+ #: plugins/mycred-hook-wp-favorite-posts.php:282
1484
+ msgid "Content Author"
1485
+ msgstr "Autor de contenidos"
1486
 
1487
+ #: plugins/mycred-hook-wp-postratings.php:192
1488
+ #: plugins/mycred-hook-wp-postratings.php:199
1489
+ msgid "Use the Rating Value instead of the amount set here."
1490
+ msgstr "Utilice el valor de valoración en lugar de la cantidad establecida."
1491
 
1492
+ #: plugins/mycred-hook-wp-postratings.php:207
1493
+ #: plugins/mycred-hook-wp-favorite-posts.php:248
1494
+ msgid "Member Log Template"
1495
+ msgstr "Plantilla de registro de miembro"
1496
 
1497
+ #: plugins/mycred-hook-wp-postratings.php:214
1498
+ #: plugins/mycred-hook-wp-favorite-posts.php:255
1499
+ msgid "Content Author Log Template"
1500
+ msgstr "Plantilla de registro de autor de contenido"
 
1501
 
1502
+ #: plugins/mycred-hook-gravityforms.php:15
1503
+ msgid "Gravityform Submissions"
1504
+ msgstr "Entregas de Gravityform"
1505
 
1506
+ #: plugins/mycred-hook-gravityforms.php:16
1507
+ msgid "Awards %_plural% for successful form submissions."
1508
+ msgstr "Concede %_plural% por enviar formularios de manera satisfactoria."
 
 
1509
 
1510
+ #: plugins/mycred-hook-gravityforms.php:130
1511
+ #: plugins/mycred-hook-contact-form7.php:134
1512
+ msgid "No forms found."
1513
+ msgstr "No se ha encontrado ningun formulario."
1514
 
1515
+ #: plugins/mycred-hook-gravityforms.php:156
1516
+ #: plugins/mycred-hook-contact-form7.php:162
1517
+ #, php-format
1518
+ msgid "Form: %s"
1519
+ msgstr "Formulario: %s"
1520
 
1521
+ #: plugins/mycred-hook-simplepress.php:16
1522
+ msgid "Awards %_plural% for Simple:Press actions."
1523
+ msgstr "Concede %_plural% por acciones Simple:Press."
 
 
1524
 
1525
+ #: plugins/mycred-hook-simplepress.php:291 plugins/mycred-hook-bbPress.php:475
1526
+ #: plugins/mycred-hook-bbPress.php:550
1527
+ msgid "New Topic"
1528
+ msgstr "Nuevo tema"
1529
 
1530
+ #: plugins/mycred-hook-simplepress.php:315 plugins/mycred-hook-bbPress.php:508
1531
+ msgid "Deleted Topic"
1532
+ msgstr "Tema eliminado"
1533
 
1534
+ #: plugins/mycred-hook-simplepress.php:333
1535
+ msgid "New Topic Post"
1536
+ msgstr "Nueva publicación de tema"
1537
 
1538
+ #: plugins/mycred-hook-simplepress.php:359
1539
+ msgid "Topic authors can receive %_plural% for posting on their own Topic."
1540
  msgstr ""
1541
+ "Los autores de temas pueden recibir % _plural% para publicar en su propio "
1542
+ "tema."
1543
 
1544
+ #: plugins/mycred-hook-simplepress.php:366
1545
+ msgid "Deleted Topic Post"
1546
+ msgstr "Mensaje eliminado del tema"
 
 
1547
 
1548
+ #: plugins/mycred-hook-buddypress.php:16
1549
+ msgid "BuddyPress: Members"
1550
+ msgstr "BuddyPress: Miembros"
 
 
 
1551
 
1552
+ #: plugins/mycred-hook-buddypress.php:17
1553
+ msgid "Awards %_plural% for profile related actions."
1554
+ msgstr "Concede %_plural% por acciones relacionadas con el perfil."
 
 
1555
 
1556
+ #: plugins/mycred-hook-buddypress.php:25
1557
+ msgid "BuddyPress: Groups"
1558
+ msgstr "BuddyPress: Grupos"
1559
 
1560
+ #: plugins/mycred-hook-buddypress.php:26
1561
+ msgid ""
1562
+ "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
1563
+ "zero to disable a specific hook."
1564
  msgstr ""
1565
+ "Concede %_plural% por acciones relacionadas a grupos. Usa el menos para "
1566
+ "extraer %_plural% o cero para deshabilitar un hook especifico."
1567
 
1568
+ #: plugins/mycred-hook-buddypress.php:310
1569
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:692
1570
+ #: addons/gateway/carts/mycred-wpecommerce.php:415
1571
+ msgid "Insufficient Funds"
1572
+ msgstr "Fondos Insuficientes"
1573
 
1574
+ #: plugins/mycred-hook-buddypress.php:613
1575
+ msgid "New Profile Activity"
1576
+ msgstr "Nueva Actividad en el Perfil"
1577
+
1578
+ #: plugins/mycred-hook-buddypress.php:637
1579
+ msgid "Deleted Profile Activity"
1580
+ msgstr "Actividad del perfil eliminada"
1581
+
1582
+ #: plugins/mycred-hook-buddypress.php:661
1583
+ msgid "New Profile Avatar Upload"
1584
+ msgstr "Carga nueva imagen de perfil"
1585
+
1586
+ #: plugins/mycred-hook-buddypress.php:685
1587
+ msgid "New Profile Cover Upload"
1588
+ msgstr "Carga nueva imagen de portada"
1589
+
1590
+ #: plugins/mycred-hook-buddypress.php:709
1591
+ msgid "New Friendships"
1592
+ msgstr "Nuevas amistades"
1593
+
1594
+ #: plugins/mycred-hook-buddypress.php:735
1595
  msgid ""
1596
+ "Users with zero balance can not add friends. Requires that you deduct "
1597
+ "%_plural% for adding a new friend."
 
1598
  msgstr ""
1599
+ "Los usuarios con saldo cero no pueden agregar amigos. Al agregar un nuevo "
1600
+ "amigo se descuentan % _plural%."
1601
 
1602
+ #: plugins/mycred-hook-buddypress.php:742
1603
+ msgid "Ending Friendships"
1604
+ msgstr "Terminando amistades"
1605
 
1606
+ #: plugins/mycred-hook-buddypress.php:760
1607
+ msgid "New Comment"
1608
+ msgstr "Nuevo comentario"
1609
 
1610
+ #: plugins/mycred-hook-buddypress.php:784
1611
+ #: includes/classes/class.query-log.php:2189
1612
+ msgid "Deleted Comment"
1613
+ msgstr "Comentario Borrado"
1614
 
1615
+ #: plugins/mycred-hook-buddypress.php:802
1616
+ msgid "Favorite Activity"
1617
+ msgstr "Actividad favorita"
1618
 
1619
+ #: plugins/mycred-hook-buddypress.php:826
1620
+ msgid "Removing Favorit Activity"
1621
+ msgstr "Eliminando actividad favorita"
1622
 
1623
+ #: plugins/mycred-hook-buddypress.php:844
1624
+ msgid "New Private Message"
1625
+ msgstr "Nuevo mensaje privado"
1626
 
1627
+ #: plugins/mycred-hook-buddypress.php:868
1628
+ #: includes/classes/class.query-log.php:2208
1629
+ msgid "Sending Gift"
1630
+ msgstr "Enviando Regalo"
1631
 
1632
+ #: plugins/mycred-hook-buddypress.php:1502
1633
+ msgid "Group Creation"
1634
+ msgstr "Creación de grupos"
1635
 
1636
+ #: plugins/mycred-hook-buddypress.php:1508
1637
+ msgid ""
1638
+ "If you use a negative value and the user does not have enough %_plural%, the "
1639
+ "\"Create Group\" button will be disabled."
1640
  msgstr ""
1641
+ "Si utiliza un valor negativo y el usuario no tiene suficientes % _plural%, "
1642
+ "el botón \"Crear grupo\" se deshabilitará."
1643
 
1644
+ #: plugins/mycred-hook-buddypress.php:1513
1645
+ msgid "No. of Members"
1646
+ msgstr "Nº de Miembros"
1647
 
1648
+ #: plugins/mycred-hook-buddypress.php:1515
1649
+ msgid ""
1650
+ "The number of members a group must gain before awarding %_plural%. Use zero "
1651
+ "to award as soon as the group is created."
1652
  msgstr ""
1653
+ "El número de miembros que un grupo debe ganar antes de dar %_plural%. "
1654
+ "Utilice cero para poder premiar al crear el grupo."
1655
 
1656
+ #: plugins/mycred-hook-buddypress.php:1528
1657
+ msgid "Group Deletions"
1658
+ msgstr "Eliminaciones de grupos"
 
 
1659
 
1660
+ #: plugins/mycred-hook-buddypress.php:1546
1661
+ msgid "New Group Avatar Upload"
1662
+ msgstr "Carga nueva imagen de grupo"
1663
 
1664
+ #: plugins/mycred-hook-buddypress.php:1570
1665
+ msgid "New Group Cover Upload"
1666
+ msgstr "Carga nueva portada de grupo"
 
1667
 
1668
+ #: plugins/mycred-hook-buddypress.php:1594
1669
+ msgid "New Forum Topics"
1670
+ msgstr "Nuevos Temas del Foro"
1671
+
1672
+ #: plugins/mycred-hook-buddypress.php:1618
1673
+ msgid "Editing Forum Topics"
1674
+ msgstr "Editando Temas del Foro"
1675
 
1676
+ #: plugins/mycred-hook-buddypress.php:1642
1677
+ msgid "New Forum Posts"
1678
+ msgstr "Nuevas publicaciones en el foro"
1679
 
1680
+ #: plugins/mycred-hook-buddypress.php:1666
1681
+ msgid "Editing Forum Posts"
1682
+ msgstr "Editando entradas del foro"
1683
 
1684
+ #: plugins/mycred-hook-buddypress.php:1690
1685
+ msgid "Joining Groups"
1686
+ msgstr "Uniéndose a los grupos"
1687
 
1688
+ #: plugins/mycred-hook-buddypress.php:1714
1689
+ msgid "Leaving Groups"
1690
+ msgstr "Abandonando grupos"
1691
 
1692
+ #: plugins/mycred-hook-buddypress.php:1732
1693
+ msgid "New Group Comments"
1694
+ msgstr "Nuevos Comentarios de Grupo"
 
1695
 
1696
+ #: plugins/mycred-hook-affiliatewp.php:15
1697
+ msgid "AffiliateWP"
1698
+ msgstr "FilialWP"
1699
 
1700
+ #: plugins/mycred-hook-affiliatewp.php:16
1701
+ msgid ""
1702
+ "Awards %_plural% for affiliate signups, referring visitors and store sale "
1703
+ "referrals."
1704
  msgstr ""
1705
+ "Concede % _plural% para inscripciones de afiliados, referencias de "
1706
+ "visitantes y referencias de descuentos de tiendas."
1707
 
1708
+ #: plugins/mycred-hook-affiliatewp.php:287
1709
+ msgid "Affiliate Signup"
1710
+ msgstr "Registro de Afiliados"
 
 
 
1711
 
1712
+ #: plugins/mycred-hook-affiliatewp.php:293
1713
+ #: plugins/mycred-hook-affiliatewp.php:312
1714
+ #: addons/banking/services/mycred-service-payouts.php:768
1715
+ #: addons/banking/services/mycred-service-payouts.php:775
1716
+ msgid "Use zero to disable."
1717
+ msgstr "Utilice cero para desactivar."
1718
 
1719
+ #: plugins/mycred-hook-affiliatewp.php:306
1720
+ msgid "Referring Visitors"
1721
+ msgstr "Refiriendo Visitantes"
1722
 
1723
+ #: plugins/mycred-hook-affiliatewp.php:333
1724
+ msgid "Referring Sales"
1725
+ msgstr "Creando referencia de ventas"
1726
 
1727
+ #: plugins/mycred-hook-affiliatewp.php:338
1728
+ msgid "Pay a set amount"
1729
+ msgstr "Pagar una cantidad fija"
1730
 
1731
+ #: plugins/mycred-hook-affiliatewp.php:342
1732
+ msgid "All referrals will pay the same amount."
1733
+ msgstr "Todas las referencias pagarán la misma cantidad."
1734
 
1735
+ #: plugins/mycred-hook-affiliatewp.php:348
1736
+ msgid "Pay the referral amount"
1737
+ msgstr "Pagar la cantidad de referencia"
1738
 
1739
+ #: plugins/mycred-hook-affiliatewp.php:350
1740
+ msgid "Points Currency Code"
1741
+ msgstr "Código de moneda de puntos"
1742
 
1743
+ #: plugins/mycred-hook-affiliatewp.php:352
1744
+ msgid "Requires AffiliateWP and your store to use points as currency."
1745
+ msgstr "Requiere que la FilialWP y tu tienda utilicen puntos como moneda."
 
 
1746
 
1747
+ #: plugins/mycred-hook-affiliatewp.php:358
1748
+ msgid "Apply an exchange rate"
1749
+ msgstr "Aplicar un tipo de cambio"
1750
 
1751
+ #: plugins/mycred-hook-affiliatewp.php:360
1752
+ #: includes/shortcodes/mycred_exchange.php:75
1753
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:498
1754
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:634
1755
+ #: addons/gateway/carts/mycred-wpecommerce.php:389
1756
+ #: addons/gateway/carts/mycred-woocommerce.php:136
1757
+ msgid "Exchange Rate"
1758
+ msgstr "Tipo de Cambio"
1759
 
1760
+ #: plugins/mycred-hook-affiliatewp.php:362
1761
+ #: addons/gateway/carts/mycred-wpecommerce.php:390
1762
+ #, php-format
1763
+ msgid "How much is 1 %s worth in %s"
1764
+ msgstr "Cuanto vale 1 %s en %s"
1765
 
1766
+ #: plugins/mycred-hook-affiliatewp.php:369
1767
+ msgid "Log template - Payout"
1768
+ msgstr "Plantilla de registro - Pago"
1769
 
1770
+ #: plugins/mycred-hook-affiliatewp.php:376
1771
+ msgid "Log template - Refund"
1772
+ msgstr "Plantilla de registro - Reembolso"
1773
 
1774
+ #: plugins/mycred-hook-events-manager-light.php:15
1775
+ msgid "Events Manager"
1776
+ msgstr "Gestión de Eventos"
1777
 
1778
+ #: plugins/mycred-hook-events-manager-light.php:16
1779
+ msgid "Awards %_plural% for users attending events."
1780
+ msgstr "Concede %_plural% para usuarios que asisten a eventos."
1781
 
1782
+ #: plugins/mycred-hook-events-manager-light.php:201
1783
+ msgid "Attending Event"
1784
+ msgstr "Asstiendo a Evento"
1785
 
1786
+ #: plugins/mycred-hook-events-manager-light.php:225
1787
+ msgid "Cancelling Attendance"
1788
+ msgstr "Cancelando Asistencia"
1789
 
1790
+ #: plugins/mycred-hook-sharethis.php:15
1791
+ msgid "%plural% for Sharing"
1792
+ msgstr "%plural% por Compartir"
1793
 
1794
+ #: plugins/mycred-hook-sharethis.php:16
1795
  msgid ""
1796
+ "Awards %_plural% for users sharing / liking your website content to popular "
1797
+ "social media sites."
 
 
 
 
1798
  msgstr ""
1799
+ "Concede %_plural% a usuarios por compartir / hacer clic en \"me gusta\" en "
1800
+ "el contenido de tu sitio web en páginas de redes sociales populares."
1801
 
1802
+ #: plugins/mycred-hook-sharethis.php:216
1803
+ msgid "Your ShareThis public key is not set."
1804
+ msgstr "Tu clave pública de ShareThis no ha sido configurada."
1805
 
1806
+ #: plugins/mycred-hook-sharethis.php:221
1807
+ msgid "No ShareThis services detected. Please check your installation."
1808
  msgstr ""
1809
+ "No se ha detectado ningún servicio ShareThis . Por favor verifica tu "
1810
+ "instalación."
1811
 
1812
+ #: plugins/mycred-hook-sharethis.php:257
1813
+ msgid "Publishing Posts"
1814
+ msgstr "Publicando entradas"
1815
 
1816
+ #: plugins/mycred-hook-buddypress-media.php:15
1817
+ msgid "rtMedia Galleries"
1818
+ msgstr "Galerías rtMedia"
1819
 
1820
+ #: plugins/mycred-hook-buddypress-media.php:16
1821
  msgid ""
1822
+ "Award / Deduct %_plural% for users creating albums or uploading new photos."
 
1823
  msgstr ""
1824
+ "Concede / Resta %_plural% a usuarios por crear álbumes o subir nuevas fotos."
1825
 
1826
+ #: plugins/mycred-hook-buddypress-media.php:290
1827
+ #: includes/classes/class.query-log.php:2223
1828
+ msgid "Photo Upload"
1829
+ msgstr "Subir Foto"
1830
 
1831
+ #: plugins/mycred-hook-buddypress-media.php:314
1832
+ #: includes/classes/class.query-log.php:2224
1833
+ msgid "Video Upload"
1834
+ msgstr "Subir Video"
1835
 
1836
+ #: plugins/mycred-hook-buddypress-media.php:338
1837
+ #: includes/classes/class.query-log.php:2225
1838
+ msgid "Music Upload"
1839
+ msgstr "Subir Música"
1840
 
1841
+ #: plugins/mycred-hook-buddypress-media.php:362
1842
+ msgid "Photo Deletion"
1843
+ msgstr "Eliminación de fotos"
1844
 
1845
+ #: plugins/mycred-hook-buddypress-media.php:380
1846
+ msgid "Video Deletion"
1847
+ msgstr "Eliminación de vídeo"
1848
 
1849
+ #: plugins/mycred-hook-buddypress-media.php:398
1850
+ msgid "Music Deletion"
1851
+ msgstr "Eliminación de música"
1852
 
1853
+ #: plugins/mycred-hook-wp-favorite-posts.php:15
1854
+ msgid "WP Favorite Posts"
1855
+ msgstr "Publicaciones favoritas de WP"
1856
 
1857
+ #: plugins/mycred-hook-wp-favorite-posts.php:16
1858
+ msgid "Awards %_plural% for users adding posts to their favorites."
1859
+ msgstr "Concede %_plural% a usuarios por añadir publicaciones a sus favoritos."
1860
 
1861
+ #: plugins/mycred-hook-wp-favorite-posts.php:218
1862
+ msgid "Adding Content to Favorites"
1863
+ msgstr "Añadiendo Contenido a Favoritos"
1864
 
1865
+ #: plugins/mycred-hook-wp-favorite-posts.php:263
1866
+ msgid "Removing Content from Favorites"
1867
+ msgstr "Quitando Contenido de Favoritos"
1868
 
1869
+ #: plugins/mycred-hook-contact-form7.php:15
1870
+ msgid "Contact Form 7 Form Submissions"
1871
+ msgstr "Envío de Formulario de contacto 7"
1872
 
1873
+ #: plugins/mycred-hook-contact-form7.php:16
1874
+ msgid "Awards %_plural% for successful form submissions (by logged in users)."
1875
  msgstr ""
1876
+ "Concede %_plural% por enviar formularios de manera satisfactoria (a usuarios "
1877
+ "que han iniciado sesión)."
1878
+
1879
+ #: plugins/mycred-hook-jetpack.php:15
1880
+ msgid "Jetpack Subscriptions"
1881
+ msgstr "Suscripciónes a Jetpack"
1882
 
1883
+ #: plugins/mycred-hook-jetpack.php:16
1884
+ msgid ""
1885
+ "Awards %_plural% for users signing up for site or comment updates using "
1886
+ "Jetpack."
1887
  msgstr ""
1888
+ "Concede %_plural% a usuarios por incribirse a las actualizaciones del sitio "
1889
+ "web o de los comentarios a través de Jetpack."
1890
 
1891
+ #: plugins/mycred-hook-jetpack.php:539
1892
+ msgid "Site Subscriptions"
1893
+ msgstr "Suscripciónes al Sitio Web"
 
1894
 
1895
+ #: plugins/mycred-hook-jetpack.php:557
1896
+ msgid "Comment Subscriptions"
1897
+ msgstr "Suscripciónes a commentarios"
 
 
1898
 
1899
+ #: plugins/mycred-hook-bbPress.php:16
1900
+ msgid "Awards %_plural% for bbPress actions."
1901
+ msgstr "Concede %_plural% por acciones en bbPress."
 
 
 
1902
 
1903
+ #: plugins/mycred-hook-bbPress.php:433
1904
+ msgid "New Forums"
1905
+ msgstr "Nuevos foros"
1906
 
1907
+ #: plugins/mycred-hook-bbPress.php:457
1908
+ msgid "Deleting Forums"
1909
+ msgstr "Eliminación de foros"
1910
 
1911
+ #: plugins/mycred-hook-bbPress.php:501
1912
+ msgid "Forum authors can receive %_plural% for creating new topics."
1913
+ msgstr "Los autores del foro pueden recibir %_plural% por crear nuevos temas."
 
1914
 
1915
+ #: plugins/mycred-hook-bbPress.php:526
1916
+ msgid "Adding Topic to Favorites"
1917
+ msgstr "Agregando Tema a Favoritos"
 
 
1918
 
1919
+ #: plugins/mycred-hook-bbPress.php:576
1920
+ msgid "Topic authors can receive %_plural% for replying to their own Topic."
 
1921
  msgstr ""
1922
+ "Los autores de los temas pueden recibir% _plural% por responder a su propio "
1923
+ "tema."
1924
 
1925
+ #: plugins/mycred-hook-bbPress.php:583
1926
+ msgid "Deleted Reply"
1927
+ msgstr "Respuesta eliminada"
 
1928
 
1929
+ #: plugins/mycred-hook-bbPress.php:605
1930
+ msgid "Show users %_plural% balance in replies"
1931
+ msgstr "Mostrar saldo de %_plural% de los usuarios en las respuestas"
 
 
1932
 
1933
+ #: plugins/mycred-hook-bbPress.php:608
1934
+ msgid "Show users %_plural% balance in their bbPress profiles"
1935
+ msgstr "Muestra el saldo de %_plural% de los usuarios en sus perfiles bbPress"
 
 
1936
 
1937
+ #: plugins/mycred-hook-woocommerce.php:91
1938
+ #: plugins/mycred-hook-woocommerce.php:157
1939
+ msgid "Reward with %plural%"
1940
+ msgstr "Premiar con %plural%"
1941
 
1942
+ #: plugins/mycred-hook-woocommerce.php:158
1943
+ msgid "Leave empty for no rewards"
1944
+ msgstr "Dejar en blanco para no ofrecer recompensas"
 
 
 
 
 
 
 
 
1945
 
1946
+ #: plugins/mycred-hook-woocommerce.php:388
1947
+ msgid "WooCommerce Product Reviews"
1948
+ msgstr "Opiniones del Producto de WooCommerce"
 
 
 
 
 
 
 
 
1949
 
1950
+ #: plugins/mycred-hook-woocommerce.php:389
1951
  msgid ""
1952
+ "Awards %_plural% for users leaving reviews on your WooCommerce products."
1953
  msgstr ""
1954
+ "Concede %_plural% a usuarios por escribir reseñas sobre tus productos "
1955
+ "WooCommerce."
1956
 
1957
+ #: plugins/mycred-hook-badgeOS.php:15
1958
+ msgid "BadgeOS"
1959
+ msgstr "BadgeOS"
 
1960
 
1961
+ #: plugins/mycred-hook-badgeOS.php:16
1962
+ msgid ""
1963
+ "Default settings for each BadgeOS Achievement type. These settings may be "
1964
+ "overridden for individual achievement type."
1965
  msgstr ""
1966
+ "Configuración predetermindada para cada clase de Logro BadgeOS. Estos "
1967
+ "ajustes pueden ser anulados para tipos de logro individual."
1968
 
1969
+ #: plugins/mycred-hook-badgeOS.php:124
1970
+ #, php-format
1971
+ msgid ""
1972
+ "Please setup your <a href=\"%s\">default settings</a> before using this "
1973
+ "feature."
1974
  msgstr ""
1975
+ "Por favor configura tus <a href=\"%s\">ajustes predeterminados</a> antes de "
1976
+ "usar esta función."
1977
 
1978
+ #: plugins/mycred-hook-badgeOS.php:138 plugins/mycred-hook-badgeOS.php:140
1979
+ msgid "%plural% to Award"
1980
+ msgstr "%plural% a conceder"
1981
 
1982
+ #. also "Ponga cero para inhabilitar"
1983
+ #: plugins/mycred-hook-badgeOS.php:142
1984
+ msgid "Use zero to disable"
1985
+ msgstr "Utilice cero para desactivar"
1986
 
1987
+ #: plugins/mycred-hook-badgeOS.php:155
1988
+ msgid "Deduction Log Template"
1989
+ msgstr "Plantilla de Registro de deducciones"
1990
 
1991
+ #: plugins/mycred-hook-badgeOS.php:317
1992
  #, php-format
1993
+ msgid "Earning: %s"
1994
+ msgstr "Ganancia: %s"
1995
 
1996
+ #: plugins/mycred-hook-badgeOS.php:335
1997
  #, php-format
1998
+ msgid "Revoked: %s"
1999
+ msgstr "Retirado: %s"
 
2000
 
2001
+ #: includes/mycred-setup.php:50
2002
+ msgid "myCRED needs your attention."
2003
+ msgstr "myCRED necesita tu atención."
 
 
2004
 
2005
+ #: includes/mycred-setup.php:50
2006
+ msgid "Run Setup"
2007
+ msgstr "Ejecutar instalación"
2008
 
2009
+ #: includes/mycred-setup.php:63 includes/mycred-setup.php:64
2010
+ msgid "myCRED Setup"
2011
+ msgstr "Instalación de myCRED"
 
 
2012
 
2013
+ #: includes/mycred-setup.php:105
2014
+ #: addons/sell-content/myCRED-addon-sell-content.php:639
2015
  #, php-format
2016
+ msgid "%s Setup"
2017
+ msgstr "Configurar %s"
 
2018
 
2019
+ #: includes/mycred-setup.php:106
2020
  #, php-format
2021
+ msgid ""
2022
+ "Before you can begin using %s, you must setup your first point type. This "
2023
+ "includes what you want to call your points, how these points are presented "
2024
+ "and who has access to it."
2025
  msgstr ""
2026
+ "Antes de empezar a usar %s, debe configurar su primer tipo de punto. Esto "
2027
+ "incluye cómo desea llamar a sus puntos, cómo se presentan estos y quién "
2028
+ "tiene acceso a ellos."
2029
 
2030
+ #: includes/mycred-setup.php:111
2031
+ msgid "Your First Point Type"
2032
+ msgstr "Su primer tipo de punto"
 
 
2033
 
2034
+ #: includes/mycred-setup.php:127
2035
+ msgid "Advanced Settings"
2036
+ msgstr "Configuración Avanzada"
 
 
2037
 
2038
+ #: includes/mycred-setup.php:133
2039
+ msgid "Change Default Point Type Key"
2040
+ msgstr "Cambiar la clave del tipo de punto predeterminado"
 
 
2041
 
2042
+ #: includes/mycred-setup.php:135
2043
+ msgid ""
2044
+ "You can change the meta key used to store the default point type using the "
2045
+ "MYCRED_DEFAULT_TYPE_KEY constant. Copy the above code to your wp-config.php "
2046
+ "file to use."
2047
  msgstr ""
2048
+ "Puede cambiar la clave meta utilizada para almacenar el tipo de punto "
2049
+ "predeterminado mediante la constante MYCRED_DEFAULT_TYPE_KEY. Copie el "
2050
+ "código anterior en su archivo wp-config.php para usarlo."
2051
 
2052
+ #: includes/mycred-setup.php:136
2053
+ msgid ""
2054
+ "If you intend to change the default meta key, you should do so before "
2055
+ "continuing on in this setup!"
2056
  msgstr ""
2057
+ "Si estás pensando en cambiar la clave meta predeterminada, debes hacerlo "
2058
+ "antes de continuar con esta configuración."
2059
 
2060
+ #: includes/mycred-setup.php:139
2061
+ msgid "Whitelabel"
2062
+ msgstr "Etiqueta personalizada"
2063
+
2064
+ #: includes/mycred-setup.php:141
2065
+ msgid ""
2066
+ "You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
2067
+ "above code to your wp-config.php file to use."
2068
  msgstr ""
2069
+ "Puede volver a etiquetar myCRED utilizando la constante MYCRED_DEFAULT_LABEL."
2070
+ " Copie el código anterior en su archivo wp-config.php para usarlo."
2071
+
2072
+ #: includes/mycred-setup.php:149
2073
+ msgid "Create Point Type"
2074
+ msgstr "Crear tipo de punto"
2075
+
2076
+ #: includes/mycred-setup.php:149
2077
+ msgid "Hide"
2078
+ msgstr "Esconder"
2079
+
2080
+ #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
2081
+ #: addons/email-notices/myCRED-addon-email-notices.php:1445
2082
+ msgid "Advanced"
2083
+ msgstr "Avanzado"
2084
+
2085
+ #: includes/mycred-setup.php:155
2086
+ msgid "Processing ..."
2087
+ msgstr "Procesando..."
2088
 
2089
+ #: includes/mycred-setup.php:160
2090
+ msgid "Setup Complete!"
2091
+ msgstr "¡Configuración completada!"
 
 
2092
 
2093
+ #: includes/mycred-setup.php:161
2094
+ msgid "Congratulations! You are now ready to use myCRED. What's next?"
 
 
2095
  msgstr ""
2096
+ "¡Felicitaciones! Ahora está listo para usar myCRED. ¿Cuál es el siguiente "
2097
+ "paso?"
2098
 
2099
+ #: includes/mycred-setup.php:166
2100
+ msgid "Enabling Hooks"
2101
+ msgstr "Activando hooks"
 
 
2102
 
2103
+ #: includes/mycred-setup.php:167
2104
  msgid ""
2105
+ "If you intend to give your users points for interacting with your website "
2106
+ "automatically, your next step should be to enable and setup the hooks you "
2107
+ "want to use."
2108
  msgstr ""
2109
+ "Si estás pensando dar a tus usuarios puntos por interactuar con tu sitio web "
2110
+ "de forma automática, el siguiente paso debe ser habilitar y configurar los "
2111
+ "jooks que quieres utilizar."
2112
 
2113
+ #: includes/mycred-setup.php:168
2114
+ msgid "Setup Hooks"
2115
+ msgstr "Configuración de hooks"
2116
+
2117
+ #: includes/mycred-setup.php:172
2118
  msgid ""
2119
+ "If you want to use advanced features such as Transfers, Point Purchases etc. "
2120
+ "your next step should be to enable and setup your add-ons."
2121
  msgstr ""
2122
+ "Si quieres utilizar funciones avanzadas como Transferencias, Compras de "
2123
+ "puntos, etc., tu siguiente paso debería ser habilitar y configurar tus "
2124
+ "complementos."
2125
 
2126
+ #: includes/mycred-setup.php:173
2127
+ msgid "Setup Add-ons"
2128
+ msgstr "Configuración de complementos"
 
 
2129
 
2130
+ #: includes/mycred-setup.php:176
2131
+ msgid "Adjust Settings"
2132
+ msgstr "Ajustar configuración"
 
 
2133
 
2134
+ #: includes/mycred-setup.php:177
2135
+ msgid ""
2136
+ "If you need to make further changes to your settings or add new point types, "
2137
+ "you can visit your default point type's settings."
2138
  msgstr ""
2139
+ "Si necesitas realizar cambios adicionales en tu configuración o agregar "
2140
+ "nuevos tipos de punto, puedes visitar la configuración del tipo de punto "
2141
+ "predeterminado."
2142
 
2143
+ #: includes/mycred-setup.php:178
2144
+ msgid "View Settings"
2145
+ msgstr "Ver ajustes"
2146
 
2147
+ #: includes/mycred-setup.php:322
2148
+ msgid "Set to decimals to zero if you prefer to use whole numbers."
2149
+ msgstr "Pon los decimales a cero si prefieres utilizar números enteros."
2150
 
2151
+ #: includes/mycred-setup.php:394 includes/mycred-setup.php:453
2152
+ msgid "Please make sure you fill out all required fields!"
2153
+ msgstr "Asegúrate de rellenar todos los campos requeridos."
2154
 
2155
+ #: includes/mycred-remote.php:581
2156
+ msgid "This feature requires WordPress Permalinks to be setup and enabled!"
2157
  msgstr ""
2158
+ "¡Esta característica requiere que los Permalinks de Wordpress estén "
2159
+ "instalados y activados!"
2160
 
2161
+ #: includes/mycred-remote.php:585
2162
+ msgid "Click Update Settings to load the Remote API settings."
2163
  msgstr ""
2164
+ "Haga clic en Actualizar Ajustes para cargar la configuración de API remoto."
2165
 
2166
+ #: includes/mycred-remote.php:588
2167
+ msgid "Allow Remote Access"
2168
+ msgstr "Permita Acceso Remoto"
2169
 
2170
+ #: includes/mycred-remote.php:613
2171
+ msgid "Remote Access"
2172
+ msgstr "Acceso Remoto"
2173
 
2174
+ #: includes/mycred-remote.php:615 addons/buy-creds/gateways/bitpay.php:245
2175
+ msgid "API Key"
2176
+ msgstr "Clave API"
2177
 
2178
+ #: includes/mycred-remote.php:618
2179
+ msgid "Key"
2180
+ msgstr "Clave"
 
2181
 
2182
+ #: includes/mycred-remote.php:619
2183
+ msgid "16, 24 or 32 characters"
2184
+ msgstr "16, 24 o 32 caracteres"
 
 
 
 
 
 
 
 
2185
 
2186
+ #: includes/mycred-remote.php:620
2187
+ msgid "Required for this feature to work!<br />Minimum 12 characters."
2188
  msgstr ""
2189
+ "¡Necesario para que esta característica funcione!<br /> Minimo 12 caracteres."
2190
 
2191
+ #: includes/mycred-remote.php:623
2192
+ msgid "Key Length"
2193
+ msgstr "Longitud de la Clave"
2194
 
2195
+ #: includes/mycred-remote.php:628
2196
+ msgid "Generate New Key"
2197
+ msgstr "Generar nueva clave"
2198
 
2199
+ #: includes/mycred-remote.php:630
2200
+ msgid "Warning!"
2201
+ msgstr "¡Aviso!"
2202
 
2203
+ #: includes/mycred-remote.php:630
2204
+ msgid ""
2205
+ "Keep this key safe! Those you share this key with will be able to remotely "
2206
+ "deduct / add / transfer %plural%!"
2207
  msgstr ""
2208
+ "Mantén esta clave bajo estricta confidencialidad. Aquellos con quien "
2209
+ "compartas esta clave podrán restar / añadir / transferir %plural% a "
2210
+ "distancia."
2211
 
2212
+ #: includes/mycred-remote.php:632
2213
+ msgid "Incoming URI"
2214
+ msgstr "URI Entrante"
2215
 
2216
+ #: includes/mycred-remote.php:636
2217
+ msgid ""
2218
+ "The incoming call address. Remote calls made to any other URL will be "
2219
+ "ignored."
2220
  msgstr ""
2221
+ "La dirección de la llamada entrante. Se ignorarán las llamadas remotas a "
2222
+ "cualquier otra URL."
2223
 
2224
+ #: includes/mycred-remote.php:639
2225
+ msgid "Debug Mode"
2226
+ msgstr "Modo de Depuración"
2227
 
2228
+ #: includes/mycred-remote.php:642
2229
  msgid ""
2230
+ "Remember to disable when not used to prevent mischievous calls from learning "
2231
+ "about your setup!"
2232
  msgstr ""
2233
+ "Recuerda desactivarlo cuando no esté en uso para prevenir que llamadas "
2234
+ "maliciosas conozcan tu configuración!"
2235
 
2236
+ #: includes/mycred-about.php:32
2237
+ #, php-format
2238
+ msgid "Welcome to %s %s"
2239
+ msgstr "Bienvenido a %s %s"
2240
 
2241
+ #: includes/mycred-overview.php:25
2242
+ #, php-format
2243
+ msgid "%s Overview"
2244
+ msgstr "Resumen de %s"
 
2245
 
2246
+ #: includes/mycred-overview.php:83
2247
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:136
2248
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:264
2249
+ msgid "Total amount in circulation"
2250
+ msgstr "Suma total en circulación"
2251
 
2252
+ #. also, "Otorgado"
2253
+ #: includes/mycred-overview.php:86
2254
+ msgid "Awarded"
2255
+ msgstr "Concedido"
2256
 
2257
+ #: includes/mycred-overview.php:89
2258
+ msgid "Deducted"
2259
+ msgstr "Deducido"
 
 
2260
 
2261
+ #: includes/mycred-install.php:63
2262
+ msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
2263
+ msgstr "myCRED requiere WordPress 4.0 o superior. Versión detectada:"
2264
 
2265
+ #: includes/mycred-install.php:68
2266
+ msgid "myCRED requires PHP 5.3 or higher. Version detected: "
2267
+ msgstr "MyCRED requiere PHP 5.3 o superior. Versión detectada: "
2268
+
2269
+ #: includes/mycred-install.php:73
2270
+ msgid "myCRED requires SQL 5.0 or higher. Version detected: "
2271
+ msgstr "myCRED requiere SQL 5.0 o más reciente. Versión detectada: "
2272
+
2273
+ #: includes/mycred-install.php:78
2274
  msgid ""
2275
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
2276
+ "check your PHP configuration or contact your host and ask them to enable it "
2277
+ "for you!"
2278
  msgstr ""
2279
+ "La biblioteca PHP mcrypt debe estar habilitada para poder usar este plugin. "
2280
+ "Por favor, verifica tu configuración de PHP o contacta con tu servidor web y "
2281
+ "pédele que lo habiliten."
2282
 
2283
+ #: includes/mycred-install.php:83
2284
+ msgid ""
2285
+ "Sorry but your WordPress installation does not reach the minimum "
2286
+ "requirements for running myCRED. The following errors were given:"
2287
  msgstr ""
2288
+ "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
2289
+ "mínimos de mycred. Se han producido los siguientes errores:"
2290
+
2291
+ #: includes/mycred-widgets.php:19
2292
+ #, php-format
2293
+ msgid "(%s) My Balance"
2294
+ msgstr "(%s) Mi Saldo"
2295
+
2296
+ #: includes/mycred-widgets.php:22
2297
+ msgid "Show the current users balance and history."
2298
+ msgstr "Muestra el saldo y el historial de usuarios actuales."
2299
+
2300
+ #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
2301
+ #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1373
2302
+ #: addons/gateway/carts/mycred-woocommerce.php:96
2303
+ #: addons/transfer/includes/mycred-transfer-widgets.php:91
2304
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:203
2305
+ #: addons/buy-creds/gateways/bank-transfer.php:190
2306
+ #: addons/buy-creds/gateways/skrill.php:333
2307
+ msgid "Title"
2308
+ msgstr "Título"
2309
+
2310
+ #: includes/mycred-widgets.php:192
2311
+ msgid "Balance Layout"
2312
+ msgstr "Disposición del saldo"
2313
+
2314
+ #: includes/mycred-widgets.php:199
2315
+ msgid "Include history"
2316
+ msgstr "Incluir el historial"
2317
+
2318
+ #: includes/mycred-widgets.php:203
2319
+ msgid "History Title"
2320
+ msgstr "Título de Historial"
2321
+
2322
+ #. the English needs to be corrected to "Number of Entries"
2323
+ #: includes/mycred-widgets.php:207
2324
+ msgid "Number of entires"
2325
+ msgstr "Numero de Entradas"
2326
+
2327
+ #: includes/mycred-widgets.php:211 includes/mycred-widgets.php:386
2328
+ msgid "Row layout"
2329
+ msgstr "Disposición de Filas"
2330
+
2331
+ #: includes/mycred-widgets.php:218 includes/mycred-widgets.php:586
2332
+ msgid "Show message when not logged in"
2333
+ msgstr "Mostrar mensaje cuando no ha iniciado sesión"
2334
 
2335
+ #: includes/mycred-widgets.php:222 includes/mycred-widgets.php:590
2336
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:35
2337
+ msgid "Message"
2338
+ msgstr "Mensaje"
2339
 
2340
+ #: includes/mycred-widgets.php:282
2341
  #, php-format
2342
+ msgid "(%s) Leaderboard"
2343
+ msgstr "(%s) Tabla de Categorías"
 
2344
 
2345
+ #: includes/mycred-widgets.php:285
2346
+ msgid "Leaderboard based on instances or balances."
2347
+ msgstr "Categoría basada en instancias o saldos."
2348
 
2349
+ #: includes/mycred-widgets.php:373
2350
+ msgid "Based On"
2351
+ msgstr "En base a"
 
 
 
2352
 
2353
+ #: includes/mycred-widgets.php:375
2354
+ msgid ""
2355
+ "Use \"balance\" to base the leaderboard on your users current balances or "
2356
+ "use a specific reference."
2357
  msgstr ""
2358
+ "Utiliza \"saldo\" para basar la tabla de categorías en los saldos actuales "
2359
+ "de tus usuarios o utiliza una referencia especifica."
2360
 
2361
+ #: includes/mycred-widgets.php:375
2362
+ msgid "Reference Guide"
2363
+ msgstr "Guia de Referencia"
2364
 
2365
+ #: includes/mycred-widgets.php:379
2366
+ msgid "Visible to non-members"
2367
+ msgstr "Visible al público (no miembros)"
2368
 
2369
+ #: includes/mycred-widgets.php:382
2370
+ msgid "Number of users"
2371
+ msgstr "Numero de Usuarios"
2372
 
2373
+ #: includes/mycred-widgets.php:391
2374
+ msgid "Offset"
2375
+ msgstr "Offset"
2376
 
2377
+ #: includes/mycred-widgets.php:393
2378
+ msgid "Optional offset of order. Use zero to return the first in the list."
2379
  msgstr ""
2380
+ "Opcional desplazamiento (offset) del pedido. Utilice cero para devolver el "
2381
+ "primero de la lista."
2382
 
2383
+ #: includes/mycred-widgets.php:396
2384
+ msgid "Order"
2385
+ msgstr "Pedido"
2386
 
2387
+ #: includes/mycred-widgets.php:401 includes/classes/class.query-log.php:1081
2388
+ msgid "Ascending"
2389
+ msgstr "Ascendente"
2390
 
2391
+ #: includes/mycred-widgets.php:402 includes/classes/class.query-log.php:1081
2392
+ msgid "Descending"
2393
+ msgstr "Descendente"
 
 
2394
 
2395
+ #: includes/mycred-widgets.php:415
2396
+ msgid "Append current users position"
2397
+ msgstr "Adjunta la posición actual de los usuarios"
2398
 
2399
+ #: includes/mycred-widgets.php:416
2400
+ msgid ""
2401
+ "If the current user is not in this leaderboard, you can select to append "
2402
+ "them at the end with their current position."
2403
+ msgstr ""
2404
+ "Si el usuario actual no esta en esta tabla de categoría, puedes agregarlos "
2405
+ "al final con su posición actual."
2406
 
2407
+ #: includes/mycred-widgets.php:419
2408
+ msgid "Timeframe"
2409
+ msgstr "Calendario"
2410
 
2411
+ #: includes/mycred-widgets.php:421
2412
+ msgid ""
2413
+ "Option to limit the leaderboard based on a specific timeframe. Leave empty "
2414
+ "if not used."
2415
+ msgstr ""
2416
+ "Opción para limitar la categoría basada en un calendario específico. Dejar "
2417
+ "en blanco si no se usa."
2418
 
2419
+ #: includes/mycred-widgets.php:469
2420
  #, php-format
2421
+ msgid "(%s) Wallet"
2422
+ msgstr "(%s) Cartera"
2423
 
2424
+ #: includes/mycred-widgets.php:472
2425
+ msgid "Shows multiple balances."
2426
+ msgstr "Muestra varios saldos."
2427
 
2428
+ #: includes/mycred-widgets.php:579
2429
+ msgid "Row Layout"
2430
+ msgstr "Disposición de Filas"
 
 
 
 
 
 
2431
 
2432
+ #: includes/mycred-functions.php:85
2433
+ msgid "Point"
2434
+ msgstr "Punto"
2435
 
2436
+ #: includes/mycred-functions.php:86
2437
+ msgid "Points"
2438
+ msgstr "Puntos"
2439
 
2440
+ #: includes/mycred-functions.php:472
2441
+ msgid "Deleted"
2442
+ msgstr "Borrado"
 
2443
 
2444
+ #: includes/mycred-functions.php:613
2445
+ msgid "Deleted Item"
2446
+ msgstr "Artículo Borrado"
2447
 
2448
+ #: includes/mycred-functions.php:677
2449
+ #: addons/email-notices/myCRED-addon-email-notices.php:864
2450
+ #: addons/gateway/carts/mycred-wpecommerce.php:370
2451
+ msgid "General"
2452
+ msgstr "General"
2453
 
2454
+ #: includes/mycred-functions.php:684
2455
+ msgid "User Related"
2456
+ msgstr "Relacionado con el Usuario"
 
 
2457
 
2458
+ #: includes/mycred-functions.php:691
2459
+ msgid "Post Related"
2460
+ msgstr "Relacionado con la publicación"
 
 
 
 
 
2461
 
2462
+ #: includes/mycred-functions.php:698
2463
+ msgid "Comment Related"
2464
+ msgstr "Relacionado con el Comentario"
 
 
 
 
2465
 
2466
+ #: includes/mycred-functions.php:705
2467
+ msgid "Widget Related"
2468
+ msgstr "Relacionado con el Widget"
 
 
 
 
2469
 
2470
+ #: includes/mycred-functions.php:712
2471
+ msgid "Amount Related"
2472
+ msgstr "Relacionado con la Cantidad"
2473
 
2474
+ #: includes/mycred-functions.php:719
2475
+ msgid "Video Related"
2476
+ msgstr "Relacionado con el Video"
 
2477
 
2478
+ #: includes/mycred-functions.php:730
2479
+ msgid "and"
2480
+ msgstr "y"
2481
 
2482
+ #: includes/mycred-functions.php:732
2483
+ msgid "Available Template Tags:"
2484
+ msgstr "Etiquetas de Plantilla Disponibles:"
2485
 
2486
+ #: includes/mycred-functions.php:2790
2487
+ msgid "in total"
2488
+ msgstr "en total"
2489
 
2490
+ #: includes/mycred-functions.php:2792
2491
+ msgid "per day"
2492
+ msgstr "por día"
 
 
 
 
 
 
 
 
 
2493
 
2494
+ #: includes/mycred-functions.php:2795
2495
+ msgid "per week"
2496
+ msgstr "por semana"
 
2497
 
2498
+ #: includes/mycred-functions.php:2798
2499
+ msgid "per month"
2500
+ msgstr "por mes"
 
2501
 
2502
+ #: includes/mycred-functions.php:2800 includes/mycred-functions.php:2806
2503
+ #, php-format
2504
+ msgid "Maximum once"
2505
+ msgid_plural "Maximum %d times"
2506
+ msgstr[0] "Máximo una vez"
2507
+ msgstr[1] "Máximo %d veces"
2508
 
2509
+ #: includes/mycred-functions.php:2828
2510
+ #, php-format
2511
+ msgctxt "e.g. 5 th"
2512
+ msgid "%d th"
2513
+ msgstr "%dº"
 
 
2514
 
2515
+ #: includes/mycred-functions.php:2832
2516
+ #, php-format
2517
+ msgctxt "e.g. 1 st"
2518
+ msgid "%d st"
2519
+ msgstr "%dº"
2520
 
2521
+ #: includes/mycred-functions.php:2833
2522
+ #, php-format
2523
+ msgctxt "e.g. 2 nd"
2524
+ msgid "%d nd"
2525
+ msgstr "%dº"
2526
 
2527
+ #: includes/mycred-functions.php:2834
2528
+ #, php-format
2529
+ msgctxt "e.g. 3 rd"
2530
+ msgid "%d rd"
2531
+ msgstr "%dº"
2532
 
2533
+ #: includes/importers/mycred-cubepoints.php:85
2534
+ msgid "Could not find a CubePoints installation."
2535
+ msgstr "No se pudo encontrar una instalación de CubePoints."
2536
 
2537
+ #: includes/importers/mycred-cubepoints.php:282
2538
+ msgid "No balances were imported."
2539
+ msgstr "No se importó ningú saldo."
 
 
 
 
 
 
 
 
2540
 
2541
+ #: includes/importers/mycred-cubepoints.php:282
2542
+ msgid "No log entries were imported!"
2543
+ msgstr "¡No se importo ninguna entrada de registro!"
 
 
 
2544
 
2545
+ #: includes/importers/mycred-cubepoints.php:288
2546
+ #: includes/importers/mycred-balances.php:229
2547
+ #, php-format
2548
+ msgid ""
2549
+ "Import complete - A total of <strong>%d</strong> balances were successfully "
2550
+ "imported. <strong>%d</strong> was skipped."
2551
+ msgstr ""
2552
+ "Importación finalizada - En total, <strong>%d</strong> saldos fueron "
2553
+ "importados con éxito. Se omitieron <strong>%d</strong>."
2554
 
2555
+ #: includes/importers/mycred-cubepoints.php:289
2556
+ #: includes/importers/mycred-balances.php:230
2557
+ msgid "View Users"
2558
+ msgstr "Ver usuarios"
2559
 
2560
+ #: includes/importers/mycred-cubepoints.php:305
2561
+ msgid "Import CubePoints"
2562
+ msgstr "Importar CubePoints"
 
 
2563
 
2564
+ #: includes/importers/mycred-cubepoints.php:340
2565
+ #: includes/importers/mycred-cubepoints.php:364
2566
+ #: includes/importers/mycred-balances.php:323
2567
+ #: includes/importers/mycred-log-entries.php:308
2568
+ msgid "Import"
2569
+ msgstr "Importar"
2570
 
2571
+ #: includes/importers/mycred-cubepoints.php:344
2572
+ msgid "Select what to import"
2573
+ msgstr "Elige lo que deseas importar"
 
2574
 
2575
+ #: includes/importers/mycred-cubepoints.php:345
2576
+ msgid "Log Entries Only"
2577
+ msgstr "Solo Entradas de Registro"
2578
 
2579
+ #: includes/importers/mycred-cubepoints.php:346
2580
+ msgid "CubePoints Balances Only"
2581
+ msgstr "Solo saldos de CubePoints"
 
 
 
2582
 
2583
+ #: includes/importers/mycred-cubepoints.php:347
2584
+ msgid "Log Entries and Balances"
2585
+ msgstr "Entradas de Registro y Saldos"
 
 
2586
 
2587
+ #: includes/importers/mycred-balances.php:117
2588
+ #: includes/importers/mycred-balances.php:144
2589
+ #: includes/importers/mycred-log-entries.php:117
2590
+ #: includes/importers/mycred-log-entries.php:142
2591
+ msgid "The file does not exist or could not be read."
2592
+ msgstr "El archivo no existe o no se pudo leer."
2593
 
2594
+ #: includes/importers/mycred-balances.php:220
2595
+ #: includes/importers/mycred-log-entries.php:204
2596
+ msgid ""
2597
+ "Invalid CSV file. Please consult the documentation for further assistance."
2598
+ msgstr ""
2599
+ "Archivo CSV no válido. Consulte la documentación para obtener más ayuda."
2600
 
2601
+ #: includes/importers/mycred-balances.php:245
2602
+ #, php-format
2603
+ msgid "Import Balances %s"
2604
+ msgstr "Importar saldos %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
2605
 
2606
+ #: includes/importers/mycred-balances.php:284
2607
+ #: includes/importers/mycred-log-entries.php:280
2608
+ msgid "Choose a file from your computer:"
2609
+ msgstr "Elige un archivo de tu ordenador:"
2610
 
2611
+ #: includes/importers/mycred-balances.php:290
2612
+ #: includes/importers/mycred-log-entries.php:286
2613
+ #, php-format
2614
+ msgid "Maximum size: %s"
2615
+ msgstr "Tamaño Máximo: %s"
2616
 
2617
+ #: includes/importers/mycred-balances.php:295
2618
+ #: includes/importers/mycred-log-entries.php:291
2619
+ msgid "OR enter path to file:"
2620
+ msgstr "O introduce la ruta del archivo:"
 
 
 
2621
 
2622
+ #: includes/importers/mycred-balances.php:303
2623
+ #: includes/importers/mycred-log-entries.php:299
2624
+ msgid "Delimiter"
2625
+ msgstr "Delimitador"
2626
 
2627
+ #: includes/importers/mycred-balances.php:311
2628
+ msgid "Method"
2629
+ msgstr "Método"
2630
 
2631
+ #: includes/importers/mycred-balances.php:315
2632
+ msgid "Replace current balances with the amount in this CSV file"
2633
+ msgstr "Sustituir los balances actuales con la cantidad de este archivo CSV"
2634
+
2635
+ #: includes/importers/mycred-balances.php:316
2636
+ msgid "Adjust current balances according to the amount in this CSV file"
2637
  msgstr ""
2638
+ "Ajustar los balances actuales de acuerdo a la cantidad de este archivo CSV"
 
2639
 
2640
+ #: includes/importers/mycred-log-entries.php:213
2641
+ #, php-format
2642
  msgid ""
2643
+ "Import complete - A total of <strong>%d</strong> log entries were "
2644
+ "successfully imported. <strong>%d</strong> was skipped."
2645
  msgstr ""
2646
+ "Importación finalizada: un total de <strong>% d</strong> entradas de "
2647
+ "registro se han importado correctamente. Se omitieron <strong>%d</strong>."
2648
 
2649
+ #: includes/importers/mycred-log-entries.php:214
2650
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:100
2651
+ msgid "View Log"
2652
+ msgstr "Ver Registro"
 
2653
 
2654
+ #: includes/importers/mycred-log-entries.php:239
2655
+ #, php-format
2656
+ msgid "Import Log Entries %s"
2657
+ msgstr "Importar entradas de registro %s"
2658
 
2659
+ #: includes/shortcodes/mycred_exchange.php:27
2660
+ #: includes/shortcodes/mycred_hook_table.php:24
2661
+ msgid "Point type not found."
2662
+ msgstr "Tipo de punto no encontrado."
2663
 
2664
+ #: includes/shortcodes/mycred_exchange.php:33
2665
+ #: includes/shortcodes/mycred_exchange.php:41
2666
+ #: includes/shortcodes/mycred_exchange.php:136
2667
+ #: includes/shortcodes/mycred_exchange.php:156
2668
  #, php-format
2669
+ msgid "You are excluded from using %s."
2670
+ msgstr "Está exluido del uso de %s."
2671
 
2672
+ #: includes/shortcodes/mycred_exchange.php:37
2673
+ #: includes/shortcodes/mycred_exchange.php:146
2674
+ msgid "Your balance is too low to use this feature."
2675
+ msgstr "Tu saldo es demasiado bajo para usar esta característica."
2676
 
2677
+ #: includes/shortcodes/mycred_exchange.php:63
2678
+ #, php-format
2679
+ msgid "Your current %s balance"
2680
+ msgstr "Tu saldo %s actual"
 
 
2681
 
2682
+ #: includes/shortcodes/mycred_exchange.php:70
2683
+ #, php-format
2684
+ msgid "Minimum %s"
2685
+ msgstr "Minimo %s"
2686
 
2687
+ #: includes/shortcodes/mycred_exchange.php:76
2688
+ #, php-format
2689
+ msgid "1 %s = <span class=\"rate\">%s</span> %s"
2690
+ msgstr "1 %s = <span class=\"rate\">%s</span> %s"
2691
 
2692
+ #: includes/shortcodes/mycred_exchange.php:124
2693
+ msgid "Point types not found."
2694
+ msgstr "Tipos de puntos no encontrado."
2695
 
2696
+ #: includes/shortcodes/mycred_exchange.php:169
2697
+ #, php-format
2698
+ msgid "You must exchange at least %s!"
2699
+ msgstr "¡Debes cambiar por lo menos %s!"
2700
 
2701
+ #: includes/shortcodes/mycred_exchange.php:178
2702
+ #: addons/transfer/myCRED-addon-transfer.php:174
2703
+ msgid "Insufficient Funds. Please try a lower amount."
2704
+ msgstr "Fondos Insuficientes. Por favor intenta con una cantidad menor."
2705
 
2706
+ #: includes/shortcodes/mycred_exchange.php:191
2707
+ #, php-format
2708
+ msgid "Exchange from %s"
2709
+ msgstr "Cambiar desde %s"
2710
 
2711
+ #: includes/shortcodes/mycred_exchange.php:203
2712
+ #, php-format
2713
+ msgid "Exchange to %s"
2714
+ msgstr "Cambiar a %s"
2715
 
2716
+ #: includes/shortcodes/mycred_exchange.php:211
2717
+ #, php-format
2718
+ msgid "You have successfully exchanged %s into %s."
2719
+ msgstr "Has cambiado %s a %s con éxito."
2720
+
2721
+ #: includes/shortcodes/mycred_hook_table.php:21
2722
+ msgid "No instances found for this point type"
2723
+ msgstr "No se han encontrado instancias para este tipo de punto"
2724
+
2725
+ #: includes/shortcodes/mycred_hook_table.php:77
2726
+ msgid "Instance"
2727
+ msgstr "Instancia"
2728
+
2729
+ #: includes/shortcodes/mycred_video.php:44
2730
+ msgid "A video ID is required for this shortcode"
2731
+ msgstr "Este código corto (shortcode) precisa un ID de vídeo"
2732
+
2733
+ #: includes/classes/class.query-export.php:263
2734
+ msgid "Reference ID"
2735
+ msgstr "Identificación de referencia"
2736
 
2737
+ #: includes/classes/class.query-export.php:263
2738
+ msgid "Data"
2739
+ msgstr "Datos"
2740
 
2741
+ #: includes/classes/class.query-export.php:374
2742
+ #: includes/classes/class.query-log.php:1526
2743
+ msgid "User Missing"
2744
+ msgstr "Usuario Ausente"
2745
 
2746
+ #: includes/classes/class.query-export.php:464
2747
+ msgid "Export log entries raw"
2748
+ msgstr "Exportar entradas de registro sin formato"
 
 
 
 
2749
 
2750
+ #: includes/classes/class.query-export.php:465
2751
+ msgid "Export log entries formatted"
2752
+ msgstr "Exportar entradas de registro con formato"
2753
 
2754
+ #: includes/classes/class.query-export.php:482
2755
+ msgid "All Log Entries"
2756
+ msgstr "Todas las entradas del registro"
 
 
2757
 
2758
+ #: includes/classes/class.query-export.php:487
2759
+ msgid "Search Results"
2760
+ msgstr "Resultados de la Búsqueda"
2761
 
2762
+ #: includes/classes/class.query-export.php:492
2763
+ msgid "Users Log Entries"
2764
+ msgstr "Entradas del registro de usuarios"
 
 
 
 
2765
 
2766
+ #: includes/classes/class.query-export.php:493
2767
+ msgid "Export History"
2768
+ msgstr "Exportar historial"
 
 
2769
 
2770
+ #: includes/classes/class.query-log.php:954
2771
+ msgid "No log entries found"
2772
+ msgstr "Ninguna entrada de registro encontrada"
 
 
 
 
2773
 
2774
+ #: includes/classes/class.query-log.php:1016
2775
+ msgid "Bulk Actions"
2776
+ msgstr "Acciones en Lote"
 
 
 
 
 
2777
 
2778
+ #: includes/classes/class.query-log.php:1017
2779
+ msgid "Export Raw"
2780
+ msgstr "Exportar sin formato"
2781
 
2782
+ #: includes/classes/class.query-log.php:1018
2783
+ msgid "Export Formatted"
2784
+ msgstr "Exportar con formato"
 
 
2785
 
2786
+ #: includes/classes/class.query-log.php:1034
2787
+ msgid "Apply"
2788
+ msgstr "Aplicar"
2789
 
2790
+ #: includes/classes/class.query-log.php:1055
2791
+ msgid "Show all references"
2792
+ msgstr "Mostrar todas las referencias"
2793
 
2794
+ #: includes/classes/class.query-log.php:1072
2795
+ msgid "User ID, Username, Email or Nicename"
2796
+ msgstr "ID de usuario, nombre de usuario, correo electrónico o Alias"
2797
 
2798
+ #: includes/classes/class.query-log.php:1080
2799
+ msgid "Show in order"
2800
+ msgstr "Mostrar en Orden"
2801
 
2802
+ #: includes/classes/class.query-log.php:1101
2803
+ msgid "Filter"
2804
+ msgstr "Filtro"
 
 
 
 
2805
 
2806
+ #: includes/classes/class.query-log.php:1139
2807
+ msgid "Log entries navigation"
2808
+ msgstr "Navegación de entradas de registro"
2809
 
2810
+ #: includes/classes/class.query-log.php:1269
2811
  #, php-format
2812
+ msgid "1 entry"
2813
+ msgid_plural "%d entries"
2814
+ msgstr[0] "1 entrada"
2815
+ msgstr[1] "%d entradas"
 
 
2816
 
2817
+ #: includes/classes/class.query-log.php:1408
2818
+ #: includes/classes/class.query-log.php:1458
2819
+ msgid "Select all"
2820
+ msgstr "Seleccionar todo"
2821
 
2822
+ #: includes/classes/class.query-log.php:1518
2823
+ msgid "Select entry"
2824
+ msgstr "Seleccionar entrada"
 
2825
 
2826
+ #: includes/classes/class.query-log.php:1539
2827
+ msgid "Show more details"
2828
+ msgstr "Mostrar más detalles"
 
2829
 
2830
+ #: includes/classes/class.query-log.php:1563
2831
+ msgid "Filter by Date"
2832
+ msgstr "Filtrar por día"
 
 
 
2833
 
2834
+ #: includes/classes/class.query-log.php:1612
2835
+ msgid "Filter by User"
2836
+ msgstr "Filtrado por usuario"
 
 
 
 
 
 
 
2837
 
2838
+ #: includes/classes/class.query-log.php:1614
2839
+ msgid "Filter by ID"
2840
+ msgstr "Filtrar por ID"
 
 
 
 
2841
 
2842
+ #: includes/classes/class.query-log.php:1694
2843
+ msgid "No export options available."
2844
+ msgstr "No hay opciones para exportar."
 
 
2845
 
2846
+ #: includes/classes/class.query-log.php:1727
2847
+ #: includes/classes/class.query-log.php:1729
2848
+ msgid "Search Log"
2849
+ msgstr "Registro de búsquedas"
 
 
 
 
 
 
2850
 
2851
+ #. buscar las entradas en el registro
2852
+ #: includes/classes/class.query-log.php:1728
2853
+ msgid "search log entries"
2854
+ msgstr "buscar entradas de registro"
2855
 
2856
+ #: includes/classes/class.query-log.php:2180
2857
+ msgid "Website Registration"
2858
+ msgstr "Inscripción en el Sitio Web"
 
 
 
 
2859
 
2860
+ #: includes/classes/class.query-log.php:2181
2861
+ msgid "Website Visit"
2862
+ msgstr "Visita al Sitio Web"
 
 
 
 
 
 
 
2863
 
2864
+ #: includes/classes/class.query-log.php:2182
2865
+ msgid "Viewing Content (Member)"
2866
+ msgstr "Viendo Contenido (Miembro)"
 
 
 
 
 
2867
 
2868
+ #: includes/classes/class.query-log.php:2183
2869
+ msgid "Viewing Content (Author)"
2870
+ msgstr "Viendo Contenido (Autor)"
 
2871
 
2872
+ #: includes/classes/class.query-log.php:2184
2873
+ msgid "Logging in"
2874
+ msgstr "Accediendo"
2875
 
2876
+ #: includes/classes/class.query-log.php:2185
2877
+ msgid "Publishing Content"
2878
+ msgstr "Publicando Contenido"
2879
 
2880
+ #: includes/classes/class.query-log.php:2186
2881
+ msgid "Approved Comment"
2882
+ msgstr "Comentario Aprobado"
2883
 
2884
+ #: includes/classes/class.query-log.php:2187
2885
+ msgid "Unapproved Comment"
2886
+ msgstr "Comentario no Aprobado"
2887
 
2888
+ #: includes/classes/class.query-log.php:2188
2889
+ msgid "SPAM Comment"
2890
+ msgstr "Comentario SPAM"
2891
 
2892
+ #: includes/classes/class.query-log.php:2190
2893
+ msgid "Link Click"
2894
+ msgstr "Click al Enlace"
2895
 
2896
+ #: includes/classes/class.query-log.php:2191
2897
+ msgid "Watching Video"
2898
+ msgstr "Mirando Video"
 
2899
 
2900
+ #: includes/classes/class.query-log.php:2192
2901
+ msgid "Visitor Referral"
2902
+ msgstr "Referencia de Visitante"
2903
+
2904
+ #: includes/classes/class.query-log.php:2193
2905
+ msgid "Signup Referral"
2906
+ msgstr "Referencia de Inscripción"
2907
+
2908
+ #: includes/classes/class.query-log.php:2197
2909
+ msgid "New Profile Update"
2910
+ msgstr "Nueva actualización de perfil"
2911
 
2912
+ #: includes/classes/class.query-log.php:2198
2913
+ msgid "Profile Update Removal"
2914
+ msgstr "Eliminación de actualizaciones de perfil"
2915
 
2916
+ #: includes/classes/class.query-log.php:2199
2917
+ msgid "Avatar Upload"
2918
+ msgstr "Subir Avatar"
2919
 
2920
+ #: includes/classes/class.query-log.php:2200
2921
+ msgid "Profile Cover Upload"
2922
+ msgstr "Carga de portada del perfil"
2923
 
2924
+ #: includes/classes/class.query-log.php:2201
2925
+ msgid "New Friendship"
2926
+ msgstr "Nueva Amistad"
 
 
2927
 
2928
+ #: includes/classes/class.query-log.php:2202
2929
+ msgid "Ended Friendship"
2930
+ msgstr "Amistad Terminada"
2931
 
2932
+ #: includes/classes/class.query-log.php:2203
2933
+ msgid "New Profile Comment"
2934
+ msgstr "Nuevo Comentario de Perfil"
 
2935
 
2936
+ #: includes/classes/class.query-log.php:2204
2937
+ msgid "Profile Comment Deletion"
2938
+ msgstr "Borrar Comentario del Perfil"
 
2939
 
2940
+ #: includes/classes/class.query-log.php:2205
2941
+ msgid "Add Activity to Favorites"
2942
+ msgstr "Añadir Actividad a Favoritos"
2943
 
2944
+ #: includes/classes/class.query-log.php:2206
2945
+ msgid "Remove Activity from Favorites"
2946
+ msgstr "Eliminar actividad de Favoritos"
 
 
2947
 
2948
+ #: includes/classes/class.query-log.php:2207
2949
+ msgid "New Message"
2950
+ msgstr "Nuevo Mensaje"
2951
 
2952
+ #: includes/classes/class.query-log.php:2209
2953
+ msgid "New Group"
2954
+ msgstr "Nuevo Grupo"
 
2955
 
2956
+ #: includes/classes/class.query-log.php:2210
2957
+ msgid "Deleted Group"
2958
+ msgstr "Grupo Borrado"
 
2959
 
2960
+ #: includes/classes/class.query-log.php:2211
2961
+ msgid "New Group Forum Topic"
2962
+ msgstr "Nuevo Tema del Foro de Grupo"
 
 
 
 
 
2963
 
2964
+ #: includes/classes/class.query-log.php:2212
2965
+ msgid "Edit Group Forum Topic"
2966
+ msgstr "Editar el Tema del Foro de Grupo"
2967
 
2968
+ #: includes/classes/class.query-log.php:2213
2969
+ msgid "New Group Forum Post"
2970
+ msgstr "Nueva Entrada del Foro de Grupo"
2971
 
2972
+ #: includes/classes/class.query-log.php:2214
2973
+ msgid "Edit Group Forum Post"
2974
+ msgstr "Editar Entrada del Foro de Grupo"
 
2975
 
2976
+ #: includes/classes/class.query-log.php:2215
2977
+ msgid "Joining Group"
2978
+ msgstr "Entrando en el Grupo"
2979
 
2980
+ #: includes/classes/class.query-log.php:2216
2981
+ msgid "Leaving Group"
2982
+ msgstr "Dejando el Grupo"
 
 
 
 
 
2983
 
2984
+ #: includes/classes/class.query-log.php:2217
2985
+ msgid "New Group Avatar"
2986
+ msgstr "Nuevo Avatar del Grupo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2987
 
2988
+ #: includes/classes/class.query-log.php:2218
2989
+ msgid "New Group Cover"
2990
+ msgstr "Nueva portada del grupo"
2991
 
2992
+ #: includes/classes/class.query-log.php:2219
2993
+ msgid "New Group Comment"
2994
+ msgstr "Nuevo Comentario del Grupo"
 
2995
 
2996
+ #: includes/classes/class.query-log.php:2229
2997
+ msgid "New Link"
2998
+ msgstr "Nuevo Enlace"
2999
 
3000
+ #: includes/classes/class.query-log.php:2230
3001
+ msgid "Link Voting"
3002
+ msgstr "Votar Enlace"
 
 
3003
 
3004
+ #: includes/classes/class.query-log.php:2231
3005
+ msgid "Link Update"
3006
+ msgstr "Enlace Actualizado"
 
 
 
3007
 
3008
+ #: includes/classes/class.query-log.php:2235
3009
+ msgid "New Forum (bbPress)"
3010
+ msgstr "Nuevo Foro (bbPress)"
 
3011
 
3012
+ #: includes/classes/class.query-log.php:2236
3013
+ msgid "New Forum Topic (bbPress)"
3014
+ msgstr "Nuevo Tema de Foro (bbPress)"
 
 
 
3015
 
3016
+ #: includes/classes/class.query-log.php:2237
3017
+ msgid "Favorited Topic (bbPress)"
3018
+ msgstr "Tema Favorito (bbPress)"
 
 
 
3019
 
3020
+ #: includes/classes/class.query-log.php:2238
3021
+ msgid "New Topic Reply (bbPress)"
3022
+ msgstr "Nueva Respuesta a Tema (bbPress)"
3023
 
3024
+ #: includes/classes/class.query-log.php:2242
3025
+ msgid "Form Submission (Contact Form 7)"
3026
+ msgstr "Envío de Formulario (Formulario de contacto 7)"
 
 
 
 
3027
 
3028
+ #: includes/classes/class.query-log.php:2245
3029
+ msgid "Form Submission (Gravity Form)"
3030
+ msgstr "Envío de Formulario (formulario Gravity)"
 
3031
 
3032
+ #: includes/classes/class.query-log.php:2248
3033
+ msgid "New Forum Topic (SimplePress)"
3034
+ msgstr "Nuevo Tema de Foro (SimplePress)"
 
 
3035
 
3036
+ #: includes/classes/class.query-log.php:2249
3037
+ msgid "New Forum Post (SimplePress)"
3038
+ msgstr "Nueva Entrada de Foro (SimplePress)"
 
3039
 
3040
+ #: includes/classes/class.query-log.php:2258
3041
+ msgid "Affiliate Signup (AffiliateWP)"
3042
+ msgstr "Registro de afiliados (AfiliadoWP)"
3043
 
3044
+ #: includes/classes/class.query-log.php:2259
3045
+ msgid "Referred Visit (AffiliateWP)"
3046
+ msgstr "Visita de referencia (AfiliadoWP)"
3047
 
3048
+ #: includes/classes/class.query-log.php:2260
3049
+ msgid "Affiliate Referral (AffiliateWP)"
3050
+ msgstr "Referencia de Afiliado (AfiliadoWP)"
 
 
 
3051
 
3052
+ #: includes/classes/class.query-log.php:2261
3053
+ msgid "Referral Refund (AffiliateWP)"
3054
+ msgstr "Reembolso de Referencia (AfiliadoWP)"
3055
 
3056
+ #: includes/classes/class.query-log.php:2265
3057
+ msgid "Adding a Rating"
3058
+ msgstr "Añadiendo una valoración"
3059
 
3060
+ #: includes/classes/class.query-log.php:2266
3061
+ msgid "Receiving a Rating"
3062
+ msgstr "Recibiendo una valoración"
3063
 
3064
+ #: includes/classes/class.query-log.php:2270
3065
+ msgid "Poll Voting"
3066
+ msgstr "Votación"
3067
 
3068
+ #: includes/classes/class.query-log.php:2273
3069
+ msgid "Sending an Invite"
3070
+ msgstr "Enviando una Invitación"
 
3071
 
3072
+ #: includes/classes/class.query-log.php:2274
3073
+ msgid "Accepting an Invite"
3074
+ msgstr "Aceptando una Invitación"
3075
 
3076
+ #: includes/classes/class.query-log.php:2280
3077
+ #: addons/banking/myCRED-addon-banking.php:150
3078
+ msgid "Compound Interest"
3079
+ msgstr "Interés Acumulado"
3080
+
3081
+ #: includes/classes/class.query-log.php:2281
3082
+ msgid "Recurring Payout"
3083
+ msgstr "Pago recurrente"
3084
+
3085
+ #: includes/classes/class.query-log.php:2285
3086
+ msgid "Badge Reward"
3087
+ msgstr "Insignia de recompensa"
3088
 
3089
+ #: includes/classes/class.query-log.php:2288
3090
+ msgid "buyCRED Purchase (PayPal Standard)"
3091
+ msgstr "Compra buyCRED (PayPal Standard)"
3092
 
3093
+ #: includes/classes/class.query-log.php:2289
3094
+ msgid "buyCRED Purchase (Skrill)"
3095
+ msgstr "Compra buyCRED (Skrill)"
3096
 
3097
+ #: includes/classes/class.query-log.php:2290
3098
+ msgid "buyCRED Purchase (Zombaio)"
3099
+ msgstr "Compra buyCRED (Zombaio)"
 
3100
 
3101
+ #: includes/classes/class.query-log.php:2291
3102
+ msgid "buyCRED Purchase (NETBilling)"
3103
+ msgstr "Compra buyCRED (NETBilling)"
 
 
 
 
3104
 
3105
+ #: includes/classes/class.query-log.php:2292
3106
+ msgid "buyCRED Purchase (BitPay)"
3107
+ msgstr "Compra buyCRED (BitPay)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3108
 
3109
+ #: includes/classes/class.query-log.php:2293
3110
+ msgid "buyCRED Purchase (Bank Transfer)"
3111
+ msgstr "Compra buyCRED (Transferencia Bancaria)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3112
 
3113
+ #: includes/classes/class.query-log.php:2298
3114
+ #: addons/coupons/myCRED-addon-coupons.php:460
3115
+ msgid "Coupon Usage"
3116
+ msgstr "Uso de Cupones"
3117
 
3118
+ #: includes/classes/class.query-log.php:2302
3119
+ msgid "Store Purchase (WooCommerce)"
3120
+ msgstr "Compra de Tienda (WooCommerce)"
 
 
3121
 
3122
+ #: includes/classes/class.query-log.php:2303
3123
+ msgid "Store Reward (WooCommerce)"
3124
+ msgstr "Recompensa de tienda (WooCommerce)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3125
 
3126
+ #: includes/classes/class.query-log.php:2304
3127
+ msgid "Product Review (WooCommerce)"
3128
+ msgstr "Opinión del producto (WooCommerce)"
3129
 
3130
+ #: includes/classes/class.query-log.php:2307
3131
+ msgid "Store Purchase (MarketPress)"
3132
+ msgstr "Compra de Tienda (MarketPress)"
3133
 
3134
+ #: includes/classes/class.query-log.php:2308
3135
+ msgid "Store Reward (MarketPress)"
3136
+ msgstr "Recompensa de la tienda (MarketPress)"
 
3137
 
3138
+ #: includes/classes/class.query-log.php:2311
3139
+ msgid "Store Purchase (WP E-Commerce)"
3140
+ msgstr "Compra de Tienda (WP E-Commerce)"
3141
 
3142
+ #: includes/classes/class.query-log.php:2317
3143
+ msgid "Event Payment (Event Espresso)"
3144
+ msgstr "Pago de Evento (Event Espresso)"
3145
 
3146
+ #: includes/classes/class.query-log.php:2318
3147
+ msgid "Event Sale (Event Espresso)"
3148
+ msgstr "Venta de Evento (Event Espresso)"
3149
 
3150
+ #: includes/classes/class.query-log.php:2322
3151
+ msgid "Event Payment (Events Manager)"
3152
+ msgstr "Pago de Evento (Events Manager)"
3153
 
3154
+ #: includes/classes/class.query-log.php:2323
3155
+ msgid "Event Sale (Events Manager)"
3156
+ msgstr "Venta de Evento (Events Manager)"
 
 
 
 
3157
 
3158
+ #: includes/classes/class.query-log.php:2327
3159
+ msgid "Content Purchase"
3160
+ msgstr "Compra de contenido"
 
 
 
3161
 
3162
+ #: includes/classes/class.query-log.php:2328
3163
+ msgid "Content Sale"
3164
+ msgstr "Venta de contenido"
 
3165
 
3166
+ #: includes/classes/class.query-log.php:2332
3167
+ #: addons/transfer/myCRED-addon-transfer.php:48
3168
+ msgid "Transfer"
3169
+ msgstr "Transferir"
3170
 
3171
+ #: includes/classes/class.query-log.php:2336
3172
+ msgid "Manual Adjustment by Admin"
3173
+ msgstr "Ajuste Manual por Administrador"
3174
 
3175
+ #: addons/banking/myCRED-addon-banking.php:45
3176
+ #: addons/banking/myCRED-addon-banking.php:46
3177
+ #: addons/banking/myCRED-addon-banking.php:47
3178
+ msgid "Banking"
3179
+ msgstr "Banco"
 
 
 
 
3180
 
3181
+ #: addons/banking/myCRED-addon-banking.php:141
3182
+ msgid "Central Banking"
3183
+ msgstr "Banco Central"
 
 
3184
 
3185
+ #: addons/banking/myCRED-addon-banking.php:142
3186
+ msgid ""
3187
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
3188
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
3189
+ "deposited back into this account. If the central bank runs out of %_plural%, "
3190
+ "no %_plural% will be paid out."
3191
+ msgstr ""
3192
+ "En lugar de crear %_plural% del aire, todos los pagos se realizan a partir "
3193
+ "de una cuenta denominada \"Banco Central\". Cualquier %_plural% que un "
3194
+ "usuario gaste o pierda se deposita nuevamente en esta cuenta. Si el banco "
3195
+ "central se queda sin %_plural%, no se pagará ningún %_plural%."
3196
 
3197
+ #: addons/banking/myCRED-addon-banking.php:151
3198
+ msgid ""
3199
+ "Offer your users interest on the %_plural% they earn on your website. The "
3200
+ "interest is compounded daily."
3201
+ msgstr ""
3202
+ "Ofrece a tus usuarios un interés sobre los %_plural% que ganan en tu sitio "
3203
+ "web. El interés se acumula diariamente."
3204
 
3205
+ #: addons/banking/myCRED-addon-banking.php:159
3206
+ msgid "Recurring Payouts"
3207
+ msgstr "Pagos Recurrentes"
3208
 
3209
+ #: addons/banking/myCRED-addon-banking.php:160
3210
+ msgid "Setup mass %_singular% payouts for your users."
3211
+ msgstr "Configurar pago en masa &_singular% para tus usuarios."
3212
 
3213
+ #: addons/banking/myCRED-addon-banking.php:202
3214
+ msgid "New Recurring Payout"
3215
+ msgstr "Nuevo pago recurrente"
3216
 
3217
+ #: addons/banking/myCRED-addon-banking.php:203
3218
+ msgid "Edit Recurring Payout"
3219
+ msgstr "Editar pago recurrente"
 
 
 
 
3220
 
3221
+ #: addons/banking/myCRED-addon-banking.php:205
3222
+ msgid "Please fill out all required fields that are highlighted in red."
3223
+ msgstr ""
3224
+ "Por favor, rellena todos los campos obligatorios que están resaltados en "
3225
+ "rojo."
3226
 
3227
+ #: addons/banking/myCRED-addon-banking.php:206
3228
+ msgid "Are you sure you want to remove this schedule? This can not be undone!"
3229
  msgstr ""
3230
+ "¿Seguro que quieres eliminar esta programación? ¡Esto no se puede deshacer!"
3231
 
3232
+ #: addons/banking/myCRED-addon-banking.php:253
3233
+ #, php-format
3234
+ msgid "%s Banking"
3235
+ msgstr "%s Bancario"
3236
 
3237
+ #: addons/banking/myCRED-addon-banking.php:271
3238
+ msgid "Warning"
3239
+ msgstr "Atención"
3240
+
3241
+ #: addons/banking/myCRED-addon-banking.php:271
3242
  msgid ""
3243
+ "This banking service uses the WordPress CRON to schedule events. If the "
3244
+ "WordPress CRON is disabled, this service will not work correctly."
3245
  msgstr ""
3246
+ "Este servicio bancario utiliza CRON de WordPress para programar eventos. Si "
3247
+ "el WordPress CRON está deshabilitado, este servicio no funcionará "
3248
+ "correctamente."
3249
 
3250
+ #: addons/banking/myCRED-addon-banking.php:273
3251
+ #: addons/buy-creds/modules/buycred-module-core.php:618
3252
+ msgid "Enable"
3253
+ msgstr "Habilitar"
3254
 
3255
+ #: addons/banking/myCRED-addon-banking.php:292
3256
+ msgid "Update Changes"
3257
+ msgstr "Actualizar Cambios"
 
3258
 
3259
+ #: addons/transfer/myCRED-addon-transfer.php:41
3260
+ msgid "You do not have enough %plural% to send."
3261
+ msgstr "No tienes suficientes %plural% para enviar."
 
3262
 
3263
+ #: addons/transfer/myCRED-addon-transfer.php:42
3264
+ msgid "You have exceeded your %limit% transfer limit."
3265
+ msgstr "Has excedido tu limite de transferencia de %limit%."
3266
 
3267
+ #: addons/transfer/myCRED-addon-transfer.php:167
3268
+ msgid "Transaction completed."
3269
+ msgstr "Transacción finalizada."
3270
 
3271
+ #: addons/transfer/myCRED-addon-transfer.php:168
3272
+ msgid ""
3273
+ "Security token could not be verified. Please contact your site administrator!"
3274
+ msgstr ""
3275
+ "No se pudo verificar el 'token' (código) de seguridad. Póngase en contacto "
3276
+ "con el administrador del sitio."
3277
 
3278
+ #: addons/transfer/myCRED-addon-transfer.php:169
3279
+ #: addons/transfer/myCRED-addon-transfer.php:176
3280
+ msgid "Communications error. Please try again later."
3281
+ msgstr "Error de comunicación. Por favor inténtelo de nuevo más tarde."
3282
 
3283
+ #: addons/transfer/myCRED-addon-transfer.php:170
3284
+ msgid "Recipient not found. Please try again."
3285
+ msgstr "No se ha encontrado el destinatario. Por favor Inténtelo de nuevo."
3286
 
3287
+ #: addons/transfer/myCRED-addon-transfer.php:171
3288
+ msgid "Transaction declined by recipient."
3289
+ msgstr "Transacción rechazada por el destinatario."
 
 
3290
 
3291
+ #: addons/transfer/myCRED-addon-transfer.php:172
3292
+ msgid "Incorrect amount. Please try again."
3293
+ msgstr "Cantidad incorecta. Por favor inténtelo de nuevo."
3294
 
3295
+ #: addons/transfer/myCRED-addon-transfer.php:173
3296
  msgid ""
3297
+ "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3298
+ "this has been done!"
3299
  msgstr ""
3300
+ "Esta extensión de myCRED todavía no ha sido configurada. No se permite "
3301
+ "realizar transferencias hasta que no esté configurada."
3302
 
3303
+ #: addons/transfer/myCRED-addon-transfer.php:175
3304
+ msgid "Transfer Limit exceeded."
3305
+ msgstr "Límite de transferencia excedida."
3306
 
3307
+ #: addons/transfer/myCRED-addon-transfer.php:177
3308
+ msgid "The selected point type can not be transferred."
3309
+ msgstr "El tipo de punto seleccionado no se puede transferir."
3310
 
3311
+ #: addons/transfer/myCRED-addon-transfer.php:340
3312
+ msgid "No limits."
3313
+ msgstr "Sin limite."
3314
 
3315
+ #: addons/transfer/myCRED-addon-transfer.php:341
3316
+ msgid "Impose daily limit."
3317
+ msgstr "Imponer limite diario."
3318
 
3319
+ #: addons/transfer/myCRED-addon-transfer.php:342
3320
+ msgid "Impose weekly limit."
3321
+ msgstr "Imponer limite semanal."
3322
 
3323
+ #: addons/transfer/myCRED-addon-transfer.php:349
3324
+ msgid "User Login (user_login)"
3325
+ msgstr "Inicio de sesión Usuario (user_login)"
 
3326
 
3327
+ #: addons/transfer/myCRED-addon-transfer.php:350
3328
+ msgid "User Email (user_email)"
3329
+ msgstr "Correo Electrónico del Usuario (user_email)"
 
3330
 
3331
+ #: addons/transfer/myCRED-addon-transfer.php:355
3332
+ #: addons/buy-creds/gateways/bitpay.php:299
3333
+ msgid "Yes"
3334
+ msgstr ""
 
 
3335
 
3336
+ #: addons/transfer/myCRED-addon-transfer.php:356
3337
+ #: addons/buy-creds/gateways/bitpay.php:298
3338
+ msgid "No"
3339
+ msgstr "No"
3340
 
3341
+ #: addons/transfer/myCRED-addon-transfer.php:363
3342
+ msgid "Transfers"
3343
+ msgstr "Transferencias"
 
 
 
 
3344
 
3345
+ #: addons/transfer/myCRED-addon-transfer.php:366
3346
+ #: addons/buy-creds/modules/buycred-module-core.php:329
3347
+ msgid "Features"
3348
+ msgstr "Funciones"
3349
+
3350
+ #: addons/transfer/myCRED-addon-transfer.php:381
3351
+ msgid "Reload"
3352
+ msgstr "Recargar"
3353
+
3354
+ #: addons/transfer/myCRED-addon-transfer.php:393
3355
+ msgid "Should the page reload once a transfer has been completed?"
3356
  msgstr ""
3357
+ "¿Debería volver a cargar la página una vez que se haya completado la "
3358
+ "transferencia?"
3359
 
3360
+ #: addons/transfer/myCRED-addon-transfer.php:398
3361
+ msgid "Message Length"
3362
+ msgstr "Longitud del mensaje"
3363
 
3364
+ #: addons/transfer/myCRED-addon-transfer.php:400
3365
+ msgid ""
3366
+ "The maximum length of messages users can attach to a transfer. Use zero to "
3367
+ "disable."
3368
+ msgstr ""
3369
+ "La longitud máxima de los mensajes que los usuarios pueden adjuntar a una "
3370
+ "transferencia. Utilice cero para deshabilitar."
3371
 
3372
+ #: addons/transfer/myCRED-addon-transfer.php:405
3373
+ msgid "Autofill Recipient"
3374
+ msgstr "Autocompletar Destinatario"
3375
 
3376
+ #: addons/transfer/myCRED-addon-transfer.php:417
3377
+ msgid "Select what user details recipients should be autofilled by."
3378
+ msgstr "Selecciona qué detalles del destinatario se deben autocompletar."
3379
 
3380
+ #: addons/transfer/myCRED-addon-transfer.php:424
3381
+ #: addons/coupons/myCRED-addon-coupons.php:252
3382
+ #: addons/banking/services/mycred-service-payouts.php:599
3383
+ #: addons/banking/services/mycred-service-payouts.php:760
3384
+ msgid "Limits"
3385
+ msgstr "Limites"
3386
 
3387
+ #: addons/transfer/myCRED-addon-transfer.php:443
3388
+ msgid "Limit Amount"
3389
+ msgstr "Limitar la Cantidad"
3390
 
3391
+ #: addons/transfer/myCRED-addon-transfer.php:449
3392
+ msgid "Default Button Label"
3393
+ msgstr "Etiqueta de botón predeterminado"
 
 
3394
 
3395
+ #: addons/transfer/myCRED-addon-transfer.php:451
3396
+ msgid ""
3397
+ "The default transfer button label. You can override this in the shortcode or "
3398
+ "widget if needed."
3399
  msgstr ""
3400
+ "La etiqueta del botón de transferencia predeterminada. Puede anular esto en "
3401
+ "el código abreviado o widget si es necesario."
3402
 
3403
+ #: addons/transfer/myCRED-addon-transfer.php:456
3404
+ #: addons/sell-content/myCRED-addon-sell-content.php:685
3405
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:641
3406
+ msgid "Log Templates"
3407
+ msgstr "Plantillas de Registro"
3408
 
3409
+ #: addons/transfer/myCRED-addon-transfer.php:460
3410
+ msgid "Log template for sending"
3411
+ msgstr "Plantilla de registros para enviar"
3412
 
3413
+ #: addons/transfer/myCRED-addon-transfer.php:467
3414
+ msgid "Log template for receiving"
3415
+ msgstr "Plantilla de registros para recibir"
3416
 
3417
+ #: addons/transfer/myCRED-addon-transfer.php:474
3418
+ msgid "Warning Messages"
3419
+ msgstr "Mensajes de advertencia"
3420
 
3421
+ #: addons/transfer/myCRED-addon-transfer.php:478
3422
+ msgid "Insufficient Funds Warning"
3423
+ msgstr "Aviso de Fondos Insuficientes"
3424
 
3425
+ #: addons/transfer/myCRED-addon-transfer.php:480
3426
+ msgid "Message to show the user if they try to send more then they can afford."
3427
  msgstr ""
3428
+ "Mensaje que se muestra al usuario cuando intenta enviar más de lo que se "
3429
+ "puede permitir."
3430
 
3431
+ #: addons/transfer/myCRED-addon-transfer.php:485
3432
+ msgid "Limit Reached Warning"
3433
+ msgstr "Aviso de límite alcanzado"
3434
 
3435
+ #: addons/transfer/myCRED-addon-transfer.php:487
3436
+ msgid ""
3437
+ "Message to show the user once they reach their transfer limit. Ignored if no "
3438
+ "limits are enforced."
3439
+ msgstr ""
3440
+ "Mensaje que se muestra al usuario cuando alcanzan su límite de transferencia."
3441
+ " Se ignora si no se aplican límites."
3442
 
3443
+ #: addons/transfer/myCRED-addon-transfer.php:493
3444
+ #: addons/sell-content/myCRED-addon-sell-content.php:762
3445
+ msgid "Visitors Template"
3446
+ msgstr "Plantilla de visitantes"
3447
 
3448
+ #: addons/transfer/myCRED-addon-transfer.php:494
3449
  msgid ""
3450
+ "The template to use when the transfer shortcode or widget is viewed by "
3451
+ "someone who is not logged in."
3452
  msgstr ""
3453
+ "La plantilla para utilizar cuando el código de transferencia o el widget es "
3454
+ "visto por alguien que no ha iniciado sesión."
3455
 
3456
+ #: addons/transfer/myCRED-addon-transfer.php:507
3457
+ msgid "Limit Template"
3458
+ msgstr "Plantilla de límite"
3459
 
3460
+ #: addons/transfer/myCRED-addon-transfer.php:508
3461
  msgid ""
3462
+ "The template to use if you select to show the transfer limit in the transfer "
3463
+ "shortcode or widget. Ignored if there is no limit enforced."
3464
  msgstr ""
3465
+ "La plantilla para usar si eliges mostrar el límite de transferencia en el "
3466
+ "código corto o widget de transferencia. Se ignora si no se aplica un límite."
3467
 
3468
+ #: addons/transfer/myCRED-addon-transfer.php:523
3469
+ msgid "Balance Template"
3470
+ msgstr "Plantilla de saldo"
3471
 
3472
+ #: addons/transfer/myCRED-addon-transfer.php:524
3473
  msgid ""
3474
+ "The template to use if you select to show the users balance in the transfer "
3475
+ "shortcode or widget. Ignored if balances are not shown."
3476
  msgstr ""
3477
+ "La plantilla que se utilizará si eliges mostrar el saldo de los usuarios en "
3478
+ "el código corto o widget de transferencia. Se ignora si no se muestran las "
3479
+ "saldos."
3480
 
3481
+ #: addons/ranks/myCRED-addon-ranks.php:216
3482
  #, php-format
3483
+ msgid "Ranks for %s"
3484
+ msgstr "Categorías de %s"
3485
 
3486
+ #: addons/ranks/myCRED-addon-ranks.php:218
3487
+ #: addons/ranks/myCRED-addon-ranks.php:227
3488
+ #: addons/ranks/myCRED-addon-ranks.php:237
3489
+ #: addons/ranks/myCRED-addon-ranks.php:339
3490
+ #: addons/ranks/myCRED-addon-ranks.php:340
3491
+ #: addons/ranks/myCRED-addon-ranks.php:724
3492
+ #: addons/ranks/myCRED-addon-ranks.php:1363
3493
+ #: addons/ranks/myCRED-addon-ranks.php:1658
3494
+ msgid "Ranks"
3495
+ msgstr "Categorías"
3496
 
3497
+ #: addons/ranks/myCRED-addon-ranks.php:222
3498
+ #: addons/ranks/myCRED-addon-ranks.php:724
3499
+ #: addons/ranks/myCRED-addon-ranks.php:873
3500
+ #: addons/ranks/myCRED-addon-ranks.php:876
3501
+ #: addons/ranks/myCRED-addon-ranks.php:904
3502
+ msgid "Rank"
3503
+ msgstr "Categoría"
3504
 
3505
+ #: addons/ranks/myCRED-addon-ranks.php:223
3506
+ #: addons/ranks/myCRED-addon-ranks.php:224
3507
+ #: addons/email-notices/myCRED-addon-email-notices.php:130
3508
+ #: addons/email-notices/myCRED-addon-email-notices.php:131
3509
+ #: addons/badges/myCRED-addon-badges.php:150
3510
+ #: addons/badges/myCRED-addon-badges.php:151
3511
+ #: addons/banking/services/mycred-service-payouts.php:896
3512
+ msgid "Add New"
3513
+ msgstr "Añadir Nuevo"
3514
 
3515
+ #: addons/ranks/myCRED-addon-ranks.php:225
3516
+ msgid "Edit Rank"
3517
+ msgstr "Editar Categoría"
3518
 
3519
+ #: addons/ranks/myCRED-addon-ranks.php:226
3520
+ msgid "New Rank"
3521
+ msgstr "Nueva Categoría"
3522
 
3523
+ #: addons/ranks/myCRED-addon-ranks.php:228
3524
+ msgid "View Rank"
3525
+ msgstr "Ver Categoría"
 
 
 
 
 
 
3526
 
3527
+ #: addons/ranks/myCRED-addon-ranks.php:229
3528
+ msgid "Search Ranks"
3529
+ msgstr "Búsqueda de Categorías"
 
 
 
 
3530
 
3531
+ #: addons/ranks/myCRED-addon-ranks.php:230
3532
+ #: addons/ranks/myCRED-addon-ranks.php:1379
3533
+ msgid "Rank Logo"
3534
+ msgstr "Logo de categoría"
3535
 
3536
+ #: addons/ranks/myCRED-addon-ranks.php:231
3537
+ msgid "Set rank logo"
3538
+ msgstr "Establecer el logo de categoría"
 
 
 
 
 
 
3539
 
3540
+ #: addons/ranks/myCRED-addon-ranks.php:232
3541
+ msgid "Remove rank logo"
3542
+ msgstr "Eliminar el logo de categoría"
3543
 
3544
+ #: addons/ranks/myCRED-addon-ranks.php:233
3545
+ msgid "Use as Logo"
3546
+ msgstr "Utilizar como logo"
3547
 
3548
+ #: addons/ranks/myCRED-addon-ranks.php:234
3549
+ #: addons/ranks/myCRED-addon-ranks.php:1290
3550
+ msgid "No ranks found"
3551
+ msgstr "Ninguna categoría encontrada"
3552
 
3553
+ #: addons/ranks/myCRED-addon-ranks.php:235
3554
+ msgid "No ranks found in Trash"
3555
+ msgstr "Ninguna categoría encontrada en la papelera"
3556
 
3557
+ #: addons/ranks/myCRED-addon-ranks.php:283
3558
+ #: addons/ranks/myCRED-addon-ranks.php:284
3559
+ #: addons/ranks/myCRED-addon-ranks.php:285
3560
+ #: addons/ranks/myCRED-addon-ranks.php:286
3561
+ #: addons/ranks/myCRED-addon-ranks.php:287
3562
+ #: addons/ranks/myCRED-addon-ranks.php:290
3563
+ #: addons/ranks/myCRED-addon-ranks.php:291
3564
+ msgid "Rank Updated."
3565
+ msgstr "Categoría Actualizada."
3566
 
3567
+ #: addons/ranks/myCRED-addon-ranks.php:288
3568
+ msgid "Rank Enabled."
3569
+ msgstr "Categoría habilitada."
 
3570
 
3571
+ #: addons/ranks/myCRED-addon-ranks.php:289
3572
+ msgid "Rank Saved."
3573
+ msgstr "Categoría guardada."
3574
+
3575
+ #: addons/ranks/myCRED-addon-ranks.php:481
3576
  #, php-format
3577
+ msgid "Completed - Total of %d users effected"
3578
+ msgstr "Completado - Un total de %d usuarios"
3579
 
3580
+ #: addons/ranks/myCRED-addon-ranks.php:895
3581
+ msgid "No ranks exists."
3582
+ msgstr "No hay categorías."
3583
 
3584
+ #: addons/ranks/myCRED-addon-ranks.php:987
3585
+ msgid "Warning! All ranks will be deleted! This can not be undone!"
 
 
3586
  msgstr ""
3587
+ "Aviso: se borrarán todas las categorías. ¡Esta acción no se puede deshacer!"
 
3588
 
3589
+ #: addons/ranks/myCRED-addon-ranks.php:988
3590
+ msgid "Are you sure you want to re-assign user ranks?"
3591
+ msgstr "¿Estás seguro de que quieres reasignar categorías de usuarios?"
3592
 
3593
+ #: addons/ranks/myCRED-addon-ranks.php:1077
3594
+ #: addons/ranks/myCRED-addon-ranks.php:1178
3595
+ msgid "Rank Title"
3596
+ msgstr "Título de la Categoría"
3597
 
3598
+ #: addons/ranks/myCRED-addon-ranks.php:1078
3599
+ msgid "Logo"
3600
+ msgstr "Logo"
3601
 
3602
+ #: addons/ranks/myCRED-addon-ranks.php:1079
3603
+ #: addons/badges/myCRED-addon-badges.php:853
3604
+ #: addons/badges/myCRED-addon-badges.php:854
3605
+ msgid "Requirement"
3606
+ msgstr "Requisito"
3607
 
3608
+ #: addons/ranks/myCRED-addon-ranks.php:1105
3609
+ msgid "No Logo Set"
3610
+ msgstr "No hay ningún logo seleccionado"
 
 
3611
 
3612
+ #: addons/ranks/myCRED-addon-ranks.php:1120
3613
+ #: addons/ranks/myCRED-addon-ranks.php:1125
3614
+ msgid "Any Value"
3615
+ msgstr "Cualquier Valor"
3616
 
3617
+ #: addons/ranks/myCRED-addon-ranks.php:1122
3618
+ #: addons/buy-creds/modules/buycred-module-core.php:345
3619
+ msgid "Minimum %plural%"
3620
+ msgstr "Minimo %_plural%"
3621
 
3622
+ #: addons/ranks/myCRED-addon-ranks.php:1127
3623
+ msgid "Maximum %plural%"
3624
+ msgstr "Maximo %plural%"
3625
 
3626
+ #: addons/ranks/myCRED-addon-ranks.php:1193
3627
+ msgid "Rank Setup"
3628
+ msgstr "Configuración de categorías"
3629
 
3630
+ #: addons/ranks/myCRED-addon-ranks.php:1234
3631
+ msgid "Minimum Balance Requirement"
3632
+ msgstr "Requisito de saldo mínimo"
 
 
 
 
3633
 
3634
+ #: addons/ranks/myCRED-addon-ranks.php:1240
3635
+ msgid "Maximum Balance Requirement"
3636
+ msgstr "Requisito de saldo máximo"
 
3637
 
3638
+ #: addons/ranks/myCRED-addon-ranks.php:1279
3639
+ #: addons/ranks/myCRED-addon-ranks.php:1280
3640
+ msgid "Not Set"
3641
+ msgstr "No Configurado"
3642
 
3643
+ #: addons/ranks/myCRED-addon-ranks.php:1370
3644
+ msgid "Rank Features"
3645
+ msgstr "Caracteristicas de las categorías"
3646
 
3647
+ #: addons/ranks/myCRED-addon-ranks.php:1376
3648
+ msgid "%plural% requirement"
3649
+ msgstr "%plural% requisito"
3650
 
3651
+ #: addons/ranks/myCRED-addon-ranks.php:1382
3652
+ msgid "Content"
3653
+ msgstr "Contenido"
3654
+
3655
+ #: addons/ranks/myCRED-addon-ranks.php:1385
3656
+ msgid "Excerpt"
3657
+ msgstr "Extracto"
3658
+
3659
+ #: addons/ranks/myCRED-addon-ranks.php:1388
3660
+ msgid "Comments"
3661
+ msgstr "Comentarios"
3662
 
3663
+ #: addons/ranks/myCRED-addon-ranks.php:1391
3664
+ msgid "Page Attributes"
3665
+ msgstr "Atributos de Página"
3666
 
3667
+ #: addons/ranks/myCRED-addon-ranks.php:1394
3668
+ msgid "Custom Fields"
3669
+ msgstr "Campo Personalizado"
 
 
3670
 
3671
+ #: addons/ranks/myCRED-addon-ranks.php:1399
3672
+ msgid "Rank Post Type"
3673
+ msgstr "Tipo de entrada de categoría"
3674
 
3675
+ #: addons/ranks/myCRED-addon-ranks.php:1402
3676
+ msgid "Make Ranks Public"
3677
+ msgstr "Hacer públicas las categorías"
3678
 
3679
+ #: addons/ranks/myCRED-addon-ranks.php:1406
3680
+ msgid "Rank SLUG"
3681
+ msgstr "SLUG de categoría"
3682
 
3683
+ #: addons/ranks/myCRED-addon-ranks.php:1408
3684
+ msgid ""
3685
+ "If you have selected to make Ranks public, you can select what rank archive "
3686
+ "URL slug you want to use. Ignored if Ranks are not set to be public."
3687
+ msgstr ""
3688
+ "Si has elegido para que las categorías sean públicas, puedes seleccionar qué "
3689
+ "archivo de lista de URL quieres utilizar. Se ignora si las categorías no son "
3690
+ "públicas."
3691
 
3692
+ #. not sure if this is order, as in ordering pizza or order as in rank, organization
3693
+ #: addons/ranks/myCRED-addon-ranks.php:1411
3694
+ msgid "Display Order"
3695
+ msgstr "Orden de Visualización"
3696
 
3697
+ #: addons/ranks/myCRED-addon-ranks.php:1417
3698
+ msgid "Ascending - Lowest rank to highest"
3699
+ msgstr "Ascendente - Categoría de más baja a más alta"
3700
 
3701
+ #: addons/ranks/myCRED-addon-ranks.php:1418
3702
+ msgid "Descending - Highest rank to lowest"
3703
+ msgstr "Descendiente - Categoría de más alta a más baja"
3704
 
3705
+ #: addons/ranks/myCRED-addon-ranks.php:1429
3706
+ msgid "Option to set in which order Ranks should be shown on the archive page."
3707
+ msgstr ""
3708
+ "Opción para establecer en qué orden se deben mostrar categorías en la página "
3709
+ "de archivo."
3710
 
3711
+ #: addons/ranks/myCRED-addon-ranks.php:1436
3712
+ msgid "Rank Behaviour"
3713
+ msgstr "Comportamiento de la categoría"
3714
 
3715
+ #: addons/ranks/myCRED-addon-ranks.php:1441
3716
+ msgid "Based on Current Balances"
3717
+ msgstr "Basado en saldos actuales"
3718
 
3719
+ #: addons/ranks/myCRED-addon-ranks.php:1443
 
 
3720
  msgid ""
3721
+ "Users can be promoted or demoted depending on where their balance fits in "
3722
+ "amongst your ranks."
3723
  msgstr ""
3724
+ "Los usuarios pueden ser ascendidos o degradados dependiendo de donde recae "
3725
+ "su saldo entre tus categorías."
 
 
 
 
 
 
 
 
 
 
 
3726
 
3727
+ #: addons/ranks/myCRED-addon-ranks.php:1449
3728
+ msgid "Based on Total Balances"
3729
+ msgstr "Basado en balances totales"
3730
 
3731
+ #: addons/ranks/myCRED-addon-ranks.php:1451
3732
+ msgid ""
3733
+ "Users can only be promoted and gain higher ranks even if their balance "
3734
+ "decreases."
3735
+ msgstr ""
3736
+ "Los usuarios sólo pueden ser ascendidos y obtener categorías más altas "
3737
+ "incluso si su saldo disminuye."
3738
 
3739
+ #: addons/ranks/myCRED-addon-ranks.php:1458
3740
+ msgid "Tools"
3741
+ msgstr "Herramientas"
3742
 
3743
+ #: addons/ranks/myCRED-addon-ranks.php:1459
3744
+ msgid ""
3745
+ "Use this button to calculate or recalculate each individual users total "
3746
+ "balance if you think your users total balances are incorrect, or if you "
3747
+ "switch from Ranks being based on users current balance to total balance."
3748
+ msgstr ""
3749
+ "Utiliza este botón para calcular o volver a calcular el saldo total de cada "
3750
+ "usuario individual si crees que los saldos totales de tus usuarios son "
3751
+ "incorrectos o si cambias de categorías basadas en el saldo actual de los "
3752
+ "usuarios a basadas en el saldo total."
3753
 
3754
+ #: addons/ranks/myCRED-addon-ranks.php:1460
3755
+ msgid "Calculate Totals"
3756
+ msgstr "Calcular Totales"
 
 
3757
 
3758
+ #: addons/ranks/myCRED-addon-ranks.php:1464
3759
+ #: addons/badges/myCRED-addon-badges.php:1155
3760
+ msgid "Third-party Integrations"
3761
+ msgstr "Integraciones de terceros"
3762
 
3763
+ #: addons/ranks/myCRED-addon-ranks.php:1480
3764
+ #: addons/ranks/myCRED-addon-ranks.php:1521
3765
+ msgid "Do not show."
3766
+ msgstr "No mostrar."
3767
 
3768
+ #: addons/ranks/myCRED-addon-ranks.php:1481
3769
+ msgid "Include in Profile Header."
3770
+ msgstr "Incluir en el Encabezado del Perfil."
3771
 
3772
+ #: addons/ranks/myCRED-addon-ranks.php:1483
3773
+ msgid "Include under the \"Profile\" tab and Profile Header."
3774
+ msgstr "Incluir bajo la pestaña \"Perfil\" y Encabezado de Perfil."
3775
 
3776
+ #: addons/ranks/myCRED-addon-ranks.php:1499
3777
+ #: addons/ranks/myCRED-addon-ranks.php:1540
3778
+ msgid ""
3779
+ "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3780
+ "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3781
+ msgstr ""
3782
+ "Plantilla a utilizar al mostrar la categoría de un usuario en BuddyPress. "
3783
+ "Utiliza %rank_title% para el título y %rank_logo% para mostrar el logo de la "
3784
+ "categoría. Se permite HTML."
3785
 
3786
+ #: addons/ranks/myCRED-addon-ranks.php:1503
3787
+ #: addons/ranks/myCRED-addon-ranks.php:1544
3788
+ #: addons/badges/myCRED-addon-badges.php:1187
3789
+ #: addons/badges/myCRED-addon-badges.php:1221
3790
+ msgid "Not installed"
3791
+ msgstr "No instalado"
3792
 
3793
+ #: addons/ranks/myCRED-addon-ranks.php:1522
3794
+ msgid "Include in Topic Replies"
3795
+ msgstr "Incluir en Respuestas de temas"
 
 
 
 
3796
 
3797
+ #: addons/ranks/myCRED-addon-ranks.php:1523
3798
+ #: addons/badges/myCRED-addon-badges.php:1200
3799
+ msgid "Include in Profile"
3800
+ msgstr "Incluir en el Perfil"
3801
 
3802
+ #: addons/ranks/myCRED-addon-ranks.php:1524
3803
+ msgid "Include in Topic Replies and Profile"
3804
+ msgstr "Incluir en el Respuestas del tema y en el perfil"
 
3805
 
3806
+ #: addons/ranks/myCRED-addon-ranks.php:1550
3807
+ #: addons/email-notices/myCRED-addon-email-notices.php:1466
3808
+ #: addons/badges/myCRED-addon-badges.php:1227
3809
+ #: addons/buy-creds/modules/buycred-module-core.php:460
3810
+ msgid "Available Shortcodes"
3811
+ msgstr "Códigos cortos Disponibles"
3812
 
3813
+ #: addons/ranks/myCRED-addon-ranks.php:1661
3814
+ msgid "User Meta Key"
3815
+ msgstr "Clave Meta del Usuario"
 
3816
 
3817
+ #: addons/ranks/myCRED-addon-ranks.php:1665
3818
+ msgid "No. of ranks"
3819
+ msgstr "Numero de Categorías"
3820
 
3821
+ #: addons/ranks/myCRED-addon-ranks.php:1670
3822
+ msgid "Remove All Ranks"
3823
+ msgstr "Quitar todas las Categorías"
 
3824
 
3825
+ #: addons/ranks/myCRED-addon-ranks.php:1670
3826
+ msgid "Assign Ranks to Users"
3827
+ msgstr "Asignar Categoría a los Usuarios"
 
3828
 
3829
+ #: addons/notifications/myCRED-addon-notifications.php:191
3830
+ msgid "Notifications"
3831
+ msgstr "Notificaciones"
 
3832
 
3833
+ #: addons/notifications/myCRED-addon-notifications.php:200
3834
+ msgid ""
3835
+ "Use %entry% to show the log entry in the notice and %amount% for the amount."
3836
+ msgstr ""
3837
+ "Utiliza %entry% para mostrar la entrada de registro en el aviso y %amount% "
3838
+ "para la cantidad."
3839
 
3840
+ #: addons/notifications/myCRED-addon-notifications.php:200
3841
+ msgid "Restore to default"
3842
+ msgstr "Restablecer valores predeterminados"
 
3843
 
3844
+ #: addons/notifications/myCRED-addon-notifications.php:207
3845
+ msgid "Transient Lifespan"
3846
+ msgstr "Durabilidad Transitoria"
3847
 
3848
+ #: addons/notifications/myCRED-addon-notifications.php:209
3849
+ msgid ""
3850
+ "The number of days a users notification is saved before being automatically "
3851
+ "deleted."
3852
+ msgstr ""
3853
+ "Cuantos días una se guarda una notificación de usuario antes de borrarse "
3854
+ "automáticamente."
3855
 
3856
+ #: addons/notifications/myCRED-addon-notifications.php:214
3857
+ msgid "Duration"
3858
+ msgstr "Duración"
3859
 
3860
+ #: addons/notifications/myCRED-addon-notifications.php:216
3861
+ msgid ""
3862
+ "Number of seconds before a notice is automatically removed after being shown "
3863
+ "to user. Use zero to disable."
3864
+ msgstr ""
3865
+ "Número de segundos antes de que un aviso se elimine automáticamente después "
3866
+ "de ser mostrado al usuario. Utiliza cero para deshabilitar."
3867
 
3868
+ #: addons/notifications/myCRED-addon-notifications.php:224
3869
+ msgid "Use the included CSS Styling for notifications."
3870
+ msgstr "Utilice el Estilo CSS incluido para notificaciones."
3871
 
3872
+ #: addons/email-notices/myCRED-addon-email-notices.php:128
3873
+ #: addons/email-notices/myCRED-addon-email-notices.php:134
3874
+ #: addons/email-notices/myCRED-addon-email-notices.php:140
3875
+ #: addons/email-notices/myCRED-addon-email-notices.php:196
3876
+ #: addons/email-notices/myCRED-addon-email-notices.php:197
3877
+ msgid "Email Notifications"
3878
+ msgstr "Notificaciones de e-mails"
3879
 
3880
+ #: addons/email-notices/myCRED-addon-email-notices.php:129
3881
+ msgid "Email Notification"
3882
+ msgstr "Notificación de e-mail"
3883
 
3884
+ #: addons/email-notices/myCRED-addon-email-notices.php:132
3885
+ msgid "Edit Email Notification"
3886
+ msgstr "Editar notificación de e-mail"
3887
 
3888
+ #: addons/email-notices/myCRED-addon-email-notices.php:133
3889
+ msgid "New Email Notification"
3890
+ msgstr "Nueva notificación de e-mail"
 
3891
 
3892
+ #: addons/email-notices/myCRED-addon-email-notices.php:136
3893
+ msgid "Search Email Notifications"
3894
+ msgstr "Buscar notificaciones de e-mail"
 
3895
 
3896
+ #: addons/email-notices/myCRED-addon-email-notices.php:137
3897
+ msgid "No email notifications found"
3898
+ msgstr "No se han encontrado notificaciones por correo electrónico"
3899
 
3900
+ #: addons/email-notices/myCRED-addon-email-notices.php:138
3901
+ msgid "No email notifications found in Trash"
3902
+ msgstr "No se encontraron notificaciones de e-mail en la papelera"
3903
 
3904
+ #: addons/email-notices/myCRED-addon-email-notices.php:171
3905
+ #: addons/email-notices/myCRED-addon-email-notices.php:172
3906
+ #: addons/email-notices/myCRED-addon-email-notices.php:173
3907
+ #: addons/email-notices/myCRED-addon-email-notices.php:174
3908
+ #: addons/email-notices/myCRED-addon-email-notices.php:177
3909
+ #: addons/email-notices/myCRED-addon-email-notices.php:178
3910
+ #: addons/email-notices/myCRED-addon-email-notices.php:179
3911
+ #: addons/email-notices/myCRED-addon-email-notices.php:180
3912
+ msgid "Email Notice Updated."
3913
+ msgstr "Aviso po correo electrónico Actualizado."
3914
 
3915
+ #: addons/email-notices/myCRED-addon-email-notices.php:176
3916
+ msgid "Email Notice Activated."
3917
+ msgstr "Aviso de correo electrónico activado."
3918
 
3919
+ #: addons/email-notices/myCRED-addon-email-notices.php:258
3920
+ #: addons/email-notices/myCRED-addon-email-notices.php:275
3921
+ msgid "Email Subject"
3922
+ msgstr "Asunto del Correo Electrónico"
3923
 
3924
+ #: addons/email-notices/myCRED-addon-email-notices.php:276
3925
+ #: addons/banking/services/mycred-service-payouts.php:565
3926
+ #: addons/banking/services/mycred-service-payouts.php:880
3927
+ msgid "Status"
3928
+ msgstr "Estatus"
3929
 
3930
+ #: addons/email-notices/myCRED-addon-email-notices.php:302
3931
+ msgid "Not Active"
3932
+ msgstr "No esta Activo"
3933
 
3934
+ #: addons/email-notices/myCRED-addon-email-notices.php:305
3935
+ #, php-format
3936
+ msgid "Scheduled:<br /><strong>%1$s</strong>"
3937
+ msgstr "Programada:<br /><strong>%1$s</strong>"
3938
 
3939
+ #: addons/email-notices/myCRED-addon-email-notices.php:310
3940
+ #: addons/banking/services/mycred-service-payouts.php:31
3941
+ msgid "Active"
3942
+ msgstr "Activo"
3943
 
3944
+ #: addons/email-notices/myCRED-addon-email-notices.php:312
3945
+ #, php-format
3946
+ msgid "Active - Last run:<br /><strong>%1$s</strong>"
3947
+ msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
3948
 
3949
+ #: addons/email-notices/myCRED-addon-email-notices.php:325
3950
+ msgid "Email is sent when"
3951
+ msgstr "El Correo Electrónico se envia cuando"
3952
 
3953
+ #: addons/email-notices/myCRED-addon-email-notices.php:327
3954
+ msgid "Missing instance for this notice!"
3955
+ msgstr "Falta una instancia para este aviso."
3956
 
3957
+ #: addons/email-notices/myCRED-addon-email-notices.php:336
3958
+ #: addons/email-notices/myCRED-addon-email-notices.php:338
3959
+ #: addons/email-notices/myCRED-addon-email-notices.php:340
3960
+ msgid "Sent To"
3961
+ msgstr "Enviado A"
3962
 
3963
+ #: addons/email-notices/myCRED-addon-email-notices.php:338
3964
+ #: addons/email-notices/myCRED-addon-email-notices.php:571
3965
+ msgid "Administrator"
3966
+ msgstr "Administrador"
3967
 
3968
+ #: addons/email-notices/myCRED-addon-email-notices.php:340
3969
+ msgid "Both Administrator and User"
3970
+ msgstr "Tanto Administrador como Usuario"
3971
 
3972
+ #: addons/email-notices/myCRED-addon-email-notices.php:351
3973
+ #: addons/email-notices/myCRED-addon-email-notices.php:591
3974
+ msgid "All types"
3975
+ msgstr "Todos los tipos"
3976
 
3977
+ #: addons/email-notices/myCRED-addon-email-notices.php:388
3978
+ msgid "Email Settings"
3979
+ msgstr "Configuraciones de Correo Electrónico"
3980
 
3981
+ #: addons/email-notices/myCRED-addon-email-notices.php:397
3982
+ msgid "Available Template Tags"
3983
+ msgstr "Etiquetas de Plantilla Disponibles"
3984
 
3985
+ #: addons/email-notices/myCRED-addon-email-notices.php:408
3986
+ msgid "Email Header"
3987
+ msgstr "Encabezado del Correo Electrónico"
3988
 
3989
+ #: addons/email-notices/myCRED-addon-email-notices.php:494
3990
+ msgid ""
3991
+ "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
3992
+ "you are not yet ready to use this email notice!"
3993
+ msgstr ""
3994
+ "Una vez que un aviso está \"publicado\" se vuelve activo. Elige \"Guardar "
3995
+ "Borrador\" si aun no estás listo para utilizar este aviso por email."
3996
 
3997
+ #: addons/email-notices/myCRED-addon-email-notices.php:496
3998
+ #, php-format
3999
+ msgid "This notice will become active on:<br /><strong>%1$s</strong>"
4000
+ msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
4001
 
4002
+ #: addons/email-notices/myCRED-addon-email-notices.php:498
4003
+ msgid "This email notice is active."
4004
+ msgstr "Esta notificación de correo electrónico está activada."
4005
 
4006
+ #: addons/email-notices/myCRED-addon-email-notices.php:524
4007
+ msgid "Send this email notice when..."
4008
+ msgstr "Envía este aviso por correo electrónico cuando..."
4009
 
4010
+ #: addons/email-notices/myCRED-addon-email-notices.php:566
4011
+ msgid "Recipient:"
4012
+ msgstr "Destinatario:"
4013
 
4014
+ #: addons/email-notices/myCRED-addon-email-notices.php:574
4015
+ msgid "Both"
4016
+ msgstr "Ambos"
4017
 
4018
+ #: addons/email-notices/myCRED-addon-email-notices.php:610
4019
+ #: addons/email-notices/myCRED-addon-email-notices.php:1477
4020
+ msgid "Senders Name:"
4021
+ msgstr "Nombre del Remitente:"
4022
 
4023
+ #: addons/email-notices/myCRED-addon-email-notices.php:614
4024
+ #: addons/email-notices/myCRED-addon-email-notices.php:1483
4025
+ msgid "Senders Email:"
4026
+ msgstr "Correo Electrónico del Remitente:"
4027
 
4028
+ #: addons/email-notices/myCRED-addon-email-notices.php:618
4029
+ msgid "Reply-To Email:"
4030
+ msgstr "Responder-A Correo Electrónico:"
4031
 
4032
+ #: addons/email-notices/myCRED-addon-email-notices.php:643
4033
+ msgid "CSS Styling"
4034
+ msgstr "Estilo CSS"
4035
 
4036
+ #: addons/email-notices/myCRED-addon-email-notices.php:666
4037
+ msgid "Site Related"
4038
+ msgstr "Relacionado con el Sitio"
 
4039
 
4040
+ #: addons/email-notices/myCRED-addon-email-notices.php:672
4041
+ msgid "Your websites title"
4042
+ msgstr "Título de tu página web"
4043
 
4044
+ #: addons/email-notices/myCRED-addon-email-notices.php:680
4045
+ msgid "Your websites address"
4046
+ msgstr "Dirección de tu página web"
4047
 
4048
+ #: addons/email-notices/myCRED-addon-email-notices.php:688
4049
+ msgid "Your websites tagline (description)"
4050
+ msgstr "Eslogan de tu sitio web (descripción)"
4051
 
4052
+ #: addons/email-notices/myCRED-addon-email-notices.php:696
4053
+ msgid "Your websites admin email"
4054
+ msgstr "El correo electrónico del administrador de tu página web"
4055
 
4056
+ #: addons/email-notices/myCRED-addon-email-notices.php:704
4057
+ msgid "Total number of blog members"
4058
+ msgstr "Número total de miembros del blog"
4059
 
4060
+ #: addons/email-notices/myCRED-addon-email-notices.php:709
4061
+ msgid "Instance Related"
4062
+ msgstr "Relacionado con instancia"
4063
 
4064
+ #: addons/email-notices/myCRED-addon-email-notices.php:715
4065
+ msgid "The users new balance"
4066
+ msgstr "El nuevo saldo del usuario"
4067
 
4068
+ #: addons/email-notices/myCRED-addon-email-notices.php:723
4069
+ msgid "The users old balance"
4070
+ msgstr "El saldo anterior del usuario"
4071
 
4072
+ #: addons/email-notices/myCRED-addon-email-notices.php:731
4073
+ msgid "The amount of points gained or lost in this instance"
4074
+ msgstr "La cantidad de puntos ganados o perdidos en esta instancia"
4075
 
4076
+ #: addons/email-notices/myCRED-addon-email-notices.php:739
4077
+ msgid "The log entry"
4078
+ msgstr "La entrada del registro"
4079
 
4080
+ #: addons/email-notices/myCRED-addon-email-notices.php:744
4081
+ #, php-format
4082
+ msgid "You can also use %s."
4083
+ msgstr "También puede usar %s."
4084
 
4085
+ #: addons/email-notices/myCRED-addon-email-notices.php:744
4086
+ msgid "user related template tags"
4087
+ msgstr "etiquetas de plantilla relacionadas con el usuario"
4088
 
4089
+ #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
4090
+ #: addons/email-notices/myCRED-addon-email-notices.php:865
4091
+ msgid "users balance changes"
4092
+ msgstr "cambios del saldo de usuario"
4093
 
4094
+ #: addons/email-notices/myCRED-addon-email-notices.php:866
4095
+ msgid "user gains %_plural%"
4096
+ msgstr "el usuario gana %_plural%"
4097
 
4098
+ #: addons/email-notices/myCRED-addon-email-notices.php:867
4099
+ msgid "user lose %_plural%"
4100
+ msgstr "el usuario pierde %_plural%"
 
4101
 
4102
+ #: addons/email-notices/myCRED-addon-email-notices.php:868
4103
+ msgid "users balance reaches zero"
4104
+ msgstr "saldo de usuario llega a cero"
4105
 
4106
+ #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
4107
+ #: addons/email-notices/myCRED-addon-email-notices.php:869
4108
+ msgid "users balance goes minus"
4109
+ msgstr "el saldo de usuario está en negativo"
4110
 
4111
+ #: addons/email-notices/myCRED-addon-email-notices.php:875
4112
+ msgid "Badge Add-on"
4113
+ msgstr "Complemento insignia"
4114
 
4115
+ #: addons/email-notices/myCRED-addon-email-notices.php:876
4116
+ msgid "user gains a badge"
4117
+ msgstr "el usuario gana una insignia"
4118
 
4119
+ #: addons/email-notices/myCRED-addon-email-notices.php:883
4120
+ msgid "Sell Content Add-on"
4121
+ msgstr "Extensión para Vender Contenido"
4122
 
4123
+ #: addons/email-notices/myCRED-addon-email-notices.php:884
4124
+ msgid "user buys content"
4125
+ msgstr "usuario compra contenido"
4126
 
4127
+ #: addons/email-notices/myCRED-addon-email-notices.php:885
4128
+ msgid "authors content gets sold"
4129
+ msgstr "el contenido del autor se vende"
4130
 
4131
+ #: addons/email-notices/myCRED-addon-email-notices.php:892
4132
+ msgid "buyCREDs Add-on"
4133
+ msgstr "Extensión de buyCRED"
4134
 
4135
+ #: addons/email-notices/myCRED-addon-email-notices.php:893
4136
+ msgid "user buys %_plural%"
4137
+ msgstr "usuario compra %_plural%"
4138
 
4139
+ #: addons/email-notices/myCRED-addon-email-notices.php:900
4140
+ msgid "Transfer Add-on"
4141
+ msgstr "Extensión de Transferencias"
4142
 
4143
+ #: addons/email-notices/myCRED-addon-email-notices.php:901
4144
+ msgid "user sends %_plural%"
4145
+ msgstr "usuario manda %_plural%"
4146
 
4147
+ #: addons/email-notices/myCRED-addon-email-notices.php:902
4148
+ msgid "user receives %_plural%"
4149
+ msgstr "usuario recibe %_plural%"
4150
 
4151
+ #: addons/email-notices/myCRED-addon-email-notices.php:909
4152
+ msgid "Ranks Add-on"
4153
+ msgstr "Extensión de Categorías"
 
4154
 
4155
+ #: addons/email-notices/myCRED-addon-email-notices.php:910
4156
+ msgid "user is demoted"
4157
+ msgstr "se ha degrado al usuario"
4158
 
4159
+ #: addons/email-notices/myCRED-addon-email-notices.php:911
4160
+ msgid "user is promoted"
4161
+ msgstr "se ha ascendido al usuario"
 
 
4162
 
4163
+ #: addons/email-notices/myCRED-addon-email-notices.php:1410
4164
+ #: addons/coupons/myCRED-addon-coupons.php:114
4165
+ msgid "Email Notices"
4166
+ msgstr "Avisos por Correo Electrónico"
4167
 
4168
+ #: addons/email-notices/myCRED-addon-email-notices.php:1418
4169
+ msgid "Plain Text"
4170
+ msgstr "Texto sin formato"
4171
 
4172
+ #: addons/email-notices/myCRED-addon-email-notices.php:1426
4173
+ #: addons/banking/services/mycred-service-payouts.php:825
4174
+ msgid "Schedule"
4175
+ msgstr "Calendario"
4176
 
4177
+ #: addons/email-notices/myCRED-addon-email-notices.php:1430
4178
+ msgid "WordPress Cron is disabled. Emails will be sent immediately."
4179
+ msgstr ""
4180
+ "WordPress Cron esta desactivado. Los emails serán enviados inmediatamente."
4181
 
4182
+ #: addons/email-notices/myCRED-addon-email-notices.php:1433
4183
+ msgid "Send emails immediately"
4184
+ msgstr "Enviar emails inmediatamente"
 
4185
 
4186
+ #: addons/email-notices/myCRED-addon-email-notices.php:1436
4187
+ msgid "Send emails once an hour"
4188
+ msgstr "Enviar emails una vez cada hora"
4189
 
4190
+ #: addons/email-notices/myCRED-addon-email-notices.php:1439
4191
+ msgid "Send emails once a day"
4192
+ msgstr "Enviar emails una vez al dia"
4193
 
4194
+ #: addons/email-notices/myCRED-addon-email-notices.php:1448
4195
+ msgid "Filter Email Subjects"
4196
+ msgstr "Filtrar temas de correo electrónico"
4197
 
4198
+ #: addons/email-notices/myCRED-addon-email-notices.php:1451
4199
+ msgid "Filter Email Body"
4200
+ msgstr "Filtrar contenido de correo electrónico"
4201
 
4202
+ #: addons/email-notices/myCRED-addon-email-notices.php:1460
4203
  msgid ""
4204
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
4205
+ "use a SMTP plugin for emails."
4206
  msgstr ""
4207
+ "Depurar SMTP. Habilitar si hay erores con wp_mail() o si utiliza un plugin "
4208
+ "SMTP para email."
4209
 
4210
+ #: addons/email-notices/myCRED-addon-email-notices.php:1473
4211
+ msgid "Defaults"
4212
+ msgstr "Predeterminados"
 
4213
 
4214
+ #: addons/email-notices/myCRED-addon-email-notices.php:1489
4215
+ msgid "Reply-To:"
4216
+ msgstr "Responder-A:"
4217
 
4218
+ #: addons/email-notices/myCRED-addon-email-notices.php:1497
4219
+ msgid "Default Email Content"
4220
+ msgstr "Contenido de Correo Electrónico Predeterminado"
4221
 
4222
+ #: addons/email-notices/myCRED-addon-email-notices.php:1499
4223
+ msgid "Default email content."
4224
+ msgstr "Contenido de correo electrónico predeterminado."
4225
 
4226
+ #: addons/email-notices/myCRED-addon-email-notices.php:1506
4227
+ msgid "Default CSS Styling"
4228
+ msgstr "Estilo CSS predeterminado"
4229
+
4230
+ #: addons/email-notices/myCRED-addon-email-notices.php:1508
4231
  msgid ""
4232
+ "Default email CSS styling. Note that if you intend to send HTML emails, you "
4233
+ "should use inline CSS styling for best results."
4234
  msgstr ""
4235
+ "Estilo CSS de correo electrónico predeterminado. Ten en cuenta que si "
4236
+ "quieres enviar correos electrónicos HTML, debes utilizar el estilo CSS en "
4237
+ "línea para obtener los mejores resultados."
4238
 
4239
+ #: addons/email-notices/myCRED-addon-email-notices.php:1606
4240
+ msgid "Unsubscribe"
4241
+ msgstr "Cancelar la Suscripción"
4242
 
4243
+ #: addons/email-notices/myCRED-addon-email-notices.php:1607
4244
+ msgid "Email Notice"
4245
+ msgstr "Aviso por Correo Electrónico"
4246
 
4247
+ #: addons/email-notices/myCRED-addon-email-notices.php:1628
4248
+ msgid "There are no email notifications yet."
4249
+ msgstr "Todavía no hay notificaciones de email."
4250
 
4251
+ #: addons/email-notices/myCRED-addon-email-notices.php:1635
4252
+ #: addons/buy-creds/modules/buycred-module-pending.php:517
4253
+ msgid "Save Changes"
4254
+ msgstr "Guardar Cambios"
4255
 
4256
+ #: addons/stats/myCRED-addon-stats.php:58
4257
+ msgid "Statistics"
4258
+ msgstr "Estadísticas"
4259
 
4260
+ #: addons/stats/myCRED-addon-stats.php:172
4261
+ msgid "Statistics Color"
4262
+ msgstr "Color Estadísticas"
4263
 
4264
+ #: addons/stats/myCRED-addon-stats.php:176
4265
+ msgid "Positive Values"
4266
+ msgstr "Valores positivos"
 
4267
 
4268
+ #: addons/stats/myCRED-addon-stats.php:182
4269
+ msgid "Negative Values"
4270
+ msgstr "Valores negativos"
 
4271
 
4272
+ #: addons/stats/myCRED-addon-stats.php:248
4273
+ msgid "Overview"
4274
+ msgstr "Resumen"
4275
 
4276
+ #: addons/stats/myCRED-addon-stats.php:310
4277
+ msgid "Refresh"
4278
  msgstr "Recargar"
4279
 
4280
+ #: addons/stats/myCRED-addon-stats.php:417
4281
+ msgid "Your log is empty. No statistics can be shown."
4282
+ msgstr "Su registro está vacío. No se pueden mostrar estadísticas."
4283
 
4284
+ #: addons/badges/myCRED-addon-badges.php:148
4285
+ #: addons/badges/myCRED-addon-badges.php:154
4286
+ #: addons/badges/myCRED-addon-badges.php:160
4287
+ #: addons/badges/myCRED-addon-badges.php:295
4288
+ #: addons/badges/myCRED-addon-badges.php:296
4289
+ #: addons/badges/myCRED-addon-badges.php:1152
4290
+ #: addons/badges/myCRED-addon-badges.php:1281
4291
+ #: addons/badges/myCRED-addon-badges.php:1284
4292
+ msgid "Badges"
4293
+ msgstr "Insignias"
4294
 
4295
+ #: addons/badges/myCRED-addon-badges.php:149
4296
+ msgid "Badge"
4297
+ msgstr "Insignia"
 
 
 
4298
 
4299
+ #: addons/badges/myCRED-addon-badges.php:152
4300
+ msgid "Edit Badge"
4301
+ msgstr "Editar Insignia"
4302
 
4303
+ #: addons/badges/myCRED-addon-badges.php:153
4304
+ msgid "New Badge"
4305
+ msgstr "Nueva Insignia"
 
 
 
4306
 
4307
+ #: addons/badges/myCRED-addon-badges.php:155
4308
+ msgid "View Badge"
4309
+ msgstr "Ver Insignia"
4310
 
4311
+ #: addons/badges/myCRED-addon-badges.php:156
4312
+ msgid "Search Badge"
4313
+ msgstr "Buscar Insignia"
4314
+
4315
+ #: addons/badges/myCRED-addon-badges.php:157
4316
+ msgid "No badges found"
4317
+ msgstr "Ninguna Insignia Encontrada"
4318
+
4319
+ #: addons/badges/myCRED-addon-badges.php:158
4320
+ msgid "No badges found in Trash"
4321
+ msgstr "Ninguna Insignia Encontrada en la Papelera"
4322
+
4323
+ #: addons/badges/myCRED-addon-badges.php:270
4324
+ #: addons/badges/myCRED-addon-badges.php:271
4325
+ #: addons/badges/myCRED-addon-badges.php:272
4326
+ #: addons/badges/myCRED-addon-badges.php:273
4327
+ #: addons/badges/myCRED-addon-badges.php:277
4328
+ #: addons/badges/myCRED-addon-badges.php:278
4329
+ #: addons/badges/myCRED-addon-badges.php:279
4330
+ msgid "Badge Updated."
4331
+ msgstr "Insignia Actualizada."
4332
+
4333
+ #: addons/badges/myCRED-addon-badges.php:275
4334
+ msgid "Badge Enabled."
4335
+ msgstr "Insígnia habilitada."
4336
+
4337
+ #: addons/badges/myCRED-addon-badges.php:276
4338
+ msgid "Badge Saved."
4339
+ msgstr "Insígnia guardada."
4340
 
4341
+ #: addons/badges/myCRED-addon-badges.php:421
4342
+ #: addons/badges/myCRED-addon-badges.php:505
4343
+ msgid "Badge Name"
4344
+ msgstr "Nombre de Insignia"
 
 
 
 
 
 
4345
 
4346
+ #: addons/badges/myCRED-addon-badges.php:422
4347
+ msgid "Default Image"
4348
+ msgstr "Imagen Predefinida"
 
 
 
 
4349
 
4350
+ #: addons/badges/myCRED-addon-badges.php:423
4351
+ msgid "First Level"
4352
+ msgstr "Primer Nivel"
 
 
 
 
 
 
4353
 
4354
+ #: addons/badges/myCRED-addon-badges.php:424
4355
+ msgid "Requirements"
4356
+ msgstr "Requisitos"
4357
 
4358
+ #: addons/badges/myCRED-addon-badges.php:535
4359
+ #: addons/badges/myCRED-addon-badges.php:826
4360
+ msgid "Add Level"
4361
+ msgstr "Añadir nivel"
4362
 
4363
+ #: addons/badges/myCRED-addon-badges.php:536
4364
+ #: addons/badges/myCRED-addon-badges.php:827
4365
+ msgid "Remove Level"
4366
+ msgstr "Eliminar nivel"
4367
 
4368
+ #: addons/badges/myCRED-addon-badges.php:537
4369
+ #: addons/badges/myCRED-addon-badges.php:780
4370
+ #: addons/badges/myCRED-addon-badges.php:843
4371
+ #: addons/badges/myCRED-addon-badges.php:848
4372
+ msgid "Set Image"
4373
+ msgstr "Establecer imagen"
4374
 
4375
+ #: addons/badges/myCRED-addon-badges.php:538
4376
+ #: addons/badges/myCRED-addon-badges.php:780
4377
+ #: addons/badges/myCRED-addon-badges.php:848
4378
+ msgid "Change Image"
4379
+ msgstr "Cambiar imagen"
4380
 
4381
+ #: addons/badges/myCRED-addon-badges.php:539
4382
+ msgid "Are you sure you want to remove this level?"
4383
+ msgstr "¿Seguro que quieres eliminar este nivel?"
4384
 
4385
+ #: addons/badges/myCRED-addon-badges.php:540
4386
+ #: addons/badges/myCRED-addon-badges.php:844
4387
+ #: addons/badges/myCRED-addon-badges.php:1313
4388
+ msgid "Level"
4389
+ msgstr "Nivel"
 
 
 
 
4390
 
4391
+ #: addons/badges/myCRED-addon-badges.php:541
4392
+ msgid "Badge Image"
4393
+ msgstr "Imagen de la Insignia"
 
4394
 
4395
+ #: addons/badges/myCRED-addon-badges.php:542
4396
+ msgid "Use as Badge"
4397
+ msgstr "Utiliza como Insignia"
 
4398
 
4399
+ #: addons/badges/myCRED-addon-badges.php:543
4400
+ #: addons/badges/myCRED-addon-badges.php:946
4401
+ #: addons/badges/includes/mycred-badge-functions.php:272
4402
+ msgctxt "Comparison of badge requirements. A AND B"
4403
+ msgid "AND"
4404
+ msgstr "Y"
4405
 
4406
+ #: addons/badges/myCRED-addon-badges.php:544
4407
+ #: addons/badges/myCRED-addon-badges.php:946
4408
+ #: addons/badges/includes/mycred-badge-functions.php:270
4409
+ msgctxt "Comparison of badge requirements. A OR B"
4410
+ msgid "OR"
4411
+ msgstr "O"
4412
 
4413
+ #: addons/badges/myCRED-addon-badges.php:596
4414
+ msgid "Badge Setup"
4415
+ msgstr "Configuración de la insignia"
4416
 
4417
+ #: addons/badges/myCRED-addon-badges.php:605
4418
+ msgid "Default Badge Image"
4419
+ msgstr "Imagen por defecto de la insignia"
 
 
4420
 
4421
+ #: addons/badges/myCRED-addon-badges.php:703
4422
+ msgid "Assign Badge"
4423
+ msgstr "Asignar Insignia"
4424
 
4425
+ #: addons/badges/myCRED-addon-badges.php:704
4426
+ msgid "Remove Connections"
4427
+ msgstr "Quitar Conexiones"
 
4428
 
4429
+ #: addons/badges/myCRED-addon-badges.php:747
4430
+ #: addons/badges/includes/mycred-badge-functions.php:288
4431
+ msgid "This badge is manually awarded."
4432
+ msgstr "Esta insignia se otorga manualmente."
4433
 
4434
+ #: addons/badges/myCRED-addon-badges.php:783
4435
+ msgid "Optional image to show when a user has not earned this badge."
4436
+ msgstr ""
4437
+ "Imagen opcional para mostrar cuando un usuario no ha ganado esta insignia."
4438
 
4439
+ #: addons/badges/myCRED-addon-badges.php:802
4440
+ msgid "Time(s)"
4441
+ msgstr "Tiempo(s)"
 
4442
 
4443
+ #: addons/badges/myCRED-addon-badges.php:803
4444
+ msgid "In total"
4445
+ msgstr "En Total"
4446
 
4447
+ #: addons/badges/myCRED-addon-badges.php:850
4448
+ #, php-format
4449
+ msgid "Level %d"
4450
+ msgstr "Nivel %d"
4451
 
4452
+ #: addons/badges/myCRED-addon-badges.php:874
4453
+ msgid "Select Point Type"
4454
+ msgstr "Seleccionar tipo de punto"
4455
 
4456
+ #: addons/badges/myCRED-addon-badges.php:888
4457
+ msgid "Select Reference"
4458
+ msgstr "Seleccionar referencia"
4459
 
4460
+ #: addons/badges/myCRED-addon-badges.php:964
4461
+ msgid "Reward"
4462
+ msgstr "Recompensa"
4463
 
4464
+ #: addons/badges/myCRED-addon-badges.php:1183
4465
+ #: addons/badges/myCRED-addon-badges.php:1217
4466
+ msgid "Show all badges, including badges users have not yet earned."
4467
+ msgstr ""
4468
+ "Muestra todas las insignias, incluidas las insignias que los usuarios aún no "
4469
+ "han ganado."
4470
 
4471
+ #: addons/badges/myCRED-addon-badges.php:1201
4472
+ msgid "Include in Forum Replies"
4473
+ msgstr "Incluir en Respuestas del Foro"
4474
 
4475
+ #: addons/badges/myCRED-addon-badges.php:1202
4476
+ msgid "Include in Profile and Forum Replies"
4477
+ msgstr "Incluir en Perfil y Respuestas del Foro"
 
4478
 
4479
+ #: addons/badges/myCRED-addon-badges.php:1276
4480
+ msgid "No image set"
4481
+ msgstr "No se ha definido ninguna imagen"
4482
 
4483
+ #: addons/badges/myCRED-addon-badges.php:1308
4484
+ msgid "Select a level"
4485
+ msgstr "Selecciona un nivel"
4486
 
4487
+ #: addons/badges/myCRED-addon-badges.php:1322
4488
+ msgid "Earned"
4489
+ msgstr "Ganado"
4490
 
4491
+ #: addons/badges/myCRED-addon-badges.php:1431
4492
+ #, php-format
4493
+ msgid "A total of %d users have received this badge."
4494
+ msgstr "Un total de %d usuarios han recibido esta insignia."
4495
 
4496
+ #: addons/badges/myCRED-addon-badges.php:1433
4497
+ msgid "No users has yet earned this badge."
4498
+ msgstr "Ningún usuario ha ganado esta insignia."
4499
 
4500
+ #: addons/badges/myCRED-addon-badges.php:1458
4501
+ msgid "No connections where removed."
4502
+ msgstr "No se ha eliminado ninguna conexión."
4503
 
4504
+ #: addons/badges/myCRED-addon-badges.php:1460
4505
+ #, php-format
4506
+ msgid "%s connections where removed."
4507
+ msgstr "%s conexiones han sido eliminadas."
4508
 
4509
+ #: addons/coupons/myCRED-addon-coupons.php:102
4510
+ #: addons/coupons/myCRED-addon-coupons.php:108
4511
+ #: addons/coupons/myCRED-addon-coupons.php:170
4512
+ #: addons/coupons/myCRED-addon-coupons.php:171
4513
+ #: addons/coupons/myCRED-addon-coupons.php:702
4514
+ msgid "Coupons"
4515
+ msgstr "Cupones"
4516
 
4517
+ #: addons/coupons/myCRED-addon-coupons.php:103
4518
+ msgid "Coupon"
4519
+ msgstr "Cupón"
4520
 
4521
+ #: addons/coupons/myCRED-addon-coupons.php:104
4522
+ #: addons/coupons/myCRED-addon-coupons.php:105
4523
+ msgid "Create New"
4524
+ msgstr "Crear Nuevo"
4525
 
4526
+ #: addons/coupons/myCRED-addon-coupons.php:106
4527
+ msgid "Edit Coupon"
4528
+ msgstr "Editar Cupón"
4529
 
4530
+ #: addons/coupons/myCRED-addon-coupons.php:107
4531
+ msgid "New Coupon"
4532
+ msgstr "Nuevo Cupón"
4533
 
4534
+ #: addons/coupons/myCRED-addon-coupons.php:110
4535
+ msgid "Search coupons"
4536
+ msgstr "Búsqueda de Cupones"
4537
 
4538
+ #: addons/coupons/myCRED-addon-coupons.php:111
4539
+ msgid "No coupons found"
4540
+ msgstr "Ningun Cupón Encontrado"
 
 
 
4541
 
4542
+ #: addons/coupons/myCRED-addon-coupons.php:112
4543
+ msgid "No coupons found in Trash"
4544
+ msgstr "Ningun Cupón Encontrado en la Papelera"
4545
 
4546
+ #: addons/coupons/myCRED-addon-coupons.php:145
4547
+ #: addons/coupons/myCRED-addon-coupons.php:146
4548
+ #: addons/coupons/myCRED-addon-coupons.php:147
4549
+ #: addons/coupons/myCRED-addon-coupons.php:148
4550
+ #: addons/coupons/myCRED-addon-coupons.php:151
4551
+ #: addons/coupons/myCRED-addon-coupons.php:152
4552
+ #: addons/coupons/myCRED-addon-coupons.php:153
4553
+ #: addons/coupons/myCRED-addon-coupons.php:154
4554
+ msgid "Coupon updated."
4555
+ msgstr "Cupón Actualizado."
4556
 
4557
+ #: addons/coupons/myCRED-addon-coupons.php:150
4558
+ msgid "Coupon published."
4559
+ msgstr "Cupón Publicado."
4560
 
4561
+ #: addons/coupons/myCRED-addon-coupons.php:232
4562
+ #: addons/coupons/myCRED-addon-coupons.php:249
4563
+ msgid "Coupon Code"
4564
+ msgstr "Código de Cupón"
4565
 
4566
+ #: addons/coupons/myCRED-addon-coupons.php:250
4567
+ #: addons/coupons/myCRED-addon-coupons.php:513
4568
+ msgid "Value"
4569
+ msgstr "Valor"
 
 
 
 
 
 
4570
 
4571
+ #: addons/coupons/myCRED-addon-coupons.php:251
4572
+ msgid "Used"
4573
+ msgstr "Utilizado"
 
4574
 
4575
+ #: addons/coupons/myCRED-addon-coupons.php:253
4576
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:205
4577
+ msgid "Expires"
4578
+ msgstr "Expira"
 
4579
 
4580
+ #: addons/coupons/myCRED-addon-coupons.php:298
4581
+ #: addons/coupons/myCRED-addon-coupons.php:649
4582
+ #, php-format
4583
+ msgid "1 time"
4584
+ msgid_plural "%d times"
4585
+ msgstr[0] "1 vez"
4586
+ msgstr[1] "%d veces"
4587
 
4588
+ #: addons/coupons/myCRED-addon-coupons.php:309
4589
+ msgid "Per User"
4590
+ msgstr "Por Usuario"
 
4591
 
4592
+ #: addons/coupons/myCRED-addon-coupons.php:326
4593
+ msgid "Expired"
4594
+ msgstr "Caducado"
 
4595
 
4596
+ #: addons/coupons/myCRED-addon-coupons.php:332
4597
  #, php-format
4598
+ msgid "In %s time"
4599
+ msgstr "En %s tiempo"
 
 
 
 
4600
 
4601
+ #: addons/coupons/myCRED-addon-coupons.php:432
4602
+ msgid "Coupon Setup"
4603
+ msgstr "Configuración de Cupón"
4604
 
4605
+ #: addons/coupons/myCRED-addon-coupons.php:441
4606
+ msgid "Coupon Limits"
4607
+ msgstr "Limites de Cupón"
 
 
4608
 
4609
+ #: addons/coupons/myCRED-addon-coupons.php:450
4610
+ msgid "Coupon Requirements"
4611
+ msgstr "Requisitos de Cupón"
 
4612
 
4613
+ #: addons/coupons/myCRED-addon-coupons.php:486
4614
+ msgid ""
4615
+ "Warning. The previous expiration date set for this coupon was formatted "
4616
+ "incorrectly and was deleted. If you still want the coupon to expire, please "
4617
+ "enter a new date or leave empty to disable."
4618
+ msgstr ""
4619
+ "Aviso. La fecha de vencimiento anterior para este cupón tenía un formato "
4620
+ "incorrecto y ha sido eliminada. Si todavía quieres que el cupón caduque, "
4621
+ "ingresa una nueva fecha o déjala en blanco para inhabilitarla."
4622
 
4623
+ #: addons/coupons/myCRED-addon-coupons.php:515
4624
+ msgid "The amount of %plural% a user receives when redeeming this coupon."
4625
+ msgstr "La cantidad de %_plural% que un usuario recibe al canjear este cupón."
4626
 
4627
+ #: addons/coupons/myCRED-addon-coupons.php:524
4628
+ msgid "Select the point type that this coupon is applied."
4629
+ msgstr "Elige el tipo de puntos al cual se aplica este cupón."
4630
 
4631
+ #: addons/coupons/myCRED-addon-coupons.php:536
4632
+ msgid "Expire"
4633
+ msgstr "Caducar"
4634
 
4635
+ #: addons/coupons/myCRED-addon-coupons.php:538
4636
  msgid ""
4637
+ "Optional date when this coupon expires. Expired coupons will be trashed."
 
4638
  msgstr ""
4639
+ "La fecha opcional cuando este cupón caduque. Los cupones caducados serán "
4640
+ "eliminados."
 
 
 
 
 
4641
 
4642
+ #: addons/coupons/myCRED-addon-coupons.php:566
4643
+ msgid "Global Maximum"
4644
+ msgstr "Máximo Global"
 
 
 
 
4645
 
4646
+ #: addons/coupons/myCRED-addon-coupons.php:568
4647
+ msgid ""
4648
+ "The maximum number of times this coupon can be used in total. Once this is "
4649
+ "reached, the coupon is automatically trashed."
4650
+ msgstr ""
4651
+ "El número máximo de veces que se puede utilizar este cupón en total. Una vez "
4652
+ "que se alcanza este número, el cupón se elimina automáticamente."
4653
 
4654
+ #. not clear if this is referring to the maximum number of users or to the maximum "points" a user can have or accrue?
4655
+ #: addons/coupons/myCRED-addon-coupons.php:573
4656
+ msgid "User Maximum"
4657
+ msgstr "Máximo del usuario"
4658
 
4659
+ #: addons/coupons/myCRED-addon-coupons.php:575
4660
+ msgid "The maximum number of times this coupon can be used by a user."
4661
+ msgstr "El máximo numero de veces que un usuario puede utilizar este cupón."
 
4662
 
4663
+ #: addons/coupons/myCRED-addon-coupons.php:603
4664
+ #: addons/banking/services/mycred-service-interest.php:499
4665
+ msgid "Minimum Balance"
4666
+ msgstr "Saldo Minimo"
4667
 
4668
+ #: addons/coupons/myCRED-addon-coupons.php:608
4669
+ msgid ""
4670
+ "Optional minimum balance a user must have in order to use this coupon. Use "
4671
+ "zero to disable."
4672
+ msgstr ""
4673
+ "Saldo mínimo opcional que el usuario debe tener para utilizar este cupón. "
4674
+ "Utilice cero para inhabilitar."
4675
 
4676
+ #: addons/coupons/myCRED-addon-coupons.php:615
4677
+ msgid "Maximum Balance"
4678
+ msgstr "Saldo Máximo"
4679
 
4680
+ #: addons/coupons/myCRED-addon-coupons.php:620
4681
+ msgid ""
4682
+ "Optional maximum balance a user can have in order to use this coupon. Use "
4683
+ "zero to disable."
4684
+ msgstr ""
4685
+ "Saldo máximo opcional que un usuario puede tener para usar este cupón. Ponga "
4686
+ "cero para desactivar."
4687
 
4688
+ #: addons/coupons/myCRED-addon-coupons.php:705
4689
+ msgid "Message Templates"
4690
+ msgstr "Plantillas de mensaje"
4691
 
4692
+ #: addons/coupons/myCRED-addon-coupons.php:709
4693
+ msgid "Invalid Coupon Message"
4694
+ msgstr "Mensaje Cupón Inválido"
4695
 
4696
+ #: addons/coupons/myCRED-addon-coupons.php:711
4697
+ msgid "Message to show when users try to use a coupon that does not exists."
4698
+ msgstr ""
4699
+ "Mostrar mensaje cuando los usuarios intenten usar un cupón que no existe."
4700
 
4701
+ #: addons/coupons/myCRED-addon-coupons.php:716
4702
+ msgid "Expired Coupon Message"
4703
+ msgstr "Mensaje de Cupón Caducado"
4704
 
4705
+ #: addons/coupons/myCRED-addon-coupons.php:718
4706
+ msgid "Message to show when users try to use that has expired."
4707
+ msgstr "Mostrar mensaje cuando los usuarios intenten usar un cupón caducado."
4708
 
4709
+ #: addons/coupons/myCRED-addon-coupons.php:725
4710
+ msgid "Minimum Balance Message"
4711
+ msgstr "Mensaje de Saldo Mínimo"
 
4712
 
4713
+ #: addons/coupons/myCRED-addon-coupons.php:727
4714
+ msgid ""
4715
+ "Message to show when a user does not meet the minimum balance requirement. "
4716
+ "(if used)"
4717
+ msgstr ""
4718
+ "Mostrar mensaje cuando el usuario no cumple con el saldo mínimo requerido. "
4719
+ "(si se utiliza)"
4720
 
4721
+ #: addons/coupons/myCRED-addon-coupons.php:732
4722
+ msgid "Maximum Balance Message"
4723
+ msgstr "Mensaje Saldo Máximo"
4724
 
4725
+ #: addons/coupons/myCRED-addon-coupons.php:734
4726
+ msgid ""
4727
+ "Message to show when a user does not meet the maximum balance requirement. "
4728
+ "(if used)"
4729
+ msgstr ""
4730
+ "Mostrar mensaje cuando un usuario no alcanza el saldo máximo requerido. (si "
4731
+ "se utiliza)"
4732
 
4733
+ #: addons/coupons/myCRED-addon-coupons.php:741
4734
+ msgid "User Limit Message"
4735
+ msgstr "Mensaje de Límite de Usuario"
 
4736
 
4737
+ #: addons/coupons/myCRED-addon-coupons.php:743
4738
+ msgid "Message to show when the user limit has been reached for the coupon."
4739
+ msgstr "Mostrar mensaje cuando el cupón alcanza su límite de usuarios."
4740
 
4741
+ #: addons/coupons/myCRED-addon-coupons.php:748
4742
+ msgid "Excluded Message"
4743
+ msgstr "Mensaje Excluido"
4744
 
4745
+ #: addons/coupons/myCRED-addon-coupons.php:750
4746
+ msgid ""
4747
+ "Message to show when a user is excluded from the point type the coupon gives."
4748
+ msgstr ""
4749
+ "Mensaje que se mostrará cuando un usuario sea excluido del tipo de punto que "
4750
+ "da el cupón."
4751
 
4752
+ #: addons/coupons/myCRED-addon-coupons.php:757
4753
+ msgid "Success Message"
4754
+ msgstr "Mensaje de éxito"
4755
 
4756
+ #: addons/coupons/myCRED-addon-coupons.php:759
4757
+ msgid ""
4758
+ "Message to show when a coupon was successfully deposited to a users account."
4759
+ msgstr ""
4760
+ "Mostrar mensaje cuando un cupón se deposita con éxito en una cuenta de "
4761
+ "usuario."
4762
 
4763
+ #: addons/coupons/myCRED-addon-coupons.php:766
4764
+ msgid ""
4765
+ "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
4766
+ "code."
4767
+ msgstr ""
4768
+ "Entrada de registro de usos correctos de cupones. Utilice %coupon% para "
4769
+ "mostrar el código del cupón."
4770
 
4771
+ #: addons/sell-content/myCRED-addon-sell-content.php:153
4772
+ msgid "Error"
4773
+ msgstr "Error"
4774
 
4775
+ #: addons/sell-content/myCRED-addon-sell-content.php:378
4776
+ msgid "Users profit share when their content is purchased."
4777
+ msgstr "Beneficio del usuario cuando se compra su contenido."
4778
 
4779
+ #: addons/sell-content/myCRED-addon-sell-content.php:381
4780
+ #: addons/sell-content/myCRED-addon-sell-content.php:384
4781
+ #: addons/sell-content/myCRED-addon-sell-content.php:664
4782
+ msgid "Profit Share"
4783
+ msgstr "Beneficio"
4784
 
4785
+ #: addons/sell-content/myCRED-addon-sell-content.php:394
4786
+ #: addons/sell-content/myCRED-addon-sell-content.php:409
4787
+ #, php-format
4788
+ msgctxt "Points Name"
4789
+ msgid "%s Profit Share"
4790
+ msgstr "%s Beneficio"
4791
 
4792
+ #: addons/sell-content/myCRED-addon-sell-content.php:397
4793
+ msgid "Not accepted as payment."
4794
+ msgstr "No se acepta como pago."
4795
 
4796
+ #: addons/sell-content/myCRED-addon-sell-content.php:412
4797
+ #, php-format
4798
+ msgctxt "Points Name"
4799
+ msgid "User can not pay using %s"
4800
+ msgstr "El usuario no puede pagar con %s"
4801
 
4802
+ #: addons/sell-content/myCRED-addon-sell-content.php:424
4803
+ #, php-format
4804
+ msgctxt "Buying Points"
4805
+ msgid "%s Profit Share"
4806
+ msgstr "%s Beneficio"
4807
 
4808
+ #: addons/sell-content/myCRED-addon-sell-content.php:427
4809
+ msgid "Leave empty to use the default."
4810
+ msgstr "Dejar en blanco para utilizar el predeterminado."
4811
 
4812
+ #: addons/sell-content/myCRED-addon-sell-content.php:508
4813
+ #: addons/sell-content/myCRED-addon-sell-content.php:1000
4814
+ msgid "Sell Content"
4815
+ msgstr "Vender Contenido"
4816
 
4817
+ #: addons/sell-content/myCRED-addon-sell-content.php:511
4818
+ msgid "Post Types"
4819
+ msgstr "Tipos de publicaciones"
4820
 
4821
+ #: addons/sell-content/myCRED-addon-sell-content.php:512
4822
+ msgid "Which post type(s) content field do you want to sell access to?"
 
 
4823
  msgstr ""
4824
+ "¿El acceso a qué campo de contenido de tipo de publicación quieres vender?"
 
4825
 
4826
+ #: addons/sell-content/myCRED-addon-sell-content.php:582
4827
+ msgid "Which point type(s) can be used as payment for accessing content?"
4828
+ msgstr ""
4829
+ "¿Qué tipo(s) de puntos se pueden usar como pago para acceder a contenido?"
4830
 
4831
+ #: addons/sell-content/myCRED-addon-sell-content.php:635
4832
+ #: addons/sell-content/myCRED-addon-sell-content.php:1019
4833
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:198
4834
+ msgid "Hour(s)"
4835
+ msgstr "Hora(s)"
4836
 
4837
+ #: addons/sell-content/myCRED-addon-sell-content.php:643
4838
+ msgid "Default Status"
4839
+ msgstr "Estado predeterminado"
4840
 
4841
+ #: addons/sell-content/myCRED-addon-sell-content.php:651
4842
+ msgid "Default Price"
4843
+ msgstr "Precio por defecto"
4844
 
4845
+ #: addons/sell-content/myCRED-addon-sell-content.php:657
4846
+ #: addons/sell-content/myCRED-addon-sell-content.php:1079
4847
+ msgid "Expiration"
4848
+ msgstr "Caducidad"
4849
 
4850
+ #: addons/sell-content/myCRED-addon-sell-content.php:659
4851
+ #, php-format
4852
+ msgid ""
4853
+ "Option to automatically expire purchases after certain number of %s. Use "
4854
+ "zero to disable."
4855
+ msgstr ""
4856
+ "Opción para que las compras caduquen automáticamente después de cierto "
4857
+ "número de %s. Utiliza cero para deshabilitar."
4858
 
4859
+ #: addons/sell-content/myCRED-addon-sell-content.php:666
4860
+ msgid "Option to pay a percentage of each sale with the content author."
4861
+ msgstr ""
4862
+ "Opción de pagar un porcentaje de cada venta con el autor del contenido."
4863
 
4864
+ #: addons/sell-content/myCRED-addon-sell-content.php:673
4865
+ #: addons/sell-content/myCRED-addon-sell-content.php:719
4866
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:473
4867
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:675
4868
+ #: addons/transfer/includes/mycred-transfer-widgets.php:101
4869
+ msgid "Button Label"
4870
+ msgstr "Etiqueta del Botón"
 
 
 
4871
 
4872
+ #: addons/sell-content/myCRED-addon-sell-content.php:680
4873
+ msgid "Button CSS Classes"
4874
+ msgstr "Botón de clases de CSS"
4875
 
4876
+ #: addons/sell-content/myCRED-addon-sell-content.php:689
4877
+ msgid "Payment log entry template"
4878
+ msgstr "Plantilla de entrada de registro de pago"
4879
 
4880
+ #: addons/sell-content/myCRED-addon-sell-content.php:696
4881
+ msgid "Profit Share payout log entry template"
4882
+ msgstr "Plantilla de entrada de registro de pago de beneficios"
4883
 
4884
+ #: addons/sell-content/myCRED-addon-sell-content.php:710
4885
+ msgid "Transactions"
4886
+ msgstr "Transacciones"
4887
 
4888
+ #: addons/sell-content/myCRED-addon-sell-content.php:714
4889
+ msgid "Reload page after successful payments."
4890
+ msgstr ""
4891
+ "Volver a cargar la página después de los pagos realizados correctamente."
4892
 
4893
+ #: addons/sell-content/myCRED-addon-sell-content.php:721
4894
+ msgid ""
4895
+ "Option to show a custom button label while the payment is being processed. "
4896
+ "HTML is allowed."
4897
+ msgstr ""
4898
+ "Opción para mostrar una etiqueta de botón personalizada mientras se procesa "
4899
+ "el pago. Se permite HTML."
4900
 
4901
+ #: addons/sell-content/myCRED-addon-sell-content.php:728
4902
+ msgid "Purchase Template"
4903
+ msgstr "Plantilla de Compra"
4904
 
4905
+ #: addons/sell-content/myCRED-addon-sell-content.php:729
4906
+ msgid ""
4907
+ "The content will be replaced with this template when viewed by a user that "
4908
+ "has not paid for the content but can afford to pay."
4909
+ msgstr ""
4910
+ "El contenido se reemplazará con esta plantilla cuando lo vea un usuario que "
4911
+ "no ha pagado el contenido pero puede permitirse pagarlo."
 
 
4912
 
4913
+ #: addons/sell-content/myCRED-addon-sell-content.php:745
4914
+ msgid "Insufficient Funds Template"
4915
+ msgstr "Plantilla de fondos insuficientes"
 
4916
 
4917
+ #: addons/sell-content/myCRED-addon-sell-content.php:746
4918
+ msgid ""
4919
+ "The content will be replaced with this template when viewed by a user that "
4920
+ "has not paid for the content and can not afford to pay."
4921
+ msgstr ""
4922
+ "El contenido se reemplazará con esta plantilla cuando lo vea un usuario que "
4923
+ "no ha pagado por el contenido y no puede permitirse pagarlo."
4924
 
4925
+ #: addons/sell-content/myCRED-addon-sell-content.php:763
4926
+ msgid ""
4927
+ "The content will be replaced with this template when viewed by someone who "
4928
+ "is not logged in on your website."
4929
+ msgstr ""
4930
+ "El contenido se reemplazará con esta plantilla cuando lo vea alguien que no "
4931
+ "haya iniciado sesión en tu sitio web."
4932
 
4933
+ #: addons/sell-content/myCRED-addon-sell-content.php:1056
4934
+ msgid "Never expires"
4935
+ msgstr "No caduca nunca"
4936
 
4937
+ #: addons/sell-content/myCRED-addon-sell-content.php:1073
4938
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:495
4939
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:369
4940
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:373
4941
+ msgid "Price"
4942
+ msgstr "Precio"
4943
 
4944
+ #: addons/banking/services/mycred-service-central.php:110
4945
+ msgid "Central Bank Account"
4946
+ msgstr "Cuenta del Banco Central"
4947
 
4948
+ #: addons/banking/services/mycred-service-central.php:113
4949
+ msgid "The ID of the user representing the central bank."
4950
+ msgstr "ID del usuario que representa al banco central."
4951
 
4952
+ #: addons/banking/services/mycred-service-central.php:117
4953
+ msgid "Ignore Manual Adjustments"
4954
+ msgstr "Ignorar Ajustes Manuales"
4955
 
4956
+ #: addons/banking/services/mycred-service-interest.php:28
4957
+ msgid "%plural% interest rate payment"
4958
+ msgstr "%plural% pago de tasa de interés"
4959
 
4960
+ #: addons/banking/services/mycred-service-interest.php:429
4961
+ msgid "Daily Compound Schedule"
4962
+ msgstr "Programación de acumulación diaria"
4963
 
4964
+ #: addons/banking/services/mycred-service-interest.php:432
4965
+ #: addons/banking/services/mycred-service-interest.php:457
4966
+ #: addons/banking/services/mycred-service-payouts.php:728
4967
+ msgid "Year"
4968
+ msgstr "Año"
4969
 
4970
+ #: addons/banking/services/mycred-service-interest.php:433
4971
+ #: addons/banking/services/mycred-service-interest.php:458
4972
+ #: addons/banking/services/mycred-service-payouts.php:734
4973
+ #: addons/banking/includes/mycred-banking-functions.php:95
4974
+ msgid "Month"
4975
+ msgstr "Mes"
4976
 
4977
+ #: addons/banking/services/mycred-service-interest.php:434
4978
+ #: addons/banking/services/mycred-service-interest.php:459
4979
+ #: addons/banking/includes/mycred-banking-functions.php:85
4980
+ msgid "Day"
4981
+ msgstr "Día"
4982
 
4983
+ #: addons/banking/services/mycred-service-interest.php:454
4984
+ msgid "Payout Schedule"
4985
+ msgstr "Programa de pagos"
 
 
 
 
4986
 
4987
+ #: addons/banking/services/mycred-service-interest.php:481
4988
+ #: addons/banking/services/mycred-service-interest.php:652
4989
+ msgid "Interest Rate"
4990
+ msgstr "Tipo de Interés"
4991
 
4992
+ #: addons/banking/services/mycred-service-interest.php:493
4993
+ msgid "Payout Frequency"
4994
+ msgstr "Frecuencia de pago"
 
4995
 
4996
+ #: addons/banking/services/mycred-service-interest.php:506
4997
+ msgid "Payout Log Table"
4998
+ msgstr "Tabla de registro de pagos"
4999
 
5000
+ #: addons/banking/services/mycred-service-interest.php:519
5001
+ msgid ""
5002
+ "Changing the payout period once the service is enabled, will only take "
5003
+ "effect once the currently scheduled payout runs. To change this, you will "
5004
+ "also need to adjust the payout schedule above."
5005
+ msgstr ""
5006
+ "Cambiar el período de pago una vez que el servicio está habilitado, sólo "
5007
+ "tendrá efecto una vez que se ejecute el pago programado. Para cambiar esto, "
5008
+ "también tendrá que ajustar el calendario de pagos anterior."
5009
 
5010
+ #: addons/banking/services/mycred-service-interest.php:524
5011
+ msgid "Exclude by ID"
5012
+ msgstr "Excluir por ID"
5013
 
5014
+ #: addons/banking/services/mycred-service-interest.php:528
5015
+ #: addons/banking/services/mycred-service-interest.php:529
5016
+ #: addons/banking/services/mycred-service-payouts.php:791
5017
+ msgid "Comma separated list of user IDs"
5018
+ msgstr "Lista del ID de usuario delimitada por comas"
5019
+
5020
+ #: addons/banking/services/mycred-service-interest.php:535
5021
+ msgid "Exclude by Role"
5022
+ msgstr "Excluir por función"
5023
+
5024
+ #: addons/banking/services/mycred-service-interest.php:539
5025
+ msgid "Roles to exclude"
5026
+ msgstr "Funciones a excluir"
5027
 
5028
+ #: addons/banking/services/mycred-service-interest.php:655
5029
+ msgid "Leave empty to pay the default rate."
5030
+ msgstr "Dejar vacío para pagar la tasa predeterminada."
5031
 
5032
+ #: addons/banking/services/mycred-service-payouts.php:30
5033
+ msgid "Waiting to Start"
5034
+ msgstr "Esperando para empezar"
 
 
 
 
 
 
 
5035
 
5036
+ #: addons/banking/services/mycred-service-payouts.php:32
5037
+ msgid "Running"
5038
+ msgstr "En curso"
5039
 
5040
+ #: addons/banking/services/mycred-service-payouts.php:33
5041
+ msgid "Finished"
5042
+ msgstr "Finalizado"
 
5043
 
5044
+ #: addons/banking/services/mycred-service-payouts.php:34
5045
+ msgid "Stopped"
5046
+ msgstr "Detenido"
 
5047
 
5048
+ #: addons/banking/services/mycred-service-payouts.php:446
5049
+ msgid "Not yet started"
5050
+ msgstr "No iniciado aún"
 
5051
 
5052
+ #: addons/banking/services/mycred-service-payouts.php:457
5053
+ msgid "Currently Running"
5054
+ msgstr "En ejecución"
5055
 
5056
+ #: addons/banking/services/mycred-service-payouts.php:472
5057
+ msgid "View Schedule"
5058
+ msgstr "Ver programación"
5059
 
5060
+ #: addons/banking/services/mycred-service-payouts.php:472
5061
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
5062
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
5063
+ msgid "View"
5064
+ msgstr "Ver"
5065
 
5066
+ #: addons/banking/services/mycred-service-payouts.php:472
5067
+ msgid "Delete Schedule"
5068
+ msgstr "Eliminar Programación"
5069
 
5070
+ #: addons/banking/services/mycred-service-payouts.php:523
5071
+ #: addons/banking/services/mycred-service-payouts.php:766
5072
+ msgid "Min. Balance"
5073
+ msgstr "Saldo mín."
5074
 
5075
+ #: addons/banking/services/mycred-service-payouts.php:526
5076
+ #: addons/banking/services/mycred-service-payouts.php:773
5077
+ msgid "Max. Balance"
5078
+ msgstr "Saldo máx."
5079
 
5080
+ #: addons/banking/services/mycred-service-payouts.php:531
5081
+ msgid "Exclude Users"
5082
+ msgstr "Excluir Usuarios"
5083
 
5084
+ #: addons/banking/services/mycred-service-payouts.php:533
5085
+ msgid "Include Users"
5086
+ msgstr "Incluir Usuarios"
5087
 
5088
+ #: addons/banking/services/mycred-service-payouts.php:540
5089
+ msgid "Exclude Roles"
5090
+ msgstr "Excluir funciones"
 
 
 
5091
 
5092
+ #: addons/banking/services/mycred-service-payouts.php:542
5093
+ msgid "Include Roles"
5094
+ msgstr "Incluir funciones"
5095
 
5096
+ #: addons/banking/services/mycred-service-payouts.php:559
5097
+ #: addons/banking/services/mycred-service-payouts.php:879
5098
+ msgid "Job Title"
5099
+ msgstr "Puesto de trabajo"
5100
 
5101
+ #: addons/banking/services/mycred-service-payouts.php:573
5102
+ msgid "Start Date"
5103
+ msgstr "Fecha de inicio"
 
5104
 
5105
+ #: addons/banking/services/mycred-service-payouts.php:573
5106
+ msgid "Last Run"
5107
+ msgstr "Ultima Ejecución"
 
5108
 
5109
+ #: addons/banking/services/mycred-service-payouts.php:579
5110
+ msgid "Eligible"
5111
+ msgstr "Apto"
 
 
 
 
5112
 
5113
+ #: addons/banking/services/mycred-service-payouts.php:580
5114
+ #, php-format
5115
+ msgid "1 User"
5116
+ msgid_plural "%d Users"
5117
+ msgstr[0] "1 usuario"
5118
+ msgstr[1] "%d usuarios"
5119
 
5120
+ #: addons/banking/services/mycred-service-payouts.php:585
5121
+ msgid "Runs"
5122
+ msgstr "Ejecuciones"
 
 
 
 
5123
 
5124
+ #: addons/banking/services/mycred-service-payouts.php:586
5125
+ msgid "Infinite"
5126
+ msgstr "Infinito"
5127
 
5128
+ #: addons/banking/services/mycred-service-payouts.php:591
5129
+ #: addons/gateway/carts/mycred-wpecommerce.php:396
5130
+ msgid "Payout"
5131
+ msgstr "Pago"
5132
+
5133
+ #: addons/banking/services/mycred-service-payouts.php:609
5134
+ msgid "Will payout even if the central bank account has run out of funds."
5135
  msgstr ""
5136
+ "Pagará incluso si la cuenta del banco central se ha quedado sin fondos."
5137
 
5138
+ #: addons/banking/services/mycred-service-payouts.php:614
5139
+ msgid "Paid Out"
5140
+ msgstr "Pagado"
5141
 
5142
+ #: addons/banking/services/mycred-service-payouts.php:615
5143
+ msgid "Completed"
5144
+ msgstr "Finalizado"
5145
 
5146
+ #: addons/banking/services/mycred-service-payouts.php:616
5147
+ msgid "Misses"
5148
+ msgstr "Errores"
5149
 
5150
+ #: addons/banking/services/mycred-service-payouts.php:617
5151
+ msgid "Runs Left"
5152
+ msgstr "Ejecuciones restantes"
5153
+
5154
+ #: addons/banking/services/mycred-service-payouts.php:637
5155
  msgid ""
5156
+ "A miss is when a payout was declined by the plugin. This can be due to "
5157
+ "custom code declining the payout or if the user is excluded."
5158
  msgstr ""
5159
+ "Un error es cuando un plugin rechaza un pago. Esto puede deberse a que el "
5160
+ "código personalizado declina el pago o si el usuario está excluido."
5161
 
5162
+ #: addons/banking/services/mycred-service-payouts.php:682
5163
+ msgid "Schedule Title"
5164
+ msgstr "Título de programación"
5165
 
5166
+ #: addons/banking/services/mycred-service-payouts.php:694
5167
+ #: addons/banking/services/mycred-service-payouts.php:881
5168
+ msgid "Frequency"
5169
+ msgstr "Frecuencia"
 
 
 
5170
 
5171
+ #: addons/banking/services/mycred-service-payouts.php:715
5172
+ msgid "Payout even if the central bank account runs out of funds."
5173
+ msgstr "Pagar incluso si la cuenta del banco central se queda sin fondos."
5174
 
5175
+ #: addons/banking/services/mycred-service-payouts.php:722
5176
+ msgid "First Payout"
5177
+ msgstr "Primer pago"
5178
 
5179
+ #: addons/banking/services/mycred-service-payouts.php:754
5180
+ msgid "Repeat"
5181
+ msgstr "Repetir"
5182
 
5183
+ #: addons/banking/services/mycred-service-payouts.php:756
5184
+ msgid "Use -1 for infinite runs."
5185
+ msgstr "Utiliza -1 para ejecuciones infinitas."
 
 
5186
 
5187
+ #: addons/banking/services/mycred-service-payouts.php:784
5188
+ msgid "Limit by ID"
5189
+ msgstr "Límite por ID"
 
 
 
 
5190
 
5191
+ #: addons/banking/services/mycred-service-payouts.php:798
5192
+ msgid "Limit by Role(s)"
5193
+ msgstr "Límite por función(es)"
 
 
5194
 
5195
+ #: addons/banking/services/mycred-service-payouts.php:846
5196
+ msgid "Include:"
5197
+ msgstr "Incluir:"
 
5198
 
5199
+ #: addons/banking/services/mycred-service-payouts.php:847
5200
+ msgid "Exclude:"
5201
+ msgstr "Excluir:"
5202
 
5203
+ #: addons/banking/services/mycred-service-payouts.php:872
5204
+ msgid ""
5205
+ "As long as this service remains disabled, none of your scheduled payouts "
5206
+ "will run!"
5207
+ msgstr ""
5208
+ "Mientras este servicio permanezca desactivado, no se ejecutará ninguno de "
5209
+ "los pagos programados."
 
5210
 
5211
+ #: addons/banking/services/mycred-service-payouts.php:875
5212
+ msgid "Schedules"
5213
+ msgstr "Programaciones"
5214
+
5215
+ #: addons/banking/services/mycred-service-payouts.php:882
5216
+ msgid "Last Ran"
5217
+ msgstr "Última ejecución"
 
5218
 
5219
+ #: addons/banking/services/mycred-service-payouts.php:883
5220
+ msgid "Next Run"
5221
+ msgstr "Próxima ejecución"
5222
 
5223
+ #: addons/banking/services/mycred-service-payouts.php:891
5224
+ msgid "No schedules found."
5225
+ msgstr "No se ha encontrado ninguna programación."
5226
 
5227
+ #: addons/banking/services/mycred-service-payouts.php:955
5228
+ msgid "Schedule Added"
5229
+ msgstr "Programación agregada"
 
5230
 
5231
+ #: addons/banking/services/mycred-service-payouts.php:962
5232
+ msgid ""
5233
+ "While the recurring payout has been successfully saved, based on the limits "
5234
+ "you set, right now there are no users that are eligible for a payout!"
5235
+ msgstr ""
5236
+ "El pago recurrente se ha guardado con éxito, en base a los límites fijados. "
5237
+ "Ahora mismo no hay usuarios que sean aptos para un pago."
5238
 
5239
+ #: addons/banking/services/mycred-service-payouts.php:974
5240
+ #: addons/banking/services/mycred-service-payouts.php:988
5241
+ msgid "Schedule not found. Please refresh this page and try again."
5242
+ msgstr ""
5243
+ "Programación no encontrada. Actualiza esta página e inténtalo de nuevo."
5244
 
5245
+ #: addons/banking/services/mycred-service-payouts.php:993
5246
+ msgid "Schedule Deleted"
5247
+ msgstr "Programación borrada"
 
5248
 
5249
  #. also, "Cada Hora"
5250
  #: addons/banking/includes/mycred-banking-functions.php:79
5251
  msgid "Hourly"
5252
  msgstr "Por Hora"
5253
 
5254
+ #: addons/banking/includes/mycred-banking-functions.php:80
5255
+ msgid "Hour"
5256
+ msgstr "Hora"
5257
+
5258
  #: addons/banking/includes/mycred-banking-functions.php:84
5259
  msgid "Daily"
5260
+ msgstr "Por día"
5261
 
5262
  #: addons/banking/includes/mycred-banking-functions.php:89
5263
  msgid "Weekly"
5264
+ msgstr "Por semana"
5265
+
5266
+ #: addons/banking/includes/mycred-banking-functions.php:90
5267
+ msgid "Week"
5268
+ msgstr "Semana"
5269
 
5270
  #: addons/banking/includes/mycred-banking-functions.php:94
5271
  msgid "Monthly"
5272
+ msgstr "Por mes"
5273
 
5274
  #: addons/banking/includes/mycred-banking-functions.php:99
5275
  msgid "Quarterly"
5276
+ msgstr "Por trimestre"
5277
+
5278
+ #: addons/banking/includes/mycred-banking-functions.php:100
5279
+ msgid "Quarter"
5280
+ msgstr "Trimestre"
5281
 
5282
  #: addons/banking/includes/mycred-banking-functions.php:104
5283
  msgid "Semiannually"
5284
+ msgstr "Por semestre"
5285
+
5286
+ #: addons/banking/includes/mycred-banking-functions.php:105
5287
+ msgid "Semiannual"
5288
  msgstr "Semestral"
5289
 
5290
  #: addons/banking/includes/mycred-banking-functions.php:109
5291
  msgid "Annually"
5292
+ msgstr "Por año"
5293
+
5294
+ #: addons/banking/includes/mycred-banking-functions.php:110
5295
+ msgid "Annual"
5296
  msgstr "Anual"
5297
 
5298
+ #: addons/banking/includes/mycred-banking-functions.php:283
5299
+ msgid "A title must be set."
5300
+ msgstr "Se debe establecer un título."
5301
+
5302
+ #: addons/banking/includes/mycred-banking-functions.php:290
5303
+ msgid "The amount to payout can not be zero."
5304
+ msgstr "La cantidad a pagar no puede ser cero."
5305
+
5306
+ #: addons/banking/includes/mycred-banking-functions.php:296
5307
+ msgid "Start date can not be in the past."
5308
+ msgstr "La fecha de inicio no puede ser anterior al día de hoy."
5309
+
5310
+ #: addons/banking/includes/mycred-banking-functions.php:303
5311
+ msgid "Repeat can not be zero."
5312
+ msgstr "La repetición no puede ser cero."
5313
+
5314
+ #: addons/banking/includes/mycred-banking-functions.php:309
5315
+ msgid "Duplicate schedule."
5316
+ msgstr "Duplicar programación."
5317
+
5318
  #: addons/gateway/event-booking/mycred-eventespresso3.php:26
5319
  #: addons/gateway/event-booking/mycred-eventsmanager.php:594
 
5320
  #: addons/buy-creds/modules/buycred-module-core.php:710
5321
  msgid "Payments"
5322
  msgstr "Pagos"
5323
 
5324
  #: addons/gateway/event-booking/mycred-eventespresso3.php:27
5325
  #: addons/gateway/event-booking/mycred-eventsmanager.php:36
5326
+ #: addons/buy-creds/modules/buycred-module-pending.php:744
 
5327
  msgid "Pay Now"
5328
  msgstr "Pagar Ahora"
5329
 
5341
  #: addons/gateway/event-booking/mycred-eventespresso3.php:315
5342
  #: addons/gateway/event-booking/mycred-eventespresso3.php:340
5343
  msgid "Balance After Purchase"
5344
+ msgstr "Saldo Después de la Compra"
5345
 
5346
  #: addons/gateway/event-booking/mycred-eventespresso3.php:380
5347
  #, php-format
5355
 
5356
  #: addons/gateway/event-booking/mycred-eventespresso3.php:402
5357
  msgid "Gateway Settings"
5358
+ msgstr "Ajustes de la Pasarela de Pago"
5359
 
5360
  #: addons/gateway/event-booking/mycred-eventespresso3.php:442
5361
  #: addons/gateway/event-booking/mycred-eventsmanager.php:580
 
5362
  #, php-format
5363
  msgid "How many %s is 1 %s worth?"
5364
  msgstr "¿Cuantos %s vale un %s?"
5366
  #. also, "Titulo de la Pasarela de Pago" depending on the technical nature of the action being done
5367
  #: addons/gateway/event-booking/mycred-eventespresso3.php:463
5368
  msgid "Gateway Title"
5369
+ msgstr "Título de la Pasarela de pago"
5370
 
5371
  #: addons/gateway/event-booking/mycred-eventespresso3.php:465
5372
  msgid "Title to show on Payment page"
5373
+ msgstr "Título que se mostrará en tu página de Pago"
5374
 
5375
  #: addons/gateway/event-booking/mycred-eventespresso3.php:468
5376
  msgid "Payment Type"
5377
+ msgstr "Tipo de Pago"
5378
 
5379
  #: addons/gateway/event-booking/mycred-eventespresso3.php:470
5380
  msgid "Title to show on receipts and logs"
5381
+ msgstr "El título de la factura y los registros"
5382
 
5383
  #: addons/gateway/event-booking/mycred-eventespresso3.php:475
5384
  msgid "Pay Button"
5393
  "You can disable purchases using this gateway by adding a custom Event Meta: "
5394
  "<code>mycred_no_sale</code>"
5395
  msgstr ""
5396
+ "Puedes inhabilitar compras a través de esta pasarela mediante la adición de "
5397
  "un Evento Meta personalizado: <code>mycred_no_sale</code>"
5398
 
5399
  #: addons/gateway/event-booking/mycred-eventespresso3.php:506
5400
  msgid "Users must be logged in to use this gateway!"
5401
+ msgstr ""
5402
+ "¡Los usuarios deben haber iniciado sesión para usar esta pasarela de pago!"
5403
 
5404
  #: addons/gateway/event-booking/mycred-eventespresso3.php:510
5405
  #: addons/gateway/event-booking/mycred-eventsmanager.php:625
 
5406
  #: addons/gateway/carts/mycred-wpecommerce.php:393
5407
  #: addons/gateway/carts/mycred-woocommerce.php:176
5408
  msgid "Profit Sharing"
5410
 
5411
  #: addons/gateway/event-booking/mycred-eventespresso3.php:512
5412
  #: addons/gateway/event-booking/mycred-eventsmanager.php:628
 
5413
  #: addons/gateway/carts/mycred-wpecommerce.php:397
5414
  #: addons/gateway/carts/mycred-woocommerce.php:178
5415
  msgid "Option to share sales with the product owner. Use zero to disable."
5431
  "Message to show users on the payment page before they are charged. Leave "
5432
  "empty to hide."
5433
  msgstr ""
5434
+ "Mensaje de la página de pago antes de cobrar al usuario. Para ocultar el "
5435
+ "mensaje, dejar en blanco."
5436
 
5437
  #: addons/gateway/event-booking/mycred-eventespresso3.php:533
5438
  msgid "Insolvent users"
5441
  #: addons/gateway/event-booking/mycred-eventespresso3.php:535
5442
  msgid "Message to show users who do not have enough points to pay."
5443
  msgstr ""
5444
+ "Mostrar mensaje a los usuarios que no tienen suficientes puntos para pagar."
 
5445
 
5446
  #: addons/gateway/event-booking/mycred-eventespresso3.php:538
5447
  #: addons/gateway/carts/mycred-wpecommerce.php:411
5452
  msgid "Message to show visitors (users not logged in) on the payment page."
5453
  msgstr ""
5454
  "Mostrar mensaje a los visitantes (usuarios que no han iniciado sesión) en la "
5455
+ "página de pago."
5456
 
5457
  #: addons/gateway/event-booking/mycred-eventsmanager.php:30
 
5458
  msgid "Payment for tickets to %link_with_title%"
5459
  msgstr "Pago de entradas para %link_with_title%"
5460
 
5461
  #: addons/gateway/event-booking/mycred-eventsmanager.php:31
 
5462
  msgid "Ticket refund for %link_with_title%"
5463
+ msgstr "Reembolso de entrada para %link_with_title%"
5464
 
5465
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35
 
5466
  msgid "Pay using your %_plural% balance"
5467
  msgstr "Paga utilizando tu saldo de %_plural%"
5468
 
5469
  #: addons/gateway/event-booking/mycred-eventsmanager.php:37
 
5470
  msgid "Pay"
5471
  msgstr "Pagar"
5472
 
5473
  #: addons/gateway/event-booking/mycred-eventsmanager.php:40
 
5474
  msgid "Thank you for your payment!"
5475
  msgstr "¡Gracias por su pago!"
5476
 
5477
  #: addons/gateway/event-booking/mycred-eventsmanager.php:41
 
5478
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
5479
  msgstr "Lo siento pero no puedes pagar estos billetes usando %_plural%"
5480
 
5481
  #: addons/gateway/event-booking/mycred-eventsmanager.php:366
 
5482
  msgid "Ticket Type"
5483
  msgstr "Clase de Billete"
5484
 
5485
  #: addons/gateway/event-booking/mycred-eventsmanager.php:377
 
5486
  msgid "Spaces"
5487
  msgstr "Espacios"
5488
 
5489
  #: addons/gateway/event-booking/mycred-eventsmanager.php:472
5490
  msgid "Balance After Payment"
5491
+ msgstr "Saldo despues del Pago"
5492
 
5493
  #: addons/gateway/event-booking/mycred-eventsmanager.php:585
5494
  msgid "Click to toggle"
5497
  #: addons/gateway/event-booking/mycred-eventsmanager.php:586
5498
  #, php-format
5499
  msgid "%s Payments"
5500
+ msgstr "Pagos %s"
5501
 
5502
  #: addons/gateway/event-booking/mycred-eventsmanager.php:596
 
5503
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
5504
+ msgstr ""
5505
+ "Deshabilitado - Los usuarios NO PUEDEN pagar entradas utilizando %plural%."
5506
 
5507
  #: addons/gateway/event-booking/mycred-eventsmanager.php:597
 
5508
  msgid "Single - Users can ONLY pay for tickets using %plural%."
5509
+ msgstr ""
5510
+ "Individual - Los usuarios SOLO pueden pagar entradas utilizando %plural%."
5511
 
5512
  #: addons/gateway/event-booking/mycred-eventsmanager.php:598
 
5513
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
5514
  msgstr ""
5515
+ "Multi - Los usuarios pueden pagar entradas utilizando otras pasarelas de "
5516
+ "pago o %plural%."
5517
 
5518
  #: addons/gateway/event-booking/mycred-eventsmanager.php:618
5519
  #: addons/gateway/event-booking/mycred-eventsmanager.php:651
 
 
5520
  msgid "Refunds"
5521
  msgstr "Reembolsos"
5522
 
5526
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
5527
  msgstr ""
5528
  "El porcentaje de la cantidad pagada que se reembolsará si se cancela una "
5529
+ "reserva. Utilice cero para no ofrecer ningún reembolso. No se reembolsan las "
5530
+ "reservas \"Rechazadas\"."
5531
 
5532
  #: addons/gateway/event-booking/mycred-eventsmanager.php:644
 
5533
  msgid "Purchases"
5534
  msgstr "Compras"
5535
 
5536
  #: addons/gateway/event-booking/mycred-eventsmanager.php:661
 
5537
  msgid "Payment Link Label"
5538
  msgstr "La Etiqueta del Enlace de Pago"
5539
 
5540
  #: addons/gateway/event-booking/mycred-eventsmanager.php:664
 
5541
  msgid ""
5542
  "The payment link shows / hides the payment form under \"My Bookings\". No "
5543
  "HTML allowed."
5544
  msgstr ""
5545
  "El enlace de pago muestra / oculta el formulario de pago en \"Mis Reservas\"."
5546
+ " No se permite HTML."
5547
 
5548
  #: addons/gateway/event-booking/mycred-eventsmanager.php:668
 
5549
  msgid "Payment Header"
5550
  msgstr "Encabezado de Pago"
5551
 
5552
  #: addons/gateway/event-booking/mycred-eventsmanager.php:671
 
5553
  msgid "Shown on top of the payment form. No HTML allowed."
5554
+ msgstr ""
5555
+ "Mostrar en la parte superior del formulario de pago. No se permite HTML."
5556
 
5557
  #: addons/gateway/event-booking/mycred-eventsmanager.php:678
 
5558
  msgid "The button label for payments. No HTML allowed!"
5559
+ msgstr "La etiqueta para el botón de pagos. No se permite HTML."
5560
 
5561
  #: addons/gateway/event-booking/mycred-eventsmanager.php:682
 
5562
  #: addons/gateway/carts/mycred-wpecommerce.php:404
5563
  msgid "Messages"
5564
  msgstr "Mensajes"
5565
 
5566
  #: addons/gateway/event-booking/mycred-eventsmanager.php:685
 
5567
  msgid "Successful Payments"
5568
+ msgstr "Pagos efectuados correctamente"
5569
 
5570
  #: addons/gateway/event-booking/mycred-eventsmanager.php:688
5571
  #: addons/gateway/event-booking/mycred-eventsmanager.php:695
 
 
5572
  msgid "No HTML allowed!"
5573
  msgstr "¡No se permite HTML!"
5574
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5575
  #: addons/gateway/carts/mycred-wpecommerce.php:20
5576
  msgid "Payment for Order: #%order_id%"
5577
+ msgstr "Pago del Pedido: #%order_id%"
5578
 
5579
  #: addons/gateway/carts/mycred-wpecommerce.php:23
5580
  msgid "Store sale"
5582
 
5583
  #: addons/gateway/carts/mycred-wpecommerce.php:25
5584
  msgid "You must be logged in to use this gateway"
5585
+ msgstr "Debe esta conectado para usar esta pasarela de pago"
5586
 
5587
  #: addons/gateway/carts/mycred-wpecommerce.php:26
5588
  msgid "Insufficient Funds."
5590
 
5591
  #: addons/gateway/carts/mycred-wpecommerce.php:27
5592
  msgid "Deduct the amount from your balance."
5593
+ msgstr "Restar la cantidad de tu saldo."
5594
 
5595
  #: addons/gateway/carts/mycred-wpecommerce.php:107
5596
  #: addons/buy-creds/gateways/bank-transfer.php:139
5624
 
5625
  #: addons/gateway/carts/mycred-wpecommerce.php:412
5626
  msgid "Message to show visitors who are not logged in."
5627
+ msgstr "Mensaje que se muestra a los visitantes que no han iniciado sesión."
5628
 
5629
  #: addons/gateway/carts/mycred-wpecommerce.php:416
5630
  msgid ""
5631
  "Message to show when users does not have enough %plural% to pay using this "
5632
  "gateway."
5633
  msgstr ""
5634
+ "Mensaje que se muestra cuando los usuarios no tienen suficientes %plural% "
5635
+ "para pagar usando esta pasarela de pago."
5636
+
5637
+ #: addons/gateway/carts/mycred-woocommerce.php:30
5638
+ msgid "Let users pay using points."
5639
+ msgstr "Dejar que los usuarios paguen con puntos."
5640
 
5641
  #: addons/gateway/carts/mycred-woocommerce.php:89
5642
  msgid "Enable/Disable"
5651
  "Users who are not logged in or excluded from using myCRED will not have "
5652
  "access to this gateway!"
5653
  msgstr ""
5654
+ "Los usuarios que no han iniciado sesión o los que han sido excluidos del uso "
5655
+ "de myCRED no tendrán acceso a esta pasarela de pago."
5656
 
5657
  #: addons/gateway/carts/mycred-woocommerce.php:98
5658
  msgid "Title to show for this payment option."
5659
+ msgstr "Mostrar este título para esta opción de pago."
5660
 
5661
  #: addons/gateway/carts/mycred-woocommerce.php:99
5662
  msgid "Pay with myCRED"
5675
  #: addons/gateway/carts/mycred-woocommerce.php:127
5676
  msgid "Select the point type users can use to pay."
5677
  msgstr ""
5678
+ "Elige el tipo de punto que los usuarios pueden utilizar para realizar pagos."
5679
 
5680
  #: addons/gateway/carts/mycred-woocommerce.php:132
5681
  msgid "How much is 1 %_singular% worth in %currency%?"
5682
+ msgstr "¿Cuanto es un 1 %_singular% en %currency%?"
5683
 
5684
  #: addons/gateway/carts/mycred-woocommerce.php:143
5685
  msgid "Show Total"
5705
  msgid "Order Total in %_plural%"
5706
  msgstr "Total del Pedido en %_plural%"
5707
 
5708
+ #: addons/gateway/carts/mycred-woocommerce.php:185
5709
+ msgid "Log entry template for profit sharing."
5710
+ msgstr "Plantilla para entradas de registro para el reparto de ganancias."
5711
+
5712
+ #: addons/gateway/carts/mycred-woocommerce.php:191
5713
+ msgid "Log entry template for refunds of profit shares."
5714
+ msgstr "Plantilla de entrada de registro para reembolsos de ganancias."
5715
+
5716
+ #: addons/gateway/carts/mycred-woocommerce.php:270
5717
+ #, php-format
5718
+ msgid "%s Payment"
5719
+ msgstr "%s Pago"
5720
+
5721
+ #: addons/gateway/carts/mycred-woocommerce.php:294
5722
+ msgid "You must be logged in to pay with %_plural%"
5723
+ msgstr "Debes iniciar sesión para pagar con %_plural%"
5724
+
5725
+ #: addons/gateway/carts/mycred-woocommerce.php:302
5726
+ msgid "You can not use this gateway. Please try a different payment option."
5727
+ msgstr ""
5728
+ "No puede usar esta pasarela de pago. Por favor prueba una opción de pago "
5729
+ "diferente."
5730
+
5731
+ #: addons/gateway/carts/mycred-woocommerce.php:319
5732
+ #: addons/sell-content/includes/mycred-sell-functions.php:534
5733
+ msgid "Insufficient funds."
5734
+ msgstr "Fondos insuficientes."
5735
+
5736
+ #: addons/gateway/carts/mycred-woocommerce.php:422
5737
+ #, php-format
5738
+ msgctxt "%s = Point amount formatted"
5739
+ msgid "Refunded %s"
5740
+ msgstr "Reembolsado %s"
5741
+
5742
+ #: addons/gateway/carts/mycred-woocommerce.php:472
5743
+ msgid "Your account has successfully been charged."
5744
+ msgstr "Se ha cobrado el importe a su cuenta con éxito."
5745
+
5746
+ #: addons/transfer/includes/mycred-transfer-widgets.php:19
5747
+ #, php-format
5748
+ msgid "(%s) Transfer"
5749
+ msgstr "(%s) Transfererir"
5750
+
5751
+ #: addons/transfer/includes/mycred-transfer-widgets.php:22
5752
+ msgid "Allow transfers between users."
5753
+ msgstr "Permitir transferencias entre usuarios."
5754
+
5755
+ #: addons/transfer/includes/mycred-transfer-widgets.php:95
5756
+ msgid "Show users balance"
5757
+ msgstr "Mostrar el saldo de los usuarios"
5758
+
5759
+ #: addons/transfer/includes/mycred-transfer-widgets.php:98
5760
+ msgid "Show users limit"
5761
+ msgstr "Mostrar el límite de los usuarios"
5762
+
5763
+ #: addons/transfer/includes/mycred-transfer-widgets.php:113
5764
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
5765
+ #: addons/buy-creds/modules/buycred-module-pending.php:576
5766
+ #: addons/buy-creds/modules/buycred-module-core.php:1487
5767
+ msgid "Recipient"
5768
+ msgstr "Destinatario"
5769
+
5770
+ #: addons/transfer/includes/mycred-transfer-widgets.php:117
5771
+ msgid "Recipient Placeholder"
5772
+ msgstr "Marcador de posición del destinatario"
5773
+
5774
+ #: addons/transfer/includes/mycred-transfer-widgets.php:125
5775
+ msgid "Message for Excluded Users"
5776
+ msgstr "Mensaje para usuarios excluidos"
5777
+
5778
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:157
5779
+ msgid "username"
5780
+ msgstr "nombre de usuario"
5781
+
5782
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:160
5783
+ msgid "email"
5784
+ msgstr "correo electrónico"
5785
+
5786
+ #. is this recipients plural or recipient's with an apostrophe missing?
5787
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:162
5788
+ #, php-format
5789
+ msgid "recipients %s"
5790
+ msgstr "destinatarios %s"
5791
+
5792
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:128
5793
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:211
5794
+ msgid "No users found with this rank"
5795
+ msgstr "No se ha encontrado ningún usuario con esta categoría"
5796
+
5797
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:135
5798
+ msgid "Rank ID is required!"
5799
+ msgstr "ID de Categoría obligatorio"
5800
+
5801
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:103
5802
+ msgid "Hooks"
5803
+ msgstr "Hooks"
5804
+
5805
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:44
5806
+ #, php-format
5807
+ msgid "Total %s:"
5808
+ msgstr "Total de %s:"
5809
+
5810
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:138
5811
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:266
5812
+ #, php-format
5813
+ msgid "Total amount of %s in circulation"
5814
+ msgstr "Cantidad total de%s en circulación"
5815
+
5816
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:171
5817
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:301
5818
+ msgid "Total gains (%)"
5819
+ msgstr "Beneficios totales (%)"
5820
+
5821
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:174
5822
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:305
5823
+ msgid "Total loses (%)"
5824
+ msgstr "Total de pérdidas (%)"
5825
+
5826
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:178
5827
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:308
5828
+ #, php-format
5829
+ msgid "Total Gained: %s"
5830
+ msgstr "Total ganado: %s"
5831
+
5832
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:178
5833
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:308
5834
+ #, php-format
5835
+ msgid "Total Spent: %s"
5836
+ msgstr "Total gastado: %s"
5837
+
5838
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:192
5839
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:322
5840
+ msgid "This Year"
5841
+ msgstr "Este año"
5842
+
5843
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:196
5844
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:198
5845
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:200
5846
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
5847
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:326
5848
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:328
5849
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:330
5850
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:332
5851
+ #: addons/badges/includes/mycred-badge-functions.php:268
5852
+ msgid "Gained"
5853
+ msgstr "Ganado"
5854
+
5855
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:197
5856
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:199
5857
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:201
5858
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
5859
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:327
5860
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:329
5861
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:331
5862
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:333
5863
+ #: addons/badges/includes/mycred-badge-functions.php:268
5864
+ msgid "Lost"
5865
+ msgstr "Perdido"
5866
+
5867
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
5868
+ msgid ""
5869
+ "Most common ways your users have lost or spent points during this period."
5870
+ msgstr ""
5871
+ "Maneras más comunes en las que tus usuarios han perdido o gastado puntos "
5872
+ "durante este período."
5873
+
5874
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
5875
+ msgid ""
5876
+ "Most common ways your users have lost or spent %_plural% during this period."
5877
+ msgstr ""
5878
+ "La mayoría de las formas habituales en que tus usuarios han perdido o "
5879
+ "gastado %_plural% durante este período."
5880
+
5881
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
5882
+ msgid "Loses in the last 10 days"
5883
+ msgstr "Pérdidas en los últimos 10 días"
5884
+
5885
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
5886
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
5887
+ msgid "No data found"
5888
+ msgstr "No se han encontrado datos"
5889
+
5890
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
5891
+ msgid "Most common ways your users have gained points during this period."
5892
+ msgstr ""
5893
+ "Maneras más comunes en las que tus usuarios han ganado puntos durante este "
5894
+ "período."
5895
+
5896
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
5897
+ msgid "Most common ways your users have gained %_plural% during this period."
5898
+ msgstr ""
5899
+ "La mayoría de las formas habituales en que tus usuarios han ganado %_plural% "
5900
+ "durante este período."
5901
+
5902
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
5903
+ msgid "Gains in the last 10 days"
5904
+ msgstr "Ganancias en los últimos 10 días"
5905
+
5906
+ #: addons/badges/includes/mycred-badge-functions.php:249
5907
+ #, php-format
5908
+ msgid "Level %s"
5909
+ msgstr "Nivel %s"
5910
+
5911
+ #: addons/badges/includes/mycred-badge-functions.php:266
5912
+ #, php-format
5913
+ msgctxt "\"Points\" for \"reference\" x times"
5914
+ msgid "%s for \"%s\" x %d"
5915
+ msgstr "%s por \"%s\" x % d"
5916
+
5917
+ #: addons/badges/includes/mycred-badge-functions.php:268
5918
+ #, php-format
5919
+ msgctxt "\"Gained/Lost\" \"x points\" for \"reference\""
5920
+ msgid "%s %s for \"%s\""
5921
+ msgstr "%s %s por “%s”"
5922
 
5923
+ #: addons/coupons/includes/mycred-coupon-functions.php:393
5924
+ msgid "An unknown error occurred. Coupon not used."
5925
+ msgstr "Ocurrió un error desconocido. Cupón no utilizado."
 
5926
 
5927
+ #: addons/sell-content/includes/mycred-sell-functions.php:525
5928
+ #, php-format
5929
+ msgctxt "Point type name"
5930
+ msgid "You can not pay using %s"
5931
+ msgstr "No puede pagar con %s"
5932
 
5933
+ #: addons/sell-content/includes/mycred-sell-functions.php:786
5934
+ #, php-format
5935
+ msgctxt "all post type name"
5936
+ msgid "All %s"
5937
+ msgstr "Todos los %s"
5938
 
5939
+ #: addons/sell-content/includes/mycred-sell-functions.php:790
5940
+ #, php-format
5941
+ msgctxt "all post type name"
5942
+ msgid "%s I manually select"
5943
+ msgstr "%s que he seleccionado manualmente"
5944
 
5945
+ #: addons/sell-content/includes/mycred-sell-functions.php:794
5946
+ #, php-format
5947
+ msgctxt "%s = post type name"
5948
+ msgid "All %s except"
5949
+ msgstr "Todos los %s excepto"
5950
 
5951
+ #: addons/sell-content/includes/mycred-sell-functions.php:795
5952
  #, php-format
5953
+ msgctxt "%s = post type name"
5954
+ msgid "Comma separated list of %s IDs to exclude"
5955
+ msgstr "Lista separada por comas de ID de %s a excluir"
5956
 
5957
+ #: addons/sell-content/includes/mycred-sell-functions.php:798
5958
+ #, php-format
5959
+ msgctxt "%s = post type name"
5960
+ msgid "Only %s"
5961
+ msgstr "Sólo %s"
5962
 
5963
+ #: addons/sell-content/includes/mycred-sell-functions.php:799
5964
+ #, php-format
5965
+ msgctxt "%s = post type name"
5966
+ msgid "Comma separated list of %s IDs"
5967
+ msgstr "Llista dels ID de %s separados por comas"
5968
 
5969
+ #: addons/sell-content/includes/mycred-sell-functions.php:811
5970
+ #, php-format
5971
+ msgctxt "e.g. Only \"Posts\" in \"Categories\""
5972
+ msgid "Only %s in %s"
5973
+ msgstr "Solo %s en %s"
5974
 
5975
+ #: addons/sell-content/includes/mycred-sell-functions.php:812
5976
+ #: addons/sell-content/includes/mycred-sell-functions.php:816
5977
+ #: addons/sell-content/includes/mycred-sell-functions.php:822
5978
+ #: addons/sell-content/includes/mycred-sell-functions.php:826
5979
+ #, php-format
5980
+ msgctxt "%s = taxonomy name"
5981
+ msgid "Comma separated list of %s slugs"
5982
+ msgstr "Lista separada por comas de slugs de %s"
5983
 
5984
+ #: addons/sell-content/includes/mycred-sell-functions.php:815
5985
+ #, php-format
5986
+ msgctxt "e.g. Only \"Posts\" not in \"Categories\""
5987
+ msgid "Only %s not in %s"
5988
+ msgstr "Solo %s que no estén en %s"
5989
 
5990
+ #: addons/sell-content/includes/mycred-sell-functions.php:821
 
5991
  #, php-format
5992
+ msgctxt "e.g. Only \"Posts\" with \"Tags\""
5993
+ msgid "Only %s with %s"
5994
+ msgstr "Solo %s con %s"
5995
 
5996
+ #: addons/sell-content/includes/mycred-sell-functions.php:825
5997
+ #, php-format
5998
+ msgctxt "e.g. Only \"Posts\" without \"Tags\""
5999
+ msgid "Only %s without %s"
6000
+ msgstr "Solo %s sin %s"
6001
 
6002
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:68
6003
+ msgid ""
6004
+ "This shortcode can not be used in content that has not been set for sale!"
6005
+ msgstr ""
6006
+ "Este código corto no se puede utilizar en contenido que no ha sido puesto a "
6007
+ "la venta."
6008
 
6009
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:70
6010
+ msgid ""
6011
+ "This content is currently unattainable. Apologies for the inconvenience."
6012
+ msgstr "Este contenido no está disponible actualmente. Disculpa las molestias."
6013
 
6014
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:204
6015
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
6016
+ #: addons/buy-creds/modules/buycred-module-pending.php:297
6017
+ #: addons/buy-creds/modules/buycred-module-pending.php:648
6018
+ #: addons/buy-creds/modules/buycred-module-pending.php:761
6019
  #: addons/buy-creds/gateways/bank-transfer.php:141
6020
  msgid "Cost"
6021
  msgstr "Coste"
6024
  msgid "Never"
6025
  msgstr "Nunca"
6026
 
6027
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:250
6028
+ #, php-format
6029
+ msgctxt "e.g. 10 hours"
6030
+ msgid "Purchase expires in %s"
6031
+ msgstr "La compra expira en %s"
6032
+
6033
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:163
6034
  msgid "Select currency"
6035
+ msgstr "Seleccionar moneda"
6036
+
6037
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:225
6038
+ #, php-format
6039
+ msgctxt "%s is replaced with the point amount and name."
6040
+ msgid "Received new request to purchase %s."
6041
+ msgstr "Recibió una nueva solicitud para comprar %s."
6042
 
6043
  #. also, "Pago de Prueba" depending on context
6044
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:445
6049
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:451
6050
  #: addons/buy-creds/gateways/bank-transfer.php:129
6051
  msgid "Payment"
6052
+ msgstr "Pago"
6053
+
6054
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:576
6055
+ msgid "First Name"
6056
+ msgstr "Nombre"
6057
+
6058
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
6059
+ msgid "Last Name"
6060
+ msgstr "Apellidos"
6061
+
6062
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:590
6063
+ msgid "Address Line 1"
6064
+ msgstr "Dirección línea 1"
6065
+
6066
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:598
6067
+ msgid "Address Line 2"
6068
+ msgstr "Dirección línea 2"
6069
+
6070
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:606
6071
+ msgid "City"
6072
+ msgstr "Ciudad"
6073
+
6074
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:612
6075
+ msgid "Zip"
6076
+ msgstr "Código postal"
6077
+
6078
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
6079
+ msgid "State"
6080
+ msgstr "Provincia"
6081
+
6082
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:628
6083
+ msgid "Country"
6084
+ msgstr "País"
6085
+
6086
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:633
6087
+ msgid "Choose Country"
6088
+ msgstr "Elija país"
6089
 
6090
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:685
6091
  #: addons/buy-creds/gateways/bank-transfer.php:147
6093
  msgid "%s Purchase"
6094
  msgstr "Compra %s"
6095
 
6096
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:691
6097
+ msgctxt "buyCRED order description"
6098
+ msgid "Item"
6099
+ msgstr "Artículo"
6100
+
6101
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:786
6102
  #, php-format
6103
  msgid "Continue to %s"
6106
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:787
6107
  #: addons/buy-creds/gateways/bitpay.php:225
6108
  msgid "Click here if you are not automatically redirected"
6109
+ msgstr "Haga clic aqui si no eres redirigido automáticamente"
6110
 
6111
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1501
6112
  msgid "January"
6156
  msgid "December"
6157
  msgstr "Diciembre"
6158
 
6159
+ #: addons/buy-creds/modules/buycred-module-pending.php:140
6160
  msgctxt "Post Type General Name"
6161
  msgid "Pending Payments"
6162
  msgstr "Pagos Pendientes"
6163
 
6164
+ #: addons/buy-creds/modules/buycred-module-pending.php:141
6165
  msgctxt "Post Type Singular Name"
6166
  msgid "Pending Payment"
6167
  msgstr "Pago Pendiente"
6168
 
 
6169
  #: addons/buy-creds/modules/buycred-module-pending.php:142
6170
+ #: addons/buy-creds/modules/buycred-module-pending.php:144
6171
+ #: addons/buy-creds/modules/buycred-module-pending.php:234
6172
+ #: addons/buy-creds/modules/buycred-module-pending.php:235
6173
  msgid "Pending Payments"
6174
  msgstr "Pagos Pendientes"
6175
 
6176
+ #: addons/buy-creds/modules/buycred-module-pending.php:148
6177
  msgid "Edit Pending Payment"
6178
  msgstr "Editar Pago Pendiente"
6179
 
6180
+ #: addons/buy-creds/modules/buycred-module-pending.php:151
6181
+ #: addons/buy-creds/modules/buycred-module-pending.php:152
6182
  msgid "Not found in Trash"
6183
+ msgstr "No se ha encontrado en la Papelera"
6184
+
6185
+ #: addons/buy-creds/modules/buycred-module-pending.php:182
6186
+ #: addons/buy-creds/modules/buycred-module-pending.php:183
6187
+ #: addons/buy-creds/modules/buycred-module-pending.php:184
6188
+ #: addons/buy-creds/modules/buycred-module-pending.php:185
6189
+ #: addons/buy-creds/modules/buycred-module-pending.php:186
6190
+ #: addons/buy-creds/modules/buycred-module-pending.php:187
6191
+ #: addons/buy-creds/modules/buycred-module-pending.php:188
6192
+ #: addons/buy-creds/modules/buycred-module-pending.php:189
6193
+ #: addons/buy-creds/modules/buycred-module-pending.php:190
6194
+ msgid "Payment Updated."
6195
+ msgstr "Pago actualizado."
6196
+
6197
+ #: addons/buy-creds/modules/buycred-module-pending.php:218
6198
+ msgid "Pending payment successfully credited to account."
6199
+ msgstr "Pago pendiente abonado con éxito en cuenta."
6200
+
6201
+ #: addons/buy-creds/modules/buycred-module-pending.php:220
6202
+ msgid "Failed to credit the pending payment to account."
6203
+ msgstr "No se pudo abonar el pago pendiente a la cuenta."
6204
 
6205
+ #: addons/buy-creds/modules/buycred-module-pending.php:293
6206
+ #: addons/buy-creds/modules/buycred-module-pending.php:758
6207
  #: addons/buy-creds/modules/buycred-module-core.php:771
6208
  #: addons/buy-creds/gateways/bank-transfer.php:142
6209
  msgid "Transaction ID"
6210
+ msgstr "ID de la Transacción"
6211
 
6212
+ #: addons/buy-creds/modules/buycred-module-pending.php:295
6213
  #: addons/buy-creds/modules/buycred-module-core.php:767
6214
  msgid "Buyer"
6215
  msgstr "Comprador"
6216
 
6217
+ #: addons/buy-creds/modules/buycred-module-pending.php:298
6218
+ #: addons/buy-creds/modules/buycred-module-pending.php:623
6219
+ #: addons/buy-creds/modules/buycred-module-pending.php:759
6220
  #: addons/buy-creds/modules/buycred-module-core.php:766
6221
  #: addons/buy-creds/includes/buycred-functions.php:119
6222
  msgid "Gateway"
6223
  msgstr "Pasarela"
6224
 
6225
+ #: addons/buy-creds/modules/buycred-module-pending.php:299
6226
  msgid "Type"
6227
+ msgstr "Tipo"
6228
 
6229
+ #: addons/buy-creds/modules/buycred-module-pending.php:396
6230
+ #: addons/buy-creds/modules/buycred-module-pending.php:505
6231
  msgid "Pay Out"
6232
+ msgstr "Abono"
6233
 
6234
+ #: addons/buy-creds/modules/buycred-module-pending.php:468
6235
+ msgid "Pending Payment"
6236
+ msgstr "Pago pendiente"
6237
+
6238
+ #: addons/buy-creds/modules/buycred-module-pending.php:500
6239
  msgid "Save"
6240
  msgstr "Guardar"
6241
 
6242
+ #: addons/buy-creds/modules/buycred-module-pending.php:506
6243
+ msgid "Trash"
6244
+ msgstr "Basura"
6245
+
6246
+ #: addons/buy-creds/modules/buycred-module-pending.php:570
6247
+ msgid "Payer"
6248
+ msgstr "Pagador"
6249
+
6250
+ #: addons/buy-creds/modules/buycred-module-pending.php:654
6251
  #: addons/buy-creds/gateways/bank-transfer.php:209
6252
  #: addons/buy-creds/gateways/bitpay.php:251
6253
  #: addons/buy-creds/gateways/paypal-standard.php:279
6255
  msgid "Currency"
6256
  msgstr "Moneda"
6257
 
6258
+ #: addons/buy-creds/modules/buycred-module-pending.php:679
6259
+ msgid "Pending request created."
6260
+ msgstr "Solicitud pendiente creada."
6261
+
6262
+ #: addons/buy-creds/modules/buycred-module-pending.php:727
6263
+ #, php-format
6264
+ msgid "Pending payment updated by %s"
6265
+ msgstr "Pago pendiente actualizado por %s"
6266
+
6267
+ #: addons/buy-creds/modules/buycred-module-pending.php:825
6268
  msgid "No pending payments found"
6269
+ msgstr "No se han encontrado pagos pendientes"
6270
 
6271
  #: addons/buy-creds/modules/buycred-module-core.php:28
6272
  #: addons/buy-creds/modules/buycred-module-core.php:29
6274
  msgid "Payment Gateways"
6275
  msgstr "Pasarela de Pago"
6276
 
6277
+ #: addons/buy-creds/modules/buycred-module-core.php:138
6278
+ msgid "Bank Transfer"
6279
+ msgstr "Transferencia Bancaria"
6280
+
6281
  #: addons/buy-creds/modules/buycred-module-core.php:301
6282
  msgid "Please login to purchase %_plural%"
6283
+ msgstr "Inicia sesión antes de comprar %_plural%"
6284
 
6285
  #: addons/buy-creds/modules/buycred-module-core.php:316
6286
  msgid "Gift purchase from %display_name%."
6287
+ msgstr "Compra de regalo de parte de %display_name%."
6288
 
6289
  #: addons/buy-creds/modules/buycred-module-core.php:336
6290
  msgid ""
6291
  "Select the point types that users can buy. You must select at least one!"
6292
  msgstr ""
6293
+ "Elige los tipos de punto que el usuario puede comprar. Debes eligir al menos "
6294
+ "uno."
6295
+
6296
+ #: addons/buy-creds/modules/buycred-module-core.php:347
6297
+ msgid ""
6298
+ "Minimum amount of %plural% a user must purchase. Will default to %cred%."
6299
+ msgstr ""
6300
+ "La cantidad mínima de %plural% que el usuario debe comprar. Será predefinido "
6301
+ "en %cred%."
6302
 
6303
  #: addons/buy-creds/modules/buycred-module-core.php:355
6304
  msgid "Show seperate log for %_plural% purchases."
6305
+ msgstr "Mostrar un registro distinto para compras de %_plural%."
6306
+
6307
+ #: addons/buy-creds/modules/buycred-module-core.php:361
6308
+ msgid "Redirects"
6309
+ msgstr "Redirecciones"
6310
+
6311
+ #: addons/buy-creds/modules/buycred-module-core.php:365
6312
+ msgid ""
6313
+ "Where should users be redirected to upon successfully completing a purchase. "
6314
+ "You can nominate a specific URL or a page."
6315
+ msgstr ""
6316
+ "¿A dónde se debe redirigir a los usuarios al completar satisfactoriamente "
6317
+ "una compra? Puede designar una URL específica o una página."
6318
+
6319
+ #: addons/buy-creds/modules/buycred-module-core.php:368
6320
+ #: addons/buy-creds/modules/buycred-module-core.php:393
6321
+ msgid "Redirect to Page"
6322
+ msgstr "Redirigir a la página"
6323
+
6324
+ #: addons/buy-creds/modules/buycred-module-core.php:384
6325
+ #: addons/buy-creds/modules/buycred-module-core.php:409
6326
+ msgid "Redirect to URL"
6327
+ msgstr "Redirigir a URL"
6328
+
6329
+ #: addons/buy-creds/modules/buycred-module-core.php:390
6330
+ msgid ""
6331
+ "Where should users be redirected to if they cancel a transaction. You can "
6332
+ "nominate a specific URL or a page."
6333
+ msgstr ""
6334
+ "¿A dónde deben ser redirigidos los usuarios si cancelan una transacción? "
6335
+ "Puede designar una URL específica o una página."
6336
+
6337
+ #: addons/buy-creds/modules/buycred-module-core.php:419
6338
+ msgid "Login Message"
6339
+ msgstr "Mensaje de inicio de sesión"
6340
+
6341
+ #: addons/buy-creds/modules/buycred-module-core.php:421
6342
+ msgid ""
6343
+ "Message to show in shortcodes when viewed by someone who is not logged in."
6344
+ msgstr ""
6345
+ "Mensaje que se mostrará en los códigos cortos cuando lo vea alguien que no "
6346
+ "ha iniciado sesión."
6347
 
6348
  #: addons/buy-creds/modules/buycred-module-core.php:433
6349
  msgid "Gifting"
6351
 
6352
  #: addons/buy-creds/modules/buycred-module-core.php:438
6353
  msgid "Allow users to buy %_plural% for other users."
6354
+ msgstr "Permitir que los usuarios compren %_plural% para otros usuarios."
6355
 
6356
  #: addons/buy-creds/modules/buycred-module-core.php:445
6357
  msgid "Allow users to buy %_plural% for content authors."
6358
+ msgstr "Permitir que los usuarios compren %_plural% para autores de contenido."
6359
 
6360
  #: addons/buy-creds/modules/buycred-module-core.php:547
6361
  msgid "buyCRED Purchase Log"
6362
+ msgstr "Registro de Compras buyCRED"
6363
 
6364
  #: addons/buy-creds/modules/buycred-module-core.php:548
6365
  #: addons/buy-creds/modules/buycred-module-core.php:778
6389
 
6390
  #: addons/buy-creds/modules/buycred-module-core.php:982
6391
  msgid "No purchases found"
6392
+ msgstr "No se encontró ninguna compra"
6393
+
6394
+ #: addons/buy-creds/modules/buycred-module-core.php:1104
6395
+ msgid "Users exchange rate when buying points."
6396
+ msgstr "Tasa de cambio de los usuarios al comprar puntos."
6397
+
6398
+ #: addons/buy-creds/modules/buycred-module-core.php:1115
6399
+ msgid "buyCRED Exchange Rates"
6400
+ msgstr "Tipos de Cambio de buyCRED"
6401
+
6402
+ #: addons/buy-creds/modules/buycred-module-core.php:1125
6403
+ #, php-format
6404
+ msgctxt "Points Name"
6405
+ msgid "Buying %s"
6406
+ msgstr "Compra %s"
6407
+
6408
+ #: addons/buy-creds/modules/buycred-module-core.php:1128
6409
+ msgid "This point type is not for sale."
6410
+ msgstr "Este tipo de punto no está a la venta."
6411
+
6412
+ #: addons/buy-creds/modules/buycred-module-core.php:1140
6413
+ #: addons/buy-creds/modules/buycred-module-core.php:1155
6414
+ #, php-format
6415
+ msgctxt "Buying Points"
6416
+ msgid "Buying %s"
6417
+ msgstr "Comprando %s"
6418
+
6419
+ #: addons/buy-creds/modules/buycred-module-core.php:1143
6420
+ #, php-format
6421
+ msgctxt "Points Name"
6422
+ msgid "User can not buy %s"
6423
+ msgstr "El usuario no puede comprar %s"
6424
+
6425
+ #: addons/buy-creds/modules/buycred-module-core.php:1158
6426
+ msgid "Leave empty to use the default rate."
6427
+ msgstr "Dejar en blanco para usar el valor predefinido."
6428
 
6429
  #: addons/buy-creds/modules/buycred-module-core.php:1369
6430
  msgid "Buy Now"
6431
+ msgstr "Comprar Ahora"
6432
+
6433
+ #: addons/buy-creds/modules/buycred-module-core.php:1531
6434
+ msgid "Pay Using"
6435
+ msgstr "Pagar con"
6436
+
6437
+ #: addons/buy-creds/includes/buycred-functions.php:115
6438
+ msgid "Unknown Gateway"
6439
+ msgstr "Puerta de enlace desconocida"
6440
 
6441
  #: addons/buy-creds/gateways/bank-transfer.php:88
6442
  #: addons/buy-creds/gateways/bitpay.php:163
6446
  #: addons/buy-creds/gateways/skrill.php:186
6447
  msgid "Please setup this gateway before attempting to make a purchase!"
6448
  msgstr ""
6449
+ "Por favor configure esta puerta de enlace antes de intentar hacer una compra"
6450
+
6451
+ #: addons/buy-creds/gateways/bank-transfer.php:168
6452
+ msgid "Continue"
6453
+ msgstr "Continuar"
6454
+
6455
+ #: addons/buy-creds/gateways/bank-transfer.php:196
6456
+ msgid "Checkout Logo"
6457
+ msgstr "Logo de pago"
6458
+
6459
+ #: addons/buy-creds/gateways/bank-transfer.php:202
6460
+ msgid "Bank Account Information"
6461
+ msgstr "Información sobre cuentas bancarias"
6462
+
6463
+ #: addons/buy-creds/gateways/bank-transfer.php:206
6464
+ msgid "Bank transfer details to show the user on the checkout page."
6465
+ msgstr ""
6466
+ "Detalles de transferencia bancaria para mostrar al usuario en la página de "
6467
+ "pago."
6468
 
6469
  #: addons/buy-creds/gateways/bank-transfer.php:215
6470
  #: addons/buy-creds/gateways/bitpay.php:265
6495
  #: addons/buy-creds/gateways/skrill.php:136
6496
  #, php-format
6497
  msgid "Payment not completed. Received: %s"
6498
+ msgstr "Pago no finalizado. Recibido: %s"
6499
 
6500
  #: addons/buy-creds/gateways/bitpay.php:85
6501
  #: addons/buy-creds/gateways/netbilling.php:109
6503
  #: addons/buy-creds/gateways/paypal-standard.php:168
6504
  #: addons/buy-creds/gateways/skrill.php:147
6505
  msgid "Failed to credit users account."
6506
+ msgstr "No se pudo abonar en la cuenta del usuario."
6507
 
6508
  #: addons/buy-creds/gateways/bitpay.php:208
6509
  #: addons/buy-creds/gateways/bitpay.php:219
6518
  msgid ""
6519
  "Could not create a BitPay Invoice. Please contact the site administrator!"
6520
  msgstr ""
6521
+ "No se pudo crear una factura de BitPay. Por favor póngase en contacto con el "
6522
+ "administrador del sitio."
6523
 
6524
  #: addons/buy-creds/gateways/bitpay.php:212
6525
  msgid "Bitpay returned the following error message:"
6526
+ msgstr "Bitpay comunicó este mensaje de error:"
6527
 
6528
  #: addons/buy-creds/gateways/bitpay.php:254
6529
  msgid "Currency Code"
6577
 
6578
  #: addons/buy-creds/gateways/netbilling.php:224
6579
  msgid "Found under Step 12 on the Fraud Defense page."
6580
+ msgstr "Se encuentra en el Paso 12 de la página sobre Defensa contra Fraude."
6581
 
6582
  #: addons/buy-creds/gateways/netbilling.php:238
6583
  msgid "Postback CGI URL"
6596
 
6597
  #: addons/buy-creds/gateways/netbilling.php:290
6598
  msgid "Incorrect Credit Card number"
6599
+ msgstr "Número de Tarjeta de Crédito Incorrecto"
6600
 
6601
  #: addons/buy-creds/gateways/netbilling.php:296
6602
  msgid "The credit card entered is past its expiration date."
6603
+ msgstr "La tarjeta de crédito ya no es válida."
6604
 
6605
  #: addons/buy-creds/gateways/netbilling.php:299
6606
  msgid "The CVV2 number entered is not valid."
6607
+ msgstr "El numero CVV2 no es válido."
6608
 
6609
  #: addons/buy-creds/gateways/netbilling.php:306
6610
  msgid "The bank routing number entered is not valid."
6611
+ msgstr "El número de ruta bancaria no es válido."
6612
 
6613
  #: addons/buy-creds/gateways/netbilling.php:310
6614
  msgid "The bank account number entered is not valid."
6615
+ msgstr "La cuenta bancaria introducida no es válida."
6616
 
6617
  #: addons/buy-creds/gateways/zombaio.php:204
6618
  #, php-format
6619
  msgid "Duplicate transaction. Received: %s"
6620
+ msgstr "Duplicar Transacción. Recibido: %s"
6621
 
6622
  #: addons/buy-creds/gateways/zombaio.php:210
6623
  #, php-format
6624
  msgid "Live transaction while debug mode is enabled! Received: %s"
6625
+ msgstr ""
6626
+ "El modo de transacción en vivo mientras se depura está activado. Recibido: %s"
6627
 
6628
  #: addons/buy-creds/gateways/zombaio.php:315
6629
  msgid "Site ID"
6641
  #: addons/buy-creds/gateways/zombaio.php:333
6642
  #: addons/buy-creds/gateways/skrill.php:338
6643
  msgid "Logo URL"
6644
+ msgstr "URL del Logo"
6645
 
6646
  #: addons/buy-creds/gateways/zombaio.php:339
6647
  msgid "IP Verification"
6649
 
6650
  #: addons/buy-creds/gateways/zombaio.php:342
6651
  msgid "Do not verify that callbacks are coming from Zombaio."
6652
+ msgstr "No verifique que las devoluciones de llamadas proceden de Zombaio."
6653
 
6654
  #: addons/buy-creds/gateways/zombaio.php:345
6655
  msgid "Language"
6664
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
6665
  "address and click validate."
6666
  msgstr ""
6667
+ "Para que esta puerta de enlace funcione, inicie sesión en ZOA y ajuste la "
6668
  "devolución de datos de la URL a la dirección que se encuentra arriba y haga "
6669
  "clic sobre validar."
6670
 
6671
  #: addons/buy-creds/gateways/paypal-standard.php:192
6672
  #: addons/buy-creds/gateways/skrill.php:171
6673
  msgid "Success"
6674
+ msgstr "Éxito"
6675
 
6676
  #: addons/buy-creds/gateways/paypal-standard.php:193
6677
  #: addons/buy-creds/gateways/skrill.php:172
6678
  msgid "Thank you for your purchase"
6679
  msgstr "Gracias por su compra"
6680
 
6681
+ #: addons/buy-creds/gateways/paypal-standard.php:256
6682
+ #, php-format
6683
+ msgctxt "Return label. %s = Website name"
6684
+ msgid "Return to %s"
6685
+ msgstr "Volver a %s"
6686
+
6687
  #: addons/buy-creds/gateways/paypal-standard.php:285
6688
  msgid "Account Email"
6689
  msgstr "Cuenta de Correo Electrónico"
6690
 
6691
  #: addons/buy-creds/gateways/skrill.php:226
6692
  msgid "Return to "
6693
+ msgstr "Volver a "
6694
 
6695
  #: addons/buy-creds/gateways/skrill.php:258
6696
  msgid "Product:"
6731
  msgid ""
6732
  "If left empty, your account email is used as title on the Skill Payment Page."
6733
  msgstr ""
6734
+ "Si lo deja en blanco, se utilizará el correo electrónico de su cuenta como "
6735
+ "título en la Página de Pago de Skrill."
6736
 
6737
  #: addons/buy-creds/gateways/skrill.php:340
6738
  msgid ""
6740
  "integration results we recommend you use logos with dimensions up to 200px "
6741
  "in width and 50px in height."
6742
  msgstr ""
6743
+ "La URL de la imagen que quieres usar en la parte superior de la pasarela de "
6744
+ "pago. Para obtener la mejor integración recomendamos que uses logos con "
6745
+ "dimensiones de hasta 200 px de ancho y 50 px de altura."
6746
 
6747
  #: addons/buy-creds/gateways/skrill.php:343
6748
  msgid "Confirmation Note"
6753
  "Optional text to show user once a transaction has been successfully "
6754
  "completed. This text is shown by Skrill."
6755
  msgstr ""
6756
+ "Texto opcional para mostrar al usuario cuando la transacción haya sido "
6757
+ "completada con éxito. Este texto será mostrado por Skrill."
lang/mycred-es_VE.mo CHANGED
Binary file
lang/mycred-es_VE.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
- "POT-Creation-Date: 2017-04-19 14:59+0000\n"
6
- "PO-Revision-Date: 2017-04-19 14:59+0000\n"
7
- "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
  "Language-Team: Spanish (Venezuela)\n"
9
  "Language: es-VE\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -24,23 +24,23 @@ msgstr ""
24
  "X-Poedit-SearchPath-1: .\n"
25
  "X-Loco-Target-Locale: es_VE"
26
 
27
- #: mycred.php:578
28
  msgid "Import balances via a CSV file."
29
  msgstr ""
30
 
31
- #: abstracts/mycred-abstract-hook.php:291
32
  msgid "/ Day"
33
  msgstr ""
34
 
35
- #: abstracts/mycred-abstract-hook.php:292
36
  msgid "/ Week"
37
  msgstr ""
38
 
39
- #: abstracts/mycred-abstract-hook.php:293
40
  msgid "/ Month"
41
  msgstr ""
42
 
43
- #: abstracts/mycred-abstract-hook.php:294
44
  msgid "in Total"
45
  msgstr ""
46
 
@@ -58,7 +58,7 @@ msgstr ""
58
 
59
  #: modules/mycred-module-management.php:237
60
  #: modules/mycred-module-management.php:775 modules/mycred-module-log.php:93
61
- #: modules/mycred-module-log.php:918
62
  #: includes/classes/class.query-export.php:263
63
  #: includes/classes/class.query-export.php:360
64
  #: includes/classes/class.query-log.php:904
@@ -75,7 +75,7 @@ msgid "Balances"
75
  msgstr ""
76
 
77
  #: modules/mycred-module-management.php:747
78
- #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
79
  #: addons/buy-creds/modules/buycred-module-core.php:1374
80
  msgid "Username"
81
  msgstr ""
@@ -108,6 +108,10 @@ msgstr ""
108
  msgid "Log Updated"
109
  msgstr ""
110
 
 
 
 
 
111
  #: modules/mycred-module-settings.php:432
112
  msgid ""
113
  "In order to adjust the number of decimal places you want to use we must "
@@ -130,7 +134,7 @@ msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
130
  msgstr ""
131
 
132
  #: modules/mycred-module-settings.php:530 modules/mycred-module-addons.php:330
133
- #: modules/mycred-module-addons.php:368 modules/mycred-module-log.php:554
134
  #: modules/mycred-module-network.php:241 modules/mycred-module-network.php:276
135
  #: modules/mycred-module-network.php:292
136
  #: includes/importers/mycred-cubepoints.php:305
@@ -147,8 +151,8 @@ msgstr ""
147
  #: modules/mycred-module-settings.php:555
148
  #: modules/mycred-module-settings.php:605
149
  #: modules/mycred-module-settings.php:612
150
- #: modules/mycred-module-settings.php:799
151
- #: modules/mycred-module-settings.php:805 includes/mycred-setup.php:280
152
  #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
153
  #: includes/mycred-setup.php:340 addons/coupons/myCRED-addon-coupons.php:710
154
  #: addons/coupons/myCRED-addon-coupons.php:717
@@ -243,7 +247,11 @@ msgstr ""
243
  msgid "Balance Meta Key"
244
  msgstr ""
245
 
246
- #: modules/mycred-module-settings.php:810
 
 
 
 
247
  msgid ""
248
  "The meta key must be lowercase and only contain letters or underscores. All "
249
  "other characters will be deleted!"
@@ -282,35 +290,35 @@ msgid_plural "%d Entries Deleted"
282
  msgstr[0] ""
283
  msgstr[1] ""
284
 
285
- #: modules/mycred-module-log.php:472
286
  msgid "The log entry was successfully updated."
287
  msgstr ""
288
 
289
- #: modules/mycred-module-log.php:473
290
  msgid "The selected log entry could not be deleted."
291
  msgstr ""
292
 
293
- #: modules/mycred-module-log.php:507
294
  #, php-format
295
  msgctxt "e.g. Log entries from April 12th 2016"
296
  msgid "Log entries from %s"
297
  msgstr ""
298
 
299
- #: modules/mycred-module-log.php:564
300
  msgid ""
301
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
302
  "Certain hooks and shortcodes will not work correctly!"
303
  msgstr ""
304
 
305
- #: modules/mycred-module-log.php:925
306
  msgid "Original Entry"
307
  msgstr ""
308
 
309
- #: modules/mycred-module-log.php:937
310
  msgid "Delete Entry"
311
  msgstr ""
312
 
313
- #: modules/mycred-module-log.php:942
314
  msgid "Update Entry"
315
  msgstr ""
316
 
@@ -334,38 +342,38 @@ msgstr ""
334
  msgid "Blog IDs"
335
  msgstr ""
336
 
337
- #: modules/mycred-module-export.php:358
338
  msgid "Make both format options available."
339
  msgstr ""
340
 
341
- #: modules/mycred-module-export.php:360
342
  msgid "Exports"
343
  msgstr ""
344
 
345
- #: modules/mycred-module-export.php:366
346
  msgid "Front End Exports"
347
  msgstr ""
348
 
349
- #: modules/mycred-module-export.php:382 modules/mycred-module-export.php:430
350
  msgid "Export Format"
351
  msgstr ""
352
 
353
- #: modules/mycred-module-export.php:398 modules/mycred-module-export.php:446
354
  msgid "File Name"
355
  msgstr ""
356
 
357
- #: modules/mycred-module-export.php:407
358
  msgid ""
359
  "If enabled, users will only be able to export their own log entries! Export "
360
  "tools becomes available wherever you are using the mycred_history shortcode "
361
  "or in the users profile."
362
  msgstr ""
363
 
364
- #: modules/mycred-module-export.php:414
365
  msgid "Back End Exports"
366
  msgstr ""
367
 
368
- #: modules/mycred-module-export.php:455
369
  msgid ""
370
  "Raw format should be used when you intend to use the export tool to backup "
371
  "or import entries in another installation. Formatted exports reflect what "
@@ -377,12 +385,12 @@ msgid "Show:"
377
  msgstr ""
378
 
379
  #: modules/mycred-module-buddypress.php:405
380
- #: addons/badges/myCRED-addon-badges.php:1141
381
  msgid "Include in Profile Header"
382
  msgstr ""
383
 
384
  #: modules/mycred-module-buddypress.php:407
385
- #: addons/badges/myCRED-addon-badges.php:1143
386
  msgid "Include under the \"Profile\" tab and Profile Header"
387
  msgstr ""
388
 
@@ -448,12 +456,12 @@ msgstr ""
448
  #: plugins/mycred-hook-wp-favorite-posts.php:256
449
  #: plugins/mycred-hook-wp-favorite-posts.php:274
450
  #: plugins/mycred-hook-wp-favorite-posts.php:289
451
- #: plugins/mycred-hook-contact-form7.php:176
452
  #: plugins/mycred-hook-jetpack.php:550 plugins/mycred-hook-jetpack.php:568
453
  #: plugins/mycred-hook-bbPress.php:450 plugins/mycred-hook-bbPress.php:468
454
  #: plugins/mycred-hook-bbPress.php:492 plugins/mycred-hook-bbPress.php:519
455
  #: plugins/mycred-hook-bbPress.php:543 plugins/mycred-hook-bbPress.php:567
456
- #: plugins/mycred-hook-bbPress.php:594 plugins/mycred-hook-woocommerce.php:517
457
  #: plugins/mycred-hook-badgeOS.php:328 plugins/mycred-hook-badgeOS.php:346
458
  #: addons/transfer/includes/mycred-transfer-widgets.php:102
459
  #: addons/transfer/includes/mycred-transfer-widgets.php:106
@@ -512,7 +520,7 @@ msgid "Content Author Log Template"
512
  msgstr ""
513
 
514
  #: plugins/mycred-hook-gravityforms.php:156
515
- #: plugins/mycred-hook-contact-form7.php:159
516
  #, php-format
517
  msgid "Form: %s"
518
  msgstr ""
@@ -778,11 +786,11 @@ msgstr ""
778
  msgid "Leave empty for no rewards"
779
  msgstr ""
780
 
781
- #: plugins/mycred-hook-woocommerce.php:384
782
  msgid "WooCommerce Product Reviews"
783
  msgstr ""
784
 
785
- #: plugins/mycred-hook-woocommerce.php:385
786
  msgid ""
787
  "Awards %_plural% for users leaving reviews on your WooCommerce products."
788
  msgstr ""
@@ -849,7 +857,7 @@ msgid "Hide"
849
  msgstr ""
850
 
851
  #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
852
- #: addons/email-notices/myCRED-addon-email-notices.php:1435
853
  msgid "Advanced"
854
  msgstr ""
855
 
@@ -971,48 +979,48 @@ msgstr ""
971
  msgid "Shows multiple balances."
972
  msgstr ""
973
 
974
- #: includes/mycred-functions.php:2777
975
  msgid "in total"
976
  msgstr ""
977
 
978
- #: includes/mycred-functions.php:2779
979
  msgid "per day"
980
  msgstr ""
981
 
982
- #: includes/mycred-functions.php:2782
983
  msgid "per week"
984
  msgstr ""
985
 
986
- #: includes/mycred-functions.php:2785
987
  msgid "per month"
988
  msgstr ""
989
 
990
- #: includes/mycred-functions.php:2787 includes/mycred-functions.php:2793
991
  #, php-format
992
  msgid "Maximum once"
993
  msgid_plural "Maximum %d times"
994
  msgstr[0] ""
995
  msgstr[1] ""
996
 
997
- #: includes/mycred-functions.php:2815
998
  #, php-format
999
  msgctxt "e.g. 5 th"
1000
  msgid "%d th"
1001
  msgstr ""
1002
 
1003
- #: includes/mycred-functions.php:2819
1004
  #, php-format
1005
  msgctxt "e.g. 1 st"
1006
  msgid "%d st"
1007
  msgstr ""
1008
 
1009
- #: includes/mycred-functions.php:2820
1010
  #, php-format
1011
  msgctxt "e.g. 2 nd"
1012
  msgid "%d nd"
1013
  msgstr ""
1014
 
1015
- #: includes/mycred-functions.php:2821
1016
  #, php-format
1017
  msgctxt "e.g. 3 rd"
1018
  msgid "%d rd"
@@ -1664,7 +1672,7 @@ msgid "Ranks for %s"
1664
  msgstr ""
1665
 
1666
  #: addons/ranks/myCRED-addon-ranks.php:230
1667
- #: addons/ranks/myCRED-addon-ranks.php:1375
1668
  msgid "Rank Logo"
1669
  msgstr ""
1670
 
@@ -1702,104 +1710,104 @@ msgstr ""
1702
  msgid "No ranks exists."
1703
  msgstr ""
1704
 
1705
- #: addons/ranks/myCRED-addon-ranks.php:1189
1706
  msgid "Rank Setup"
1707
  msgstr ""
1708
 
1709
- #: addons/ranks/myCRED-addon-ranks.php:1230
1710
  msgid "Minimum Balance Requirement"
1711
  msgstr ""
1712
 
1713
- #: addons/ranks/myCRED-addon-ranks.php:1236
1714
  msgid "Maximum Balance Requirement"
1715
  msgstr ""
1716
 
1717
- #: addons/ranks/myCRED-addon-ranks.php:1395
1718
  msgid "Rank Post Type"
1719
  msgstr ""
1720
 
1721
- #: addons/ranks/myCRED-addon-ranks.php:1398
1722
  msgid "Make Ranks Public"
1723
  msgstr ""
1724
 
1725
- #: addons/ranks/myCRED-addon-ranks.php:1402
1726
  msgid "Rank SLUG"
1727
  msgstr ""
1728
 
1729
- #: addons/ranks/myCRED-addon-ranks.php:1404
1730
  msgid ""
1731
  "If you have selected to make Ranks public, you can select what rank archive "
1732
  "URL slug you want to use. Ignored if Ranks are not set to be public."
1733
  msgstr ""
1734
 
1735
- #: addons/ranks/myCRED-addon-ranks.php:1425
1736
  msgid "Option to set in which order Ranks should be shown on the archive page."
1737
  msgstr ""
1738
 
1739
- #: addons/ranks/myCRED-addon-ranks.php:1432
1740
  msgid "Rank Behaviour"
1741
  msgstr ""
1742
 
1743
- #: addons/ranks/myCRED-addon-ranks.php:1437
1744
  msgid "Based on Current Balances"
1745
  msgstr ""
1746
 
1747
- #: addons/ranks/myCRED-addon-ranks.php:1439
1748
  msgid ""
1749
  "Users can be promoted or demoted depending on where their balance fits in "
1750
  "amongst your ranks."
1751
  msgstr ""
1752
 
1753
- #: addons/ranks/myCRED-addon-ranks.php:1445
1754
  msgid "Based on Total Balances"
1755
  msgstr ""
1756
 
1757
- #: addons/ranks/myCRED-addon-ranks.php:1447
1758
  msgid ""
1759
  "Users can only be promoted and gain higher ranks even if their balance "
1760
  "decreases."
1761
  msgstr ""
1762
 
1763
- #: addons/ranks/myCRED-addon-ranks.php:1454
1764
  msgid "Tools"
1765
  msgstr ""
1766
 
1767
- #: addons/ranks/myCRED-addon-ranks.php:1455
1768
  msgid ""
1769
  "Use this button to calculate or recalculate each individual users total "
1770
  "balance if you think your users total balances are incorrect, or if you "
1771
  "switch from Ranks being based on users current balance to total balance."
1772
  msgstr ""
1773
 
1774
- #: addons/ranks/myCRED-addon-ranks.php:1460
1775
- #: addons/badges/myCRED-addon-badges.php:1130
1776
  msgid "Third-party Integrations"
1777
  msgstr ""
1778
 
1779
- #: addons/ranks/myCRED-addon-ranks.php:1495
1780
- #: addons/ranks/myCRED-addon-ranks.php:1536
1781
  msgid ""
1782
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
1783
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
1784
  msgstr ""
1785
 
1786
- #: addons/ranks/myCRED-addon-ranks.php:1499
1787
- #: addons/ranks/myCRED-addon-ranks.php:1540
1788
- #: addons/badges/myCRED-addon-badges.php:1162
1789
- #: addons/badges/myCRED-addon-badges.php:1196
1790
  msgid "Not installed"
1791
  msgstr ""
1792
 
1793
- #: addons/ranks/myCRED-addon-ranks.php:1518
1794
  msgid "Include in Topic Replies"
1795
  msgstr ""
1796
 
1797
- #: addons/ranks/myCRED-addon-ranks.php:1519
1798
- #: addons/badges/myCRED-addon-badges.php:1175
1799
  msgid "Include in Profile"
1800
  msgstr ""
1801
 
1802
- #: addons/ranks/myCRED-addon-ranks.php:1520
1803
  msgid "Include in Topic Replies and Profile"
1804
  msgstr ""
1805
 
@@ -1902,69 +1910,69 @@ msgstr ""
1902
  msgid "user gains a badge"
1903
  msgstr ""
1904
 
1905
- #: addons/email-notices/myCRED-addon-email-notices.php:1408
1906
  msgid "Plain Text"
1907
  msgstr ""
1908
 
1909
- #: addons/email-notices/myCRED-addon-email-notices.php:1416
1910
  #: addons/banking/services/mycred-service-payouts.php:825
1911
  msgid "Schedule"
1912
  msgstr ""
1913
 
1914
- #: addons/email-notices/myCRED-addon-email-notices.php:1420
1915
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1916
  msgstr ""
1917
 
1918
- #: addons/email-notices/myCRED-addon-email-notices.php:1423
1919
  msgid "Send emails immediately"
1920
  msgstr ""
1921
 
1922
- #: addons/email-notices/myCRED-addon-email-notices.php:1426
1923
  msgid "Send emails once an hour"
1924
  msgstr ""
1925
 
1926
- #: addons/email-notices/myCRED-addon-email-notices.php:1429
1927
  msgid "Send emails once a day"
1928
  msgstr ""
1929
 
1930
- #: addons/email-notices/myCRED-addon-email-notices.php:1438
1931
  msgid "Filter Email Subjects"
1932
  msgstr ""
1933
 
1934
- #: addons/email-notices/myCRED-addon-email-notices.php:1441
1935
  msgid "Filter Email Body"
1936
  msgstr ""
1937
 
1938
- #: addons/email-notices/myCRED-addon-email-notices.php:1450
1939
  msgid ""
1940
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1941
  "use a SMTP plugin for emails."
1942
  msgstr ""
1943
 
1944
- #: addons/email-notices/myCRED-addon-email-notices.php:1463
1945
  msgid "Defaults"
1946
  msgstr ""
1947
 
1948
- #: addons/email-notices/myCRED-addon-email-notices.php:1496
1949
  msgid "Default CSS Styling"
1950
  msgstr ""
1951
 
1952
- #: addons/email-notices/myCRED-addon-email-notices.php:1498
1953
  msgid ""
1954
  "Default email CSS styling. Note that if you intend to send HTML emails, you "
1955
  "should use inline CSS styling for best results."
1956
  msgstr ""
1957
 
1958
- #: addons/email-notices/myCRED-addon-email-notices.php:1596
1959
  msgid "Unsubscribe"
1960
  msgstr ""
1961
 
1962
- #: addons/email-notices/myCRED-addon-email-notices.php:1618
1963
  msgid "There are no email notifications yet."
1964
  msgstr ""
1965
 
1966
- #: addons/email-notices/myCRED-addon-email-notices.php:1625
1967
- #: addons/buy-creds/modules/buycred-module-pending.php:490
1968
  msgid "Save Changes"
1969
  msgstr ""
1970
 
@@ -2001,9 +2009,9 @@ msgstr ""
2001
  #: addons/badges/myCRED-addon-badges.php:160
2002
  #: addons/badges/myCRED-addon-badges.php:295
2003
  #: addons/badges/myCRED-addon-badges.php:296
2004
- #: addons/badges/myCRED-addon-badges.php:1127
2005
- #: addons/badges/myCRED-addon-badges.php:1256
2006
- #: addons/badges/myCRED-addon-badges.php:1259
2007
  msgid "Badges"
2008
  msgstr ""
2009
 
@@ -2053,167 +2061,167 @@ msgstr ""
2053
  msgid "Badge Saved."
2054
  msgstr ""
2055
 
2056
- #: addons/badges/myCRED-addon-badges.php:396
2057
- #: addons/badges/myCRED-addon-badges.php:480
2058
  msgid "Badge Name"
2059
  msgstr ""
2060
 
2061
- #: addons/badges/myCRED-addon-badges.php:397
2062
  msgid "Default Image"
2063
  msgstr ""
2064
 
2065
- #: addons/badges/myCRED-addon-badges.php:398
2066
  msgid "First Level"
2067
  msgstr ""
2068
 
2069
- #: addons/badges/myCRED-addon-badges.php:399
2070
  msgid "Requirements"
2071
  msgstr ""
2072
 
2073
- #: addons/badges/myCRED-addon-badges.php:510
2074
- #: addons/badges/myCRED-addon-badges.php:801
2075
  msgid "Add Level"
2076
  msgstr ""
2077
 
2078
- #: addons/badges/myCRED-addon-badges.php:511
2079
- #: addons/badges/myCRED-addon-badges.php:802
2080
  msgid "Remove Level"
2081
  msgstr ""
2082
 
2083
- #: addons/badges/myCRED-addon-badges.php:512
2084
- #: addons/badges/myCRED-addon-badges.php:755
2085
- #: addons/badges/myCRED-addon-badges.php:818
2086
- #: addons/badges/myCRED-addon-badges.php:823
2087
  msgid "Set Image"
2088
  msgstr ""
2089
 
2090
- #: addons/badges/myCRED-addon-badges.php:513
2091
- #: addons/badges/myCRED-addon-badges.php:755
2092
- #: addons/badges/myCRED-addon-badges.php:823
2093
  msgid "Change Image"
2094
  msgstr ""
2095
 
2096
- #: addons/badges/myCRED-addon-badges.php:514
2097
  msgid "Are you sure you want to remove this level?"
2098
  msgstr ""
2099
 
2100
- #: addons/badges/myCRED-addon-badges.php:515
2101
- #: addons/badges/myCRED-addon-badges.php:819
2102
- #: addons/badges/myCRED-addon-badges.php:1288
2103
  msgid "Level"
2104
  msgstr ""
2105
 
2106
- #: addons/badges/myCRED-addon-badges.php:516
2107
  msgid "Badge Image"
2108
  msgstr ""
2109
 
2110
- #: addons/badges/myCRED-addon-badges.php:517
2111
  msgid "Use as Badge"
2112
  msgstr ""
2113
 
2114
- #: addons/badges/myCRED-addon-badges.php:518
2115
- #: addons/badges/myCRED-addon-badges.php:921
2116
  #: addons/badges/includes/mycred-badge-functions.php:272
2117
  msgctxt "Comparison of badge requirements. A AND B"
2118
  msgid "AND"
2119
  msgstr ""
2120
 
2121
- #: addons/badges/myCRED-addon-badges.php:519
2122
- #: addons/badges/myCRED-addon-badges.php:921
2123
  #: addons/badges/includes/mycred-badge-functions.php:270
2124
  msgctxt "Comparison of badge requirements. A OR B"
2125
  msgid "OR"
2126
  msgstr ""
2127
 
2128
- #: addons/badges/myCRED-addon-badges.php:571
2129
  msgid "Badge Setup"
2130
  msgstr ""
2131
 
2132
- #: addons/badges/myCRED-addon-badges.php:580
2133
  msgid "Default Badge Image"
2134
  msgstr ""
2135
 
2136
- #: addons/badges/myCRED-addon-badges.php:678
2137
  msgid "Assign Badge"
2138
  msgstr ""
2139
 
2140
- #: addons/badges/myCRED-addon-badges.php:679
2141
  msgid "Remove Connections"
2142
  msgstr ""
2143
 
2144
- #: addons/badges/myCRED-addon-badges.php:722
2145
  #: addons/badges/includes/mycred-badge-functions.php:288
2146
  msgid "This badge is manually awarded."
2147
  msgstr ""
2148
 
2149
- #: addons/badges/myCRED-addon-badges.php:758
2150
  msgid "Optional image to show when a user has not earned this badge."
2151
  msgstr ""
2152
 
2153
- #: addons/badges/myCRED-addon-badges.php:777
2154
  msgid "Time(s)"
2155
  msgstr ""
2156
 
2157
- #: addons/badges/myCRED-addon-badges.php:778
2158
  msgid "In total"
2159
  msgstr ""
2160
 
2161
- #: addons/badges/myCRED-addon-badges.php:825
2162
  #, php-format
2163
  msgid "Level %d"
2164
  msgstr ""
2165
 
2166
- #: addons/badges/myCRED-addon-badges.php:849
2167
  msgid "Select Point Type"
2168
  msgstr ""
2169
 
2170
- #: addons/badges/myCRED-addon-badges.php:863
2171
  msgid "Select Reference"
2172
  msgstr ""
2173
 
2174
- #: addons/badges/myCRED-addon-badges.php:939
2175
  msgid "Reward"
2176
  msgstr ""
2177
 
2178
- #: addons/badges/myCRED-addon-badges.php:1158
2179
- #: addons/badges/myCRED-addon-badges.php:1192
2180
  msgid "Show all badges, including badges users have not yet earned."
2181
  msgstr ""
2182
 
2183
- #: addons/badges/myCRED-addon-badges.php:1176
2184
  msgid "Include in Forum Replies"
2185
  msgstr ""
2186
 
2187
- #: addons/badges/myCRED-addon-badges.php:1177
2188
  msgid "Include in Profile and Forum Replies"
2189
  msgstr ""
2190
 
2191
- #: addons/badges/myCRED-addon-badges.php:1251
2192
  msgid "No image set"
2193
  msgstr ""
2194
 
2195
- #: addons/badges/myCRED-addon-badges.php:1283
2196
  msgid "Select a level"
2197
  msgstr ""
2198
 
2199
- #: addons/badges/myCRED-addon-badges.php:1297
2200
  msgid "Earned"
2201
  msgstr ""
2202
 
2203
- #: addons/badges/myCRED-addon-badges.php:1406
2204
  #, php-format
2205
  msgid "A total of %d users have received this badge."
2206
  msgstr ""
2207
 
2208
- #: addons/badges/myCRED-addon-badges.php:1408
2209
  msgid "No users has yet earned this badge."
2210
  msgstr ""
2211
 
2212
- #: addons/badges/myCRED-addon-badges.php:1433
2213
  msgid "No connections where removed."
2214
  msgstr ""
2215
 
2216
- #: addons/badges/myCRED-addon-badges.php:1435
2217
  #, php-format
2218
  msgid "%s connections where removed."
2219
  msgstr ""
@@ -2715,22 +2723,6 @@ msgstr ""
2715
  msgid "Duplicate schedule."
2716
  msgstr ""
2717
 
2718
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
2719
- msgid "%plural% Cost"
2720
- msgstr ""
2721
-
2722
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:213
2723
- msgid "Your Balance"
2724
- msgstr ""
2725
-
2726
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:710
2727
- msgid "Cart & Checkout Cost"
2728
- msgstr ""
2729
-
2730
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:713
2731
- msgid "Label for cost in %plural%"
2732
- msgstr ""
2733
-
2734
  #: addons/gateway/carts/mycred-woocommerce.php:30
2735
  msgid "Let users pay using points."
2736
  msgstr ""
@@ -2750,7 +2742,7 @@ msgid "%s Payment"
2750
  msgstr ""
2751
 
2752
  #: addons/gateway/carts/mycred-woocommerce.php:319
2753
- #: addons/sell-content/includes/mycred-sell-functions.php:512
2754
  msgid "Insufficient funds."
2755
  msgstr ""
2756
 
@@ -2762,7 +2754,7 @@ msgstr ""
2762
 
2763
  #: addons/transfer/includes/mycred-transfer-widgets.php:113
2764
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
2765
- #: addons/buy-creds/modules/buycred-module-pending.php:549
2766
  #: addons/buy-creds/modules/buycred-module-core.php:1487
2767
  msgid "Recipient"
2768
  msgstr ""
@@ -2889,76 +2881,76 @@ msgstr ""
2889
  msgid "An unknown error occurred. Coupon not used."
2890
  msgstr ""
2891
 
2892
- #: addons/sell-content/includes/mycred-sell-functions.php:503
2893
  #, php-format
2894
  msgctxt "Point type name"
2895
  msgid "You can not pay using %s"
2896
  msgstr ""
2897
 
2898
- #: addons/sell-content/includes/mycred-sell-functions.php:764
2899
  #, php-format
2900
  msgctxt "all post type name"
2901
  msgid "All %s"
2902
  msgstr ""
2903
 
2904
- #: addons/sell-content/includes/mycred-sell-functions.php:768
2905
  #, php-format
2906
  msgctxt "all post type name"
2907
  msgid "%s I manually select"
2908
  msgstr ""
2909
 
2910
- #: addons/sell-content/includes/mycred-sell-functions.php:772
2911
  #, php-format
2912
  msgctxt "%s = post type name"
2913
  msgid "All %s except"
2914
  msgstr ""
2915
 
2916
- #: addons/sell-content/includes/mycred-sell-functions.php:773
2917
  #, php-format
2918
  msgctxt "%s = post type name"
2919
  msgid "Comma separated list of %s IDs to exclude"
2920
  msgstr ""
2921
 
2922
- #: addons/sell-content/includes/mycred-sell-functions.php:776
2923
  #, php-format
2924
  msgctxt "%s = post type name"
2925
  msgid "Only %s"
2926
  msgstr ""
2927
 
2928
- #: addons/sell-content/includes/mycred-sell-functions.php:777
2929
  #, php-format
2930
  msgctxt "%s = post type name"
2931
  msgid "Comma separated list of %s IDs"
2932
  msgstr ""
2933
 
2934
- #: addons/sell-content/includes/mycred-sell-functions.php:789
2935
  #, php-format
2936
  msgctxt "e.g. Only \"Posts\" in \"Categories\""
2937
  msgid "Only %s in %s"
2938
  msgstr ""
2939
 
2940
- #: addons/sell-content/includes/mycred-sell-functions.php:790
2941
- #: addons/sell-content/includes/mycred-sell-functions.php:794
2942
- #: addons/sell-content/includes/mycred-sell-functions.php:800
2943
- #: addons/sell-content/includes/mycred-sell-functions.php:804
2944
  #, php-format
2945
  msgctxt "%s = taxonomy name"
2946
  msgid "Comma separated list of %s slugs"
2947
  msgstr ""
2948
 
2949
- #: addons/sell-content/includes/mycred-sell-functions.php:793
2950
  #, php-format
2951
  msgctxt "e.g. Only \"Posts\" not in \"Categories\""
2952
  msgid "Only %s not in %s"
2953
  msgstr ""
2954
 
2955
- #: addons/sell-content/includes/mycred-sell-functions.php:799
2956
  #, php-format
2957
  msgctxt "e.g. Only \"Posts\" with \"Tags\""
2958
  msgid "Only %s with %s"
2959
  msgstr ""
2960
 
2961
- #: addons/sell-content/includes/mycred-sell-functions.php:803
2962
  #, php-format
2963
  msgctxt "e.g. Only \"Posts\" without \"Tags\""
2964
  msgid "Only %s without %s"
@@ -3075,34 +3067,32 @@ msgstr ""
3075
  msgid "December"
3076
  msgstr ""
3077
 
3078
- #: addons/buy-creds/modules/buycred-module-pending.php:138
3079
  msgctxt "Post Type General Name"
3080
  msgid "Pending Payments"
3081
  msgstr ""
3082
 
3083
- #: addons/buy-creds/modules/buycred-module-pending.php:139
3084
  msgctxt "Post Type Singular Name"
3085
  msgid "Pending Payment"
3086
  msgstr ""
3087
 
3088
- #: addons/buy-creds/modules/buycred-module-pending.php:140
3089
  #: addons/buy-creds/modules/buycred-module-pending.php:142
3090
- #: addons/buy-creds/modules/buycred-module-pending.php:232
3091
- #: addons/buy-creds/modules/buycred-module-pending.php:233
 
3092
  msgid "Pending Payments"
3093
  msgstr ""
3094
 
3095
- #: addons/buy-creds/modules/buycred-module-pending.php:146
3096
  msgid "Edit Pending Payment"
3097
  msgstr ""
3098
 
3099
- #: addons/buy-creds/modules/buycred-module-pending.php:149
3100
- #: addons/buy-creds/modules/buycred-module-pending.php:150
3101
  msgid "Not found in Trash"
3102
  msgstr ""
3103
 
3104
- #: addons/buy-creds/modules/buycred-module-pending.php:180
3105
- #: addons/buy-creds/modules/buycred-module-pending.php:181
3106
  #: addons/buy-creds/modules/buycred-module-pending.php:182
3107
  #: addons/buy-creds/modules/buycred-module-pending.php:183
3108
  #: addons/buy-creds/modules/buycred-module-pending.php:184
@@ -3110,53 +3100,55 @@ msgstr ""
3110
  #: addons/buy-creds/modules/buycred-module-pending.php:186
3111
  #: addons/buy-creds/modules/buycred-module-pending.php:187
3112
  #: addons/buy-creds/modules/buycred-module-pending.php:188
 
 
3113
  msgid "Payment Updated."
3114
  msgstr ""
3115
 
3116
- #: addons/buy-creds/modules/buycred-module-pending.php:216
3117
  msgid "Pending payment successfully credited to account."
3118
  msgstr ""
3119
 
3120
- #: addons/buy-creds/modules/buycred-module-pending.php:218
3121
  msgid "Failed to credit the pending payment to account."
3122
  msgstr ""
3123
 
3124
- #: addons/buy-creds/modules/buycred-module-pending.php:268
3125
  #: addons/buy-creds/modules/buycred-module-core.php:767
3126
  msgid "Buyer"
3127
  msgstr ""
3128
 
3129
- #: addons/buy-creds/modules/buycred-module-pending.php:272
3130
  msgid "Type"
3131
  msgstr ""
3132
 
3133
- #: addons/buy-creds/modules/buycred-module-pending.php:369
3134
- #: addons/buy-creds/modules/buycred-module-pending.php:478
3135
  msgid "Pay Out"
3136
  msgstr ""
3137
 
3138
- #: addons/buy-creds/modules/buycred-module-pending.php:441
3139
  msgid "Pending Payment"
3140
  msgstr ""
3141
 
3142
- #: addons/buy-creds/modules/buycred-module-pending.php:479
3143
  msgid "Trash"
3144
  msgstr ""
3145
 
3146
- #: addons/buy-creds/modules/buycred-module-pending.php:543
3147
  msgid "Payer"
3148
  msgstr ""
3149
 
3150
- #: addons/buy-creds/modules/buycred-module-pending.php:652
3151
  msgid "Pending request created."
3152
  msgstr ""
3153
 
3154
- #: addons/buy-creds/modules/buycred-module-pending.php:700
3155
  #, php-format
3156
  msgid "Pending payment updated by %s"
3157
  msgstr ""
3158
 
3159
- #: addons/buy-creds/modules/buycred-module-pending.php:798
3160
  msgid "No pending payments found"
3161
  msgstr ""
3162
 
@@ -3327,81 +3319,76 @@ msgctxt "Return label. %s = Website name"
3327
  msgid "Return to %s"
3328
  msgstr ""
3329
 
3330
- #. Description of the plugin
3331
- msgid "An adaptive points management system for WordPress powered websites."
3332
- msgstr ""
3333
-
3334
- #: mycred.php:565
3335
  #, php-format
3336
  msgid "%s Log Import"
3337
  msgstr "Registro de Importe %s"
3338
 
3339
- #: mycred.php:566
3340
  msgid "Import log entries via a CSV file."
3341
  msgstr "Importa las entradas de registro atraves de un fichero CSV."
3342
 
3343
- #: mycred.php:577
3344
  #, php-format
3345
  msgid "%s Balance Import"
3346
  msgstr "%s balance de Importar"
3347
 
3348
- #: mycred.php:589
3349
  #, php-format
3350
  msgid "%s CubePoints Import"
3351
  msgstr "Importar CubePoints %s"
3352
 
3353
- #: mycred.php:590
3354
  msgid "Import CubePoints log entries and / or balances."
3355
  msgstr "Importar las entradas de registro de CubePoints y/o saldos."
3356
 
3357
- #: mycred.php:632 modules/mycred-module-management.php:316
3358
- #: modules/mycred-module-settings.php:425 modules/mycred-module-log.php:469
3359
  #: addons/transfer/myCRED-addon-transfer.php:159
3360
  #: addons/ranks/myCRED-addon-ranks.php:986
3361
- #: addons/ranks/myCRED-addon-ranks.php:1568
3362
- #: addons/badges/myCRED-addon-badges.php:702
3363
  #: addons/gateway/event-booking/mycred-eventsmanager.php:537
3364
  msgid "Processing..."
3365
  msgstr "Procesando..."
3366
 
3367
- #: mycred.php:633
3368
  msgid "Sent"
3369
  msgstr "Enviado"
3370
 
3371
- #: mycred.php:634
3372
  msgid "Error - Try Again"
3373
  msgstr "Error - Inténtelo de nuevo."
3374
 
3375
- #: mycred.php:809 mycred.php:810
3376
  #, php-format
3377
  msgid "About %s"
3378
  msgstr "Sobre"
3379
 
3380
- #: mycred.php:818 mycred.php:819
3381
  msgid "Awesome People"
3382
  msgstr "Gente genial"
3383
 
3384
- #: mycred.php:856 modules/mycred-module-management.php:558
3385
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:34
3386
  msgid "Balance"
3387
  msgstr "Saldo"
3388
 
3389
- #: mycred.php:923 modules/mycred-module-management.php:473
3390
  #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
3391
- #: addons/buy-creds/modules/buycred-module-pending.php:444
3392
  msgid "History"
3393
  msgstr "Historial"
3394
 
3395
- #: mycred.php:979 mycred.php:1000
3396
  #: addons/notifications/myCRED-addon-notifications.php:194
3397
  #: addons/email-notices/myCRED-addon-email-notices.php:277
3398
  #: addons/banking/services/mycred-service-interest.php:477
3399
  #: addons/gateway/event-booking/mycred-eventsmanager.php:591
3400
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:605
3401
  msgid "Setup"
3402
  msgstr "Configurar"
3403
 
3404
- #: mycred.php:981 modules/mycred-module-settings.php:21
3405
  #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
3406
  #: modules/mycred-module-network.php:270
3407
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
@@ -3409,7 +3396,7 @@ msgstr "Configurar"
3409
  msgid "Settings"
3410
  msgstr "Configuraciones"
3411
 
3412
- #: mycred.php:1021
3413
  msgid ""
3414
  "Make sure to backup your database and files before updating, in case "
3415
  "anything goes wrong!"
@@ -3421,27 +3408,27 @@ msgstr ""
3421
  msgid "This Hook has no settings"
3422
  msgstr "Este gancho no ha sido configurado"
3423
 
3424
- #: abstracts/mycred-abstract-hook.php:290
3425
- #: abstracts/mycred-abstract-hook.php:361 includes/mycred-functions.php:2771
3426
  msgid "No limit"
3427
  msgstr "Sin Limite"
3428
 
3429
- #: abstracts/mycred-abstract-hook.php:362
3430
  msgid "Once every 24 hours"
3431
  msgstr "Una vez cada 24 horas"
3432
 
3433
- #: abstracts/mycred-abstract-hook.php:363
3434
  msgid "Once every 7 days"
3435
  msgstr "Una vez cada 7 dias"
3436
 
3437
- #: abstracts/mycred-abstract-hook.php:364
3438
  msgid "Once per day (reset at midnight)"
3439
  msgstr "Una vez al dia (reinicializado al medianoche)"
3440
 
3441
- #: abstracts/mycred-abstract-hook.php:371
3442
  #: addons/email-notices/myCRED-addon-email-notices.php:531
3443
  #: addons/email-notices/myCRED-addon-email-notices.php:862
3444
- #: addons/badges/myCRED-addon-badges.php:880
3445
  #: addons/banking/abstracts/mycred-abstract-service.php:351
3446
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
3447
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
@@ -3456,19 +3443,19 @@ msgstr "Seleccionar"
3456
  msgid "Surprise"
3457
  msgstr "Sorpresa"
3458
 
3459
- #: abstracts/mycred-abstract-module.php:522
3460
  #: modules/mycred-module-network.php:218
3461
  msgid "click to close"
3462
  msgstr "haga clic para cerrar"
3463
 
3464
- #: abstracts/mycred-abstract-module.php:523
3465
  #: modules/mycred-module-network.php:219
3466
  msgid "click to open"
3467
  msgstr "haga clic para abrir"
3468
 
3469
- #: abstracts/mycred-abstract-module.php:556
3470
  #: modules/mycred-module-network.php:261
3471
- #: addons/email-notices/myCRED-addon-email-notices.php:1546
3472
  #: addons/gateway/event-booking/mycred-eventespresso3.php:451
3473
  #: addons/buy-creds/modules/buycred-module-core.php:597
3474
  msgid "Settings Updated"
@@ -3491,7 +3478,7 @@ msgid "Amount can not be zero"
3491
  msgstr "La Cantidad no Puede ser Cero"
3492
 
3493
  #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
3494
- #: modules/mycred-module-log.php:910
3495
  #: includes/classes/class.query-export.php:263
3496
  #: includes/classes/class.query-export.php:399
3497
  #: includes/classes/class.query-log.php:892
@@ -3523,7 +3510,7 @@ msgid "Edit Users Balance"
3523
  msgstr "Editar saldo del usuario"
3524
 
3525
  #: modules/mycred-module-management.php:315
3526
- #: modules/mycred-module-settings.php:430 modules/mycred-module-log.php:468
3527
  #: addons/banking/myCRED-addon-banking.php:204
3528
  msgid "Close"
3529
  msgstr "Cerrar"
@@ -3553,7 +3540,7 @@ msgstr "Editar"
3553
 
3554
  #: modules/mycred-module-management.php:583
3555
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
3556
- #: addons/buy-creds/modules/buycred-module-pending.php:718
3557
  msgid "Cancel"
3558
  msgstr "Cancelar"
3559
 
@@ -3581,9 +3568,9 @@ msgstr "Saldo Actual"
3581
  #: addons/transfer/includes/mycred-transfer-widgets.php:105
3582
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
3583
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
3584
- #: addons/buy-creds/modules/buycred-module-pending.php:269
3585
- #: addons/buy-creds/modules/buycred-module-pending.php:615
3586
- #: addons/buy-creds/modules/buycred-module-pending.php:733
3587
  msgid "Amount"
3588
  msgstr "Cantidad"
3589
 
@@ -3591,7 +3578,7 @@ msgstr "Cantidad"
3591
  msgid "A positive or negative value"
3592
  msgstr "Un valor positivo o negativo"
3593
 
3594
- #: modules/mycred-module-management.php:796 modules/mycred-module-log.php:929
3595
  #: addons/gateway/event-booking/mycred-eventespresso3.php:518
3596
  msgid "Log Entry"
3597
  msgstr "Entrada de Registro"
@@ -3638,10 +3625,6 @@ msgstr ""
3638
  msgid "Done!"
3639
  msgstr "¡Realizado!"
3640
 
3641
- #: modules/mycred-module-settings.php:431
3642
- msgid "Export users %plural%"
3643
- msgstr "Exportar usuarios %plural%"
3644
-
3645
  #: modules/mycred-module-settings.php:530
3646
  #, php-format
3647
  msgid "%s Settings"
@@ -3654,12 +3637,11 @@ msgstr "Ajustes Basicos"
3654
  #: modules/mycred-module-settings.php:544 includes/mycred-setup.php:275
3655
  #: addons/gateway/event-booking/mycred-eventespresso3.php:460
3656
  #: addons/gateway/event-booking/mycred-eventsmanager.php:658
3657
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
3658
  msgid "Labels"
3659
  msgstr "Etiquetas"
3660
 
3661
  #: modules/mycred-module-settings.php:562 includes/mycred-setup.php:293
3662
- #: addons/email-notices/myCRED-addon-email-notices.php:1405
3663
  msgid "Format"
3664
  msgstr "Formato"
3665
 
@@ -3695,15 +3677,15 @@ msgstr "Elimina las entradas de registro cuando se elimina el usuario."
3695
  msgid "Management"
3696
  msgstr "Gestión"
3697
 
3698
- #: modules/mycred-module-settings.php:678 modules/mycred-module-log.php:433
3699
  msgid "Entries"
3700
  msgstr "Entradas"
3701
 
3702
  #: modules/mycred-module-settings.php:684
3703
  #: modules/mycred-module-settings.php:709
3704
- #: addons/ranks/myCRED-addon-ranks.php:1665
3705
- #: addons/buy-creds/modules/buycred-module-pending.php:450
3706
- #: addons/buy-creds/modules/buycred-module-pending.php:736
3707
  msgid "Actions"
3708
  msgstr "Acciones"
3709
 
@@ -3712,8 +3694,8 @@ msgid "Empty Log"
3712
  msgstr "Registro Vacío"
3713
 
3714
  #: modules/mycred-module-settings.php:703
3715
- #: addons/ranks/myCRED-addon-ranks.php:1076
3716
- #: addons/badges/myCRED-addon-badges.php:400
3717
  msgid "Users"
3718
  msgstr "Usuarios"
3719
 
@@ -3721,7 +3703,7 @@ msgstr "Usuarios"
3721
  msgid "Set all to zero"
3722
  msgstr "Ajusta todo a cero"
3723
 
3724
- #: modules/mycred-module-settings.php:728 includes/mycred-widgets.php:573
3725
  #: addons/transfer/myCRED-addon-transfer.php:370
3726
  #: addons/sell-content/myCRED-addon-sell-content.php:581
3727
  #: addons/transfer/includes/mycred-transfer-widgets.php:121
@@ -3729,56 +3711,55 @@ msgstr "Ajusta todo a cero"
3729
  msgid "Point Types"
3730
  msgstr "Tipo de Puntos"
3731
 
3732
- #: modules/mycred-module-settings.php:742
3733
- #: modules/mycred-module-settings.php:768
3734
- #: modules/mycred-module-settings.php:798
3735
  msgid "Meta Key"
3736
  msgstr "Clave Meta"
3737
 
3738
- #: modules/mycred-module-settings.php:748
3739
- #: modules/mycred-module-settings.php:774
3740
- #: modules/mycred-module-settings.php:804
3741
  #: addons/email-notices/myCRED-addon-email-notices.php:578
3742
  #: addons/gateway/carts/mycred-woocommerce.php:155
3743
  msgid "Label"
3744
  msgstr "Etiqueta"
3745
 
3746
- #: modules/mycred-module-settings.php:755
3747
- #: modules/mycred-module-settings.php:781
3748
  #: includes/classes/class.query-log.php:1019
3749
  #: includes/classes/class.query-log.php:1622
3750
  #: addons/banking/services/mycred-service-payouts.php:472
3751
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
3752
  msgid "Delete"
3753
  msgstr "Borrar"
3754
 
3755
- #: modules/mycred-module-settings.php:794
3756
  msgid "Add New Type"
3757
  msgstr "Añadir Nuevo Tipo"
3758
 
3759
- #: modules/mycred-module-settings.php:822
3760
  #: addons/gateway/event-booking/mycred-eventespresso3.php:551
3761
  #: addons/buy-creds/modules/buycred-module-core.php:650
3762
  msgid "Update Settings"
3763
  msgstr "Actualizar Configuraciones"
3764
 
3765
- #: modules/mycred-module-settings.php:831
3766
  msgid "Identify users by"
3767
  msgstr "Identifique usuarios por"
3768
 
3769
- #: modules/mycred-module-settings.php:837
3770
  msgid "User ID"
3771
  msgstr "ID del Usuario"
3772
 
3773
- #: modules/mycred-module-settings.php:838
3774
  msgid "User Email"
3775
  msgstr "Email de Usuario"
3776
 
3777
- #: modules/mycred-module-settings.php:839
3778
  msgid "User Login"
3779
  msgstr "Ingreso de Usuario"
3780
 
3781
- #: modules/mycred-module-settings.php:847
3782
  msgid ""
3783
  "Use ID if you intend to use this export as a backup of your current site "
3784
  "while Email is recommended if you want to export to a different site."
@@ -3786,11 +3767,11 @@ msgstr ""
3786
  "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
3787
  "Email si deseas exportar la data a otro sitio"
3788
 
3789
- #: modules/mycred-module-settings.php:850
3790
  msgid "Import Log Entry"
3791
  msgstr "Importa la entrada de registro"
3792
 
3793
- #: modules/mycred-module-settings.php:852
3794
  #, php-format
3795
  msgid ""
3796
  "Optional log entry to use if you intend to import this file in a different "
@@ -3799,8 +3780,8 @@ msgstr ""
3799
  "Usa la entrada de registro opcional si tiene la intención de importar este "
3800
  "fichero en otra instalación %s."
3801
 
3802
- #: modules/mycred-module-settings.php:855 modules/mycred-module-export.php:236
3803
- #: modules/mycred-module-export.php:263 modules/mycred-module-export.php:313
3804
  msgid "Export"
3805
  msgstr "Exportar"
3806
 
@@ -3919,7 +3900,7 @@ msgstr "Desactivar"
3919
  msgid "Log"
3920
  msgstr "Registro"
3921
 
3922
- #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:906
3923
  #: includes/classes/class.query-export.php:263
3924
  #: includes/classes/class.query-export.php:371
3925
  #: includes/classes/class.query-log.php:891
@@ -3937,26 +3918,26 @@ msgstr "Fila Borrado"
3937
  msgid "Log entry not found"
3938
  msgstr "No se encontro la entrada de registro "
3939
 
3940
- #: modules/mycred-module-log.php:467
3941
  msgid "Edit Log Entry"
3942
  msgstr "Edidar entrada de registro"
3943
 
3944
- #: modules/mycred-module-log.php:471
3945
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
3946
  msgstr ""
3947
  "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
3948
  "deshacer!"
3949
 
3950
- #: modules/mycred-module-log.php:502
3951
  msgid "Search results for"
3952
  msgstr "Buscar entre resultados por"
3953
 
3954
- #: modules/mycred-module-log.php:554
3955
  #, php-format
3956
  msgid "%s Log"
3957
  msgstr "Registro de %s"
3958
 
3959
- #: modules/mycred-module-log.php:666
3960
  #, php-format
3961
  msgid "My %s History"
3962
  msgstr "Mi Historial de %s"
@@ -3966,7 +3947,7 @@ msgid "Master Template"
3966
  msgstr "Plantilla Principal"
3967
 
3968
  #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:280
3969
- #: modules/mycred-module-network.php:296 modules/mycred-module-export.php:354
3970
  #: addons/sell-content/myCRED-addon-sell-content.php:481
3971
  msgid "Enabled"
3972
  msgstr "Habilitado"
@@ -3987,7 +3968,7 @@ msgstr "¡Aviso! %s no ha sido configurado."
3987
 
3988
  #. also, "Inhabilitar"
3989
  #: modules/mycred-module-network.php:285 modules/mycred-module-network.php:301
3990
- #: modules/mycred-module-export.php:353 plugins/mycred-hook-affiliatewp.php:362
3991
  #: addons/sell-content/myCRED-addon-sell-content.php:396
3992
  #: addons/sell-content/myCRED-addon-sell-content.php:480
3993
  #: addons/buy-creds/modules/buycred-module-core.php:1127
@@ -4011,7 +3992,7 @@ msgstr "Lista separada por comas de blog IDs donde %s se va a inhabilitar."
4011
  msgid "Save Network Settings"
4012
  msgstr "Guardar las Configuraciones de la Eed"
4013
 
4014
- #: modules/mycred-module-export.php:285 modules/mycred-module-export.php:332
4015
  #: includes/classes/class.query-log.php:1687
4016
  msgid ""
4017
  "Log entries are exported to a CSV file and depending on the number of "
@@ -4020,26 +4001,25 @@ msgstr ""
4020
  "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
4021
  "número de entradas seleccionadas, el proceso puede tardar unos segundos."
4022
 
4023
- #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
4024
  #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
4025
  #: includes/importers/mycred-cubepoints.php:353
4026
  #: includes/classes/class.query-export.php:263
4027
  #: includes/classes/class.query-export.php:391
4028
- #: addons/ranks/myCRED-addon-ranks.php:1079
4029
- #: addons/ranks/myCRED-addon-ranks.php:1247
4030
- #: addons/ranks/myCRED-addon-ranks.php:1254
4031
  #: addons/email-notices/myCRED-addon-email-notices.php:280
4032
  #: addons/email-notices/myCRED-addon-email-notices.php:585
4033
  #: addons/coupons/myCRED-addon-coupons.php:256
4034
  #: addons/coupons/myCRED-addon-coupons.php:520
4035
  #: addons/gateway/event-booking/mycred-eventespresso3.php:483
4036
  #: addons/gateway/event-booking/mycred-eventsmanager.php:604
4037
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611
4038
  #: addons/gateway/carts/mycred-wpecommerce.php:383
4039
  #: addons/gateway/carts/mycred-woocommerce.php:125
4040
  #: addons/gateway/carts/mycred-woocommerce.php:166
4041
- #: addons/buy-creds/modules/buycred-module-pending.php:557
4042
- #: addons/buy-creds/modules/buycred-module-pending.php:735
4043
  msgid "Point Type"
4044
  msgstr "Tipo de Puntos"
4045
 
@@ -4094,15 +4074,15 @@ msgstr "Ir a"
4094
 
4095
  #: modules/mycred-module-buddypress.php:404
4096
  #: modules/mycred-module-buddypress.php:411
4097
- #: addons/badges/myCRED-addon-badges.php:1140
4098
- #: addons/badges/myCRED-addon-badges.php:1174
4099
  #: addons/gateway/carts/mycred-woocommerce.php:147
4100
  msgid "Do not show"
4101
  msgstr "No Mostrar"
4102
 
4103
  #: modules/mycred-module-buddypress.php:406
4104
- #: addons/ranks/myCRED-addon-ranks.php:1478
4105
- #: addons/badges/myCRED-addon-badges.php:1142
4106
  msgid "Include under the \"Profile\" tab"
4107
  msgstr "Incluir debajo de la pestaña del \"Perfil\""
4108
 
@@ -4115,8 +4095,8 @@ msgid "%singular% Balance"
4115
  msgstr "%singular% Saldo"
4116
 
4117
  #: modules/mycred-module-buddypress.php:453
4118
- #: addons/ranks/myCRED-addon-ranks.php:1493
4119
- #: addons/ranks/myCRED-addon-ranks.php:1534
4120
  #: addons/notifications/myCRED-addon-notifications.php:198
4121
  msgid "Template"
4122
  msgstr "Plantilla"
@@ -4203,10 +4183,10 @@ msgstr ""
4203
  #: plugins/mycred-hook-buddypress-media.php:348
4204
  #: plugins/mycred-hook-wp-favorite-posts.php:228
4205
  #: plugins/mycred-hook-wp-favorite-posts.php:240
4206
- #: plugins/mycred-hook-contact-form7.php:169
4207
  #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:485
4208
  #: plugins/mycred-hook-bbPress.php:536 plugins/mycred-hook-bbPress.php:560
4209
- #: plugins/mycred-hook-woocommerce.php:510
4210
  #: includes/shortcodes/mycred_hook_table.php:79
4211
  msgid "Limit"
4212
  msgstr "Límite"
@@ -4252,13 +4232,13 @@ msgstr "Límite"
4252
  #: plugins/mycred-hook-buddypress-media.php:372
4253
  #: plugins/mycred-hook-buddypress-media.php:390
4254
  #: plugins/mycred-hook-buddypress-media.php:408
4255
- #: plugins/mycred-hook-contact-form7.php:175
4256
  #: plugins/mycred-hook-jetpack.php:549 plugins/mycred-hook-jetpack.php:567
4257
  #: plugins/mycred-hook-bbPress.php:449 plugins/mycred-hook-bbPress.php:467
4258
  #: plugins/mycred-hook-bbPress.php:491 plugins/mycred-hook-bbPress.php:518
4259
  #: plugins/mycred-hook-bbPress.php:542 plugins/mycred-hook-bbPress.php:566
4260
  #: plugins/mycred-hook-bbPress.php:593
4261
- #: addons/badges/myCRED-addon-badges.php:949
4262
  msgid "Log template"
4263
  msgstr "Plantilla de Registro"
4264
 
@@ -4276,7 +4256,7 @@ msgstr ""
4276
  #: plugins/mycred-hook-wp-polls.php:177
4277
  #: plugins/mycred-hook-wp-favorite-posts.php:273
4278
  #: plugins/mycred-hook-wp-favorite-posts.php:288
4279
- #: plugins/mycred-hook-woocommerce.php:516 plugins/mycred-hook-badgeOS.php:144
4280
  #: plugins/mycred-hook-badgeOS.php:146 plugins/mycred-hook-badgeOS.php:157
4281
  #: plugins/mycred-hook-badgeOS.php:327 plugins/mycred-hook-badgeOS.php:345
4282
  #: addons/coupons/myCRED-addon-coupons.php:764
@@ -4299,7 +4279,7 @@ msgid "Awards %_plural% for successful form submissions."
4299
  msgstr "Concede %_plural% por el exitoso envío del formularios."
4300
 
4301
  #: plugins/mycred-hook-gravityforms.php:130
4302
- #: plugins/mycred-hook-contact-form7.php:131
4303
  msgid "No forms found."
4304
  msgstr "No se ha encontrado ningun formulario."
4305
 
@@ -4329,7 +4309,6 @@ msgstr ""
4329
 
4330
  #: plugins/mycred-hook-buddypress.php:310
4331
  #: addons/gateway/event-booking/mycred-eventsmanager.php:692
4332
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:727
4333
  #: addons/gateway/carts/mycred-wpecommerce.php:415
4334
  msgid "Insufficient Funds"
4335
  msgstr "Fondos Insuficientes"
@@ -4342,7 +4321,6 @@ msgstr "Referiendo Visitantes"
4342
  #: includes/shortcodes/mycred_exchange.php:75
4343
  #: addons/gateway/event-booking/mycred-eventespresso3.php:498
4344
  #: addons/gateway/event-booking/mycred-eventsmanager.php:634
4345
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:650
4346
  #: addons/gateway/carts/mycred-wpecommerce.php:389
4347
  #: addons/gateway/carts/mycred-woocommerce.php:136
4348
  msgid "Exchange Rate"
@@ -4626,7 +4604,7 @@ msgid "(%s) My Balance"
4626
  msgstr "(%s) Mi Saldo"
4627
 
4628
  #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
4629
- #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1369
4630
  #: addons/gateway/carts/mycred-woocommerce.php:96
4631
  #: addons/transfer/includes/mycred-transfer-widgets.php:91
4632
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:203
@@ -4725,49 +4703,49 @@ msgstr "Punto"
4725
  msgid "Points"
4726
  msgstr "Puntos"
4727
 
4728
- #: includes/mycred-functions.php:466
4729
  msgid "Deleted"
4730
  msgstr "Borrado"
4731
 
4732
- #: includes/mycred-functions.php:607
4733
  msgid "Deleted Item"
4734
  msgstr "Artículo Borrado"
4735
 
4736
- #: includes/mycred-functions.php:671
4737
  #: addons/email-notices/myCRED-addon-email-notices.php:864
4738
  #: addons/gateway/carts/mycred-wpecommerce.php:370
4739
  msgid "General"
4740
  msgstr "General"
4741
 
4742
- #: includes/mycred-functions.php:678
4743
  msgid "User Related"
4744
  msgstr "Relacionado al Usuario"
4745
 
4746
- #: includes/mycred-functions.php:685
4747
  msgid "Post Related"
4748
  msgstr "Relacionado a la Entrada"
4749
 
4750
- #: includes/mycred-functions.php:692
4751
  msgid "Comment Related"
4752
  msgstr "Relacionado al Comentario"
4753
 
4754
- #: includes/mycred-functions.php:699
4755
  msgid "Widget Related"
4756
  msgstr "Relacionado al Widget"
4757
 
4758
- #: includes/mycred-functions.php:706
4759
  msgid "Amount Related"
4760
  msgstr "Cantidad Relacionada"
4761
 
4762
- #: includes/mycred-functions.php:713
4763
  msgid "Video Related"
4764
  msgstr "Relacionado al Video"
4765
 
4766
- #: includes/mycred-functions.php:724
4767
  msgid "and"
4768
  msgstr "y"
4769
 
4770
- #: includes/mycred-functions.php:726
4771
  msgid "Available Template Tags:"
4772
  msgstr "Etiquetas de Plantilla Disponibles:"
4773
 
@@ -5037,7 +5015,6 @@ msgstr "imites"
5037
  #: addons/transfer/myCRED-addon-transfer.php:456
5038
  #: addons/sell-content/myCRED-addon-sell-content.php:685
5039
  #: addons/gateway/event-booking/mycred-eventsmanager.php:641
5040
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:657
5041
  msgid "Log Templates"
5042
  msgstr "Plantillas de Registro"
5043
 
@@ -5055,8 +5032,8 @@ msgstr "Plantilla de registros para recibir"
5055
  #: addons/ranks/myCRED-addon-ranks.php:339
5056
  #: addons/ranks/myCRED-addon-ranks.php:340
5057
  #: addons/ranks/myCRED-addon-ranks.php:724
5058
- #: addons/ranks/myCRED-addon-ranks.php:1359
5059
- #: addons/ranks/myCRED-addon-ranks.php:1654
5060
  msgid "Ranks"
5061
  msgstr "Rangos"
5062
 
@@ -5095,7 +5072,7 @@ msgid "Search Ranks"
5095
  msgstr "Búsqueda de Rangos"
5096
 
5097
  #: addons/ranks/myCRED-addon-ranks.php:234
5098
- #: addons/ranks/myCRED-addon-ranks.php:1286
5099
  msgid "No ranks found"
5100
  msgstr "Ningun rango encontrado"
5101
 
@@ -5117,122 +5094,122 @@ msgstr ""
5117
  msgid "Are you sure you want to re-assign user ranks?"
5118
  msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
5119
 
5120
- #: addons/ranks/myCRED-addon-ranks.php:1073
5121
- #: addons/ranks/myCRED-addon-ranks.php:1174
5122
  msgid "Rank Title"
5123
  msgstr "Titulo de Rango"
5124
 
5125
- #: addons/ranks/myCRED-addon-ranks.php:1074
5126
  msgid "Logo"
5127
  msgstr "Logotipo"
5128
 
5129
- #: addons/ranks/myCRED-addon-ranks.php:1075
5130
- #: addons/badges/myCRED-addon-badges.php:828
5131
- #: addons/badges/myCRED-addon-badges.php:829
5132
  msgid "Requirement"
5133
  msgstr "Requisito"
5134
 
5135
- #: addons/ranks/myCRED-addon-ranks.php:1101
5136
  msgid "No Logo Set"
5137
  msgstr "No hay Logotipo Configurado"
5138
 
5139
- #: addons/ranks/myCRED-addon-ranks.php:1116
5140
- #: addons/ranks/myCRED-addon-ranks.php:1121
5141
  msgid "Any Value"
5142
  msgstr "Cualquier Valor"
5143
 
5144
- #: addons/ranks/myCRED-addon-ranks.php:1118
5145
  #: addons/buy-creds/modules/buycred-module-core.php:345
5146
  msgid "Minimum %plural%"
5147
  msgstr "Minimo %_plural%"
5148
 
5149
- #: addons/ranks/myCRED-addon-ranks.php:1123
5150
  msgid "Maximum %plural%"
5151
  msgstr "Maximo %plural%"
5152
 
5153
- #: addons/ranks/myCRED-addon-ranks.php:1275
5154
- #: addons/ranks/myCRED-addon-ranks.php:1276
5155
  msgid "Not Set"
5156
  msgstr "No Configurado"
5157
 
5158
- #: addons/ranks/myCRED-addon-ranks.php:1366
5159
  msgid "Rank Features"
5160
  msgstr "Caracteristicas de los Rangos"
5161
 
5162
- #: addons/ranks/myCRED-addon-ranks.php:1372
5163
  msgid "%plural% requirement"
5164
  msgstr "%plural% requisito"
5165
 
5166
- #: addons/ranks/myCRED-addon-ranks.php:1378
5167
  msgid "Content"
5168
  msgstr "Contenido"
5169
 
5170
- #: addons/ranks/myCRED-addon-ranks.php:1381
5171
  msgid "Excerpt"
5172
  msgstr "Extracto"
5173
 
5174
- #: addons/ranks/myCRED-addon-ranks.php:1384
5175
  msgid "Comments"
5176
  msgstr "Comentario"
5177
 
5178
- #: addons/ranks/myCRED-addon-ranks.php:1387
5179
  msgid "Page Attributes"
5180
  msgstr "Atributos de Página"
5181
 
5182
- #: addons/ranks/myCRED-addon-ranks.php:1390
5183
  msgid "Custom Fields"
5184
  msgstr "Campo Personalizado"
5185
 
5186
  #. not sure if this is order, as in ordering pizza or order as in rank, organization
5187
- #: addons/ranks/myCRED-addon-ranks.php:1407
5188
  msgid "Display Order"
5189
  msgstr "Orden de Visualización"
5190
 
5191
- #: addons/ranks/myCRED-addon-ranks.php:1413
5192
  msgid "Ascending - Lowest rank to highest"
5193
  msgstr "Ascendente - Rango más bajo a lo más alto"
5194
 
5195
- #: addons/ranks/myCRED-addon-ranks.php:1414
5196
  msgid "Descending - Highest rank to lowest"
5197
  msgstr "Descendiente - Rango más alto al más bajo"
5198
 
5199
- #: addons/ranks/myCRED-addon-ranks.php:1456
5200
  msgid "Calculate Totals"
5201
  msgstr "Calcular Totales"
5202
 
5203
- #: addons/ranks/myCRED-addon-ranks.php:1476
5204
- #: addons/ranks/myCRED-addon-ranks.php:1517
5205
  msgid "Do not show."
5206
  msgstr "No mostrar."
5207
 
5208
- #: addons/ranks/myCRED-addon-ranks.php:1477
5209
  msgid "Include in Profile Header."
5210
  msgstr "Incluir en Encabezado del Perfil"
5211
 
5212
- #: addons/ranks/myCRED-addon-ranks.php:1479
5213
  msgid "Include under the \"Profile\" tab and Profile Header."
5214
  msgstr "Incluir en la pestanã \"Perfil\" y Encabezado de Perfil"
5215
 
5216
- #: addons/ranks/myCRED-addon-ranks.php:1546
5217
- #: addons/email-notices/myCRED-addon-email-notices.php:1456
5218
- #: addons/badges/myCRED-addon-badges.php:1202
5219
  #: addons/buy-creds/modules/buycred-module-core.php:460
5220
  msgid "Available Shortcodes"
5221
  msgstr "Códigos cortos Disponibles"
5222
 
5223
- #: addons/ranks/myCRED-addon-ranks.php:1657
5224
  msgid "User Meta Key"
5225
  msgstr "Clave Meta del Usuario"
5226
 
5227
- #: addons/ranks/myCRED-addon-ranks.php:1661
5228
  msgid "No. of ranks"
5229
  msgstr "Numero de Rangos"
5230
 
5231
- #: addons/ranks/myCRED-addon-ranks.php:1666
5232
  msgid "Remove All Ranks"
5233
  msgstr "Quitar todos los Rangos"
5234
 
5235
- #: addons/ranks/myCRED-addon-ranks.php:1666
5236
  msgid "Assign Ranks to Users"
5237
  msgstr "Asignar Rango a los Usuarios"
5238
 
@@ -5362,12 +5339,12 @@ msgid "Both"
5362
  msgstr "Ambos"
5363
 
5364
  #: addons/email-notices/myCRED-addon-email-notices.php:610
5365
- #: addons/email-notices/myCRED-addon-email-notices.php:1467
5366
  msgid "Senders Name:"
5367
  msgstr "Nombre del Remitente"
5368
 
5369
  #: addons/email-notices/myCRED-addon-email-notices.php:614
5370
- #: addons/email-notices/myCRED-addon-email-notices.php:1473
5371
  msgid "Senders Email:"
5372
  msgstr "Correo Electrónico del Remitente:"
5373
 
@@ -5469,24 +5446,24 @@ msgstr "se ha degrado al usuario"
5469
  msgid "user is promoted"
5470
  msgstr "se ha promovido al usuario"
5471
 
5472
- #: addons/email-notices/myCRED-addon-email-notices.php:1400
5473
  #: addons/coupons/myCRED-addon-coupons.php:114
5474
  msgid "Email Notices"
5475
  msgstr "Avisos por Correo Electrónico"
5476
 
5477
- #: addons/email-notices/myCRED-addon-email-notices.php:1479
5478
  msgid "Reply-To:"
5479
  msgstr "Responder-A:"
5480
 
5481
- #: addons/email-notices/myCRED-addon-email-notices.php:1487
5482
  msgid "Default Email Content"
5483
  msgstr "Contenido de Correo Electrónico Predefinido"
5484
 
5485
- #: addons/email-notices/myCRED-addon-email-notices.php:1489
5486
  msgid "Default email content."
5487
  msgstr "Contenido de correo electrónico predefinido."
5488
 
5489
- #: addons/email-notices/myCRED-addon-email-notices.php:1597
5490
  msgid "Email Notice"
5491
  msgstr "Aviso por Correo Electrónico"
5492
 
@@ -5716,7 +5693,6 @@ msgstr "Post Types"
5716
  #: addons/sell-content/myCRED-addon-sell-content.php:719
5717
  #: addons/gateway/event-booking/mycred-eventespresso3.php:473
5718
  #: addons/gateway/event-booking/mycred-eventsmanager.php:675
5719
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:703
5720
  #: addons/transfer/includes/mycred-transfer-widgets.php:101
5721
  msgid "Button Label"
5722
  msgstr "Eqiqueta Asignada al Botón"
@@ -5725,8 +5701,6 @@ msgstr "Eqiqueta Asignada al Botón"
5725
  #: addons/gateway/event-booking/mycred-eventespresso3.php:495
5726
  #: addons/gateway/event-booking/mycred-eventsmanager.php:369
5727
  #: addons/gateway/event-booking/mycred-eventsmanager.php:373
5728
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:153
5729
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:156
5730
  msgid "Price"
5731
  msgstr "Precio"
5732
 
@@ -5775,15 +5749,13 @@ msgstr "Anual"
5775
 
5776
  #: addons/gateway/event-booking/mycred-eventespresso3.php:26
5777
  #: addons/gateway/event-booking/mycred-eventsmanager.php:594
5778
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:626
5779
  #: addons/buy-creds/modules/buycred-module-core.php:710
5780
  msgid "Payments"
5781
  msgstr "Pagos"
5782
 
5783
  #: addons/gateway/event-booking/mycred-eventespresso3.php:27
5784
  #: addons/gateway/event-booking/mycred-eventsmanager.php:36
5785
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39
5786
- #: addons/buy-creds/modules/buycred-module-pending.php:717
5787
  msgid "Pay Now"
5788
  msgstr "Pagar Ahora"
5789
 
@@ -5819,7 +5791,6 @@ msgstr "Configuraciones de la Pasarela de Pago"
5819
 
5820
  #: addons/gateway/event-booking/mycred-eventespresso3.php:442
5821
  #: addons/gateway/event-booking/mycred-eventsmanager.php:580
5822
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:595
5823
  #, php-format
5824
  msgid "How many %s is 1 %s worth?"
5825
  msgstr "¿Cuantos %s vale un %s?"
@@ -5863,7 +5834,6 @@ msgstr "¡Los usuarios deben estar conectado para usar esta pasarela de pago!"
5863
 
5864
  #: addons/gateway/event-booking/mycred-eventespresso3.php:510
5865
  #: addons/gateway/event-booking/mycred-eventsmanager.php:625
5866
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:641
5867
  #: addons/gateway/carts/mycred-wpecommerce.php:393
5868
  #: addons/gateway/carts/mycred-woocommerce.php:176
5869
  msgid "Profit Sharing"
@@ -5871,7 +5841,6 @@ msgstr "Reparto de Ganancias"
5871
 
5872
  #: addons/gateway/event-booking/mycred-eventespresso3.php:512
5873
  #: addons/gateway/event-booking/mycred-eventsmanager.php:628
5874
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:644
5875
  #: addons/gateway/carts/mycred-wpecommerce.php:397
5876
  #: addons/gateway/carts/mycred-woocommerce.php:178
5877
  msgid "Option to share sales with the product owner. Use zero to disable."
@@ -5918,42 +5887,34 @@ msgstr ""
5918
  "pagina de pago."
5919
 
5920
  #: addons/gateway/event-booking/mycred-eventsmanager.php:30
5921
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
5922
  msgid "Payment for tickets to %link_with_title%"
5923
  msgstr "Pago de entradas para %link_with_title%"
5924
 
5925
  #: addons/gateway/event-booking/mycred-eventsmanager.php:31
5926
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
5927
  msgid "Ticket refund for %link_with_title%"
5928
  msgstr "Reembolso de entrada para "
5929
 
5930
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35
5931
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
5932
  msgid "Pay using your %_plural% balance"
5933
  msgstr "Paga utilizando tu saldo de %_plural%"
5934
 
5935
  #: addons/gateway/event-booking/mycred-eventsmanager.php:37
5936
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
5937
  msgid "Pay"
5938
  msgstr "Pagar"
5939
 
5940
  #: addons/gateway/event-booking/mycred-eventsmanager.php:40
5941
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
5942
  msgid "Thank you for your payment!"
5943
  msgstr "¡Gracias por su pago!"
5944
 
5945
  #: addons/gateway/event-booking/mycred-eventsmanager.php:41
5946
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
5947
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
5948
  msgstr "Lo siento pero no puedes pagar estos billetes usando %_plural%"
5949
 
5950
  #: addons/gateway/event-booking/mycred-eventsmanager.php:366
5951
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:150
5952
  msgid "Ticket Type"
5953
  msgstr "Tipo de Billete"
5954
 
5955
  #: addons/gateway/event-booking/mycred-eventsmanager.php:377
5956
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:159
5957
  msgid "Spaces"
5958
  msgstr "Espacios"
5959
 
@@ -5971,17 +5932,14 @@ msgid "%s Payments"
5971
  msgstr "Pagos de "
5972
 
5973
  #: addons/gateway/event-booking/mycred-eventsmanager.php:596
5974
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:628
5975
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
5976
  msgstr "Deshabilitado - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
5977
 
5978
  #: addons/gateway/event-booking/mycred-eventsmanager.php:597
5979
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:629
5980
  msgid "Single - Users can ONLY pay for tickets using %plural%."
5981
  msgstr "Individuales - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
5982
 
5983
  #: addons/gateway/event-booking/mycred-eventsmanager.php:598
5984
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:630
5985
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
5986
  msgstr ""
5987
  "Multi-usuarios pueden pagar entradas utilizando otras pasarelas de pago o "
@@ -5989,8 +5947,6 @@ msgstr ""
5989
 
5990
  #: addons/gateway/event-booking/mycred-eventsmanager.php:618
5991
  #: addons/gateway/event-booking/mycred-eventsmanager.php:651
5992
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:634
5993
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:667
5994
  msgid "Refunds"
5995
  msgstr "Reembolsos"
5996
 
@@ -6004,17 +5960,14 @@ msgstr ""
6004
  "reservas \"Rechazadas\""
6005
 
6006
  #: addons/gateway/event-booking/mycred-eventsmanager.php:644
6007
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:660
6008
  msgid "Purchases"
6009
  msgstr "Compras"
6010
 
6011
  #: addons/gateway/event-booking/mycred-eventsmanager.php:661
6012
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:689
6013
  msgid "Payment Link Label"
6014
  msgstr "La Etiqueta del Enlace de Pago"
6015
 
6016
  #: addons/gateway/event-booking/mycred-eventsmanager.php:664
6017
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:692
6018
  msgid ""
6019
  "The payment link shows / hides the payment form under \"My Bookings\". No "
6020
  "HTML allowed."
@@ -6023,59 +5976,31 @@ msgstr ""
6023
  " ¡No se permite HTML!"
6024
 
6025
  #: addons/gateway/event-booking/mycred-eventsmanager.php:668
6026
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:696
6027
  msgid "Payment Header"
6028
  msgstr "Encabezado de Pago"
6029
 
6030
  #: addons/gateway/event-booking/mycred-eventsmanager.php:671
6031
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:699
6032
  msgid "Shown on top of the payment form. No HTML allowed."
6033
  msgstr "Mostrar en la encima del formulario de pago. No se permite HTML."
6034
 
6035
  #: addons/gateway/event-booking/mycred-eventsmanager.php:678
6036
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:706
6037
  msgid "The button label for payments. No HTML allowed!"
6038
  msgstr "La etiqueta para el botón de pagos. ¡No se permite HTML!"
6039
 
6040
  #: addons/gateway/event-booking/mycred-eventsmanager.php:682
6041
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:717
6042
  #: addons/gateway/carts/mycred-wpecommerce.php:404
6043
  msgid "Messages"
6044
  msgstr "Mensajes"
6045
 
6046
  #: addons/gateway/event-booking/mycred-eventsmanager.php:685
6047
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:720
6048
  msgid "Successful Payments"
6049
  msgstr "Compras Finalizadas con Exito"
6050
 
6051
  #: addons/gateway/event-booking/mycred-eventsmanager.php:688
6052
  #: addons/gateway/event-booking/mycred-eventsmanager.php:695
6053
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:723
6054
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:730
6055
  msgid "No HTML allowed!"
6056
  msgstr "¡No se permite HTML!"
6057
 
6058
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:374
6059
- msgid "You can not pay using this gateway."
6060
- msgstr "No puede usar esta pasarela de pago."
6061
-
6062
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:492
6063
- msgid "Reject"
6064
- msgstr "Rechazar"
6065
-
6066
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:501
6067
- msgid "Edit/View"
6068
- msgstr "Editar/Ver"
6069
-
6070
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:637
6071
- msgid ""
6072
- "The percentage of the paid amount to refund if a user cancels their booking. "
6073
- "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
6074
- msgstr ""
6075
- "El porcentaje de la cantidad pagada que se reembolsará si se cancela una "
6076
- "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
6077
- "reservas \"Rechazadas\""
6078
-
6079
  #: addons/gateway/carts/mycred-wpecommerce.php:20
6080
  msgid "Payment for Order: #%order_id%"
6081
  msgstr "Pago por el Pedido"
@@ -6264,9 +6189,9 @@ msgstr "Ganchos"
6264
 
6265
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:204
6266
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
6267
- #: addons/buy-creds/modules/buycred-module-pending.php:270
6268
- #: addons/buy-creds/modules/buycred-module-pending.php:621
6269
- #: addons/buy-creds/modules/buycred-module-pending.php:734
6270
  #: addons/buy-creds/gateways/bank-transfer.php:141
6271
  msgid "Cost"
6272
  msgstr "Costo"
@@ -6306,26 +6231,26 @@ msgstr "Continuar a %s"
6306
  msgid "Click here if you are not automatically redirected"
6307
  msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
6308
 
6309
- #: addons/buy-creds/modules/buycred-module-pending.php:266
6310
- #: addons/buy-creds/modules/buycred-module-pending.php:731
6311
  #: addons/buy-creds/modules/buycred-module-core.php:771
6312
  #: addons/buy-creds/gateways/bank-transfer.php:142
6313
  msgid "Transaction ID"
6314
  msgstr "Identificación de la Transacción"
6315
 
6316
- #: addons/buy-creds/modules/buycred-module-pending.php:271
6317
- #: addons/buy-creds/modules/buycred-module-pending.php:596
6318
- #: addons/buy-creds/modules/buycred-module-pending.php:732
6319
  #: addons/buy-creds/modules/buycred-module-core.php:766
6320
  #: addons/buy-creds/includes/buycred-functions.php:119
6321
  msgid "Gateway"
6322
  msgstr "Pasarela"
6323
 
6324
- #: addons/buy-creds/modules/buycred-module-pending.php:473
6325
  msgid "Save"
6326
  msgstr "Guardar"
6327
 
6328
- #: addons/buy-creds/modules/buycred-module-pending.php:627
6329
  #: addons/buy-creds/gateways/bank-transfer.php:209
6330
  #: addons/buy-creds/gateways/bitpay.php:251
6331
  #: addons/buy-creds/gateways/paypal-standard.php:279
2
  msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
+ "POT-Creation-Date: 2017-08-29 08:42+0000\n"
6
+ "PO-Revision-Date: 2017-08-29 08:42+0000\n"
7
+ "Last-Translator: mycredlabs <gabriel.s@merovingi.com>\n"
8
  "Language-Team: Spanish (Venezuela)\n"
9
  "Language: es-VE\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
24
  "X-Poedit-SearchPath-1: .\n"
25
  "X-Loco-Target-Locale: es_VE"
26
 
27
+ #: mycred.php:581
28
  msgid "Import balances via a CSV file."
29
  msgstr ""
30
 
31
+ #: abstracts/mycred-abstract-hook.php:294
32
  msgid "/ Day"
33
  msgstr ""
34
 
35
+ #: abstracts/mycred-abstract-hook.php:295
36
  msgid "/ Week"
37
  msgstr ""
38
 
39
+ #: abstracts/mycred-abstract-hook.php:296
40
  msgid "/ Month"
41
  msgstr ""
42
 
43
+ #: abstracts/mycred-abstract-hook.php:297
44
  msgid "in Total"
45
  msgstr ""
46
 
58
 
59
  #: modules/mycred-module-management.php:237
60
  #: modules/mycred-module-management.php:775 modules/mycred-module-log.php:93
61
+ #: modules/mycred-module-log.php:904
62
  #: includes/classes/class.query-export.php:263
63
  #: includes/classes/class.query-export.php:360
64
  #: includes/classes/class.query-log.php:904
75
  msgstr ""
76
 
77
  #: modules/mycred-module-management.php:747
78
+ #: modules/mycred-module-export.php:432 modules/mycred-module-export.php:480
79
  #: addons/buy-creds/modules/buycred-module-core.php:1374
80
  msgid "Username"
81
  msgstr ""
108
  msgid "Log Updated"
109
  msgstr ""
110
 
111
+ #: modules/mycred-module-settings.php:431
112
+ msgid "Export %singular% Balances"
113
+ msgstr ""
114
+
115
  #: modules/mycred-module-settings.php:432
116
  msgid ""
117
  "In order to adjust the number of decimal places you want to use we must "
134
  msgstr ""
135
 
136
  #: modules/mycred-module-settings.php:530 modules/mycred-module-addons.php:330
137
+ #: modules/mycred-module-addons.php:368 modules/mycred-module-log.php:544
138
  #: modules/mycred-module-network.php:241 modules/mycred-module-network.php:276
139
  #: modules/mycred-module-network.php:292
140
  #: includes/importers/mycred-cubepoints.php:305
151
  #: modules/mycred-module-settings.php:555
152
  #: modules/mycred-module-settings.php:605
153
  #: modules/mycred-module-settings.php:612
154
+ #: modules/mycred-module-settings.php:800
155
+ #: modules/mycred-module-settings.php:806 includes/mycred-setup.php:280
156
  #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
157
  #: includes/mycred-setup.php:340 addons/coupons/myCRED-addon-coupons.php:710
158
  #: addons/coupons/myCRED-addon-coupons.php:717
247
  msgid "Balance Meta Key"
248
  msgstr ""
249
 
250
+ #: modules/mycred-module-settings.php:712
251
+ msgid "Export Balances"
252
+ msgstr ""
253
+
254
+ #: modules/mycred-module-settings.php:811
255
  msgid ""
256
  "The meta key must be lowercase and only contain letters or underscores. All "
257
  "other characters will be deleted!"
290
  msgstr[0] ""
291
  msgstr[1] ""
292
 
293
+ #: modules/mycred-module-log.php:466
294
  msgid "The log entry was successfully updated."
295
  msgstr ""
296
 
297
+ #: modules/mycred-module-log.php:467
298
  msgid "The selected log entry could not be deleted."
299
  msgstr ""
300
 
301
+ #: modules/mycred-module-log.php:501
302
  #, php-format
303
  msgctxt "e.g. Log entries from April 12th 2016"
304
  msgid "Log entries from %s"
305
  msgstr ""
306
 
307
+ #: modules/mycred-module-log.php:554
308
  msgid ""
309
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
310
  "Certain hooks and shortcodes will not work correctly!"
311
  msgstr ""
312
 
313
+ #: modules/mycred-module-log.php:911
314
  msgid "Original Entry"
315
  msgstr ""
316
 
317
+ #: modules/mycred-module-log.php:923
318
  msgid "Delete Entry"
319
  msgstr ""
320
 
321
+ #: modules/mycred-module-log.php:928
322
  msgid "Update Entry"
323
  msgstr ""
324
 
342
  msgid "Blog IDs"
343
  msgstr ""
344
 
345
+ #: modules/mycred-module-export.php:390
346
  msgid "Make both format options available."
347
  msgstr ""
348
 
349
+ #: modules/mycred-module-export.php:392
350
  msgid "Exports"
351
  msgstr ""
352
 
353
+ #: modules/mycred-module-export.php:398
354
  msgid "Front End Exports"
355
  msgstr ""
356
 
357
+ #: modules/mycred-module-export.php:414 modules/mycred-module-export.php:462
358
  msgid "Export Format"
359
  msgstr ""
360
 
361
+ #: modules/mycred-module-export.php:430 modules/mycred-module-export.php:478
362
  msgid "File Name"
363
  msgstr ""
364
 
365
+ #: modules/mycred-module-export.php:439
366
  msgid ""
367
  "If enabled, users will only be able to export their own log entries! Export "
368
  "tools becomes available wherever you are using the mycred_history shortcode "
369
  "or in the users profile."
370
  msgstr ""
371
 
372
+ #: modules/mycred-module-export.php:446
373
  msgid "Back End Exports"
374
  msgstr ""
375
 
376
+ #: modules/mycred-module-export.php:487
377
  msgid ""
378
  "Raw format should be used when you intend to use the export tool to backup "
379
  "or import entries in another installation. Formatted exports reflect what "
385
  msgstr ""
386
 
387
  #: modules/mycred-module-buddypress.php:405
388
+ #: addons/badges/myCRED-addon-badges.php:1166
389
  msgid "Include in Profile Header"
390
  msgstr ""
391
 
392
  #: modules/mycred-module-buddypress.php:407
393
+ #: addons/badges/myCRED-addon-badges.php:1168
394
  msgid "Include under the \"Profile\" tab and Profile Header"
395
  msgstr ""
396
 
456
  #: plugins/mycred-hook-wp-favorite-posts.php:256
457
  #: plugins/mycred-hook-wp-favorite-posts.php:274
458
  #: plugins/mycred-hook-wp-favorite-posts.php:289
459
+ #: plugins/mycred-hook-contact-form7.php:179
460
  #: plugins/mycred-hook-jetpack.php:550 plugins/mycred-hook-jetpack.php:568
461
  #: plugins/mycred-hook-bbPress.php:450 plugins/mycred-hook-bbPress.php:468
462
  #: plugins/mycred-hook-bbPress.php:492 plugins/mycred-hook-bbPress.php:519
463
  #: plugins/mycred-hook-bbPress.php:543 plugins/mycred-hook-bbPress.php:567
464
+ #: plugins/mycred-hook-bbPress.php:594 plugins/mycred-hook-woocommerce.php:521
465
  #: plugins/mycred-hook-badgeOS.php:328 plugins/mycred-hook-badgeOS.php:346
466
  #: addons/transfer/includes/mycred-transfer-widgets.php:102
467
  #: addons/transfer/includes/mycred-transfer-widgets.php:106
520
  msgstr ""
521
 
522
  #: plugins/mycred-hook-gravityforms.php:156
523
+ #: plugins/mycred-hook-contact-form7.php:162
524
  #, php-format
525
  msgid "Form: %s"
526
  msgstr ""
786
  msgid "Leave empty for no rewards"
787
  msgstr ""
788
 
789
+ #: plugins/mycred-hook-woocommerce.php:388
790
  msgid "WooCommerce Product Reviews"
791
  msgstr ""
792
 
793
+ #: plugins/mycred-hook-woocommerce.php:389
794
  msgid ""
795
  "Awards %_plural% for users leaving reviews on your WooCommerce products."
796
  msgstr ""
857
  msgstr ""
858
 
859
  #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
860
+ #: addons/email-notices/myCRED-addon-email-notices.php:1445
861
  msgid "Advanced"
862
  msgstr ""
863
 
979
  msgid "Shows multiple balances."
980
  msgstr ""
981
 
982
+ #: includes/mycred-functions.php:2790
983
  msgid "in total"
984
  msgstr ""
985
 
986
+ #: includes/mycred-functions.php:2792
987
  msgid "per day"
988
  msgstr ""
989
 
990
+ #: includes/mycred-functions.php:2795
991
  msgid "per week"
992
  msgstr ""
993
 
994
+ #: includes/mycred-functions.php:2798
995
  msgid "per month"
996
  msgstr ""
997
 
998
+ #: includes/mycred-functions.php:2800 includes/mycred-functions.php:2806
999
  #, php-format
1000
  msgid "Maximum once"
1001
  msgid_plural "Maximum %d times"
1002
  msgstr[0] ""
1003
  msgstr[1] ""
1004
 
1005
+ #: includes/mycred-functions.php:2828
1006
  #, php-format
1007
  msgctxt "e.g. 5 th"
1008
  msgid "%d th"
1009
  msgstr ""
1010
 
1011
+ #: includes/mycred-functions.php:2832
1012
  #, php-format
1013
  msgctxt "e.g. 1 st"
1014
  msgid "%d st"
1015
  msgstr ""
1016
 
1017
+ #: includes/mycred-functions.php:2833
1018
  #, php-format
1019
  msgctxt "e.g. 2 nd"
1020
  msgid "%d nd"
1021
  msgstr ""
1022
 
1023
+ #: includes/mycred-functions.php:2834
1024
  #, php-format
1025
  msgctxt "e.g. 3 rd"
1026
  msgid "%d rd"
1672
  msgstr ""
1673
 
1674
  #: addons/ranks/myCRED-addon-ranks.php:230
1675
+ #: addons/ranks/myCRED-addon-ranks.php:1379
1676
  msgid "Rank Logo"
1677
  msgstr ""
1678
 
1710
  msgid "No ranks exists."
1711
  msgstr ""
1712
 
1713
+ #: addons/ranks/myCRED-addon-ranks.php:1193
1714
  msgid "Rank Setup"
1715
  msgstr ""
1716
 
1717
+ #: addons/ranks/myCRED-addon-ranks.php:1234
1718
  msgid "Minimum Balance Requirement"
1719
  msgstr ""
1720
 
1721
+ #: addons/ranks/myCRED-addon-ranks.php:1240
1722
  msgid "Maximum Balance Requirement"
1723
  msgstr ""
1724
 
1725
+ #: addons/ranks/myCRED-addon-ranks.php:1399
1726
  msgid "Rank Post Type"
1727
  msgstr ""
1728
 
1729
+ #: addons/ranks/myCRED-addon-ranks.php:1402
1730
  msgid "Make Ranks Public"
1731
  msgstr ""
1732
 
1733
+ #: addons/ranks/myCRED-addon-ranks.php:1406
1734
  msgid "Rank SLUG"
1735
  msgstr ""
1736
 
1737
+ #: addons/ranks/myCRED-addon-ranks.php:1408
1738
  msgid ""
1739
  "If you have selected to make Ranks public, you can select what rank archive "
1740
  "URL slug you want to use. Ignored if Ranks are not set to be public."
1741
  msgstr ""
1742
 
1743
+ #: addons/ranks/myCRED-addon-ranks.php:1429
1744
  msgid "Option to set in which order Ranks should be shown on the archive page."
1745
  msgstr ""
1746
 
1747
+ #: addons/ranks/myCRED-addon-ranks.php:1436
1748
  msgid "Rank Behaviour"
1749
  msgstr ""
1750
 
1751
+ #: addons/ranks/myCRED-addon-ranks.php:1441
1752
  msgid "Based on Current Balances"
1753
  msgstr ""
1754
 
1755
+ #: addons/ranks/myCRED-addon-ranks.php:1443
1756
  msgid ""
1757
  "Users can be promoted or demoted depending on where their balance fits in "
1758
  "amongst your ranks."
1759
  msgstr ""
1760
 
1761
+ #: addons/ranks/myCRED-addon-ranks.php:1449
1762
  msgid "Based on Total Balances"
1763
  msgstr ""
1764
 
1765
+ #: addons/ranks/myCRED-addon-ranks.php:1451
1766
  msgid ""
1767
  "Users can only be promoted and gain higher ranks even if their balance "
1768
  "decreases."
1769
  msgstr ""
1770
 
1771
+ #: addons/ranks/myCRED-addon-ranks.php:1458
1772
  msgid "Tools"
1773
  msgstr ""
1774
 
1775
+ #: addons/ranks/myCRED-addon-ranks.php:1459
1776
  msgid ""
1777
  "Use this button to calculate or recalculate each individual users total "
1778
  "balance if you think your users total balances are incorrect, or if you "
1779
  "switch from Ranks being based on users current balance to total balance."
1780
  msgstr ""
1781
 
1782
+ #: addons/ranks/myCRED-addon-ranks.php:1464
1783
+ #: addons/badges/myCRED-addon-badges.php:1155
1784
  msgid "Third-party Integrations"
1785
  msgstr ""
1786
 
1787
+ #: addons/ranks/myCRED-addon-ranks.php:1499
1788
+ #: addons/ranks/myCRED-addon-ranks.php:1540
1789
  msgid ""
1790
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
1791
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
1792
  msgstr ""
1793
 
1794
+ #: addons/ranks/myCRED-addon-ranks.php:1503
1795
+ #: addons/ranks/myCRED-addon-ranks.php:1544
1796
+ #: addons/badges/myCRED-addon-badges.php:1187
1797
+ #: addons/badges/myCRED-addon-badges.php:1221
1798
  msgid "Not installed"
1799
  msgstr ""
1800
 
1801
+ #: addons/ranks/myCRED-addon-ranks.php:1522
1802
  msgid "Include in Topic Replies"
1803
  msgstr ""
1804
 
1805
+ #: addons/ranks/myCRED-addon-ranks.php:1523
1806
+ #: addons/badges/myCRED-addon-badges.php:1200
1807
  msgid "Include in Profile"
1808
  msgstr ""
1809
 
1810
+ #: addons/ranks/myCRED-addon-ranks.php:1524
1811
  msgid "Include in Topic Replies and Profile"
1812
  msgstr ""
1813
 
1910
  msgid "user gains a badge"
1911
  msgstr ""
1912
 
1913
+ #: addons/email-notices/myCRED-addon-email-notices.php:1418
1914
  msgid "Plain Text"
1915
  msgstr ""
1916
 
1917
+ #: addons/email-notices/myCRED-addon-email-notices.php:1426
1918
  #: addons/banking/services/mycred-service-payouts.php:825
1919
  msgid "Schedule"
1920
  msgstr ""
1921
 
1922
+ #: addons/email-notices/myCRED-addon-email-notices.php:1430
1923
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1924
  msgstr ""
1925
 
1926
+ #: addons/email-notices/myCRED-addon-email-notices.php:1433
1927
  msgid "Send emails immediately"
1928
  msgstr ""
1929
 
1930
+ #: addons/email-notices/myCRED-addon-email-notices.php:1436
1931
  msgid "Send emails once an hour"
1932
  msgstr ""
1933
 
1934
+ #: addons/email-notices/myCRED-addon-email-notices.php:1439
1935
  msgid "Send emails once a day"
1936
  msgstr ""
1937
 
1938
+ #: addons/email-notices/myCRED-addon-email-notices.php:1448
1939
  msgid "Filter Email Subjects"
1940
  msgstr ""
1941
 
1942
+ #: addons/email-notices/myCRED-addon-email-notices.php:1451
1943
  msgid "Filter Email Body"
1944
  msgstr ""
1945
 
1946
+ #: addons/email-notices/myCRED-addon-email-notices.php:1460
1947
  msgid ""
1948
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1949
  "use a SMTP plugin for emails."
1950
  msgstr ""
1951
 
1952
+ #: addons/email-notices/myCRED-addon-email-notices.php:1473
1953
  msgid "Defaults"
1954
  msgstr ""
1955
 
1956
+ #: addons/email-notices/myCRED-addon-email-notices.php:1506
1957
  msgid "Default CSS Styling"
1958
  msgstr ""
1959
 
1960
+ #: addons/email-notices/myCRED-addon-email-notices.php:1508
1961
  msgid ""
1962
  "Default email CSS styling. Note that if you intend to send HTML emails, you "
1963
  "should use inline CSS styling for best results."
1964
  msgstr ""
1965
 
1966
+ #: addons/email-notices/myCRED-addon-email-notices.php:1606
1967
  msgid "Unsubscribe"
1968
  msgstr ""
1969
 
1970
+ #: addons/email-notices/myCRED-addon-email-notices.php:1628
1971
  msgid "There are no email notifications yet."
1972
  msgstr ""
1973
 
1974
+ #: addons/email-notices/myCRED-addon-email-notices.php:1635
1975
+ #: addons/buy-creds/modules/buycred-module-pending.php:517
1976
  msgid "Save Changes"
1977
  msgstr ""
1978
 
2009
  #: addons/badges/myCRED-addon-badges.php:160
2010
  #: addons/badges/myCRED-addon-badges.php:295
2011
  #: addons/badges/myCRED-addon-badges.php:296
2012
+ #: addons/badges/myCRED-addon-badges.php:1152
2013
+ #: addons/badges/myCRED-addon-badges.php:1281
2014
+ #: addons/badges/myCRED-addon-badges.php:1284
2015
  msgid "Badges"
2016
  msgstr ""
2017
 
2061
  msgid "Badge Saved."
2062
  msgstr ""
2063
 
2064
+ #: addons/badges/myCRED-addon-badges.php:421
2065
+ #: addons/badges/myCRED-addon-badges.php:505
2066
  msgid "Badge Name"
2067
  msgstr ""
2068
 
2069
+ #: addons/badges/myCRED-addon-badges.php:422
2070
  msgid "Default Image"
2071
  msgstr ""
2072
 
2073
+ #: addons/badges/myCRED-addon-badges.php:423
2074
  msgid "First Level"
2075
  msgstr ""
2076
 
2077
+ #: addons/badges/myCRED-addon-badges.php:424
2078
  msgid "Requirements"
2079
  msgstr ""
2080
 
2081
+ #: addons/badges/myCRED-addon-badges.php:535
2082
+ #: addons/badges/myCRED-addon-badges.php:826
2083
  msgid "Add Level"
2084
  msgstr ""
2085
 
2086
+ #: addons/badges/myCRED-addon-badges.php:536
2087
+ #: addons/badges/myCRED-addon-badges.php:827
2088
  msgid "Remove Level"
2089
  msgstr ""
2090
 
2091
+ #: addons/badges/myCRED-addon-badges.php:537
2092
+ #: addons/badges/myCRED-addon-badges.php:780
2093
+ #: addons/badges/myCRED-addon-badges.php:843
2094
+ #: addons/badges/myCRED-addon-badges.php:848
2095
  msgid "Set Image"
2096
  msgstr ""
2097
 
2098
+ #: addons/badges/myCRED-addon-badges.php:538
2099
+ #: addons/badges/myCRED-addon-badges.php:780
2100
+ #: addons/badges/myCRED-addon-badges.php:848
2101
  msgid "Change Image"
2102
  msgstr ""
2103
 
2104
+ #: addons/badges/myCRED-addon-badges.php:539
2105
  msgid "Are you sure you want to remove this level?"
2106
  msgstr ""
2107
 
2108
+ #: addons/badges/myCRED-addon-badges.php:540
2109
+ #: addons/badges/myCRED-addon-badges.php:844
2110
+ #: addons/badges/myCRED-addon-badges.php:1313
2111
  msgid "Level"
2112
  msgstr ""
2113
 
2114
+ #: addons/badges/myCRED-addon-badges.php:541
2115
  msgid "Badge Image"
2116
  msgstr ""
2117
 
2118
+ #: addons/badges/myCRED-addon-badges.php:542
2119
  msgid "Use as Badge"
2120
  msgstr ""
2121
 
2122
+ #: addons/badges/myCRED-addon-badges.php:543
2123
+ #: addons/badges/myCRED-addon-badges.php:946
2124
  #: addons/badges/includes/mycred-badge-functions.php:272
2125
  msgctxt "Comparison of badge requirements. A AND B"
2126
  msgid "AND"
2127
  msgstr ""
2128
 
2129
+ #: addons/badges/myCRED-addon-badges.php:544
2130
+ #: addons/badges/myCRED-addon-badges.php:946
2131
  #: addons/badges/includes/mycred-badge-functions.php:270
2132
  msgctxt "Comparison of badge requirements. A OR B"
2133
  msgid "OR"
2134
  msgstr ""
2135
 
2136
+ #: addons/badges/myCRED-addon-badges.php:596
2137
  msgid "Badge Setup"
2138
  msgstr ""
2139
 
2140
+ #: addons/badges/myCRED-addon-badges.php:605
2141
  msgid "Default Badge Image"
2142
  msgstr ""
2143
 
2144
+ #: addons/badges/myCRED-addon-badges.php:703
2145
  msgid "Assign Badge"
2146
  msgstr ""
2147
 
2148
+ #: addons/badges/myCRED-addon-badges.php:704
2149
  msgid "Remove Connections"
2150
  msgstr ""
2151
 
2152
+ #: addons/badges/myCRED-addon-badges.php:747
2153
  #: addons/badges/includes/mycred-badge-functions.php:288
2154
  msgid "This badge is manually awarded."
2155
  msgstr ""
2156
 
2157
+ #: addons/badges/myCRED-addon-badges.php:783
2158
  msgid "Optional image to show when a user has not earned this badge."
2159
  msgstr ""
2160
 
2161
+ #: addons/badges/myCRED-addon-badges.php:802
2162
  msgid "Time(s)"
2163
  msgstr ""
2164
 
2165
+ #: addons/badges/myCRED-addon-badges.php:803
2166
  msgid "In total"
2167
  msgstr ""
2168
 
2169
+ #: addons/badges/myCRED-addon-badges.php:850
2170
  #, php-format
2171
  msgid "Level %d"
2172
  msgstr ""
2173
 
2174
+ #: addons/badges/myCRED-addon-badges.php:874
2175
  msgid "Select Point Type"
2176
  msgstr ""
2177
 
2178
+ #: addons/badges/myCRED-addon-badges.php:888
2179
  msgid "Select Reference"
2180
  msgstr ""
2181
 
2182
+ #: addons/badges/myCRED-addon-badges.php:964
2183
  msgid "Reward"
2184
  msgstr ""
2185
 
2186
+ #: addons/badges/myCRED-addon-badges.php:1183
2187
+ #: addons/badges/myCRED-addon-badges.php:1217
2188
  msgid "Show all badges, including badges users have not yet earned."
2189
  msgstr ""
2190
 
2191
+ #: addons/badges/myCRED-addon-badges.php:1201
2192
  msgid "Include in Forum Replies"
2193
  msgstr ""
2194
 
2195
+ #: addons/badges/myCRED-addon-badges.php:1202
2196
  msgid "Include in Profile and Forum Replies"
2197
  msgstr ""
2198
 
2199
+ #: addons/badges/myCRED-addon-badges.php:1276
2200
  msgid "No image set"
2201
  msgstr ""
2202
 
2203
+ #: addons/badges/myCRED-addon-badges.php:1308
2204
  msgid "Select a level"
2205
  msgstr ""
2206
 
2207
+ #: addons/badges/myCRED-addon-badges.php:1322
2208
  msgid "Earned"
2209
  msgstr ""
2210
 
2211
+ #: addons/badges/myCRED-addon-badges.php:1431
2212
  #, php-format
2213
  msgid "A total of %d users have received this badge."
2214
  msgstr ""
2215
 
2216
+ #: addons/badges/myCRED-addon-badges.php:1433
2217
  msgid "No users has yet earned this badge."
2218
  msgstr ""
2219
 
2220
+ #: addons/badges/myCRED-addon-badges.php:1458
2221
  msgid "No connections where removed."
2222
  msgstr ""
2223
 
2224
+ #: addons/badges/myCRED-addon-badges.php:1460
2225
  #, php-format
2226
  msgid "%s connections where removed."
2227
  msgstr ""
2723
  msgid "Duplicate schedule."
2724
  msgstr ""
2725
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2726
  #: addons/gateway/carts/mycred-woocommerce.php:30
2727
  msgid "Let users pay using points."
2728
  msgstr ""
2742
  msgstr ""
2743
 
2744
  #: addons/gateway/carts/mycred-woocommerce.php:319
2745
+ #: addons/sell-content/includes/mycred-sell-functions.php:534
2746
  msgid "Insufficient funds."
2747
  msgstr ""
2748
 
2754
 
2755
  #: addons/transfer/includes/mycred-transfer-widgets.php:113
2756
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
2757
+ #: addons/buy-creds/modules/buycred-module-pending.php:576
2758
  #: addons/buy-creds/modules/buycred-module-core.php:1487
2759
  msgid "Recipient"
2760
  msgstr ""
2881
  msgid "An unknown error occurred. Coupon not used."
2882
  msgstr ""
2883
 
2884
+ #: addons/sell-content/includes/mycred-sell-functions.php:525
2885
  #, php-format
2886
  msgctxt "Point type name"
2887
  msgid "You can not pay using %s"
2888
  msgstr ""
2889
 
2890
+ #: addons/sell-content/includes/mycred-sell-functions.php:786
2891
  #, php-format
2892
  msgctxt "all post type name"
2893
  msgid "All %s"
2894
  msgstr ""
2895
 
2896
+ #: addons/sell-content/includes/mycred-sell-functions.php:790
2897
  #, php-format
2898
  msgctxt "all post type name"
2899
  msgid "%s I manually select"
2900
  msgstr ""
2901
 
2902
+ #: addons/sell-content/includes/mycred-sell-functions.php:794
2903
  #, php-format
2904
  msgctxt "%s = post type name"
2905
  msgid "All %s except"
2906
  msgstr ""
2907
 
2908
+ #: addons/sell-content/includes/mycred-sell-functions.php:795
2909
  #, php-format
2910
  msgctxt "%s = post type name"
2911
  msgid "Comma separated list of %s IDs to exclude"
2912
  msgstr ""
2913
 
2914
+ #: addons/sell-content/includes/mycred-sell-functions.php:798
2915
  #, php-format
2916
  msgctxt "%s = post type name"
2917
  msgid "Only %s"
2918
  msgstr ""
2919
 
2920
+ #: addons/sell-content/includes/mycred-sell-functions.php:799
2921
  #, php-format
2922
  msgctxt "%s = post type name"
2923
  msgid "Comma separated list of %s IDs"
2924
  msgstr ""
2925
 
2926
+ #: addons/sell-content/includes/mycred-sell-functions.php:811
2927
  #, php-format
2928
  msgctxt "e.g. Only \"Posts\" in \"Categories\""
2929
  msgid "Only %s in %s"
2930
  msgstr ""
2931
 
2932
+ #: addons/sell-content/includes/mycred-sell-functions.php:812
2933
+ #: addons/sell-content/includes/mycred-sell-functions.php:816
2934
+ #: addons/sell-content/includes/mycred-sell-functions.php:822
2935
+ #: addons/sell-content/includes/mycred-sell-functions.php:826
2936
  #, php-format
2937
  msgctxt "%s = taxonomy name"
2938
  msgid "Comma separated list of %s slugs"
2939
  msgstr ""
2940
 
2941
+ #: addons/sell-content/includes/mycred-sell-functions.php:815
2942
  #, php-format
2943
  msgctxt "e.g. Only \"Posts\" not in \"Categories\""
2944
  msgid "Only %s not in %s"
2945
  msgstr ""
2946
 
2947
+ #: addons/sell-content/includes/mycred-sell-functions.php:821
2948
  #, php-format
2949
  msgctxt "e.g. Only \"Posts\" with \"Tags\""
2950
  msgid "Only %s with %s"
2951
  msgstr ""
2952
 
2953
+ #: addons/sell-content/includes/mycred-sell-functions.php:825
2954
  #, php-format
2955
  msgctxt "e.g. Only \"Posts\" without \"Tags\""
2956
  msgid "Only %s without %s"
3067
  msgid "December"
3068
  msgstr ""
3069
 
3070
+ #: addons/buy-creds/modules/buycred-module-pending.php:140
3071
  msgctxt "Post Type General Name"
3072
  msgid "Pending Payments"
3073
  msgstr ""
3074
 
3075
+ #: addons/buy-creds/modules/buycred-module-pending.php:141
3076
  msgctxt "Post Type Singular Name"
3077
  msgid "Pending Payment"
3078
  msgstr ""
3079
 
 
3080
  #: addons/buy-creds/modules/buycred-module-pending.php:142
3081
+ #: addons/buy-creds/modules/buycred-module-pending.php:144
3082
+ #: addons/buy-creds/modules/buycred-module-pending.php:234
3083
+ #: addons/buy-creds/modules/buycred-module-pending.php:235
3084
  msgid "Pending Payments"
3085
  msgstr ""
3086
 
3087
+ #: addons/buy-creds/modules/buycred-module-pending.php:148
3088
  msgid "Edit Pending Payment"
3089
  msgstr ""
3090
 
3091
+ #: addons/buy-creds/modules/buycred-module-pending.php:151
3092
+ #: addons/buy-creds/modules/buycred-module-pending.php:152
3093
  msgid "Not found in Trash"
3094
  msgstr ""
3095
 
 
 
3096
  #: addons/buy-creds/modules/buycred-module-pending.php:182
3097
  #: addons/buy-creds/modules/buycred-module-pending.php:183
3098
  #: addons/buy-creds/modules/buycred-module-pending.php:184
3100
  #: addons/buy-creds/modules/buycred-module-pending.php:186
3101
  #: addons/buy-creds/modules/buycred-module-pending.php:187
3102
  #: addons/buy-creds/modules/buycred-module-pending.php:188
3103
+ #: addons/buy-creds/modules/buycred-module-pending.php:189
3104
+ #: addons/buy-creds/modules/buycred-module-pending.php:190
3105
  msgid "Payment Updated."
3106
  msgstr ""
3107
 
3108
+ #: addons/buy-creds/modules/buycred-module-pending.php:218
3109
  msgid "Pending payment successfully credited to account."
3110
  msgstr ""
3111
 
3112
+ #: addons/buy-creds/modules/buycred-module-pending.php:220
3113
  msgid "Failed to credit the pending payment to account."
3114
  msgstr ""
3115
 
3116
+ #: addons/buy-creds/modules/buycred-module-pending.php:295
3117
  #: addons/buy-creds/modules/buycred-module-core.php:767
3118
  msgid "Buyer"
3119
  msgstr ""
3120
 
3121
+ #: addons/buy-creds/modules/buycred-module-pending.php:299
3122
  msgid "Type"
3123
  msgstr ""
3124
 
3125
+ #: addons/buy-creds/modules/buycred-module-pending.php:396
3126
+ #: addons/buy-creds/modules/buycred-module-pending.php:505
3127
  msgid "Pay Out"
3128
  msgstr ""
3129
 
3130
+ #: addons/buy-creds/modules/buycred-module-pending.php:468
3131
  msgid "Pending Payment"
3132
  msgstr ""
3133
 
3134
+ #: addons/buy-creds/modules/buycred-module-pending.php:506
3135
  msgid "Trash"
3136
  msgstr ""
3137
 
3138
+ #: addons/buy-creds/modules/buycred-module-pending.php:570
3139
  msgid "Payer"
3140
  msgstr ""
3141
 
3142
+ #: addons/buy-creds/modules/buycred-module-pending.php:679
3143
  msgid "Pending request created."
3144
  msgstr ""
3145
 
3146
+ #: addons/buy-creds/modules/buycred-module-pending.php:727
3147
  #, php-format
3148
  msgid "Pending payment updated by %s"
3149
  msgstr ""
3150
 
3151
+ #: addons/buy-creds/modules/buycred-module-pending.php:825
3152
  msgid "No pending payments found"
3153
  msgstr ""
3154
 
3319
  msgid "Return to %s"
3320
  msgstr ""
3321
 
3322
+ #: mycred.php:568
 
 
 
 
3323
  #, php-format
3324
  msgid "%s Log Import"
3325
  msgstr "Registro de Importe %s"
3326
 
3327
+ #: mycred.php:569
3328
  msgid "Import log entries via a CSV file."
3329
  msgstr "Importa las entradas de registro atraves de un fichero CSV."
3330
 
3331
+ #: mycred.php:580
3332
  #, php-format
3333
  msgid "%s Balance Import"
3334
  msgstr "%s balance de Importar"
3335
 
3336
+ #: mycred.php:592
3337
  #, php-format
3338
  msgid "%s CubePoints Import"
3339
  msgstr "Importar CubePoints %s"
3340
 
3341
+ #: mycred.php:593
3342
  msgid "Import CubePoints log entries and / or balances."
3343
  msgstr "Importar las entradas de registro de CubePoints y/o saldos."
3344
 
3345
+ #: mycred.php:635 modules/mycred-module-management.php:316
3346
+ #: modules/mycred-module-settings.php:425 modules/mycred-module-log.php:463
3347
  #: addons/transfer/myCRED-addon-transfer.php:159
3348
  #: addons/ranks/myCRED-addon-ranks.php:986
3349
+ #: addons/ranks/myCRED-addon-ranks.php:1572
3350
+ #: addons/badges/myCRED-addon-badges.php:727
3351
  #: addons/gateway/event-booking/mycred-eventsmanager.php:537
3352
  msgid "Processing..."
3353
  msgstr "Procesando..."
3354
 
3355
+ #: mycred.php:636
3356
  msgid "Sent"
3357
  msgstr "Enviado"
3358
 
3359
+ #: mycred.php:637
3360
  msgid "Error - Try Again"
3361
  msgstr "Error - Inténtelo de nuevo."
3362
 
3363
+ #: mycred.php:812 mycred.php:813
3364
  #, php-format
3365
  msgid "About %s"
3366
  msgstr "Sobre"
3367
 
3368
+ #: mycred.php:821 mycred.php:822
3369
  msgid "Awesome People"
3370
  msgstr "Gente genial"
3371
 
3372
+ #: mycred.php:859 modules/mycred-module-management.php:558
3373
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:34
3374
  msgid "Balance"
3375
  msgstr "Saldo"
3376
 
3377
+ #: mycred.php:926 modules/mycred-module-management.php:473
3378
  #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
3379
+ #: addons/buy-creds/modules/buycred-module-pending.php:471
3380
  msgid "History"
3381
  msgstr "Historial"
3382
 
3383
+ #: mycred.php:997 mycred.php:1018
3384
  #: addons/notifications/myCRED-addon-notifications.php:194
3385
  #: addons/email-notices/myCRED-addon-email-notices.php:277
3386
  #: addons/banking/services/mycred-service-interest.php:477
3387
  #: addons/gateway/event-booking/mycred-eventsmanager.php:591
 
3388
  msgid "Setup"
3389
  msgstr "Configurar"
3390
 
3391
+ #: mycred.php:999 modules/mycred-module-settings.php:21
3392
  #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
3393
  #: modules/mycred-module-network.php:270
3394
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
3396
  msgid "Settings"
3397
  msgstr "Configuraciones"
3398
 
3399
+ #: mycred.php:1039
3400
  msgid ""
3401
  "Make sure to backup your database and files before updating, in case "
3402
  "anything goes wrong!"
3408
  msgid "This Hook has no settings"
3409
  msgstr "Este gancho no ha sido configurado"
3410
 
3411
+ #: abstracts/mycred-abstract-hook.php:293
3412
+ #: abstracts/mycred-abstract-hook.php:364 includes/mycred-functions.php:2784
3413
  msgid "No limit"
3414
  msgstr "Sin Limite"
3415
 
3416
+ #: abstracts/mycred-abstract-hook.php:365
3417
  msgid "Once every 24 hours"
3418
  msgstr "Una vez cada 24 horas"
3419
 
3420
+ #: abstracts/mycred-abstract-hook.php:366
3421
  msgid "Once every 7 days"
3422
  msgstr "Una vez cada 7 dias"
3423
 
3424
+ #: abstracts/mycred-abstract-hook.php:367
3425
  msgid "Once per day (reset at midnight)"
3426
  msgstr "Una vez al dia (reinicializado al medianoche)"
3427
 
3428
+ #: abstracts/mycred-abstract-hook.php:374
3429
  #: addons/email-notices/myCRED-addon-email-notices.php:531
3430
  #: addons/email-notices/myCRED-addon-email-notices.php:862
3431
+ #: addons/badges/myCRED-addon-badges.php:905
3432
  #: addons/banking/abstracts/mycred-abstract-service.php:351
3433
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
3434
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
3443
  msgid "Surprise"
3444
  msgstr "Sorpresa"
3445
 
3446
+ #: abstracts/mycred-abstract-module.php:520
3447
  #: modules/mycred-module-network.php:218
3448
  msgid "click to close"
3449
  msgstr "haga clic para cerrar"
3450
 
3451
+ #: abstracts/mycred-abstract-module.php:521
3452
  #: modules/mycred-module-network.php:219
3453
  msgid "click to open"
3454
  msgstr "haga clic para abrir"
3455
 
3456
+ #: abstracts/mycred-abstract-module.php:554
3457
  #: modules/mycred-module-network.php:261
3458
+ #: addons/email-notices/myCRED-addon-email-notices.php:1556
3459
  #: addons/gateway/event-booking/mycred-eventespresso3.php:451
3460
  #: addons/buy-creds/modules/buycred-module-core.php:597
3461
  msgid "Settings Updated"
3478
  msgstr "La Cantidad no Puede ser Cero"
3479
 
3480
  #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
3481
+ #: modules/mycred-module-log.php:896
3482
  #: includes/classes/class.query-export.php:263
3483
  #: includes/classes/class.query-export.php:399
3484
  #: includes/classes/class.query-log.php:892
3510
  msgstr "Editar saldo del usuario"
3511
 
3512
  #: modules/mycred-module-management.php:315
3513
+ #: modules/mycred-module-settings.php:430 modules/mycred-module-log.php:462
3514
  #: addons/banking/myCRED-addon-banking.php:204
3515
  msgid "Close"
3516
  msgstr "Cerrar"
3540
 
3541
  #: modules/mycred-module-management.php:583
3542
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
3543
+ #: addons/buy-creds/modules/buycred-module-pending.php:745
3544
  msgid "Cancel"
3545
  msgstr "Cancelar"
3546
 
3568
  #: addons/transfer/includes/mycred-transfer-widgets.php:105
3569
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
3570
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
3571
+ #: addons/buy-creds/modules/buycred-module-pending.php:296
3572
+ #: addons/buy-creds/modules/buycred-module-pending.php:642
3573
+ #: addons/buy-creds/modules/buycred-module-pending.php:760
3574
  msgid "Amount"
3575
  msgstr "Cantidad"
3576
 
3578
  msgid "A positive or negative value"
3579
  msgstr "Un valor positivo o negativo"
3580
 
3581
+ #: modules/mycred-module-management.php:796 modules/mycred-module-log.php:915
3582
  #: addons/gateway/event-booking/mycred-eventespresso3.php:518
3583
  msgid "Log Entry"
3584
  msgstr "Entrada de Registro"
3625
  msgid "Done!"
3626
  msgstr "¡Realizado!"
3627
 
 
 
 
 
3628
  #: modules/mycred-module-settings.php:530
3629
  #, php-format
3630
  msgid "%s Settings"
3637
  #: modules/mycred-module-settings.php:544 includes/mycred-setup.php:275
3638
  #: addons/gateway/event-booking/mycred-eventespresso3.php:460
3639
  #: addons/gateway/event-booking/mycred-eventsmanager.php:658
 
3640
  msgid "Labels"
3641
  msgstr "Etiquetas"
3642
 
3643
  #: modules/mycred-module-settings.php:562 includes/mycred-setup.php:293
3644
+ #: addons/email-notices/myCRED-addon-email-notices.php:1415
3645
  msgid "Format"
3646
  msgstr "Formato"
3647
 
3677
  msgid "Management"
3678
  msgstr "Gestión"
3679
 
3680
+ #: modules/mycred-module-settings.php:678 modules/mycred-module-log.php:427
3681
  msgid "Entries"
3682
  msgstr "Entradas"
3683
 
3684
  #: modules/mycred-module-settings.php:684
3685
  #: modules/mycred-module-settings.php:709
3686
+ #: addons/ranks/myCRED-addon-ranks.php:1669
3687
+ #: addons/buy-creds/modules/buycred-module-pending.php:477
3688
+ #: addons/buy-creds/modules/buycred-module-pending.php:763
3689
  msgid "Actions"
3690
  msgstr "Acciones"
3691
 
3694
  msgstr "Registro Vacío"
3695
 
3696
  #: modules/mycred-module-settings.php:703
3697
+ #: addons/ranks/myCRED-addon-ranks.php:1080
3698
+ #: addons/badges/myCRED-addon-badges.php:425
3699
  msgid "Users"
3700
  msgstr "Usuarios"
3701
 
3703
  msgid "Set all to zero"
3704
  msgstr "Ajusta todo a cero"
3705
 
3706
+ #: modules/mycred-module-settings.php:729 includes/mycred-widgets.php:573
3707
  #: addons/transfer/myCRED-addon-transfer.php:370
3708
  #: addons/sell-content/myCRED-addon-sell-content.php:581
3709
  #: addons/transfer/includes/mycred-transfer-widgets.php:121
3711
  msgid "Point Types"
3712
  msgstr "Tipo de Puntos"
3713
 
3714
+ #: modules/mycred-module-settings.php:743
3715
+ #: modules/mycred-module-settings.php:769
3716
+ #: modules/mycred-module-settings.php:799
3717
  msgid "Meta Key"
3718
  msgstr "Clave Meta"
3719
 
3720
+ #: modules/mycred-module-settings.php:749
3721
+ #: modules/mycred-module-settings.php:775
3722
+ #: modules/mycred-module-settings.php:805
3723
  #: addons/email-notices/myCRED-addon-email-notices.php:578
3724
  #: addons/gateway/carts/mycred-woocommerce.php:155
3725
  msgid "Label"
3726
  msgstr "Etiqueta"
3727
 
3728
+ #: modules/mycred-module-settings.php:756
3729
+ #: modules/mycred-module-settings.php:782
3730
  #: includes/classes/class.query-log.php:1019
3731
  #: includes/classes/class.query-log.php:1622
3732
  #: addons/banking/services/mycred-service-payouts.php:472
 
3733
  msgid "Delete"
3734
  msgstr "Borrar"
3735
 
3736
+ #: modules/mycred-module-settings.php:795
3737
  msgid "Add New Type"
3738
  msgstr "Añadir Nuevo Tipo"
3739
 
3740
+ #: modules/mycred-module-settings.php:823
3741
  #: addons/gateway/event-booking/mycred-eventespresso3.php:551
3742
  #: addons/buy-creds/modules/buycred-module-core.php:650
3743
  msgid "Update Settings"
3744
  msgstr "Actualizar Configuraciones"
3745
 
3746
+ #: modules/mycred-module-settings.php:836
3747
  msgid "Identify users by"
3748
  msgstr "Identifique usuarios por"
3749
 
3750
+ #: modules/mycred-module-settings.php:842
3751
  msgid "User ID"
3752
  msgstr "ID del Usuario"
3753
 
3754
+ #: modules/mycred-module-settings.php:843
3755
  msgid "User Email"
3756
  msgstr "Email de Usuario"
3757
 
3758
+ #: modules/mycred-module-settings.php:844
3759
  msgid "User Login"
3760
  msgstr "Ingreso de Usuario"
3761
 
3762
+ #: modules/mycred-module-settings.php:852
3763
  msgid ""
3764
  "Use ID if you intend to use this export as a backup of your current site "
3765
  "while Email is recommended if you want to export to a different site."
3767
  "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
3768
  "Email si deseas exportar la data a otro sitio"
3769
 
3770
+ #: modules/mycred-module-settings.php:857
3771
  msgid "Import Log Entry"
3772
  msgstr "Importa la entrada de registro"
3773
 
3774
+ #: modules/mycred-module-settings.php:859
3775
  #, php-format
3776
  msgid ""
3777
  "Optional log entry to use if you intend to import this file in a different "
3780
  "Usa la entrada de registro opcional si tiene la intención de importar este "
3781
  "fichero en otra instalación %s."
3782
 
3783
+ #: modules/mycred-module-settings.php:866 modules/mycred-module-export.php:268
3784
+ #: modules/mycred-module-export.php:295 modules/mycred-module-export.php:345
3785
  msgid "Export"
3786
  msgstr "Exportar"
3787
 
3900
  msgid "Log"
3901
  msgstr "Registro"
3902
 
3903
+ #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:892
3904
  #: includes/classes/class.query-export.php:263
3905
  #: includes/classes/class.query-export.php:371
3906
  #: includes/classes/class.query-log.php:891
3918
  msgid "Log entry not found"
3919
  msgstr "No se encontro la entrada de registro "
3920
 
3921
+ #: modules/mycred-module-log.php:461
3922
  msgid "Edit Log Entry"
3923
  msgstr "Edidar entrada de registro"
3924
 
3925
+ #: modules/mycred-module-log.php:465
3926
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
3927
  msgstr ""
3928
  "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
3929
  "deshacer!"
3930
 
3931
+ #: modules/mycred-module-log.php:496
3932
  msgid "Search results for"
3933
  msgstr "Buscar entre resultados por"
3934
 
3935
+ #: modules/mycred-module-log.php:544
3936
  #, php-format
3937
  msgid "%s Log"
3938
  msgstr "Registro de %s"
3939
 
3940
+ #: modules/mycred-module-log.php:652
3941
  #, php-format
3942
  msgid "My %s History"
3943
  msgstr "Mi Historial de %s"
3947
  msgstr "Plantilla Principal"
3948
 
3949
  #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:280
3950
+ #: modules/mycred-module-network.php:296 modules/mycred-module-export.php:386
3951
  #: addons/sell-content/myCRED-addon-sell-content.php:481
3952
  msgid "Enabled"
3953
  msgstr "Habilitado"
3968
 
3969
  #. also, "Inhabilitar"
3970
  #: modules/mycred-module-network.php:285 modules/mycred-module-network.php:301
3971
+ #: modules/mycred-module-export.php:385 plugins/mycred-hook-affiliatewp.php:362
3972
  #: addons/sell-content/myCRED-addon-sell-content.php:396
3973
  #: addons/sell-content/myCRED-addon-sell-content.php:480
3974
  #: addons/buy-creds/modules/buycred-module-core.php:1127
3992
  msgid "Save Network Settings"
3993
  msgstr "Guardar las Configuraciones de la Eed"
3994
 
3995
+ #: modules/mycred-module-export.php:317 modules/mycred-module-export.php:364
3996
  #: includes/classes/class.query-log.php:1687
3997
  msgid ""
3998
  "Log entries are exported to a CSV file and depending on the number of "
4001
  "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
4002
  "número de entradas seleccionadas, el proceso puede tardar unos segundos."
4003
 
4004
+ #: modules/mycred-module-export.php:432 modules/mycred-module-export.php:480
4005
  #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
4006
  #: includes/importers/mycred-cubepoints.php:353
4007
  #: includes/classes/class.query-export.php:263
4008
  #: includes/classes/class.query-export.php:391
4009
+ #: addons/ranks/myCRED-addon-ranks.php:1083
4010
+ #: addons/ranks/myCRED-addon-ranks.php:1251
4011
+ #: addons/ranks/myCRED-addon-ranks.php:1258
4012
  #: addons/email-notices/myCRED-addon-email-notices.php:280
4013
  #: addons/email-notices/myCRED-addon-email-notices.php:585
4014
  #: addons/coupons/myCRED-addon-coupons.php:256
4015
  #: addons/coupons/myCRED-addon-coupons.php:520
4016
  #: addons/gateway/event-booking/mycred-eventespresso3.php:483
4017
  #: addons/gateway/event-booking/mycred-eventsmanager.php:604
 
4018
  #: addons/gateway/carts/mycred-wpecommerce.php:383
4019
  #: addons/gateway/carts/mycred-woocommerce.php:125
4020
  #: addons/gateway/carts/mycred-woocommerce.php:166
4021
+ #: addons/buy-creds/modules/buycred-module-pending.php:584
4022
+ #: addons/buy-creds/modules/buycred-module-pending.php:762
4023
  msgid "Point Type"
4024
  msgstr "Tipo de Puntos"
4025
 
4074
 
4075
  #: modules/mycred-module-buddypress.php:404
4076
  #: modules/mycred-module-buddypress.php:411
4077
+ #: addons/badges/myCRED-addon-badges.php:1165
4078
+ #: addons/badges/myCRED-addon-badges.php:1199
4079
  #: addons/gateway/carts/mycred-woocommerce.php:147
4080
  msgid "Do not show"
4081
  msgstr "No Mostrar"
4082
 
4083
  #: modules/mycred-module-buddypress.php:406
4084
+ #: addons/ranks/myCRED-addon-ranks.php:1482
4085
+ #: addons/badges/myCRED-addon-badges.php:1167
4086
  msgid "Include under the \"Profile\" tab"
4087
  msgstr "Incluir debajo de la pestaña del \"Perfil\""
4088
 
4095
  msgstr "%singular% Saldo"
4096
 
4097
  #: modules/mycred-module-buddypress.php:453
4098
+ #: addons/ranks/myCRED-addon-ranks.php:1497
4099
+ #: addons/ranks/myCRED-addon-ranks.php:1538
4100
  #: addons/notifications/myCRED-addon-notifications.php:198
4101
  msgid "Template"
4102
  msgstr "Plantilla"
4183
  #: plugins/mycred-hook-buddypress-media.php:348
4184
  #: plugins/mycred-hook-wp-favorite-posts.php:228
4185
  #: plugins/mycred-hook-wp-favorite-posts.php:240
4186
+ #: plugins/mycred-hook-contact-form7.php:172
4187
  #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:485
4188
  #: plugins/mycred-hook-bbPress.php:536 plugins/mycred-hook-bbPress.php:560
4189
+ #: plugins/mycred-hook-woocommerce.php:514
4190
  #: includes/shortcodes/mycred_hook_table.php:79
4191
  msgid "Limit"
4192
  msgstr "Límite"
4232
  #: plugins/mycred-hook-buddypress-media.php:372
4233
  #: plugins/mycred-hook-buddypress-media.php:390
4234
  #: plugins/mycred-hook-buddypress-media.php:408
4235
+ #: plugins/mycred-hook-contact-form7.php:178
4236
  #: plugins/mycred-hook-jetpack.php:549 plugins/mycred-hook-jetpack.php:567
4237
  #: plugins/mycred-hook-bbPress.php:449 plugins/mycred-hook-bbPress.php:467
4238
  #: plugins/mycred-hook-bbPress.php:491 plugins/mycred-hook-bbPress.php:518
4239
  #: plugins/mycred-hook-bbPress.php:542 plugins/mycred-hook-bbPress.php:566
4240
  #: plugins/mycred-hook-bbPress.php:593
4241
+ #: addons/badges/myCRED-addon-badges.php:974
4242
  msgid "Log template"
4243
  msgstr "Plantilla de Registro"
4244
 
4256
  #: plugins/mycred-hook-wp-polls.php:177
4257
  #: plugins/mycred-hook-wp-favorite-posts.php:273
4258
  #: plugins/mycred-hook-wp-favorite-posts.php:288
4259
+ #: plugins/mycred-hook-woocommerce.php:520 plugins/mycred-hook-badgeOS.php:144
4260
  #: plugins/mycred-hook-badgeOS.php:146 plugins/mycred-hook-badgeOS.php:157
4261
  #: plugins/mycred-hook-badgeOS.php:327 plugins/mycred-hook-badgeOS.php:345
4262
  #: addons/coupons/myCRED-addon-coupons.php:764
4279
  msgstr "Concede %_plural% por el exitoso envío del formularios."
4280
 
4281
  #: plugins/mycred-hook-gravityforms.php:130
4282
+ #: plugins/mycred-hook-contact-form7.php:134
4283
  msgid "No forms found."
4284
  msgstr "No se ha encontrado ningun formulario."
4285
 
4309
 
4310
  #: plugins/mycred-hook-buddypress.php:310
4311
  #: addons/gateway/event-booking/mycred-eventsmanager.php:692
 
4312
  #: addons/gateway/carts/mycred-wpecommerce.php:415
4313
  msgid "Insufficient Funds"
4314
  msgstr "Fondos Insuficientes"
4321
  #: includes/shortcodes/mycred_exchange.php:75
4322
  #: addons/gateway/event-booking/mycred-eventespresso3.php:498
4323
  #: addons/gateway/event-booking/mycred-eventsmanager.php:634
 
4324
  #: addons/gateway/carts/mycred-wpecommerce.php:389
4325
  #: addons/gateway/carts/mycred-woocommerce.php:136
4326
  msgid "Exchange Rate"
4604
  msgstr "(%s) Mi Saldo"
4605
 
4606
  #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
4607
+ #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1373
4608
  #: addons/gateway/carts/mycred-woocommerce.php:96
4609
  #: addons/transfer/includes/mycred-transfer-widgets.php:91
4610
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:203
4703
  msgid "Points"
4704
  msgstr "Puntos"
4705
 
4706
+ #: includes/mycred-functions.php:472
4707
  msgid "Deleted"
4708
  msgstr "Borrado"
4709
 
4710
+ #: includes/mycred-functions.php:613
4711
  msgid "Deleted Item"
4712
  msgstr "Artículo Borrado"
4713
 
4714
+ #: includes/mycred-functions.php:677
4715
  #: addons/email-notices/myCRED-addon-email-notices.php:864
4716
  #: addons/gateway/carts/mycred-wpecommerce.php:370
4717
  msgid "General"
4718
  msgstr "General"
4719
 
4720
+ #: includes/mycred-functions.php:684
4721
  msgid "User Related"
4722
  msgstr "Relacionado al Usuario"
4723
 
4724
+ #: includes/mycred-functions.php:691
4725
  msgid "Post Related"
4726
  msgstr "Relacionado a la Entrada"
4727
 
4728
+ #: includes/mycred-functions.php:698
4729
  msgid "Comment Related"
4730
  msgstr "Relacionado al Comentario"
4731
 
4732
+ #: includes/mycred-functions.php:705
4733
  msgid "Widget Related"
4734
  msgstr "Relacionado al Widget"
4735
 
4736
+ #: includes/mycred-functions.php:712
4737
  msgid "Amount Related"
4738
  msgstr "Cantidad Relacionada"
4739
 
4740
+ #: includes/mycred-functions.php:719
4741
  msgid "Video Related"
4742
  msgstr "Relacionado al Video"
4743
 
4744
+ #: includes/mycred-functions.php:730
4745
  msgid "and"
4746
  msgstr "y"
4747
 
4748
+ #: includes/mycred-functions.php:732
4749
  msgid "Available Template Tags:"
4750
  msgstr "Etiquetas de Plantilla Disponibles:"
4751
 
5015
  #: addons/transfer/myCRED-addon-transfer.php:456
5016
  #: addons/sell-content/myCRED-addon-sell-content.php:685
5017
  #: addons/gateway/event-booking/mycred-eventsmanager.php:641
 
5018
  msgid "Log Templates"
5019
  msgstr "Plantillas de Registro"
5020
 
5032
  #: addons/ranks/myCRED-addon-ranks.php:339
5033
  #: addons/ranks/myCRED-addon-ranks.php:340
5034
  #: addons/ranks/myCRED-addon-ranks.php:724
5035
+ #: addons/ranks/myCRED-addon-ranks.php:1363
5036
+ #: addons/ranks/myCRED-addon-ranks.php:1658
5037
  msgid "Ranks"
5038
  msgstr "Rangos"
5039
 
5072
  msgstr "Búsqueda de Rangos"
5073
 
5074
  #: addons/ranks/myCRED-addon-ranks.php:234
5075
+ #: addons/ranks/myCRED-addon-ranks.php:1290
5076
  msgid "No ranks found"
5077
  msgstr "Ningun rango encontrado"
5078
 
5094
  msgid "Are you sure you want to re-assign user ranks?"
5095
  msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
5096
 
5097
+ #: addons/ranks/myCRED-addon-ranks.php:1077
5098
+ #: addons/ranks/myCRED-addon-ranks.php:1178
5099
  msgid "Rank Title"
5100
  msgstr "Titulo de Rango"
5101
 
5102
+ #: addons/ranks/myCRED-addon-ranks.php:1078
5103
  msgid "Logo"
5104
  msgstr "Logotipo"
5105
 
5106
+ #: addons/ranks/myCRED-addon-ranks.php:1079
5107
+ #: addons/badges/myCRED-addon-badges.php:853
5108
+ #: addons/badges/myCRED-addon-badges.php:854
5109
  msgid "Requirement"
5110
  msgstr "Requisito"
5111
 
5112
+ #: addons/ranks/myCRED-addon-ranks.php:1105
5113
  msgid "No Logo Set"
5114
  msgstr "No hay Logotipo Configurado"
5115
 
5116
+ #: addons/ranks/myCRED-addon-ranks.php:1120
5117
+ #: addons/ranks/myCRED-addon-ranks.php:1125
5118
  msgid "Any Value"
5119
  msgstr "Cualquier Valor"
5120
 
5121
+ #: addons/ranks/myCRED-addon-ranks.php:1122
5122
  #: addons/buy-creds/modules/buycred-module-core.php:345
5123
  msgid "Minimum %plural%"
5124
  msgstr "Minimo %_plural%"
5125
 
5126
+ #: addons/ranks/myCRED-addon-ranks.php:1127
5127
  msgid "Maximum %plural%"
5128
  msgstr "Maximo %plural%"
5129
 
5130
+ #: addons/ranks/myCRED-addon-ranks.php:1279
5131
+ #: addons/ranks/myCRED-addon-ranks.php:1280
5132
  msgid "Not Set"
5133
  msgstr "No Configurado"
5134
 
5135
+ #: addons/ranks/myCRED-addon-ranks.php:1370
5136
  msgid "Rank Features"
5137
  msgstr "Caracteristicas de los Rangos"
5138
 
5139
+ #: addons/ranks/myCRED-addon-ranks.php:1376
5140
  msgid "%plural% requirement"
5141
  msgstr "%plural% requisito"
5142
 
5143
+ #: addons/ranks/myCRED-addon-ranks.php:1382
5144
  msgid "Content"
5145
  msgstr "Contenido"
5146
 
5147
+ #: addons/ranks/myCRED-addon-ranks.php:1385
5148
  msgid "Excerpt"
5149
  msgstr "Extracto"
5150
 
5151
+ #: addons/ranks/myCRED-addon-ranks.php:1388
5152
  msgid "Comments"
5153
  msgstr "Comentario"
5154
 
5155
+ #: addons/ranks/myCRED-addon-ranks.php:1391
5156
  msgid "Page Attributes"
5157
  msgstr "Atributos de Página"
5158
 
5159
+ #: addons/ranks/myCRED-addon-ranks.php:1394
5160
  msgid "Custom Fields"
5161
  msgstr "Campo Personalizado"
5162
 
5163
  #. not sure if this is order, as in ordering pizza or order as in rank, organization
5164
+ #: addons/ranks/myCRED-addon-ranks.php:1411
5165
  msgid "Display Order"
5166
  msgstr "Orden de Visualización"
5167
 
5168
+ #: addons/ranks/myCRED-addon-ranks.php:1417
5169
  msgid "Ascending - Lowest rank to highest"
5170
  msgstr "Ascendente - Rango más bajo a lo más alto"
5171
 
5172
+ #: addons/ranks/myCRED-addon-ranks.php:1418
5173
  msgid "Descending - Highest rank to lowest"
5174
  msgstr "Descendiente - Rango más alto al más bajo"
5175
 
5176
+ #: addons/ranks/myCRED-addon-ranks.php:1460
5177
  msgid "Calculate Totals"
5178
  msgstr "Calcular Totales"
5179
 
5180
+ #: addons/ranks/myCRED-addon-ranks.php:1480
5181
+ #: addons/ranks/myCRED-addon-ranks.php:1521
5182
  msgid "Do not show."
5183
  msgstr "No mostrar."
5184
 
5185
+ #: addons/ranks/myCRED-addon-ranks.php:1481
5186
  msgid "Include in Profile Header."
5187
  msgstr "Incluir en Encabezado del Perfil"
5188
 
5189
+ #: addons/ranks/myCRED-addon-ranks.php:1483
5190
  msgid "Include under the \"Profile\" tab and Profile Header."
5191
  msgstr "Incluir en la pestanã \"Perfil\" y Encabezado de Perfil"
5192
 
5193
+ #: addons/ranks/myCRED-addon-ranks.php:1550
5194
+ #: addons/email-notices/myCRED-addon-email-notices.php:1466
5195
+ #: addons/badges/myCRED-addon-badges.php:1227
5196
  #: addons/buy-creds/modules/buycred-module-core.php:460
5197
  msgid "Available Shortcodes"
5198
  msgstr "Códigos cortos Disponibles"
5199
 
5200
+ #: addons/ranks/myCRED-addon-ranks.php:1661
5201
  msgid "User Meta Key"
5202
  msgstr "Clave Meta del Usuario"
5203
 
5204
+ #: addons/ranks/myCRED-addon-ranks.php:1665
5205
  msgid "No. of ranks"
5206
  msgstr "Numero de Rangos"
5207
 
5208
+ #: addons/ranks/myCRED-addon-ranks.php:1670
5209
  msgid "Remove All Ranks"
5210
  msgstr "Quitar todos los Rangos"
5211
 
5212
+ #: addons/ranks/myCRED-addon-ranks.php:1670
5213
  msgid "Assign Ranks to Users"
5214
  msgstr "Asignar Rango a los Usuarios"
5215
 
5339
  msgstr "Ambos"
5340
 
5341
  #: addons/email-notices/myCRED-addon-email-notices.php:610
5342
+ #: addons/email-notices/myCRED-addon-email-notices.php:1477
5343
  msgid "Senders Name:"
5344
  msgstr "Nombre del Remitente"
5345
 
5346
  #: addons/email-notices/myCRED-addon-email-notices.php:614
5347
+ #: addons/email-notices/myCRED-addon-email-notices.php:1483
5348
  msgid "Senders Email:"
5349
  msgstr "Correo Electrónico del Remitente:"
5350
 
5446
  msgid "user is promoted"
5447
  msgstr "se ha promovido al usuario"
5448
 
5449
+ #: addons/email-notices/myCRED-addon-email-notices.php:1410
5450
  #: addons/coupons/myCRED-addon-coupons.php:114
5451
  msgid "Email Notices"
5452
  msgstr "Avisos por Correo Electrónico"
5453
 
5454
+ #: addons/email-notices/myCRED-addon-email-notices.php:1489
5455
  msgid "Reply-To:"
5456
  msgstr "Responder-A:"
5457
 
5458
+ #: addons/email-notices/myCRED-addon-email-notices.php:1497
5459
  msgid "Default Email Content"
5460
  msgstr "Contenido de Correo Electrónico Predefinido"
5461
 
5462
+ #: addons/email-notices/myCRED-addon-email-notices.php:1499
5463
  msgid "Default email content."
5464
  msgstr "Contenido de correo electrónico predefinido."
5465
 
5466
+ #: addons/email-notices/myCRED-addon-email-notices.php:1607
5467
  msgid "Email Notice"
5468
  msgstr "Aviso por Correo Electrónico"
5469
 
5693
  #: addons/sell-content/myCRED-addon-sell-content.php:719
5694
  #: addons/gateway/event-booking/mycred-eventespresso3.php:473
5695
  #: addons/gateway/event-booking/mycred-eventsmanager.php:675
 
5696
  #: addons/transfer/includes/mycred-transfer-widgets.php:101
5697
  msgid "Button Label"
5698
  msgstr "Eqiqueta Asignada al Botón"
5701
  #: addons/gateway/event-booking/mycred-eventespresso3.php:495
5702
  #: addons/gateway/event-booking/mycred-eventsmanager.php:369
5703
  #: addons/gateway/event-booking/mycred-eventsmanager.php:373
 
 
5704
  msgid "Price"
5705
  msgstr "Precio"
5706
 
5749
 
5750
  #: addons/gateway/event-booking/mycred-eventespresso3.php:26
5751
  #: addons/gateway/event-booking/mycred-eventsmanager.php:594
 
5752
  #: addons/buy-creds/modules/buycred-module-core.php:710
5753
  msgid "Payments"
5754
  msgstr "Pagos"
5755
 
5756
  #: addons/gateway/event-booking/mycred-eventespresso3.php:27
5757
  #: addons/gateway/event-booking/mycred-eventsmanager.php:36
5758
+ #: addons/buy-creds/modules/buycred-module-pending.php:744
 
5759
  msgid "Pay Now"
5760
  msgstr "Pagar Ahora"
5761
 
5791
 
5792
  #: addons/gateway/event-booking/mycred-eventespresso3.php:442
5793
  #: addons/gateway/event-booking/mycred-eventsmanager.php:580
 
5794
  #, php-format
5795
  msgid "How many %s is 1 %s worth?"
5796
  msgstr "¿Cuantos %s vale un %s?"
5834
 
5835
  #: addons/gateway/event-booking/mycred-eventespresso3.php:510
5836
  #: addons/gateway/event-booking/mycred-eventsmanager.php:625
 
5837
  #: addons/gateway/carts/mycred-wpecommerce.php:393
5838
  #: addons/gateway/carts/mycred-woocommerce.php:176
5839
  msgid "Profit Sharing"
5841
 
5842
  #: addons/gateway/event-booking/mycred-eventespresso3.php:512
5843
  #: addons/gateway/event-booking/mycred-eventsmanager.php:628
 
5844
  #: addons/gateway/carts/mycred-wpecommerce.php:397
5845
  #: addons/gateway/carts/mycred-woocommerce.php:178
5846
  msgid "Option to share sales with the product owner. Use zero to disable."
5887
  "pagina de pago."
5888
 
5889
  #: addons/gateway/event-booking/mycred-eventsmanager.php:30
 
5890
  msgid "Payment for tickets to %link_with_title%"
5891
  msgstr "Pago de entradas para %link_with_title%"
5892
 
5893
  #: addons/gateway/event-booking/mycred-eventsmanager.php:31
 
5894
  msgid "Ticket refund for %link_with_title%"
5895
  msgstr "Reembolso de entrada para "
5896
 
5897
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35
 
5898
  msgid "Pay using your %_plural% balance"
5899
  msgstr "Paga utilizando tu saldo de %_plural%"
5900
 
5901
  #: addons/gateway/event-booking/mycred-eventsmanager.php:37
 
5902
  msgid "Pay"
5903
  msgstr "Pagar"
5904
 
5905
  #: addons/gateway/event-booking/mycred-eventsmanager.php:40
 
5906
  msgid "Thank you for your payment!"
5907
  msgstr "¡Gracias por su pago!"
5908
 
5909
  #: addons/gateway/event-booking/mycred-eventsmanager.php:41
 
5910
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
5911
  msgstr "Lo siento pero no puedes pagar estos billetes usando %_plural%"
5912
 
5913
  #: addons/gateway/event-booking/mycred-eventsmanager.php:366
 
5914
  msgid "Ticket Type"
5915
  msgstr "Tipo de Billete"
5916
 
5917
  #: addons/gateway/event-booking/mycred-eventsmanager.php:377
 
5918
  msgid "Spaces"
5919
  msgstr "Espacios"
5920
 
5932
  msgstr "Pagos de "
5933
 
5934
  #: addons/gateway/event-booking/mycred-eventsmanager.php:596
 
5935
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
5936
  msgstr "Deshabilitado - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
5937
 
5938
  #: addons/gateway/event-booking/mycred-eventsmanager.php:597
 
5939
  msgid "Single - Users can ONLY pay for tickets using %plural%."
5940
  msgstr "Individuales - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
5941
 
5942
  #: addons/gateway/event-booking/mycred-eventsmanager.php:598
 
5943
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
5944
  msgstr ""
5945
  "Multi-usuarios pueden pagar entradas utilizando otras pasarelas de pago o "
5947
 
5948
  #: addons/gateway/event-booking/mycred-eventsmanager.php:618
5949
  #: addons/gateway/event-booking/mycred-eventsmanager.php:651
 
 
5950
  msgid "Refunds"
5951
  msgstr "Reembolsos"
5952
 
5960
  "reservas \"Rechazadas\""
5961
 
5962
  #: addons/gateway/event-booking/mycred-eventsmanager.php:644
 
5963
  msgid "Purchases"
5964
  msgstr "Compras"
5965
 
5966
  #: addons/gateway/event-booking/mycred-eventsmanager.php:661
 
5967
  msgid "Payment Link Label"
5968
  msgstr "La Etiqueta del Enlace de Pago"
5969
 
5970
  #: addons/gateway/event-booking/mycred-eventsmanager.php:664
 
5971
  msgid ""
5972
  "The payment link shows / hides the payment form under \"My Bookings\". No "
5973
  "HTML allowed."
5976
  " ¡No se permite HTML!"
5977
 
5978
  #: addons/gateway/event-booking/mycred-eventsmanager.php:668
 
5979
  msgid "Payment Header"
5980
  msgstr "Encabezado de Pago"
5981
 
5982
  #: addons/gateway/event-booking/mycred-eventsmanager.php:671
 
5983
  msgid "Shown on top of the payment form. No HTML allowed."
5984
  msgstr "Mostrar en la encima del formulario de pago. No se permite HTML."
5985
 
5986
  #: addons/gateway/event-booking/mycred-eventsmanager.php:678
 
5987
  msgid "The button label for payments. No HTML allowed!"
5988
  msgstr "La etiqueta para el botón de pagos. ¡No se permite HTML!"
5989
 
5990
  #: addons/gateway/event-booking/mycred-eventsmanager.php:682
 
5991
  #: addons/gateway/carts/mycred-wpecommerce.php:404
5992
  msgid "Messages"
5993
  msgstr "Mensajes"
5994
 
5995
  #: addons/gateway/event-booking/mycred-eventsmanager.php:685
 
5996
  msgid "Successful Payments"
5997
  msgstr "Compras Finalizadas con Exito"
5998
 
5999
  #: addons/gateway/event-booking/mycred-eventsmanager.php:688
6000
  #: addons/gateway/event-booking/mycred-eventsmanager.php:695
 
 
6001
  msgid "No HTML allowed!"
6002
  msgstr "¡No se permite HTML!"
6003
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6004
  #: addons/gateway/carts/mycred-wpecommerce.php:20
6005
  msgid "Payment for Order: #%order_id%"
6006
  msgstr "Pago por el Pedido"
6189
 
6190
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:204
6191
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
6192
+ #: addons/buy-creds/modules/buycred-module-pending.php:297
6193
+ #: addons/buy-creds/modules/buycred-module-pending.php:648
6194
+ #: addons/buy-creds/modules/buycred-module-pending.php:761
6195
  #: addons/buy-creds/gateways/bank-transfer.php:141
6196
  msgid "Cost"
6197
  msgstr "Costo"
6231
  msgid "Click here if you are not automatically redirected"
6232
  msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
6233
 
6234
+ #: addons/buy-creds/modules/buycred-module-pending.php:293
6235
+ #: addons/buy-creds/modules/buycred-module-pending.php:758
6236
  #: addons/buy-creds/modules/buycred-module-core.php:771
6237
  #: addons/buy-creds/gateways/bank-transfer.php:142
6238
  msgid "Transaction ID"
6239
  msgstr "Identificación de la Transacción"
6240
 
6241
+ #: addons/buy-creds/modules/buycred-module-pending.php:298
6242
+ #: addons/buy-creds/modules/buycred-module-pending.php:623
6243
+ #: addons/buy-creds/modules/buycred-module-pending.php:759
6244
  #: addons/buy-creds/modules/buycred-module-core.php:766
6245
  #: addons/buy-creds/includes/buycred-functions.php:119
6246
  msgid "Gateway"
6247
  msgstr "Pasarela"
6248
 
6249
+ #: addons/buy-creds/modules/buycred-module-pending.php:500
6250
  msgid "Save"
6251
  msgstr "Guardar"
6252
 
6253
+ #: addons/buy-creds/modules/buycred-module-pending.php:654
6254
  #: addons/buy-creds/gateways/bank-transfer.php:209
6255
  #: addons/buy-creds/gateways/bitpay.php:251
6256
  #: addons/buy-creds/gateways/paypal-standard.php:279
lang/mycred-fa_IR.mo CHANGED
Binary file
lang/mycred-fa_IR.po CHANGED
@@ -1,79 +1,64 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: myCRED\n"
4
- "Report-Msgid-Bugs-To: http://mycred.me\n"
5
- "POT-Creation-Date: 2017-04-19 14:58+0000\n"
6
- "PO-Revision-Date: 2017-04-19 14:58+0000\n"
7
- "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
- "Language-Team: Persian\n"
9
- "Language: fa-IR\n"
10
- "Plural-Forms: nplurals=1; plural=0\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
- "X-Poedit-Basepath: .\n"
17
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
- "X-Poedit-SearchPath-0: /Users/gabriel/Repositories/mycred/tags/1.3.3.1\n"
23
- "X-Poedit-SearchPath-1: .\n"
24
- "X-Loco-Target-Locale: fa_IR"
25
-
26
- #: mycred.php:565
27
  #, php-format
28
  msgid "%s Log Import"
29
  msgstr ""
30
 
31
- #: mycred.php:566
32
  msgid "Import log entries via a CSV file."
33
  msgstr ""
34
 
35
- #: mycred.php:577
36
  #, php-format
37
  msgid "%s Balance Import"
38
  msgstr ""
39
 
40
- #: mycred.php:578
41
  msgid "Import balances via a CSV file."
42
  msgstr ""
43
 
44
- #: mycred.php:589
45
  #, php-format
46
  msgid "%s CubePoints Import"
47
  msgstr ""
48
 
49
- #: mycred.php:590
50
  msgid "Import CubePoints log entries and / or balances."
51
  msgstr ""
52
 
53
- #: mycred.php:856 modules/mycred-module-management.php:558
54
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:34
55
- msgid "Balance"
56
- msgstr ""
57
-
58
- #: mycred.php:1021
59
  msgid ""
60
  "Make sure to backup your database and files before updating, in case "
61
  "anything goes wrong!"
62
  msgstr ""
63
 
64
- #: abstracts/mycred-abstract-hook.php:291
65
  msgid "/ Day"
66
  msgstr ""
67
 
68
- #: abstracts/mycred-abstract-hook.php:292
69
  msgid "/ Week"
70
  msgstr ""
71
 
72
- #: abstracts/mycred-abstract-hook.php:293
73
  msgid "/ Month"
74
  msgstr ""
75
 
76
- #: abstracts/mycred-abstract-hook.php:294
77
  msgid "in Total"
78
  msgstr ""
79
 
@@ -89,16 +74,9 @@ msgstr ""
89
  msgid "No recent activity found."
90
  msgstr ""
91
 
92
- #: modules/mycred-module-management.php:236
93
- #: addons/banking/services/mycred-service-interest.php:435
94
- #: addons/banking/services/mycred-service-interest.php:460
95
- #: addons/banking/services/mycred-service-payouts.php:746
96
- msgid "Time"
97
- msgstr ""
98
-
99
  #: modules/mycred-module-management.php:237
100
  #: modules/mycred-module-management.php:775 modules/mycred-module-log.php:93
101
- #: modules/mycred-module-log.php:918
102
  #: includes/classes/class.query-export.php:263
103
  #: includes/classes/class.query-export.php:360
104
  #: includes/classes/class.query-log.php:904
@@ -114,28 +92,10 @@ msgstr ""
114
  msgid "Edit Users Balance"
115
  msgstr ""
116
 
117
- #: modules/mycred-module-management.php:463
118
- #: addons/coupons/myCRED-addon-coupons.php:309
119
- msgid "Total"
120
- msgstr ""
121
-
122
  #: modules/mycred-module-management.php:555
123
  msgid "Balances"
124
  msgstr ""
125
 
126
- #: modules/mycred-module-management.php:583
127
- #: modules/mycred-module-management.php:583
128
- #: includes/classes/class.query-log.php:1621
129
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:68
130
- msgid "Edit"
131
- msgstr ""
132
-
133
- #: modules/mycred-module-management.php:747
134
- #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
135
- #: addons/buy-creds/modules/buycred-module-core.php:1374
136
- msgid "Username"
137
- msgstr ""
138
-
139
  #: modules/mycred-module-management.php:759
140
  msgid "Total Balance"
141
  msgstr ""
@@ -176,6 +136,10 @@ msgid ""
176
  "can not be undone!"
177
  msgstr ""
178
 
 
 
 
 
179
  #: modules/mycred-module-settings.php:432
180
  msgid ""
181
  "In order to adjust the number of decimal places you want to use we must "
@@ -198,7 +162,7 @@ msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
198
  msgstr ""
199
 
200
  #: modules/mycred-module-settings.php:530 modules/mycred-module-addons.php:330
201
- #: modules/mycred-module-addons.php:368 modules/mycred-module-log.php:554
202
  #: modules/mycred-module-network.php:241 modules/mycred-module-network.php:276
203
  #: modules/mycred-module-network.php:292
204
  #: includes/importers/mycred-cubepoints.php:305
@@ -215,8 +179,8 @@ msgstr ""
215
  #: modules/mycred-module-settings.php:555
216
  #: modules/mycred-module-settings.php:605
217
  #: modules/mycred-module-settings.php:612
218
- #: modules/mycred-module-settings.php:799
219
- #: modules/mycred-module-settings.php:805 includes/mycred-setup.php:280
220
  #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
221
  #: includes/mycred-setup.php:340 addons/coupons/myCRED-addon-coupons.php:710
222
  #: addons/coupons/myCRED-addon-coupons.php:717
@@ -315,7 +279,11 @@ msgstr ""
315
  msgid "Balance Meta Key"
316
  msgstr ""
317
 
318
- #: modules/mycred-module-settings.php:728 includes/mycred-widgets.php:573
 
 
 
 
319
  #: addons/transfer/myCRED-addon-transfer.php:370
320
  #: addons/sell-content/myCRED-addon-sell-content.php:581
321
  #: addons/transfer/includes/mycred-transfer-widgets.php:121
@@ -323,17 +291,17 @@ msgstr ""
323
  msgid "Point Types"
324
  msgstr ""
325
 
326
- #: modules/mycred-module-settings.php:794
327
  msgid "Add New Type"
328
  msgstr ""
329
 
330
- #: modules/mycred-module-settings.php:810
331
  msgid ""
332
  "The meta key must be lowercase and only contain letters or underscores. All "
333
  "other characters will be deleted!"
334
  msgstr ""
335
 
336
- #: modules/mycred-module-settings.php:847
337
  msgid ""
338
  "Use ID if you intend to use this export as a backup of your current site "
339
  "while Email is recommended if you want to export to a different site."
@@ -408,53 +376,53 @@ msgid_plural "%d Entries Deleted"
408
  msgstr[0] ""
409
  msgstr[1] ""
410
 
411
- #: modules/mycred-module-log.php:467
412
  msgid "Edit Log Entry"
413
  msgstr ""
414
 
415
- #: modules/mycred-module-log.php:471
416
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
417
  msgstr ""
418
 
419
- #: modules/mycred-module-log.php:472
420
  msgid "The log entry was successfully updated."
421
  msgstr ""
422
 
423
- #: modules/mycred-module-log.php:473
424
  msgid "The selected log entry could not be deleted."
425
  msgstr ""
426
 
427
- #: modules/mycred-module-log.php:507
428
  #, php-format
429
  msgctxt "e.g. Log entries from April 12th 2016"
430
  msgid "Log entries from %s"
431
  msgstr ""
432
 
433
- #: modules/mycred-module-log.php:554
434
  #, php-format
435
  msgid "%s Log"
436
  msgstr ""
437
 
438
- #: modules/mycred-module-log.php:564
439
  msgid ""
440
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
441
  "Certain hooks and shortcodes will not work correctly!"
442
  msgstr ""
443
 
444
- #: modules/mycred-module-log.php:666
445
  #, php-format
446
  msgid "My %s History"
447
  msgstr ""
448
 
449
- #: modules/mycred-module-log.php:925
450
  msgid "Original Entry"
451
  msgstr ""
452
 
453
- #: modules/mycred-module-log.php:937
454
  msgid "Delete Entry"
455
  msgstr ""
456
 
457
- #: modules/mycred-module-log.php:942
458
  msgid "Update Entry"
459
  msgstr ""
460
 
@@ -478,68 +446,67 @@ msgstr ""
478
  msgid "Blog IDs"
479
  msgstr ""
480
 
481
- #: modules/mycred-module-export.php:285 modules/mycred-module-export.php:332
482
  #: includes/classes/class.query-log.php:1687
483
  msgid ""
484
  "Log entries are exported to a CSV file and depending on the number of "
485
  "entries selected, the process may take a few seconds."
486
  msgstr ""
487
 
488
- #: modules/mycred-module-export.php:358
489
  msgid "Make both format options available."
490
  msgstr ""
491
 
492
- #: modules/mycred-module-export.php:360
493
  msgid "Exports"
494
  msgstr ""
495
 
496
- #: modules/mycred-module-export.php:366
497
  msgid "Front End Exports"
498
  msgstr ""
499
 
500
- #: modules/mycred-module-export.php:382 modules/mycred-module-export.php:430
501
  msgid "Export Format"
502
  msgstr ""
503
 
504
- #: modules/mycred-module-export.php:398 modules/mycred-module-export.php:446
505
  msgid "File Name"
506
  msgstr ""
507
 
508
- #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
509
  #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
510
  #: includes/importers/mycred-cubepoints.php:353
511
  #: includes/classes/class.query-export.php:263
512
  #: includes/classes/class.query-export.php:391
513
- #: addons/ranks/myCRED-addon-ranks.php:1079
514
- #: addons/ranks/myCRED-addon-ranks.php:1247
515
- #: addons/ranks/myCRED-addon-ranks.php:1254
516
  #: addons/email-notices/myCRED-addon-email-notices.php:280
517
  #: addons/email-notices/myCRED-addon-email-notices.php:585
518
  #: addons/coupons/myCRED-addon-coupons.php:256
519
  #: addons/coupons/myCRED-addon-coupons.php:520
520
  #: addons/gateway/event-booking/mycred-eventespresso3.php:483
521
  #: addons/gateway/event-booking/mycred-eventsmanager.php:604
522
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611
523
  #: addons/gateway/carts/mycred-wpecommerce.php:383
524
  #: addons/gateway/carts/mycred-woocommerce.php:125
525
  #: addons/gateway/carts/mycred-woocommerce.php:166
526
- #: addons/buy-creds/modules/buycred-module-pending.php:557
527
- #: addons/buy-creds/modules/buycred-module-pending.php:735
528
  msgid "Point Type"
529
  msgstr ""
530
 
531
- #: modules/mycred-module-export.php:407
532
  msgid ""
533
  "If enabled, users will only be able to export their own log entries! Export "
534
  "tools becomes available wherever you are using the mycred_history shortcode "
535
  "or in the users profile."
536
  msgstr ""
537
 
538
- #: modules/mycred-module-export.php:414
539
  msgid "Back End Exports"
540
  msgstr ""
541
 
542
- #: modules/mycred-module-export.php:455
543
  msgid ""
544
  "Raw format should be used when you intend to use the export tool to backup "
545
  "or import entries in another installation. Formatted exports reflect what "
@@ -554,17 +521,13 @@ msgstr ""
554
  msgid "Show:"
555
  msgstr ""
556
 
557
- #: modules/mycred-module-buddypress.php:352
558
- msgid "Go"
559
- msgstr ""
560
-
561
  #: modules/mycred-module-buddypress.php:405
562
- #: addons/badges/myCRED-addon-badges.php:1141
563
  msgid "Include in Profile Header"
564
  msgstr ""
565
 
566
  #: modules/mycred-module-buddypress.php:407
567
- #: addons/badges/myCRED-addon-badges.php:1143
568
  msgid "Include under the \"Profile\" tab and Profile Header"
569
  msgstr ""
570
 
@@ -580,70 +543,6 @@ msgstr ""
580
  msgid "Sending Invites"
581
  msgstr ""
582
 
583
- #: plugins/mycred-hook-invite-anyone.php:222
584
- #: plugins/mycred-hook-invite-anyone.php:246
585
- #: plugins/mycred-hook-wp-polls.php:178
586
- #: plugins/mycred-hook-wp-postratings.php:208
587
- #: plugins/mycred-hook-wp-postratings.php:215
588
- #: plugins/mycred-hook-gravityforms.php:173
589
- #: plugins/mycred-hook-simplepress.php:308
590
- #: plugins/mycred-hook-simplepress.php:326
591
- #: plugins/mycred-hook-simplepress.php:350
592
- #: plugins/mycred-hook-simplepress.php:377
593
- #: plugins/mycred-hook-buddypress.php:630
594
- #: plugins/mycred-hook-buddypress.php:654
595
- #: plugins/mycred-hook-buddypress.php:678
596
- #: plugins/mycred-hook-buddypress.php:702
597
- #: plugins/mycred-hook-buddypress.php:726
598
- #: plugins/mycred-hook-buddypress.php:753
599
- #: plugins/mycred-hook-buddypress.php:777
600
- #: plugins/mycred-hook-buddypress.php:795
601
- #: plugins/mycred-hook-buddypress.php:819
602
- #: plugins/mycred-hook-buddypress.php:837
603
- #: plugins/mycred-hook-buddypress.php:861
604
- #: plugins/mycred-hook-buddypress.php:885
605
- #: plugins/mycred-hook-buddypress.php:1521
606
- #: plugins/mycred-hook-buddypress.php:1539
607
- #: plugins/mycred-hook-buddypress.php:1563
608
- #: plugins/mycred-hook-buddypress.php:1587
609
- #: plugins/mycred-hook-buddypress.php:1611
610
- #: plugins/mycred-hook-buddypress.php:1635
611
- #: plugins/mycred-hook-buddypress.php:1659
612
- #: plugins/mycred-hook-buddypress.php:1683
613
- #: plugins/mycred-hook-buddypress.php:1707
614
- #: plugins/mycred-hook-buddypress.php:1725
615
- #: plugins/mycred-hook-buddypress.php:1749
616
- #: plugins/mycred-hook-affiliatewp.php:299
617
- #: plugins/mycred-hook-affiliatewp.php:326
618
- #: plugins/mycred-hook-affiliatewp.php:370
619
- #: plugins/mycred-hook-affiliatewp.php:377
620
- #: plugins/mycred-hook-events-manager-light.php:218
621
- #: plugins/mycred-hook-events-manager-light.php:236
622
- #: plugins/mycred-hook-sharethis.php:274
623
- #: plugins/mycred-hook-buddypress-media.php:307
624
- #: plugins/mycred-hook-buddypress-media.php:331
625
- #: plugins/mycred-hook-buddypress-media.php:355
626
- #: plugins/mycred-hook-buddypress-media.php:373
627
- #: plugins/mycred-hook-buddypress-media.php:391
628
- #: plugins/mycred-hook-buddypress-media.php:409
629
- #: plugins/mycred-hook-wp-favorite-posts.php:249
630
- #: plugins/mycred-hook-wp-favorite-posts.php:256
631
- #: plugins/mycred-hook-wp-favorite-posts.php:274
632
- #: plugins/mycred-hook-wp-favorite-posts.php:289
633
- #: plugins/mycred-hook-contact-form7.php:176
634
- #: plugins/mycred-hook-jetpack.php:550 plugins/mycred-hook-jetpack.php:568
635
- #: plugins/mycred-hook-bbPress.php:450 plugins/mycred-hook-bbPress.php:468
636
- #: plugins/mycred-hook-bbPress.php:492 plugins/mycred-hook-bbPress.php:519
637
- #: plugins/mycred-hook-bbPress.php:543 plugins/mycred-hook-bbPress.php:567
638
- #: plugins/mycred-hook-bbPress.php:594 plugins/mycred-hook-woocommerce.php:517
639
- #: plugins/mycred-hook-badgeOS.php:328 plugins/mycred-hook-badgeOS.php:346
640
- #: addons/transfer/includes/mycred-transfer-widgets.php:102
641
- #: addons/transfer/includes/mycred-transfer-widgets.php:106
642
- #: addons/transfer/includes/mycred-transfer-widgets.php:110
643
- #: addons/transfer/includes/mycred-transfer-widgets.php:122
644
- msgid "required"
645
- msgstr ""
646
-
647
  #: plugins/mycred-hook-invite-anyone.php:229
648
  msgid "Accepted Invites"
649
  msgstr ""
@@ -672,12 +571,6 @@ msgstr ""
672
  msgid "Member"
673
  msgstr ""
674
 
675
- #: plugins/mycred-hook-wp-postratings.php:177
676
- #: plugins/mycred-hook-wp-favorite-posts.php:234
677
- #: plugins/mycred-hook-wp-favorite-posts.php:282
678
- msgid "Content Author"
679
- msgstr ""
680
-
681
  #: plugins/mycred-hook-wp-postratings.php:192
682
  #: plugins/mycred-hook-wp-postratings.php:199
683
  msgid "Use the Rating Value instead of the amount set here."
@@ -702,7 +595,7 @@ msgid "Awards %_plural% for successful form submissions."
702
  msgstr ""
703
 
704
  #: plugins/mycred-hook-gravityforms.php:156
705
- #: plugins/mycred-hook-contact-form7.php:159
706
  #, php-format
707
  msgid "Form: %s"
708
  msgstr ""
@@ -996,11 +889,11 @@ msgstr ""
996
  msgid "Leave empty for no rewards"
997
  msgstr ""
998
 
999
- #: plugins/mycred-hook-woocommerce.php:384
1000
  msgid "WooCommerce Product Reviews"
1001
  msgstr ""
1002
 
1003
- #: plugins/mycred-hook-woocommerce.php:385
1004
  msgid ""
1005
  "Awards %_plural% for users leaving reviews on your WooCommerce products."
1006
  msgstr ""
@@ -1073,7 +966,7 @@ msgid "Hide"
1073
  msgstr ""
1074
 
1075
  #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
1076
- #: addons/email-notices/myCRED-addon-email-notices.php:1435
1077
  msgid "Advanced"
1078
  msgstr ""
1079
 
@@ -1233,72 +1126,68 @@ msgstr ""
1233
  msgid "Row Layout"
1234
  msgstr ""
1235
 
1236
- #: includes/mycred-functions.php:692
1237
  msgid "Comment Related"
1238
  msgstr ""
1239
 
1240
- #: includes/mycred-functions.php:699
1241
  msgid "Widget Related"
1242
  msgstr ""
1243
 
1244
- #: includes/mycred-functions.php:706
1245
  msgid "Amount Related"
1246
  msgstr ""
1247
 
1248
- #: includes/mycred-functions.php:713
1249
  msgid "Video Related"
1250
  msgstr ""
1251
 
1252
- #: includes/mycred-functions.php:724
1253
- msgid "and"
1254
- msgstr ""
1255
-
1256
- #: includes/mycred-functions.php:726
1257
  msgid "Available Template Tags:"
1258
  msgstr ""
1259
 
1260
- #: includes/mycred-functions.php:2777
1261
  msgid "in total"
1262
  msgstr ""
1263
 
1264
- #: includes/mycred-functions.php:2779
1265
  msgid "per day"
1266
  msgstr ""
1267
 
1268
- #: includes/mycred-functions.php:2782
1269
  msgid "per week"
1270
  msgstr ""
1271
 
1272
- #: includes/mycred-functions.php:2785
1273
  msgid "per month"
1274
  msgstr ""
1275
 
1276
- #: includes/mycred-functions.php:2787 includes/mycred-functions.php:2793
1277
  #, php-format
1278
  msgid "Maximum once"
1279
  msgid_plural "Maximum %d times"
1280
  msgstr[0] ""
1281
  msgstr[1] ""
1282
 
1283
- #: includes/mycred-functions.php:2815
1284
  #, php-format
1285
  msgctxt "e.g. 5 th"
1286
  msgid "%d th"
1287
  msgstr ""
1288
 
1289
- #: includes/mycred-functions.php:2819
1290
  #, php-format
1291
  msgctxt "e.g. 1 st"
1292
  msgid "%d st"
1293
  msgstr ""
1294
 
1295
- #: includes/mycred-functions.php:2820
1296
  #, php-format
1297
  msgctxt "e.g. 2 nd"
1298
  msgid "%d nd"
1299
  msgstr ""
1300
 
1301
- #: includes/mycred-functions.php:2821
1302
  #, php-format
1303
  msgctxt "e.g. 3 rd"
1304
  msgid "%d rd"
@@ -1367,31 +1256,6 @@ msgstr ""
1367
  msgid "Import Balances %s"
1368
  msgstr ""
1369
 
1370
- #: includes/importers/mycred-balances.php:284
1371
- #: includes/importers/mycred-log-entries.php:280
1372
- msgid "Choose a file from your computer:"
1373
- msgstr ""
1374
-
1375
- #: includes/importers/mycred-balances.php:290
1376
- #: includes/importers/mycred-log-entries.php:286
1377
- #, php-format
1378
- msgid "Maximum size: %s"
1379
- msgstr ""
1380
-
1381
- #: includes/importers/mycred-balances.php:295
1382
- #: includes/importers/mycred-log-entries.php:291
1383
- msgid "OR enter path to file:"
1384
- msgstr ""
1385
-
1386
- #: includes/importers/mycred-balances.php:303
1387
- #: includes/importers/mycred-log-entries.php:299
1388
- msgid "Delimiter"
1389
- msgstr ""
1390
-
1391
- #: includes/importers/mycred-balances.php:311
1392
- msgid "Method"
1393
- msgstr ""
1394
-
1395
  #: includes/importers/mycred-balances.php:315
1396
  msgid "Replace current balances with the amount in this CSV file"
1397
  msgstr ""
@@ -1407,11 +1271,6 @@ msgid ""
1407
  "successfully imported. <strong>%d</strong> was skipped."
1408
  msgstr ""
1409
 
1410
- #: includes/importers/mycred-log-entries.php:214
1411
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:100
1412
- msgid "View Log"
1413
- msgstr ""
1414
-
1415
  #: includes/importers/mycred-log-entries.php:239
1416
  #, php-format
1417
  msgid "Import Log Entries %s"
@@ -1507,10 +1366,6 @@ msgstr ""
1507
  msgid "All Log Entries"
1508
  msgstr ""
1509
 
1510
- #: includes/classes/class.query-export.php:487
1511
- msgid "Search Results"
1512
- msgstr ""
1513
-
1514
  #: includes/classes/class.query-export.php:492
1515
  msgid "Users Log Entries"
1516
  msgstr ""
@@ -1715,10 +1570,6 @@ msgstr ""
1715
  msgid "New Group Comment"
1716
  msgstr ""
1717
 
1718
- #: includes/classes/class.query-log.php:2229
1719
- msgid "New Link"
1720
- msgstr ""
1721
-
1722
  #: includes/classes/class.query-log.php:2230
1723
  msgid "Link Voting"
1724
  msgstr ""
@@ -2006,20 +1857,12 @@ msgid ""
2006
  "someone who is not logged in."
2007
  msgstr ""
2008
 
2009
- #: addons/transfer/myCRED-addon-transfer.php:507
2010
- msgid "Limit Template"
2011
- msgstr ""
2012
-
2013
  #: addons/transfer/myCRED-addon-transfer.php:508
2014
  msgid ""
2015
  "The template to use if you select to show the transfer limit in the transfer "
2016
  "shortcode or widget. Ignored if there is no limit enforced."
2017
  msgstr ""
2018
 
2019
- #: addons/transfer/myCRED-addon-transfer.php:523
2020
- msgid "Balance Template"
2021
- msgstr ""
2022
-
2023
  #: addons/transfer/myCRED-addon-transfer.php:524
2024
  msgid ""
2025
  "The template to use if you select to show the users balance in the transfer "
@@ -2032,7 +1875,7 @@ msgid "Ranks for %s"
2032
  msgstr ""
2033
 
2034
  #: addons/ranks/myCRED-addon-ranks.php:230
2035
- #: addons/ranks/myCRED-addon-ranks.php:1375
2036
  msgid "Rank Logo"
2037
  msgstr ""
2038
 
@@ -2070,110 +1913,110 @@ msgstr ""
2070
  msgid "No ranks exists."
2071
  msgstr ""
2072
 
2073
- #: addons/ranks/myCRED-addon-ranks.php:1189
2074
  msgid "Rank Setup"
2075
  msgstr ""
2076
 
2077
- #: addons/ranks/myCRED-addon-ranks.php:1230
2078
  msgid "Minimum Balance Requirement"
2079
  msgstr ""
2080
 
2081
- #: addons/ranks/myCRED-addon-ranks.php:1236
2082
  msgid "Maximum Balance Requirement"
2083
  msgstr ""
2084
 
2085
- #: addons/ranks/myCRED-addon-ranks.php:1395
2086
  msgid "Rank Post Type"
2087
  msgstr ""
2088
 
2089
- #: addons/ranks/myCRED-addon-ranks.php:1398
2090
  msgid "Make Ranks Public"
2091
  msgstr ""
2092
 
2093
- #: addons/ranks/myCRED-addon-ranks.php:1402
2094
  msgid "Rank SLUG"
2095
  msgstr ""
2096
 
2097
- #: addons/ranks/myCRED-addon-ranks.php:1404
2098
  msgid ""
2099
  "If you have selected to make Ranks public, you can select what rank archive "
2100
  "URL slug you want to use. Ignored if Ranks are not set to be public."
2101
  msgstr ""
2102
 
2103
- #: addons/ranks/myCRED-addon-ranks.php:1425
2104
  msgid "Option to set in which order Ranks should be shown on the archive page."
2105
  msgstr ""
2106
 
2107
- #: addons/ranks/myCRED-addon-ranks.php:1432
2108
  msgid "Rank Behaviour"
2109
  msgstr ""
2110
 
2111
- #: addons/ranks/myCRED-addon-ranks.php:1437
2112
  msgid "Based on Current Balances"
2113
  msgstr ""
2114
 
2115
- #: addons/ranks/myCRED-addon-ranks.php:1439
2116
  msgid ""
2117
  "Users can be promoted or demoted depending on where their balance fits in "
2118
  "amongst your ranks."
2119
  msgstr ""
2120
 
2121
- #: addons/ranks/myCRED-addon-ranks.php:1445
2122
  msgid "Based on Total Balances"
2123
  msgstr ""
2124
 
2125
- #: addons/ranks/myCRED-addon-ranks.php:1447
2126
  msgid ""
2127
  "Users can only be promoted and gain higher ranks even if their balance "
2128
  "decreases."
2129
  msgstr ""
2130
 
2131
- #: addons/ranks/myCRED-addon-ranks.php:1454
2132
  msgid "Tools"
2133
  msgstr ""
2134
 
2135
- #: addons/ranks/myCRED-addon-ranks.php:1455
2136
  msgid ""
2137
  "Use this button to calculate or recalculate each individual users total "
2138
  "balance if you think your users total balances are incorrect, or if you "
2139
  "switch from Ranks being based on users current balance to total balance."
2140
  msgstr ""
2141
 
2142
- #: addons/ranks/myCRED-addon-ranks.php:1460
2143
- #: addons/badges/myCRED-addon-badges.php:1130
2144
  msgid "Third-party Integrations"
2145
  msgstr ""
2146
 
2147
- #: addons/ranks/myCRED-addon-ranks.php:1495
2148
- #: addons/ranks/myCRED-addon-ranks.php:1536
2149
  msgid ""
2150
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
2151
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
2152
  msgstr ""
2153
 
2154
- #: addons/ranks/myCRED-addon-ranks.php:1499
2155
- #: addons/ranks/myCRED-addon-ranks.php:1540
2156
- #: addons/badges/myCRED-addon-badges.php:1162
2157
- #: addons/badges/myCRED-addon-badges.php:1196
2158
  msgid "Not installed"
2159
  msgstr ""
2160
 
2161
- #: addons/ranks/myCRED-addon-ranks.php:1518
2162
  msgid "Include in Topic Replies"
2163
  msgstr ""
2164
 
2165
- #: addons/ranks/myCRED-addon-ranks.php:1519
2166
- #: addons/badges/myCRED-addon-badges.php:1175
2167
  msgid "Include in Profile"
2168
  msgstr ""
2169
 
2170
- #: addons/ranks/myCRED-addon-ranks.php:1520
2171
  msgid "Include in Topic Replies and Profile"
2172
  msgstr ""
2173
 
2174
- #: addons/ranks/myCRED-addon-ranks.php:1546
2175
- #: addons/email-notices/myCRED-addon-email-notices.php:1456
2176
- #: addons/badges/myCRED-addon-badges.php:1202
2177
  #: addons/buy-creds/modules/buycred-module-core.php:460
2178
  msgid "Available Shortcodes"
2179
  msgstr ""
@@ -2277,72 +2120,59 @@ msgstr ""
2277
  msgid "user gains a badge"
2278
  msgstr ""
2279
 
2280
- #: addons/email-notices/myCRED-addon-email-notices.php:1408
2281
  msgid "Plain Text"
2282
  msgstr ""
2283
 
2284
- #: addons/email-notices/myCRED-addon-email-notices.php:1416
2285
  #: addons/banking/services/mycred-service-payouts.php:825
2286
  msgid "Schedule"
2287
  msgstr ""
2288
 
2289
- #: addons/email-notices/myCRED-addon-email-notices.php:1420
2290
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
2291
  msgstr ""
2292
 
2293
- #: addons/email-notices/myCRED-addon-email-notices.php:1423
2294
  msgid "Send emails immediately"
2295
  msgstr ""
2296
 
2297
- #: addons/email-notices/myCRED-addon-email-notices.php:1426
2298
  msgid "Send emails once an hour"
2299
  msgstr ""
2300
 
2301
- #: addons/email-notices/myCRED-addon-email-notices.php:1429
2302
  msgid "Send emails once a day"
2303
  msgstr ""
2304
 
2305
- #: addons/email-notices/myCRED-addon-email-notices.php:1438
2306
  msgid "Filter Email Subjects"
2307
  msgstr ""
2308
 
2309
- #: addons/email-notices/myCRED-addon-email-notices.php:1441
2310
  msgid "Filter Email Body"
2311
  msgstr ""
2312
 
2313
- #: addons/email-notices/myCRED-addon-email-notices.php:1450
2314
  msgid ""
2315
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
2316
  "use a SMTP plugin for emails."
2317
  msgstr ""
2318
 
2319
- #: addons/email-notices/myCRED-addon-email-notices.php:1463
2320
- msgid "Defaults"
2321
- msgstr ""
2322
-
2323
- #: addons/email-notices/myCRED-addon-email-notices.php:1496
2324
  msgid "Default CSS Styling"
2325
  msgstr ""
2326
 
2327
- #: addons/email-notices/myCRED-addon-email-notices.php:1498
2328
  msgid ""
2329
  "Default email CSS styling. Note that if you intend to send HTML emails, you "
2330
  "should use inline CSS styling for best results."
2331
  msgstr ""
2332
 
2333
- #: addons/email-notices/myCRED-addon-email-notices.php:1596
2334
- msgid "Unsubscribe"
2335
- msgstr ""
2336
-
2337
- #: addons/email-notices/myCRED-addon-email-notices.php:1618
2338
  msgid "There are no email notifications yet."
2339
  msgstr ""
2340
 
2341
- #: addons/email-notices/myCRED-addon-email-notices.php:1625
2342
- #: addons/buy-creds/modules/buycred-module-pending.php:490
2343
- msgid "Save Changes"
2344
- msgstr ""
2345
-
2346
  #: addons/stats/myCRED-addon-stats.php:58
2347
  msgid "Statistics"
2348
  msgstr ""
@@ -2376,9 +2206,9 @@ msgstr ""
2376
  #: addons/badges/myCRED-addon-badges.php:160
2377
  #: addons/badges/myCRED-addon-badges.php:295
2378
  #: addons/badges/myCRED-addon-badges.php:296
2379
- #: addons/badges/myCRED-addon-badges.php:1127
2380
- #: addons/badges/myCRED-addon-badges.php:1256
2381
- #: addons/badges/myCRED-addon-badges.php:1259
2382
  msgid "Badges"
2383
  msgstr ""
2384
 
@@ -2428,196 +2258,167 @@ msgstr ""
2428
  msgid "Badge Saved."
2429
  msgstr ""
2430
 
2431
- #: addons/badges/myCRED-addon-badges.php:396
2432
- #: addons/badges/myCRED-addon-badges.php:480
2433
  msgid "Badge Name"
2434
  msgstr ""
2435
 
2436
- #: addons/badges/myCRED-addon-badges.php:397
2437
  msgid "Default Image"
2438
  msgstr ""
2439
 
2440
- #: addons/badges/myCRED-addon-badges.php:398
2441
  msgid "First Level"
2442
  msgstr ""
2443
 
2444
- #: addons/badges/myCRED-addon-badges.php:399
2445
- msgid "Requirements"
2446
- msgstr ""
2447
-
2448
- #: addons/badges/myCRED-addon-badges.php:510
2449
- #: addons/badges/myCRED-addon-badges.php:801
2450
  msgid "Add Level"
2451
  msgstr ""
2452
 
2453
- #: addons/badges/myCRED-addon-badges.php:511
2454
- #: addons/badges/myCRED-addon-badges.php:802
2455
  msgid "Remove Level"
2456
  msgstr ""
2457
 
2458
- #: addons/badges/myCRED-addon-badges.php:512
2459
- #: addons/badges/myCRED-addon-badges.php:755
2460
- #: addons/badges/myCRED-addon-badges.php:818
2461
- #: addons/badges/myCRED-addon-badges.php:823
2462
  msgid "Set Image"
2463
  msgstr ""
2464
 
2465
- #: addons/badges/myCRED-addon-badges.php:513
2466
- #: addons/badges/myCRED-addon-badges.php:755
2467
- #: addons/badges/myCRED-addon-badges.php:823
2468
  msgid "Change Image"
2469
  msgstr ""
2470
 
2471
- #: addons/badges/myCRED-addon-badges.php:514
2472
  msgid "Are you sure you want to remove this level?"
2473
  msgstr ""
2474
 
2475
- #: addons/badges/myCRED-addon-badges.php:515
2476
- #: addons/badges/myCRED-addon-badges.php:819
2477
- #: addons/badges/myCRED-addon-badges.php:1288
2478
  msgid "Level"
2479
  msgstr ""
2480
 
2481
- #: addons/badges/myCRED-addon-badges.php:516
2482
  msgid "Badge Image"
2483
  msgstr ""
2484
 
2485
- #: addons/badges/myCRED-addon-badges.php:517
2486
  msgid "Use as Badge"
2487
  msgstr ""
2488
 
2489
- #: addons/badges/myCRED-addon-badges.php:518
2490
- #: addons/badges/myCRED-addon-badges.php:921
2491
  #: addons/badges/includes/mycred-badge-functions.php:272
2492
  msgctxt "Comparison of badge requirements. A AND B"
2493
  msgid "AND"
2494
  msgstr ""
2495
 
2496
- #: addons/badges/myCRED-addon-badges.php:519
2497
- #: addons/badges/myCRED-addon-badges.php:921
2498
  #: addons/badges/includes/mycred-badge-functions.php:270
2499
  msgctxt "Comparison of badge requirements. A OR B"
2500
  msgid "OR"
2501
  msgstr ""
2502
 
2503
- #: addons/badges/myCRED-addon-badges.php:571
2504
  msgid "Badge Setup"
2505
  msgstr ""
2506
 
2507
- #: addons/badges/myCRED-addon-badges.php:580
2508
  msgid "Default Badge Image"
2509
  msgstr ""
2510
 
2511
- #: addons/badges/myCRED-addon-badges.php:678
2512
  msgid "Assign Badge"
2513
  msgstr ""
2514
 
2515
- #: addons/badges/myCRED-addon-badges.php:679
2516
  msgid "Remove Connections"
2517
  msgstr ""
2518
 
2519
- #: addons/badges/myCRED-addon-badges.php:722
2520
  #: addons/badges/includes/mycred-badge-functions.php:288
2521
  msgid "This badge is manually awarded."
2522
  msgstr ""
2523
 
2524
- #: addons/badges/myCRED-addon-badges.php:758
2525
  msgid "Optional image to show when a user has not earned this badge."
2526
  msgstr ""
2527
 
2528
- #: addons/badges/myCRED-addon-badges.php:777
2529
  msgid "Time(s)"
2530
  msgstr ""
2531
 
2532
- #: addons/badges/myCRED-addon-badges.php:778
2533
  msgid "In total"
2534
  msgstr ""
2535
 
2536
- #: addons/badges/myCRED-addon-badges.php:825
2537
  #, php-format
2538
  msgid "Level %d"
2539
  msgstr ""
2540
 
2541
- #: addons/badges/myCRED-addon-badges.php:849
2542
  msgid "Select Point Type"
2543
  msgstr ""
2544
 
2545
- #: addons/badges/myCRED-addon-badges.php:863
2546
  msgid "Select Reference"
2547
  msgstr ""
2548
 
2549
- #: addons/badges/myCRED-addon-badges.php:939
2550
  msgid "Reward"
2551
  msgstr ""
2552
 
2553
- #: addons/badges/myCRED-addon-badges.php:1158
2554
- #: addons/badges/myCRED-addon-badges.php:1192
2555
  msgid "Show all badges, including badges users have not yet earned."
2556
  msgstr ""
2557
 
2558
- #: addons/badges/myCRED-addon-badges.php:1176
2559
  msgid "Include in Forum Replies"
2560
  msgstr ""
2561
 
2562
- #: addons/badges/myCRED-addon-badges.php:1177
2563
  msgid "Include in Profile and Forum Replies"
2564
  msgstr ""
2565
 
2566
- #: addons/badges/myCRED-addon-badges.php:1251
2567
  msgid "No image set"
2568
  msgstr ""
2569
 
2570
- #: addons/badges/myCRED-addon-badges.php:1283
2571
  msgid "Select a level"
2572
  msgstr ""
2573
 
2574
- #: addons/badges/myCRED-addon-badges.php:1297
2575
  msgid "Earned"
2576
  msgstr ""
2577
 
2578
- #: addons/badges/myCRED-addon-badges.php:1406
2579
  #, php-format
2580
  msgid "A total of %d users have received this badge."
2581
  msgstr ""
2582
 
2583
- #: addons/badges/myCRED-addon-badges.php:1408
2584
  msgid "No users has yet earned this badge."
2585
  msgstr ""
2586
 
2587
- #: addons/badges/myCRED-addon-badges.php:1433
2588
  msgid "No connections where removed."
2589
  msgstr ""
2590
 
2591
- #: addons/badges/myCRED-addon-badges.php:1435
2592
  #, php-format
2593
  msgid "%s connections where removed."
2594
  msgstr ""
2595
 
2596
- #: addons/coupons/myCRED-addon-coupons.php:102
2597
- #: addons/coupons/myCRED-addon-coupons.php:108
2598
- #: addons/coupons/myCRED-addon-coupons.php:170
2599
- #: addons/coupons/myCRED-addon-coupons.php:171
2600
- #: addons/coupons/myCRED-addon-coupons.php:702
2601
- msgid "Coupons"
2602
- msgstr ""
2603
-
2604
- #: addons/coupons/myCRED-addon-coupons.php:103
2605
- msgid "Coupon"
2606
- msgstr ""
2607
-
2608
- #: addons/coupons/myCRED-addon-coupons.php:104
2609
- #: addons/coupons/myCRED-addon-coupons.php:105
2610
- msgid "Create New"
2611
- msgstr ""
2612
-
2613
- #: addons/coupons/myCRED-addon-coupons.php:106
2614
- msgid "Edit Coupon"
2615
- msgstr ""
2616
-
2617
- #: addons/coupons/myCRED-addon-coupons.php:107
2618
- msgid "New Coupon"
2619
- msgstr ""
2620
-
2621
  #: addons/coupons/myCRED-addon-coupons.php:110
2622
  msgid "Search coupons"
2623
  msgstr ""
@@ -2630,17 +2431,6 @@ msgstr ""
2630
  msgid "No coupons found in Trash"
2631
  msgstr ""
2632
 
2633
- #: addons/coupons/myCRED-addon-coupons.php:145
2634
- #: addons/coupons/myCRED-addon-coupons.php:146
2635
- #: addons/coupons/myCRED-addon-coupons.php:147
2636
- #: addons/coupons/myCRED-addon-coupons.php:148
2637
- #: addons/coupons/myCRED-addon-coupons.php:151
2638
- #: addons/coupons/myCRED-addon-coupons.php:152
2639
- #: addons/coupons/myCRED-addon-coupons.php:153
2640
- #: addons/coupons/myCRED-addon-coupons.php:154
2641
- msgid "Coupon updated."
2642
- msgstr ""
2643
-
2644
  #: addons/coupons/myCRED-addon-coupons.php:150
2645
  msgid "Coupon published."
2646
  msgstr ""
@@ -2650,11 +2440,6 @@ msgstr ""
2650
  msgid "Coupon Code"
2651
  msgstr ""
2652
 
2653
- #: addons/coupons/myCRED-addon-coupons.php:250
2654
- #: addons/coupons/myCRED-addon-coupons.php:513
2655
- msgid "Value"
2656
- msgstr ""
2657
-
2658
  #: addons/coupons/myCRED-addon-coupons.php:251
2659
  msgid "Used"
2660
  msgstr ""
@@ -2676,10 +2461,6 @@ msgstr[1] ""
2676
  msgid "Per User"
2677
  msgstr ""
2678
 
2679
- #: addons/coupons/myCRED-addon-coupons.php:326
2680
- msgid "Expired"
2681
- msgstr ""
2682
-
2683
  #: addons/coupons/myCRED-addon-coupons.php:332
2684
  #, php-format
2685
  msgid "In %s time"
@@ -2812,10 +2593,6 @@ msgid ""
2812
  "Message to show when a user is excluded from the point type the coupon gives."
2813
  msgstr ""
2814
 
2815
- #: addons/coupons/myCRED-addon-coupons.php:757
2816
- msgid "Success Message"
2817
- msgstr ""
2818
-
2819
  #: addons/coupons/myCRED-addon-coupons.php:759
2820
  msgid ""
2821
  "Message to show when a coupon was successfully deposited to a users account."
@@ -3284,7 +3061,6 @@ msgstr ""
3284
 
3285
  #: addons/gateway/event-booking/mycred-eventespresso3.php:512
3286
  #: addons/gateway/event-booking/mycred-eventsmanager.php:628
3287
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:644
3288
  #: addons/gateway/carts/mycred-wpecommerce.php:397
3289
  #: addons/gateway/carts/mycred-woocommerce.php:178
3290
  msgid "Option to share sales with the product owner. Use zero to disable."
@@ -3306,33 +3082,9 @@ msgstr ""
3306
 
3307
  #: addons/gateway/event-booking/mycred-eventsmanager.php:688
3308
  #: addons/gateway/event-booking/mycred-eventsmanager.php:695
3309
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:723
3310
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:730
3311
  msgid "No HTML allowed!"
3312
  msgstr ""
3313
 
3314
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
3315
- msgid "%plural% Cost"
3316
- msgstr ""
3317
-
3318
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:213
3319
- msgid "Your Balance"
3320
- msgstr ""
3321
-
3322
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:637
3323
- msgid ""
3324
- "The percentage of the paid amount to refund if a user cancels their booking. "
3325
- "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
3326
- msgstr ""
3327
-
3328
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:710
3329
- msgid "Cart & Checkout Cost"
3330
- msgstr ""
3331
-
3332
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:713
3333
- msgid "Label for cost in %plural%"
3334
- msgstr ""
3335
-
3336
  #: addons/gateway/carts/mycred-woocommerce.php:30
3337
  msgid "Let users pay using points."
3338
  msgstr ""
@@ -3360,7 +3112,7 @@ msgid "%s Payment"
3360
  msgstr ""
3361
 
3362
  #: addons/gateway/carts/mycred-woocommerce.php:319
3363
- #: addons/sell-content/includes/mycred-sell-functions.php:512
3364
  msgid "Insufficient funds."
3365
  msgstr ""
3366
 
@@ -3372,7 +3124,7 @@ msgstr ""
3372
 
3373
  #: addons/transfer/includes/mycred-transfer-widgets.php:113
3374
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
3375
- #: addons/buy-creds/modules/buycred-module-pending.php:549
3376
  #: addons/buy-creds/modules/buycred-module-core.php:1487
3377
  msgid "Recipient"
3378
  msgstr ""
@@ -3499,76 +3251,76 @@ msgstr ""
3499
  msgid "An unknown error occurred. Coupon not used."
3500
  msgstr ""
3501
 
3502
- #: addons/sell-content/includes/mycred-sell-functions.php:503
3503
  #, php-format
3504
  msgctxt "Point type name"
3505
  msgid "You can not pay using %s"
3506
  msgstr ""
3507
 
3508
- #: addons/sell-content/includes/mycred-sell-functions.php:764
3509
  #, php-format
3510
  msgctxt "all post type name"
3511
  msgid "All %s"
3512
  msgstr ""
3513
 
3514
- #: addons/sell-content/includes/mycred-sell-functions.php:768
3515
  #, php-format
3516
  msgctxt "all post type name"
3517
  msgid "%s I manually select"
3518
  msgstr ""
3519
 
3520
- #: addons/sell-content/includes/mycred-sell-functions.php:772
3521
  #, php-format
3522
  msgctxt "%s = post type name"
3523
  msgid "All %s except"
3524
  msgstr ""
3525
 
3526
- #: addons/sell-content/includes/mycred-sell-functions.php:773
3527
  #, php-format
3528
  msgctxt "%s = post type name"
3529
  msgid "Comma separated list of %s IDs to exclude"
3530
  msgstr ""
3531
 
3532
- #: addons/sell-content/includes/mycred-sell-functions.php:776
3533
  #, php-format
3534
  msgctxt "%s = post type name"
3535
  msgid "Only %s"
3536
  msgstr ""
3537
 
3538
- #: addons/sell-content/includes/mycred-sell-functions.php:777
3539
  #, php-format
3540
  msgctxt "%s = post type name"
3541
  msgid "Comma separated list of %s IDs"
3542
  msgstr ""
3543
 
3544
- #: addons/sell-content/includes/mycred-sell-functions.php:789
3545
  #, php-format
3546
  msgctxt "e.g. Only \"Posts\" in \"Categories\""
3547
  msgid "Only %s in %s"
3548
  msgstr ""
3549
 
3550
- #: addons/sell-content/includes/mycred-sell-functions.php:790
3551
- #: addons/sell-content/includes/mycred-sell-functions.php:794
3552
- #: addons/sell-content/includes/mycred-sell-functions.php:800
3553
- #: addons/sell-content/includes/mycred-sell-functions.php:804
3554
  #, php-format
3555
  msgctxt "%s = taxonomy name"
3556
  msgid "Comma separated list of %s slugs"
3557
  msgstr ""
3558
 
3559
- #: addons/sell-content/includes/mycred-sell-functions.php:793
3560
  #, php-format
3561
  msgctxt "e.g. Only \"Posts\" not in \"Categories\""
3562
  msgid "Only %s not in %s"
3563
  msgstr ""
3564
 
3565
- #: addons/sell-content/includes/mycred-sell-functions.php:799
3566
  #, php-format
3567
  msgctxt "e.g. Only \"Posts\" with \"Tags\""
3568
  msgid "Only %s with %s"
3569
  msgstr ""
3570
 
3571
- #: addons/sell-content/includes/mycred-sell-functions.php:803
3572
  #, php-format
3573
  msgctxt "e.g. Only \"Posts\" without \"Tags\""
3574
  msgid "Only %s without %s"
@@ -3584,19 +3336,6 @@ msgid ""
3584
  "This content is currently unattainable. Apologies for the inconvenience."
3585
  msgstr ""
3586
 
3587
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:204
3588
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
3589
- #: addons/buy-creds/modules/buycred-module-pending.php:270
3590
- #: addons/buy-creds/modules/buycred-module-pending.php:621
3591
- #: addons/buy-creds/modules/buycred-module-pending.php:734
3592
- #: addons/buy-creds/gateways/bank-transfer.php:141
3593
- msgid "Cost"
3594
- msgstr ""
3595
-
3596
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:248
3597
- msgid "Never"
3598
- msgstr ""
3599
-
3600
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:250
3601
  #, php-format
3602
  msgctxt "e.g. 10 hours"
@@ -3613,43 +3352,6 @@ msgctxt "%s is replaced with the point amount and name."
3613
  msgid "Received new request to purchase %s."
3614
  msgstr ""
3615
 
3616
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:445
3617
- #: addons/buy-creds/gateways/bank-transfer.php:125
3618
- msgid "Test Payment"
3619
- msgstr ""
3620
-
3621
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:576
3622
- msgid "First Name"
3623
- msgstr ""
3624
-
3625
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
3626
- msgid "Last Name"
3627
- msgstr ""
3628
-
3629
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:590
3630
- msgid "Address Line 1"
3631
- msgstr ""
3632
-
3633
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:598
3634
- msgid "Address Line 2"
3635
- msgstr ""
3636
-
3637
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:606
3638
- msgid "City"
3639
- msgstr ""
3640
-
3641
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:612
3642
- msgid "Zip"
3643
- msgstr ""
3644
-
3645
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
3646
- msgid "State"
3647
- msgstr ""
3648
-
3649
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:628
3650
- msgid "Country"
3651
- msgstr ""
3652
-
3653
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:633
3654
  msgid "Choose Country"
3655
  msgstr ""
@@ -3670,82 +3372,27 @@ msgstr ""
3670
  msgid "Continue to %s"
3671
  msgstr ""
3672
 
3673
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1501
3674
- msgid "January"
3675
- msgstr ""
3676
-
3677
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1502
3678
- msgid "February"
3679
- msgstr ""
3680
-
3681
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1503
3682
- msgid "March"
3683
- msgstr ""
3684
-
3685
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1504
3686
- msgid "April"
3687
- msgstr ""
3688
-
3689
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1505
3690
- msgid "May"
3691
- msgstr ""
3692
-
3693
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1506
3694
- msgid "June"
3695
- msgstr ""
3696
-
3697
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1507
3698
- msgid "July"
3699
- msgstr ""
3700
-
3701
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1508
3702
- msgid "August"
3703
- msgstr ""
3704
-
3705
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1509
3706
- msgid "September"
3707
- msgstr ""
3708
-
3709
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1510
3710
- msgid "October"
3711
- msgstr ""
3712
-
3713
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1511
3714
- msgid "November"
3715
- msgstr ""
3716
-
3717
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1512
3718
- msgid "December"
3719
- msgstr ""
3720
-
3721
- #: addons/buy-creds/modules/buycred-module-pending.php:138
3722
  msgctxt "Post Type General Name"
3723
  msgid "Pending Payments"
3724
  msgstr ""
3725
 
3726
- #: addons/buy-creds/modules/buycred-module-pending.php:139
3727
  msgctxt "Post Type Singular Name"
3728
  msgid "Pending Payment"
3729
  msgstr ""
3730
 
3731
- #: addons/buy-creds/modules/buycred-module-pending.php:140
3732
  #: addons/buy-creds/modules/buycred-module-pending.php:142
3733
- #: addons/buy-creds/modules/buycred-module-pending.php:232
3734
- #: addons/buy-creds/modules/buycred-module-pending.php:233
 
3735
  msgid "Pending Payments"
3736
  msgstr ""
3737
 
3738
- #: addons/buy-creds/modules/buycred-module-pending.php:146
3739
  msgid "Edit Pending Payment"
3740
  msgstr ""
3741
 
3742
- #: addons/buy-creds/modules/buycred-module-pending.php:149
3743
- #: addons/buy-creds/modules/buycred-module-pending.php:150
3744
- msgid "Not found in Trash"
3745
- msgstr ""
3746
-
3747
- #: addons/buy-creds/modules/buycred-module-pending.php:180
3748
- #: addons/buy-creds/modules/buycred-module-pending.php:181
3749
  #: addons/buy-creds/modules/buycred-module-pending.php:182
3750
  #: addons/buy-creds/modules/buycred-module-pending.php:183
3751
  #: addons/buy-creds/modules/buycred-module-pending.php:184
@@ -3753,60 +3400,51 @@ msgstr ""
3753
  #: addons/buy-creds/modules/buycred-module-pending.php:186
3754
  #: addons/buy-creds/modules/buycred-module-pending.php:187
3755
  #: addons/buy-creds/modules/buycred-module-pending.php:188
 
 
3756
  msgid "Payment Updated."
3757
  msgstr ""
3758
 
3759
- #: addons/buy-creds/modules/buycred-module-pending.php:216
3760
  msgid "Pending payment successfully credited to account."
3761
  msgstr ""
3762
 
3763
- #: addons/buy-creds/modules/buycred-module-pending.php:218
3764
  msgid "Failed to credit the pending payment to account."
3765
  msgstr ""
3766
 
3767
- #: addons/buy-creds/modules/buycred-module-pending.php:266
3768
- #: addons/buy-creds/modules/buycred-module-pending.php:731
3769
- #: addons/buy-creds/modules/buycred-module-core.php:771
3770
- #: addons/buy-creds/gateways/bank-transfer.php:142
3771
- msgid "Transaction ID"
3772
- msgstr ""
3773
-
3774
- #: addons/buy-creds/modules/buycred-module-pending.php:268
3775
  #: addons/buy-creds/modules/buycred-module-core.php:767
3776
  msgid "Buyer"
3777
  msgstr ""
3778
 
3779
- #: addons/buy-creds/modules/buycred-module-pending.php:272
3780
- msgid "Type"
3781
- msgstr ""
3782
-
3783
- #: addons/buy-creds/modules/buycred-module-pending.php:369
3784
- #: addons/buy-creds/modules/buycred-module-pending.php:478
3785
  msgid "Pay Out"
3786
  msgstr ""
3787
 
3788
- #: addons/buy-creds/modules/buycred-module-pending.php:441
3789
  msgid "Pending Payment"
3790
  msgstr ""
3791
 
3792
- #: addons/buy-creds/modules/buycred-module-pending.php:479
3793
  msgid "Trash"
3794
  msgstr ""
3795
 
3796
- #: addons/buy-creds/modules/buycred-module-pending.php:543
3797
  msgid "Payer"
3798
  msgstr ""
3799
 
3800
- #: addons/buy-creds/modules/buycred-module-pending.php:652
3801
  msgid "Pending request created."
3802
  msgstr ""
3803
 
3804
- #: addons/buy-creds/modules/buycred-module-pending.php:700
3805
  #, php-format
3806
  msgid "Pending payment updated by %s"
3807
  msgstr ""
3808
 
3809
- #: addons/buy-creds/modules/buycred-module-pending.php:798
3810
  msgid "No pending payments found"
3811
  msgstr ""
3812
 
@@ -4003,10 +3641,6 @@ msgstr ""
4003
  msgid "High"
4004
  msgstr ""
4005
 
4006
- #: addons/buy-creds/gateways/bitpay.php:277
4007
- msgid "Medium"
4008
- msgstr ""
4009
-
4010
  #: addons/buy-creds/gateways/bitpay.php:278
4011
  msgid "Low"
4012
  msgstr ""
@@ -4050,85 +3684,85 @@ msgctxt "Return label. %s = Website name"
4050
  msgid "Return to %s"
4051
  msgstr ""
4052
 
4053
- #. Description of the plugin
4054
- msgid "An adaptive points management system for WordPress powered websites."
4055
- msgstr ""
4056
-
4057
- #: mycred.php:632 modules/mycred-module-management.php:316
4058
- #: modules/mycred-module-settings.php:425 modules/mycred-module-log.php:469
4059
  #: addons/transfer/myCRED-addon-transfer.php:159
4060
  #: addons/ranks/myCRED-addon-ranks.php:986
4061
- #: addons/ranks/myCRED-addon-ranks.php:1568
4062
- #: addons/badges/myCRED-addon-badges.php:702
4063
  #: addons/gateway/event-booking/mycred-eventsmanager.php:537
4064
  msgid "Processing..."
4065
  msgstr "در حال پردازش ..."
4066
 
4067
- #: mycred.php:633
4068
  msgid "Sent"
4069
  msgstr "ارسال شده"
4070
 
4071
- #: mycred.php:634
4072
  msgid "Error - Try Again"
4073
  msgstr "خطا - لطفا مجددا تلاش کنید"
4074
 
4075
- #: mycred.php:809 mycred.php:810
4076
  #, php-format
4077
  msgid "About %s"
4078
- msgstr "درباره %s"
4079
 
4080
- #: mycred.php:818 mycred.php:819
4081
  msgid "Awesome People"
4082
  msgstr "\"اعتبار من\""
4083
 
4084
- #: mycred.php:923 modules/mycred-module-management.php:473
 
 
 
 
 
4085
  #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
4086
- #: addons/buy-creds/modules/buycred-module-pending.php:444
4087
  msgid "History"
4088
  msgstr "لیست تغییرات"
4089
 
4090
- #: mycred.php:979 mycred.php:1000
4091
  #: addons/notifications/myCRED-addon-notifications.php:194
4092
  #: addons/email-notices/myCRED-addon-email-notices.php:277
4093
  #: addons/banking/services/mycred-service-interest.php:477
4094
  #: addons/gateway/event-booking/mycred-eventsmanager.php:591
4095
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:605
4096
  msgid "Setup"
4097
- msgstr "نصب"
4098
 
4099
- #: mycred.php:981 modules/mycred-module-settings.php:21
4100
  #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
4101
  #: modules/mycred-module-network.php:270
4102
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
4103
  #: addons/buy-creds/modules/buycred-module-core.php:592
4104
  msgid "Settings"
4105
- msgstr "تنظیمات"
4106
 
4107
  #: abstracts/mycred-abstract-hook.php:90
4108
  msgid "This Hook has no settings"
4109
  msgstr "این پنل تنظیمات ، چیزی برای تنظیم ندارد"
4110
 
4111
- #: abstracts/mycred-abstract-hook.php:290
4112
- #: abstracts/mycred-abstract-hook.php:361 includes/mycred-functions.php:2771
4113
  msgid "No limit"
4114
  msgstr "بدون محدودیت"
4115
 
4116
- #: abstracts/mycred-abstract-hook.php:362
4117
  msgid "Once every 24 hours"
4118
  msgstr "یک بار در هر 24 ساعت"
4119
 
4120
- #: abstracts/mycred-abstract-hook.php:363
4121
  msgid "Once every 7 days"
4122
  msgstr "یک بار در هر 7 روز"
4123
 
4124
- #: abstracts/mycred-abstract-hook.php:364
4125
  msgid "Once per day (reset at midnight)"
4126
  msgstr "روزی یک بار ( نیمه شب ریست می شود )"
4127
 
4128
- #: abstracts/mycred-abstract-hook.php:371
4129
  #: addons/email-notices/myCRED-addon-email-notices.php:531
4130
  #: addons/email-notices/myCRED-addon-email-notices.php:862
4131
- #: addons/badges/myCRED-addon-badges.php:880
4132
  #: addons/banking/abstracts/mycred-abstract-service.php:351
4133
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
4134
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
@@ -4136,26 +3770,26 @@ msgstr "روزی یک بار ( نیمه شب ریست می شود )"
4136
  #: addons/buy-creds/modules/buycred-module-core.php:401
4137
  #: addons/buy-creds/gateways/zombaio.php:406
4138
  msgid "Select"
4139
- msgstr "انتخاب"
4140
 
4141
  #: abstracts/mycred-abstract-module.php:400
4142
  #: abstracts/mycred-abstract-module.php:410
4143
  msgid "Surprise"
4144
  msgstr "غافلگیری"
4145
 
4146
- #: abstracts/mycred-abstract-module.php:522
4147
  #: modules/mycred-module-network.php:218
4148
  msgid "click to close"
4149
  msgstr "برای بستن کلیک کنید ."
4150
 
4151
- #: abstracts/mycred-abstract-module.php:523
4152
  #: modules/mycred-module-network.php:219
4153
  msgid "click to open"
4154
  msgstr "برای باز شدن کلیک کنید ."
4155
 
4156
- #: abstracts/mycred-abstract-module.php:556
4157
  #: modules/mycred-module-network.php:261
4158
- #: addons/email-notices/myCRED-addon-email-notices.php:1546
4159
  #: addons/gateway/event-booking/mycred-eventespresso3.php:451
4160
  #: addons/buy-creds/modules/buycred-module-core.php:597
4161
  msgid "Settings Updated"
@@ -4178,7 +3812,7 @@ msgid "Amount can not be zero"
4178
  msgstr "این مقدار نباید صفر باشد"
4179
 
4180
  #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
4181
- #: modules/mycred-module-log.php:910
4182
  #: includes/classes/class.query-export.php:263
4183
  #: includes/classes/class.query-export.php:399
4184
  #: includes/classes/class.query-log.php:892
@@ -4187,7 +3821,14 @@ msgstr "این مقدار نباید صفر باشد"
4187
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:202
4188
  #: addons/buy-creds/modules/buycred-module-core.php:768
4189
  msgid "Date"
4190
- msgstr "تاریخ"
 
 
 
 
 
 
 
4191
 
4192
  #: modules/mycred-module-management.php:238 modules/mycred-module-log.php:96
4193
  #: includes/classes/class.query-export.php:263
@@ -4198,10 +3839,10 @@ msgid "Entry"
4198
  msgstr "ورودی"
4199
 
4200
  #: modules/mycred-module-management.php:315
4201
- #: modules/mycred-module-settings.php:430 modules/mycred-module-log.php:468
4202
  #: addons/banking/myCRED-addon-banking.php:204
4203
  msgid "Close"
4204
- msgstr "بستن"
4205
 
4206
  #: modules/mycred-module-management.php:453
4207
  #: modules/mycred-module-management.php:571
@@ -4210,20 +3851,38 @@ msgstr "بستن"
4210
  msgid "Excluded"
4211
  msgstr "بن شده ( محروم شده )"
4212
 
 
 
 
 
 
4213
  #: modules/mycred-module-management.php:474
4214
  msgid "Adjust"
4215
  msgstr "تطبیق"
4216
 
 
 
 
 
 
 
 
4217
  #: modules/mycred-module-management.php:583
4218
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
4219
- #: addons/buy-creds/modules/buycred-module-pending.php:718
4220
  msgid "Cancel"
4221
- msgstr "لغو"
4222
 
4223
  #: modules/mycred-module-management.php:741
4224
  #: addons/banking/services/mycred-service-payouts.php:553
4225
  msgid "ID"
4226
- msgstr "شناسه"
 
 
 
 
 
 
4227
 
4228
  #: modules/mycred-module-management.php:753
4229
  #: addons/gateway/event-booking/mycred-eventespresso3.php:307
@@ -4244,17 +3903,17 @@ msgstr "میزان امتیازات اخیر"
4244
  #: addons/transfer/includes/mycred-transfer-widgets.php:105
4245
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
4246
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
4247
- #: addons/buy-creds/modules/buycred-module-pending.php:269
4248
- #: addons/buy-creds/modules/buycred-module-pending.php:615
4249
- #: addons/buy-creds/modules/buycred-module-pending.php:733
4250
  msgid "Amount"
4251
- msgstr "مقدار"
4252
 
4253
  #: modules/mycred-module-management.php:770
4254
  msgid "A positive or negative value"
4255
  msgstr "مقدار مثبت یا منفی"
4256
 
4257
- #: modules/mycred-module-management.php:796 modules/mycred-module-log.php:929
4258
  #: addons/gateway/event-booking/mycred-eventespresso3.php:518
4259
  msgid "Log Entry"
4260
  msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
@@ -4265,7 +3924,7 @@ msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
4265
  #: addons/transfer/includes/mycred-transfer-widgets.php:118
4266
  #: addons/transfer/includes/mycred-transfer-widgets.php:126
4267
  msgid "optional"
4268
- msgstr "اختیاری"
4269
 
4270
  #: modules/mycred-module-settings.php:138
4271
  msgid "Accounts successfully reset"
@@ -4285,10 +3944,6 @@ msgstr ""
4285
  msgid "Done!"
4286
  msgstr "انجام شد !"
4287
 
4288
- #: modules/mycred-module-settings.php:431
4289
- msgid "Export users %plural%"
4290
- msgstr "خروجی گرفتن از %plural% کاربران"
4291
-
4292
  #: modules/mycred-module-settings.php:530
4293
  #, php-format
4294
  msgid "%s Settings"
@@ -4301,12 +3956,11 @@ msgstr "تنظیمات اصلی"
4301
  #: modules/mycred-module-settings.php:544 includes/mycred-setup.php:275
4302
  #: addons/gateway/event-booking/mycred-eventespresso3.php:460
4303
  #: addons/gateway/event-booking/mycred-eventsmanager.php:658
4304
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
4305
  msgid "Labels"
4306
  msgstr "برچسب ها"
4307
 
4308
  #: modules/mycred-module-settings.php:562 includes/mycred-setup.php:293
4309
- #: addons/email-notices/myCRED-addon-email-notices.php:1405
4310
  msgid "Format"
4311
  msgstr "طرح ( فرمت )"
4312
 
@@ -4338,25 +3992,25 @@ msgstr "امنیت"
4338
  msgid "Management"
4339
  msgstr "مدیریت"
4340
 
4341
- #: modules/mycred-module-settings.php:678 modules/mycred-module-log.php:433
4342
  msgid "Entries"
4343
  msgstr "داده های ورودی"
4344
 
4345
  #: modules/mycred-module-settings.php:684
4346
  #: modules/mycred-module-settings.php:709
4347
- #: addons/ranks/myCRED-addon-ranks.php:1665
4348
- #: addons/buy-creds/modules/buycred-module-pending.php:450
4349
- #: addons/buy-creds/modules/buycred-module-pending.php:736
4350
  msgid "Actions"
4351
- msgstr "عملیات ها"
4352
 
4353
  #: modules/mycred-module-settings.php:687
4354
  msgid "Empty Log"
4355
  msgstr "لیست گزارشات ( لوگ ) خالی"
4356
 
4357
  #: modules/mycred-module-settings.php:703
4358
- #: addons/ranks/myCRED-addon-ranks.php:1076
4359
- #: addons/badges/myCRED-addon-badges.php:400
4360
  msgid "Users"
4361
  msgstr "کاربران"
4362
 
@@ -4364,56 +4018,55 @@ msgstr "کاربران"
4364
  msgid "Set all to zero"
4365
  msgstr "تغییر تمام داده ها به عدد صفر"
4366
 
4367
- #: modules/mycred-module-settings.php:742
4368
- #: modules/mycred-module-settings.php:768
4369
- #: modules/mycred-module-settings.php:798
4370
  msgid "Meta Key"
4371
  msgstr "کلید اطلاعات"
4372
 
4373
- #: modules/mycred-module-settings.php:748
4374
- #: modules/mycred-module-settings.php:774
4375
- #: modules/mycred-module-settings.php:804
4376
  #: addons/email-notices/myCRED-addon-email-notices.php:578
4377
  #: addons/gateway/carts/mycred-woocommerce.php:155
4378
  msgid "Label"
4379
  msgstr "برچسب ( اتیکت )"
4380
 
4381
- #: modules/mycred-module-settings.php:755
4382
- #: modules/mycred-module-settings.php:781
4383
  #: includes/classes/class.query-log.php:1019
4384
  #: includes/classes/class.query-log.php:1622
4385
  #: addons/banking/services/mycred-service-payouts.php:472
4386
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
4387
  msgid "Delete"
4388
- msgstr "پاک کردن"
4389
 
4390
- #: modules/mycred-module-settings.php:822
4391
  #: addons/gateway/event-booking/mycred-eventespresso3.php:551
4392
  #: addons/buy-creds/modules/buycred-module-core.php:650
4393
  msgid "Update Settings"
4394
  msgstr "به روزرسانی تنظیمات"
4395
 
4396
- #: modules/mycred-module-settings.php:831
4397
  msgid "Identify users by"
4398
  msgstr "تایید هویت کاربر به وسیله ی"
4399
 
4400
- #: modules/mycred-module-settings.php:837
4401
  msgid "User ID"
4402
- msgstr "شناسه کاربر"
4403
 
4404
- #: modules/mycred-module-settings.php:838
4405
  msgid "User Email"
4406
  msgstr "ایمیل کاربر"
4407
 
4408
- #: modules/mycred-module-settings.php:839
4409
  msgid "User Login"
4410
  msgstr "ورود کاربر"
4411
 
4412
- #: modules/mycred-module-settings.php:850
4413
  msgid "Import Log Entry"
4414
  msgstr "وارد کردن لیست گزارشات ( لوگ ) داده های ورودی"
4415
 
4416
- #: modules/mycred-module-settings.php:852
4417
  #, php-format
4418
  msgid ""
4419
  "Optional log entry to use if you intend to import this file in a different "
@@ -4422,8 +4075,8 @@ msgstr ""
4422
  "لیست گزارشات ( لوگ ) اختیاری برای داده های ورودی ، اگر قصد دارید این فایل را "
4423
  "در مرحله ی نصب %s دیگری وارد فرمایید ."
4424
 
4425
- #: modules/mycred-module-settings.php:855 modules/mycred-module-export.php:236
4426
- #: modules/mycred-module-export.php:263 modules/mycred-module-export.php:313
4427
  msgid "Export"
4428
  msgstr "خروجی گرفتن"
4429
 
@@ -4488,7 +4141,7 @@ msgstr "فعال کردن افزونه جانبی"
4488
 
4489
  #: modules/mycred-module-addons.php:406
4490
  msgid "Activate"
4491
- msgstr "فعالسازی"
4492
 
4493
  #: modules/mycred-module-addons.php:412
4494
  msgid "Deactivate Add-on"
@@ -4503,7 +4156,7 @@ msgstr "غیرفعالسازی"
4503
  msgid "Log"
4504
  msgstr "لیست گزارش ( لوگ )"
4505
 
4506
- #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:906
4507
  #: includes/classes/class.query-export.php:263
4508
  #: includes/classes/class.query-export.php:371
4509
  #: includes/classes/class.query-log.php:891
@@ -4511,9 +4164,9 @@ msgstr "لیست گزارش ( لوگ )"
4511
  #: addons/email-notices/myCRED-addon-email-notices.php:336
4512
  #: addons/email-notices/myCRED-addon-email-notices.php:568
4513
  msgid "User"
4514
- msgstr "کاربر"
4515
 
4516
- #: modules/mycred-module-log.php:502
4517
  msgid "Search results for"
4518
  msgstr "نتایج جستجو برای عبارت"
4519
 
@@ -4522,10 +4175,10 @@ msgid "Master Template"
4522
  msgstr "الگوی اصلی"
4523
 
4524
  #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:280
4525
- #: modules/mycred-module-network.php:296 modules/mycred-module-export.php:354
4526
  #: addons/sell-content/myCRED-addon-sell-content.php:481
4527
  msgid "Enabled"
4528
- msgstr "فعال شد"
4529
 
4530
  #: modules/mycred-module-network.php:187 modules/mycred-module-network.php:188
4531
  msgid "Network Settings"
@@ -4542,12 +4195,12 @@ msgid "Note! %s has not yet been setup."
4542
  msgstr "توجه ! %s هنوز نصب نشده است ."
4543
 
4544
  #: modules/mycred-module-network.php:285 modules/mycred-module-network.php:301
4545
- #: modules/mycred-module-export.php:353 plugins/mycred-hook-affiliatewp.php:362
4546
  #: addons/sell-content/myCRED-addon-sell-content.php:396
4547
  #: addons/sell-content/myCRED-addon-sell-content.php:480
4548
  #: addons/buy-creds/modules/buycred-module-core.php:1127
4549
  msgid "Disabled"
4550
- msgstr "غیرفعال شد"
4551
 
4552
  #: modules/mycred-module-network.php:291
4553
  msgid "Central Logging"
@@ -4588,12 +4241,12 @@ msgstr "همگی"
4588
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:189
4589
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:319
4590
  msgid "Today"
4591
- msgstr "امروز"
4592
 
4593
  #: modules/mycred-module-buddypress.php:238
4594
  #: includes/classes/class.query-log.php:1747
4595
  msgid "Yesterday"
4596
- msgstr "دیروز"
4597
 
4598
  #: modules/mycred-module-buddypress.php:239
4599
  #: includes/classes/class.query-log.php:1748
@@ -4609,17 +4262,21 @@ msgstr "این هفته"
4609
  msgid "This Month"
4610
  msgstr "این ماه"
4611
 
 
 
 
 
4612
  #: modules/mycred-module-buddypress.php:404
4613
  #: modules/mycred-module-buddypress.php:411
4614
- #: addons/badges/myCRED-addon-badges.php:1140
4615
- #: addons/badges/myCRED-addon-badges.php:1174
4616
  #: addons/gateway/carts/mycred-woocommerce.php:147
4617
  msgid "Do not show"
4618
  msgstr "نمایش نده !"
4619
 
4620
  #: modules/mycred-module-buddypress.php:406
4621
- #: addons/ranks/myCRED-addon-ranks.php:1478
4622
- #: addons/badges/myCRED-addon-badges.php:1142
4623
  msgid "Include under the \"Profile\" tab"
4624
  msgstr "شامل ( نمایش در ) زیر تب \"پروفایل کاربر\" "
4625
 
@@ -4632,8 +4289,8 @@ msgid "%singular% Balance"
4632
  msgstr "میزان %singular%"
4633
 
4634
  #: modules/mycred-module-buddypress.php:453
4635
- #: addons/ranks/myCRED-addon-ranks.php:1493
4636
- #: addons/ranks/myCRED-addon-ranks.php:1534
4637
  #: addons/notifications/myCRED-addon-notifications.php:198
4638
  msgid "Template"
4639
  msgstr "نمونه ( الگو )"
@@ -4720,10 +4377,10 @@ msgstr "اهدای %_plural% برای فرستادن و یا قبول کردن
4720
  #: plugins/mycred-hook-buddypress-media.php:348
4721
  #: plugins/mycred-hook-wp-favorite-posts.php:228
4722
  #: plugins/mycred-hook-wp-favorite-posts.php:240
4723
- #: plugins/mycred-hook-contact-form7.php:169
4724
  #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:485
4725
  #: plugins/mycred-hook-bbPress.php:536 plugins/mycred-hook-bbPress.php:560
4726
- #: plugins/mycred-hook-woocommerce.php:510
4727
  #: includes/shortcodes/mycred_hook_table.php:79
4728
  msgid "Limit"
4729
  msgstr "محدوده"
@@ -4769,16 +4426,80 @@ msgstr "محدوده"
4769
  #: plugins/mycred-hook-buddypress-media.php:372
4770
  #: plugins/mycred-hook-buddypress-media.php:390
4771
  #: plugins/mycred-hook-buddypress-media.php:408
4772
- #: plugins/mycred-hook-contact-form7.php:175
4773
  #: plugins/mycred-hook-jetpack.php:549 plugins/mycred-hook-jetpack.php:567
4774
  #: plugins/mycred-hook-bbPress.php:449 plugins/mycred-hook-bbPress.php:467
4775
  #: plugins/mycred-hook-bbPress.php:491 plugins/mycred-hook-bbPress.php:518
4776
  #: plugins/mycred-hook-bbPress.php:542 plugins/mycred-hook-bbPress.php:566
4777
  #: plugins/mycred-hook-bbPress.php:593
4778
- #: addons/badges/myCRED-addon-badges.php:949
4779
  msgid "Log template"
4780
  msgstr "نمونه ی لیست گزارش ( لوگ )"
4781
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4782
  #: plugins/mycred-hook-wp-polls.php:15
4783
  msgid "WP-Polls"
4784
  msgstr "نظرسنجی های وردپرس | WP-Polls"
@@ -4790,7 +4511,7 @@ msgstr "اهدای %_plural% برای کاربرانی که در نظرسنجی
4790
  #: plugins/mycred-hook-wp-polls.php:177
4791
  #: plugins/mycred-hook-wp-favorite-posts.php:273
4792
  #: plugins/mycred-hook-wp-favorite-posts.php:288
4793
- #: plugins/mycred-hook-woocommerce.php:516 plugins/mycred-hook-badgeOS.php:144
4794
  #: plugins/mycred-hook-badgeOS.php:146 plugins/mycred-hook-badgeOS.php:157
4795
  #: plugins/mycred-hook-badgeOS.php:327 plugins/mycred-hook-badgeOS.php:345
4796
  #: addons/coupons/myCRED-addon-coupons.php:764
@@ -4804,8 +4525,14 @@ msgstr "اهدای %_plural% برای کاربرانی که در نظرسنجی
4804
  msgid "Log Template"
4805
  msgstr "نمونه لیست گزارش ( لوگ )"
4806
 
 
 
 
 
 
 
4807
  #: plugins/mycred-hook-gravityforms.php:130
4808
- #: plugins/mycred-hook-contact-form7.php:131
4809
  msgid "No forms found."
4810
  msgstr "فرمی یافت نشد ."
4811
 
@@ -4836,7 +4563,6 @@ msgstr ""
4836
 
4837
  #: plugins/mycred-hook-buddypress.php:310
4838
  #: addons/gateway/event-booking/mycred-eventsmanager.php:692
4839
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:727
4840
  #: addons/gateway/carts/mycred-wpecommerce.php:415
4841
  msgid "Insufficient Funds"
4842
  msgstr "موجودی کافی نیست !"
@@ -4845,7 +4571,6 @@ msgstr "موجودی کافی نیست !"
4845
  #: includes/shortcodes/mycred_exchange.php:75
4846
  #: addons/gateway/event-booking/mycred-eventespresso3.php:498
4847
  #: addons/gateway/event-booking/mycred-eventsmanager.php:634
4848
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:650
4849
  #: addons/gateway/carts/mycred-wpecommerce.php:389
4850
  #: addons/gateway/carts/mycred-woocommerce.php:136
4851
  msgid "Exchange Rate"
@@ -5078,14 +4803,14 @@ msgid "(%s) My Balance"
5078
  msgstr "میزان امتیازات (%s) من"
5079
 
5080
  #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
5081
- #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1369
5082
  #: addons/gateway/carts/mycred-woocommerce.php:96
5083
  #: addons/transfer/includes/mycred-transfer-widgets.php:91
5084
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:203
5085
  #: addons/buy-creds/gateways/bank-transfer.php:190
5086
  #: addons/buy-creds/gateways/skrill.php:333
5087
  msgid "Title"
5088
- msgstr "عنوان"
5089
 
5090
  #: includes/mycred-widgets.php:199
5091
  msgid "Include history"
@@ -5110,7 +4835,7 @@ msgstr "نمایش پیام در زمان هایی که کاربر لوگین ن
5110
  #: includes/mycred-widgets.php:222 includes/mycred-widgets.php:590
5111
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:35
5112
  msgid "Message"
5113
- msgstr "پیام"
5114
 
5115
  #: includes/mycred-widgets.php:282
5116
  #, php-format
@@ -5137,15 +4862,15 @@ msgstr ""
5137
 
5138
  #: includes/mycred-widgets.php:396
5139
  msgid "Order"
5140
- msgstr "ترتیب"
5141
 
5142
  #: includes/mycred-widgets.php:401 includes/classes/class.query-log.php:1081
5143
  msgid "Ascending"
5144
- msgstr "صعودی"
5145
 
5146
  #: includes/mycred-widgets.php:402 includes/classes/class.query-log.php:1081
5147
  msgid "Descending"
5148
- msgstr "نزولی"
5149
 
5150
  #: includes/mycred-functions.php:85
5151
  msgid "Point"
@@ -5155,34 +4880,68 @@ msgstr "امتیاز"
5155
  msgid "Points"
5156
  msgstr "امتیازها"
5157
 
5158
- #: includes/mycred-functions.php:466
5159
  msgid "Deleted"
5160
  msgstr "پاک شده"
5161
 
5162
- #: includes/mycred-functions.php:607
5163
  msgid "Deleted Item"
5164
  msgstr "موردهای پاک شده"
5165
 
5166
- #: includes/mycred-functions.php:671
5167
  #: addons/email-notices/myCRED-addon-email-notices.php:864
5168
  #: addons/gateway/carts/mycred-wpecommerce.php:370
5169
  msgid "General"
5170
- msgstr "بخش عمومی"
5171
 
5172
- #: includes/mycred-functions.php:678
5173
  msgid "User Related"
5174
  msgstr "مرتبط با کاربر"
5175
 
5176
- #: includes/mycred-functions.php:685
5177
  msgid "Post Related"
5178
  msgstr "مرتبط با پست"
5179
 
 
 
 
 
5180
  #: includes/importers/mycred-cubepoints.php:340
5181
  #: includes/importers/mycred-cubepoints.php:364
5182
  #: includes/importers/mycred-balances.php:323
5183
  #: includes/importers/mycred-log-entries.php:308
5184
  msgid "Import"
5185
- msgstr "درون ریزی"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5186
 
5187
  #: includes/shortcodes/mycred_video.php:44
5188
  msgid "A video ID is required for this shortcode"
@@ -5193,6 +4952,10 @@ msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می
5193
  msgid "User Missing"
5194
  msgstr "یافت نشدن کاربر"
5195
 
 
 
 
 
5196
  #: includes/classes/class.query-log.php:954
5197
  msgid "No log entries found"
5198
  msgstr "گزارشی یافت نشد !"
@@ -5222,6 +4985,10 @@ msgstr "جستجو در بین داده ها"
5222
  msgid "Approved Comment"
5223
  msgstr "نظرات تایید شده"
5224
 
 
 
 
 
5225
  #: includes/classes/class.query-log.php:2280
5226
  #: addons/banking/myCRED-addon-banking.php:150
5227
  msgid "Compound Interest"
@@ -5250,7 +5017,7 @@ msgstr "بانکداری %s"
5250
  #: addons/banking/myCRED-addon-banking.php:273
5251
  #: addons/buy-creds/modules/buycred-module-core.php:618
5252
  msgid "Enable"
5253
- msgstr "فعالسازی"
5254
 
5255
  #: addons/banking/myCRED-addon-banking.php:292
5256
  msgid "Update Changes"
@@ -5328,16 +5095,16 @@ msgstr "ایمیل کاربر ( user_email )"
5328
  #: addons/transfer/myCRED-addon-transfer.php:355
5329
  #: addons/buy-creds/gateways/bitpay.php:299
5330
  msgid "Yes"
5331
- msgstr "بلی"
5332
 
5333
  #: addons/transfer/myCRED-addon-transfer.php:356
5334
  #: addons/buy-creds/gateways/bitpay.php:298
5335
  msgid "No"
5336
- msgstr "خیر"
5337
 
5338
  #: addons/transfer/myCRED-addon-transfer.php:381
5339
  msgid "Reload"
5340
- msgstr "بارگذاری مجدد"
5341
 
5342
  #: addons/transfer/myCRED-addon-transfer.php:405
5343
  msgid "Autofill Recipient"
@@ -5358,7 +5125,6 @@ msgstr "محدودیت ها"
5358
  #: addons/transfer/myCRED-addon-transfer.php:456
5359
  #: addons/sell-content/myCRED-addon-sell-content.php:685
5360
  #: addons/gateway/event-booking/mycred-eventsmanager.php:641
5361
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:657
5362
  msgid "Log Templates"
5363
  msgstr "نمونه های لیست گزارش ( لوگ )"
5364
 
@@ -5370,14 +5136,22 @@ msgstr "الگوی لیست گزارش برای ارسال"
5370
  msgid "Log template for receiving"
5371
  msgstr "الگوی لیست گزارش برای دریافت"
5372
 
 
 
 
 
 
 
 
 
5373
  #: addons/ranks/myCRED-addon-ranks.php:218
5374
  #: addons/ranks/myCRED-addon-ranks.php:227
5375
  #: addons/ranks/myCRED-addon-ranks.php:237
5376
  #: addons/ranks/myCRED-addon-ranks.php:339
5377
  #: addons/ranks/myCRED-addon-ranks.php:340
5378
  #: addons/ranks/myCRED-addon-ranks.php:724
5379
- #: addons/ranks/myCRED-addon-ranks.php:1359
5380
- #: addons/ranks/myCRED-addon-ranks.php:1654
5381
  msgid "Ranks"
5382
  msgstr "رنک و مدال ها"
5383
 
@@ -5416,7 +5190,7 @@ msgid "Search Ranks"
5416
  msgstr "جستجو در میان مدال ها"
5417
 
5418
  #: addons/ranks/myCRED-addon-ranks.php:234
5419
- #: addons/ranks/myCRED-addon-ranks.php:1286
5420
  msgid "No ranks found"
5421
  msgstr "هیچ مدالی یافت نشد"
5422
 
@@ -5437,120 +5211,120 @@ msgstr "اخطار ! کل مدال ها پاکسازی خواهند شد ! ای
5437
  msgid "Are you sure you want to re-assign user ranks?"
5438
  msgstr "مطمئنید که می خواهید دوباره عمل تخصیص مدال های کاربری را انجام دهید ؟"
5439
 
5440
- #: addons/ranks/myCRED-addon-ranks.php:1073
5441
- #: addons/ranks/myCRED-addon-ranks.php:1174
5442
  msgid "Rank Title"
5443
  msgstr "عنوان مدال"
5444
 
5445
- #: addons/ranks/myCRED-addon-ranks.php:1074
5446
  msgid "Logo"
5447
- msgstr "لوگو"
5448
 
5449
- #: addons/ranks/myCRED-addon-ranks.php:1075
5450
- #: addons/badges/myCRED-addon-badges.php:828
5451
- #: addons/badges/myCRED-addon-badges.php:829
5452
  msgid "Requirement"
5453
  msgstr "پیش نیاز"
5454
 
5455
- #: addons/ranks/myCRED-addon-ranks.php:1101
5456
  msgid "No Logo Set"
5457
  msgstr "لوگویی ست نشده است"
5458
 
5459
- #: addons/ranks/myCRED-addon-ranks.php:1116
5460
- #: addons/ranks/myCRED-addon-ranks.php:1121
5461
  msgid "Any Value"
5462
  msgstr "هر مقداری"
5463
 
5464
- #: addons/ranks/myCRED-addon-ranks.php:1118
5465
  #: addons/buy-creds/modules/buycred-module-core.php:345
5466
  msgid "Minimum %plural%"
5467
  msgstr "کمترین مفدار %plural%"
5468
 
5469
- #: addons/ranks/myCRED-addon-ranks.php:1123
5470
  msgid "Maximum %plural%"
5471
  msgstr "بیشترین مقدار %plural%"
5472
 
5473
- #: addons/ranks/myCRED-addon-ranks.php:1275
5474
- #: addons/ranks/myCRED-addon-ranks.php:1276
5475
  msgid "Not Set"
5476
  msgstr "تنظیم نشده"
5477
 
5478
- #: addons/ranks/myCRED-addon-ranks.php:1366
5479
  msgid "Rank Features"
5480
  msgstr "ویژگی های مدال"
5481
 
5482
- #: addons/ranks/myCRED-addon-ranks.php:1372
5483
  msgid "%plural% requirement"
5484
  msgstr "پیش نیاز %plural%"
5485
 
5486
- #: addons/ranks/myCRED-addon-ranks.php:1378
5487
  msgid "Content"
5488
- msgstr "محتوا"
5489
 
5490
- #: addons/ranks/myCRED-addon-ranks.php:1381
5491
  msgid "Excerpt"
5492
  msgstr "توضیح کوتاه ( نقل قول )"
5493
 
5494
- #: addons/ranks/myCRED-addon-ranks.php:1384
5495
  msgid "Comments"
5496
  msgstr "دیدگاه ها"
5497
 
5498
- #: addons/ranks/myCRED-addon-ranks.php:1387
5499
  msgid "Page Attributes"
5500
  msgstr "خصوصیت های صفحه"
5501
 
5502
- #: addons/ranks/myCRED-addon-ranks.php:1390
5503
  msgid "Custom Fields"
5504
  msgstr "فیلدهای اضافی"
5505
 
5506
- #: addons/ranks/myCRED-addon-ranks.php:1407
5507
  msgid "Display Order"
5508
  msgstr "ترتیب نمایش"
5509
 
5510
- #: addons/ranks/myCRED-addon-ranks.php:1413
5511
  msgid "Ascending - Lowest rank to highest"
5512
  msgstr "صعودی - از پایین ترین مدال ها ، به بالاترین مدال ها"
5513
 
5514
- #: addons/ranks/myCRED-addon-ranks.php:1414
5515
  msgid "Descending - Highest rank to lowest"
5516
  msgstr "نزولی - از بالاترین مدال ها ، به پایین ترین مدال ها"
5517
 
5518
- #: addons/ranks/myCRED-addon-ranks.php:1456
5519
  msgid "Calculate Totals"
5520
  msgstr "محاسبه ی کل امتیازها"
5521
 
5522
- #: addons/ranks/myCRED-addon-ranks.php:1476
5523
- #: addons/ranks/myCRED-addon-ranks.php:1517
5524
  msgid "Do not show."
5525
  msgstr "عدم نمایش"
5526
 
5527
- #: addons/ranks/myCRED-addon-ranks.php:1477
5528
  msgid "Include in Profile Header."
5529
  msgstr "شامل ( نمایش در ) هِدر ( سربرگ ) پروفایل کاربری"
5530
 
5531
- #: addons/ranks/myCRED-addon-ranks.php:1479
5532
  msgid "Include under the \"Profile\" tab and Profile Header."
5533
  msgstr "نمایش در زیر تب \"Profile\" و همچنین سربرگ پروفایل کاربری ."
5534
 
5535
- #: addons/ranks/myCRED-addon-ranks.php:1657
5536
  msgid "User Meta Key"
5537
  msgstr "کلید اطلاعات کاربر ( Meta key ("
5538
 
5539
- #: addons/ranks/myCRED-addon-ranks.php:1661
5540
  msgid "No. of ranks"
5541
  msgstr "تعداد مدال ها"
5542
 
5543
- #: addons/ranks/myCRED-addon-ranks.php:1666
5544
  msgid "Remove All Ranks"
5545
  msgstr "پاکسازی همه ی مدال ها"
5546
 
5547
- #: addons/ranks/myCRED-addon-ranks.php:1666
5548
  msgid "Assign Ranks to Users"
5549
  msgstr "تخصیص دادن مدال به کاربران"
5550
 
5551
  #: addons/notifications/myCRED-addon-notifications.php:191
5552
  msgid "Notifications"
5553
- msgstr "آگاه سازها"
5554
 
5555
  #: addons/notifications/myCRED-addon-notifications.php:200
5556
  msgid ""
@@ -5571,7 +5345,7 @@ msgstr "تعداد روزهایی که یک آگاه ساز ، ذخیره مان
5571
 
5572
  #: addons/notifications/myCRED-addon-notifications.php:214
5573
  msgid "Duration"
5574
- msgstr "مدت"
5575
 
5576
  #: addons/notifications/myCRED-addon-notifications.php:224
5577
  msgid "Use the included CSS Styling for notifications."
@@ -5580,13 +5354,13 @@ msgstr "از قالب ها و کدهای CSS موجود ، برای زیباسا
5580
  #: addons/email-notices/myCRED-addon-email-notices.php:258
5581
  #: addons/email-notices/myCRED-addon-email-notices.php:275
5582
  msgid "Email Subject"
5583
- msgstr "موضوع ایمیل"
5584
 
5585
  #: addons/email-notices/myCRED-addon-email-notices.php:276
5586
  #: addons/banking/services/mycred-service-payouts.php:565
5587
  #: addons/banking/services/mycred-service-payouts.php:880
5588
  msgid "Status"
5589
- msgstr "وضعیت"
5590
 
5591
  #: addons/email-notices/myCRED-addon-email-notices.php:302
5592
  msgid "Not Active"
@@ -5600,7 +5374,7 @@ msgstr "برنامه ریزی شده در : <br /><strong>%1$s</strong>"
5600
  #: addons/email-notices/myCRED-addon-email-notices.php:310
5601
  #: addons/banking/services/mycred-service-payouts.php:31
5602
  msgid "Active"
5603
- msgstr "فعال"
5604
 
5605
  #: addons/email-notices/myCRED-addon-email-notices.php:312
5606
  #, php-format
@@ -5624,7 +5398,7 @@ msgstr "ارسال شده به"
5624
  #: addons/email-notices/myCRED-addon-email-notices.php:338
5625
  #: addons/email-notices/myCRED-addon-email-notices.php:571
5626
  msgid "Administrator"
5627
- msgstr "مدیر"
5628
 
5629
  #: addons/email-notices/myCRED-addon-email-notices.php:340
5630
  msgid "Both Administrator and User"
@@ -5670,15 +5444,15 @@ msgstr "گیرندگان ایمیل :"
5670
 
5671
  #: addons/email-notices/myCRED-addon-email-notices.php:574
5672
  msgid "Both"
5673
- msgstr "هر دو"
5674
 
5675
  #: addons/email-notices/myCRED-addon-email-notices.php:610
5676
- #: addons/email-notices/myCRED-addon-email-notices.php:1467
5677
  msgid "Senders Name:"
5678
  msgstr "نام ارسال کننده :"
5679
 
5680
  #: addons/email-notices/myCRED-addon-email-notices.php:614
5681
- #: addons/email-notices/myCRED-addon-email-notices.php:1473
5682
  msgid "Senders Email:"
5683
  msgstr "آدرس ایمیل ارسال کننده :"
5684
 
@@ -5778,32 +5552,98 @@ msgstr "کاربر تنزل درجه پیدا کند ( رنک از دست بده
5778
  msgid "user is promoted"
5779
  msgstr "کاربر ترفیع درجه پیدا کند ( رنک بدست بیاورد )"
5780
 
5781
- #: addons/email-notices/myCRED-addon-email-notices.php:1400
5782
  #: addons/coupons/myCRED-addon-coupons.php:114
5783
  msgid "Email Notices"
5784
  msgstr "اطلاعیه های ایمیلی"
5785
 
5786
- #: addons/email-notices/myCRED-addon-email-notices.php:1479
 
 
 
 
5787
  msgid "Reply-To:"
5788
  msgstr "پاسخ های دریافتی به ایمیل زیر فرستاده شود :"
5789
 
5790
- #: addons/email-notices/myCRED-addon-email-notices.php:1487
5791
  msgid "Default Email Content"
5792
  msgstr "محتوای پیش فرض ایمیل"
5793
 
5794
- #: addons/email-notices/myCRED-addon-email-notices.php:1489
5795
  msgid "Default email content."
5796
  msgstr "در این بخش متن ایمیل پیش فرض رو وارد می کنید"
5797
 
5798
- #: addons/email-notices/myCRED-addon-email-notices.php:1597
 
 
 
 
5799
  msgid "Email Notice"
5800
  msgstr "اطلاعیه ایمیلی"
5801
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5802
  #: addons/coupons/myCRED-addon-coupons.php:603
5803
  #: addons/banking/services/mycred-service-interest.php:499
5804
  msgid "Minimum Balance"
5805
  msgstr "کمترین میزان"
5806
 
 
 
 
 
5807
  #: addons/sell-content/myCRED-addon-sell-content.php:508
5808
  #: addons/sell-content/myCRED-addon-sell-content.php:1000
5809
  msgid "Sell Content"
@@ -5811,13 +5651,12 @@ msgstr "فروش محتوا"
5811
 
5812
  #: addons/sell-content/myCRED-addon-sell-content.php:511
5813
  msgid "Post Types"
5814
- msgstr "انواع پست"
5815
 
5816
  #: addons/sell-content/myCRED-addon-sell-content.php:673
5817
  #: addons/sell-content/myCRED-addon-sell-content.php:719
5818
  #: addons/gateway/event-booking/mycred-eventespresso3.php:473
5819
  #: addons/gateway/event-booking/mycred-eventsmanager.php:675
5820
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:703
5821
  #: addons/transfer/includes/mycred-transfer-widgets.php:101
5822
  msgid "Button Label"
5823
  msgstr "برچسب کلید"
@@ -5826,8 +5665,6 @@ msgstr "برچسب کلید"
5826
  #: addons/gateway/event-booking/mycred-eventespresso3.php:495
5827
  #: addons/gateway/event-booking/mycred-eventsmanager.php:369
5828
  #: addons/gateway/event-booking/mycred-eventsmanager.php:373
5829
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:153
5830
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:156
5831
  msgid "Price"
5832
  msgstr "هزینه"
5833
 
@@ -5859,7 +5696,7 @@ msgstr "هفتگی"
5859
 
5860
  #: addons/banking/includes/mycred-banking-functions.php:94
5861
  msgid "Monthly"
5862
- msgstr "ماهانه"
5863
 
5864
  #: addons/banking/includes/mycred-banking-functions.php:99
5865
  msgid "Quarterly"
@@ -5875,15 +5712,13 @@ msgstr "سالانه"
5875
 
5876
  #: addons/gateway/event-booking/mycred-eventespresso3.php:26
5877
  #: addons/gateway/event-booking/mycred-eventsmanager.php:594
5878
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:626
5879
  #: addons/buy-creds/modules/buycred-module-core.php:710
5880
  msgid "Payments"
5881
  msgstr "پرداخت ها"
5882
 
5883
  #: addons/gateway/event-booking/mycred-eventespresso3.php:27
5884
  #: addons/gateway/event-booking/mycred-eventsmanager.php:36
5885
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39
5886
- #: addons/buy-creds/modules/buycred-module-pending.php:717
5887
  msgid "Pay Now"
5888
  msgstr "همین حالا بپردازید"
5889
 
@@ -5919,7 +5754,6 @@ msgstr "تنظیمات درگاه پرداخت"
5919
 
5920
  #: addons/gateway/event-booking/mycred-eventespresso3.php:442
5921
  #: addons/gateway/event-booking/mycred-eventsmanager.php:580
5922
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:595
5923
  #, php-format
5924
  msgid "How many %s is 1 %s worth?"
5925
  msgstr "چه مقدار %s معادل 1 %s خواهد بود ؟"
@@ -5963,7 +5797,6 @@ msgstr ""
5963
 
5964
  #: addons/gateway/event-booking/mycred-eventespresso3.php:510
5965
  #: addons/gateway/event-booking/mycred-eventsmanager.php:625
5966
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:641
5967
  #: addons/gateway/carts/mycred-wpecommerce.php:393
5968
  #: addons/gateway/carts/mycred-woocommerce.php:176
5969
  msgid "Profit Sharing"
@@ -5985,47 +5818,39 @@ msgstr "کاربران کم پول !"
5985
  #: addons/gateway/event-booking/mycred-eventespresso3.php:538
5986
  #: addons/gateway/carts/mycred-wpecommerce.php:411
5987
  msgid "Visitors"
5988
- msgstr "بازدیدکنندگان"
5989
 
5990
  #: addons/gateway/event-booking/mycred-eventsmanager.php:30
5991
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
5992
  msgid "Payment for tickets to %link_with_title%"
5993
  msgstr "پرداخت برای بلیت های %link_with_title%"
5994
 
5995
  #: addons/gateway/event-booking/mycred-eventsmanager.php:31
5996
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
5997
  msgid "Ticket refund for %link_with_title%"
5998
  msgstr "بلیت استرداد شده برای %link_with_title%"
5999
 
6000
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35
6001
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
6002
  msgid "Pay using your %_plural% balance"
6003
  msgstr "پرداخت به وسیله ی میزان %_plural% شما"
6004
 
6005
  #: addons/gateway/event-booking/mycred-eventsmanager.php:37
6006
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
6007
  msgid "Pay"
6008
  msgstr "پرداخت"
6009
 
6010
  #: addons/gateway/event-booking/mycred-eventsmanager.php:40
6011
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
6012
  msgid "Thank you for your payment!"
6013
  msgstr "بابت پرداختتان صمیمانه سپاسگذاریم !"
6014
 
6015
  #: addons/gateway/event-booking/mycred-eventsmanager.php:41
6016
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
6017
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
6018
  msgstr ""
6019
  "متاسفیم ، اما نمی توانید با استفاده از %_plural%های خود ، بهای این بلیت را "
6020
  "بپردازید ."
6021
 
6022
  #: addons/gateway/event-booking/mycred-eventsmanager.php:366
6023
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:150
6024
  msgid "Ticket Type"
6025
  msgstr "نوع بلیت"
6026
 
6027
  #: addons/gateway/event-booking/mycred-eventsmanager.php:377
6028
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:159
6029
  msgid "Spaces"
6030
  msgstr "فضاها"
6031
 
@@ -6043,19 +5868,16 @@ msgid "%s Payments"
6043
  msgstr "پرداخت های %s"
6044
 
6045
  #: addons/gateway/event-booking/mycred-eventsmanager.php:596
6046
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:628
6047
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
6048
  msgstr ""
6049
  "غیرفعال شد - کاربران نمی توانند بهای بلیت ها را با %plural% خود بدهند ."
6050
 
6051
  #: addons/gateway/event-booking/mycred-eventsmanager.php:597
6052
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:629
6053
  msgid "Single - Users can ONLY pay for tickets using %plural%."
6054
  msgstr ""
6055
  "جداگانه - کاربران فقط می توانند با %plural% بهای بلیت ها را پرداخت کنند ."
6056
 
6057
  #: addons/gateway/event-booking/mycred-eventsmanager.php:598
6058
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:630
6059
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
6060
  msgstr ""
6061
  "چندگانه - کاربران می توانند از انواع درگاه های پرداخت و یا %plural% خودشان ، "
@@ -6063,8 +5885,6 @@ msgstr ""
6063
 
6064
  #: addons/gateway/event-booking/mycred-eventsmanager.php:618
6065
  #: addons/gateway/event-booking/mycred-eventsmanager.php:651
6066
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:634
6067
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:667
6068
  msgid "Refunds"
6069
  msgstr "استردادی ها"
6070
 
@@ -6078,17 +5898,14 @@ msgstr ""
6078
  "کنید . هیچ وجهی به عنوان استرداد برای بلیت های باطل شده ، پرداخت نمی شود ."
6079
 
6080
  #: addons/gateway/event-booking/mycred-eventsmanager.php:644
6081
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:660
6082
  msgid "Purchases"
6083
  msgstr "خریدها"
6084
 
6085
  #: addons/gateway/event-booking/mycred-eventsmanager.php:661
6086
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:689
6087
  msgid "Payment Link Label"
6088
  msgstr "برچسب لینک پرداخت"
6089
 
6090
  #: addons/gateway/event-booking/mycred-eventsmanager.php:664
6091
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:692
6092
  msgid ""
6093
  "The payment link shows / hides the payment form under \"My Bookings\". No "
6094
  "HTML allowed."
@@ -6097,43 +5914,26 @@ msgstr ""
6097
  "دهد . استفاده از کدهای HTML مجاز نیست ."
6098
 
6099
  #: addons/gateway/event-booking/mycred-eventsmanager.php:668
6100
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:696
6101
  msgid "Payment Header"
6102
  msgstr "سربرگ پرداخت"
6103
 
6104
  #: addons/gateway/event-booking/mycred-eventsmanager.php:671
6105
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:699
6106
  msgid "Shown on top of the payment form. No HTML allowed."
6107
  msgstr "بالای فرم پرداخت نمایش داده می شود . استفاده از کدهای HTML مجاز نیست ."
6108
 
6109
  #: addons/gateway/event-booking/mycred-eventsmanager.php:678
6110
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:706
6111
  msgid "The button label for payments. No HTML allowed!"
6112
  msgstr "برچسب کلید پرداخت . استفاده از کدهای HTML مجاز نیست !"
6113
 
6114
  #: addons/gateway/event-booking/mycred-eventsmanager.php:682
6115
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:717
6116
  #: addons/gateway/carts/mycred-wpecommerce.php:404
6117
  msgid "Messages"
6118
  msgstr "پیام ها"
6119
 
6120
  #: addons/gateway/event-booking/mycred-eventsmanager.php:685
6121
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:720
6122
  msgid "Successful Payments"
6123
  msgstr "پرداخت های موفقیت آمیز"
6124
 
6125
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:374
6126
- msgid "You can not pay using this gateway."
6127
- msgstr "شما قادر به پرداخت توسط این درگاه نیستید ."
6128
-
6129
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:492
6130
- msgid "Reject"
6131
- msgstr "رد کردن"
6132
-
6133
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:501
6134
- msgid "Edit/View"
6135
- msgstr "ویرایش/نمایش"
6136
-
6137
  #: addons/gateway/carts/mycred-wpecommerce.php:20
6138
  msgid "Payment for Order: #%order_id%"
6139
  msgstr "پرداخت برای سفارش : #%order_id%"
@@ -6175,7 +5975,7 @@ msgstr "نمونه لیست گزارش ( لوگ ) پرداخت ها"
6175
 
6176
  #: addons/gateway/carts/mycred-wpecommerce.php:407
6177
  msgid "Instructions"
6178
- msgstr "دستورالعمل ها"
6179
 
6180
  #: addons/gateway/carts/mycred-wpecommerce.php:408
6181
  msgid ""
@@ -6288,11 +6088,11 @@ msgstr "نمایش محدودیت جابجایی امتیاز برای کارب
6288
 
6289
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:157
6290
  msgid "username"
6291
- msgstr "نام کاربری"
6292
 
6293
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:160
6294
  msgid "email"
6295
- msgstr "ایمیل"
6296
 
6297
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:162
6298
  #, php-format
@@ -6312,42 +6112,156 @@ msgstr "داشتن شناسه مدال ضروریست !"
6312
  msgid "Hooks"
6313
  msgstr "پنل تنظیمات امتیازها"
6314
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6315
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:451
6316
  #: addons/buy-creds/gateways/bank-transfer.php:129
6317
  msgid "Payment"
6318
  msgstr "پرداخت"
6319
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6320
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:787
6321
  #: addons/buy-creds/gateways/bitpay.php:225
6322
  msgid "Click here if you are not automatically redirected"
6323
  msgstr ""
6324
  "اگر به صورت خودکار به آدرس مورد نظر منتقل نشدید ، اینجا را کلیک فرمایید ."
6325
 
6326
- #: addons/buy-creds/modules/buycred-module-pending.php:271
6327
- #: addons/buy-creds/modules/buycred-module-pending.php:596
6328
- #: addons/buy-creds/modules/buycred-module-pending.php:732
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6329
  #: addons/buy-creds/modules/buycred-module-core.php:766
6330
  #: addons/buy-creds/includes/buycred-functions.php:119
6331
  msgid "Gateway"
6332
  msgstr "درگاه"
6333
 
6334
- #: addons/buy-creds/modules/buycred-module-pending.php:473
 
 
 
 
6335
  msgid "Save"
6336
- msgstr "ذخیره"
6337
 
6338
- #: addons/buy-creds/modules/buycred-module-pending.php:627
6339
  #: addons/buy-creds/gateways/bank-transfer.php:209
6340
  #: addons/buy-creds/gateways/bitpay.php:251
6341
  #: addons/buy-creds/gateways/paypal-standard.php:279
6342
  #: addons/buy-creds/gateways/skrill.php:294
6343
  msgid "Currency"
6344
- msgstr "واحد پولی"
6345
 
6346
  #: addons/buy-creds/modules/buycred-module-core.php:28
6347
  #: addons/buy-creds/modules/buycred-module-core.php:29
6348
  #: addons/buy-creds/modules/buycred-module-core.php:30
6349
  msgid "Payment Gateways"
6350
- msgstr "درگاه های پرداخت"
6351
 
6352
  #: addons/buy-creds/modules/buycred-module-core.php:301
6353
  msgid "Please login to purchase %_plural%"
@@ -6422,6 +6336,10 @@ msgstr "نام محصول"
6422
  msgid "Description of the item being purchased by the user."
6423
  msgstr "شرح محصولی که توسط کاربر خریداری می شود ."
6424
 
 
 
 
 
6425
  #: addons/buy-creds/gateways/netbilling.php:208
6426
  msgid "Account ID"
6427
  msgstr "شناسه اکانت"
@@ -6495,7 +6413,7 @@ msgstr ""
6495
  #: addons/buy-creds/gateways/paypal-standard.php:192
6496
  #: addons/buy-creds/gateways/skrill.php:171
6497
  msgid "Success"
6498
- msgstr "موفق"
6499
 
6500
  #: addons/buy-creds/gateways/paypal-standard.php:193
6501
  #: addons/buy-creds/gateways/skrill.php:172
1
  msgid ""
2
  msgstr ""
3
+ "PO-Revision-Date: 2017-08-29 08:42+0000\n"
 
 
 
 
 
 
 
4
  "MIME-Version: 1.0\n"
5
  "Content-Type: text/plain; charset=UTF-8\n"
6
  "Content-Transfer-Encoding: 8bit\n"
7
+ "Plural-Forms: nplurals=1; plural=0\n"
8
  "X-Generator: Loco - https://localise.biz/\n"
9
+ "Language: fa-IR\n"
10
+ "Project-Id-Version: Plugins - myCRED - Stable (latest release)\n"
11
+ "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2017-08-29 08:42+0000\n"
13
+ "Last-Translator: mycredlabs <gabriel.s@merovingi.com>\n"
14
+ "Language-Team: Persian"
15
+
16
+ #: mycred.php:568
 
 
 
17
  #, php-format
18
  msgid "%s Log Import"
19
  msgstr ""
20
 
21
+ #: mycred.php:569
22
  msgid "Import log entries via a CSV file."
23
  msgstr ""
24
 
25
+ #: mycred.php:580
26
  #, php-format
27
  msgid "%s Balance Import"
28
  msgstr ""
29
 
30
+ #: mycred.php:581
31
  msgid "Import balances via a CSV file."
32
  msgstr ""
33
 
34
+ #: mycred.php:592
35
  #, php-format
36
  msgid "%s CubePoints Import"
37
  msgstr ""
38
 
39
+ #: mycred.php:593
40
  msgid "Import CubePoints log entries and / or balances."
41
  msgstr ""
42
 
43
+ #: mycred.php:1039
 
 
 
 
 
44
  msgid ""
45
  "Make sure to backup your database and files before updating, in case "
46
  "anything goes wrong!"
47
  msgstr ""
48
 
49
+ #: abstracts/mycred-abstract-hook.php:294
50
  msgid "/ Day"
51
  msgstr ""
52
 
53
+ #: abstracts/mycred-abstract-hook.php:295
54
  msgid "/ Week"
55
  msgstr ""
56
 
57
+ #: abstracts/mycred-abstract-hook.php:296
58
  msgid "/ Month"
59
  msgstr ""
60
 
61
+ #: abstracts/mycred-abstract-hook.php:297
62
  msgid "in Total"
63
  msgstr ""
64
 
74
  msgid "No recent activity found."
75
  msgstr ""
76
 
 
 
 
 
 
 
 
77
  #: modules/mycred-module-management.php:237
78
  #: modules/mycred-module-management.php:775 modules/mycred-module-log.php:93
79
+ #: modules/mycred-module-log.php:904
80
  #: includes/classes/class.query-export.php:263
81
  #: includes/classes/class.query-export.php:360
82
  #: includes/classes/class.query-log.php:904
92
  msgid "Edit Users Balance"
93
  msgstr ""
94
 
 
 
 
 
 
95
  #: modules/mycred-module-management.php:555
96
  msgid "Balances"
97
  msgstr ""
98
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  #: modules/mycred-module-management.php:759
100
  msgid "Total Balance"
101
  msgstr ""
136
  "can not be undone!"
137
  msgstr ""
138
 
139
+ #: modules/mycred-module-settings.php:431
140
+ msgid "Export %singular% Balances"
141
+ msgstr ""
142
+
143
  #: modules/mycred-module-settings.php:432
144
  msgid ""
145
  "In order to adjust the number of decimal places you want to use we must "
162
  msgstr ""
163
 
164
  #: modules/mycred-module-settings.php:530 modules/mycred-module-addons.php:330
165
+ #: modules/mycred-module-addons.php:368 modules/mycred-module-log.php:544
166
  #: modules/mycred-module-network.php:241 modules/mycred-module-network.php:276
167
  #: modules/mycred-module-network.php:292
168
  #: includes/importers/mycred-cubepoints.php:305
179
  #: modules/mycred-module-settings.php:555
180
  #: modules/mycred-module-settings.php:605
181
  #: modules/mycred-module-settings.php:612
182
+ #: modules/mycred-module-settings.php:800
183
+ #: modules/mycred-module-settings.php:806 includes/mycred-setup.php:280
184
  #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
185
  #: includes/mycred-setup.php:340 addons/coupons/myCRED-addon-coupons.php:710
186
  #: addons/coupons/myCRED-addon-coupons.php:717
279
  msgid "Balance Meta Key"
280
  msgstr ""
281
 
282
+ #: modules/mycred-module-settings.php:712
283
+ msgid "Export Balances"
284
+ msgstr ""
285
+
286
+ #: modules/mycred-module-settings.php:729 includes/mycred-widgets.php:573
287
  #: addons/transfer/myCRED-addon-transfer.php:370
288
  #: addons/sell-content/myCRED-addon-sell-content.php:581
289
  #: addons/transfer/includes/mycred-transfer-widgets.php:121
291
  msgid "Point Types"
292
  msgstr ""
293
 
294
+ #: modules/mycred-module-settings.php:795
295
  msgid "Add New Type"
296
  msgstr ""
297
 
298
+ #: modules/mycred-module-settings.php:811
299
  msgid ""
300
  "The meta key must be lowercase and only contain letters or underscores. All "
301
  "other characters will be deleted!"
302
  msgstr ""
303
 
304
+ #: modules/mycred-module-settings.php:852
305
  msgid ""
306
  "Use ID if you intend to use this export as a backup of your current site "
307
  "while Email is recommended if you want to export to a different site."
376
  msgstr[0] ""
377
  msgstr[1] ""
378
 
379
+ #: modules/mycred-module-log.php:461
380
  msgid "Edit Log Entry"
381
  msgstr ""
382
 
383
+ #: modules/mycred-module-log.php:465
384
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
385
  msgstr ""
386
 
387
+ #: modules/mycred-module-log.php:466
388
  msgid "The log entry was successfully updated."
389
  msgstr ""
390
 
391
+ #: modules/mycred-module-log.php:467
392
  msgid "The selected log entry could not be deleted."
393
  msgstr ""
394
 
395
+ #: modules/mycred-module-log.php:501
396
  #, php-format
397
  msgctxt "e.g. Log entries from April 12th 2016"
398
  msgid "Log entries from %s"
399
  msgstr ""
400
 
401
+ #: modules/mycred-module-log.php:544
402
  #, php-format
403
  msgid "%s Log"
404
  msgstr ""
405
 
406
+ #: modules/mycred-module-log.php:554
407
  msgid ""
408
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
409
  "Certain hooks and shortcodes will not work correctly!"
410
  msgstr ""
411
 
412
+ #: modules/mycred-module-log.php:652
413
  #, php-format
414
  msgid "My %s History"
415
  msgstr ""
416
 
417
+ #: modules/mycred-module-log.php:911
418
  msgid "Original Entry"
419
  msgstr ""
420
 
421
+ #: modules/mycred-module-log.php:923
422
  msgid "Delete Entry"
423
  msgstr ""
424
 
425
+ #: modules/mycred-module-log.php:928
426
  msgid "Update Entry"
427
  msgstr ""
428
 
446
  msgid "Blog IDs"
447
  msgstr ""
448
 
449
+ #: modules/mycred-module-export.php:317 modules/mycred-module-export.php:364
450
  #: includes/classes/class.query-log.php:1687
451
  msgid ""
452
  "Log entries are exported to a CSV file and depending on the number of "
453
  "entries selected, the process may take a few seconds."
454
  msgstr ""
455
 
456
+ #: modules/mycred-module-export.php:390
457
  msgid "Make both format options available."
458
  msgstr ""
459
 
460
+ #: modules/mycred-module-export.php:392
461
  msgid "Exports"
462
  msgstr ""
463
 
464
+ #: modules/mycred-module-export.php:398
465
  msgid "Front End Exports"
466
  msgstr ""
467
 
468
+ #: modules/mycred-module-export.php:414 modules/mycred-module-export.php:462
469
  msgid "Export Format"
470
  msgstr ""
471
 
472
+ #: modules/mycred-module-export.php:430 modules/mycred-module-export.php:478
473
  msgid "File Name"
474
  msgstr ""
475
 
476
+ #: modules/mycred-module-export.php:432 modules/mycred-module-export.php:480
477
  #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
478
  #: includes/importers/mycred-cubepoints.php:353
479
  #: includes/classes/class.query-export.php:263
480
  #: includes/classes/class.query-export.php:391
481
+ #: addons/ranks/myCRED-addon-ranks.php:1083
482
+ #: addons/ranks/myCRED-addon-ranks.php:1251
483
+ #: addons/ranks/myCRED-addon-ranks.php:1258
484
  #: addons/email-notices/myCRED-addon-email-notices.php:280
485
  #: addons/email-notices/myCRED-addon-email-notices.php:585
486
  #: addons/coupons/myCRED-addon-coupons.php:256
487
  #: addons/coupons/myCRED-addon-coupons.php:520
488
  #: addons/gateway/event-booking/mycred-eventespresso3.php:483
489
  #: addons/gateway/event-booking/mycred-eventsmanager.php:604
 
490
  #: addons/gateway/carts/mycred-wpecommerce.php:383
491
  #: addons/gateway/carts/mycred-woocommerce.php:125
492
  #: addons/gateway/carts/mycred-woocommerce.php:166
493
+ #: addons/buy-creds/modules/buycred-module-pending.php:584
494
+ #: addons/buy-creds/modules/buycred-module-pending.php:762
495
  msgid "Point Type"
496
  msgstr ""
497
 
498
+ #: modules/mycred-module-export.php:439
499
  msgid ""
500
  "If enabled, users will only be able to export their own log entries! Export "
501
  "tools becomes available wherever you are using the mycred_history shortcode "
502
  "or in the users profile."
503
  msgstr ""
504
 
505
+ #: modules/mycred-module-export.php:446
506
  msgid "Back End Exports"
507
  msgstr ""
508
 
509
+ #: modules/mycred-module-export.php:487
510
  msgid ""
511
  "Raw format should be used when you intend to use the export tool to backup "
512
  "or import entries in another installation. Formatted exports reflect what "
521
  msgid "Show:"
522
  msgstr ""
523
 
 
 
 
 
524
  #: modules/mycred-module-buddypress.php:405
525
+ #: addons/badges/myCRED-addon-badges.php:1166
526
  msgid "Include in Profile Header"
527
  msgstr ""
528
 
529
  #: modules/mycred-module-buddypress.php:407
530
+ #: addons/badges/myCRED-addon-badges.php:1168
531
  msgid "Include under the \"Profile\" tab and Profile Header"
532
  msgstr ""
533
 
543
  msgid "Sending Invites"
544
  msgstr ""
545
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
546
  #: plugins/mycred-hook-invite-anyone.php:229
547
  msgid "Accepted Invites"
548
  msgstr ""
571
  msgid "Member"
572
  msgstr ""
573
 
 
 
 
 
 
 
574
  #: plugins/mycred-hook-wp-postratings.php:192
575
  #: plugins/mycred-hook-wp-postratings.php:199
576
  msgid "Use the Rating Value instead of the amount set here."
595
  msgstr ""
596
 
597
  #: plugins/mycred-hook-gravityforms.php:156
598
+ #: plugins/mycred-hook-contact-form7.php:162
599
  #, php-format
600
  msgid "Form: %s"
601
  msgstr ""
889
  msgid "Leave empty for no rewards"
890
  msgstr ""
891
 
892
+ #: plugins/mycred-hook-woocommerce.php:388
893
  msgid "WooCommerce Product Reviews"
894
  msgstr ""
895
 
896
+ #: plugins/mycred-hook-woocommerce.php:389
897
  msgid ""
898
  "Awards %_plural% for users leaving reviews on your WooCommerce products."
899
  msgstr ""
966
  msgstr ""
967
 
968
  #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
969
+ #: addons/email-notices/myCRED-addon-email-notices.php:1445
970
  msgid "Advanced"
971
  msgstr ""
972
 
1126
  msgid "Row Layout"
1127
  msgstr ""
1128
 
1129
+ #: includes/mycred-functions.php:698
1130
  msgid "Comment Related"
1131
  msgstr ""
1132
 
1133
+ #: includes/mycred-functions.php:705
1134
  msgid "Widget Related"
1135
  msgstr ""
1136
 
1137
+ #: includes/mycred-functions.php:712
1138
  msgid "Amount Related"
1139
  msgstr ""
1140
 
1141
+ #: includes/mycred-functions.php:719
1142
  msgid "Video Related"
1143
  msgstr ""
1144
 
1145
+ #: includes/mycred-functions.php:732
 
 
 
 
1146
  msgid "Available Template Tags:"
1147
  msgstr ""
1148
 
1149
+ #: includes/mycred-functions.php:2790
1150
  msgid "in total"
1151
  msgstr ""
1152
 
1153
+ #: includes/mycred-functions.php:2792
1154
  msgid "per day"
1155
  msgstr ""
1156
 
1157
+ #: includes/mycred-functions.php:2795
1158
  msgid "per week"
1159
  msgstr ""
1160
 
1161
+ #: includes/mycred-functions.php:2798
1162
  msgid "per month"
1163
  msgstr ""
1164
 
1165
+ #: includes/mycred-functions.php:2800 includes/mycred-functions.php:2806
1166
  #, php-format
1167
  msgid "Maximum once"
1168
  msgid_plural "Maximum %d times"
1169
  msgstr[0] ""
1170
  msgstr[1] ""
1171
 
1172
+ #: includes/mycred-functions.php:2828
1173
  #, php-format
1174
  msgctxt "e.g. 5 th"
1175
  msgid "%d th"
1176
  msgstr ""
1177
 
1178
+ #: includes/mycred-functions.php:2832
1179
  #, php-format
1180
  msgctxt "e.g. 1 st"
1181
  msgid "%d st"
1182
  msgstr ""
1183
 
1184
+ #: includes/mycred-functions.php:2833
1185
  #, php-format
1186
  msgctxt "e.g. 2 nd"
1187
  msgid "%d nd"
1188
  msgstr ""
1189
 
1190
+ #: includes/mycred-functions.php:2834
1191
  #, php-format
1192
  msgctxt "e.g. 3 rd"
1193
  msgid "%d rd"
1256
  msgid "Import Balances %s"
1257
  msgstr ""
1258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1259
  #: includes/importers/mycred-balances.php:315
1260
  msgid "Replace current balances with the amount in this CSV file"
1261
  msgstr ""
1271
  "successfully imported. <strong>%d</strong> was skipped."
1272
  msgstr ""
1273
 
 
 
 
 
 
1274
  #: includes/importers/mycred-log-entries.php:239
1275
  #, php-format
1276
  msgid "Import Log Entries %s"
1366
  msgid "All Log Entries"
1367
  msgstr ""
1368
 
 
 
 
 
1369
  #: includes/classes/class.query-export.php:492
1370
  msgid "Users Log Entries"
1371
  msgstr ""
1570
  msgid "New Group Comment"
1571
  msgstr ""
1572
 
 
 
 
 
1573
  #: includes/classes/class.query-log.php:2230
1574
  msgid "Link Voting"
1575
  msgstr ""
1857
  "someone who is not logged in."
1858
  msgstr ""
1859
 
 
 
 
 
1860
  #: addons/transfer/myCRED-addon-transfer.php:508
1861
  msgid ""
1862
  "The template to use if you select to show the transfer limit in the transfer "
1863
  "shortcode or widget. Ignored if there is no limit enforced."
1864
  msgstr ""
1865
 
 
 
 
 
1866
  #: addons/transfer/myCRED-addon-transfer.php:524
1867
  msgid ""
1868
  "The template to use if you select to show the users balance in the transfer "
1875
  msgstr ""
1876
 
1877
  #: addons/ranks/myCRED-addon-ranks.php:230
1878
+ #: addons/ranks/myCRED-addon-ranks.php:1379
1879
  msgid "Rank Logo"
1880
  msgstr ""
1881
 
1913
  msgid "No ranks exists."
1914
  msgstr ""
1915
 
1916
+ #: addons/ranks/myCRED-addon-ranks.php:1193
1917
  msgid "Rank Setup"
1918
  msgstr ""
1919
 
1920
+ #: addons/ranks/myCRED-addon-ranks.php:1234
1921
  msgid "Minimum Balance Requirement"
1922
  msgstr ""
1923
 
1924
+ #: addons/ranks/myCRED-addon-ranks.php:1240
1925
  msgid "Maximum Balance Requirement"
1926
  msgstr ""
1927
 
1928
+ #: addons/ranks/myCRED-addon-ranks.php:1399
1929
  msgid "Rank Post Type"
1930
  msgstr ""
1931
 
1932
+ #: addons/ranks/myCRED-addon-ranks.php:1402
1933
  msgid "Make Ranks Public"
1934
  msgstr ""
1935
 
1936
+ #: addons/ranks/myCRED-addon-ranks.php:1406
1937
  msgid "Rank SLUG"
1938
  msgstr ""
1939
 
1940
+ #: addons/ranks/myCRED-addon-ranks.php:1408
1941
  msgid ""
1942
  "If you have selected to make Ranks public, you can select what rank archive "
1943
  "URL slug you want to use. Ignored if Ranks are not set to be public."
1944
  msgstr ""
1945
 
1946
+ #: addons/ranks/myCRED-addon-ranks.php:1429
1947
  msgid "Option to set in which order Ranks should be shown on the archive page."
1948
  msgstr ""
1949
 
1950
+ #: addons/ranks/myCRED-addon-ranks.php:1436
1951
  msgid "Rank Behaviour"
1952
  msgstr ""
1953
 
1954
+ #: addons/ranks/myCRED-addon-ranks.php:1441
1955
  msgid "Based on Current Balances"
1956
  msgstr ""
1957
 
1958
+ #: addons/ranks/myCRED-addon-ranks.php:1443
1959
  msgid ""
1960
  "Users can be promoted or demoted depending on where their balance fits in "
1961
  "amongst your ranks."
1962
  msgstr ""
1963
 
1964
+ #: addons/ranks/myCRED-addon-ranks.php:1449
1965
  msgid "Based on Total Balances"
1966
  msgstr ""
1967
 
1968
+ #: addons/ranks/myCRED-addon-ranks.php:1451
1969
  msgid ""
1970
  "Users can only be promoted and gain higher ranks even if their balance "
1971
  "decreases."
1972
  msgstr ""
1973
 
1974
+ #: addons/ranks/myCRED-addon-ranks.php:1458
1975
  msgid "Tools"
1976
  msgstr ""
1977
 
1978
+ #: addons/ranks/myCRED-addon-ranks.php:1459
1979
  msgid ""
1980
  "Use this button to calculate or recalculate each individual users total "
1981
  "balance if you think your users total balances are incorrect, or if you "
1982
  "switch from Ranks being based on users current balance to total balance."
1983
  msgstr ""
1984
 
1985
+ #: addons/ranks/myCRED-addon-ranks.php:1464
1986
+ #: addons/badges/myCRED-addon-badges.php:1155
1987
  msgid "Third-party Integrations"
1988
  msgstr ""
1989
 
1990
+ #: addons/ranks/myCRED-addon-ranks.php:1499
1991
+ #: addons/ranks/myCRED-addon-ranks.php:1540
1992
  msgid ""
1993
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
1994
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
1995
  msgstr ""
1996
 
1997
+ #: addons/ranks/myCRED-addon-ranks.php:1503
1998
+ #: addons/ranks/myCRED-addon-ranks.php:1544
1999
+ #: addons/badges/myCRED-addon-badges.php:1187
2000
+ #: addons/badges/myCRED-addon-badges.php:1221
2001
  msgid "Not installed"
2002
  msgstr ""
2003
 
2004
+ #: addons/ranks/myCRED-addon-ranks.php:1522
2005
  msgid "Include in Topic Replies"
2006
  msgstr ""
2007
 
2008
+ #: addons/ranks/myCRED-addon-ranks.php:1523
2009
+ #: addons/badges/myCRED-addon-badges.php:1200
2010
  msgid "Include in Profile"
2011
  msgstr ""
2012
 
2013
+ #: addons/ranks/myCRED-addon-ranks.php:1524
2014
  msgid "Include in Topic Replies and Profile"
2015
  msgstr ""
2016
 
2017
+ #: addons/ranks/myCRED-addon-ranks.php:1550
2018
+ #: addons/email-notices/myCRED-addon-email-notices.php:1466
2019
+ #: addons/badges/myCRED-addon-badges.php:1227
2020
  #: addons/buy-creds/modules/buycred-module-core.php:460
2021
  msgid "Available Shortcodes"
2022
  msgstr ""
2120
  msgid "user gains a badge"
2121
  msgstr ""
2122
 
2123
+ #: addons/email-notices/myCRED-addon-email-notices.php:1418
2124
  msgid "Plain Text"
2125
  msgstr ""
2126
 
2127
+ #: addons/email-notices/myCRED-addon-email-notices.php:1426
2128
  #: addons/banking/services/mycred-service-payouts.php:825
2129
  msgid "Schedule"
2130
  msgstr ""
2131
 
2132
+ #: addons/email-notices/myCRED-addon-email-notices.php:1430
2133
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
2134
  msgstr ""
2135
 
2136
+ #: addons/email-notices/myCRED-addon-email-notices.php:1433
2137
  msgid "Send emails immediately"
2138
  msgstr ""
2139
 
2140
+ #: addons/email-notices/myCRED-addon-email-notices.php:1436
2141
  msgid "Send emails once an hour"
2142
  msgstr ""
2143
 
2144
+ #: addons/email-notices/myCRED-addon-email-notices.php:1439
2145
  msgid "Send emails once a day"
2146
  msgstr ""
2147
 
2148
+ #: addons/email-notices/myCRED-addon-email-notices.php:1448
2149
  msgid "Filter Email Subjects"
2150
  msgstr ""
2151
 
2152
+ #: addons/email-notices/myCRED-addon-email-notices.php:1451
2153
  msgid "Filter Email Body"
2154
  msgstr ""
2155
 
2156
+ #: addons/email-notices/myCRED-addon-email-notices.php:1460
2157
  msgid ""
2158
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
2159
  "use a SMTP plugin for emails."
2160
  msgstr ""
2161
 
2162
+ #: addons/email-notices/myCRED-addon-email-notices.php:1506
 
 
 
 
2163
  msgid "Default CSS Styling"
2164
  msgstr ""
2165
 
2166
+ #: addons/email-notices/myCRED-addon-email-notices.php:1508
2167
  msgid ""
2168
  "Default email CSS styling. Note that if you intend to send HTML emails, you "
2169
  "should use inline CSS styling for best results."
2170
  msgstr ""
2171
 
2172
+ #: addons/email-notices/myCRED-addon-email-notices.php:1628
 
 
 
 
2173
  msgid "There are no email notifications yet."
2174
  msgstr ""
2175
 
 
 
 
 
 
2176
  #: addons/stats/myCRED-addon-stats.php:58
2177
  msgid "Statistics"
2178
  msgstr ""
2206
  #: addons/badges/myCRED-addon-badges.php:160
2207
  #: addons/badges/myCRED-addon-badges.php:295
2208
  #: addons/badges/myCRED-addon-badges.php:296
2209
+ #: addons/badges/myCRED-addon-badges.php:1152
2210
+ #: addons/badges/myCRED-addon-badges.php:1281
2211
+ #: addons/badges/myCRED-addon-badges.php:1284
2212
  msgid "Badges"
2213
  msgstr ""
2214
 
2258
  msgid "Badge Saved."
2259
  msgstr ""
2260
 
2261
+ #: addons/badges/myCRED-addon-badges.php:421
2262
+ #: addons/badges/myCRED-addon-badges.php:505
2263
  msgid "Badge Name"
2264
  msgstr ""
2265
 
2266
+ #: addons/badges/myCRED-addon-badges.php:422
2267
  msgid "Default Image"
2268
  msgstr ""
2269
 
2270
+ #: addons/badges/myCRED-addon-badges.php:423
2271
  msgid "First Level"
2272
  msgstr ""
2273
 
2274
+ #: addons/badges/myCRED-addon-badges.php:535
2275
+ #: addons/badges/myCRED-addon-badges.php:826
 
 
 
 
2276
  msgid "Add Level"
2277
  msgstr ""
2278
 
2279
+ #: addons/badges/myCRED-addon-badges.php:536
2280
+ #: addons/badges/myCRED-addon-badges.php:827
2281
  msgid "Remove Level"
2282
  msgstr ""
2283
 
2284
+ #: addons/badges/myCRED-addon-badges.php:537
2285
+ #: addons/badges/myCRED-addon-badges.php:780
2286
+ #: addons/badges/myCRED-addon-badges.php:843
2287
+ #: addons/badges/myCRED-addon-badges.php:848
2288
  msgid "Set Image"
2289
  msgstr ""
2290
 
2291
+ #: addons/badges/myCRED-addon-badges.php:538
2292
+ #: addons/badges/myCRED-addon-badges.php:780
2293
+ #: addons/badges/myCRED-addon-badges.php:848
2294
  msgid "Change Image"
2295
  msgstr ""
2296
 
2297
+ #: addons/badges/myCRED-addon-badges.php:539
2298
  msgid "Are you sure you want to remove this level?"
2299
  msgstr ""
2300
 
2301
+ #: addons/badges/myCRED-addon-badges.php:540
2302
+ #: addons/badges/myCRED-addon-badges.php:844
2303
+ #: addons/badges/myCRED-addon-badges.php:1313
2304
  msgid "Level"
2305
  msgstr ""
2306
 
2307
+ #: addons/badges/myCRED-addon-badges.php:541
2308
  msgid "Badge Image"
2309
  msgstr ""
2310
 
2311
+ #: addons/badges/myCRED-addon-badges.php:542
2312
  msgid "Use as Badge"
2313
  msgstr ""
2314
 
2315
+ #: addons/badges/myCRED-addon-badges.php:543
2316
+ #: addons/badges/myCRED-addon-badges.php:946
2317
  #: addons/badges/includes/mycred-badge-functions.php:272
2318
  msgctxt "Comparison of badge requirements. A AND B"
2319
  msgid "AND"
2320
  msgstr ""
2321
 
2322
+ #: addons/badges/myCRED-addon-badges.php:544
2323
+ #: addons/badges/myCRED-addon-badges.php:946
2324
  #: addons/badges/includes/mycred-badge-functions.php:270
2325
  msgctxt "Comparison of badge requirements. A OR B"
2326
  msgid "OR"
2327
  msgstr ""
2328
 
2329
+ #: addons/badges/myCRED-addon-badges.php:596
2330
  msgid "Badge Setup"
2331
  msgstr ""
2332
 
2333
+ #: addons/badges/myCRED-addon-badges.php:605
2334
  msgid "Default Badge Image"
2335
  msgstr ""
2336
 
2337
+ #: addons/badges/myCRED-addon-badges.php:703
2338
  msgid "Assign Badge"
2339
  msgstr ""
2340
 
2341
+ #: addons/badges/myCRED-addon-badges.php:704
2342
  msgid "Remove Connections"
2343
  msgstr ""
2344
 
2345
+ #: addons/badges/myCRED-addon-badges.php:747
2346
  #: addons/badges/includes/mycred-badge-functions.php:288
2347
  msgid "This badge is manually awarded."
2348
  msgstr ""
2349
 
2350
+ #: addons/badges/myCRED-addon-badges.php:783
2351
  msgid "Optional image to show when a user has not earned this badge."
2352
  msgstr ""
2353
 
2354
+ #: addons/badges/myCRED-addon-badges.php:802
2355
  msgid "Time(s)"
2356
  msgstr ""
2357
 
2358
+ #: addons/badges/myCRED-addon-badges.php:803
2359
  msgid "In total"
2360
  msgstr ""
2361
 
2362
+ #: addons/badges/myCRED-addon-badges.php:850
2363
  #, php-format
2364
  msgid "Level %d"
2365
  msgstr ""
2366
 
2367
+ #: addons/badges/myCRED-addon-badges.php:874
2368
  msgid "Select Point Type"
2369
  msgstr ""
2370
 
2371
+ #: addons/badges/myCRED-addon-badges.php:888
2372
  msgid "Select Reference"
2373
  msgstr ""
2374
 
2375
+ #: addons/badges/myCRED-addon-badges.php:964
2376
  msgid "Reward"
2377
  msgstr ""
2378
 
2379
+ #: addons/badges/myCRED-addon-badges.php:1183
2380
+ #: addons/badges/myCRED-addon-badges.php:1217
2381
  msgid "Show all badges, including badges users have not yet earned."
2382
  msgstr ""
2383
 
2384
+ #: addons/badges/myCRED-addon-badges.php:1201
2385
  msgid "Include in Forum Replies"
2386
  msgstr ""
2387
 
2388
+ #: addons/badges/myCRED-addon-badges.php:1202
2389
  msgid "Include in Profile and Forum Replies"
2390
  msgstr ""
2391
 
2392
+ #: addons/badges/myCRED-addon-badges.php:1276
2393
  msgid "No image set"
2394
  msgstr ""
2395
 
2396
+ #: addons/badges/myCRED-addon-badges.php:1308
2397
  msgid "Select a level"
2398
  msgstr ""
2399
 
2400
+ #: addons/badges/myCRED-addon-badges.php:1322
2401
  msgid "Earned"
2402
  msgstr ""
2403
 
2404
+ #: addons/badges/myCRED-addon-badges.php:1431
2405
  #, php-format
2406
  msgid "A total of %d users have received this badge."
2407
  msgstr ""
2408
 
2409
+ #: addons/badges/myCRED-addon-badges.php:1433
2410
  msgid "No users has yet earned this badge."
2411
  msgstr ""
2412
 
2413
+ #: addons/badges/myCRED-addon-badges.php:1458
2414
  msgid "No connections where removed."
2415
  msgstr ""
2416
 
2417
+ #: addons/badges/myCRED-addon-badges.php:1460
2418
  #, php-format
2419
  msgid "%s connections where removed."
2420
  msgstr ""
2421
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2422
  #: addons/coupons/myCRED-addon-coupons.php:110
2423
  msgid "Search coupons"
2424
  msgstr ""
2431
  msgid "No coupons found in Trash"
2432
  msgstr ""
2433
 
 
 
 
 
 
 
 
 
 
 
 
2434
  #: addons/coupons/myCRED-addon-coupons.php:150
2435
  msgid "Coupon published."
2436
  msgstr ""
2440
  msgid "Coupon Code"
2441
  msgstr ""
2442
 
 
 
 
 
 
2443
  #: addons/coupons/myCRED-addon-coupons.php:251
2444
  msgid "Used"
2445
  msgstr ""
2461
  msgid "Per User"
2462
  msgstr ""
2463
 
 
 
 
 
2464
  #: addons/coupons/myCRED-addon-coupons.php:332
2465
  #, php-format
2466
  msgid "In %s time"
2593
  "Message to show when a user is excluded from the point type the coupon gives."
2594
  msgstr ""
2595
 
 
 
 
 
2596
  #: addons/coupons/myCRED-addon-coupons.php:759
2597
  msgid ""
2598
  "Message to show when a coupon was successfully deposited to a users account."
3061
 
3062
  #: addons/gateway/event-booking/mycred-eventespresso3.php:512
3063
  #: addons/gateway/event-booking/mycred-eventsmanager.php:628
 
3064
  #: addons/gateway/carts/mycred-wpecommerce.php:397
3065
  #: addons/gateway/carts/mycred-woocommerce.php:178
3066
  msgid "Option to share sales with the product owner. Use zero to disable."
3082
 
3083
  #: addons/gateway/event-booking/mycred-eventsmanager.php:688
3084
  #: addons/gateway/event-booking/mycred-eventsmanager.php:695
 
 
3085
  msgid "No HTML allowed!"
3086
  msgstr ""
3087
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3088
  #: addons/gateway/carts/mycred-woocommerce.php:30
3089
  msgid "Let users pay using points."
3090
  msgstr ""
3112
  msgstr ""
3113
 
3114
  #: addons/gateway/carts/mycred-woocommerce.php:319
3115
+ #: addons/sell-content/includes/mycred-sell-functions.php:534
3116
  msgid "Insufficient funds."
3117
  msgstr ""
3118
 
3124
 
3125
  #: addons/transfer/includes/mycred-transfer-widgets.php:113
3126
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
3127
+ #: addons/buy-creds/modules/buycred-module-pending.php:576
3128
  #: addons/buy-creds/modules/buycred-module-core.php:1487
3129
  msgid "Recipient"
3130
  msgstr ""
3251
  msgid "An unknown error occurred. Coupon not used."
3252
  msgstr ""
3253
 
3254
+ #: addons/sell-content/includes/mycred-sell-functions.php:525
3255
  #, php-format
3256
  msgctxt "Point type name"
3257
  msgid "You can not pay using %s"
3258
  msgstr ""
3259
 
3260
+ #: addons/sell-content/includes/mycred-sell-functions.php:786
3261
  #, php-format
3262
  msgctxt "all post type name"
3263
  msgid "All %s"
3264
  msgstr ""
3265
 
3266
+ #: addons/sell-content/includes/mycred-sell-functions.php:790
3267
  #, php-format
3268
  msgctxt "all post type name"
3269
  msgid "%s I manually select"
3270
  msgstr ""
3271
 
3272
+ #: addons/sell-content/includes/mycred-sell-functions.php:794
3273
  #, php-format
3274
  msgctxt "%s = post type name"
3275
  msgid "All %s except"
3276
  msgstr ""
3277
 
3278
+ #: addons/sell-content/includes/mycred-sell-functions.php:795
3279
  #, php-format
3280
  msgctxt "%s = post type name"
3281
  msgid "Comma separated list of %s IDs to exclude"
3282
  msgstr ""
3283
 
3284
+ #: addons/sell-content/includes/mycred-sell-functions.php:798
3285
  #, php-format
3286
  msgctxt "%s = post type name"
3287
  msgid "Only %s"
3288
  msgstr ""
3289
 
3290
+ #: addons/sell-content/includes/mycred-sell-functions.php:799
3291
  #, php-format
3292
  msgctxt "%s = post type name"
3293
  msgid "Comma separated list of %s IDs"
3294
  msgstr ""
3295
 
3296
+ #: addons/sell-content/includes/mycred-sell-functions.php:811
3297
  #, php-format
3298
  msgctxt "e.g. Only \"Posts\" in \"Categories\""
3299
  msgid "Only %s in %s"
3300
  msgstr ""
3301
 
3302
+ #: addons/sell-content/includes/mycred-sell-functions.php:812
3303
+ #: addons/sell-content/includes/mycred-sell-functions.php:816
3304
+ #: addons/sell-content/includes/mycred-sell-functions.php:822
3305
+ #: addons/sell-content/includes/mycred-sell-functions.php:826
3306
  #, php-format
3307
  msgctxt "%s = taxonomy name"
3308
  msgid "Comma separated list of %s slugs"
3309
  msgstr ""
3310
 
3311
+ #: addons/sell-content/includes/mycred-sell-functions.php:815
3312
  #, php-format
3313
  msgctxt "e.g. Only \"Posts\" not in \"Categories\""
3314
  msgid "Only %s not in %s"
3315
  msgstr ""
3316
 
3317
+ #: addons/sell-content/includes/mycred-sell-functions.php:821
3318
  #, php-format
3319
  msgctxt "e.g. Only \"Posts\" with \"Tags\""
3320
  msgid "Only %s with %s"
3321
  msgstr ""
3322
 
3323
+ #: addons/sell-content/includes/mycred-sell-functions.php:825
3324
  #, php-format
3325
  msgctxt "e.g. Only \"Posts\" without \"Tags\""
3326
  msgid "Only %s without %s"
3336
  "This content is currently unattainable. Apologies for the inconvenience."
3337
  msgstr ""
3338
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3339
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:250
3340
  #, php-format
3341
  msgctxt "e.g. 10 hours"
3352
  msgid "Received new request to purchase %s."
3353
  msgstr ""
3354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3355
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:633
3356
  msgid "Choose Country"
3357
  msgstr ""
3372
  msgid "Continue to %s"
3373
  msgstr ""
3374
 
3375
+ #: addons/buy-creds/modules/buycred-module-pending.php:140
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3376
  msgctxt "Post Type General Name"
3377
  msgid "Pending Payments"
3378
  msgstr ""
3379
 
3380
+ #: addons/buy-creds/modules/buycred-module-pending.php:141
3381
  msgctxt "Post Type Singular Name"
3382
  msgid "Pending Payment"
3383
  msgstr ""
3384
 
 
3385
  #: addons/buy-creds/modules/buycred-module-pending.php:142
3386
+ #: addons/buy-creds/modules/buycred-module-pending.php:144
3387
+ #: addons/buy-creds/modules/buycred-module-pending.php:234
3388
+ #: addons/buy-creds/modules/buycred-module-pending.php:235
3389
  msgid "Pending Payments"
3390
  msgstr ""
3391
 
3392
+ #: addons/buy-creds/modules/buycred-module-pending.php:148
3393
  msgid "Edit Pending Payment"
3394
  msgstr ""
3395
 
 
 
 
 
 
 
 
3396
  #: addons/buy-creds/modules/buycred-module-pending.php:182
3397
  #: addons/buy-creds/modules/buycred-module-pending.php:183
3398
  #: addons/buy-creds/modules/buycred-module-pending.php:184
3400
  #: addons/buy-creds/modules/buycred-module-pending.php:186
3401
  #: addons/buy-creds/modules/buycred-module-pending.php:187
3402
  #: addons/buy-creds/modules/buycred-module-pending.php:188
3403
+ #: addons/buy-creds/modules/buycred-module-pending.php:189
3404
+ #: addons/buy-creds/modules/buycred-module-pending.php:190
3405
  msgid "Payment Updated."
3406
  msgstr ""
3407
 
3408
+ #: addons/buy-creds/modules/buycred-module-pending.php:218
3409
  msgid "Pending payment successfully credited to account."
3410
  msgstr ""
3411
 
3412
+ #: addons/buy-creds/modules/buycred-module-pending.php:220
3413
  msgid "Failed to credit the pending payment to account."
3414
  msgstr ""
3415
 
3416
+ #: addons/buy-creds/modules/buycred-module-pending.php:295
 
 
 
 
 
 
 
3417
  #: addons/buy-creds/modules/buycred-module-core.php:767
3418
  msgid "Buyer"
3419
  msgstr ""
3420
 
3421
+ #: addons/buy-creds/modules/buycred-module-pending.php:396
3422
+ #: addons/buy-creds/modules/buycred-module-pending.php:505
 
 
 
 
3423
  msgid "Pay Out"
3424
  msgstr ""
3425
 
3426
+ #: addons/buy-creds/modules/buycred-module-pending.php:468
3427
  msgid "Pending Payment"
3428
  msgstr ""
3429
 
3430
+ #: addons/buy-creds/modules/buycred-module-pending.php:506
3431
  msgid "Trash"
3432
  msgstr ""
3433
 
3434
+ #: addons/buy-creds/modules/buycred-module-pending.php:570
3435
  msgid "Payer"
3436
  msgstr ""
3437
 
3438
+ #: addons/buy-creds/modules/buycred-module-pending.php:679
3439
  msgid "Pending request created."
3440
  msgstr ""
3441
 
3442
+ #: addons/buy-creds/modules/buycred-module-pending.php:727
3443
  #, php-format
3444
  msgid "Pending payment updated by %s"
3445
  msgstr ""
3446
 
3447
+ #: addons/buy-creds/modules/buycred-module-pending.php:825
3448
  msgid "No pending payments found"
3449
  msgstr ""
3450
 
3641
  msgid "High"
3642
  msgstr ""
3643
 
 
 
 
 
3644
  #: addons/buy-creds/gateways/bitpay.php:278
3645
  msgid "Low"
3646
  msgstr ""
3684
  msgid "Return to %s"
3685
  msgstr ""
3686
 
3687
+ #: mycred.php:635 modules/mycred-module-management.php:316
3688
+ #: modules/mycred-module-settings.php:425 modules/mycred-module-log.php:463
 
 
 
 
3689
  #: addons/transfer/myCRED-addon-transfer.php:159
3690
  #: addons/ranks/myCRED-addon-ranks.php:986
3691
+ #: addons/ranks/myCRED-addon-ranks.php:1572
3692
+ #: addons/badges/myCRED-addon-badges.php:727
3693
  #: addons/gateway/event-booking/mycred-eventsmanager.php:537
3694
  msgid "Processing..."
3695
  msgstr "در حال پردازش ..."
3696
 
3697
+ #: mycred.php:636
3698
  msgid "Sent"
3699
  msgstr "ارسال شده"
3700
 
3701
+ #: mycred.php:637
3702
  msgid "Error - Try Again"
3703
  msgstr "خطا - لطفا مجددا تلاش کنید"
3704
 
3705
+ #: mycred.php:812 mycred.php:813
3706
  #, php-format
3707
  msgid "About %s"
3708
+ msgstr "درباره‌ی %s"
3709
 
3710
+ #: mycred.php:821 mycred.php:822
3711
  msgid "Awesome People"
3712
  msgstr "\"اعتبار من\""
3713
 
3714
+ #: mycred.php:859 modules/mycred-module-management.php:558
3715
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:34
3716
+ msgid "Balance"
3717
+ msgstr "تراز"
3718
+
3719
+ #: mycred.php:926 modules/mycred-module-management.php:473
3720
  #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
3721
+ #: addons/buy-creds/modules/buycred-module-pending.php:471
3722
  msgid "History"
3723
  msgstr "لیست تغییرات"
3724
 
3725
+ #: mycred.php:997 mycred.php:1018
3726
  #: addons/notifications/myCRED-addon-notifications.php:194
3727
  #: addons/email-notices/myCRED-addon-email-notices.php:277
3728
  #: addons/banking/services/mycred-service-interest.php:477
3729
  #: addons/gateway/event-booking/mycred-eventsmanager.php:591
 
3730
  msgid "Setup"
3731
+ msgstr "راه اندازي"
3732
 
3733
+ #: mycred.php:999 modules/mycred-module-settings.php:21
3734
  #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
3735
  #: modules/mycred-module-network.php:270
3736
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
3737
  #: addons/buy-creds/modules/buycred-module-core.php:592
3738
  msgid "Settings"
3739
+ msgstr "گزینه ها"
3740
 
3741
  #: abstracts/mycred-abstract-hook.php:90
3742
  msgid "This Hook has no settings"
3743
  msgstr "این پنل تنظیمات ، چیزی برای تنظیم ندارد"
3744
 
3745
+ #: abstracts/mycred-abstract-hook.php:293
3746
+ #: abstracts/mycred-abstract-hook.php:364 includes/mycred-functions.php:2784
3747
  msgid "No limit"
3748
  msgstr "بدون محدودیت"
3749
 
3750
+ #: abstracts/mycred-abstract-hook.php:365
3751
  msgid "Once every 24 hours"
3752
  msgstr "یک بار در هر 24 ساعت"
3753
 
3754
+ #: abstracts/mycred-abstract-hook.php:366
3755
  msgid "Once every 7 days"
3756
  msgstr "یک بار در هر 7 روز"
3757
 
3758
+ #: abstracts/mycred-abstract-hook.php:367
3759
  msgid "Once per day (reset at midnight)"
3760
  msgstr "روزی یک بار ( نیمه شب ریست می شود )"
3761
 
3762
+ #: abstracts/mycred-abstract-hook.php:374
3763
  #: addons/email-notices/myCRED-addon-email-notices.php:531
3764
  #: addons/email-notices/myCRED-addon-email-notices.php:862
3765
+ #: addons/badges/myCRED-addon-badges.php:905
3766
  #: addons/banking/abstracts/mycred-abstract-service.php:351
3767
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
3768
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
3770
  #: addons/buy-creds/modules/buycred-module-core.php:401
3771
  #: addons/buy-creds/gateways/zombaio.php:406
3772
  msgid "Select"
3773
+ msgstr "انتخاب کنید"
3774
 
3775
  #: abstracts/mycred-abstract-module.php:400
3776
  #: abstracts/mycred-abstract-module.php:410
3777
  msgid "Surprise"
3778
  msgstr "غافلگیری"
3779
 
3780
+ #: abstracts/mycred-abstract-module.php:520
3781
  #: modules/mycred-module-network.php:218
3782
  msgid "click to close"
3783
  msgstr "برای بستن کلیک کنید ."
3784
 
3785
+ #: abstracts/mycred-abstract-module.php:521
3786
  #: modules/mycred-module-network.php:219
3787
  msgid "click to open"
3788
  msgstr "برای باز شدن کلیک کنید ."
3789
 
3790
+ #: abstracts/mycred-abstract-module.php:554
3791
  #: modules/mycred-module-network.php:261
3792
+ #: addons/email-notices/myCRED-addon-email-notices.php:1556
3793
  #: addons/gateway/event-booking/mycred-eventespresso3.php:451
3794
  #: addons/buy-creds/modules/buycred-module-core.php:597
3795
  msgid "Settings Updated"
3812
  msgstr "این مقدار نباید صفر باشد"
3813
 
3814
  #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
3815
+ #: modules/mycred-module-log.php:896
3816
  #: includes/classes/class.query-export.php:263
3817
  #: includes/classes/class.query-export.php:399
3818
  #: includes/classes/class.query-log.php:892
3821
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:202
3822
  #: addons/buy-creds/modules/buycred-module-core.php:768
3823
  msgid "Date"
3824
+ msgstr "تاريخ"
3825
+
3826
+ #: modules/mycred-module-management.php:236
3827
+ #: addons/banking/services/mycred-service-interest.php:435
3828
+ #: addons/banking/services/mycred-service-interest.php:460
3829
+ #: addons/banking/services/mycred-service-payouts.php:746
3830
+ msgid "Time"
3831
+ msgstr "زمان"
3832
 
3833
  #: modules/mycred-module-management.php:238 modules/mycred-module-log.php:96
3834
  #: includes/classes/class.query-export.php:263
3839
  msgstr "ورودی"
3840
 
3841
  #: modules/mycred-module-management.php:315
3842
+ #: modules/mycred-module-settings.php:430 modules/mycred-module-log.php:462
3843
  #: addons/banking/myCRED-addon-banking.php:204
3844
  msgid "Close"
3845
+ msgstr "بسته"
3846
 
3847
  #: modules/mycred-module-management.php:453
3848
  #: modules/mycred-module-management.php:571
3851
  msgid "Excluded"
3852
  msgstr "بن شده ( محروم شده )"
3853
 
3854
+ #: modules/mycred-module-management.php:463
3855
+ #: addons/coupons/myCRED-addon-coupons.php:309
3856
+ msgid "Total"
3857
+ msgstr "جمع"
3858
+
3859
  #: modules/mycred-module-management.php:474
3860
  msgid "Adjust"
3861
  msgstr "تطبیق"
3862
 
3863
+ #: modules/mycred-module-management.php:583
3864
+ #: modules/mycred-module-management.php:583
3865
+ #: includes/classes/class.query-log.php:1621
3866
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:68
3867
+ msgid "Edit"
3868
+ msgstr "ويرايش"
3869
+
3870
  #: modules/mycred-module-management.php:583
3871
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
3872
+ #: addons/buy-creds/modules/buycred-module-pending.php:745
3873
  msgid "Cancel"
3874
+ msgstr "بیخیال"
3875
 
3876
  #: modules/mycred-module-management.php:741
3877
  #: addons/banking/services/mycred-service-payouts.php:553
3878
  msgid "ID"
3879
+ msgstr "ID"
3880
+
3881
+ #: modules/mycred-module-management.php:747
3882
+ #: modules/mycred-module-export.php:432 modules/mycred-module-export.php:480
3883
+ #: addons/buy-creds/modules/buycred-module-core.php:1374
3884
+ msgid "Username"
3885
+ msgstr "نام كاربري:"
3886
 
3887
  #: modules/mycred-module-management.php:753
3888
  #: addons/gateway/event-booking/mycred-eventespresso3.php:307
3903
  #: addons/transfer/includes/mycred-transfer-widgets.php:105
3904
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
3905
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
3906
+ #: addons/buy-creds/modules/buycred-module-pending.php:296
3907
+ #: addons/buy-creds/modules/buycred-module-pending.php:642
3908
+ #: addons/buy-creds/modules/buycred-module-pending.php:760
3909
  msgid "Amount"
3910
+ msgstr "مبلغ"
3911
 
3912
  #: modules/mycred-module-management.php:770
3913
  msgid "A positive or negative value"
3914
  msgstr "مقدار مثبت یا منفی"
3915
 
3916
+ #: modules/mycred-module-management.php:796 modules/mycred-module-log.php:915
3917
  #: addons/gateway/event-booking/mycred-eventespresso3.php:518
3918
  msgid "Log Entry"
3919
  msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
3924
  #: addons/transfer/includes/mycred-transfer-widgets.php:118
3925
  #: addons/transfer/includes/mycred-transfer-widgets.php:126
3926
  msgid "optional"
3927
+ msgstr "انتخابی"
3928
 
3929
  #: modules/mycred-module-settings.php:138
3930
  msgid "Accounts successfully reset"
3944
  msgid "Done!"
3945
  msgstr "انجام شد !"
3946
 
 
 
 
 
3947
  #: modules/mycred-module-settings.php:530
3948
  #, php-format
3949
  msgid "%s Settings"
3956
  #: modules/mycred-module-settings.php:544 includes/mycred-setup.php:275
3957
  #: addons/gateway/event-booking/mycred-eventespresso3.php:460
3958
  #: addons/gateway/event-booking/mycred-eventsmanager.php:658
 
3959
  msgid "Labels"
3960
  msgstr "برچسب ها"
3961
 
3962
  #: modules/mycred-module-settings.php:562 includes/mycred-setup.php:293
3963
+ #: addons/email-notices/myCRED-addon-email-notices.php:1415
3964
  msgid "Format"
3965
  msgstr "طرح ( فرمت )"
3966
 
3992
  msgid "Management"
3993
  msgstr "مدیریت"
3994
 
3995
+ #: modules/mycred-module-settings.php:678 modules/mycred-module-log.php:427
3996
  msgid "Entries"
3997
  msgstr "داده های ورودی"
3998
 
3999
  #: modules/mycred-module-settings.php:684
4000
  #: modules/mycred-module-settings.php:709
4001
+ #: addons/ranks/myCRED-addon-ranks.php:1669
4002
+ #: addons/buy-creds/modules/buycred-module-pending.php:477
4003
+ #: addons/buy-creds/modules/buycred-module-pending.php:763
4004
  msgid "Actions"
4005
+ msgstr "اجرا ها"
4006
 
4007
  #: modules/mycred-module-settings.php:687
4008
  msgid "Empty Log"
4009
  msgstr "لیست گزارشات ( لوگ ) خالی"
4010
 
4011
  #: modules/mycred-module-settings.php:703
4012
+ #: addons/ranks/myCRED-addon-ranks.php:1080
4013
+ #: addons/badges/myCRED-addon-badges.php:425
4014
  msgid "Users"
4015
  msgstr "کاربران"
4016
 
4018
  msgid "Set all to zero"
4019
  msgstr "تغییر تمام داده ها به عدد صفر"
4020
 
4021
+ #: modules/mycred-module-settings.php:743
4022
+ #: modules/mycred-module-settings.php:769
4023
+ #: modules/mycred-module-settings.php:799
4024
  msgid "Meta Key"
4025
  msgstr "کلید اطلاعات"
4026
 
4027
+ #: modules/mycred-module-settings.php:749
4028
+ #: modules/mycred-module-settings.php:775
4029
+ #: modules/mycred-module-settings.php:805
4030
  #: addons/email-notices/myCRED-addon-email-notices.php:578
4031
  #: addons/gateway/carts/mycred-woocommerce.php:155
4032
  msgid "Label"
4033
  msgstr "برچسب ( اتیکت )"
4034
 
4035
+ #: modules/mycred-module-settings.php:756
4036
+ #: modules/mycred-module-settings.php:782
4037
  #: includes/classes/class.query-log.php:1019
4038
  #: includes/classes/class.query-log.php:1622
4039
  #: addons/banking/services/mycred-service-payouts.php:472
 
4040
  msgid "Delete"
4041
+ msgstr "حذف کردن"
4042
 
4043
+ #: modules/mycred-module-settings.php:823
4044
  #: addons/gateway/event-booking/mycred-eventespresso3.php:551
4045
  #: addons/buy-creds/modules/buycred-module-core.php:650
4046
  msgid "Update Settings"
4047
  msgstr "به روزرسانی تنظیمات"
4048
 
4049
+ #: modules/mycred-module-settings.php:836
4050
  msgid "Identify users by"
4051
  msgstr "تایید هویت کاربر به وسیله ی"
4052
 
4053
+ #: modules/mycred-module-settings.php:842
4054
  msgid "User ID"
4055
+ msgstr "شناسه کاربری"
4056
 
4057
+ #: modules/mycred-module-settings.php:843
4058
  msgid "User Email"
4059
  msgstr "ایمیل کاربر"
4060
 
4061
+ #: modules/mycred-module-settings.php:844
4062
  msgid "User Login"
4063
  msgstr "ورود کاربر"
4064
 
4065
+ #: modules/mycred-module-settings.php:857
4066
  msgid "Import Log Entry"
4067
  msgstr "وارد کردن لیست گزارشات ( لوگ ) داده های ورودی"
4068
 
4069
+ #: modules/mycred-module-settings.php:859
4070
  #, php-format
4071
  msgid ""
4072
  "Optional log entry to use if you intend to import this file in a different "
4075
  "لیست گزارشات ( لوگ ) اختیاری برای داده های ورودی ، اگر قصد دارید این فایل را "
4076
  "در مرحله ی نصب %s دیگری وارد فرمایید ."
4077
 
4078
+ #: modules/mycred-module-settings.php:866 modules/mycred-module-export.php:268
4079
+ #: modules/mycred-module-export.php:295 modules/mycred-module-export.php:345
4080
  msgid "Export"
4081
  msgstr "خروجی گرفتن"
4082
 
4141
 
4142
  #: modules/mycred-module-addons.php:406
4143
  msgid "Activate"
4144
+ msgstr "فعال سازی"
4145
 
4146
  #: modules/mycred-module-addons.php:412
4147
  msgid "Deactivate Add-on"
4156
  msgid "Log"
4157
  msgstr "لیست گزارش ( لوگ )"
4158
 
4159
+ #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:892
4160
  #: includes/classes/class.query-export.php:263
4161
  #: includes/classes/class.query-export.php:371
4162
  #: includes/classes/class.query-log.php:891
4164
  #: addons/email-notices/myCRED-addon-email-notices.php:336
4165
  #: addons/email-notices/myCRED-addon-email-notices.php:568
4166
  msgid "User"
4167
+ msgstr "نام کاربری"
4168
 
4169
+ #: modules/mycred-module-log.php:496
4170
  msgid "Search results for"
4171
  msgstr "نتایج جستجو برای عبارت"
4172
 
4175
  msgstr "الگوی اصلی"
4176
 
4177
  #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:280
4178
+ #: modules/mycred-module-network.php:296 modules/mycred-module-export.php:386
4179
  #: addons/sell-content/myCRED-addon-sell-content.php:481
4180
  msgid "Enabled"
4181
+ msgstr "وضعیت"
4182
 
4183
  #: modules/mycred-module-network.php:187 modules/mycred-module-network.php:188
4184
  msgid "Network Settings"
4195
  msgstr "توجه ! %s هنوز نصب نشده است ."
4196
 
4197
  #: modules/mycred-module-network.php:285 modules/mycred-module-network.php:301
4198
+ #: modules/mycred-module-export.php:385 plugins/mycred-hook-affiliatewp.php:362
4199
  #: addons/sell-content/myCRED-addon-sell-content.php:396
4200
  #: addons/sell-content/myCRED-addon-sell-content.php:480
4201
  #: addons/buy-creds/modules/buycred-module-core.php:1127
4202
  msgid "Disabled"
4203
+ msgstr "غیر فعال شده"
4204
 
4205
  #: modules/mycred-module-network.php:291
4206
  msgid "Central Logging"
4241
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:189
4242
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:319
4243
  msgid "Today"
4244
+ msgstr "امروز‍"
4245
 
4246
  #: modules/mycred-module-buddypress.php:238
4247
  #: includes/classes/class.query-log.php:1747
4248
  msgid "Yesterday"
4249
+ msgstr "ديروز"
4250
 
4251
  #: modules/mycred-module-buddypress.php:239
4252
  #: includes/classes/class.query-log.php:1748
4262
  msgid "This Month"
4263
  msgstr "این ماه"
4264
 
4265
+ #: modules/mycred-module-buddypress.php:352
4266
+ msgid "Go"
4267
+ msgstr "برو"
4268
+
4269
  #: modules/mycred-module-buddypress.php:404
4270
  #: modules/mycred-module-buddypress.php:411
4271
+ #: addons/badges/myCRED-addon-badges.php:1165
4272
+ #: addons/badges/myCRED-addon-badges.php:1199
4273
  #: addons/gateway/carts/mycred-woocommerce.php:147
4274
  msgid "Do not show"
4275
  msgstr "نمایش نده !"
4276
 
4277
  #: modules/mycred-module-buddypress.php:406
4278
+ #: addons/ranks/myCRED-addon-ranks.php:1482
4279
+ #: addons/badges/myCRED-addon-badges.php:1167
4280
  msgid "Include under the \"Profile\" tab"
4281
  msgstr "شامل ( نمایش در ) زیر تب \"پروفایل کاربر\" "
4282
 
4289
  msgstr "میزان %singular%"
4290
 
4291
  #: modules/mycred-module-buddypress.php:453
4292
+ #: addons/ranks/myCRED-addon-ranks.php:1497
4293
+ #: addons/ranks/myCRED-addon-ranks.php:1538
4294
  #: addons/notifications/myCRED-addon-notifications.php:198
4295
  msgid "Template"
4296
  msgstr "نمونه ( الگو )"
4377
  #: plugins/mycred-hook-buddypress-media.php:348
4378
  #: plugins/mycred-hook-wp-favorite-posts.php:228
4379
  #: plugins/mycred-hook-wp-favorite-posts.php:240
4380
+ #: plugins/mycred-hook-contact-form7.php:172
4381
  #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:485
4382
  #: plugins/mycred-hook-bbPress.php:536 plugins/mycred-hook-bbPress.php:560
4383
+ #: plugins/mycred-hook-woocommerce.php:514
4384
  #: includes/shortcodes/mycred_hook_table.php:79
4385
  msgid "Limit"
4386
  msgstr "محدوده"
4426
  #: plugins/mycred-hook-buddypress-media.php:372
4427
  #: plugins/mycred-hook-buddypress-media.php:390
4428
  #: plugins/mycred-hook-buddypress-media.php:408
4429
+ #: plugins/mycred-hook-contact-form7.php:178
4430
  #: plugins/mycred-hook-jetpack.php:549 plugins/mycred-hook-jetpack.php:567
4431
  #: plugins/mycred-hook-bbPress.php:449 plugins/mycred-hook-bbPress.php:467
4432
  #: plugins/mycred-hook-bbPress.php:491 plugins/mycred-hook-bbPress.php:518
4433
  #: plugins/mycred-hook-bbPress.php:542 plugins/mycred-hook-bbPress.php:566
4434
  #: plugins/mycred-hook-bbPress.php:593
4435
+ #: addons/badges/myCRED-addon-badges.php:974
4436
  msgid "Log template"
4437
  msgstr "نمونه ی لیست گزارش ( لوگ )"
4438
 
4439
+ #: plugins/mycred-hook-invite-anyone.php:222
4440
+ #: plugins/mycred-hook-invite-anyone.php:246
4441
+ #: plugins/mycred-hook-wp-polls.php:178
4442
+ #: plugins/mycred-hook-wp-postratings.php:208
4443
+ #: plugins/mycred-hook-wp-postratings.php:215
4444
+ #: plugins/mycred-hook-gravityforms.php:173
4445
+ #: plugins/mycred-hook-simplepress.php:308
4446
+ #: plugins/mycred-hook-simplepress.php:326
4447
+ #: plugins/mycred-hook-simplepress.php:350
4448
+ #: plugins/mycred-hook-simplepress.php:377
4449
+ #: plugins/mycred-hook-buddypress.php:630
4450
+ #: plugins/mycred-hook-buddypress.php:654
4451
+ #: plugins/mycred-hook-buddypress.php:678
4452
+ #: plugins/mycred-hook-buddypress.php:702
4453
+ #: plugins/mycred-hook-buddypress.php:726
4454
+ #: plugins/mycred-hook-buddypress.php:753
4455
+ #: plugins/mycred-hook-buddypress.php:777
4456
+ #: plugins/mycred-hook-buddypress.php:795
4457
+ #: plugins/mycred-hook-buddypress.php:819
4458
+ #: plugins/mycred-hook-buddypress.php:837
4459
+ #: plugins/mycred-hook-buddypress.php:861
4460
+ #: plugins/mycred-hook-buddypress.php:885
4461
+ #: plugins/mycred-hook-buddypress.php:1521
4462
+ #: plugins/mycred-hook-buddypress.php:1539
4463
+ #: plugins/mycred-hook-buddypress.php:1563
4464
+ #: plugins/mycred-hook-buddypress.php:1587
4465
+ #: plugins/mycred-hook-buddypress.php:1611
4466
+ #: plugins/mycred-hook-buddypress.php:1635
4467
+ #: plugins/mycred-hook-buddypress.php:1659
4468
+ #: plugins/mycred-hook-buddypress.php:1683
4469
+ #: plugins/mycred-hook-buddypress.php:1707
4470
+ #: plugins/mycred-hook-buddypress.php:1725
4471
+ #: plugins/mycred-hook-buddypress.php:1749
4472
+ #: plugins/mycred-hook-affiliatewp.php:299
4473
+ #: plugins/mycred-hook-affiliatewp.php:326
4474
+ #: plugins/mycred-hook-affiliatewp.php:370
4475
+ #: plugins/mycred-hook-affiliatewp.php:377
4476
+ #: plugins/mycred-hook-events-manager-light.php:218
4477
+ #: plugins/mycred-hook-events-manager-light.php:236
4478
+ #: plugins/mycred-hook-sharethis.php:274
4479
+ #: plugins/mycred-hook-buddypress-media.php:307
4480
+ #: plugins/mycred-hook-buddypress-media.php:331
4481
+ #: plugins/mycred-hook-buddypress-media.php:355
4482
+ #: plugins/mycred-hook-buddypress-media.php:373
4483
+ #: plugins/mycred-hook-buddypress-media.php:391
4484
+ #: plugins/mycred-hook-buddypress-media.php:409
4485
+ #: plugins/mycred-hook-wp-favorite-posts.php:249
4486
+ #: plugins/mycred-hook-wp-favorite-posts.php:256
4487
+ #: plugins/mycred-hook-wp-favorite-posts.php:274
4488
+ #: plugins/mycred-hook-wp-favorite-posts.php:289
4489
+ #: plugins/mycred-hook-contact-form7.php:179
4490
+ #: plugins/mycred-hook-jetpack.php:550 plugins/mycred-hook-jetpack.php:568
4491
+ #: plugins/mycred-hook-bbPress.php:450 plugins/mycred-hook-bbPress.php:468
4492
+ #: plugins/mycred-hook-bbPress.php:492 plugins/mycred-hook-bbPress.php:519
4493
+ #: plugins/mycred-hook-bbPress.php:543 plugins/mycred-hook-bbPress.php:567
4494
+ #: plugins/mycred-hook-bbPress.php:594 plugins/mycred-hook-woocommerce.php:521
4495
+ #: plugins/mycred-hook-badgeOS.php:328 plugins/mycred-hook-badgeOS.php:346
4496
+ #: addons/transfer/includes/mycred-transfer-widgets.php:102
4497
+ #: addons/transfer/includes/mycred-transfer-widgets.php:106
4498
+ #: addons/transfer/includes/mycred-transfer-widgets.php:110
4499
+ #: addons/transfer/includes/mycred-transfer-widgets.php:122
4500
+ msgid "required"
4501
+ msgstr "ضروری"
4502
+
4503
  #: plugins/mycred-hook-wp-polls.php:15
4504
  msgid "WP-Polls"
4505
  msgstr "نظرسنجی های وردپرس | WP-Polls"
4511
  #: plugins/mycred-hook-wp-polls.php:177
4512
  #: plugins/mycred-hook-wp-favorite-posts.php:273
4513
  #: plugins/mycred-hook-wp-favorite-posts.php:288
4514
+ #: plugins/mycred-hook-woocommerce.php:520 plugins/mycred-hook-badgeOS.php:144
4515
  #: plugins/mycred-hook-badgeOS.php:146 plugins/mycred-hook-badgeOS.php:157
4516
  #: plugins/mycred-hook-badgeOS.php:327 plugins/mycred-hook-badgeOS.php:345
4517
  #: addons/coupons/myCRED-addon-coupons.php:764
4525
  msgid "Log Template"
4526
  msgstr "نمونه لیست گزارش ( لوگ )"
4527
 
4528
+ #: plugins/mycred-hook-wp-postratings.php:177
4529
+ #: plugins/mycred-hook-wp-favorite-posts.php:234
4530
+ #: plugins/mycred-hook-wp-favorite-posts.php:282
4531
+ msgid "Content Author"
4532
+ msgstr "نویسنده ی مطلب"
4533
+
4534
  #: plugins/mycred-hook-gravityforms.php:130
4535
+ #: plugins/mycred-hook-contact-form7.php:134
4536
  msgid "No forms found."
4537
  msgstr "فرمی یافت نشد ."
4538
 
4563
 
4564
  #: plugins/mycred-hook-buddypress.php:310
4565
  #: addons/gateway/event-booking/mycred-eventsmanager.php:692
 
4566
  #: addons/gateway/carts/mycred-wpecommerce.php:415
4567
  msgid "Insufficient Funds"
4568
  msgstr "موجودی کافی نیست !"
4571
  #: includes/shortcodes/mycred_exchange.php:75
4572
  #: addons/gateway/event-booking/mycred-eventespresso3.php:498
4573
  #: addons/gateway/event-booking/mycred-eventsmanager.php:634
 
4574
  #: addons/gateway/carts/mycred-wpecommerce.php:389
4575
  #: addons/gateway/carts/mycred-woocommerce.php:136
4576
  msgid "Exchange Rate"
4803
  msgstr "میزان امتیازات (%s) من"
4804
 
4805
  #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
4806
+ #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1373
4807
  #: addons/gateway/carts/mycred-woocommerce.php:96
4808
  #: addons/transfer/includes/mycred-transfer-widgets.php:91
4809
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:203
4810
  #: addons/buy-creds/gateways/bank-transfer.php:190
4811
  #: addons/buy-creds/gateways/skrill.php:333
4812
  msgid "Title"
4813
+ msgstr "تیتر"
4814
 
4815
  #: includes/mycred-widgets.php:199
4816
  msgid "Include history"
4835
  #: includes/mycred-widgets.php:222 includes/mycred-widgets.php:590
4836
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:35
4837
  msgid "Message"
4838
+ msgstr "متن پیام"
4839
 
4840
  #: includes/mycred-widgets.php:282
4841
  #, php-format
4862
 
4863
  #: includes/mycred-widgets.php:396
4864
  msgid "Order"
4865
+ msgstr "مرتب سازی"
4866
 
4867
  #: includes/mycred-widgets.php:401 includes/classes/class.query-log.php:1081
4868
  msgid "Ascending"
4869
+ msgstr "افزایشی"
4870
 
4871
  #: includes/mycred-widgets.php:402 includes/classes/class.query-log.php:1081
4872
  msgid "Descending"
4873
+ msgstr "کاهشی"
4874
 
4875
  #: includes/mycred-functions.php:85
4876
  msgid "Point"
4880
  msgid "Points"
4881
  msgstr "امتیازها"
4882
 
4883
+ #: includes/mycred-functions.php:472
4884
  msgid "Deleted"
4885
  msgstr "پاک شده"
4886
 
4887
+ #: includes/mycred-functions.php:613
4888
  msgid "Deleted Item"
4889
  msgstr "موردهای پاک شده"
4890
 
4891
+ #: includes/mycred-functions.php:677
4892
  #: addons/email-notices/myCRED-addon-email-notices.php:864
4893
  #: addons/gateway/carts/mycred-wpecommerce.php:370
4894
  msgid "General"
4895
+ msgstr "اصلی"
4896
 
4897
+ #: includes/mycred-functions.php:684
4898
  msgid "User Related"
4899
  msgstr "مرتبط با کاربر"
4900
 
4901
+ #: includes/mycred-functions.php:691
4902
  msgid "Post Related"
4903
  msgstr "مرتبط با پست"
4904
 
4905
+ #: includes/mycred-functions.php:730
4906
+ msgid "and"
4907
+ msgstr "و"
4908
+
4909
  #: includes/importers/mycred-cubepoints.php:340
4910
  #: includes/importers/mycred-cubepoints.php:364
4911
  #: includes/importers/mycred-balances.php:323
4912
  #: includes/importers/mycred-log-entries.php:308
4913
  msgid "Import"
4914
+ msgstr "درون‌آوری"
4915
+
4916
+ #: includes/importers/mycred-balances.php:284
4917
+ #: includes/importers/mycred-log-entries.php:280
4918
+ msgid "Choose a file from your computer:"
4919
+ msgstr "فایل را از کامپیوتر خود انتخاب کنید"
4920
+
4921
+ #: includes/importers/mycred-balances.php:290
4922
+ #: includes/importers/mycred-log-entries.php:286
4923
+ #, php-format
4924
+ msgid "Maximum size: %s"
4925
+ msgstr "بیشترین حجم مجاز: %s"
4926
+
4927
+ #: includes/importers/mycred-balances.php:295
4928
+ #: includes/importers/mycred-log-entries.php:291
4929
+ msgid "OR enter path to file:"
4930
+ msgstr "یا مسیر فایل مورد نظر را وارد کنید"
4931
+
4932
+ #: includes/importers/mycred-balances.php:303
4933
+ #: includes/importers/mycred-log-entries.php:299
4934
+ msgid "Delimiter"
4935
+ msgstr "جداکننده"
4936
+
4937
+ #: includes/importers/mycred-balances.php:311
4938
+ msgid "Method"
4939
+ msgstr "روش"
4940
+
4941
+ #: includes/importers/mycred-log-entries.php:214
4942
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:100
4943
+ msgid "View Log"
4944
+ msgstr "دیدن گزارس"
4945
 
4946
  #: includes/shortcodes/mycred_video.php:44
4947
  msgid "A video ID is required for this shortcode"
4952
  msgid "User Missing"
4953
  msgstr "یافت نشدن کاربر"
4954
 
4955
+ #: includes/classes/class.query-export.php:487
4956
+ msgid "Search Results"
4957
+ msgstr "جستجوی نتایج"
4958
+
4959
  #: includes/classes/class.query-log.php:954
4960
  msgid "No log entries found"
4961
  msgstr "گزارشی یافت نشد !"
4985
  msgid "Approved Comment"
4986
  msgstr "نظرات تایید شده"
4987
 
4988
+ #: includes/classes/class.query-log.php:2229
4989
+ msgid "New Link"
4990
+ msgstr "افزودن پیوند"
4991
+
4992
  #: includes/classes/class.query-log.php:2280
4993
  #: addons/banking/myCRED-addon-banking.php:150
4994
  msgid "Compound Interest"
5017
  #: addons/banking/myCRED-addon-banking.php:273
5018
  #: addons/buy-creds/modules/buycred-module-core.php:618
5019
  msgid "Enable"
5020
+ msgstr "قادر ساختن"
5021
 
5022
  #: addons/banking/myCRED-addon-banking.php:292
5023
  msgid "Update Changes"
5095
  #: addons/transfer/myCRED-addon-transfer.php:355
5096
  #: addons/buy-creds/gateways/bitpay.php:299
5097
  msgid "Yes"
5098
+ msgstr "فعال"
5099
 
5100
  #: addons/transfer/myCRED-addon-transfer.php:356
5101
  #: addons/buy-creds/gateways/bitpay.php:298
5102
  msgid "No"
5103
+ msgstr "خير"
5104
 
5105
  #: addons/transfer/myCRED-addon-transfer.php:381
5106
  msgid "Reload"
5107
+ msgstr "بارگزاری مجدد"
5108
 
5109
  #: addons/transfer/myCRED-addon-transfer.php:405
5110
  msgid "Autofill Recipient"
5125
  #: addons/transfer/myCRED-addon-transfer.php:456
5126
  #: addons/sell-content/myCRED-addon-sell-content.php:685
5127
  #: addons/gateway/event-booking/mycred-eventsmanager.php:641
 
5128
  msgid "Log Templates"
5129
  msgstr "نمونه های لیست گزارش ( لوگ )"
5130
 
5136
  msgid "Log template for receiving"
5137
  msgstr "الگوی لیست گزارش برای دریافت"
5138
 
5139
+ #: addons/transfer/myCRED-addon-transfer.php:507
5140
+ msgid "Limit Template"
5141
+ msgstr "الگوی محدودیت"
5142
+
5143
+ #: addons/transfer/myCRED-addon-transfer.php:523
5144
+ msgid "Balance Template"
5145
+ msgstr "الگوی میزان امتیاز"
5146
+
5147
  #: addons/ranks/myCRED-addon-ranks.php:218
5148
  #: addons/ranks/myCRED-addon-ranks.php:227
5149
  #: addons/ranks/myCRED-addon-ranks.php:237
5150
  #: addons/ranks/myCRED-addon-ranks.php:339
5151
  #: addons/ranks/myCRED-addon-ranks.php:340
5152
  #: addons/ranks/myCRED-addon-ranks.php:724
5153
+ #: addons/ranks/myCRED-addon-ranks.php:1363
5154
+ #: addons/ranks/myCRED-addon-ranks.php:1658
5155
  msgid "Ranks"
5156
  msgstr "رنک و مدال ها"
5157
 
5190
  msgstr "جستجو در میان مدال ها"
5191
 
5192
  #: addons/ranks/myCRED-addon-ranks.php:234
5193
+ #: addons/ranks/myCRED-addon-ranks.php:1290
5194
  msgid "No ranks found"
5195
  msgstr "هیچ مدالی یافت نشد"
5196
 
5211
  msgid "Are you sure you want to re-assign user ranks?"
5212
  msgstr "مطمئنید که می خواهید دوباره عمل تخصیص مدال های کاربری را انجام دهید ؟"
5213
 
5214
+ #: addons/ranks/myCRED-addon-ranks.php:1077
5215
+ #: addons/ranks/myCRED-addon-ranks.php:1178
5216
  msgid "Rank Title"
5217
  msgstr "عنوان مدال"
5218
 
5219
+ #: addons/ranks/myCRED-addon-ranks.php:1078
5220
  msgid "Logo"
5221
+ msgstr "نشان‌واره"
5222
 
5223
+ #: addons/ranks/myCRED-addon-ranks.php:1079
5224
+ #: addons/badges/myCRED-addon-badges.php:853
5225
+ #: addons/badges/myCRED-addon-badges.php:854
5226
  msgid "Requirement"
5227
  msgstr "پیش نیاز"
5228
 
5229
+ #: addons/ranks/myCRED-addon-ranks.php:1105
5230
  msgid "No Logo Set"
5231
  msgstr "لوگویی ست نشده است"
5232
 
5233
+ #: addons/ranks/myCRED-addon-ranks.php:1120
5234
+ #: addons/ranks/myCRED-addon-ranks.php:1125
5235
  msgid "Any Value"
5236
  msgstr "هر مقداری"
5237
 
5238
+ #: addons/ranks/myCRED-addon-ranks.php:1122
5239
  #: addons/buy-creds/modules/buycred-module-core.php:345
5240
  msgid "Minimum %plural%"
5241
  msgstr "کمترین مفدار %plural%"
5242
 
5243
+ #: addons/ranks/myCRED-addon-ranks.php:1127
5244
  msgid "Maximum %plural%"
5245
  msgstr "بیشترین مقدار %plural%"
5246
 
5247
+ #: addons/ranks/myCRED-addon-ranks.php:1279
5248
+ #: addons/ranks/myCRED-addon-ranks.php:1280
5249
  msgid "Not Set"
5250
  msgstr "تنظیم نشده"
5251
 
5252
+ #: addons/ranks/myCRED-addon-ranks.php:1370
5253
  msgid "Rank Features"
5254
  msgstr "ویژگی های مدال"
5255
 
5256
+ #: addons/ranks/myCRED-addon-ranks.php:1376
5257
  msgid "%plural% requirement"
5258
  msgstr "پیش نیاز %plural%"
5259
 
5260
+ #: addons/ranks/myCRED-addon-ranks.php:1382
5261
  msgid "Content"
5262
+ msgstr "محتوی"
5263
 
5264
+ #: addons/ranks/myCRED-addon-ranks.php:1385
5265
  msgid "Excerpt"
5266
  msgstr "توضیح کوتاه ( نقل قول )"
5267
 
5268
+ #: addons/ranks/myCRED-addon-ranks.php:1388
5269
  msgid "Comments"
5270
  msgstr "دیدگاه ها"
5271
 
5272
+ #: addons/ranks/myCRED-addon-ranks.php:1391
5273
  msgid "Page Attributes"
5274
  msgstr "خصوصیت های صفحه"
5275
 
5276
+ #: addons/ranks/myCRED-addon-ranks.php:1394
5277
  msgid "Custom Fields"
5278
  msgstr "فیلدهای اضافی"
5279
 
5280
+ #: addons/ranks/myCRED-addon-ranks.php:1411
5281
  msgid "Display Order"
5282
  msgstr "ترتیب نمایش"
5283
 
5284
+ #: addons/ranks/myCRED-addon-ranks.php:1417
5285
  msgid "Ascending - Lowest rank to highest"
5286
  msgstr "صعودی - از پایین ترین مدال ها ، به بالاترین مدال ها"
5287
 
5288
+ #: addons/ranks/myCRED-addon-ranks.php:1418
5289
  msgid "Descending - Highest rank to lowest"
5290
  msgstr "نزولی - از بالاترین مدال ها ، به پایین ترین مدال ها"
5291
 
5292
+ #: addons/ranks/myCRED-addon-ranks.php:1460
5293
  msgid "Calculate Totals"
5294
  msgstr "محاسبه ی کل امتیازها"
5295
 
5296
+ #: addons/ranks/myCRED-addon-ranks.php:1480
5297
+ #: addons/ranks/myCRED-addon-ranks.php:1521
5298
  msgid "Do not show."
5299
  msgstr "عدم نمایش"
5300
 
5301
+ #: addons/ranks/myCRED-addon-ranks.php:1481
5302
  msgid "Include in Profile Header."
5303
  msgstr "شامل ( نمایش در ) هِدر ( سربرگ ) پروفایل کاربری"
5304
 
5305
+ #: addons/ranks/myCRED-addon-ranks.php:1483
5306
  msgid "Include under the \"Profile\" tab and Profile Header."
5307
  msgstr "نمایش در زیر تب \"Profile\" و همچنین سربرگ پروفایل کاربری ."
5308
 
5309
+ #: addons/ranks/myCRED-addon-ranks.php:1661
5310
  msgid "User Meta Key"
5311
  msgstr "کلید اطلاعات کاربر ( Meta key ("
5312
 
5313
+ #: addons/ranks/myCRED-addon-ranks.php:1665
5314
  msgid "No. of ranks"
5315
  msgstr "تعداد مدال ها"
5316
 
5317
+ #: addons/ranks/myCRED-addon-ranks.php:1670
5318
  msgid "Remove All Ranks"
5319
  msgstr "پاکسازی همه ی مدال ها"
5320
 
5321
+ #: addons/ranks/myCRED-addon-ranks.php:1670
5322
  msgid "Assign Ranks to Users"
5323
  msgstr "تخصیص دادن مدال به کاربران"
5324
 
5325
  #: addons/notifications/myCRED-addon-notifications.php:191
5326
  msgid "Notifications"
5327
+ msgstr "اطلاع رسانی"
5328
 
5329
  #: addons/notifications/myCRED-addon-notifications.php:200
5330
  msgid ""
5345
 
5346
  #: addons/notifications/myCRED-addon-notifications.php:214
5347
  msgid "Duration"
5348
+ msgstr "طول اسلاید"
5349
 
5350
  #: addons/notifications/myCRED-addon-notifications.php:224
5351
  msgid "Use the included CSS Styling for notifications."
5354
  #: addons/email-notices/myCRED-addon-email-notices.php:258
5355
  #: addons/email-notices/myCRED-addon-email-notices.php:275
5356
  msgid "Email Subject"
5357
+ msgstr "موضوع رایانامه"
5358
 
5359
  #: addons/email-notices/myCRED-addon-email-notices.php:276
5360
  #: addons/banking/services/mycred-service-payouts.php:565
5361
  #: addons/banking/services/mycred-service-payouts.php:880
5362
  msgid "Status"
5363
+ msgstr "حالت"
5364
 
5365
  #: addons/email-notices/myCRED-addon-email-notices.php:302
5366
  msgid "Not Active"
5374
  #: addons/email-notices/myCRED-addon-email-notices.php:310
5375
  #: addons/banking/services/mycred-service-payouts.php:31
5376
  msgid "Active"
5377
+ msgstr "فعالسازی"
5378
 
5379
  #: addons/email-notices/myCRED-addon-email-notices.php:312
5380
  #, php-format
5398
  #: addons/email-notices/myCRED-addon-email-notices.php:338
5399
  #: addons/email-notices/myCRED-addon-email-notices.php:571
5400
  msgid "Administrator"
5401
+ msgstr "مدیریت"
5402
 
5403
  #: addons/email-notices/myCRED-addon-email-notices.php:340
5404
  msgid "Both Administrator and User"
5444
 
5445
  #: addons/email-notices/myCRED-addon-email-notices.php:574
5446
  msgid "Both"
5447
+ msgstr "هردو"
5448
 
5449
  #: addons/email-notices/myCRED-addon-email-notices.php:610
5450
+ #: addons/email-notices/myCRED-addon-email-notices.php:1477
5451
  msgid "Senders Name:"
5452
  msgstr "نام ارسال کننده :"
5453
 
5454
  #: addons/email-notices/myCRED-addon-email-notices.php:614
5455
+ #: addons/email-notices/myCRED-addon-email-notices.php:1483
5456
  msgid "Senders Email:"
5457
  msgstr "آدرس ایمیل ارسال کننده :"
5458
 
5552
  msgid "user is promoted"
5553
  msgstr "کاربر ترفیع درجه پیدا کند ( رنک بدست بیاورد )"
5554
 
5555
+ #: addons/email-notices/myCRED-addon-email-notices.php:1410
5556
  #: addons/coupons/myCRED-addon-coupons.php:114
5557
  msgid "Email Notices"
5558
  msgstr "اطلاعیه های ایمیلی"
5559
 
5560
+ #: addons/email-notices/myCRED-addon-email-notices.php:1473
5561
+ msgid "Defaults"
5562
+ msgstr "پیش فرض ها"
5563
+
5564
+ #: addons/email-notices/myCRED-addon-email-notices.php:1489
5565
  msgid "Reply-To:"
5566
  msgstr "پاسخ های دریافتی به ایمیل زیر فرستاده شود :"
5567
 
5568
+ #: addons/email-notices/myCRED-addon-email-notices.php:1497
5569
  msgid "Default Email Content"
5570
  msgstr "محتوای پیش فرض ایمیل"
5571
 
5572
+ #: addons/email-notices/myCRED-addon-email-notices.php:1499
5573
  msgid "Default email content."
5574
  msgstr "در این بخش متن ایمیل پیش فرض رو وارد می کنید"
5575
 
5576
+ #: addons/email-notices/myCRED-addon-email-notices.php:1606
5577
+ msgid "Unsubscribe"
5578
+ msgstr "عدم اشتراک"
5579
+
5580
+ #: addons/email-notices/myCRED-addon-email-notices.php:1607
5581
  msgid "Email Notice"
5582
  msgstr "اطلاعیه ایمیلی"
5583
 
5584
+ #: addons/email-notices/myCRED-addon-email-notices.php:1635
5585
+ #: addons/buy-creds/modules/buycred-module-pending.php:517
5586
+ msgid "Save Changes"
5587
+ msgstr "ذخیره ی تنظیمات"
5588
+
5589
+ #: addons/badges/myCRED-addon-badges.php:424
5590
+ msgid "Requirements"
5591
+ msgstr "مورد نیاز"
5592
+
5593
+ #: addons/coupons/myCRED-addon-coupons.php:102
5594
+ #: addons/coupons/myCRED-addon-coupons.php:108
5595
+ #: addons/coupons/myCRED-addon-coupons.php:170
5596
+ #: addons/coupons/myCRED-addon-coupons.php:171
5597
+ #: addons/coupons/myCRED-addon-coupons.php:702
5598
+ msgid "Coupons"
5599
+ msgstr "کوپن ها"
5600
+
5601
+ #: addons/coupons/myCRED-addon-coupons.php:103
5602
+ msgid "Coupon"
5603
+ msgstr "کوپن"
5604
+
5605
+ #: addons/coupons/myCRED-addon-coupons.php:104
5606
+ #: addons/coupons/myCRED-addon-coupons.php:105
5607
+ msgid "Create New"
5608
+ msgstr "ایجاد بسته نصبی جدید"
5609
+
5610
+ #: addons/coupons/myCRED-addon-coupons.php:106
5611
+ msgid "Edit Coupon"
5612
+ msgstr "ویرایش کوپن"
5613
+
5614
+ #: addons/coupons/myCRED-addon-coupons.php:107
5615
+ msgid "New Coupon"
5616
+ msgstr "کوپن جدید"
5617
+
5618
+ #: addons/coupons/myCRED-addon-coupons.php:145
5619
+ #: addons/coupons/myCRED-addon-coupons.php:146
5620
+ #: addons/coupons/myCRED-addon-coupons.php:147
5621
+ #: addons/coupons/myCRED-addon-coupons.php:148
5622
+ #: addons/coupons/myCRED-addon-coupons.php:151
5623
+ #: addons/coupons/myCRED-addon-coupons.php:152
5624
+ #: addons/coupons/myCRED-addon-coupons.php:153
5625
+ #: addons/coupons/myCRED-addon-coupons.php:154
5626
+ msgid "Coupon updated."
5627
+ msgstr "کوپن به روز شد."
5628
+
5629
+ #: addons/coupons/myCRED-addon-coupons.php:250
5630
+ #: addons/coupons/myCRED-addon-coupons.php:513
5631
+ msgid "Value"
5632
+ msgstr "ارزش"
5633
+
5634
+ #: addons/coupons/myCRED-addon-coupons.php:326
5635
+ msgid "Expired"
5636
+ msgstr "منقضی شده"
5637
+
5638
  #: addons/coupons/myCRED-addon-coupons.php:603
5639
  #: addons/banking/services/mycred-service-interest.php:499
5640
  msgid "Minimum Balance"
5641
  msgstr "کمترین میزان"
5642
 
5643
+ #: addons/coupons/myCRED-addon-coupons.php:757
5644
+ msgid "Success Message"
5645
+ msgstr "پیغام موفقیت آمیز بودن"
5646
+
5647
  #: addons/sell-content/myCRED-addon-sell-content.php:508
5648
  #: addons/sell-content/myCRED-addon-sell-content.php:1000
5649
  msgid "Sell Content"
5651
 
5652
  #: addons/sell-content/myCRED-addon-sell-content.php:511
5653
  msgid "Post Types"
5654
+ msgstr "انواع نوشته ها"
5655
 
5656
  #: addons/sell-content/myCRED-addon-sell-content.php:673
5657
  #: addons/sell-content/myCRED-addon-sell-content.php:719
5658
  #: addons/gateway/event-booking/mycred-eventespresso3.php:473
5659
  #: addons/gateway/event-booking/mycred-eventsmanager.php:675
 
5660
  #: addons/transfer/includes/mycred-transfer-widgets.php:101
5661
  msgid "Button Label"
5662
  msgstr "برچسب کلید"
5665
  #: addons/gateway/event-booking/mycred-eventespresso3.php:495
5666
  #: addons/gateway/event-booking/mycred-eventsmanager.php:369
5667
  #: addons/gateway/event-booking/mycred-eventsmanager.php:373
 
 
5668
  msgid "Price"
5669
  msgstr "هزینه"
5670
 
5696
 
5697
  #: addons/banking/includes/mycred-banking-functions.php:94
5698
  msgid "Monthly"
5699
+ msgstr "ماهیانه"
5700
 
5701
  #: addons/banking/includes/mycred-banking-functions.php:99
5702
  msgid "Quarterly"
5712
 
5713
  #: addons/gateway/event-booking/mycred-eventespresso3.php:26
5714
  #: addons/gateway/event-booking/mycred-eventsmanager.php:594
 
5715
  #: addons/buy-creds/modules/buycred-module-core.php:710
5716
  msgid "Payments"
5717
  msgstr "پرداخت ها"
5718
 
5719
  #: addons/gateway/event-booking/mycred-eventespresso3.php:27
5720
  #: addons/gateway/event-booking/mycred-eventsmanager.php:36
5721
+ #: addons/buy-creds/modules/buycred-module-pending.php:744
 
5722
  msgid "Pay Now"
5723
  msgstr "همین حالا بپردازید"
5724
 
5754
 
5755
  #: addons/gateway/event-booking/mycred-eventespresso3.php:442
5756
  #: addons/gateway/event-booking/mycred-eventsmanager.php:580
 
5757
  #, php-format
5758
  msgid "How many %s is 1 %s worth?"
5759
  msgstr "چه مقدار %s معادل 1 %s خواهد بود ؟"
5797
 
5798
  #: addons/gateway/event-booking/mycred-eventespresso3.php:510
5799
  #: addons/gateway/event-booking/mycred-eventsmanager.php:625
 
5800
  #: addons/gateway/carts/mycred-wpecommerce.php:393
5801
  #: addons/gateway/carts/mycred-woocommerce.php:176
5802
  msgid "Profit Sharing"
5818
  #: addons/gateway/event-booking/mycred-eventespresso3.php:538
5819
  #: addons/gateway/carts/mycred-wpecommerce.php:411
5820
  msgid "Visitors"
5821
+ msgstr "بازديد كننده"
5822
 
5823
  #: addons/gateway/event-booking/mycred-eventsmanager.php:30
 
5824
  msgid "Payment for tickets to %link_with_title%"
5825
  msgstr "پرداخت برای بلیت های %link_with_title%"
5826
 
5827
  #: addons/gateway/event-booking/mycred-eventsmanager.php:31
 
5828
  msgid "Ticket refund for %link_with_title%"
5829
  msgstr "بلیت استرداد شده برای %link_with_title%"
5830
 
5831
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35
 
5832
  msgid "Pay using your %_plural% balance"
5833
  msgstr "پرداخت به وسیله ی میزان %_plural% شما"
5834
 
5835
  #: addons/gateway/event-booking/mycred-eventsmanager.php:37
 
5836
  msgid "Pay"
5837
  msgstr "پرداخت"
5838
 
5839
  #: addons/gateway/event-booking/mycred-eventsmanager.php:40
 
5840
  msgid "Thank you for your payment!"
5841
  msgstr "بابت پرداختتان صمیمانه سپاسگذاریم !"
5842
 
5843
  #: addons/gateway/event-booking/mycred-eventsmanager.php:41
 
5844
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
5845
  msgstr ""
5846
  "متاسفیم ، اما نمی توانید با استفاده از %_plural%های خود ، بهای این بلیت را "
5847
  "بپردازید ."
5848
 
5849
  #: addons/gateway/event-booking/mycred-eventsmanager.php:366
 
5850
  msgid "Ticket Type"
5851
  msgstr "نوع بلیت"
5852
 
5853
  #: addons/gateway/event-booking/mycred-eventsmanager.php:377
 
5854
  msgid "Spaces"
5855
  msgstr "فضاها"
5856
 
5868
  msgstr "پرداخت های %s"
5869
 
5870
  #: addons/gateway/event-booking/mycred-eventsmanager.php:596
 
5871
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
5872
  msgstr ""
5873
  "غیرفعال شد - کاربران نمی توانند بهای بلیت ها را با %plural% خود بدهند ."
5874
 
5875
  #: addons/gateway/event-booking/mycred-eventsmanager.php:597
 
5876
  msgid "Single - Users can ONLY pay for tickets using %plural%."
5877
  msgstr ""
5878
  "جداگانه - کاربران فقط می توانند با %plural% بهای بلیت ها را پرداخت کنند ."
5879
 
5880
  #: addons/gateway/event-booking/mycred-eventsmanager.php:598
 
5881
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
5882
  msgstr ""
5883
  "چندگانه - کاربران می توانند از انواع درگاه های پرداخت و یا %plural% خودشان ، "
5885
 
5886
  #: addons/gateway/event-booking/mycred-eventsmanager.php:618
5887
  #: addons/gateway/event-booking/mycred-eventsmanager.php:651
 
 
5888
  msgid "Refunds"
5889
  msgstr "استردادی ها"
5890
 
5898
  "کنید . هیچ وجهی به عنوان استرداد برای بلیت های باطل شده ، پرداخت نمی شود ."
5899
 
5900
  #: addons/gateway/event-booking/mycred-eventsmanager.php:644
 
5901
  msgid "Purchases"
5902
  msgstr "خریدها"
5903
 
5904
  #: addons/gateway/event-booking/mycred-eventsmanager.php:661
 
5905
  msgid "Payment Link Label"
5906
  msgstr "برچسب لینک پرداخت"
5907
 
5908
  #: addons/gateway/event-booking/mycred-eventsmanager.php:664
 
5909
  msgid ""
5910
  "The payment link shows / hides the payment form under \"My Bookings\". No "
5911
  "HTML allowed."
5914
  "دهد . استفاده از کدهای HTML مجاز نیست ."
5915
 
5916
  #: addons/gateway/event-booking/mycred-eventsmanager.php:668
 
5917
  msgid "Payment Header"
5918
  msgstr "سربرگ پرداخت"
5919
 
5920
  #: addons/gateway/event-booking/mycred-eventsmanager.php:671
 
5921
  msgid "Shown on top of the payment form. No HTML allowed."
5922
  msgstr "بالای فرم پرداخت نمایش داده می شود . استفاده از کدهای HTML مجاز نیست ."
5923
 
5924
  #: addons/gateway/event-booking/mycred-eventsmanager.php:678
 
5925
  msgid "The button label for payments. No HTML allowed!"
5926
  msgstr "برچسب کلید پرداخت . استفاده از کدهای HTML مجاز نیست !"
5927
 
5928
  #: addons/gateway/event-booking/mycred-eventsmanager.php:682
 
5929
  #: addons/gateway/carts/mycred-wpecommerce.php:404
5930
  msgid "Messages"
5931
  msgstr "پیام ها"
5932
 
5933
  #: addons/gateway/event-booking/mycred-eventsmanager.php:685
 
5934
  msgid "Successful Payments"
5935
  msgstr "پرداخت های موفقیت آمیز"
5936
 
 
 
 
 
 
 
 
 
 
 
 
 
5937
  #: addons/gateway/carts/mycred-wpecommerce.php:20
5938
  msgid "Payment for Order: #%order_id%"
5939
  msgstr "پرداخت برای سفارش : #%order_id%"
5975
 
5976
  #: addons/gateway/carts/mycred-wpecommerce.php:407
5977
  msgid "Instructions"
5978
+ msgstr "دستورالعمل‌ها"
5979
 
5980
  #: addons/gateway/carts/mycred-wpecommerce.php:408
5981
  msgid ""
6088
 
6089
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:157
6090
  msgid "username"
6091
+ msgstr "شناسه"
6092
 
6093
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:160
6094
  msgid "email"
6095
+ msgstr "آدرس ایمیل"
6096
 
6097
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:162
6098
  #, php-format
6112
  msgid "Hooks"
6113
  msgstr "پنل تنظیمات امتیازها"
6114
 
6115
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:204
6116
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
6117
+ #: addons/buy-creds/modules/buycred-module-pending.php:297
6118
+ #: addons/buy-creds/modules/buycred-module-pending.php:648
6119
+ #: addons/buy-creds/modules/buycred-module-pending.php:761
6120
+ #: addons/buy-creds/gateways/bank-transfer.php:141
6121
+ msgid "Cost"
6122
+ msgstr "هزینه"
6123
+
6124
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:248
6125
+ msgid "Never"
6126
+ msgstr "هرگز"
6127
+
6128
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:445
6129
+ #: addons/buy-creds/gateways/bank-transfer.php:125
6130
+ msgid "Test Payment"
6131
+ msgstr "پرداخت آزمایشی"
6132
+
6133
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:451
6134
  #: addons/buy-creds/gateways/bank-transfer.php:129
6135
  msgid "Payment"
6136
  msgstr "پرداخت"
6137
 
6138
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:576
6139
+ msgid "First Name"
6140
+ msgstr "نام"
6141
+
6142
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
6143
+ msgid "Last Name"
6144
+ msgstr "نام خانوادگی"
6145
+
6146
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:590
6147
+ msgid "Address Line 1"
6148
+ msgstr "آدرس خط 1"
6149
+
6150
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:598
6151
+ msgid "Address Line 2"
6152
+ msgstr "آدرس خط 2"
6153
+
6154
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:606
6155
+ msgid "City"
6156
+ msgstr "شهر"
6157
+
6158
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:612
6159
+ msgid "Zip"
6160
+ msgstr "کدپستی"
6161
+
6162
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
6163
+ msgid "State"
6164
+ msgstr "ایالت/استان"
6165
+
6166
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:628
6167
+ msgid "Country"
6168
+ msgstr "کشور"
6169
+
6170
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:787
6171
  #: addons/buy-creds/gateways/bitpay.php:225
6172
  msgid "Click here if you are not automatically redirected"
6173
  msgstr ""
6174
  "اگر به صورت خودکار به آدرس مورد نظر منتقل نشدید ، اینجا را کلیک فرمایید ."
6175
 
6176
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1501
6177
+ msgid "January"
6178
+ msgstr "ژانویه"
6179
+
6180
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1502
6181
+ msgid "February"
6182
+ msgstr "فوریه"
6183
+
6184
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1503
6185
+ msgid "March"
6186
+ msgstr "ماه مارس"
6187
+
6188
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1504
6189
+ msgid "April"
6190
+ msgstr "آوریل"
6191
+
6192
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1505
6193
+ msgid "May"
6194
+ msgstr "مه"
6195
+
6196
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1506
6197
+ msgid "June"
6198
+ msgstr "ژوئن"
6199
+
6200
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1507
6201
+ msgid "July"
6202
+ msgstr "ژولای"
6203
+
6204
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1508
6205
+ msgid "August"
6206
+ msgstr "اوت"
6207
+
6208
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1509
6209
+ msgid "September"
6210
+ msgstr "سپتامبر"
6211
+
6212
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1510
6213
+ msgid "October"
6214
+ msgstr "اکتبر"
6215
+
6216
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1511
6217
+ msgid "November"
6218
+ msgstr "نوامبر"
6219
+
6220
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1512
6221
+ msgid "December"
6222
+ msgstr "دسامبر"
6223
+
6224
+ #: addons/buy-creds/modules/buycred-module-pending.php:151
6225
+ #: addons/buy-creds/modules/buycred-module-pending.php:152
6226
+ msgid "Not found in Trash"
6227
+ msgstr "چیزی در سطل زباله پیدا نشد"
6228
+
6229
+ #: addons/buy-creds/modules/buycred-module-pending.php:293
6230
+ #: addons/buy-creds/modules/buycred-module-pending.php:758
6231
+ #: addons/buy-creds/modules/buycred-module-core.php:771
6232
+ #: addons/buy-creds/gateways/bank-transfer.php:142
6233
+ msgid "Transaction ID"
6234
+ msgstr "شماره‌ی تراکنش"
6235
+
6236
+ #: addons/buy-creds/modules/buycred-module-pending.php:298
6237
+ #: addons/buy-creds/modules/buycred-module-pending.php:623
6238
+ #: addons/buy-creds/modules/buycred-module-pending.php:759
6239
  #: addons/buy-creds/modules/buycred-module-core.php:766
6240
  #: addons/buy-creds/includes/buycred-functions.php:119
6241
  msgid "Gateway"
6242
  msgstr "درگاه"
6243
 
6244
+ #: addons/buy-creds/modules/buycred-module-pending.php:299
6245
+ msgid "Type"
6246
+ msgstr "نوع"
6247
+
6248
+ #: addons/buy-creds/modules/buycred-module-pending.php:500
6249
  msgid "Save"
6250
+ msgstr "ذخیره کردن"
6251
 
6252
+ #: addons/buy-creds/modules/buycred-module-pending.php:654
6253
  #: addons/buy-creds/gateways/bank-transfer.php:209
6254
  #: addons/buy-creds/gateways/bitpay.php:251
6255
  #: addons/buy-creds/gateways/paypal-standard.php:279
6256
  #: addons/buy-creds/gateways/skrill.php:294
6257
  msgid "Currency"
6258
+ msgstr "واحد پول"
6259
 
6260
  #: addons/buy-creds/modules/buycred-module-core.php:28
6261
  #: addons/buy-creds/modules/buycred-module-core.php:29
6262
  #: addons/buy-creds/modules/buycred-module-core.php:30
6263
  msgid "Payment Gateways"
6264
+ msgstr "دروازه‌های پرداخت"
6265
 
6266
  #: addons/buy-creds/modules/buycred-module-core.php:301
6267
  msgid "Please login to purchase %_plural%"
6336
  msgid "Description of the item being purchased by the user."
6337
  msgstr "شرح محصولی که توسط کاربر خریداری می شود ."
6338
 
6339
+ #: addons/buy-creds/gateways/bitpay.php:277
6340
+ msgid "Medium"
6341
+ msgstr "متوسط"
6342
+
6343
  #: addons/buy-creds/gateways/netbilling.php:208
6344
  msgid "Account ID"
6345
  msgstr "شناسه اکانت"
6413
  #: addons/buy-creds/gateways/paypal-standard.php:192
6414
  #: addons/buy-creds/gateways/skrill.php:171
6415
  msgid "Success"
6416
+ msgstr "موفقیت"
6417
 
6418
  #: addons/buy-creds/gateways/paypal-standard.php:193
6419
  #: addons/buy-creds/gateways/skrill.php:172
lang/mycred-fr_FR.mo CHANGED
Binary file
lang/mycred-fr_FR.po CHANGED
@@ -1,43 +1,35 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: myCRED\n"
4
- "Report-Msgid-Bugs-To: http://mycred.me\n"
5
- "POT-Creation-Date: 2017-04-19 14:59+0000\n"
6
- "PO-Revision-Date: 2017-04-19 14:59+0000\n"
7
- "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
- "Language-Team: French (France)\n"
9
- "Language: fr-FR\n"
10
- "Plural-Forms: nplurals=2; plural=n > 1\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-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"
21
- "X-Loco-Target-Locale: fr_FR\n"
22
- "X-Generator: Loco - https://localise.biz/"
23
-
24
- #: mycred.php:578
25
  msgid "Import balances via a CSV file."
26
  msgstr ""
27
 
28
- #: abstracts/mycred-abstract-hook.php:291
29
  msgid "/ Day"
30
  msgstr ""
31
 
32
- #: abstracts/mycred-abstract-hook.php:292
33
  msgid "/ Week"
34
  msgstr ""
35
 
36
- #: abstracts/mycred-abstract-hook.php:293
37
  msgid "/ Month"
38
  msgstr ""
39
 
40
- #: abstracts/mycred-abstract-hook.php:294
41
  msgid "in Total"
42
  msgstr ""
43
 
@@ -55,7 +47,7 @@ msgstr ""
55
 
56
  #: modules/mycred-module-management.php:237
57
  #: modules/mycred-module-management.php:775 modules/mycred-module-log.php:93
58
- #: modules/mycred-module-log.php:918
59
  #: includes/classes/class.query-export.php:263
60
  #: includes/classes/class.query-export.php:360
61
  #: includes/classes/class.query-log.php:904
@@ -71,12 +63,6 @@ msgstr ""
71
  msgid "Balances"
72
  msgstr ""
73
 
74
- #: modules/mycred-module-management.php:747
75
- #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
76
- #: addons/buy-creds/modules/buycred-module-core.php:1374
77
- msgid "Username"
78
- msgstr ""
79
-
80
  #: modules/mycred-module-management.php:759
81
  msgid "Total Balance"
82
  msgstr ""
@@ -105,6 +91,10 @@ msgstr ""
105
  msgid "Log Updated"
106
  msgstr ""
107
 
 
 
 
 
108
  #: modules/mycred-module-settings.php:432
109
  msgid ""
110
  "In order to adjust the number of decimal places you want to use we must "
@@ -127,7 +117,7 @@ msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
127
  msgstr ""
128
 
129
  #: modules/mycred-module-settings.php:530 modules/mycred-module-addons.php:330
130
- #: modules/mycred-module-addons.php:368 modules/mycred-module-log.php:554
131
  #: modules/mycred-module-network.php:241 modules/mycred-module-network.php:276
132
  #: modules/mycred-module-network.php:292
133
  #: includes/importers/mycred-cubepoints.php:305
@@ -144,8 +134,8 @@ msgstr ""
144
  #: modules/mycred-module-settings.php:555
145
  #: modules/mycred-module-settings.php:605
146
  #: modules/mycred-module-settings.php:612
147
- #: modules/mycred-module-settings.php:799
148
- #: modules/mycred-module-settings.php:805 includes/mycred-setup.php:280
149
  #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
150
  #: includes/mycred-setup.php:340 addons/coupons/myCRED-addon-coupons.php:710
151
  #: addons/coupons/myCRED-addon-coupons.php:717
@@ -240,7 +230,11 @@ msgstr ""
240
  msgid "Balance Meta Key"
241
  msgstr ""
242
 
243
- #: modules/mycred-module-settings.php:810
 
 
 
 
244
  msgid ""
245
  "The meta key must be lowercase and only contain letters or underscores. All "
246
  "other characters will be deleted!"
@@ -275,35 +269,35 @@ msgid_plural "%d Entries Deleted"
275
  msgstr[0] ""
276
  msgstr[1] ""
277
 
278
- #: modules/mycred-module-log.php:472
279
  msgid "The log entry was successfully updated."
280
  msgstr ""
281
 
282
- #: modules/mycred-module-log.php:473
283
  msgid "The selected log entry could not be deleted."
284
  msgstr ""
285
 
286
- #: modules/mycred-module-log.php:507
287
  #, php-format
288
  msgctxt "e.g. Log entries from April 12th 2016"
289
  msgid "Log entries from %s"
290
  msgstr ""
291
 
292
- #: modules/mycred-module-log.php:564
293
  msgid ""
294
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
295
  "Certain hooks and shortcodes will not work correctly!"
296
  msgstr ""
297
 
298
- #: modules/mycred-module-log.php:925
299
  msgid "Original Entry"
300
  msgstr ""
301
 
302
- #: modules/mycred-module-log.php:937
303
  msgid "Delete Entry"
304
  msgstr ""
305
 
306
- #: modules/mycred-module-log.php:942
307
  msgid "Update Entry"
308
  msgstr ""
309
 
@@ -327,38 +321,38 @@ msgstr ""
327
  msgid "Blog IDs"
328
  msgstr ""
329
 
330
- #: modules/mycred-module-export.php:358
331
  msgid "Make both format options available."
332
  msgstr ""
333
 
334
- #: modules/mycred-module-export.php:360
335
  msgid "Exports"
336
  msgstr ""
337
 
338
- #: modules/mycred-module-export.php:366
339
  msgid "Front End Exports"
340
  msgstr ""
341
 
342
- #: modules/mycred-module-export.php:382 modules/mycred-module-export.php:430
343
  msgid "Export Format"
344
  msgstr ""
345
 
346
- #: modules/mycred-module-export.php:398 modules/mycred-module-export.php:446
347
  msgid "File Name"
348
  msgstr ""
349
 
350
- #: modules/mycred-module-export.php:407
351
  msgid ""
352
  "If enabled, users will only be able to export their own log entries! Export "
353
  "tools becomes available wherever you are using the mycred_history shortcode "
354
  "or in the users profile."
355
  msgstr ""
356
 
357
- #: modules/mycred-module-export.php:414
358
  msgid "Back End Exports"
359
  msgstr ""
360
 
361
- #: modules/mycred-module-export.php:455
362
  msgid ""
363
  "Raw format should be used when you intend to use the export tool to backup "
364
  "or import entries in another installation. Formatted exports reflect what "
@@ -381,70 +375,6 @@ msgstr ""
381
  msgid "Sending Invites"
382
  msgstr ""
383
 
384
- #: plugins/mycred-hook-invite-anyone.php:222
385
- #: plugins/mycred-hook-invite-anyone.php:246
386
- #: plugins/mycred-hook-wp-polls.php:178
387
- #: plugins/mycred-hook-wp-postratings.php:208
388
- #: plugins/mycred-hook-wp-postratings.php:215
389
- #: plugins/mycred-hook-gravityforms.php:173
390
- #: plugins/mycred-hook-simplepress.php:308
391
- #: plugins/mycred-hook-simplepress.php:326
392
- #: plugins/mycred-hook-simplepress.php:350
393
- #: plugins/mycred-hook-simplepress.php:377
394
- #: plugins/mycred-hook-buddypress.php:630
395
- #: plugins/mycred-hook-buddypress.php:654
396
- #: plugins/mycred-hook-buddypress.php:678
397
- #: plugins/mycred-hook-buddypress.php:702
398
- #: plugins/mycred-hook-buddypress.php:726
399
- #: plugins/mycred-hook-buddypress.php:753
400
- #: plugins/mycred-hook-buddypress.php:777
401
- #: plugins/mycred-hook-buddypress.php:795
402
- #: plugins/mycred-hook-buddypress.php:819
403
- #: plugins/mycred-hook-buddypress.php:837
404
- #: plugins/mycred-hook-buddypress.php:861
405
- #: plugins/mycred-hook-buddypress.php:885
406
- #: plugins/mycred-hook-buddypress.php:1521
407
- #: plugins/mycred-hook-buddypress.php:1539
408
- #: plugins/mycred-hook-buddypress.php:1563
409
- #: plugins/mycred-hook-buddypress.php:1587
410
- #: plugins/mycred-hook-buddypress.php:1611
411
- #: plugins/mycred-hook-buddypress.php:1635
412
- #: plugins/mycred-hook-buddypress.php:1659
413
- #: plugins/mycred-hook-buddypress.php:1683
414
- #: plugins/mycred-hook-buddypress.php:1707
415
- #: plugins/mycred-hook-buddypress.php:1725
416
- #: plugins/mycred-hook-buddypress.php:1749
417
- #: plugins/mycred-hook-affiliatewp.php:299
418
- #: plugins/mycred-hook-affiliatewp.php:326
419
- #: plugins/mycred-hook-affiliatewp.php:370
420
- #: plugins/mycred-hook-affiliatewp.php:377
421
- #: plugins/mycred-hook-events-manager-light.php:218
422
- #: plugins/mycred-hook-events-manager-light.php:236
423
- #: plugins/mycred-hook-sharethis.php:274
424
- #: plugins/mycred-hook-buddypress-media.php:307
425
- #: plugins/mycred-hook-buddypress-media.php:331
426
- #: plugins/mycred-hook-buddypress-media.php:355
427
- #: plugins/mycred-hook-buddypress-media.php:373
428
- #: plugins/mycred-hook-buddypress-media.php:391
429
- #: plugins/mycred-hook-buddypress-media.php:409
430
- #: plugins/mycred-hook-wp-favorite-posts.php:249
431
- #: plugins/mycred-hook-wp-favorite-posts.php:256
432
- #: plugins/mycred-hook-wp-favorite-posts.php:274
433
- #: plugins/mycred-hook-wp-favorite-posts.php:289
434
- #: plugins/mycred-hook-contact-form7.php:176
435
- #: plugins/mycred-hook-jetpack.php:550 plugins/mycred-hook-jetpack.php:568
436
- #: plugins/mycred-hook-bbPress.php:450 plugins/mycred-hook-bbPress.php:468
437
- #: plugins/mycred-hook-bbPress.php:492 plugins/mycred-hook-bbPress.php:519
438
- #: plugins/mycred-hook-bbPress.php:543 plugins/mycred-hook-bbPress.php:567
439
- #: plugins/mycred-hook-bbPress.php:594 plugins/mycred-hook-woocommerce.php:517
440
- #: plugins/mycred-hook-badgeOS.php:328 plugins/mycred-hook-badgeOS.php:346
441
- #: addons/transfer/includes/mycred-transfer-widgets.php:102
442
- #: addons/transfer/includes/mycred-transfer-widgets.php:106
443
- #: addons/transfer/includes/mycred-transfer-widgets.php:110
444
- #: addons/transfer/includes/mycred-transfer-widgets.php:122
445
- msgid "required"
446
- msgstr ""
447
-
448
  #: plugins/mycred-hook-invite-anyone.php:229
449
  msgid "Accepted Invites"
450
  msgstr ""
@@ -467,18 +397,6 @@ msgstr ""
467
  msgid "Content Rating"
468
  msgstr ""
469
 
470
- #: plugins/mycred-hook-wp-postratings.php:165
471
- #: plugins/mycred-hook-wp-favorite-posts.php:222
472
- #: plugins/mycred-hook-wp-favorite-posts.php:267
473
- msgid "Member"
474
- msgstr ""
475
-
476
- #: plugins/mycred-hook-wp-postratings.php:177
477
- #: plugins/mycred-hook-wp-favorite-posts.php:234
478
- #: plugins/mycred-hook-wp-favorite-posts.php:282
479
- msgid "Content Author"
480
- msgstr ""
481
-
482
  #: plugins/mycred-hook-wp-postratings.php:192
483
  #: plugins/mycred-hook-wp-postratings.php:199
484
  msgid "Use the Rating Value instead of the amount set here."
@@ -495,7 +413,7 @@ msgid "Content Author Log Template"
495
  msgstr ""
496
 
497
  #: plugins/mycred-hook-gravityforms.php:156
498
- #: plugins/mycred-hook-contact-form7.php:159
499
  #, php-format
500
  msgid "Form: %s"
501
  msgstr ""
@@ -790,7 +708,7 @@ msgid "Hide"
790
  msgstr ""
791
 
792
  #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
793
- #: addons/email-notices/myCRED-addon-email-notices.php:1435
794
  msgid "Advanced"
795
  msgstr ""
796
 
@@ -891,48 +809,48 @@ msgstr ""
891
  msgid "Shows multiple balances."
892
  msgstr ""
893
 
894
- #: includes/mycred-functions.php:2777
895
  msgid "in total"
896
  msgstr ""
897
 
898
- #: includes/mycred-functions.php:2779
899
  msgid "per day"
900
  msgstr ""
901
 
902
- #: includes/mycred-functions.php:2782
903
  msgid "per week"
904
  msgstr ""
905
 
906
- #: includes/mycred-functions.php:2785
907
  msgid "per month"
908
  msgstr ""
909
 
910
- #: includes/mycred-functions.php:2787 includes/mycred-functions.php:2793
911
  #, php-format
912
  msgid "Maximum once"
913
  msgid_plural "Maximum %d times"
914
  msgstr[0] ""
915
  msgstr[1] ""
916
 
917
- #: includes/mycred-functions.php:2815
918
  #, php-format
919
  msgctxt "e.g. 5 th"
920
  msgid "%d th"
921
  msgstr ""
922
 
923
- #: includes/mycred-functions.php:2819
924
  #, php-format
925
  msgctxt "e.g. 1 st"
926
  msgid "%d st"
927
  msgstr ""
928
 
929
- #: includes/mycred-functions.php:2820
930
  #, php-format
931
  msgctxt "e.g. 2 nd"
932
  msgid "%d nd"
933
  msgstr ""
934
 
935
- #: includes/mycred-functions.php:2821
936
  #, php-format
937
  msgctxt "e.g. 3 rd"
938
  msgid "%d rd"
@@ -1098,6 +1016,14 @@ msgstr ""
1098
  msgid "New Group Cover"
1099
  msgstr ""
1100
 
 
 
 
 
 
 
 
 
1101
  #: includes/classes/class.query-log.php:2260
1102
  msgid "Affiliate Referral (AffiliateWP)"
1103
  msgstr ""
@@ -1257,20 +1183,12 @@ msgid ""
1257
  "someone who is not logged in."
1258
  msgstr ""
1259
 
1260
- #: addons/transfer/myCRED-addon-transfer.php:507
1261
- msgid "Limit Template"
1262
- msgstr ""
1263
-
1264
  #: addons/transfer/myCRED-addon-transfer.php:508
1265
  msgid ""
1266
  "The template to use if you select to show the transfer limit in the transfer "
1267
  "shortcode or widget. Ignored if there is no limit enforced."
1268
  msgstr ""
1269
 
1270
- #: addons/transfer/myCRED-addon-transfer.php:523
1271
- msgid "Balance Template"
1272
- msgstr ""
1273
-
1274
  #: addons/transfer/myCRED-addon-transfer.php:524
1275
  msgid ""
1276
  "The template to use if you select to show the users balance in the transfer "
@@ -1283,7 +1201,7 @@ msgid "Ranks for %s"
1283
  msgstr ""
1284
 
1285
  #: addons/ranks/myCRED-addon-ranks.php:230
1286
- #: addons/ranks/myCRED-addon-ranks.php:1375
1287
  msgid "Rank Logo"
1288
  msgstr ""
1289
 
@@ -1311,99 +1229,99 @@ msgstr ""
1311
  msgid "No ranks exists."
1312
  msgstr ""
1313
 
1314
- #: addons/ranks/myCRED-addon-ranks.php:1189
1315
  msgid "Rank Setup"
1316
  msgstr ""
1317
 
1318
- #: addons/ranks/myCRED-addon-ranks.php:1230
1319
  msgid "Minimum Balance Requirement"
1320
  msgstr ""
1321
 
1322
- #: addons/ranks/myCRED-addon-ranks.php:1236
1323
  msgid "Maximum Balance Requirement"
1324
  msgstr ""
1325
 
1326
- #: addons/ranks/myCRED-addon-ranks.php:1395
1327
  msgid "Rank Post Type"
1328
  msgstr ""
1329
 
1330
- #: addons/ranks/myCRED-addon-ranks.php:1398
1331
  msgid "Make Ranks Public"
1332
  msgstr ""
1333
 
1334
- #: addons/ranks/myCRED-addon-ranks.php:1402
1335
  msgid "Rank SLUG"
1336
  msgstr ""
1337
 
1338
- #: addons/ranks/myCRED-addon-ranks.php:1404
1339
  msgid ""
1340
  "If you have selected to make Ranks public, you can select what rank archive "
1341
  "URL slug you want to use. Ignored if Ranks are not set to be public."
1342
  msgstr ""
1343
 
1344
- #: addons/ranks/myCRED-addon-ranks.php:1425
1345
  msgid "Option to set in which order Ranks should be shown on the archive page."
1346
  msgstr ""
1347
 
1348
- #: addons/ranks/myCRED-addon-ranks.php:1432
1349
  msgid "Rank Behaviour"
1350
  msgstr ""
1351
 
1352
- #: addons/ranks/myCRED-addon-ranks.php:1437
1353
  msgid "Based on Current Balances"
1354
  msgstr ""
1355
 
1356
- #: addons/ranks/myCRED-addon-ranks.php:1439
1357
  msgid ""
1358
  "Users can be promoted or demoted depending on where their balance fits in "
1359
  "amongst your ranks."
1360
  msgstr ""
1361
 
1362
- #: addons/ranks/myCRED-addon-ranks.php:1445
1363
  msgid "Based on Total Balances"
1364
  msgstr ""
1365
 
1366
- #: addons/ranks/myCRED-addon-ranks.php:1447
1367
  msgid ""
1368
  "Users can only be promoted and gain higher ranks even if their balance "
1369
  "decreases."
1370
  msgstr ""
1371
 
1372
- #: addons/ranks/myCRED-addon-ranks.php:1454
1373
  msgid "Tools"
1374
  msgstr ""
1375
 
1376
- #: addons/ranks/myCRED-addon-ranks.php:1455
1377
  msgid ""
1378
  "Use this button to calculate or recalculate each individual users total "
1379
  "balance if you think your users total balances are incorrect, or if you "
1380
  "switch from Ranks being based on users current balance to total balance."
1381
  msgstr ""
1382
 
1383
- #: addons/ranks/myCRED-addon-ranks.php:1460
1384
- #: addons/badges/myCRED-addon-badges.php:1130
1385
  msgid "Third-party Integrations"
1386
  msgstr ""
1387
 
1388
- #: addons/ranks/myCRED-addon-ranks.php:1495
1389
- #: addons/ranks/myCRED-addon-ranks.php:1536
1390
  msgid ""
1391
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
1392
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
1393
  msgstr ""
1394
 
1395
- #: addons/ranks/myCRED-addon-ranks.php:1499
1396
- #: addons/ranks/myCRED-addon-ranks.php:1540
1397
- #: addons/badges/myCRED-addon-badges.php:1162
1398
- #: addons/badges/myCRED-addon-badges.php:1196
1399
  msgid "Not installed"
1400
  msgstr ""
1401
 
1402
- #: addons/ranks/myCRED-addon-ranks.php:1518
1403
  msgid "Include in Topic Replies"
1404
  msgstr ""
1405
 
1406
- #: addons/ranks/myCRED-addon-ranks.php:1520
1407
  msgid "Include in Topic Replies and Profile"
1408
  msgstr ""
1409
 
@@ -1495,32 +1413,28 @@ msgstr ""
1495
  msgid "user gains a badge"
1496
  msgstr ""
1497
 
1498
- #: addons/email-notices/myCRED-addon-email-notices.php:1408
1499
  msgid "Plain Text"
1500
  msgstr ""
1501
 
1502
- #: addons/email-notices/myCRED-addon-email-notices.php:1416
1503
  #: addons/banking/services/mycred-service-payouts.php:825
1504
  msgid "Schedule"
1505
  msgstr ""
1506
 
1507
- #: addons/email-notices/myCRED-addon-email-notices.php:1438
1508
  msgid "Filter Email Subjects"
1509
  msgstr ""
1510
 
1511
- #: addons/email-notices/myCRED-addon-email-notices.php:1441
1512
  msgid "Filter Email Body"
1513
  msgstr ""
1514
 
1515
- #: addons/email-notices/myCRED-addon-email-notices.php:1463
1516
- msgid "Defaults"
1517
- msgstr ""
1518
-
1519
- #: addons/email-notices/myCRED-addon-email-notices.php:1496
1520
  msgid "Default CSS Styling"
1521
  msgstr ""
1522
 
1523
- #: addons/email-notices/myCRED-addon-email-notices.php:1498
1524
  msgid ""
1525
  "Default email CSS styling. Note that if you intend to send HTML emails, you "
1526
  "should use inline CSS styling for best results."
@@ -1542,14 +1456,6 @@ msgstr ""
1542
  msgid "Negative Values"
1543
  msgstr ""
1544
 
1545
- #: addons/stats/myCRED-addon-stats.php:248
1546
- msgid "Overview"
1547
- msgstr ""
1548
-
1549
- #: addons/stats/myCRED-addon-stats.php:310
1550
- msgid "Refresh"
1551
- msgstr ""
1552
-
1553
  #: addons/stats/myCRED-addon-stats.php:417
1554
  msgid "Your log is empty. No statistics can be shown."
1555
  msgstr ""
@@ -1562,118 +1468,118 @@ msgstr ""
1562
  msgid "Badge Saved."
1563
  msgstr ""
1564
 
1565
- #: addons/badges/myCRED-addon-badges.php:398
1566
  msgid "First Level"
1567
  msgstr ""
1568
 
1569
- #: addons/badges/myCRED-addon-badges.php:510
1570
- #: addons/badges/myCRED-addon-badges.php:801
1571
  msgid "Add Level"
1572
  msgstr ""
1573
 
1574
- #: addons/badges/myCRED-addon-badges.php:511
1575
- #: addons/badges/myCRED-addon-badges.php:802
1576
  msgid "Remove Level"
1577
  msgstr ""
1578
 
1579
- #: addons/badges/myCRED-addon-badges.php:512
1580
- #: addons/badges/myCRED-addon-badges.php:755
1581
- #: addons/badges/myCRED-addon-badges.php:818
1582
- #: addons/badges/myCRED-addon-badges.php:823
1583
  msgid "Set Image"
1584
  msgstr ""
1585
 
1586
- #: addons/badges/myCRED-addon-badges.php:513
1587
- #: addons/badges/myCRED-addon-badges.php:755
1588
- #: addons/badges/myCRED-addon-badges.php:823
1589
  msgid "Change Image"
1590
  msgstr ""
1591
 
1592
- #: addons/badges/myCRED-addon-badges.php:514
1593
  msgid "Are you sure you want to remove this level?"
1594
  msgstr ""
1595
 
1596
- #: addons/badges/myCRED-addon-badges.php:515
1597
- #: addons/badges/myCRED-addon-badges.php:819
1598
- #: addons/badges/myCRED-addon-badges.php:1288
1599
  msgid "Level"
1600
  msgstr ""
1601
 
1602
- #: addons/badges/myCRED-addon-badges.php:518
1603
- #: addons/badges/myCRED-addon-badges.php:921
1604
  #: addons/badges/includes/mycred-badge-functions.php:272
1605
  msgctxt "Comparison of badge requirements. A AND B"
1606
  msgid "AND"
1607
  msgstr ""
1608
 
1609
- #: addons/badges/myCRED-addon-badges.php:519
1610
- #: addons/badges/myCRED-addon-badges.php:921
1611
  #: addons/badges/includes/mycred-badge-functions.php:270
1612
  msgctxt "Comparison of badge requirements. A OR B"
1613
  msgid "OR"
1614
  msgstr ""
1615
 
1616
- #: addons/badges/myCRED-addon-badges.php:571
1617
  msgid "Badge Setup"
1618
  msgstr ""
1619
 
1620
- #: addons/badges/myCRED-addon-badges.php:580
1621
  msgid "Default Badge Image"
1622
  msgstr ""
1623
 
1624
- #: addons/badges/myCRED-addon-badges.php:722
1625
  #: addons/badges/includes/mycred-badge-functions.php:288
1626
  msgid "This badge is manually awarded."
1627
  msgstr ""
1628
 
1629
- #: addons/badges/myCRED-addon-badges.php:758
1630
  msgid "Optional image to show when a user has not earned this badge."
1631
  msgstr ""
1632
 
1633
- #: addons/badges/myCRED-addon-badges.php:825
1634
  #, php-format
1635
  msgid "Level %d"
1636
  msgstr ""
1637
 
1638
- #: addons/badges/myCRED-addon-badges.php:849
1639
  msgid "Select Point Type"
1640
  msgstr ""
1641
 
1642
- #: addons/badges/myCRED-addon-badges.php:863
1643
  msgid "Select Reference"
1644
  msgstr ""
1645
 
1646
- #: addons/badges/myCRED-addon-badges.php:939
1647
  msgid "Reward"
1648
  msgstr ""
1649
 
1650
- #: addons/badges/myCRED-addon-badges.php:1158
1651
- #: addons/badges/myCRED-addon-badges.php:1192
1652
  msgid "Show all badges, including badges users have not yet earned."
1653
  msgstr ""
1654
 
1655
- #: addons/badges/myCRED-addon-badges.php:1251
1656
  msgid "No image set"
1657
  msgstr ""
1658
 
1659
- #: addons/badges/myCRED-addon-badges.php:1283
1660
  msgid "Select a level"
1661
  msgstr ""
1662
 
1663
- #: addons/badges/myCRED-addon-badges.php:1297
1664
  msgid "Earned"
1665
  msgstr ""
1666
 
1667
- #: addons/badges/myCRED-addon-badges.php:1406
1668
  #, php-format
1669
  msgid "A total of %d users have received this badge."
1670
  msgstr ""
1671
 
1672
- #: addons/badges/myCRED-addon-badges.php:1433
1673
  msgid "No connections where removed."
1674
  msgstr ""
1675
 
1676
- #: addons/badges/myCRED-addon-badges.php:1435
1677
  #, php-format
1678
  msgid "%s connections where removed."
1679
  msgstr ""
@@ -1943,12 +1849,6 @@ msgstr ""
1943
  msgid "View Schedule"
1944
  msgstr ""
1945
 
1946
- #: addons/banking/services/mycred-service-payouts.php:472
1947
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
1948
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
1949
- msgid "View"
1950
- msgstr ""
1951
-
1952
  #: addons/banking/services/mycred-service-payouts.php:472
1953
  msgid "Delete Schedule"
1954
  msgstr ""
@@ -2172,7 +2072,7 @@ msgstr ""
2172
 
2173
  #: addons/transfer/includes/mycred-transfer-widgets.php:113
2174
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
2175
- #: addons/buy-creds/modules/buycred-module-pending.php:549
2176
  #: addons/buy-creds/modules/buycred-module-core.php:1487
2177
  msgid "Recipient"
2178
  msgstr ""
@@ -2299,76 +2199,76 @@ msgstr ""
2299
  msgid "An unknown error occurred. Coupon not used."
2300
  msgstr ""
2301
 
2302
- #: addons/sell-content/includes/mycred-sell-functions.php:503
2303
  #, php-format
2304
  msgctxt "Point type name"
2305
  msgid "You can not pay using %s"
2306
  msgstr ""
2307
 
2308
- #: addons/sell-content/includes/mycred-sell-functions.php:764
2309
  #, php-format
2310
  msgctxt "all post type name"
2311
  msgid "All %s"
2312
  msgstr ""
2313
 
2314
- #: addons/sell-content/includes/mycred-sell-functions.php:768
2315
  #, php-format
2316
  msgctxt "all post type name"
2317
  msgid "%s I manually select"
2318
  msgstr ""
2319
 
2320
- #: addons/sell-content/includes/mycred-sell-functions.php:772
2321
  #, php-format
2322
  msgctxt "%s = post type name"
2323
  msgid "All %s except"
2324
  msgstr ""
2325
 
2326
- #: addons/sell-content/includes/mycred-sell-functions.php:773
2327
  #, php-format
2328
  msgctxt "%s = post type name"
2329
  msgid "Comma separated list of %s IDs to exclude"
2330
  msgstr ""
2331
 
2332
- #: addons/sell-content/includes/mycred-sell-functions.php:776
2333
  #, php-format
2334
  msgctxt "%s = post type name"
2335
  msgid "Only %s"
2336
  msgstr ""
2337
 
2338
- #: addons/sell-content/includes/mycred-sell-functions.php:777
2339
  #, php-format
2340
  msgctxt "%s = post type name"
2341
  msgid "Comma separated list of %s IDs"
2342
  msgstr ""
2343
 
2344
- #: addons/sell-content/includes/mycred-sell-functions.php:789
2345
  #, php-format
2346
  msgctxt "e.g. Only \"Posts\" in \"Categories\""
2347
  msgid "Only %s in %s"
2348
  msgstr ""
2349
 
2350
- #: addons/sell-content/includes/mycred-sell-functions.php:790
2351
- #: addons/sell-content/includes/mycred-sell-functions.php:794
2352
- #: addons/sell-content/includes/mycred-sell-functions.php:800
2353
- #: addons/sell-content/includes/mycred-sell-functions.php:804
2354
  #, php-format
2355
  msgctxt "%s = taxonomy name"
2356
  msgid "Comma separated list of %s slugs"
2357
  msgstr ""
2358
 
2359
- #: addons/sell-content/includes/mycred-sell-functions.php:793
2360
  #, php-format
2361
  msgctxt "e.g. Only \"Posts\" not in \"Categories\""
2362
  msgid "Only %s not in %s"
2363
  msgstr ""
2364
 
2365
- #: addons/sell-content/includes/mycred-sell-functions.php:799
2366
  #, php-format
2367
  msgctxt "e.g. Only \"Posts\" with \"Tags\""
2368
  msgid "Only %s with %s"
2369
  msgstr ""
2370
 
2371
- #: addons/sell-content/includes/mycred-sell-functions.php:803
2372
  #, php-format
2373
  msgctxt "e.g. Only \"Posts\" without \"Tags\""
2374
  msgid "Only %s without %s"
@@ -2396,49 +2296,11 @@ msgctxt "%s is replaced with the point amount and name."
2396
  msgid "Received new request to purchase %s."
2397
  msgstr ""
2398
 
2399
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:576
2400
- msgid "First Name"
2401
- msgstr ""
2402
-
2403
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
2404
- msgid "Last Name"
2405
- msgstr ""
2406
-
2407
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:590
2408
- msgid "Address Line 1"
2409
- msgstr ""
2410
-
2411
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:598
2412
- msgid "Address Line 2"
2413
- msgstr ""
2414
-
2415
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:606
2416
- msgid "City"
2417
- msgstr ""
2418
-
2419
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:612
2420
- msgid "Zip"
2421
- msgstr ""
2422
-
2423
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
2424
- msgid "State"
2425
- msgstr ""
2426
-
2427
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:628
2428
- msgid "Country"
2429
- msgstr ""
2430
-
2431
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:633
2432
- msgid "Choose Country"
2433
- msgstr ""
2434
-
2435
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:691
2436
  msgctxt "buyCRED order description"
2437
  msgid "Item"
2438
  msgstr ""
2439
 
2440
- #: addons/buy-creds/modules/buycred-module-pending.php:180
2441
- #: addons/buy-creds/modules/buycred-module-pending.php:181
2442
  #: addons/buy-creds/modules/buycred-module-pending.php:182
2443
  #: addons/buy-creds/modules/buycred-module-pending.php:183
2444
  #: addons/buy-creds/modules/buycred-module-pending.php:184
@@ -2446,34 +2308,36 @@ msgstr ""
2446
  #: addons/buy-creds/modules/buycred-module-pending.php:186
2447
  #: addons/buy-creds/modules/buycred-module-pending.php:187
2448
  #: addons/buy-creds/modules/buycred-module-pending.php:188
 
 
2449
  msgid "Payment Updated."
2450
  msgstr ""
2451
 
2452
- #: addons/buy-creds/modules/buycred-module-pending.php:216
2453
  msgid "Pending payment successfully credited to account."
2454
  msgstr ""
2455
 
2456
- #: addons/buy-creds/modules/buycred-module-pending.php:218
2457
  msgid "Failed to credit the pending payment to account."
2458
  msgstr ""
2459
 
2460
- #: addons/buy-creds/modules/buycred-module-pending.php:441
2461
  msgid "Pending Payment"
2462
  msgstr ""
2463
 
2464
- #: addons/buy-creds/modules/buycred-module-pending.php:479
2465
  msgid "Trash"
2466
  msgstr ""
2467
 
2468
- #: addons/buy-creds/modules/buycred-module-pending.php:543
2469
  msgid "Payer"
2470
  msgstr ""
2471
 
2472
- #: addons/buy-creds/modules/buycred-module-pending.php:652
2473
  msgid "Pending request created."
2474
  msgstr ""
2475
 
2476
- #: addons/buy-creds/modules/buycred-module-pending.php:700
2477
  #, php-format
2478
  msgid "Pending payment updated by %s"
2479
  msgstr ""
@@ -2587,121 +2451,116 @@ msgctxt "Return label. %s = Website name"
2587
  msgid "Return to %s"
2588
  msgstr ""
2589
 
2590
- #. Description of the plugin
2591
- msgid "An adaptive points management system for WordPress powered websites."
2592
- msgstr ""
2593
-
2594
- #: mycred.php:565
2595
  #, php-format
2596
  msgid "%s Log Import"
2597
  msgstr "Importation du journal %s"
2598
 
2599
- #: mycred.php:566
2600
  msgid "Import log entries via a CSV file."
2601
- msgstr "Importation des données de connexion via un fichier CSV"
2602
 
2603
- #: mycred.php:577
2604
  #, php-format
2605
  msgid "%s Balance Import"
2606
  msgstr "Import des soldes %s"
2607
 
2608
- #: mycred.php:589
2609
  #, php-format
2610
  msgid "%s CubePoints Import"
2611
  msgstr "Importation CubePoints %s"
2612
 
2613
- #: mycred.php:590
2614
  msgid "Import CubePoints log entries and / or balances."
2615
- msgstr "Importe les données de onnexion CubePoints et/ou les soldes"
2616
 
2617
- #: mycred.php:632 modules/mycred-module-management.php:316
2618
- #: modules/mycred-module-settings.php:425 modules/mycred-module-log.php:469
2619
  #: addons/transfer/myCRED-addon-transfer.php:159
2620
  #: addons/ranks/myCRED-addon-ranks.php:986
2621
- #: addons/ranks/myCRED-addon-ranks.php:1568
2622
- #: addons/badges/myCRED-addon-badges.php:702
2623
  #: addons/gateway/event-booking/mycred-eventsmanager.php:537
2624
  msgid "Processing..."
2625
  msgstr "Chargement en cours..."
2626
 
2627
- #: mycred.php:633
2628
  msgid "Sent"
2629
  msgstr "Envoyer"
2630
 
2631
- #: mycred.php:634
2632
  msgid "Error - Try Again"
2633
  msgstr "Erreur - essayez encore une fois"
2634
 
2635
- #: mycred.php:809 mycred.php:810
2636
  #, php-format
2637
  msgid "About %s"
2638
- msgstr "&Agrave; propos de %s"
2639
 
2640
- #: mycred.php:818 mycred.php:819
2641
  msgid "Awesome People"
2642
  msgstr "On les remercie"
2643
 
2644
- #: mycred.php:856 modules/mycred-module-management.php:558
2645
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:34
2646
  msgid "Balance"
2647
  msgstr "Solde"
2648
 
2649
- #: mycred.php:923 modules/mycred-module-management.php:473
2650
  #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
2651
- #: addons/buy-creds/modules/buycred-module-pending.php:444
2652
  msgid "History"
2653
- msgstr "Mes points"
2654
 
2655
- #: mycred.php:979 mycred.php:1000
2656
  #: addons/notifications/myCRED-addon-notifications.php:194
2657
  #: addons/email-notices/myCRED-addon-email-notices.php:277
2658
  #: addons/banking/services/mycred-service-interest.php:477
2659
  #: addons/gateway/event-booking/mycred-eventsmanager.php:591
2660
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:605
2661
  msgid "Setup"
2662
- msgstr "Configuration"
2663
 
2664
- #: mycred.php:981 modules/mycred-module-settings.php:21
2665
  #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
2666
  #: modules/mycred-module-network.php:270
2667
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
2668
  #: addons/buy-creds/modules/buycred-module-core.php:592
2669
  msgid "Settings"
2670
- msgstr "Configuration"
2671
 
2672
- #: mycred.php:1021
2673
  msgid ""
2674
  "Make sure to backup your database and files before updating, in case "
2675
  "anything goes wrong!"
2676
  msgstr ""
2677
- "Agissez prudemment en sauvegardant votre base de données et vos fichiers "
2678
- "avant de lancer la mise à jour."
2679
 
2680
  #: abstracts/mycred-abstract-hook.php:90
2681
  msgid "This Hook has no settings"
2682
- msgstr "Ce hook n'a pas de paramètre."
2683
 
2684
- #: abstracts/mycred-abstract-hook.php:290
2685
- #: abstracts/mycred-abstract-hook.php:361 includes/mycred-functions.php:2771
2686
  msgid "No limit"
2687
- msgstr "Illimité"
2688
 
2689
- #: abstracts/mycred-abstract-hook.php:362
2690
  msgid "Once every 24 hours"
2691
  msgstr "Une fois toutes les 24h"
2692
 
2693
- #: abstracts/mycred-abstract-hook.php:363
2694
  msgid "Once every 7 days"
2695
  msgstr "Une fois tous les 7 jours"
2696
 
2697
- #: abstracts/mycred-abstract-hook.php:364
2698
  msgid "Once per day (reset at midnight)"
2699
- msgstr "Une fois par jour (remise à zéro à minuit)"
2700
 
2701
- #: abstracts/mycred-abstract-hook.php:371
2702
  #: addons/email-notices/myCRED-addon-email-notices.php:531
2703
  #: addons/email-notices/myCRED-addon-email-notices.php:862
2704
- #: addons/badges/myCRED-addon-badges.php:880
2705
  #: addons/banking/abstracts/mycred-abstract-service.php:351
2706
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
2707
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
@@ -2709,34 +2568,34 @@ msgstr "Une fois par jour (remise à zéro à minuit)"
2709
  #: addons/buy-creds/modules/buycred-module-core.php:401
2710
  #: addons/buy-creds/gateways/zombaio.php:406
2711
  msgid "Select"
2712
- msgstr "sélectionnez"
2713
 
2714
  #: abstracts/mycred-abstract-module.php:400
2715
  #: abstracts/mycred-abstract-module.php:410
2716
  msgid "Surprise"
2717
  msgstr "Surprise"
2718
 
2719
- #: abstracts/mycred-abstract-module.php:522
2720
  #: modules/mycred-module-network.php:218
2721
  msgid "click to close"
2722
  msgstr "cliquez pour fermer"
2723
 
2724
- #: abstracts/mycred-abstract-module.php:523
2725
  #: modules/mycred-module-network.php:219
2726
  msgid "click to open"
2727
  msgstr "cliquez pour ouvrir"
2728
 
2729
- #: abstracts/mycred-abstract-module.php:556
2730
  #: modules/mycred-module-network.php:261
2731
- #: addons/email-notices/myCRED-addon-email-notices.php:1546
2732
  #: addons/gateway/event-booking/mycred-eventespresso3.php:451
2733
  #: addons/buy-creds/modules/buycred-module-core.php:597
2734
  msgid "Settings Updated"
2735
- msgstr "Configuration mise à jour"
2736
 
2737
  #: modules/mycred-module-management.php:101
2738
  msgid "Update Balance"
2739
- msgstr "Mettre à jour le solde"
2740
 
2741
  #: modules/mycred-module-management.php:114
2742
  msgid "User is excluded"
@@ -2744,14 +2603,14 @@ msgstr "Cet utilisateur est exclu"
2744
 
2745
  #: modules/mycred-module-management.php:122
2746
  msgid "Log Entry can not be empty"
2747
- msgstr "Le champ ne peut pas être vide."
2748
 
2749
  #: modules/mycred-module-management.php:130 modules/mycred-module-log.php:225
2750
  msgid "Amount can not be zero"
2751
- msgstr "Le montant ne peut pas être zéro"
2752
 
2753
  #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
2754
- #: modules/mycred-module-log.php:910
2755
  #: includes/classes/class.query-export.php:263
2756
  #: includes/classes/class.query-export.php:399
2757
  #: includes/classes/class.query-log.php:892
@@ -2760,14 +2619,14 @@ msgstr "Le montant ne peut pas être zéro"
2760
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:202
2761
  #: addons/buy-creds/modules/buycred-module-core.php:768
2762
  msgid "Date"
2763
- msgstr "Daté"
2764
 
2765
  #: modules/mycred-module-management.php:236
2766
  #: addons/banking/services/mycred-service-interest.php:435
2767
  #: addons/banking/services/mycred-service-interest.php:460
2768
  #: addons/banking/services/mycred-service-payouts.php:746
2769
  msgid "Time"
2770
- msgstr "Durée"
2771
 
2772
  #: modules/mycred-module-management.php:238 modules/mycred-module-log.php:96
2773
  #: includes/classes/class.query-export.php:263
@@ -2782,10 +2641,10 @@ msgid "Edit Users Balance"
2782
  msgstr "Modifier le solde des utilisateurs"
2783
 
2784
  #: modules/mycred-module-management.php:315
2785
- #: modules/mycred-module-settings.php:430 modules/mycred-module-log.php:468
2786
  #: addons/banking/myCRED-addon-banking.php:204
2787
  msgid "Close"
2788
- msgstr "fermer"
2789
 
2790
  #: modules/mycred-module-management.php:453
2791
  #: modules/mycred-module-management.php:571
@@ -2797,7 +2656,7 @@ msgstr "Exclus"
2797
  #: modules/mycred-module-management.php:463
2798
  #: addons/coupons/myCRED-addon-coupons.php:309
2799
  msgid "Total"
2800
- msgstr "Total"
2801
 
2802
  #: modules/mycred-module-management.php:474
2803
  msgid "Adjust"
@@ -2808,18 +2667,24 @@ msgstr "Ajustement"
2808
  #: includes/classes/class.query-log.php:1621
2809
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:68
2810
  msgid "Edit"
2811
- msgstr "Modifier"
2812
 
2813
  #: modules/mycred-module-management.php:583
2814
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
2815
- #: addons/buy-creds/modules/buycred-module-pending.php:718
2816
  msgid "Cancel"
2817
  msgstr "Annuler"
2818
 
2819
  #: modules/mycred-module-management.php:741
2820
  #: addons/banking/services/mycred-service-payouts.php:553
2821
  msgid "ID"
2822
- msgstr "ID"
 
 
 
 
 
 
2823
 
2824
  #: modules/mycred-module-management.php:753
2825
  #: addons/gateway/event-booking/mycred-eventespresso3.php:307
@@ -2840,20 +2705,20 @@ msgstr "Solde actuel"
2840
  #: addons/transfer/includes/mycred-transfer-widgets.php:105
2841
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
2842
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
2843
- #: addons/buy-creds/modules/buycred-module-pending.php:269
2844
- #: addons/buy-creds/modules/buycred-module-pending.php:615
2845
- #: addons/buy-creds/modules/buycred-module-pending.php:733
2846
  msgid "Amount"
2847
  msgstr "Montant"
2848
 
2849
  #: modules/mycred-module-management.php:770
2850
  msgid "A positive or negative value"
2851
- msgstr "Une valeur positive ou négative"
2852
 
2853
- #: modules/mycred-module-management.php:796 modules/mycred-module-log.php:929
2854
  #: addons/gateway/event-booking/mycred-eventespresso3.php:518
2855
  msgid "Log Entry"
2856
- msgstr "Journal d'activité"
2857
 
2858
  #: modules/mycred-module-management.php:797
2859
  #: addons/transfer/includes/mycred-transfer-widgets.php:92
@@ -2861,45 +2726,41 @@ msgstr "Journal d'activité"
2861
  #: addons/transfer/includes/mycred-transfer-widgets.php:118
2862
  #: addons/transfer/includes/mycred-transfer-widgets.php:126
2863
  msgid "optional"
2864
- msgstr "optionnel"
2865
 
2866
  #: modules/mycred-module-settings.php:138
2867
  msgid "Accounts successfully reset"
2868
- msgstr "Remise à zéro du compte réussie"
2869
 
2870
  #: modules/mycred-module-settings.php:190
2871
  msgid "No users found to export"
2872
- msgstr "Aucun utilisateur à exporter"
2873
 
2874
  #: modules/mycred-module-settings.php:426
2875
  msgid ""
2876
  "Warning! All entries in your log will be permanently removed! This can not "
2877
  "be undone!"
2878
  msgstr ""
2879
- "Attention ! Toutes les entrées seront définitivement supprimées. Cette "
2880
- "action ne pourra pas être annulée."
2881
 
2882
  #: modules/mycred-module-settings.php:427
2883
  msgid ""
2884
  "All log entries belonging to deleted users will be permanently deleted! This "
2885
  "can not be undone!"
2886
  msgstr ""
2887
- "Toutes les entrées appartenant aux utilisateurs supprimés seront "
2888
- "définitivement détruites. Cette action ne pourra pas être annulée."
2889
 
2890
  #: modules/mycred-module-settings.php:428
2891
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
2892
  msgstr ""
2893
- "Attention ! Les soldes de tous les utilisateurs seront remis à zéro. Cette "
2894
- "action ne pourra pas être annulée."
2895
 
2896
  #: modules/mycred-module-settings.php:429
2897
  msgid "Done!"
2898
- msgstr "Terminé !"
2899
-
2900
- #: modules/mycred-module-settings.php:431
2901
- msgid "Export users %plural%"
2902
- msgstr "Exportation des %plural% des utilisateurs"
2903
 
2904
  #: modules/mycred-module-settings.php:530
2905
  #, php-format
@@ -2908,31 +2769,30 @@ msgstr "Configuration de %s"
2908
 
2909
  #: modules/mycred-module-settings.php:539
2910
  msgid "Core Settings"
2911
- msgstr "Configuration du Core"
2912
 
2913
  #: modules/mycred-module-settings.php:544 includes/mycred-setup.php:275
2914
  #: addons/gateway/event-booking/mycred-eventespresso3.php:460
2915
  #: addons/gateway/event-booking/mycred-eventsmanager.php:658
2916
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
2917
  msgid "Labels"
2918
- msgstr "Intitulés"
2919
 
2920
  #: modules/mycred-module-settings.php:562 includes/mycred-setup.php:293
2921
- #: addons/email-notices/myCRED-addon-email-notices.php:1405
2922
  msgid "Format"
2923
- msgstr "Formatage"
2924
 
2925
  #: modules/mycred-module-settings.php:566 includes/mycred-setup.php:297
2926
  msgid "Prefix"
2927
- msgstr "Préfixe"
2928
 
2929
  #: modules/mycred-module-settings.php:572 includes/mycred-setup.php:303
2930
  msgid "Separators"
2931
- msgstr "Séparateurs"
2932
 
2933
  #: modules/mycred-module-settings.php:580 includes/mycred-setup.php:311
2934
  msgid "Decimals"
2935
- msgstr "Décimales"
2936
 
2937
  #: modules/mycred-module-settings.php:586 includes/mycred-setup.php:317
2938
  msgid "Suffix"
@@ -2944,44 +2804,44 @@ msgstr "Astuce"
2944
 
2945
  #: modules/mycred-module-settings.php:600 includes/mycred-setup.php:328
2946
  msgid "Security"
2947
- msgstr "Sécurité"
2948
 
2949
  #: modules/mycred-module-settings.php:647
2950
  msgid "Delete log entries when user is deleted."
2951
  msgstr ""
2952
- "supprimer les données attachées lors de la suppression de l'utilisateur"
2953
 
2954
  #: modules/mycred-module-settings.php:666
2955
  msgid "Management"
2956
- msgstr "Gestion des données"
2957
 
2958
- #: modules/mycred-module-settings.php:678 modules/mycred-module-log.php:433
2959
  msgid "Entries"
2960
- msgstr "Entrées"
2961
 
2962
  #: modules/mycred-module-settings.php:684
2963
  #: modules/mycred-module-settings.php:709
2964
- #: addons/ranks/myCRED-addon-ranks.php:1665
2965
- #: addons/buy-creds/modules/buycred-module-pending.php:450
2966
- #: addons/buy-creds/modules/buycred-module-pending.php:736
2967
  msgid "Actions"
2968
- msgstr "Actions"
2969
 
2970
  #: modules/mycred-module-settings.php:687
2971
  msgid "Empty Log"
2972
  msgstr "Journal vide"
2973
 
2974
  #: modules/mycred-module-settings.php:703
2975
- #: addons/ranks/myCRED-addon-ranks.php:1076
2976
- #: addons/badges/myCRED-addon-badges.php:400
2977
  msgid "Users"
2978
- msgstr "Utilisateurs"
2979
 
2980
  #: modules/mycred-module-settings.php:711
2981
  msgid "Set all to zero"
2982
- msgstr "Tout remettre à zéro"
2983
 
2984
- #: modules/mycred-module-settings.php:728 includes/mycred-widgets.php:573
2985
  #: addons/transfer/myCRED-addon-transfer.php:370
2986
  #: addons/sell-content/myCRED-addon-sell-content.php:581
2987
  #: addons/transfer/includes/mycred-transfer-widgets.php:121
@@ -2989,81 +2849,80 @@ msgstr "Tout remettre à zéro"
2989
  msgid "Point Types"
2990
  msgstr "Types de Points"
2991
 
2992
- #: modules/mycred-module-settings.php:742
2993
- #: modules/mycred-module-settings.php:768
2994
- #: modules/mycred-module-settings.php:798
2995
  msgid "Meta Key"
2996
- msgstr "Mot-clé"
2997
 
2998
- #: modules/mycred-module-settings.php:748
2999
- #: modules/mycred-module-settings.php:774
3000
- #: modules/mycred-module-settings.php:804
3001
  #: addons/email-notices/myCRED-addon-email-notices.php:578
3002
  #: addons/gateway/carts/mycred-woocommerce.php:155
3003
  msgid "Label"
3004
- msgstr "Etiquette"
3005
 
3006
- #: modules/mycred-module-settings.php:755
3007
- #: modules/mycred-module-settings.php:781
3008
  #: includes/classes/class.query-log.php:1019
3009
  #: includes/classes/class.query-log.php:1622
3010
  #: addons/banking/services/mycred-service-payouts.php:472
3011
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
3012
  msgid "Delete"
3013
  msgstr "Suppirmer"
3014
 
3015
- #: modules/mycred-module-settings.php:794
3016
  msgid "Add New Type"
3017
  msgstr "Ajouter un nouveau type"
3018
 
3019
- #: modules/mycred-module-settings.php:822
3020
  #: addons/gateway/event-booking/mycred-eventespresso3.php:551
3021
  #: addons/buy-creds/modules/buycred-module-core.php:650
3022
  msgid "Update Settings"
3023
- msgstr "Enregistrer la configuration"
3024
 
3025
- #: modules/mycred-module-settings.php:831
3026
  msgid "Identify users by"
3027
  msgstr "Identifer les utilisateurs par"
3028
 
3029
- #: modules/mycred-module-settings.php:837
3030
  msgid "User ID"
3031
- msgstr "ID utilisateur"
3032
 
3033
- #: modules/mycred-module-settings.php:838
3034
  msgid "User Email"
3035
- msgstr "Email de l'utilisateur"
3036
 
3037
- #: modules/mycred-module-settings.php:839
3038
  msgid "User Login"
3039
  msgstr "ID de l'utilisateur"
3040
 
3041
- #: modules/mycred-module-settings.php:847
3042
  msgid ""
3043
  "Use ID if you intend to use this export as a backup of your current site "
3044
  "while Email is recommended if you want to export to a different site."
3045
  msgstr ""
3046
- "Utilisez ID si vous avez l'intention d'utiliser l'exportation à titre de "
3047
  "sauvegarde du site actuel. Nous vous recommandons d'utiliser l'adresse mail "
3048
- "si vous comptez exploiter les données sur un autre site."
3049
 
3050
- #: modules/mycred-module-settings.php:850
3051
  msgid "Import Log Entry"
3052
- msgstr "Import du journal d'entrées"
3053
 
3054
- #: modules/mycred-module-settings.php:852
3055
  #, php-format
3056
  msgid ""
3057
  "Optional log entry to use if you intend to import this file in a different "
3058
  "%s installation."
3059
  msgstr ""
3060
- "Entrées de journal optionnelles si vous voulez importer ce fichier dans une "
3061
- "installation %s différente."
3062
 
3063
- #: modules/mycred-module-settings.php:855 modules/mycred-module-export.php:236
3064
- #: modules/mycred-module-export.php:263 modules/mycred-module-export.php:313
3065
  msgid "Export"
3066
- msgstr "Exporter"
3067
 
3068
  #: modules/mycred-module-addons.php:25 modules/mycred-module-addons.php:26
3069
  #: includes/mycred-setup.php:171
@@ -3073,14 +2932,14 @@ msgstr "Modules"
3073
  #: modules/mycred-module-addons.php:175
3074
  msgid "Give your users badges based on their interaction with your website."
3075
  msgstr ""
3076
- "Donner à vos utilisateurs des badges basés sur leurs interactions avec "
3077
- "votre site."
3078
 
3079
  #: modules/mycred-module-addons.php:186
3080
  msgid ""
3081
  "Setup recurring payouts or offer / charge interest on user account balances."
3082
  msgstr ""
3083
- "Paramétrez les paiements réguliers ou offres / pénalités et intérêts "
3084
  "relatifs aux soldes de comptes de vos utilisateurs."
3085
 
3086
  #: modules/mycred-module-addons.php:197
@@ -3091,7 +2950,7 @@ msgid ""
3091
  msgstr ""
3092
  "Le module additionnel <strong>buy</strong>CRED permet l'achat de points aux "
3093
  "utilisateurs titulaires d'un compte PayPal, Skrill (Moneybookers) ou "
3094
- "NETbilling. buyCRED permet également à un utilisateur d'acheter des points "
3095
  "pour un autre membre du site."
3096
 
3097
  #: modules/mycred-module-addons.php:208
@@ -3099,12 +2958,12 @@ msgid ""
3099
  "The coupons add-on allows you to create coupons that users can use to add "
3100
  "points to their accounts."
3101
  msgstr ""
3102
- "Le module de bons de réductions vous permet de créer des bons que les "
3103
- "utilisateurs pourront utiliser pour ajouter des points à leur compte."
3104
 
3105
  #: modules/mycred-module-addons.php:219
3106
  msgid "Create email notices for any type of myCRED instance."
3107
- msgstr "Créez des alertes par mail pour tout type d'action avec myCRED."
3108
 
3109
  #: modules/mycred-module-addons.php:230
3110
  msgid ""
@@ -3112,15 +2971,15 @@ msgid ""
3112
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
3113
  "Bookings: Event Espresso and Events Manager (free & pro)."
3114
  msgstr ""
3115
- "Permettez à vos utilisateurs de payer à l'aide de leur solde de points "
3116
  "<strong>my</strong>CRED. Actuellement compatible avec WooCommerce, "
3117
- "MarketPress et WP E-Commerce. Egalement compatible avec les systèmes de "
3118
- "réservations Event Espresso et Events Manager (gratuit & pro)."
3119
 
3120
  #: modules/mycred-module-addons.php:241
3121
  msgid "Create pop-up notifications for when users gain or loose points."
3122
  msgstr ""
3123
- "Crée une pop-up de notification lorsqu'un utilisateur gagne ou perd des "
3124
  "points."
3125
 
3126
  #: modules/mycred-module-addons.php:253
@@ -3128,8 +2987,8 @@ msgid ""
3128
  "Create ranks for users reaching a certain number of %_plural% with the "
3129
  "option to add logos for each rank."
3130
  msgstr ""
3131
- "Créez des classements pour les utilisateurs atteignants un certain nombre "
3132
- "de %_plural%, avec en option l'ajout d'un logo signalant leur classement."
3133
 
3134
  #: modules/mycred-module-addons.php:264
3135
  msgid ""
@@ -3138,8 +2997,8 @@ msgid ""
3138
  "parts of your content allowing you to offer \"teasers\"."
3139
  msgstr ""
3140
  "Ce module vous permet de commercialiser n'importe quel article, page ou post "
3141
- "type public publié sur votre site. Vous pouvez vendre la totalité d'un "
3142
- "contenu ou proposer des extraits à titre d'échantillons à l'aide de nos "
3143
  "shortcodes."
3144
 
3145
  #: modules/mycred-module-addons.php:286
@@ -3147,7 +3006,7 @@ msgid ""
3147
  "Allow your users to send or \"donate\" points to other members by either "
3148
  "using the mycred_transfer shortcode or the myCRED Transfer widget."
3149
  msgstr ""
3150
- "Autorisez vos membres à s'envoyer des points ou en faire don entre eux, en "
3151
  "utilisant le shortcode mycred_transfer ou avec le widget myCRED Transfert."
3152
 
3153
  #: modules/mycred-module-addons.php:330
@@ -3157,11 +3016,11 @@ msgstr "Modules %s"
3157
 
3158
  #: modules/mycred-module-addons.php:337
3159
  msgid "Add-on Activated"
3160
- msgstr "Module activé"
3161
 
3162
  #: modules/mycred-module-addons.php:340
3163
  msgid "Add-on Deactivated"
3164
- msgstr "Module désactivé"
3165
 
3166
  #: modules/mycred-module-addons.php:405
3167
  msgid "Activate Add-on"
@@ -3169,22 +3028,22 @@ msgstr "Activer le module"
3169
 
3170
  #: modules/mycred-module-addons.php:406
3171
  msgid "Activate"
3172
- msgstr "Activer"
3173
 
3174
  #: modules/mycred-module-addons.php:412
3175
  msgid "Deactivate Add-on"
3176
- msgstr "Désactiver le module"
3177
 
3178
  #: modules/mycred-module-addons.php:413
3179
  msgid "Deactivate"
3180
- msgstr "Désactiver"
3181
 
3182
  #: modules/mycred-module-log.php:24 modules/mycred-module-log.php:25
3183
  #: addons/gateway/event-booking/mycred-eventespresso3.php:515
3184
  msgid "Log"
3185
  msgstr "Vue d&#39;ensemble"
3186
 
3187
- #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:906
3188
  #: includes/classes/class.query-export.php:263
3189
  #: includes/classes/class.query-export.php:371
3190
  #: includes/classes/class.query-log.php:891
@@ -3196,32 +3055,32 @@ msgstr "Utilisateur"
3196
 
3197
  #: modules/mycred-module-log.php:173
3198
  msgid "Row Deleted"
3199
- msgstr "Ligne supprimée"
3200
 
3201
  #: modules/mycred-module-log.php:232
3202
  msgid "Log entry not found"
3203
- msgstr "Entrée introuvable"
3204
 
3205
- #: modules/mycred-module-log.php:467
3206
  msgid "Edit Log Entry"
3207
- msgstr "Modifier une entrée du journal"
3208
 
3209
- #: modules/mycred-module-log.php:471
3210
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
3211
  msgstr ""
3212
- "Soyez prudent. L'action que vous vous apprêtez à effectuer ne pourra pas "
3213
- "être annulée."
3214
 
3215
- #: modules/mycred-module-log.php:502
3216
  msgid "Search results for"
3217
- msgstr "Résultat de la recherche pour"
3218
 
3219
- #: modules/mycred-module-log.php:554
3220
  #, php-format
3221
  msgid "%s Log"
3222
  msgstr "Journal %s"
3223
 
3224
- #: modules/mycred-module-log.php:666
3225
  #, php-format
3226
  msgid "My %s History"
3227
  msgstr "Mon historique %s"
@@ -3231,32 +3090,32 @@ msgid "Master Template"
3231
  msgstr "Template principal"
3232
 
3233
  #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:280
3234
- #: modules/mycred-module-network.php:296 modules/mycred-module-export.php:354
3235
  #: addons/sell-content/myCRED-addon-sell-content.php:481
3236
  msgid "Enabled"
3237
- msgstr "Activé"
3238
 
3239
  #: modules/mycred-module-network.php:187 modules/mycred-module-network.php:188
3240
  msgid "Network Settings"
3241
- msgstr "Paramètres du réseau"
3242
 
3243
  #: modules/mycred-module-network.php:241
3244
  #, php-format
3245
  msgid "%s Network"
3246
- msgstr "Réseau %s"
3247
 
3248
  #: modules/mycred-module-network.php:257
3249
  #, php-format
3250
  msgid "Note! %s has not yet been setup."
3251
- msgstr "Inofrmation: %s n'a pas encore été configuré."
3252
 
3253
  #: modules/mycred-module-network.php:285 modules/mycred-module-network.php:301
3254
- #: modules/mycred-module-export.php:353 plugins/mycred-hook-affiliatewp.php:362
3255
  #: addons/sell-content/myCRED-addon-sell-content.php:396
3256
  #: addons/sell-content/myCRED-addon-sell-content.php:480
3257
  #: addons/buy-creds/modules/buycred-module-core.php:1127
3258
  msgid "Disabled"
3259
- msgstr "Désactivé"
3260
 
3261
  #: modules/mycred-module-network.php:291
3262
  msgid "Central Logging"
@@ -3270,42 +3129,41 @@ msgstr "Partie site"
3270
  #, php-format
3271
  msgid "Comma separated list of blog ids where %s is to be disabled."
3272
  msgstr ""
3273
- "ID, sépar&eacute;s par des virgules, des blogs ou %s doit &ecirc;tre "
3274
  "d&eacute;sactiv&eacute;."
3275
 
3276
  #: modules/mycred-module-network.php:327
3277
  msgid "Save Network Settings"
3278
- msgstr "Enregistrer les paramètres du réseau"
3279
 
3280
- #: modules/mycred-module-export.php:285 modules/mycred-module-export.php:332
3281
  #: includes/classes/class.query-log.php:1687
3282
  msgid ""
3283
  "Log entries are exported to a CSV file and depending on the number of "
3284
  "entries selected, the process may take a few seconds."
3285
  msgstr ""
3286
- "Les données sont exportées dans un fichier CSV. Selon le nombre "
3287
- "d'enregistrements sélectionnés, le processus peut durer un petit moment."
3288
 
3289
- #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
3290
  #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
3291
  #: includes/importers/mycred-cubepoints.php:353
3292
  #: includes/classes/class.query-export.php:263
3293
  #: includes/classes/class.query-export.php:391
3294
- #: addons/ranks/myCRED-addon-ranks.php:1079
3295
- #: addons/ranks/myCRED-addon-ranks.php:1247
3296
- #: addons/ranks/myCRED-addon-ranks.php:1254
3297
  #: addons/email-notices/myCRED-addon-email-notices.php:280
3298
  #: addons/email-notices/myCRED-addon-email-notices.php:585
3299
  #: addons/coupons/myCRED-addon-coupons.php:256
3300
  #: addons/coupons/myCRED-addon-coupons.php:520
3301
  #: addons/gateway/event-booking/mycred-eventespresso3.php:483
3302
  #: addons/gateway/event-booking/mycred-eventsmanager.php:604
3303
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611
3304
  #: addons/gateway/carts/mycred-wpecommerce.php:383
3305
  #: addons/gateway/carts/mycred-woocommerce.php:125
3306
  #: addons/gateway/carts/mycred-woocommerce.php:166
3307
- #: addons/buy-creds/modules/buycred-module-pending.php:557
3308
- #: addons/buy-creds/modules/buycred-module-pending.php:735
3309
  msgid "Point Type"
3310
  msgstr "Type de point"
3311
 
@@ -3345,44 +3203,44 @@ msgstr "Hier"
3345
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:190
3346
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:320
3347
  msgid "This Week"
3348
- msgstr "Cette semaine"
3349
 
3350
  #: modules/mycred-module-buddypress.php:240
3351
  #: includes/classes/class.query-log.php:1749
3352
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:191
3353
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:321
3354
  msgid "This Month"
3355
- msgstr "Ce mois"
3356
 
3357
  #: modules/mycred-module-buddypress.php:352
3358
  msgid "Go"
3359
- msgstr "Go"
3360
 
3361
  #: modules/mycred-module-buddypress.php:404
3362
  #: modules/mycred-module-buddypress.php:411
3363
- #: addons/badges/myCRED-addon-badges.php:1140
3364
- #: addons/badges/myCRED-addon-badges.php:1174
3365
  #: addons/gateway/carts/mycred-woocommerce.php:147
3366
  msgid "Do not show"
3367
  msgstr "Ne pas afficher"
3368
 
3369
  #: modules/mycred-module-buddypress.php:405
3370
- #: addons/badges/myCRED-addon-badges.php:1141
3371
  msgid "Include in Profile Header"
3372
  msgstr ""
3373
  "Inclure dans\n"
3374
  " \n"
3375
  "le profil\n"
3376
- "-tête"
3377
 
3378
  #: modules/mycred-module-buddypress.php:406
3379
- #: addons/ranks/myCRED-addon-ranks.php:1478
3380
- #: addons/badges/myCRED-addon-badges.php:1142
3381
  msgid "Include under the \"Profile\" tab"
3382
  msgstr "Inclure sous l'onglet \"Profil\""
3383
 
3384
  #: modules/mycred-module-buddypress.php:407
3385
- #: addons/badges/myCRED-addon-badges.php:1143
3386
  msgid "Include under the \"Profile\" tab and Profile Header"
3387
  msgstr ""
3388
  "Inclure\n"
@@ -3395,7 +3253,7 @@ msgstr ""
3395
  " \n"
3396
  "\"\n"
3397
  "Profil\n"
3398
- "\" En-tête"
3399
 
3400
  #: modules/mycred-module-buddypress.php:412
3401
  msgid "Show in Profile"
@@ -3406,11 +3264,11 @@ msgid "%singular% Balance"
3406
  msgstr "Solde de %singular%"
3407
 
3408
  #: modules/mycred-module-buddypress.php:453
3409
- #: addons/ranks/myCRED-addon-ranks.php:1493
3410
- #: addons/ranks/myCRED-addon-ranks.php:1534
3411
  #: addons/notifications/myCRED-addon-notifications.php:198
3412
  msgid "Template"
3413
- msgstr "Texte à afficher"
3414
 
3415
  #: modules/mycred-module-buddypress.php:463
3416
  msgid "%plural% History"
@@ -3422,7 +3280,10 @@ msgstr "Les membres peuvent voir leurs historiques de %_plural% respectifs."
3422
 
3423
  #: modules/mycred-module-buddypress.php:482
3424
  msgid "Menu Title"
3425
- msgstr "Titre du menu"
 
 
 
3426
 
3427
  #: modules/mycred-module-buddypress.php:484
3428
  msgid "Title shown to me"
@@ -3433,11 +3294,14 @@ msgstr "Le titre que moi je peux voir"
3433
  msgid "Title shown to others. Use %s to show the first name."
3434
  msgstr ""
3435
  "Le titre que voient les autres utilisateurs. Utilisez %s pour afficher le "
3436
- "prénom."
3437
 
3438
  #: modules/mycred-module-buddypress.php:499
3439
  msgid "Menu Position"
3440
- msgstr "Position du menu"
 
 
 
3441
 
3442
  #: modules/mycred-module-buddypress.php:501
3443
  msgid "Current menu positions:"
@@ -3449,7 +3313,7 @@ msgstr "Chemin vers l'historique"
3449
 
3450
  #: modules/mycred-module-buddypress.php:513
3451
  msgid "Number of history entries to show"
3452
- msgstr "Nombre d'historiques à afficher"
3453
 
3454
  #: plugins/mycred-hook-invite-anyone.php:15
3455
  msgid "Invite Anyone Plugin"
@@ -3461,7 +3325,7 @@ msgid ""
3461
  "accepted."
3462
  msgstr ""
3463
  "Attribution de %_plural% pour l'envoi d'invitations et/ou %_plural% quand "
3464
- "une invitation est acceptée."
3465
 
3466
  #: plugins/mycred-hook-invite-anyone.php:215
3467
  #: plugins/mycred-hook-invite-anyone.php:239
@@ -3495,10 +3359,10 @@ msgstr ""
3495
  #: plugins/mycred-hook-buddypress-media.php:348
3496
  #: plugins/mycred-hook-wp-favorite-posts.php:228
3497
  #: plugins/mycred-hook-wp-favorite-posts.php:240
3498
- #: plugins/mycred-hook-contact-form7.php:169
3499
  #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:485
3500
  #: plugins/mycred-hook-bbPress.php:536 plugins/mycred-hook-bbPress.php:560
3501
- #: plugins/mycred-hook-woocommerce.php:510
3502
  #: includes/shortcodes/mycred_hook_table.php:79
3503
  msgid "Limit"
3504
  msgstr "Limite d'attribution"
@@ -3544,15 +3408,79 @@ msgstr "Limite d'attribution"
3544
  #: plugins/mycred-hook-buddypress-media.php:372
3545
  #: plugins/mycred-hook-buddypress-media.php:390
3546
  #: plugins/mycred-hook-buddypress-media.php:408
3547
- #: plugins/mycred-hook-contact-form7.php:175
3548
  #: plugins/mycred-hook-jetpack.php:549 plugins/mycred-hook-jetpack.php:567
3549
  #: plugins/mycred-hook-bbPress.php:449 plugins/mycred-hook-bbPress.php:467
3550
  #: plugins/mycred-hook-bbPress.php:491 plugins/mycred-hook-bbPress.php:518
3551
  #: plugins/mycred-hook-bbPress.php:542 plugins/mycred-hook-bbPress.php:566
3552
  #: plugins/mycred-hook-bbPress.php:593
3553
- #: addons/badges/myCRED-addon-badges.php:949
3554
  msgid "Log template"
3555
- msgstr "Texte à afficher"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3556
 
3557
  #: plugins/mycred-hook-wp-polls.php:15
3558
  msgid "WP-Polls"
@@ -3561,13 +3489,13 @@ msgstr "WP-Polls"
3561
  #: plugins/mycred-hook-wp-polls.php:16
3562
  msgid "Awards %_plural% for users voting in polls."
3563
  msgstr ""
3564
- "Attribuer des %_plural% aux utilisateurs répondants aux sondages.Attribuer "
3565
- "des %_plural% aux utilisateurs répondants aux sondages."
3566
 
3567
  #: plugins/mycred-hook-wp-polls.php:177
3568
  #: plugins/mycred-hook-wp-favorite-posts.php:273
3569
  #: plugins/mycred-hook-wp-favorite-posts.php:288
3570
- #: plugins/mycred-hook-woocommerce.php:516 plugins/mycred-hook-badgeOS.php:144
3571
  #: plugins/mycred-hook-badgeOS.php:146 plugins/mycred-hook-badgeOS.php:157
3572
  #: plugins/mycred-hook-badgeOS.php:327 plugins/mycred-hook-badgeOS.php:345
3573
  #: addons/coupons/myCRED-addon-coupons.php:764
@@ -3579,7 +3507,19 @@ msgstr ""
3579
  #: addons/buy-creds/modules/buycred-module-core.php:426
3580
  #: addons/buy-creds/modules/buycred-module-core.php:453
3581
  msgid "Log Template"
3582
- msgstr "Texte à afficher"
 
 
 
 
 
 
 
 
 
 
 
 
3583
 
3584
  #: plugins/mycred-hook-gravityforms.php:15
3585
  msgid "Gravityform Submissions"
@@ -3587,12 +3527,12 @@ msgstr "Soumissions avec Gravityform"
3587
 
3588
  #: plugins/mycred-hook-gravityforms.php:16
3589
  msgid "Awards %_plural% for successful form submissions."
3590
- msgstr "Attribution de %_plural% pour des soumissions réussies de formulaires"
3591
 
3592
  #: plugins/mycred-hook-gravityforms.php:130
3593
- #: plugins/mycred-hook-contact-form7.php:131
3594
  msgid "No forms found."
3595
- msgstr "Aucun formulaire n'a été trouvé."
3596
 
3597
  #: plugins/mycred-hook-simplepress.php:16
3598
  msgid "Awards %_plural% for Simple:Press actions."
@@ -3616,11 +3556,10 @@ msgid ""
3616
  "zero to disable a specific hook."
3617
  msgstr ""
3618
  "Attribution de %_plural% pour des actions relatives aux groupes. Utilisez "
3619
- "une valeur négative ou zéro pour désactiver un hook spécifique."
3620
 
3621
  #: plugins/mycred-hook-buddypress.php:310
3622
  #: addons/gateway/event-booking/mycred-eventsmanager.php:692
3623
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:727
3624
  #: addons/gateway/carts/mycred-wpecommerce.php:415
3625
  msgid "Insufficient Funds"
3626
  msgstr "Fonds insuffisants"
@@ -3628,7 +3567,7 @@ msgstr "Fonds insuffisants"
3628
  #: plugins/mycred-hook-buddypress.php:784
3629
  #: includes/classes/class.query-log.php:2189
3630
  msgid "Deleted Comment"
3631
- msgstr "Commentaire supprimé"
3632
 
3633
  #: plugins/mycred-hook-buddypress.php:868
3634
  #: includes/classes/class.query-log.php:2208
@@ -3637,13 +3576,12 @@ msgstr "Envoie d'un cadeau"
3637
 
3638
  #: plugins/mycred-hook-affiliatewp.php:306
3639
  msgid "Referring Visitors"
3640
- msgstr "Visiteurs réferants"
3641
 
3642
  #: plugins/mycred-hook-affiliatewp.php:360
3643
  #: includes/shortcodes/mycred_exchange.php:75
3644
  #: addons/gateway/event-booking/mycred-eventespresso3.php:498
3645
  #: addons/gateway/event-booking/mycred-eventsmanager.php:634
3646
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:650
3647
  #: addons/gateway/carts/mycred-wpecommerce.php:389
3648
  #: addons/gateway/carts/mycred-woocommerce.php:136
3649
  msgid "Exchange Rate"
@@ -3661,11 +3599,11 @@ msgstr "Events Manager"
3661
 
3662
  #: plugins/mycred-hook-events-manager-light.php:16
3663
  msgid "Awards %_plural% for users attending events."
3664
- msgstr "Attribuer des %_plural% aux utilisateurs suivants un événement."
3665
 
3666
  #: plugins/mycred-hook-events-manager-light.php:201
3667
  msgid "Attending Event"
3668
- msgstr "Evénement suivi"
3669
 
3670
  #: plugins/mycred-hook-events-manager-light.php:225
3671
  msgid "Cancelling Attendance"
@@ -3681,43 +3619,43 @@ msgid ""
3681
  "social media sites."
3682
  msgstr ""
3683
  "Attribution de %_plural% pour les utilisateurs partageant/aimant le contenu "
3684
- "de votre siteweb sur les réseaux sociaux."
3685
 
3686
  #: plugins/mycred-hook-sharethis.php:216
3687
  msgid "Your ShareThis public key is not set."
3688
- msgstr "Votre clef public SHARETHIS n'est pas fixé."
3689
 
3690
  #: plugins/mycred-hook-sharethis.php:221
3691
  msgid "No ShareThis services detected. Please check your installation."
3692
  msgstr ""
3693
- "Pas de services SHARETHIS détecté. S'il vous plait, vérifiez votre "
3694
  "installation."
3695
 
3696
  #: plugins/mycred-hook-buddypress-media.php:15
3697
  msgid "rtMedia Galleries"
3698
- msgstr "Galeries rtMédia"
3699
 
3700
  #: plugins/mycred-hook-buddypress-media.php:16
3701
  msgid ""
3702
  "Award / Deduct %_plural% for users creating albums or uploading new photos."
3703
  msgstr ""
3704
- "Ajout/supression de %_plural% pour les utilisateurs créant ou "
3705
- "téléchargeant de nouvelles photos"
3706
 
3707
  #: plugins/mycred-hook-buddypress-media.php:290
3708
  #: includes/classes/class.query-log.php:2223
3709
  msgid "Photo Upload"
3710
- msgstr "Télécharger la photo"
3711
 
3712
  #: plugins/mycred-hook-buddypress-media.php:314
3713
  #: includes/classes/class.query-log.php:2224
3714
  msgid "Video Upload"
3715
- msgstr "Télécharger la vidéo"
3716
 
3717
  #: plugins/mycred-hook-buddypress-media.php:338
3718
  #: includes/classes/class.query-log.php:2225
3719
  msgid "Music Upload"
3720
- msgstr "Télécharger la musique"
3721
 
3722
  #: plugins/mycred-hook-wp-favorite-posts.php:15
3723
  msgid "WP Favorite Posts"
@@ -3726,7 +3664,7 @@ msgstr "WP Favorite Posts"
3726
  #: plugins/mycred-hook-wp-favorite-posts.php:16
3727
  msgid "Awards %_plural% for users adding posts to their favorites."
3728
  msgstr ""
3729
- "Attribuer des %_plural% aux utilisateurs ajoutants un article à leurs "
3730
  "favoris."
3731
 
3732
  #: plugins/mycred-hook-wp-favorite-posts.php:218
@@ -3744,8 +3682,8 @@ msgstr "Envoi de formulaires avec Contact Form 7"
3744
  #: plugins/mycred-hook-contact-form7.php:16
3745
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
3746
  msgstr ""
3747
- "Attribution de %_plural% pour chaque formulaire soumis avec succès (par les "
3748
- "utilisateurs connectés)."
3749
 
3750
  #: plugins/mycred-hook-jetpack.php:15
3751
  msgid "Jetpack Subscriptions"
@@ -3769,28 +3707,28 @@ msgstr "Abonnements aux commentaires"
3769
 
3770
  #: plugins/mycred-hook-bbPress.php:16
3771
  msgid "Awards %_plural% for bbPress actions."
3772
- msgstr "Attribution de %_plural% pour des actions relatives à bbPress"
3773
 
3774
  #: plugins/mycred-hook-bbPress.php:501
3775
  msgid "Forum authors can receive %_plural% for creating new topics."
3776
  msgstr ""
3777
- "Les auteurs de forum percoivent des %_plural% pour la création de nouveaux "
3778
  "sujets."
3779
 
3780
  #: plugins/mycred-hook-bbPress.php:605
3781
  msgid "Show users %_plural% balance in replies"
3782
- msgstr "Afficher le relevé de %_plural% dans les réponses des utilisateurs"
3783
 
3784
  #: plugins/mycred-hook-woocommerce.php:91
3785
  #: plugins/mycred-hook-woocommerce.php:157
3786
  msgid "Reward with %plural%"
3787
- msgstr "Récompensez-les avec %plural%"
3788
 
3789
- #: plugins/mycred-hook-woocommerce.php:384
3790
  msgid "WooCommerce Product Reviews"
3791
  msgstr "Produits WooCommerce revus"
3792
 
3793
- #: plugins/mycred-hook-woocommerce.php:385
3794
  msgid ""
3795
  "Awards %_plural% for users leaving reviews on your WooCommerce products."
3796
  msgstr ""
@@ -3806,9 +3744,8 @@ msgid ""
3806
  "Default settings for each BadgeOS Achievement type. These settings may be "
3807
  "overridden for individual achievement type."
3808
  msgstr ""
3809
- "Configuration par défaut de chaque type de réalisation BadgeOS. Ces "
3810
- "paramètres peuvent être remplacés individuellement à partir de chaque "
3811
- "type."
3812
 
3813
  #: plugins/mycred-hook-badgeOS.php:124
3814
  #, php-format
@@ -3825,7 +3762,7 @@ msgstr "Attribution de %_plural%"
3825
 
3826
  #: plugins/mycred-hook-badgeOS.php:142
3827
  msgid "Use zero to disable"
3828
- msgstr "Utilisez zéro pour désactiver"
3829
 
3830
  #: plugins/mycred-hook-badgeOS.php:155
3831
  msgid "Deduction Log Template"
@@ -3837,7 +3774,7 @@ msgstr "myCRED requiert votre attention."
3837
 
3838
  #: includes/mycred-setup.php:50
3839
  msgid "Run Setup"
3840
- msgstr "Démarrer l'installation"
3841
 
3842
  #: includes/mycred-setup.php:63 includes/mycred-setup.php:64
3843
  msgid "myCRED Setup"
@@ -3852,44 +3789,44 @@ msgstr "Configuration %s"
3852
  #: includes/mycred-remote.php:581
3853
  msgid "This feature requires WordPress Permalinks to be setup and enabled!"
3854
  msgstr ""
3855
- "Pour utiliser cette fonctionalité, veuillez paramétrer et activer les "
3856
  "permaliens de WordPress."
3857
 
3858
  #: includes/mycred-remote.php:585
3859
  msgid "Click Update Settings to load the Remote API settings."
3860
  msgstr ""
3861
  "Cliquez sur Enregistrer la configuration pour charger la config de l'API "
3862
- "d'accès à distance."
3863
 
3864
  #: includes/mycred-remote.php:588
3865
  msgid "Allow Remote Access"
3866
- msgstr "Autoriser l'accès à distance"
3867
 
3868
  #: includes/mycred-remote.php:613
3869
  msgid "Remote Access"
3870
- msgstr "Accès à distance"
3871
 
3872
  #: includes/mycred-remote.php:615 addons/buy-creds/gateways/bitpay.php:245
3873
  msgid "API Key"
3874
- msgstr "Clé API"
3875
 
3876
  #: includes/mycred-remote.php:618
3877
  msgid "Key"
3878
- msgstr "Clé"
3879
 
3880
  #: includes/mycred-remote.php:620
3881
  msgid "Required for this feature to work!<br />Minimum 12 characters."
3882
  msgstr ""
3883
  "Obligatoire pour le bon fonctionnement de cette option !<br/>Minimum 12 "
3884
- "caractères"
3885
 
3886
  #: includes/mycred-remote.php:623
3887
  msgid "Key Length"
3888
- msgstr "Longueur de la clé"
3889
 
3890
  #: includes/mycred-remote.php:628
3891
  msgid "Generate New Key"
3892
- msgstr "Générer une nouvelle clé"
3893
 
3894
  #: includes/mycred-remote.php:630
3895
  msgid "Warning!"
@@ -3900,8 +3837,8 @@ msgid ""
3900
  "Keep this key safe! Those you share this key with will be able to remotely "
3901
  "deduct / add / transfer %plural%!"
3902
  msgstr ""
3903
- "Gardez cette clé à l'abri des regards ! Quiconque d'autre que vous qui en "
3904
- "aurait connaissance pourrait ajouter/déduire/transférer des %plural% !"
3905
 
3906
  #: includes/mycred-remote.php:632
3907
  msgid "Incoming URI"
@@ -3913,19 +3850,19 @@ msgid ""
3913
  "ignored."
3914
  msgstr ""
3915
  "L'adresse d'appel entrante. Tout appel distant depuis une autre URL sera "
3916
- "ignoré."
3917
 
3918
  #: includes/mycred-remote.php:639
3919
  msgid "Debug Mode"
3920
- msgstr "Mode débogage"
3921
 
3922
  #: includes/mycred-remote.php:642
3923
  msgid ""
3924
  "Remember to disable when not used to prevent mischievous calls from learning "
3925
  "about your setup!"
3926
  msgstr ""
3927
- "N'oubliez pas de désactiver l'option lorsqu'elle n'est pas utilisée pour "
3928
- "empêcher des appels malicieux qui tenteraient de s'informer sur votre "
3929
  "installation&nbsp;!"
3930
 
3931
  #: includes/mycred-about.php:32
@@ -3936,7 +3873,7 @@ msgstr "Bienvenue dans %s %s"
3936
  #: includes/mycred-overview.php:25
3937
  #, php-format
3938
  msgid "%s Overview"
3939
- msgstr "Aperçu %s"
3940
 
3941
  #: includes/mycred-overview.php:83
3942
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:136
@@ -3950,7 +3887,7 @@ msgstr "Promu"
3950
 
3951
  #: includes/mycred-overview.php:89
3952
  msgid "Deducted"
3953
- msgstr "Déduit"
3954
 
3955
  #: includes/mycred-install.php:73
3956
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
@@ -3962,17 +3899,17 @@ msgid ""
3962
  "check your PHP configuration or contact your host and ask them to enable it "
3963
  "for you!"
3964
  msgstr ""
3965
- "La bibliothèque mcrypt PHP doit être activé dans l'ordre d'utilisation du "
3966
- "plugin! S'il vous plait, vérifier votre configuration PHP ou contactez "
3967
- "votre Hébergeur et lui demander de l'activer pour vous."
3968
 
3969
  #: includes/mycred-install.php:83
3970
  msgid ""
3971
  "Sorry but your WordPress installation does not reach the minimum "
3972
  "requirements for running myCRED. The following errors were given:"
3973
  msgstr ""
3974
- "Désolé mais votre installation WordPress ne dispose pas des ressources "
3975
- "nécessaires au bon fonctionnement de myCRED. Les erreurs suivantes sont "
3976
  "apparues:"
3977
 
3978
  #: includes/mycred-widgets.php:19
@@ -3981,14 +3918,14 @@ msgid "(%s) My Balance"
3981
  msgstr "Mon solde (%s)"
3982
 
3983
  #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
3984
- #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1369
3985
  #: addons/gateway/carts/mycred-woocommerce.php:96
3986
  #: addons/transfer/includes/mycred-transfer-widgets.php:91
3987
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:203
3988
  #: addons/buy-creds/gateways/bank-transfer.php:190
3989
  #: addons/buy-creds/gateways/skrill.php:333
3990
  msgid "Title"
3991
- msgstr "Titre"
3992
 
3993
  #: includes/mycred-widgets.php:199
3994
  msgid "Include history"
@@ -4000,7 +3937,7 @@ msgstr "Titre de l'historique"
4000
 
4001
  #: includes/mycred-widgets.php:207
4002
  msgid "Number of entires"
4003
- msgstr "Nombre d'entrées"
4004
 
4005
  #: includes/mycred-widgets.php:211 includes/mycred-widgets.php:386
4006
  msgid "Row layout"
@@ -4008,12 +3945,12 @@ msgstr "Agencement des colonnes"
4008
 
4009
  #: includes/mycred-widgets.php:218 includes/mycred-widgets.php:586
4010
  msgid "Show message when not logged in"
4011
- msgstr "Afficher les messages quand pas connceté"
4012
 
4013
  #: includes/mycred-widgets.php:222 includes/mycred-widgets.php:590
4014
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:35
4015
  msgid "Message"
4016
- msgstr "Message"
4017
 
4018
  #: includes/mycred-widgets.php:282
4019
  #, php-format
@@ -4022,7 +3959,7 @@ msgstr "Classement (%s)"
4022
 
4023
  #: includes/mycred-widgets.php:373
4024
  msgid "Based On"
4025
- msgstr "Basé sur"
4026
 
4027
  #: includes/mycred-widgets.php:375
4028
  msgid ""
@@ -4031,7 +3968,7 @@ msgid ""
4031
  msgstr ""
4032
  "Utilisez\n"
4033
  " \n"
4034
- "«balance»\n"
4035
  " \n"
4036
  "(ou solde) pour fonder le\n"
4037
  " \n"
@@ -4047,14 +3984,14 @@ msgstr ""
4047
  " \n"
4048
  "ou\n"
4049
  " \n"
4050
- "utiliser une référence\n"
4051
  " \n"
4052
- "spécifique\n"
4053
  "."
4054
 
4055
  #: includes/mycred-widgets.php:375
4056
  msgid "Reference Guide"
4057
- msgstr "Guide de référence"
4058
 
4059
  #: includes/mycred-widgets.php:379
4060
  msgid "Visible to non-members"
@@ -4071,19 +4008,19 @@ msgstr "Compensation"
4071
  #: includes/mycred-widgets.php:393
4072
  msgid "Optional offset of order. Use zero to return the first in the list."
4073
  msgstr ""
4074
- "Offset de tri optionnel. Indiquez zéro pour afficher le premier de la liste."
4075
 
4076
  #: includes/mycred-widgets.php:396
4077
  msgid "Order"
4078
- msgstr "Affichage"
4079
 
4080
  #: includes/mycred-widgets.php:401 includes/classes/class.query-log.php:1081
4081
  msgid "Ascending"
4082
- msgstr "Ascendant"
4083
 
4084
  #: includes/mycred-widgets.php:402 includes/classes/class.query-log.php:1081
4085
  msgid "Descending"
4086
- msgstr "Descendant"
4087
 
4088
  #: includes/mycred-widgets.php:415
4089
  msgid "Append current users position"
@@ -4095,7 +4032,7 @@ msgid ""
4095
  "them at the end with their current position."
4096
  msgstr ""
4097
  "Si l'utilisateur courant ne figure pas dans ce classement, vous pouvez "
4098
- "choisir de l'afficher à la fin avec sa position actuelle"
4099
 
4100
  #: includes/mycred-widgets.php:469
4101
  #, php-format
@@ -4114,59 +4051,59 @@ msgstr "Point"
4114
  msgid "Points"
4115
  msgstr "Points"
4116
 
4117
- #: includes/mycred-functions.php:466
4118
  msgid "Deleted"
4119
- msgstr "Supprimé"
4120
 
4121
- #: includes/mycred-functions.php:607
4122
  msgid "Deleted Item"
4123
- msgstr "Item supprimé"
4124
 
4125
- #: includes/mycred-functions.php:671
4126
  #: addons/email-notices/myCRED-addon-email-notices.php:864
4127
  #: addons/gateway/carts/mycred-wpecommerce.php:370
4128
  msgid "General"
4129
- msgstr "Général"
4130
 
4131
- #: includes/mycred-functions.php:678
4132
  msgid "User Related"
4133
  msgstr "A propos de l'utilisateur"
4134
 
4135
- #: includes/mycred-functions.php:685
4136
  msgid "Post Related"
4137
- msgstr "Relatif à l'article"
4138
 
4139
- #: includes/mycred-functions.php:692
4140
  msgid "Comment Related"
4141
- msgstr "Commentaire concerné"
4142
 
4143
- #: includes/mycred-functions.php:699
4144
  msgid "Widget Related"
4145
- msgstr "Widget concerné"
4146
 
4147
- #: includes/mycred-functions.php:706
4148
  msgid "Amount Related"
4149
- msgstr "Montant concerné"
4150
 
4151
- #: includes/mycred-functions.php:713
4152
  msgid "Video Related"
4153
- msgstr "Vidéo concernée"
4154
 
4155
- #: includes/mycred-functions.php:724
4156
  msgid "and"
4157
  msgstr "et"
4158
 
4159
- #: includes/mycred-functions.php:726
4160
  msgid "Available Template Tags:"
4161
- msgstr "Mots clés de template disponibles"
4162
 
4163
  #: includes/importers/mycred-cubepoints.php:282
4164
  msgid "No balances were imported."
4165
- msgstr "Aucun solde n'a été importé"
4166
 
4167
  #: includes/importers/mycred-cubepoints.php:282
4168
  msgid "No log entries were imported!"
4169
- msgstr "Aucune donnée n'a été importée"
4170
 
4171
  #: includes/importers/mycred-cubepoints.php:288
4172
  #: includes/importers/mycred-balances.php:229
@@ -4175,23 +4112,23 @@ msgid ""
4175
  "Import complete - A total of <strong>%d</strong> balances were successfully "
4176
  "imported. <strong>%d</strong> was skipped."
4177
  msgstr ""
4178
- "Import terminé - Un total de <strong>%d</strong> soldes a été importé "
4179
- "avec succès ! <strong>%d</strong> reste(nt) ignoré(s)"
4180
 
4181
  #: includes/importers/mycred-cubepoints.php:340
4182
  #: includes/importers/mycred-cubepoints.php:364
4183
  #: includes/importers/mycred-balances.php:323
4184
  #: includes/importers/mycred-log-entries.php:308
4185
  msgid "Import"
4186
- msgstr "Importer"
4187
 
4188
  #: includes/importers/mycred-cubepoints.php:344
4189
  msgid "Select what to import"
4190
- msgstr "Sélectionnez ce que vous voulez importer"
4191
 
4192
  #: includes/importers/mycred-cubepoints.php:345
4193
  msgid "Log Entries Only"
4194
- msgstr "Uniquement les entrées enregistrées"
4195
 
4196
  #: includes/importers/mycred-cubepoints.php:346
4197
  msgid "CubePoints Balances Only"
@@ -4199,18 +4136,18 @@ msgstr "uniquement les soldes cubePoints"
4199
 
4200
  #: includes/importers/mycred-cubepoints.php:347
4201
  msgid "Log Entries and Balances"
4202
- msgstr "Les entrées et les soldes"
4203
 
4204
  #: includes/importers/mycred-balances.php:284
4205
  #: includes/importers/mycred-log-entries.php:280
4206
  msgid "Choose a file from your computer:"
4207
- msgstr "Sélectionnez un fichier:"
4208
 
4209
  #: includes/importers/mycred-balances.php:290
4210
  #: includes/importers/mycred-log-entries.php:286
4211
  #, php-format
4212
  msgid "Maximum size: %s"
4213
- msgstr "Taille maximum: %s"
4214
 
4215
  #: includes/importers/mycred-balances.php:295
4216
  #: includes/importers/mycred-log-entries.php:291
@@ -4220,11 +4157,11 @@ msgstr "OU indiquez le chemin vers le fichier:"
4220
  #: includes/importers/mycred-balances.php:303
4221
  #: includes/importers/mycred-log-entries.php:299
4222
  msgid "Delimiter"
4223
- msgstr "Délimiteur"
4224
 
4225
  #: includes/importers/mycred-balances.php:311
4226
  msgid "Method"
4227
- msgstr "Méthode"
4228
 
4229
  #: includes/importers/mycred-balances.php:315
4230
  msgid "Replace current balances with the amount in this CSV file"
@@ -4246,12 +4183,12 @@ msgstr "Afficher le rapport"
4246
  #: includes/shortcodes/mycred_exchange.php:156
4247
  #, php-format
4248
  msgid "You are excluded from using %s."
4249
- msgstr "Vous êtes exclu d'utiliser %s"
4250
 
4251
  #: includes/shortcodes/mycred_exchange.php:37
4252
  #: includes/shortcodes/mycred_exchange.php:146
4253
  msgid "Your balance is too low to use this feature."
4254
- msgstr "Votre solde est trop bas pour utiliser cet élément."
4255
 
4256
  #: includes/shortcodes/mycred_exchange.php:63
4257
  #, php-format
@@ -4270,17 +4207,17 @@ msgstr "1 %s = <span class=\"Taux\">%s</span> %s"
4270
 
4271
  #: includes/shortcodes/mycred_exchange.php:124
4272
  msgid "Point types not found."
4273
- msgstr "Types de point non trouvé."
4274
 
4275
  #: includes/shortcodes/mycred_exchange.php:169
4276
  #, php-format
4277
  msgid "You must exchange at least %s!"
4278
- msgstr "Vous devez échanger au minimum %s!"
4279
 
4280
  #: includes/shortcodes/mycred_exchange.php:178
4281
  #: addons/transfer/myCRED-addon-transfer.php:174
4282
  msgid "Insufficient Funds. Please try a lower amount."
4283
- msgstr "Insuffisance de fonds. S'il vous plait, essayez un montant inférieur."
4284
 
4285
  #: includes/shortcodes/mycred_exchange.php:191
4286
  #, php-format
@@ -4295,11 +4232,11 @@ msgstr "Echange de %s"
4295
  #: includes/shortcodes/mycred_exchange.php:211
4296
  #, php-format
4297
  msgid "You have successfully exchanged %s into %s."
4298
- msgstr "Vous avez échangez avec succès %s en %s."
4299
 
4300
  #: includes/shortcodes/mycred_video.php:44
4301
  msgid "A video ID is required for this shortcode"
4302
- msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
4303
 
4304
  #: includes/classes/class.query-export.php:374
4305
  #: includes/classes/class.query-log.php:1526
@@ -4308,15 +4245,15 @@ msgstr "Utilisateur inexistant"
4308
 
4309
  #: includes/classes/class.query-export.php:487
4310
  msgid "Search Results"
4311
- msgstr "Résultats de la recherche"
4312
 
4313
  #: includes/classes/class.query-log.php:954
4314
  msgid "No log entries found"
4315
- msgstr "Aucun enregistrement à afficher."
4316
 
4317
  #: includes/classes/class.query-log.php:1055
4318
  msgid "Show all references"
4319
- msgstr "Afficher toutes les références"
4320
 
4321
  #: includes/classes/class.query-log.php:1080
4322
  msgid "Show in order"
@@ -4324,7 +4261,7 @@ msgstr "Afficher sur la commande"
4324
 
4325
  #: includes/classes/class.query-log.php:1101
4326
  msgid "Filter"
4327
- msgstr "Filtre"
4328
 
4329
  #: includes/classes/class.query-log.php:1694
4330
  msgid "No export options available."
@@ -4337,7 +4274,7 @@ msgstr "Journal de recherche"
4337
 
4338
  #: includes/classes/class.query-log.php:1728
4339
  msgid "search log entries"
4340
- msgstr "Recherchez une donnée"
4341
 
4342
  #: includes/classes/class.query-log.php:2180
4343
  msgid "Website Registration"
@@ -4361,15 +4298,15 @@ msgstr "Connectez-vous"
4361
 
4362
  #: includes/classes/class.query-log.php:2185
4363
  msgid "Publishing Content"
4364
- msgstr "Publié le contenu"
4365
 
4366
  #: includes/classes/class.query-log.php:2186
4367
  msgid "Approved Comment"
4368
- msgstr "Commentaire approuvé"
4369
 
4370
  #: includes/classes/class.query-log.php:2187
4371
  msgid "Unapproved Comment"
4372
- msgstr "Commentaire non approuvé"
4373
 
4374
  #: includes/classes/class.query-log.php:2188
4375
  msgid "SPAM Comment"
@@ -4377,27 +4314,27 @@ msgstr "Commentaire SPAM"
4377
 
4378
  #: includes/classes/class.query-log.php:2190
4379
  msgid "Link Click"
4380
- msgstr "Lien cliqué"
4381
 
4382
  #: includes/classes/class.query-log.php:2191
4383
  msgid "Watching Video"
4384
- msgstr "Vidéo regardé"
4385
 
4386
  #: includes/classes/class.query-log.php:2192
4387
  msgid "Visitor Referral"
4388
- msgstr "Visiter référant"
4389
 
4390
  #: includes/classes/class.query-log.php:2193
4391
  msgid "Signup Referral"
4392
- msgstr "Inscription référant"
4393
 
4394
  #: includes/classes/class.query-log.php:2197
4395
  msgid "New Profile Update"
4396
- msgstr "Nouveau profil mis à jour"
4397
 
4398
  #: includes/classes/class.query-log.php:2199
4399
  msgid "Avatar Upload"
4400
- msgstr "Téléchargement d'avatar"
4401
 
4402
  #: includes/classes/class.query-log.php:2201
4403
  msgid "New Friendship"
@@ -4405,7 +4342,7 @@ msgstr "Nouvel amis"
4405
 
4406
  #: includes/classes/class.query-log.php:2202
4407
  msgid "Ended Friendship"
4408
- msgstr "Fin d'amitié"
4409
 
4410
  #: includes/classes/class.query-log.php:2203
4411
  msgid "New Profile Comment"
@@ -4421,11 +4358,11 @@ msgstr "Nouveau message"
4421
 
4422
  #: includes/classes/class.query-log.php:2209
4423
  msgid "New Group"
4424
- msgstr "Nouveau groupe"
4425
 
4426
  #: includes/classes/class.query-log.php:2210
4427
  msgid "Deleted Group"
4428
- msgstr "Groupe supprimé"
4429
 
4430
  #: includes/classes/class.query-log.php:2211
4431
  msgid "New Group Forum Topic"
@@ -4469,7 +4406,7 @@ msgstr "Lien de vote"
4469
 
4470
  #: includes/classes/class.query-log.php:2231
4471
  msgid "Link Update"
4472
- msgstr "Lien mis à jour"
4473
 
4474
  #: includes/classes/class.query-log.php:2235
4475
  msgid "New Forum (bbPress)"
@@ -4485,7 +4422,7 @@ msgstr "Sujet favoris (bbPress)"
4485
 
4486
  #: includes/classes/class.query-log.php:2238
4487
  msgid "New Topic Reply (bbPress)"
4488
- msgstr "Nouvelle réponse d'un sujet (Bbpress)"
4489
 
4490
  #: includes/classes/class.query-log.php:2242
4491
  msgid "Form Submission (Contact Form 7)"
@@ -4503,14 +4440,6 @@ msgstr "Nouveau sujet de Forum (SimplePress)"
4503
  msgid "New Forum Post (SimplePress)"
4504
  msgstr "Nouveau post sur le forum (SimplePress)"
4505
 
4506
- #: includes/classes/class.query-log.php:2258
4507
- msgid "Affiliate Signup (AffiliateWP)"
4508
- msgstr "Inscription parrainées"
4509
-
4510
- #: includes/classes/class.query-log.php:2259
4511
- msgid "Referred Visit (AffiliateWP)"
4512
- msgstr "Visites parrainées"
4513
-
4514
  #: includes/classes/class.query-log.php:2270
4515
  msgid "Poll Voting"
4516
  msgstr "Poll Voting"
@@ -4526,7 +4455,7 @@ msgstr "Accepter une invitation"
4526
  #: includes/classes/class.query-log.php:2280
4527
  #: addons/banking/myCRED-addon-banking.php:150
4528
  msgid "Compound Interest"
4529
- msgstr "Appliquer des Intérêts"
4530
 
4531
  #: includes/classes/class.query-log.php:2288
4532
  msgid "buyCRED Purchase (PayPal Standard)"
@@ -4562,24 +4491,24 @@ msgstr "Magasin achat (Wp E-commence)"
4562
 
4563
  #: includes/classes/class.query-log.php:2317
4564
  msgid "Event Payment (Event Espresso)"
4565
- msgstr "Evènement paiement (Event Espresso)"
4566
 
4567
  #: includes/classes/class.query-log.php:2318
4568
  msgid "Event Sale (Event Espresso)"
4569
- msgstr "Evènement vendu (Event Espresso)"
4570
 
4571
  #: includes/classes/class.query-log.php:2322
4572
  msgid "Event Payment (Events Manager)"
4573
- msgstr "Evènement payé (Events Manager)"
4574
 
4575
  #: includes/classes/class.query-log.php:2323
4576
  msgid "Event Sale (Events Manager)"
4577
- msgstr "Evènement vendu (Events Manager)"
4578
 
4579
  #: includes/classes/class.query-log.php:2332
4580
  #: addons/transfer/myCRED-addon-transfer.php:48
4581
  msgid "Transfer"
4582
- msgstr "Transférer"
4583
 
4584
  #: includes/classes/class.query-log.php:2336
4585
  msgid "Manual Adjustment by Admin"
@@ -4597,7 +4526,7 @@ msgstr "Banque central"
4597
 
4598
  #: addons/banking/myCRED-addon-banking.php:159
4599
  msgid "Recurring Payouts"
4600
- msgstr "Paiements répétés"
4601
 
4602
  #: addons/banking/myCRED-addon-banking.php:160
4603
  msgid "Setup mass %_singular% payouts for your users."
@@ -4612,7 +4541,7 @@ msgstr "Paiement %s"
4612
  #: addons/banking/myCRED-addon-banking.php:273
4613
  #: addons/buy-creds/modules/buycred-module-core.php:618
4614
  msgid "Enable"
4615
- msgstr "Activer"
4616
 
4617
  #: addons/banking/myCRED-addon-banking.php:292
4618
  msgid "Update Changes"
@@ -4624,31 +4553,31 @@ msgstr "Vous n&#39;avez pas suffisamment de %plural% &agrave; envoyer."
4624
 
4625
  #: addons/transfer/myCRED-addon-transfer.php:42
4626
  msgid "You have exceeded your %limit% transfer limit."
4627
- msgstr "Vous avez dépass&eacute; votre limite de transfert %limit%."
4628
 
4629
  #: addons/transfer/myCRED-addon-transfer.php:167
4630
  msgid "Transaction completed."
4631
- msgstr "Transaction terminée."
4632
 
4633
  #: addons/transfer/myCRED-addon-transfer.php:168
4634
  msgid ""
4635
  "Security token could not be verified. Please contact your site administrator!"
4636
  msgstr ""
4637
- "Le jeton de sécurité n'a pas pu être vérifié. Veuillez contacter "
4638
  "l'administrateur du site."
4639
 
4640
  #: addons/transfer/myCRED-addon-transfer.php:169
4641
  #: addons/transfer/myCRED-addon-transfer.php:176
4642
  msgid "Communications error. Please try again later."
4643
- msgstr "Erreur de communication. Veuillez essayer ultérieurement."
4644
 
4645
  #: addons/transfer/myCRED-addon-transfer.php:170
4646
  msgid "Recipient not found. Please try again."
4647
- msgstr "Le destinataire n'a pas été trouvé. Veuillez recommencer."
4648
 
4649
  #: addons/transfer/myCRED-addon-transfer.php:171
4650
  msgid "Transaction declined by recipient."
4651
- msgstr "Transaction refusée par le destinataire."
4652
 
4653
  #: addons/transfer/myCRED-addon-transfer.php:172
4654
  msgid "Incorrect amount. Please try again."
@@ -4659,16 +4588,16 @@ msgid ""
4659
  "This myCRED Add-on has not yet been setup! No transfers are allowed until "
4660
  "this has been done!"
4661
  msgstr ""
4662
- "Ce module myCRED n'a pas encore été paramétré. Aucun transfert n'est "
4663
- "autorisé avant qu'il ne soit activé."
4664
 
4665
  #: addons/transfer/myCRED-addon-transfer.php:175
4666
  msgid "Transfer Limit exceeded."
4667
- msgstr "La limite de transfert a été dépassée."
4668
 
4669
  #: addons/transfer/myCRED-addon-transfer.php:340
4670
  msgid "No limits."
4671
- msgstr "Illimité."
4672
 
4673
  #: addons/transfer/myCRED-addon-transfer.php:341
4674
  msgid "Impose daily limit."
@@ -4689,12 +4618,12 @@ msgstr "Email (user_email)"
4689
  #: addons/transfer/myCRED-addon-transfer.php:355
4690
  #: addons/buy-creds/gateways/bitpay.php:299
4691
  msgid "Yes"
4692
- msgstr "oui"
4693
 
4694
  #: addons/transfer/myCRED-addon-transfer.php:356
4695
  #: addons/buy-creds/gateways/bitpay.php:298
4696
  msgid "No"
4697
- msgstr "non"
4698
 
4699
  #: addons/transfer/myCRED-addon-transfer.php:363
4700
  msgid "Transfers"
@@ -4702,23 +4631,23 @@ msgstr "transferts"
4702
 
4703
  #: addons/transfer/myCRED-addon-transfer.php:381
4704
  msgid "Reload"
4705
- msgstr "Rafraîchir"
4706
 
4707
  #: addons/transfer/myCRED-addon-transfer.php:405
4708
  msgid "Autofill Recipient"
4709
- msgstr "Autocomplétion du destinataire"
4710
 
4711
  #: addons/transfer/myCRED-addon-transfer.php:417
4712
  msgid "Select what user details recipients should be autofilled by."
4713
  msgstr ""
4714
- "Sélectionnez les détails à afficher en autocomplétion aux destinataires."
4715
 
4716
  #: addons/transfer/myCRED-addon-transfer.php:424
4717
  #: addons/coupons/myCRED-addon-coupons.php:252
4718
  #: addons/banking/services/mycred-service-payouts.php:599
4719
  #: addons/banking/services/mycred-service-payouts.php:760
4720
  msgid "Limits"
4721
- msgstr "Règles de limitation"
4722
 
4723
  #: addons/transfer/myCRED-addon-transfer.php:443
4724
  msgid "Limit Amount"
@@ -4727,17 +4656,24 @@ msgstr "Montant limite"
4727
  #: addons/transfer/myCRED-addon-transfer.php:456
4728
  #: addons/sell-content/myCRED-addon-sell-content.php:685
4729
  #: addons/gateway/event-booking/mycred-eventsmanager.php:641
4730
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:657
4731
  msgid "Log Templates"
4732
- msgstr "Textes à afficher"
4733
 
4734
  #: addons/transfer/myCRED-addon-transfer.php:460
4735
  msgid "Log template for sending"
4736
- msgstr "Affichage de l'avis d'expédition"
4737
 
4738
  #: addons/transfer/myCRED-addon-transfer.php:467
4739
  msgid "Log template for receiving"
4740
- msgstr "Affichage de l'avis de récéption"
 
 
 
 
 
 
 
 
4741
 
4742
  #: addons/ranks/myCRED-addon-ranks.php:218
4743
  #: addons/ranks/myCRED-addon-ranks.php:227
@@ -4745,8 +4681,8 @@ msgstr "Affichage de l'avis de récéption"
4745
  #: addons/ranks/myCRED-addon-ranks.php:339
4746
  #: addons/ranks/myCRED-addon-ranks.php:340
4747
  #: addons/ranks/myCRED-addon-ranks.php:724
4748
- #: addons/ranks/myCRED-addon-ranks.php:1359
4749
- #: addons/ranks/myCRED-addon-ranks.php:1654
4750
  msgid "Ranks"
4751
  msgstr "Attribution de Points"
4752
 
@@ -4785,13 +4721,13 @@ msgid "Search Ranks"
4785
  msgstr "Rechercher un classement"
4786
 
4787
  #: addons/ranks/myCRED-addon-ranks.php:234
4788
- #: addons/ranks/myCRED-addon-ranks.php:1286
4789
  msgid "No ranks found"
4790
- msgstr "Aucun classement trouvé"
4791
 
4792
  #: addons/ranks/myCRED-addon-ranks.php:235
4793
  msgid "No ranks found in Trash"
4794
- msgstr "Aucun classement trouvé dans la corbeille"
4795
 
4796
  #: addons/ranks/myCRED-addon-ranks.php:283
4797
  #: addons/ranks/myCRED-addon-ranks.php:284
@@ -4801,172 +4737,172 @@ msgstr "Aucun classement trouvé dans la corbeille"
4801
  #: addons/ranks/myCRED-addon-ranks.php:290
4802
  #: addons/ranks/myCRED-addon-ranks.php:291
4803
  msgid "Rank Updated."
4804
- msgstr "Rang mis à jour."
4805
 
4806
  #: addons/ranks/myCRED-addon-ranks.php:481
4807
  #, php-format
4808
  msgid "Completed - Total of %d users effected"
4809
- msgstr "Terminé - %d utilisateurs ont été affectés"
4810
 
4811
  #: addons/ranks/myCRED-addon-ranks.php:987
4812
  msgid "Warning! All ranks will be deleted! This can not be undone!"
4813
  msgstr ""
4814
- "Attention ! Tous les classements vont être supprimés. Cette action ne "
4815
- "pourra pas être annulée."
4816
 
4817
  #: addons/ranks/myCRED-addon-ranks.php:988
4818
  msgid "Are you sure you want to re-assign user ranks?"
4819
- msgstr "Je confirme la réassignation du classement de l'utilisateur"
4820
 
4821
- #: addons/ranks/myCRED-addon-ranks.php:1073
4822
- #: addons/ranks/myCRED-addon-ranks.php:1174
4823
  msgid "Rank Title"
4824
  msgstr "Titre du classement"
4825
 
4826
- #: addons/ranks/myCRED-addon-ranks.php:1074
4827
  msgid "Logo"
4828
  msgstr "Logo"
4829
 
4830
- #: addons/ranks/myCRED-addon-ranks.php:1075
4831
- #: addons/badges/myCRED-addon-badges.php:828
4832
- #: addons/badges/myCRED-addon-badges.php:829
4833
  msgid "Requirement"
4834
  msgstr "Obligation"
4835
 
4836
- #: addons/ranks/myCRED-addon-ranks.php:1101
4837
  msgid "No Logo Set"
4838
- msgstr "Aucun logo défini"
4839
 
4840
- #: addons/ranks/myCRED-addon-ranks.php:1116
4841
- #: addons/ranks/myCRED-addon-ranks.php:1121
4842
  msgid "Any Value"
4843
  msgstr "Valeur au choix"
4844
 
4845
- #: addons/ranks/myCRED-addon-ranks.php:1118
4846
  #: addons/buy-creds/modules/buycred-module-core.php:345
4847
  msgid "Minimum %plural%"
4848
  msgstr "%plural% minimum"
4849
 
4850
- #: addons/ranks/myCRED-addon-ranks.php:1123
4851
  msgid "Maximum %plural%"
4852
  msgstr "Maximum de %plural%"
4853
 
4854
- #: addons/ranks/myCRED-addon-ranks.php:1275
4855
- #: addons/ranks/myCRED-addon-ranks.php:1276
4856
  msgid "Not Set"
4857
- msgstr "Non configuré"
4858
 
4859
- #: addons/ranks/myCRED-addon-ranks.php:1366
4860
  msgid "Rank Features"
4861
- msgstr "Caractéristiques du classement"
4862
 
4863
- #: addons/ranks/myCRED-addon-ranks.php:1372
4864
  msgid "%plural% requirement"
4865
  msgstr "condition requise pour l&#39;attribution de %_plural%"
4866
 
4867
- #: addons/ranks/myCRED-addon-ranks.php:1378
4868
  msgid "Content"
4869
- msgstr "Contenu"
4870
 
4871
- #: addons/ranks/myCRED-addon-ranks.php:1381
4872
  msgid "Excerpt"
4873
  msgstr "Extrait"
4874
 
4875
- #: addons/ranks/myCRED-addon-ranks.php:1384
4876
  msgid "Comments"
4877
  msgstr "Commentaires"
4878
 
4879
- #: addons/ranks/myCRED-addon-ranks.php:1387
4880
  msgid "Page Attributes"
4881
  msgstr "Attributs de la page"
4882
 
4883
- #: addons/ranks/myCRED-addon-ranks.php:1390
4884
  msgid "Custom Fields"
4885
- msgstr "Champs Personnalisés"
4886
 
4887
- #: addons/ranks/myCRED-addon-ranks.php:1407
4888
  msgid "Display Order"
4889
  msgstr "Ordre d'affichage"
4890
 
4891
- #: addons/ranks/myCRED-addon-ranks.php:1413
4892
  msgid "Ascending - Lowest rank to highest"
4893
  msgstr "Ascendant - Du plus petit au plus grand"
4894
 
4895
- #: addons/ranks/myCRED-addon-ranks.php:1414
4896
  msgid "Descending - Highest rank to lowest"
4897
  msgstr "Descendant - Du plus grand au plus petit"
4898
 
4899
- #: addons/ranks/myCRED-addon-ranks.php:1456
4900
  msgid "Calculate Totals"
4901
  msgstr "Calculer les totaux"
4902
 
4903
- #: addons/ranks/myCRED-addon-ranks.php:1476
4904
- #: addons/ranks/myCRED-addon-ranks.php:1517
4905
  msgid "Do not show."
4906
  msgstr "Ne pas afficher."
4907
 
4908
- #: addons/ranks/myCRED-addon-ranks.php:1477
4909
  msgid "Include in Profile Header."
4910
- msgstr "Inclure dans l'en-tête du profil."
4911
 
4912
- #: addons/ranks/myCRED-addon-ranks.php:1479
4913
  msgid "Include under the \"Profile\" tab and Profile Header."
4914
- msgstr "Inclure sous l'onglet \"Profil\" et dans l'en-tête du profil."
4915
 
4916
- #: addons/ranks/myCRED-addon-ranks.php:1519
4917
- #: addons/badges/myCRED-addon-badges.php:1175
4918
  msgid "Include in Profile"
4919
  msgstr "Inclure dans le profil"
4920
 
4921
- #: addons/ranks/myCRED-addon-ranks.php:1546
4922
- #: addons/email-notices/myCRED-addon-email-notices.php:1456
4923
- #: addons/badges/myCRED-addon-badges.php:1202
4924
  #: addons/buy-creds/modules/buycred-module-core.php:460
4925
  msgid "Available Shortcodes"
4926
  msgstr "Shortcodes disponibles"
4927
 
4928
- #: addons/ranks/myCRED-addon-ranks.php:1657
4929
  msgid "User Meta Key"
4930
- msgstr "Mot clé utilisateur"
4931
 
4932
- #: addons/ranks/myCRED-addon-ranks.php:1661
4933
  msgid "No. of ranks"
4934
- msgstr "N° de classement"
4935
 
4936
- #: addons/ranks/myCRED-addon-ranks.php:1666
4937
  msgid "Remove All Ranks"
4938
  msgstr "Supprimer tous les classements"
4939
 
4940
- #: addons/ranks/myCRED-addon-ranks.php:1666
4941
  msgid "Assign Ranks to Users"
4942
- msgstr "Attribuer un classement à l'utilisateur"
4943
 
4944
  #: addons/notifications/myCRED-addon-notifications.php:191
4945
  msgid "Notifications"
4946
- msgstr "Notifications"
4947
 
4948
  #: addons/notifications/myCRED-addon-notifications.php:200
4949
  msgid ""
4950
  "Use %entry% to show the log entry in the notice and %amount% for the amount."
4951
  msgstr ""
4952
- "Utilisez %entry% pour afficher l'élément concerné dans la notice et "
4953
- "%amount% pour afficher le montant."
4954
 
4955
  #: addons/notifications/myCRED-addon-notifications.php:207
4956
  msgid "Transient Lifespan"
4957
- msgstr "Durée transitoire"
4958
 
4959
  #: addons/notifications/myCRED-addon-notifications.php:209
4960
  msgid ""
4961
  "The number of days a users notification is saved before being automatically "
4962
  "deleted."
4963
  msgstr ""
4964
- "Le nombre de jours de conservations d'une notice adressée à l'utilisateur "
4965
- "avant qu'elle ne soit automatiquement supprimée."
4966
 
4967
  #: addons/notifications/myCRED-addon-notifications.php:214
4968
  msgid "Duration"
4969
- msgstr "Durée"
4970
 
4971
  #: addons/notifications/myCRED-addon-notifications.php:224
4972
  msgid "Use the included CSS Styling for notifications."
@@ -4981,18 +4917,18 @@ msgstr "Utiliser le style CSS inclus pour les notifications."
4981
  #: addons/email-notices/myCRED-addon-email-notices.php:179
4982
  #: addons/email-notices/myCRED-addon-email-notices.php:180
4983
  msgid "Email Notice Updated."
4984
- msgstr "Notice d'Email mis à jour."
4985
 
4986
  #: addons/email-notices/myCRED-addon-email-notices.php:258
4987
  #: addons/email-notices/myCRED-addon-email-notices.php:275
4988
  msgid "Email Subject"
4989
- msgstr "Sujet du mail"
4990
 
4991
  #: addons/email-notices/myCRED-addon-email-notices.php:276
4992
  #: addons/banking/services/mycred-service-payouts.php:565
4993
  #: addons/banking/services/mycred-service-payouts.php:880
4994
  msgid "Status"
4995
- msgstr "Statut"
4996
 
4997
  #: addons/email-notices/myCRED-addon-email-notices.php:302
4998
  msgid "Not Active"
@@ -5006,7 +4942,7 @@ msgstr "Pr&eacute;vu pour le:<br /><strong>%1$s</strong>"
5006
  #: addons/email-notices/myCRED-addon-email-notices.php:310
5007
  #: addons/banking/services/mycred-service-payouts.php:31
5008
  msgid "Active"
5009
- msgstr "Actif"
5010
 
5011
  #: addons/email-notices/myCRED-addon-email-notices.php:312
5012
  #, php-format
@@ -5015,17 +4951,17 @@ msgstr "Actif - derni&egave;re utilisation:<br /><strong>%1$s</strong>"
5015
 
5016
  #: addons/email-notices/myCRED-addon-email-notices.php:325
5017
  msgid "Email is sent when"
5018
- msgstr "Le mail sera envoyé quand"
5019
 
5020
  #: addons/email-notices/myCRED-addon-email-notices.php:327
5021
  msgid "Missing instance for this notice!"
5022
- msgstr "Ce message n'est pas instancié !"
5023
 
5024
  #: addons/email-notices/myCRED-addon-email-notices.php:336
5025
  #: addons/email-notices/myCRED-addon-email-notices.php:338
5026
  #: addons/email-notices/myCRED-addon-email-notices.php:340
5027
  msgid "Sent To"
5028
- msgstr "Envoyer à"
5029
 
5030
  #: addons/email-notices/myCRED-addon-email-notices.php:338
5031
  #: addons/email-notices/myCRED-addon-email-notices.php:571
@@ -5034,27 +4970,27 @@ msgstr "Administrateur"
5034
 
5035
  #: addons/email-notices/myCRED-addon-email-notices.php:340
5036
  msgid "Both Administrator and User"
5037
- msgstr "A l'administrateur et à l'utilisateur"
5038
 
5039
  #: addons/email-notices/myCRED-addon-email-notices.php:388
5040
  msgid "Email Settings"
5041
- msgstr "Configuration des mails"
5042
 
5043
  #: addons/email-notices/myCRED-addon-email-notices.php:397
5044
  msgid "Available Template Tags"
5045
- msgstr "Mots-clés utilisables ici"
5046
 
5047
  #: addons/email-notices/myCRED-addon-email-notices.php:408
5048
  msgid "Email Header"
5049
- msgstr "En-tête du mail"
5050
 
5051
  #: addons/email-notices/myCRED-addon-email-notices.php:494
5052
  msgid ""
5053
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
5054
  "you are not yet ready to use this email notice!"
5055
  msgstr ""
5056
- "<strong>ATTENTION</strong><br/>Une fois que le message est publié il est "
5057
- "actif ! Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à "
5058
  "l'utiliser."
5059
 
5060
  #: addons/email-notices/myCRED-addon-email-notices.php:496
@@ -5064,7 +5000,7 @@ msgstr "Ce message sera activ&eacute; le:<br /><strong>%1$s</strong>"
5064
 
5065
  #: addons/email-notices/myCRED-addon-email-notices.php:498
5066
  msgid "This email notice is active."
5067
- msgstr "Ce message est activé."
5068
 
5069
  #: addons/email-notices/myCRED-addon-email-notices.php:524
5070
  msgid "Send this email notice when..."
@@ -5076,25 +5012,25 @@ msgstr "Destinataire:"
5076
 
5077
  #: addons/email-notices/myCRED-addon-email-notices.php:574
5078
  msgid "Both"
5079
- msgstr "Les deux"
5080
 
5081
  #: addons/email-notices/myCRED-addon-email-notices.php:610
5082
- #: addons/email-notices/myCRED-addon-email-notices.php:1467
5083
  msgid "Senders Name:"
5084
- msgstr "Expéditeur:"
5085
 
5086
  #: addons/email-notices/myCRED-addon-email-notices.php:614
5087
- #: addons/email-notices/myCRED-addon-email-notices.php:1473
5088
  msgid "Senders Email:"
5089
- msgstr "Email de l'expéditeur"
5090
 
5091
  #: addons/email-notices/myCRED-addon-email-notices.php:618
5092
  msgid "Reply-To Email:"
5093
- msgstr "Adresse de réponse"
5094
 
5095
  #: addons/email-notices/myCRED-addon-email-notices.php:643
5096
  msgid "CSS Styling"
5097
- msgstr "Règles de style"
5098
 
5099
  #: addons/email-notices/myCRED-addon-email-notices.php:666
5100
  msgid "Site Related"
@@ -5122,7 +5058,7 @@ msgstr "Total des membres de votre blog"
5122
 
5123
  #: addons/email-notices/myCRED-addon-email-notices.php:865
5124
  msgid "users balance changes"
5125
- msgstr "le solde a changé"
5126
 
5127
  #: addons/email-notices/myCRED-addon-email-notices.php:866
5128
  msgid "user gains %_plural%"
@@ -5134,11 +5070,11 @@ msgstr "perte de %_plural%"
5134
 
5135
  #: addons/email-notices/myCRED-addon-email-notices.php:868
5136
  msgid "users balance reaches zero"
5137
- msgstr "le solde est à zéro"
5138
 
5139
  #: addons/email-notices/myCRED-addon-email-notices.php:869
5140
  msgid "users balance goes minus"
5141
- msgstr "le solde est négatif"
5142
 
5143
  #: addons/email-notices/myCRED-addon-email-notices.php:883
5144
  msgid "Sell Content Add-on"
@@ -5146,11 +5082,11 @@ msgstr "Module de vente de contenu"
5146
 
5147
  #: addons/email-notices/myCRED-addon-email-notices.php:884
5148
  msgid "user buys content"
5149
- msgstr "l'utilisateur a acheté du contenu"
5150
 
5151
  #: addons/email-notices/myCRED-addon-email-notices.php:885
5152
  msgid "authors content gets sold"
5153
- msgstr "le contenu de cet auteur a été vendu"
5154
 
5155
  #: addons/email-notices/myCRED-addon-email-notices.php:892
5156
  msgid "buyCREDs Add-on"
@@ -5158,7 +5094,7 @@ msgstr "Module achatCRED"
5158
 
5159
  #: addons/email-notices/myCRED-addon-email-notices.php:893
5160
  msgid "user buys %_plural%"
5161
- msgstr "l'utilisateur a acheté des %_plural%"
5162
 
5163
  #: addons/email-notices/myCRED-addon-email-notices.php:900
5164
  msgid "Transfer Add-on"
@@ -5166,11 +5102,11 @@ msgstr "Module de transfert"
5166
 
5167
  #: addons/email-notices/myCRED-addon-email-notices.php:901
5168
  msgid "user sends %_plural%"
5169
- msgstr "l'utilisateur a envoyé des %_plural%"
5170
 
5171
  #: addons/email-notices/myCRED-addon-email-notices.php:902
5172
  msgid "user receives %_plural%"
5173
- msgstr "l'utilisateur a reçu des %_plural%"
5174
 
5175
  #: addons/email-notices/myCRED-addon-email-notices.php:909
5176
  msgid "Ranks Add-on"
@@ -5178,79 +5114,90 @@ msgstr "Application de classement"
5178
 
5179
  #: addons/email-notices/myCRED-addon-email-notices.php:910
5180
  msgid "user is demoted"
5181
- msgstr "utilisateur rétrogradé"
5182
 
5183
  #: addons/email-notices/myCRED-addon-email-notices.php:911
5184
  msgid "user is promoted"
5185
  msgstr "utilisateur promu"
5186
 
5187
- #: addons/email-notices/myCRED-addon-email-notices.php:1400
5188
  #: addons/coupons/myCRED-addon-coupons.php:114
5189
  msgid "Email Notices"
5190
  msgstr "Messagerie"
5191
 
5192
- #: addons/email-notices/myCRED-addon-email-notices.php:1420
5193
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
5194
- msgstr ""
5195
- "Wordpress Con est désactivé. Les emails seront envoyés immédiatement."
5196
 
5197
- #: addons/email-notices/myCRED-addon-email-notices.php:1423
5198
  msgid "Send emails immediately"
5199
- msgstr "Envoie des emails immédiatement."
5200
 
5201
- #: addons/email-notices/myCRED-addon-email-notices.php:1426
5202
  msgid "Send emails once an hour"
5203
  msgstr "Envoie des emails une fois par heure."
5204
 
5205
- #: addons/email-notices/myCRED-addon-email-notices.php:1429
5206
  msgid "Send emails once a day"
5207
  msgstr "Envoie des emails une fois par jour"
5208
 
5209
- #: addons/email-notices/myCRED-addon-email-notices.php:1450
5210
  msgid ""
5211
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
5212
  "use a SMTP plugin for emails."
5213
  msgstr ""
5214
- "SMTP Debug. Activé si vous avez l'expérence issu avec wp_mail(s) ou si "
5215
- "vous utilisez SMTP plugin pour vos mails."
5216
 
5217
- #: addons/email-notices/myCRED-addon-email-notices.php:1479
 
 
 
 
5218
  msgid "Reply-To:"
5219
- msgstr "Adresse de réponse:"
5220
 
5221
- #: addons/email-notices/myCRED-addon-email-notices.php:1487
5222
  msgid "Default Email Content"
5223
- msgstr "Contenu par défaut"
5224
 
5225
- #: addons/email-notices/myCRED-addon-email-notices.php:1489
5226
  msgid "Default email content."
5227
- msgstr "contenu par défaut"
5228
 
5229
- #: addons/email-notices/myCRED-addon-email-notices.php:1596
5230
  msgid "Unsubscribe"
5231
- msgstr "Se désabonner"
5232
 
5233
- #: addons/email-notices/myCRED-addon-email-notices.php:1597
5234
  msgid "Email Notice"
5235
- msgstr "Message à envoyer"
5236
 
5237
- #: addons/email-notices/myCRED-addon-email-notices.php:1618
5238
  msgid "There are no email notifications yet."
5239
  msgstr "Il n'y a pas encore de notifications d'email."
5240
 
5241
- #: addons/email-notices/myCRED-addon-email-notices.php:1625
5242
- #: addons/buy-creds/modules/buycred-module-pending.php:490
5243
  msgid "Save Changes"
5244
- msgstr "Sauvegarder les changements."
 
 
 
 
 
 
 
 
5245
 
5246
  #: addons/badges/myCRED-addon-badges.php:148
5247
  #: addons/badges/myCRED-addon-badges.php:154
5248
  #: addons/badges/myCRED-addon-badges.php:160
5249
  #: addons/badges/myCRED-addon-badges.php:295
5250
  #: addons/badges/myCRED-addon-badges.php:296
5251
- #: addons/badges/myCRED-addon-badges.php:1127
5252
- #: addons/badges/myCRED-addon-badges.php:1256
5253
- #: addons/badges/myCRED-addon-badges.php:1259
5254
  msgid "Badges"
5255
  msgstr "Badges"
5256
 
@@ -5276,11 +5223,11 @@ msgstr "Search badge"
5276
 
5277
  #: addons/badges/myCRED-addon-badges.php:157
5278
  msgid "No badges found"
5279
- msgstr "Pas de badges trouvés"
5280
 
5281
  #: addons/badges/myCRED-addon-badges.php:158
5282
  msgid "No badges found in Trash"
5283
- msgstr "Pas de badge trouvés dans la corbeille"
5284
 
5285
  #: addons/badges/myCRED-addon-badges.php:270
5286
  #: addons/badges/myCRED-addon-badges.php:271
@@ -5290,26 +5237,26 @@ msgstr "Pas de badge trouvés dans la corbeille"
5290
  #: addons/badges/myCRED-addon-badges.php:278
5291
  #: addons/badges/myCRED-addon-badges.php:279
5292
  msgid "Badge Updated."
5293
- msgstr "Badge mis à jour."
5294
 
5295
- #: addons/badges/myCRED-addon-badges.php:396
5296
- #: addons/badges/myCRED-addon-badges.php:480
5297
  msgid "Badge Name"
5298
  msgstr "Nom du badge"
5299
 
5300
- #: addons/badges/myCRED-addon-badges.php:397
5301
  msgid "Default Image"
5302
- msgstr "Image par défaut"
5303
 
5304
- #: addons/badges/myCRED-addon-badges.php:399
5305
  msgid "Requirements"
5306
- msgstr "Exigences"
5307
 
5308
- #: addons/badges/myCRED-addon-badges.php:516
5309
  msgid "Badge Image"
5310
  msgstr "Image du badge"
5311
 
5312
- #: addons/badges/myCRED-addon-badges.php:517
5313
  msgid "Use as Badge"
5314
  msgstr ""
5315
  "Utilisez\n"
@@ -5318,38 +5265,38 @@ msgstr ""
5318
  " \n"
5319
  "Badge"
5320
 
5321
- #: addons/badges/myCRED-addon-badges.php:678
5322
  msgid "Assign Badge"
5323
  msgstr "Assigner un badge"
5324
 
5325
- #: addons/badges/myCRED-addon-badges.php:679
5326
  msgid "Remove Connections"
5327
  msgstr "Supprimer les connexions."
5328
 
5329
- #: addons/badges/myCRED-addon-badges.php:777
5330
  msgid "Time(s)"
5331
  msgstr "Heure(s)"
5332
 
5333
- #: addons/badges/myCRED-addon-badges.php:778
5334
  msgid "In total"
5335
  msgstr "Au total"
5336
 
5337
- #: addons/badges/myCRED-addon-badges.php:1176
5338
  msgid "Include in Forum Replies"
5339
- msgstr "Inclure dans les réponses du forum"
5340
 
5341
- #: addons/badges/myCRED-addon-badges.php:1177
5342
  msgid "Include in Profile and Forum Replies"
5343
- msgstr "Inclure dans les profils et les réponses du forums"
5344
 
5345
- #: addons/badges/myCRED-addon-badges.php:1408
5346
  msgid "No users has yet earned this badge."
5347
  msgstr ""
5348
  "Aucun utilisateur\n"
5349
  " \n"
5350
  "n'a encore\n"
5351
  " \n"
5352
- "gagné\n"
5353
  " \n"
5354
  "ce badge\n"
5355
  "."
@@ -5360,7 +5307,7 @@ msgstr ""
5360
  #: addons/coupons/myCRED-addon-coupons.php:171
5361
  #: addons/coupons/myCRED-addon-coupons.php:702
5362
  msgid "Coupons"
5363
- msgstr "Promotions"
5364
 
5365
  #: addons/coupons/myCRED-addon-coupons.php:103
5366
  msgid "Coupon"
@@ -5369,7 +5316,7 @@ msgstr "Promotion"
5369
  #: addons/coupons/myCRED-addon-coupons.php:104
5370
  #: addons/coupons/myCRED-addon-coupons.php:105
5371
  msgid "Create New"
5372
- msgstr "Créer une promotion"
5373
 
5374
  #: addons/coupons/myCRED-addon-coupons.php:106
5375
  msgid "Edit Coupon"
@@ -5385,7 +5332,7 @@ msgstr "Rechercher une promo"
5385
 
5386
  #: addons/coupons/myCRED-addon-coupons.php:111
5387
  msgid "No coupons found"
5388
- msgstr "Aucune promo trouvée"
5389
 
5390
  #: addons/coupons/myCRED-addon-coupons.php:112
5391
  msgid "No coupons found in Trash"
@@ -5400,16 +5347,16 @@ msgstr "Aucune promo dans la corbeille"
5400
  #: addons/coupons/myCRED-addon-coupons.php:153
5401
  #: addons/coupons/myCRED-addon-coupons.php:154
5402
  msgid "Coupon updated."
5403
- msgstr "Promo mise à jour."
5404
 
5405
  #: addons/coupons/myCRED-addon-coupons.php:150
5406
  msgid "Coupon published."
5407
- msgstr "Promo publiée."
5408
 
5409
  #: addons/coupons/myCRED-addon-coupons.php:232
5410
  #: addons/coupons/myCRED-addon-coupons.php:249
5411
  msgid "Coupon Code"
5412
- msgstr "Code Promo"
5413
 
5414
  #: addons/coupons/myCRED-addon-coupons.php:250
5415
  #: addons/coupons/myCRED-addon-coupons.php:513
@@ -5427,7 +5374,7 @@ msgstr "Par personne"
5427
 
5428
  #: addons/coupons/myCRED-addon-coupons.php:326
5429
  msgid "Expired"
5430
- msgstr "Expiré"
5431
 
5432
  #: addons/coupons/myCRED-addon-coupons.php:332
5433
  #, php-format
@@ -5448,7 +5395,7 @@ msgstr "Conditions de la promo"
5448
 
5449
  #: addons/coupons/myCRED-addon-coupons.php:524
5450
  msgid "Select the point type that this coupon is applied."
5451
- msgstr "Sélectionnez le type de point applicable à ce bon"
5452
 
5453
  #: addons/coupons/myCRED-addon-coupons.php:536
5454
  msgid "Expire"
@@ -5458,7 +5405,7 @@ msgstr "Expire"
5458
  msgid ""
5459
  "Optional date when this coupon expires. Expired coupons will be trashed."
5460
  msgstr ""
5461
- "Date d'expiration optionnelle pour ce bon. Les bons échus sont mis à la "
5462
  "corbeille."
5463
 
5464
  #: addons/coupons/myCRED-addon-coupons.php:566
@@ -5483,8 +5430,8 @@ msgid ""
5483
  "Optional minimum balance a user must have in order to use this coupon. Use "
5484
  "zero to disable."
5485
  msgstr ""
5486
- "Le solde minimum d'un utilisateur pour utiliser ce bon. Indiquez zéro pour "
5487
- "désactiver l'option."
5488
 
5489
  #: addons/coupons/myCRED-addon-coupons.php:615
5490
  msgid "Maximum Balance"
@@ -5495,8 +5442,8 @@ msgid ""
5495
  "Optional maximum balance a user can have in order to use this coupon. Use "
5496
  "zero to disable."
5497
  msgstr ""
5498
- "Le solde maximum d'un utilisateur pour utiliser ce bon. Indiquez zéro pour "
5499
- "désactiver l'option."
5500
 
5501
  #: addons/coupons/myCRED-addon-coupons.php:709
5502
  msgid "Invalid Coupon Message"
@@ -5505,17 +5452,17 @@ msgstr "Message de coupon invalide"
5505
  #: addons/coupons/myCRED-addon-coupons.php:711
5506
  msgid "Message to show when users try to use a coupon that does not exists."
5507
  msgstr ""
5508
- "Le message à afficher lorsqu'un utilisateur tente d'utiliser un bon "
5509
  "inexistant."
5510
 
5511
  #: addons/coupons/myCRED-addon-coupons.php:716
5512
  msgid "Expired Coupon Message"
5513
- msgstr "Message de coupon échu"
5514
 
5515
  #: addons/coupons/myCRED-addon-coupons.php:718
5516
  msgid "Message to show when users try to use that has expired."
5517
  msgstr ""
5518
- "Le message à afficher lorsqu'un utilisateur tente d'utiliser un bon échu."
5519
 
5520
  #: addons/coupons/myCRED-addon-coupons.php:725
5521
  msgid "Minimum Balance Message"
@@ -5526,8 +5473,8 @@ msgid ""
5526
  "Message to show when a user does not meet the minimum balance requirement. "
5527
  "(if used)"
5528
  msgstr ""
5529
- "Le message à afficher lorsqu'un utilisateur ne possède pas le solde "
5530
- "minimum requis. (si activé)"
5531
 
5532
  #: addons/coupons/myCRED-addon-coupons.php:732
5533
  msgid "Maximum Balance Message"
@@ -5538,43 +5485,43 @@ msgid ""
5538
  "Message to show when a user does not meet the maximum balance requirement. "
5539
  "(if used)"
5540
  msgstr ""
5541
- "Le message à afficher lorsqu'un utilisateur ne possède pas le solde "
5542
- "maximum requis. (si activé)"
5543
 
5544
  #: addons/coupons/myCRED-addon-coupons.php:741
5545
  msgid "User Limit Message"
5546
- msgstr "Message de période d'utilisation"
5547
 
5548
  #: addons/coupons/myCRED-addon-coupons.php:743
5549
  msgid "Message to show when the user limit has been reached for the coupon."
5550
  msgstr ""
5551
- "Le message à afficher lorsqu'un utilisateur a atteint la fin de la période "
5552
  "d'utilisation du bon."
5553
 
5554
  #: addons/coupons/myCRED-addon-coupons.php:757
5555
  msgid "Success Message"
5556
- msgstr "Message d'envoi réussi"
5557
 
5558
  #: addons/coupons/myCRED-addon-coupons.php:759
5559
  msgid ""
5560
  "Message to show when a coupon was successfully deposited to a users account."
5561
  msgstr ""
5562
- "Le message à afficher lorsqu'un bon a été correctement viré sur le "
5563
- "compte de l'utilisateur."
5564
 
5565
  #: addons/coupons/myCRED-addon-coupons.php:766
5566
  msgid ""
5567
  "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
5568
  "code."
5569
  msgstr ""
5570
- "Journalisation pour la réussite de rachat de coupon. Utilisez %coupon% pour "
5571
  "afficher le code du bon."
5572
 
5573
  #: addons/sell-content/myCRED-addon-sell-content.php:381
5574
  #: addons/sell-content/myCRED-addon-sell-content.php:384
5575
  #: addons/sell-content/myCRED-addon-sell-content.php:664
5576
  msgid "Profit Share"
5577
- msgstr "Bénéfice partagé"
5578
 
5579
  #: addons/sell-content/myCRED-addon-sell-content.php:508
5580
  #: addons/sell-content/myCRED-addon-sell-content.php:1000
@@ -5583,23 +5530,20 @@ msgstr "Vendre du contenu"
5583
 
5584
  #: addons/sell-content/myCRED-addon-sell-content.php:511
5585
  msgid "Post Types"
5586
- msgstr "Post Types"
5587
 
5588
  #: addons/sell-content/myCRED-addon-sell-content.php:673
5589
  #: addons/sell-content/myCRED-addon-sell-content.php:719
5590
  #: addons/gateway/event-booking/mycred-eventespresso3.php:473
5591
  #: addons/gateway/event-booking/mycred-eventsmanager.php:675
5592
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:703
5593
  #: addons/transfer/includes/mycred-transfer-widgets.php:101
5594
  msgid "Button Label"
5595
- msgstr "Intitulé du bouton"
5596
 
5597
  #: addons/sell-content/myCRED-addon-sell-content.php:1073
5598
  #: addons/gateway/event-booking/mycred-eventespresso3.php:495
5599
  #: addons/gateway/event-booking/mycred-eventsmanager.php:369
5600
  #: addons/gateway/event-booking/mycred-eventsmanager.php:373
5601
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:153
5602
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:156
5603
  msgid "Price"
5604
  msgstr "Prix"
5605
 
@@ -5609,22 +5553,28 @@ msgstr "Ignorer les ajustements manuels"
5609
 
5610
  #: addons/banking/services/mycred-service-interest.php:28
5611
  msgid "%plural% interest rate payment"
5612
- msgstr "Versement de %_plural% d'intérêts"
5613
 
5614
  #: addons/banking/services/mycred-service-interest.php:481
5615
  #: addons/banking/services/mycred-service-interest.php:652
5616
  msgid "Interest Rate"
5617
- msgstr "Taux d'intérêt"
5618
 
5619
  #: addons/banking/services/mycred-service-interest.php:528
5620
  #: addons/banking/services/mycred-service-interest.php:529
5621
  #: addons/banking/services/mycred-service-payouts.php:791
5622
  msgid "Comma separated list of user IDs"
5623
- msgstr "Séparer les ID des utilisateurs par des virgules"
 
 
 
 
 
 
5624
 
5625
  #: addons/banking/services/mycred-service-payouts.php:573
5626
  msgid "Last Run"
5627
- msgstr "Dernière exécution"
5628
 
5629
  #: addons/banking/services/mycred-service-payouts.php:591
5630
  #: addons/gateway/carts/mycred-wpecommerce.php:396
@@ -5637,7 +5587,7 @@ msgstr "Horaire"
5637
 
5638
  #: addons/banking/includes/mycred-banking-functions.php:84
5639
  msgid "Daily"
5640
- msgstr "Quotidienne"
5641
 
5642
  #: addons/banking/includes/mycred-banking-functions.php:89
5643
  msgid "Weekly"
@@ -5645,7 +5595,7 @@ msgstr "Hebdomadaire"
5645
 
5646
  #: addons/banking/includes/mycred-banking-functions.php:94
5647
  msgid "Monthly"
5648
- msgstr "Mensuel"
5649
 
5650
  #: addons/banking/includes/mycred-banking-functions.php:99
5651
  msgid "Quarterly"
@@ -5661,33 +5611,31 @@ msgstr "Annuelle"
5661
 
5662
  #: addons/gateway/event-booking/mycred-eventespresso3.php:26
5663
  #: addons/gateway/event-booking/mycred-eventsmanager.php:594
5664
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:626
5665
  #: addons/buy-creds/modules/buycred-module-core.php:710
5666
  msgid "Payments"
5667
  msgstr "Paiements"
5668
 
5669
  #: addons/gateway/event-booking/mycred-eventespresso3.php:27
5670
  #: addons/gateway/event-booking/mycred-eventsmanager.php:36
5671
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39
5672
- #: addons/buy-creds/modules/buycred-module-pending.php:717
5673
  msgid "Pay Now"
5674
  msgstr "Payer maintenant"
5675
 
5676
  #: addons/gateway/event-booking/mycred-eventespresso3.php:32
5677
  msgid "Payment for Event Registration"
5678
- msgstr "Paiement pour l'enregistrement d'un événement"
5679
 
5680
  #: addons/gateway/event-booking/mycred-eventespresso3.php:311
5681
  #: addons/gateway/event-booking/mycred-eventespresso3.php:336
5682
  #: addons/gateway/event-booking/mycred-eventsmanager.php:468
5683
  #: addons/gateway/carts/mycred-wpecommerce.php:120
5684
  msgid "Total Cost"
5685
- msgstr "Coût total"
5686
 
5687
  #: addons/gateway/event-booking/mycred-eventespresso3.php:315
5688
  #: addons/gateway/event-booking/mycred-eventespresso3.php:340
5689
  msgid "Balance After Purchase"
5690
- msgstr "Solde après achats"
5691
 
5692
  #: addons/gateway/event-booking/mycred-eventespresso3.php:380
5693
  #, php-format
@@ -5697,7 +5645,7 @@ msgstr "Activer %s"
5697
  #: addons/gateway/event-booking/mycred-eventespresso3.php:389
5698
  #, php-format
5699
  msgid "Deactivate %s"
5700
- msgstr "Désactiver %s"
5701
 
5702
  #: addons/gateway/event-booking/mycred-eventespresso3.php:402
5703
  msgid "Gateway Settings"
@@ -5705,26 +5653,25 @@ msgstr "Configuration du service de paiement"
5705
 
5706
  #: addons/gateway/event-booking/mycred-eventespresso3.php:442
5707
  #: addons/gateway/event-booking/mycred-eventsmanager.php:580
5708
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:595
5709
  #, php-format
5710
  msgid "How many %s is 1 %s worth?"
5711
  msgstr "Combien de %s vaut 1 %s ?"
5712
 
5713
  #: addons/gateway/event-booking/mycred-eventespresso3.php:463
5714
  msgid "Gateway Title"
5715
- msgstr "Aucun service de paiement n'est installé."
5716
 
5717
  #: addons/gateway/event-booking/mycred-eventespresso3.php:465
5718
  msgid "Title to show on Payment page"
5719
- msgstr "Titre à afficher sur la page de paiement"
5720
 
5721
  #: addons/gateway/event-booking/mycred-eventespresso3.php:468
5722
  msgid "Payment Type"
5723
- msgstr "Type de Paiement"
5724
 
5725
  #: addons/gateway/event-booking/mycred-eventespresso3.php:470
5726
  msgid "Title to show on receipts and logs"
5727
- msgstr "Titre à afficher pour les rapports et les journaux d'activités"
5728
 
5729
  #: addons/gateway/event-booking/mycred-eventespresso3.php:475
5730
  msgid "Pay Button"
@@ -5732,15 +5679,15 @@ msgstr "Bouton de paiement"
5732
 
5733
  #: addons/gateway/event-booking/mycred-eventespresso3.php:503
5734
  msgid "Important!"
5735
- msgstr "Important !"
5736
 
5737
  #: addons/gateway/event-booking/mycred-eventespresso3.php:505
5738
  msgid ""
5739
  "You can disable purchases using this gateway by adding a custom Event Meta: "
5740
  "<code>mycred_no_sale</code>"
5741
  msgstr ""
5742
- "Vous pouvez désactiver les achats avec ce service en ajoutant ce code "
5743
- "personnalisé: <code>mycred_no_sale</code>"
5744
 
5745
  #: addons/gateway/event-booking/mycred-eventespresso3.php:506
5746
  msgid "Users must be logged in to use this gateway!"
@@ -5748,26 +5695,24 @@ msgstr "Vous devez vous connecter pour utiliser ce service !"
5748
 
5749
  #: addons/gateway/event-booking/mycred-eventespresso3.php:510
5750
  #: addons/gateway/event-booking/mycred-eventsmanager.php:625
5751
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:641
5752
  #: addons/gateway/carts/mycred-wpecommerce.php:393
5753
  #: addons/gateway/carts/mycred-woocommerce.php:176
5754
  msgid "Profit Sharing"
5755
- msgstr "Partage de bénéfice"
5756
 
5757
  #: addons/gateway/event-booking/mycred-eventespresso3.php:512
5758
  #: addons/gateway/event-booking/mycred-eventsmanager.php:628
5759
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:644
5760
  #: addons/gateway/carts/mycred-wpecommerce.php:397
5761
  #: addons/gateway/carts/mycred-woocommerce.php:178
5762
  msgid "Option to share sales with the product owner. Use zero to disable."
5763
  msgstr ""
5764
- "Option de partage des ventes avec le propriétaire du produit. Indiquez "
5765
- "zéro pour désactiver l'option."
5766
 
5767
  #: addons/gateway/event-booking/mycred-eventespresso3.php:525
5768
  #: addons/buy-creds/modules/buycred-module-core.php:415
5769
  msgid "Templates"
5770
- msgstr "Affichage des éléments"
5771
 
5772
  #: addons/gateway/event-booking/mycred-eventespresso3.php:528
5773
  msgid "Solvent users"
@@ -5778,8 +5723,8 @@ msgid ""
5778
  "Message to show users on the payment page before they are charged. Leave "
5779
  "empty to hide."
5780
  msgstr ""
5781
- "Message à afficher sur la page de paiement avant que l'utilisateur ne soit "
5782
- "débité. Laissez vide pour ne rien afficher."
5783
 
5784
  #: addons/gateway/event-booking/mycred-eventespresso3.php:533
5785
  msgid "Insolvent users"
@@ -5788,8 +5733,7 @@ msgstr "Utilisateurs insolvables"
5788
  #: addons/gateway/event-booking/mycred-eventespresso3.php:535
5789
  msgid "Message to show users who do not have enough points to pay."
5790
  msgstr ""
5791
- "Message à afficher aux membres n'ayant pas suffisamment de points pour "
5792
- "payer."
5793
 
5794
  #: addons/gateway/event-booking/mycred-eventespresso3.php:538
5795
  #: addons/gateway/carts/mycred-wpecommerce.php:411
@@ -5799,57 +5743,48 @@ msgstr "Visiteurs"
5799
  #: addons/gateway/event-booking/mycred-eventespresso3.php:540
5800
  msgid "Message to show visitors (users not logged in) on the payment page."
5801
  msgstr ""
5802
- "Message à afficher aux visiteurs non connectés sur la page de paiement."
5803
 
5804
  #: addons/gateway/event-booking/mycred-eventsmanager.php:30
5805
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
5806
  msgid "Payment for tickets to %link_with_title%"
5807
  msgstr "tickets de Paiement vers %link_with_title%"
5808
 
5809
  #: addons/gateway/event-booking/mycred-eventsmanager.php:31
5810
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
5811
  msgid "Ticket refund for %link_with_title%"
5812
  msgstr "Ticket de Remboursement vers %link_with_title%"
5813
 
5814
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35
5815
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
5816
  msgid "Pay using your %_plural% balance"
5817
  msgstr "Payez avec votre solde de %_plural%"
5818
 
5819
  #: addons/gateway/event-booking/mycred-eventsmanager.php:37
5820
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
5821
  msgid "Pay"
5822
  msgstr "Payer"
5823
 
5824
  #: addons/gateway/event-booking/mycred-eventsmanager.php:40
5825
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
5826
  msgid "Thank you for your payment!"
5827
  msgstr "Merci pour votre paiement !"
5828
 
5829
  #: addons/gateway/event-booking/mycred-eventsmanager.php:41
5830
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
5831
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
5832
  msgstr ""
5833
- "Désolé mais vous ne pouvez pas payer pour ces tickets à l'aide de "
5834
- "%_plural%"
5835
 
5836
  #: addons/gateway/event-booking/mycred-eventsmanager.php:366
5837
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:150
5838
  msgid "Ticket Type"
5839
- msgstr "Type de ticket"
5840
 
5841
  #: addons/gateway/event-booking/mycred-eventsmanager.php:377
5842
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:159
5843
  msgid "Spaces"
5844
  msgstr "Espaces"
5845
 
5846
  #: addons/gateway/event-booking/mycred-eventsmanager.php:472
5847
  msgid "Balance After Payment"
5848
- msgstr "Solde après paiement"
5849
 
5850
  #: addons/gateway/event-booking/mycred-eventsmanager.php:585
5851
  msgid "Click to toggle"
5852
- msgstr "Cliquez pour basculer"
5853
 
5854
  #: addons/gateway/event-booking/mycred-eventsmanager.php:586
5855
  #, php-format
@@ -5857,21 +5792,18 @@ msgid "%s Payments"
5857
  msgstr "%s Paiements"
5858
 
5859
  #: addons/gateway/event-booking/mycred-eventsmanager.php:596
5860
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:628
5861
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
5862
  msgstr ""
5863
- "Désactivé - les utilisateurs NE PEUVENT PAS régler de tickets avec leurs "
5864
  "%_plural%."
5865
 
5866
  #: addons/gateway/event-booking/mycred-eventsmanager.php:597
5867
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:629
5868
  msgid "Single - Users can ONLY pay for tickets using %plural%."
5869
  msgstr ""
5870
  "Unique - les utilisateurs PEUVENT SEULEMENT payer des tickets avec leurs "
5871
  "%_plural%"
5872
 
5873
  #: addons/gateway/event-booking/mycred-eventsmanager.php:598
5874
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:630
5875
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
5876
  msgstr ""
5877
  "Multi - les utilisateurs peuvent payer leurs tickets avec d'autres services "
@@ -5879,8 +5811,6 @@ msgstr ""
5879
 
5880
  #: addons/gateway/event-booking/mycred-eventsmanager.php:618
5881
  #: addons/gateway/event-booking/mycred-eventsmanager.php:651
5882
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:634
5883
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:667
5884
  msgid "Refunds"
5885
  msgstr "Remboursements"
5886
 
@@ -5889,22 +5819,19 @@ msgid ""
5889
  "The percentage of the paid amount to refund if a booking gets cancelled. Use "
5890
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
5891
  msgstr ""
5892
- "Le pourcentage du montant à rembourser en cas d'annulation de commande. "
5893
- "Mettez zéro pour ne rien rembourser. Aucun remboursement n'est attribué "
5894
- "aux commandes \"Rejetées\"."
5895
 
5896
  #: addons/gateway/event-booking/mycred-eventsmanager.php:644
5897
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:660
5898
  msgid "Purchases"
5899
  msgstr "Achats"
5900
 
5901
  #: addons/gateway/event-booking/mycred-eventsmanager.php:661
5902
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:689
5903
  msgid "Payment Link Label"
5904
- msgstr "Intitulé du lien de paiement"
5905
 
5906
  #: addons/gateway/event-booking/mycred-eventsmanager.php:664
5907
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:692
5908
  msgid ""
5909
  "The payment link shows / hides the payment form under \"My Bookings\". No "
5910
  "HTML allowed."
@@ -5913,74 +5840,30 @@ msgstr ""
5913
  "commandes\". HTML interdit."
5914
 
5915
  #: addons/gateway/event-booking/mycred-eventsmanager.php:668
5916
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:696
5917
  msgid "Payment Header"
5918
- msgstr "En-tête de la page de paiement"
5919
 
5920
  #: addons/gateway/event-booking/mycred-eventsmanager.php:671
5921
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:699
5922
  msgid "Shown on top of the payment form. No HTML allowed."
5923
- msgstr "Sera affiché au-dessus du formulaire de paiement. HTML interdit."
5924
 
5925
  #: addons/gateway/event-booking/mycred-eventsmanager.php:678
5926
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:706
5927
  msgid "The button label for payments. No HTML allowed!"
5928
- msgstr "Intitulé du bouton de paiement. HTML interdit !"
5929
 
5930
  #: addons/gateway/event-booking/mycred-eventsmanager.php:682
5931
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:717
5932
  #: addons/gateway/carts/mycred-wpecommerce.php:404
5933
  msgid "Messages"
5934
  msgstr "Messages"
5935
 
5936
  #: addons/gateway/event-booking/mycred-eventsmanager.php:685
5937
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:720
5938
  msgid "Successful Payments"
5939
- msgstr "Paiements réussis"
5940
 
5941
  #: addons/gateway/event-booking/mycred-eventsmanager.php:688
5942
  #: addons/gateway/event-booking/mycred-eventsmanager.php:695
5943
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:723
5944
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:730
5945
  msgid "No HTML allowed!"
5946
- msgstr "Le HTML n'est pas autorisé !"
5947
-
5948
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
5949
- msgid "%plural% Cost"
5950
- msgstr "%plural% Coût"
5951
-
5952
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:213
5953
- msgid "Your Balance"
5954
- msgstr "Votre solde"
5955
-
5956
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:374
5957
- msgid "You can not pay using this gateway."
5958
- msgstr "Vous ne pouvez pas payer à l'aide de ce système de paiement."
5959
-
5960
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:492
5961
- msgid "Reject"
5962
- msgstr "Rejeter"
5963
-
5964
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:501
5965
- msgid "Edit/View"
5966
- msgstr "Modifier/Aperçu"
5967
-
5968
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:637
5969
- msgid ""
5970
- "The percentage of the paid amount to refund if a user cancels their booking. "
5971
- "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
5972
- msgstr ""
5973
- "Le pourcentage de la somme versée à rembourser quand un utilisateur annule "
5974
- "une réservation. Indiquez zéro pour aucun remboursement. Aucun "
5975
- "remboursement n'est effectué pour les réservations \"Rejetées\" !"
5976
-
5977
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:710
5978
- msgid "Cart & Checkout Cost"
5979
- msgstr "Panier & passer commande du coût."
5980
-
5981
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:713
5982
- msgid "Label for cost in %plural%"
5983
- msgstr "Label du coût dans %plural%"
5984
 
5985
  #: addons/gateway/carts/mycred-wpecommerce.php:20
5986
  msgid "Payment for Order: #%order_id%"
@@ -5992,7 +5875,7 @@ msgstr "Magasin de vente"
5992
 
5993
  #: addons/gateway/carts/mycred-wpecommerce.php:25
5994
  msgid "You must be logged in to use this gateway"
5995
- msgstr "Vous devez vous connecter pour utiliser ce système de paiement"
5996
 
5997
  #: addons/gateway/carts/mycred-wpecommerce.php:26
5998
  msgid "Insufficient Funds."
@@ -6000,12 +5883,12 @@ msgstr "Fonds insuffisants"
6000
 
6001
  #: addons/gateway/carts/mycred-wpecommerce.php:27
6002
  msgid "Deduct the amount from your balance."
6003
- msgstr "Déduire le montant de votre solde."
6004
 
6005
  #: addons/gateway/carts/mycred-wpecommerce.php:107
6006
  #: addons/buy-creds/gateways/bank-transfer.php:139
6007
  msgid "Item"
6008
- msgstr "Intitulé"
6009
 
6010
  #: addons/gateway/carts/mycred-wpecommerce.php:128
6011
  #: addons/gateway/carts/mycred-woocommerce.php:808
@@ -6014,7 +5897,7 @@ msgstr "Votre solde actuel"
6014
 
6015
  #: addons/gateway/carts/mycred-wpecommerce.php:202
6016
  msgid "You can not use this gateway."
6017
- msgstr "Vous ne pouvez pas utiliser ce système de paiement."
6018
 
6019
  #: addons/gateway/carts/mycred-wpecommerce.php:373
6020
  msgid "Log Template for Payments"
@@ -6022,31 +5905,31 @@ msgstr "Template de paiements"
6022
 
6023
  #: addons/gateway/carts/mycred-wpecommerce.php:407
6024
  msgid "Instructions"
6025
- msgstr "Instructions"
6026
 
6027
  #: addons/gateway/carts/mycred-wpecommerce.php:408
6028
  msgid ""
6029
  "Optional instructions to show users when selecting this gateway. Leave empty "
6030
  "to hide."
6031
  msgstr ""
6032
- "Informations additionnelles à afficher quand l'utilisateur sélectionne ce "
6033
- "système de paiement. Laissez vide pour ne rien afficher."
6034
 
6035
  #: addons/gateway/carts/mycred-wpecommerce.php:412
6036
  msgid "Message to show visitors who are not logged in."
6037
- msgstr "Message à afficher lorsque l'utilisateur n'est pas connecté."
6038
 
6039
  #: addons/gateway/carts/mycred-wpecommerce.php:416
6040
  msgid ""
6041
  "Message to show when users does not have enough %plural% to pay using this "
6042
  "gateway."
6043
  msgstr ""
6044
- "Message à afficher lorsque l'utilisateur n'a pas suffisamment de %plural% "
6045
- "pour payer avec ce système de paiement."
6046
 
6047
  #: addons/gateway/carts/mycred-woocommerce.php:89
6048
  msgid "Enable/Disable"
6049
- msgstr "Activer/Désactiver"
6050
 
6051
  #: addons/gateway/carts/mycred-woocommerce.php:91
6052
  msgid "Enable myCRED Payment"
@@ -6057,12 +5940,12 @@ msgid ""
6057
  "Users who are not logged in or excluded from using myCRED will not have "
6058
  "access to this gateway!"
6059
  msgstr ""
6060
- "Les utilisateurs qui ne sont pas connectés ou qui sont exclus de myCRED "
6061
- "n'auront pas accès à ce service de paiement !"
6062
 
6063
  #: addons/gateway/carts/mycred-woocommerce.php:98
6064
  msgid "Title to show for this payment option."
6065
- msgstr "Titre à afficher pour cette option de paiement"
6066
 
6067
  #: addons/gateway/carts/mycred-woocommerce.php:99
6068
  msgid "Pay with myCRED"
@@ -6080,7 +5963,7 @@ msgstr "Remboursement par template de connexion"
6080
  #: addons/gateway/carts/mycred-woocommerce.php:127
6081
  msgid "Select the point type users can use to pay."
6082
  msgstr ""
6083
- "Sélectionnez le type de point avec lequel les utilisateurs pourront régler"
6084
 
6085
  #: addons/gateway/carts/mycred-woocommerce.php:132
6086
  msgid "How much is 1 %_singular% worth in %currency%?"
@@ -6100,11 +5983,11 @@ msgstr "Afficher avec le panier"
6100
 
6101
  #: addons/gateway/carts/mycred-woocommerce.php:149
6102
  msgid "Show on Checkout Page"
6103
- msgstr "Afficher sur la page de contrôle d'achats"
6104
 
6105
  #: addons/gateway/carts/mycred-woocommerce.php:150
6106
  msgid "Show in Cart and on Checkout Page"
6107
- msgstr "Afficher avec le panier et sur la page de contrôle"
6108
 
6109
  #: addons/gateway/carts/mycred-woocommerce.php:157
6110
  msgid "Order Total in %_plural%"
@@ -6112,32 +5995,31 @@ msgstr "Commande totale en %_plural%"
6112
 
6113
  #: addons/gateway/carts/mycred-woocommerce.php:185
6114
  msgid "Log entry template for profit sharing."
6115
- msgstr "Template de connexion pour les bénéfices partagés"
6116
 
6117
  #: addons/gateway/carts/mycred-woocommerce.php:191
6118
  msgid "Log entry template for refunds of profit shares."
6119
  msgstr ""
6120
- "Connecter le Template entré pour les remboursements des parts "
6121
- "bénéficiaires."
6122
 
6123
  #: addons/gateway/carts/mycred-woocommerce.php:294
6124
  msgid "You must be logged in to pay with %_plural%"
6125
- msgstr "Vous devez être connecté pour payer avec %_plural%"
6126
 
6127
  #: addons/gateway/carts/mycred-woocommerce.php:302
6128
  msgid "You can not use this gateway. Please try a different payment option."
6129
  msgstr ""
6130
  "Vous ne pouvez pas utiliser ce service. Veuillez essayer une autre option de "
6131
- "règlement."
6132
 
6133
  #: addons/gateway/carts/mycred-woocommerce.php:319
6134
- #: addons/sell-content/includes/mycred-sell-functions.php:512
6135
  msgid "Insufficient funds."
6136
  msgstr "Fonds insuffisant."
6137
 
6138
  #: addons/gateway/carts/mycred-woocommerce.php:472
6139
  msgid "Your account has successfully been charged."
6140
- msgstr "Votre compte a été débité avec succès."
6141
 
6142
  #: addons/transfer/includes/mycred-transfer-widgets.php:19
6143
  #, php-format
@@ -6150,7 +6032,7 @@ msgstr "Autoriser les transferts entre utilisateurs"
6150
 
6151
  #: addons/transfer/includes/mycred-transfer-widgets.php:95
6152
  msgid "Show users balance"
6153
- msgstr "Afficher le relevé de l'utilisateur"
6154
 
6155
  #: addons/transfer/includes/mycred-transfer-widgets.php:98
6156
  msgid "Show users limit"
@@ -6162,7 +6044,7 @@ msgstr "nom d'utilisateur"
6162
 
6163
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:160
6164
  msgid "email"
6165
- msgstr "email"
6166
 
6167
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:162
6168
  #, php-format
@@ -6172,7 +6054,7 @@ msgstr "destinataires %s"
6172
  #: addons/ranks/includes/mycred-rank-shortcodes.php:128
6173
  #: addons/ranks/includes/mycred-rank-shortcodes.php:211
6174
  msgid "No users found with this rank"
6175
- msgstr "Aucun utilisateur avec ce classement n'a été trouvé."
6176
 
6177
  #: addons/ranks/includes/mycred-rank-shortcodes.php:135
6178
  msgid "Rank ID is required!"
@@ -6184,16 +6066,16 @@ msgstr "Plugins"
6184
 
6185
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:204
6186
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
6187
- #: addons/buy-creds/modules/buycred-module-pending.php:270
6188
- #: addons/buy-creds/modules/buycred-module-pending.php:621
6189
- #: addons/buy-creds/modules/buycred-module-pending.php:734
6190
  #: addons/buy-creds/gateways/bank-transfer.php:141
6191
  msgid "Cost"
6192
  msgstr "Prix"
6193
 
6194
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:248
6195
  msgid "Never"
6196
- msgstr "jamais"
6197
 
6198
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:163
6199
  msgid "Select currency"
@@ -6209,6 +6091,42 @@ msgstr "Paiement de test"
6209
  msgid "Payment"
6210
  msgstr "Paiement"
6211
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6212
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:685
6213
  #: addons/buy-creds/gateways/bank-transfer.php:147
6214
  #, php-format
@@ -6223,119 +6141,119 @@ msgstr "Continuer vers %s"
6223
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:787
6224
  #: addons/buy-creds/gateways/bitpay.php:225
6225
  msgid "Click here if you are not automatically redirected"
6226
- msgstr "Cliquez ici si vous n'êtes pas automatiquement redirigé"
6227
 
6228
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1501
6229
  msgid "January"
6230
- msgstr "Janvier"
6231
 
6232
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1502
6233
  msgid "February"
6234
- msgstr "Février"
6235
 
6236
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1503
6237
  msgid "March"
6238
- msgstr "Mars"
6239
 
6240
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1504
6241
  msgid "April"
6242
- msgstr "Avril"
6243
 
6244
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1505
6245
  msgid "May"
6246
- msgstr "Mai"
6247
 
6248
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1506
6249
  msgid "June"
6250
- msgstr "Juin"
6251
 
6252
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1507
6253
  msgid "July"
6254
- msgstr "Juillet"
6255
 
6256
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1508
6257
  msgid "August"
6258
- msgstr "Août"
6259
 
6260
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1509
6261
  msgid "September"
6262
- msgstr "Septembre"
6263
 
6264
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1510
6265
  msgid "October"
6266
- msgstr "Octobre"
6267
 
6268
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1511
6269
  msgid "November"
6270
- msgstr "Novembre"
6271
 
6272
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1512
6273
  msgid "December"
6274
- msgstr "Décembre"
6275
 
6276
- #: addons/buy-creds/modules/buycred-module-pending.php:138
6277
  msgctxt "Post Type General Name"
6278
  msgid "Pending Payments"
6279
  msgstr "Paiements en attente"
6280
 
6281
- #: addons/buy-creds/modules/buycred-module-pending.php:139
6282
  msgctxt "Post Type Singular Name"
6283
  msgid "Pending Payment"
6284
  msgstr "En attente de paiement"
6285
 
6286
- #: addons/buy-creds/modules/buycred-module-pending.php:140
6287
  #: addons/buy-creds/modules/buycred-module-pending.php:142
6288
- #: addons/buy-creds/modules/buycred-module-pending.php:232
6289
- #: addons/buy-creds/modules/buycred-module-pending.php:233
 
6290
  msgid "Pending Payments"
6291
  msgstr "Paiements en attente"
6292
 
6293
- #: addons/buy-creds/modules/buycred-module-pending.php:146
6294
  msgid "Edit Pending Payment"
6295
  msgstr ""
6296
  "Modifier\n"
6297
  " \n"
6298
  "les attentes de paiement"
6299
 
6300
- #: addons/buy-creds/modules/buycred-module-pending.php:149
6301
- #: addons/buy-creds/modules/buycred-module-pending.php:150
6302
  msgid "Not found in Trash"
6303
- msgstr "Pas trouvé dans la corbeille"
6304
 
6305
- #: addons/buy-creds/modules/buycred-module-pending.php:266
6306
- #: addons/buy-creds/modules/buycred-module-pending.php:731
6307
  #: addons/buy-creds/modules/buycred-module-core.php:771
6308
  #: addons/buy-creds/gateways/bank-transfer.php:142
6309
  msgid "Transaction ID"
6310
- msgstr "ID de la transaction"
6311
 
6312
- #: addons/buy-creds/modules/buycred-module-pending.php:268
6313
  #: addons/buy-creds/modules/buycred-module-core.php:767
6314
  msgid "Buyer"
6315
  msgstr "Acheteur"
6316
 
6317
- #: addons/buy-creds/modules/buycred-module-pending.php:271
6318
- #: addons/buy-creds/modules/buycred-module-pending.php:596
6319
- #: addons/buy-creds/modules/buycred-module-pending.php:732
6320
  #: addons/buy-creds/modules/buycred-module-core.php:766
6321
  #: addons/buy-creds/includes/buycred-functions.php:119
6322
  msgid "Gateway"
6323
  msgstr "Service"
6324
 
6325
- #: addons/buy-creds/modules/buycred-module-pending.php:272
6326
  msgid "Type"
6327
  msgstr "Type"
6328
 
6329
- #: addons/buy-creds/modules/buycred-module-pending.php:369
6330
- #: addons/buy-creds/modules/buycred-module-pending.php:478
6331
  msgid "Pay Out"
6332
  msgstr "Versement"
6333
 
6334
- #: addons/buy-creds/modules/buycred-module-pending.php:473
6335
  msgid "Save"
6336
- msgstr "Enregistrer"
6337
 
6338
- #: addons/buy-creds/modules/buycred-module-pending.php:627
6339
  #: addons/buy-creds/gateways/bank-transfer.php:209
6340
  #: addons/buy-creds/gateways/bitpay.php:251
6341
  #: addons/buy-creds/gateways/paypal-standard.php:279
@@ -6343,9 +6261,9 @@ msgstr "Enregistrer"
6343
  msgid "Currency"
6344
  msgstr "Devise"
6345
 
6346
- #: addons/buy-creds/modules/buycred-module-pending.php:798
6347
  msgid "No pending payments found"
6348
- msgstr "Pas d'attente de paiements trouvés"
6349
 
6350
  #: addons/buy-creds/modules/buycred-module-core.php:28
6351
  #: addons/buy-creds/modules/buycred-module-core.php:29
@@ -6355,7 +6273,7 @@ msgstr "Services de paiement"
6355
 
6356
  #: addons/buy-creds/modules/buycred-module-core.php:301
6357
  msgid "Please login to purchase %_plural%"
6358
- msgstr "Veuillez vous connecter pour acquérir des %_plural%"
6359
 
6360
  #: addons/buy-creds/modules/buycred-module-core.php:316
6361
  msgid "Gift purchase from %display_name%."
@@ -6365,12 +6283,12 @@ msgstr "Achat de cadeau par %display_name%."
6365
  msgid ""
6366
  "Select the point types that users can buy. You must select at least one!"
6367
  msgstr ""
6368
- "Sélectionner les types de point que les utilisateurs peuvent acheter. Vous "
6369
- "devez en sélectionner au moins une!"
6370
 
6371
  #: addons/buy-creds/modules/buycred-module-core.php:355
6372
  msgid "Show seperate log for %_plural% purchases."
6373
- msgstr "Afficher des journaux séparés pour l'achat de %_plural%"
6374
 
6375
  #: addons/buy-creds/modules/buycred-module-core.php:433
6376
  msgid "Gifting"
@@ -6378,12 +6296,12 @@ msgstr "Remise de cadeaux"
6378
 
6379
  #: addons/buy-creds/modules/buycred-module-core.php:438
6380
  msgid "Allow users to buy %_plural% for other users."
6381
- msgstr "Autoriser les membres à acquérir des %_plural% pour d'autres membres"
6382
 
6383
  #: addons/buy-creds/modules/buycred-module-core.php:445
6384
  msgid "Allow users to buy %_plural% for content authors."
6385
  msgstr ""
6386
- "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
6387
 
6388
  #: addons/buy-creds/modules/buycred-module-core.php:547
6389
  msgid "buyCRED Purchase Log"
@@ -6401,7 +6319,7 @@ msgstr "%s Services de Paiements"
6401
 
6402
  #: addons/buy-creds/modules/buycred-module-core.php:627
6403
  msgid "Sandbox Mode"
6404
- msgstr "Mode bac à sable"
6405
 
6406
  #: addons/buy-creds/modules/buycred-module-core.php:630
6407
  msgid "Enable for test purchases."
@@ -6409,19 +6327,19 @@ msgstr "Activez pour faire des tests d'achats factices."
6409
 
6410
  #: addons/buy-creds/modules/buycred-module-core.php:650
6411
  msgid "More Gateways"
6412
- msgstr "Plus d'entrés"
6413
 
6414
  #: addons/buy-creds/modules/buycred-module-core.php:770
6415
  msgid "Payed"
6416
- msgstr "Payé"
6417
 
6418
  #: addons/buy-creds/modules/buycred-module-core.php:982
6419
  msgid "No purchases found"
6420
- msgstr "Aucun achat trouvé"
6421
 
6422
  #: addons/buy-creds/modules/buycred-module-core.php:1369
6423
  msgid "Buy Now"
6424
- msgstr "Acheter maintenant"
6425
 
6426
  #: addons/buy-creds/gateways/bank-transfer.php:88
6427
  #: addons/buy-creds/gateways/bitpay.php:163
@@ -6431,7 +6349,7 @@ msgstr "Acheter maintenant"
6431
  #: addons/buy-creds/gateways/skrill.php:186
6432
  msgid "Please setup this gateway before attempting to make a purchase!"
6433
  msgstr ""
6434
- "Veuillez d'abord paramètrer ce service de paiement avant d'essayer de "
6435
  "finaliser un achat !"
6436
 
6437
  #: addons/buy-creds/gateways/bank-transfer.php:215
@@ -6448,14 +6366,14 @@ msgstr "Taux de change."
6448
  #: addons/buy-creds/gateways/skrill.php:124
6449
  #, php-format
6450
  msgid "Price mismatch. Expected: %s Received: %s"
6451
- msgstr "Prix décallé. Excepté: %s reçu: %s"
6452
 
6453
  #: addons/buy-creds/gateways/bitpay.php:68
6454
  #: addons/buy-creds/gateways/paypal-standard.php:151
6455
  #: addons/buy-creds/gateways/skrill.php:130
6456
  #, php-format
6457
  msgid "Currency mismatch. Expected: %s Received: %s"
6458
- msgstr "Mauvais alignement de monnaies. Excepté: %s Reçut: %s"
6459
 
6460
  #: addons/buy-creds/gateways/bitpay.php:74
6461
  #: addons/buy-creds/gateways/netbilling.php:98
@@ -6463,7 +6381,7 @@ msgstr "Mauvais alignement de monnaies. Excepté: %s Reçut: %s"
6463
  #: addons/buy-creds/gateways/skrill.php:136
6464
  #, php-format
6465
  msgid "Payment not completed. Received: %s"
6466
- msgstr "Paiement non complet. Reçu: %s"
6467
 
6468
  #: addons/buy-creds/gateways/bitpay.php:85
6469
  #: addons/buy-creds/gateways/netbilling.php:109
@@ -6471,7 +6389,7 @@ msgstr "Paiement non complet. Reçu: %s"
6471
  #: addons/buy-creds/gateways/paypal-standard.php:168
6472
  #: addons/buy-creds/gateways/skrill.php:147
6473
  msgid "Failed to credit users account."
6474
- msgstr "Echec de créditions aux comptes des utilisateurs."
6475
 
6476
  #: addons/buy-creds/gateways/bitpay.php:208
6477
  #: addons/buy-creds/gateways/bitpay.php:219
@@ -6480,13 +6398,13 @@ msgstr "Echec de créditions aux comptes des utilisateurs."
6480
  #: addons/buy-creds/gateways/paypal-standard.php:261
6481
  #: addons/buy-creds/gateways/skrill.php:275
6482
  msgid "Processing payment &hellip;"
6483
- msgstr "Procédure de paiement en cours &hellip;"
6484
 
6485
  #: addons/buy-creds/gateways/bitpay.php:211
6486
  msgid ""
6487
  "Could not create a BitPay Invoice. Please contact the site administrator!"
6488
  msgstr ""
6489
- "Impossible de créer une facture BitPay. Veuillez contacter l'administrateur "
6490
  "du site."
6491
 
6492
  #: addons/buy-creds/gateways/bitpay.php:212
@@ -6517,15 +6435,15 @@ msgstr "Vitesse de transaction"
6517
 
6518
  #: addons/buy-creds/gateways/bitpay.php:276
6519
  msgid "High"
6520
- msgstr "Haute"
6521
 
6522
  #: addons/buy-creds/gateways/bitpay.php:277
6523
  msgid "Medium"
6524
- msgstr "Moyenne"
6525
 
6526
  #: addons/buy-creds/gateways/bitpay.php:278
6527
  msgid "Low"
6528
- msgstr "Basse"
6529
 
6530
  #: addons/buy-creds/gateways/bitpay.php:291
6531
  msgid "Full Notifications"
@@ -6533,19 +6451,19 @@ msgstr "Messages complets"
6533
 
6534
  #: addons/buy-creds/gateways/netbilling.php:208
6535
  msgid "Account ID"
6536
- msgstr "ID du compte"
6537
 
6538
  #: addons/buy-creds/gateways/netbilling.php:214
6539
  msgid "Site Tag"
6540
- msgstr "Mot-clé du site"
6541
 
6542
  #: addons/buy-creds/gateways/netbilling.php:220
6543
  msgid "Order Integrity Key"
6544
- msgstr "Commandez une clé de sécurité"
6545
 
6546
  #: addons/buy-creds/gateways/netbilling.php:224
6547
  msgid "Found under Step 12 on the Fraud Defense page."
6548
- msgstr "Trouvé à l'étape 12 de la page Défense contre la Fraude"
6549
 
6550
  #: addons/buy-creds/gateways/netbilling.php:238
6551
  msgid "Postback CGI URL"
@@ -6557,36 +6475,35 @@ msgid ""
6557
  "your site. Under \"Default payment form settings\" make sure the Postback "
6558
  "CGI URL is set to the above address and \"Return method\" is set to POST."
6559
  msgstr ""
6560
- "Vous que ce service fonctionne, vous devez vous connecter à votre compte "
6561
- "Netbilling et modifier les paramètres de votre site. A la rubrique "
6562
- "\"Default payment form settings\", indiquez l'URL ci-dessous dans la case "
6563
- "Postback CGI URL et assurez-vous que la case \"Return method\" est bien sur "
6564
- "POST."
6565
 
6566
  #: addons/buy-creds/gateways/netbilling.php:290
6567
  msgid "Incorrect Credit Card number"
6568
- msgstr "Le numéro de la carte de crédit est incorrect"
6569
 
6570
  #: addons/buy-creds/gateways/netbilling.php:296
6571
  msgid "The credit card entered is past its expiration date."
6572
- msgstr "Votre carte de crédit est expirée"
6573
 
6574
  #: addons/buy-creds/gateways/netbilling.php:299
6575
  msgid "The CVV2 number entered is not valid."
6576
- msgstr "Le cryptogramme que vous avez indiqué n'est pas valide."
6577
 
6578
  #: addons/buy-creds/gateways/netbilling.php:306
6579
  msgid "The bank routing number entered is not valid."
6580
- msgstr "Le numéro de routage de la banque n'est pas valide."
6581
 
6582
  #: addons/buy-creds/gateways/netbilling.php:310
6583
  msgid "The bank account number entered is not valid."
6584
- msgstr "Le numéro de compte bancaire n'est pas valide"
6585
 
6586
  #: addons/buy-creds/gateways/zombaio.php:204
6587
  #, php-format
6588
  msgid "Duplicate transaction. Received: %s"
6589
- msgstr "Dupliquer les transactions. Reçu: %s"
6590
 
6591
  #: addons/buy-creds/gateways/zombaio.php:210
6592
  #, php-format
@@ -6602,9 +6519,9 @@ msgstr ""
6602
  " \n"
6603
  "est\n"
6604
  " \n"
6605
- "activé!\n"
6606
  " \n"
6607
- "Reçu\n"
6608
  ":\n"
6609
  "% s"
6610
 
@@ -6627,11 +6544,11 @@ msgstr "URL du logo"
6627
 
6628
  #: addons/buy-creds/gateways/zombaio.php:339
6629
  msgid "IP Verification"
6630
- msgstr "ID de vérification"
6631
 
6632
  #: addons/buy-creds/gateways/zombaio.php:342
6633
  msgid "Do not verify that callbacks are coming from Zombaio."
6634
- msgstr "Ne pas vérifier que les rappels proviennent de Zombaio."
6635
 
6636
  #: addons/buy-creds/gateways/zombaio.php:345
6637
  msgid "Language"
@@ -6646,13 +6563,13 @@ msgid ""
6646
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
6647
  "address and click validate."
6648
  msgstr ""
6649
- "Pour faire fonctionner ce service, veuillez d'abord vous connecter à ZOA et "
6650
  "indiquez l'adresse ci-dessus comme URL de retour avant de valider."
6651
 
6652
  #: addons/buy-creds/gateways/paypal-standard.php:192
6653
  #: addons/buy-creds/gateways/skrill.php:171
6654
  msgid "Success"
6655
- msgstr "Succès !"
6656
 
6657
  #: addons/buy-creds/gateways/paypal-standard.php:193
6658
  #: addons/buy-creds/gateways/skrill.php:172
@@ -6673,7 +6590,7 @@ msgstr "Produit:"
6673
 
6674
  #: addons/buy-creds/gateways/skrill.php:267
6675
  msgid "Gift to:"
6676
- msgstr "Cadeau à "
6677
 
6678
  #: addons/buy-creds/gateways/skrill.php:268
6679
  msgid "(author)"
@@ -6689,24 +6606,24 @@ msgstr "Mot secret"
6689
 
6690
  #: addons/buy-creds/gateways/skrill.php:324
6691
  msgid "Confirmation Email"
6692
- msgstr "Email de confirmation"
6693
 
6694
  #: addons/buy-creds/gateways/skrill.php:327
6695
  msgid ""
6696
  "Ask Skrill to send me a confirmation email for each successful purchase."
6697
  msgstr ""
6698
- "Demander à Skrill d'envoyer un mail de confirmation après chaque "
6699
- "acquisition réussie."
6700
 
6701
  #: addons/buy-creds/gateways/skrill.php:330
6702
  msgid "Checkout Page"
6703
- msgstr "Page de contrôle"
6704
 
6705
  #: addons/buy-creds/gateways/skrill.php:335
6706
  msgid ""
6707
  "If left empty, your account email is used as title on the Skill Payment Page."
6708
  msgstr ""
6709
- "Si vous laissez vide, c'est votre mail de compte qui sera utilisé comme "
6710
  "titre de la page de paiement de Skrill"
6711
 
6712
  #: addons/buy-creds/gateways/skrill.php:340
@@ -6715,8 +6632,8 @@ msgid ""
6715
  "integration results we recommend you use logos with dimensions up to 200px "
6716
  "in width and 50px in height."
6717
  msgstr ""
6718
- "L'url vers l'image à afficher sur l'interface du service de paiement. Pour "
6719
- "une intégration optimale, nous vous recommandons d'utiliser un logo de 200 "
6720
  "par 50 pixels."
6721
 
6722
  #: addons/buy-creds/gateways/skrill.php:343
@@ -6729,4 +6646,4 @@ msgid ""
6729
  "completed. This text is shown by Skrill."
6730
  msgstr ""
6731
  "Texte additionnel en option qui s'affichera une fois une transaction "
6732
- "complétée avec succès. Ce texte est affiché par Skrill."
1
  msgid ""
2
  msgstr ""
3
+ "PO-Revision-Date: 2017-08-29 08:45+0000\n"
 
 
 
 
 
 
 
4
  "MIME-Version: 1.0\n"
5
  "Content-Type: text/plain; charset=UTF-8\n"
6
  "Content-Transfer-Encoding: 8bit\n"
7
+ "Plural-Forms: nplurals=2; plural=n > 1\n"
8
+ "X-Generator: Loco - https://localise.biz/\n"
9
+ "Language: fr-FR\n"
10
+ "Project-Id-Version: Plugins - myCRED - Stable (latest release)\n"
11
+ "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2017-08-29 08:45+0000\n"
13
+ "Last-Translator: mycredlabs <gabriel.s@merovingi.com>\n"
14
+ "Language-Team: French (France)"
15
+
16
+ #: mycred.php:581
 
17
  msgid "Import balances via a CSV file."
18
  msgstr ""
19
 
20
+ #: abstracts/mycred-abstract-hook.php:294
21
  msgid "/ Day"
22
  msgstr ""
23
 
24
+ #: abstracts/mycred-abstract-hook.php:295
25
  msgid "/ Week"
26
  msgstr ""
27
 
28
+ #: abstracts/mycred-abstract-hook.php:296
29
  msgid "/ Month"
30
  msgstr ""
31
 
32
+ #: abstracts/mycred-abstract-hook.php:297
33
  msgid "in Total"
34
  msgstr ""
35
 
47
 
48
  #: modules/mycred-module-management.php:237
49
  #: modules/mycred-module-management.php:775 modules/mycred-module-log.php:93
50
+ #: modules/mycred-module-log.php:904
51
  #: includes/classes/class.query-export.php:263
52
  #: includes/classes/class.query-export.php:360
53
  #: includes/classes/class.query-log.php:904
63
  msgid "Balances"
64
  msgstr ""
65
 
 
 
 
 
 
 
66
  #: modules/mycred-module-management.php:759
67
  msgid "Total Balance"
68
  msgstr ""
91
  msgid "Log Updated"
92
  msgstr ""
93
 
94
+ #: modules/mycred-module-settings.php:431
95
+ msgid "Export %singular% Balances"
96
+ msgstr ""
97
+
98
  #: modules/mycred-module-settings.php:432
99
  msgid ""
100
  "In order to adjust the number of decimal places you want to use we must "
117
  msgstr ""
118
 
119
  #: modules/mycred-module-settings.php:530 modules/mycred-module-addons.php:330
120
+ #: modules/mycred-module-addons.php:368 modules/mycred-module-log.php:544
121
  #: modules/mycred-module-network.php:241 modules/mycred-module-network.php:276
122
  #: modules/mycred-module-network.php:292
123
  #: includes/importers/mycred-cubepoints.php:305
134
  #: modules/mycred-module-settings.php:555
135
  #: modules/mycred-module-settings.php:605
136
  #: modules/mycred-module-settings.php:612
137
+ #: modules/mycred-module-settings.php:800
138
+ #: modules/mycred-module-settings.php:806 includes/mycred-setup.php:280
139
  #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
140
  #: includes/mycred-setup.php:340 addons/coupons/myCRED-addon-coupons.php:710
141
  #: addons/coupons/myCRED-addon-coupons.php:717
230
  msgid "Balance Meta Key"
231
  msgstr ""
232
 
233
+ #: modules/mycred-module-settings.php:712
234
+ msgid "Export Balances"
235
+ msgstr ""
236
+
237
+ #: modules/mycred-module-settings.php:811
238
  msgid ""
239
  "The meta key must be lowercase and only contain letters or underscores. All "
240
  "other characters will be deleted!"
269
  msgstr[0] ""
270
  msgstr[1] ""
271
 
272
+ #: modules/mycred-module-log.php:466
273
  msgid "The log entry was successfully updated."
274
  msgstr ""
275
 
276
+ #: modules/mycred-module-log.php:467
277
  msgid "The selected log entry could not be deleted."
278
  msgstr ""
279
 
280
+ #: modules/mycred-module-log.php:501
281
  #, php-format
282
  msgctxt "e.g. Log entries from April 12th 2016"
283
  msgid "Log entries from %s"
284
  msgstr ""
285
 
286
+ #: modules/mycred-module-log.php:554
287
  msgid ""
288
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
289
  "Certain hooks and shortcodes will not work correctly!"
290
  msgstr ""
291
 
292
+ #: modules/mycred-module-log.php:911
293
  msgid "Original Entry"
294
  msgstr ""
295
 
296
+ #: modules/mycred-module-log.php:923
297
  msgid "Delete Entry"
298
  msgstr ""
299
 
300
+ #: modules/mycred-module-log.php:928
301
  msgid "Update Entry"
302
  msgstr ""
303
 
321
  msgid "Blog IDs"
322
  msgstr ""
323
 
324
+ #: modules/mycred-module-export.php:390
325
  msgid "Make both format options available."
326
  msgstr ""
327
 
328
+ #: modules/mycred-module-export.php:392
329
  msgid "Exports"
330
  msgstr ""
331
 
332
+ #: modules/mycred-module-export.php:398
333
  msgid "Front End Exports"
334
  msgstr ""
335
 
336
+ #: modules/mycred-module-export.php:414 modules/mycred-module-export.php:462
337
  msgid "Export Format"
338
  msgstr ""
339
 
340
+ #: modules/mycred-module-export.php:430 modules/mycred-module-export.php:478
341
  msgid "File Name"
342
  msgstr ""
343
 
344
+ #: modules/mycred-module-export.php:439
345
  msgid ""
346
  "If enabled, users will only be able to export their own log entries! Export "
347
  "tools becomes available wherever you are using the mycred_history shortcode "
348
  "or in the users profile."
349
  msgstr ""
350
 
351
+ #: modules/mycred-module-export.php:446
352
  msgid "Back End Exports"
353
  msgstr ""
354
 
355
+ #: modules/mycred-module-export.php:487
356
  msgid ""
357
  "Raw format should be used when you intend to use the export tool to backup "
358
  "or import entries in another installation. Formatted exports reflect what "
375
  msgid "Sending Invites"
376
  msgstr ""
377
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
378
  #: plugins/mycred-hook-invite-anyone.php:229
379
  msgid "Accepted Invites"
380
  msgstr ""
397
  msgid "Content Rating"
398
  msgstr ""
399
 
 
 
 
 
 
 
 
 
 
 
 
 
400
  #: plugins/mycred-hook-wp-postratings.php:192
401
  #: plugins/mycred-hook-wp-postratings.php:199
402
  msgid "Use the Rating Value instead of the amount set here."
413
  msgstr ""
414
 
415
  #: plugins/mycred-hook-gravityforms.php:156
416
+ #: plugins/mycred-hook-contact-form7.php:162
417
  #, php-format
418
  msgid "Form: %s"
419
  msgstr ""
708
  msgstr ""
709
 
710
  #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
711
+ #: addons/email-notices/myCRED-addon-email-notices.php:1445
712
  msgid "Advanced"
713
  msgstr ""
714
 
809
  msgid "Shows multiple balances."
810
  msgstr ""
811
 
812
+ #: includes/mycred-functions.php:2790
813
  msgid "in total"
814
  msgstr ""
815
 
816
+ #: includes/mycred-functions.php:2792
817
  msgid "per day"
818
  msgstr ""
819
 
820
+ #: includes/mycred-functions.php:2795
821
  msgid "per week"
822
  msgstr ""
823
 
824
+ #: includes/mycred-functions.php:2798
825
  msgid "per month"
826
  msgstr ""
827
 
828
+ #: includes/mycred-functions.php:2800 includes/mycred-functions.php:2806
829
  #, php-format
830
  msgid "Maximum once"
831
  msgid_plural "Maximum %d times"
832
  msgstr[0] ""
833
  msgstr[1] ""
834
 
835
+ #: includes/mycred-functions.php:2828
836
  #, php-format
837
  msgctxt "e.g. 5 th"
838
  msgid "%d th"
839
  msgstr ""
840
 
841
+ #: includes/mycred-functions.php:2832
842
  #, php-format
843
  msgctxt "e.g. 1 st"
844
  msgid "%d st"
845
  msgstr ""
846
 
847
+ #: includes/mycred-functions.php:2833
848
  #, php-format
849
  msgctxt "e.g. 2 nd"
850
  msgid "%d nd"
851
  msgstr ""
852
 
853
+ #: includes/mycred-functions.php:2834
854
  #, php-format
855
  msgctxt "e.g. 3 rd"
856
  msgid "%d rd"
1016
  msgid "New Group Cover"
1017
  msgstr ""
1018
 
1019
+ #: includes/classes/class.query-log.php:2258
1020
+ msgid "Affiliate Signup (AffiliateWP)"
1021
+ msgstr ""
1022
+
1023
+ #: includes/classes/class.query-log.php:2259
1024
+ msgid "Referred Visit (AffiliateWP)"
1025
+ msgstr ""
1026
+
1027
  #: includes/classes/class.query-log.php:2260
1028
  msgid "Affiliate Referral (AffiliateWP)"
1029
  msgstr ""
1183
  "someone who is not logged in."
1184
  msgstr ""
1185
 
 
 
 
 
1186
  #: addons/transfer/myCRED-addon-transfer.php:508
1187
  msgid ""
1188
  "The template to use if you select to show the transfer limit in the transfer "
1189
  "shortcode or widget. Ignored if there is no limit enforced."
1190
  msgstr ""
1191
 
 
 
 
 
1192
  #: addons/transfer/myCRED-addon-transfer.php:524
1193
  msgid ""
1194
  "The template to use if you select to show the users balance in the transfer "
1201
  msgstr ""
1202
 
1203
  #: addons/ranks/myCRED-addon-ranks.php:230
1204
+ #: addons/ranks/myCRED-addon-ranks.php:1379
1205
  msgid "Rank Logo"
1206
  msgstr ""
1207
 
1229
  msgid "No ranks exists."
1230
  msgstr ""
1231
 
1232
+ #: addons/ranks/myCRED-addon-ranks.php:1193
1233
  msgid "Rank Setup"
1234
  msgstr ""
1235
 
1236
+ #: addons/ranks/myCRED-addon-ranks.php:1234
1237
  msgid "Minimum Balance Requirement"
1238
  msgstr ""
1239
 
1240
+ #: addons/ranks/myCRED-addon-ranks.php:1240
1241
  msgid "Maximum Balance Requirement"
1242
  msgstr ""
1243
 
1244
+ #: addons/ranks/myCRED-addon-ranks.php:1399
1245
  msgid "Rank Post Type"
1246
  msgstr ""
1247
 
1248
+ #: addons/ranks/myCRED-addon-ranks.php:1402
1249
  msgid "Make Ranks Public"
1250
  msgstr ""
1251
 
1252
+ #: addons/ranks/myCRED-addon-ranks.php:1406
1253
  msgid "Rank SLUG"
1254
  msgstr ""
1255
 
1256
+ #: addons/ranks/myCRED-addon-ranks.php:1408
1257
  msgid ""
1258
  "If you have selected to make Ranks public, you can select what rank archive "
1259
  "URL slug you want to use. Ignored if Ranks are not set to be public."
1260
  msgstr ""
1261
 
1262
+ #: addons/ranks/myCRED-addon-ranks.php:1429
1263
  msgid "Option to set in which order Ranks should be shown on the archive page."
1264
  msgstr ""
1265
 
1266
+ #: addons/ranks/myCRED-addon-ranks.php:1436
1267
  msgid "Rank Behaviour"
1268
  msgstr ""
1269
 
1270
+ #: addons/ranks/myCRED-addon-ranks.php:1441
1271
  msgid "Based on Current Balances"
1272
  msgstr ""
1273
 
1274
+ #: addons/ranks/myCRED-addon-ranks.php:1443
1275
  msgid ""
1276
  "Users can be promoted or demoted depending on where their balance fits in "
1277
  "amongst your ranks."
1278
  msgstr ""
1279
 
1280
+ #: addons/ranks/myCRED-addon-ranks.php:1449
1281
  msgid "Based on Total Balances"
1282
  msgstr ""
1283
 
1284
+ #: addons/ranks/myCRED-addon-ranks.php:1451
1285
  msgid ""
1286
  "Users can only be promoted and gain higher ranks even if their balance "
1287
  "decreases."
1288
  msgstr ""
1289
 
1290
+ #: addons/ranks/myCRED-addon-ranks.php:1458
1291
  msgid "Tools"
1292
  msgstr ""
1293
 
1294
+ #: addons/ranks/myCRED-addon-ranks.php:1459
1295
  msgid ""
1296
  "Use this button to calculate or recalculate each individual users total "
1297
  "balance if you think your users total balances are incorrect, or if you "
1298
  "switch from Ranks being based on users current balance to total balance."
1299
  msgstr ""
1300
 
1301
+ #: addons/ranks/myCRED-addon-ranks.php:1464
1302
+ #: addons/badges/myCRED-addon-badges.php:1155
1303
  msgid "Third-party Integrations"
1304
  msgstr ""
1305
 
1306
+ #: addons/ranks/myCRED-addon-ranks.php:1499
1307
+ #: addons/ranks/myCRED-addon-ranks.php:1540
1308
  msgid ""
1309
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
1310
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
1311
  msgstr ""
1312
 
1313
+ #: addons/ranks/myCRED-addon-ranks.php:1503
1314
+ #: addons/ranks/myCRED-addon-ranks.php:1544
1315
+ #: addons/badges/myCRED-addon-badges.php:1187
1316
+ #: addons/badges/myCRED-addon-badges.php:1221
1317
  msgid "Not installed"
1318
  msgstr ""
1319
 
1320
+ #: addons/ranks/myCRED-addon-ranks.php:1522
1321
  msgid "Include in Topic Replies"
1322
  msgstr ""
1323
 
1324
+ #: addons/ranks/myCRED-addon-ranks.php:1524
1325
  msgid "Include in Topic Replies and Profile"
1326
  msgstr ""
1327
 
1413
  msgid "user gains a badge"
1414
  msgstr ""
1415
 
1416
+ #: addons/email-notices/myCRED-addon-email-notices.php:1418
1417
  msgid "Plain Text"
1418
  msgstr ""
1419
 
1420
+ #: addons/email-notices/myCRED-addon-email-notices.php:1426
1421
  #: addons/banking/services/mycred-service-payouts.php:825
1422
  msgid "Schedule"
1423
  msgstr ""
1424
 
1425
+ #: addons/email-notices/myCRED-addon-email-notices.php:1448
1426
  msgid "Filter Email Subjects"
1427
  msgstr ""
1428
 
1429
+ #: addons/email-notices/myCRED-addon-email-notices.php:1451
1430
  msgid "Filter Email Body"
1431
  msgstr ""
1432
 
1433
+ #: addons/email-notices/myCRED-addon-email-notices.php:1506
 
 
 
 
1434
  msgid "Default CSS Styling"
1435
  msgstr ""
1436
 
1437
+ #: addons/email-notices/myCRED-addon-email-notices.php:1508
1438
  msgid ""
1439
  "Default email CSS styling. Note that if you intend to send HTML emails, you "
1440
  "should use inline CSS styling for best results."
1456
  msgid "Negative Values"
1457
  msgstr ""
1458
 
 
 
 
 
 
 
 
 
1459
  #: addons/stats/myCRED-addon-stats.php:417
1460
  msgid "Your log is empty. No statistics can be shown."
1461
  msgstr ""
1468
  msgid "Badge Saved."
1469
  msgstr ""
1470
 
1471
+ #: addons/badges/myCRED-addon-badges.php:423
1472
  msgid "First Level"
1473
  msgstr ""
1474
 
1475
+ #: addons/badges/myCRED-addon-badges.php:535
1476
+ #: addons/badges/myCRED-addon-badges.php:826
1477
  msgid "Add Level"
1478
  msgstr ""
1479
 
1480
+ #: addons/badges/myCRED-addon-badges.php:536
1481
+ #: addons/badges/myCRED-addon-badges.php:827
1482
  msgid "Remove Level"
1483
  msgstr ""
1484
 
1485
+ #: addons/badges/myCRED-addon-badges.php:537
1486
+ #: addons/badges/myCRED-addon-badges.php:780
1487
+ #: addons/badges/myCRED-addon-badges.php:843
1488
+ #: addons/badges/myCRED-addon-badges.php:848
1489
  msgid "Set Image"
1490
  msgstr ""
1491
 
1492
+ #: addons/badges/myCRED-addon-badges.php:538
1493
+ #: addons/badges/myCRED-addon-badges.php:780
1494
+ #: addons/badges/myCRED-addon-badges.php:848
1495
  msgid "Change Image"
1496
  msgstr ""
1497
 
1498
+ #: addons/badges/myCRED-addon-badges.php:539
1499
  msgid "Are you sure you want to remove this level?"
1500
  msgstr ""
1501
 
1502
+ #: addons/badges/myCRED-addon-badges.php:540
1503
+ #: addons/badges/myCRED-addon-badges.php:844
1504
+ #: addons/badges/myCRED-addon-badges.php:1313
1505
  msgid "Level"
1506
  msgstr ""
1507
 
1508
+ #: addons/badges/myCRED-addon-badges.php:543
1509
+ #: addons/badges/myCRED-addon-badges.php:946
1510
  #: addons/badges/includes/mycred-badge-functions.php:272
1511
  msgctxt "Comparison of badge requirements. A AND B"
1512
  msgid "AND"
1513
  msgstr ""
1514
 
1515
+ #: addons/badges/myCRED-addon-badges.php:544
1516
+ #: addons/badges/myCRED-addon-badges.php:946
1517
  #: addons/badges/includes/mycred-badge-functions.php:270
1518
  msgctxt "Comparison of badge requirements. A OR B"
1519
  msgid "OR"
1520
  msgstr ""
1521
 
1522
+ #: addons/badges/myCRED-addon-badges.php:596
1523
  msgid "Badge Setup"
1524
  msgstr ""
1525
 
1526
+ #: addons/badges/myCRED-addon-badges.php:605
1527
  msgid "Default Badge Image"
1528
  msgstr ""
1529
 
1530
+ #: addons/badges/myCRED-addon-badges.php:747
1531
  #: addons/badges/includes/mycred-badge-functions.php:288
1532
  msgid "This badge is manually awarded."
1533
  msgstr ""
1534
 
1535
+ #: addons/badges/myCRED-addon-badges.php:783
1536
  msgid "Optional image to show when a user has not earned this badge."
1537
  msgstr ""
1538
 
1539
+ #: addons/badges/myCRED-addon-badges.php:850
1540
  #, php-format
1541
  msgid "Level %d"
1542
  msgstr ""
1543
 
1544
+ #: addons/badges/myCRED-addon-badges.php:874
1545
  msgid "Select Point Type"
1546
  msgstr ""
1547
 
1548
+ #: addons/badges/myCRED-addon-badges.php:888
1549
  msgid "Select Reference"
1550
  msgstr ""
1551
 
1552
+ #: addons/badges/myCRED-addon-badges.php:964
1553
  msgid "Reward"
1554
  msgstr ""
1555
 
1556
+ #: addons/badges/myCRED-addon-badges.php:1183
1557
+ #: addons/badges/myCRED-addon-badges.php:1217
1558
  msgid "Show all badges, including badges users have not yet earned."
1559
  msgstr ""
1560
 
1561
+ #: addons/badges/myCRED-addon-badges.php:1276
1562
  msgid "No image set"
1563
  msgstr ""
1564
 
1565
+ #: addons/badges/myCRED-addon-badges.php:1308
1566
  msgid "Select a level"
1567
  msgstr ""
1568
 
1569
+ #: addons/badges/myCRED-addon-badges.php:1322
1570
  msgid "Earned"
1571
  msgstr ""
1572
 
1573
+ #: addons/badges/myCRED-addon-badges.php:1431
1574
  #, php-format
1575
  msgid "A total of %d users have received this badge."
1576
  msgstr ""
1577
 
1578
+ #: addons/badges/myCRED-addon-badges.php:1458
1579
  msgid "No connections where removed."
1580
  msgstr ""
1581
 
1582
+ #: addons/badges/myCRED-addon-badges.php:1460
1583
  #, php-format
1584
  msgid "%s connections where removed."
1585
  msgstr ""
1849
  msgid "View Schedule"
1850
  msgstr ""
1851
 
 
 
 
 
 
 
1852
  #: addons/banking/services/mycred-service-payouts.php:472
1853
  msgid "Delete Schedule"
1854
  msgstr ""
2072
 
2073
  #: addons/transfer/includes/mycred-transfer-widgets.php:113
2074
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
2075
+ #: addons/buy-creds/modules/buycred-module-pending.php:576
2076
  #: addons/buy-creds/modules/buycred-module-core.php:1487
2077
  msgid "Recipient"
2078
  msgstr ""
2199
  msgid "An unknown error occurred. Coupon not used."
2200
  msgstr ""
2201
 
2202
+ #: addons/sell-content/includes/mycred-sell-functions.php:525
2203
  #, php-format
2204
  msgctxt "Point type name"
2205
  msgid "You can not pay using %s"
2206
  msgstr ""
2207
 
2208
+ #: addons/sell-content/includes/mycred-sell-functions.php:786
2209
  #, php-format
2210
  msgctxt "all post type name"
2211
  msgid "All %s"
2212
  msgstr ""
2213
 
2214
+ #: addons/sell-content/includes/mycred-sell-functions.php:790
2215
  #, php-format
2216
  msgctxt "all post type name"
2217
  msgid "%s I manually select"
2218
  msgstr ""
2219
 
2220
+ #: addons/sell-content/includes/mycred-sell-functions.php:794
2221
  #, php-format
2222
  msgctxt "%s = post type name"
2223
  msgid "All %s except"
2224
  msgstr ""
2225
 
2226
+ #: addons/sell-content/includes/mycred-sell-functions.php:795
2227
  #, php-format
2228
  msgctxt "%s = post type name"
2229
  msgid "Comma separated list of %s IDs to exclude"
2230
  msgstr ""
2231
 
2232
+ #: addons/sell-content/includes/mycred-sell-functions.php:798
2233
  #, php-format
2234
  msgctxt "%s = post type name"
2235
  msgid "Only %s"
2236
  msgstr ""
2237
 
2238
+ #: addons/sell-content/includes/mycred-sell-functions.php:799
2239
  #, php-format
2240
  msgctxt "%s = post type name"
2241
  msgid "Comma separated list of %s IDs"
2242
  msgstr ""
2243
 
2244
+ #: addons/sell-content/includes/mycred-sell-functions.php:811
2245
  #, php-format
2246
  msgctxt "e.g. Only \"Posts\" in \"Categories\""
2247
  msgid "Only %s in %s"
2248
  msgstr ""
2249
 
2250
+ #: addons/sell-content/includes/mycred-sell-functions.php:812
2251
+ #: addons/sell-content/includes/mycred-sell-functions.php:816
2252
+ #: addons/sell-content/includes/mycred-sell-functions.php:822
2253
+ #: addons/sell-content/includes/mycred-sell-functions.php:826
2254
  #, php-format
2255
  msgctxt "%s = taxonomy name"
2256
  msgid "Comma separated list of %s slugs"
2257
  msgstr ""
2258
 
2259
+ #: addons/sell-content/includes/mycred-sell-functions.php:815
2260
  #, php-format
2261
  msgctxt "e.g. Only \"Posts\" not in \"Categories\""
2262
  msgid "Only %s not in %s"
2263
  msgstr ""
2264
 
2265
+ #: addons/sell-content/includes/mycred-sell-functions.php:821
2266
  #, php-format
2267
  msgctxt "e.g. Only \"Posts\" with \"Tags\""
2268
  msgid "Only %s with %s"
2269
  msgstr ""
2270
 
2271
+ #: addons/sell-content/includes/mycred-sell-functions.php:825
2272
  #, php-format
2273
  msgctxt "e.g. Only \"Posts\" without \"Tags\""
2274
  msgid "Only %s without %s"
2296
  msgid "Received new request to purchase %s."
2297
  msgstr ""
2298
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2299
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:691
2300
  msgctxt "buyCRED order description"
2301
  msgid "Item"
2302
  msgstr ""
2303
 
 
 
2304
  #: addons/buy-creds/modules/buycred-module-pending.php:182
2305
  #: addons/buy-creds/modules/buycred-module-pending.php:183
2306
  #: addons/buy-creds/modules/buycred-module-pending.php:184
2308
  #: addons/buy-creds/modules/buycred-module-pending.php:186
2309
  #: addons/buy-creds/modules/buycred-module-pending.php:187
2310
  #: addons/buy-creds/modules/buycred-module-pending.php:188
2311
+ #: addons/buy-creds/modules/buycred-module-pending.php:189
2312
+ #: addons/buy-creds/modules/buycred-module-pending.php:190
2313
  msgid "Payment Updated."
2314
  msgstr ""
2315
 
2316
+ #: addons/buy-creds/modules/buycred-module-pending.php:218
2317
  msgid "Pending payment successfully credited to account."
2318
  msgstr ""
2319
 
2320
+ #: addons/buy-creds/modules/buycred-module-pending.php:220
2321
  msgid "Failed to credit the pending payment to account."
2322
  msgstr ""
2323
 
2324
+ #: addons/buy-creds/modules/buycred-module-pending.php:468
2325
  msgid "Pending Payment"
2326
  msgstr ""
2327
 
2328
+ #: addons/buy-creds/modules/buycred-module-pending.php:506
2329
  msgid "Trash"
2330
  msgstr ""
2331
 
2332
+ #: addons/buy-creds/modules/buycred-module-pending.php:570
2333
  msgid "Payer"
2334
  msgstr ""
2335
 
2336
+ #: addons/buy-creds/modules/buycred-module-pending.php:679
2337
  msgid "Pending request created."
2338
  msgstr ""
2339
 
2340
+ #: addons/buy-creds/modules/buycred-module-pending.php:727
2341
  #, php-format
2342
  msgid "Pending payment updated by %s"
2343
  msgstr ""
2451
  msgid "Return to %s"
2452
  msgstr ""
2453
 
2454
+ #: mycred.php:568
 
 
 
 
2455
  #, php-format
2456
  msgid "%s Log Import"
2457
  msgstr "Importation du journal %s"
2458
 
2459
+ #: mycred.php:569
2460
  msgid "Import log entries via a CSV file."
2461
+ msgstr "Importation des données de connexion via un fichier CSV"
2462
 
2463
+ #: mycred.php:580
2464
  #, php-format
2465
  msgid "%s Balance Import"
2466
  msgstr "Import des soldes %s"
2467
 
2468
+ #: mycred.php:592
2469
  #, php-format
2470
  msgid "%s CubePoints Import"
2471
  msgstr "Importation CubePoints %s"
2472
 
2473
+ #: mycred.php:593
2474
  msgid "Import CubePoints log entries and / or balances."
2475
+ msgstr "Importe les données de onnexion CubePoints et/ou les soldes"
2476
 
2477
+ #: mycred.php:635 modules/mycred-module-management.php:316
2478
+ #: modules/mycred-module-settings.php:425 modules/mycred-module-log.php:463
2479
  #: addons/transfer/myCRED-addon-transfer.php:159
2480
  #: addons/ranks/myCRED-addon-ranks.php:986
2481
+ #: addons/ranks/myCRED-addon-ranks.php:1572
2482
+ #: addons/badges/myCRED-addon-badges.php:727
2483
  #: addons/gateway/event-booking/mycred-eventsmanager.php:537
2484
  msgid "Processing..."
2485
  msgstr "Chargement en cours..."
2486
 
2487
+ #: mycred.php:636
2488
  msgid "Sent"
2489
  msgstr "Envoyer"
2490
 
2491
+ #: mycred.php:637
2492
  msgid "Error - Try Again"
2493
  msgstr "Erreur - essayez encore une fois"
2494
 
2495
+ #: mycred.php:812 mycred.php:813
2496
  #, php-format
2497
  msgid "About %s"
2498
+ msgstr "A propos de %s"
2499
 
2500
+ #: mycred.php:821 mycred.php:822
2501
  msgid "Awesome People"
2502
  msgstr "On les remercie"
2503
 
2504
+ #: mycred.php:859 modules/mycred-module-management.php:558
2505
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:34
2506
  msgid "Balance"
2507
  msgstr "Solde"
2508
 
2509
+ #: mycred.php:926 modules/mycred-module-management.php:473
2510
  #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
2511
+ #: addons/buy-creds/modules/buycred-module-pending.php:471
2512
  msgid "History"
2513
+ msgstr "Histoire"
2514
 
2515
+ #: mycred.php:997 mycred.php:1018
2516
  #: addons/notifications/myCRED-addon-notifications.php:194
2517
  #: addons/email-notices/myCRED-addon-email-notices.php:277
2518
  #: addons/banking/services/mycred-service-interest.php:477
2519
  #: addons/gateway/event-booking/mycred-eventsmanager.php:591
 
2520
  msgid "Setup"
2521
+ msgstr "Installer"
2522
 
2523
+ #: mycred.php:999 modules/mycred-module-settings.php:21
2524
  #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
2525
  #: modules/mycred-module-network.php:270
2526
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
2527
  #: addons/buy-creds/modules/buycred-module-core.php:592
2528
  msgid "Settings"
2529
+ msgstr "Paramètres (Réglages)"
2530
 
2531
+ #: mycred.php:1039
2532
  msgid ""
2533
  "Make sure to backup your database and files before updating, in case "
2534
  "anything goes wrong!"
2535
  msgstr ""
2536
+ "Agissez prudemment en sauvegardant votre base de données et vos fichiers "
2537
+ "avant de lancer la mise à jour."
2538
 
2539
  #: abstracts/mycred-abstract-hook.php:90
2540
  msgid "This Hook has no settings"
2541
+ msgstr "Ce hook n'a pas de paramètre."
2542
 
2543
+ #: abstracts/mycred-abstract-hook.php:293
2544
+ #: abstracts/mycred-abstract-hook.php:364 includes/mycred-functions.php:2784
2545
  msgid "No limit"
2546
+ msgstr "Illimité"
2547
 
2548
+ #: abstracts/mycred-abstract-hook.php:365
2549
  msgid "Once every 24 hours"
2550
  msgstr "Une fois toutes les 24h"
2551
 
2552
+ #: abstracts/mycred-abstract-hook.php:366
2553
  msgid "Once every 7 days"
2554
  msgstr "Une fois tous les 7 jours"
2555
 
2556
+ #: abstracts/mycred-abstract-hook.php:367
2557
  msgid "Once per day (reset at midnight)"
2558
+ msgstr "Une fois par jour (remise à zéro à minuit)"
2559
 
2560
+ #: abstracts/mycred-abstract-hook.php:374
2561
  #: addons/email-notices/myCRED-addon-email-notices.php:531
2562
  #: addons/email-notices/myCRED-addon-email-notices.php:862
2563
+ #: addons/badges/myCRED-addon-badges.php:905
2564
  #: addons/banking/abstracts/mycred-abstract-service.php:351
2565
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
2566
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
2568
  #: addons/buy-creds/modules/buycred-module-core.php:401
2569
  #: addons/buy-creds/gateways/zombaio.php:406
2570
  msgid "Select"
2571
+ msgstr "S&eacute;lection"
2572
 
2573
  #: abstracts/mycred-abstract-module.php:400
2574
  #: abstracts/mycred-abstract-module.php:410
2575
  msgid "Surprise"
2576
  msgstr "Surprise"
2577
 
2578
+ #: abstracts/mycred-abstract-module.php:520
2579
  #: modules/mycred-module-network.php:218
2580
  msgid "click to close"
2581
  msgstr "cliquez pour fermer"
2582
 
2583
+ #: abstracts/mycred-abstract-module.php:521
2584
  #: modules/mycred-module-network.php:219
2585
  msgid "click to open"
2586
  msgstr "cliquez pour ouvrir"
2587
 
2588
+ #: abstracts/mycred-abstract-module.php:554
2589
  #: modules/mycred-module-network.php:261
2590
+ #: addons/email-notices/myCRED-addon-email-notices.php:1556
2591
  #: addons/gateway/event-booking/mycred-eventespresso3.php:451
2592
  #: addons/buy-creds/modules/buycred-module-core.php:597
2593
  msgid "Settings Updated"
2594
+ msgstr "Les paramètres ont étés mis à jour"
2595
 
2596
  #: modules/mycred-module-management.php:101
2597
  msgid "Update Balance"
2598
+ msgstr "Mettre à jour le solde"
2599
 
2600
  #: modules/mycred-module-management.php:114
2601
  msgid "User is excluded"
2603
 
2604
  #: modules/mycred-module-management.php:122
2605
  msgid "Log Entry can not be empty"
2606
+ msgstr "Le champ ne peut pas être vide."
2607
 
2608
  #: modules/mycred-module-management.php:130 modules/mycred-module-log.php:225
2609
  msgid "Amount can not be zero"
2610
+ msgstr "Le montant ne peut pas être zéro"
2611
 
2612
  #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
2613
+ #: modules/mycred-module-log.php:896
2614
  #: includes/classes/class.query-export.php:263
2615
  #: includes/classes/class.query-export.php:399
2616
  #: includes/classes/class.query-log.php:892
2619
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:202
2620
  #: addons/buy-creds/modules/buycred-module-core.php:768
2621
  msgid "Date"
2622
+ msgstr "Daté"
2623
 
2624
  #: modules/mycred-module-management.php:236
2625
  #: addons/banking/services/mycred-service-interest.php:435
2626
  #: addons/banking/services/mycred-service-interest.php:460
2627
  #: addons/banking/services/mycred-service-payouts.php:746
2628
  msgid "Time"
2629
+ msgstr "Horaire"
2630
 
2631
  #: modules/mycred-module-management.php:238 modules/mycred-module-log.php:96
2632
  #: includes/classes/class.query-export.php:263
2641
  msgstr "Modifier le solde des utilisateurs"
2642
 
2643
  #: modules/mycred-module-management.php:315
2644
+ #: modules/mycred-module-settings.php:430 modules/mycred-module-log.php:462
2645
  #: addons/banking/myCRED-addon-banking.php:204
2646
  msgid "Close"
2647
+ msgstr "Fermé"
2648
 
2649
  #: modules/mycred-module-management.php:453
2650
  #: modules/mycred-module-management.php:571
2656
  #: modules/mycred-module-management.php:463
2657
  #: addons/coupons/myCRED-addon-coupons.php:309
2658
  msgid "Total"
2659
+ msgstr "Prix total"
2660
 
2661
  #: modules/mycred-module-management.php:474
2662
  msgid "Adjust"
2667
  #: includes/classes/class.query-log.php:1621
2668
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:68
2669
  msgid "Edit"
2670
+ msgstr "Éditer"
2671
 
2672
  #: modules/mycred-module-management.php:583
2673
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
2674
+ #: addons/buy-creds/modules/buycred-module-pending.php:745
2675
  msgid "Cancel"
2676
  msgstr "Annuler"
2677
 
2678
  #: modules/mycred-module-management.php:741
2679
  #: addons/banking/services/mycred-service-payouts.php:553
2680
  msgid "ID"
2681
+ msgstr ""
2682
+
2683
+ #: modules/mycred-module-management.php:747
2684
+ #: modules/mycred-module-export.php:432 modules/mycred-module-export.php:480
2685
+ #: addons/buy-creds/modules/buycred-module-core.php:1374
2686
+ msgid "Username"
2687
+ msgstr "Nom d’utilisateur"
2688
 
2689
  #: modules/mycred-module-management.php:753
2690
  #: addons/gateway/event-booking/mycred-eventespresso3.php:307
2705
  #: addons/transfer/includes/mycred-transfer-widgets.php:105
2706
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
2707
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
2708
+ #: addons/buy-creds/modules/buycred-module-pending.php:296
2709
+ #: addons/buy-creds/modules/buycred-module-pending.php:642
2710
+ #: addons/buy-creds/modules/buycred-module-pending.php:760
2711
  msgid "Amount"
2712
  msgstr "Montant"
2713
 
2714
  #: modules/mycred-module-management.php:770
2715
  msgid "A positive or negative value"
2716
+ msgstr "Une valeur positive ou négative"
2717
 
2718
+ #: modules/mycred-module-management.php:796 modules/mycred-module-log.php:915
2719
  #: addons/gateway/event-booking/mycred-eventespresso3.php:518
2720
  msgid "Log Entry"
2721
+ msgstr "Journal d'activité"
2722
 
2723
  #: modules/mycred-module-management.php:797
2724
  #: addons/transfer/includes/mycred-transfer-widgets.php:92
2726
  #: addons/transfer/includes/mycred-transfer-widgets.php:118
2727
  #: addons/transfer/includes/mycred-transfer-widgets.php:126
2728
  msgid "optional"
2729
+ msgstr "optionel"
2730
 
2731
  #: modules/mycred-module-settings.php:138
2732
  msgid "Accounts successfully reset"
2733
+ msgstr "Remise à zéro du compte réussie"
2734
 
2735
  #: modules/mycred-module-settings.php:190
2736
  msgid "No users found to export"
2737
+ msgstr "Aucun utilisateur à exporter"
2738
 
2739
  #: modules/mycred-module-settings.php:426
2740
  msgid ""
2741
  "Warning! All entries in your log will be permanently removed! This can not "
2742
  "be undone!"
2743
  msgstr ""
2744
+ "Attention ! Toutes les entrées seront définitivement supprimées. Cette "
2745
+ "action ne pourra pas être annulée."
2746
 
2747
  #: modules/mycred-module-settings.php:427
2748
  msgid ""
2749
  "All log entries belonging to deleted users will be permanently deleted! This "
2750
  "can not be undone!"
2751
  msgstr ""
2752
+ "Toutes les entrées appartenant aux utilisateurs supprimés seront "
2753
+ "définitivement détruites. Cette action ne pourra pas être annulée."
2754
 
2755
  #: modules/mycred-module-settings.php:428
2756
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
2757
  msgstr ""
2758
+ "Attention ! Les soldes de tous les utilisateurs seront remis à zéro. Cette "
2759
+ "action ne pourra pas être annulée."
2760
 
2761
  #: modules/mycred-module-settings.php:429
2762
  msgid "Done!"
2763
+ msgstr "Terminé !"
 
 
 
 
2764
 
2765
  #: modules/mycred-module-settings.php:530
2766
  #, php-format
2769
 
2770
  #: modules/mycred-module-settings.php:539
2771
  msgid "Core Settings"
2772
+ msgstr "Parametrages de base"
2773
 
2774
  #: modules/mycred-module-settings.php:544 includes/mycred-setup.php:275
2775
  #: addons/gateway/event-booking/mycred-eventespresso3.php:460
2776
  #: addons/gateway/event-booking/mycred-eventsmanager.php:658
 
2777
  msgid "Labels"
2778
+ msgstr "Intitulés"
2779
 
2780
  #: modules/mycred-module-settings.php:562 includes/mycred-setup.php:293
2781
+ #: addons/email-notices/myCRED-addon-email-notices.php:1415
2782
  msgid "Format"
2783
+ msgstr "Format d'affichage"
2784
 
2785
  #: modules/mycred-module-settings.php:566 includes/mycred-setup.php:297
2786
  msgid "Prefix"
2787
+ msgstr "Préfixe"
2788
 
2789
  #: modules/mycred-module-settings.php:572 includes/mycred-setup.php:303
2790
  msgid "Separators"
2791
+ msgstr "Séparateurs"
2792
 
2793
  #: modules/mycred-module-settings.php:580 includes/mycred-setup.php:311
2794
  msgid "Decimals"
2795
+ msgstr "Décimales"
2796
 
2797
  #: modules/mycred-module-settings.php:586 includes/mycred-setup.php:317
2798
  msgid "Suffix"
2804
 
2805
  #: modules/mycred-module-settings.php:600 includes/mycred-setup.php:328
2806
  msgid "Security"
2807
+ msgstr "Sécurité"
2808
 
2809
  #: modules/mycred-module-settings.php:647
2810
  msgid "Delete log entries when user is deleted."
2811
  msgstr ""
2812
+ "supprimer les données attachées lors de la suppression de l'utilisateur"
2813
 
2814
  #: modules/mycred-module-settings.php:666
2815
  msgid "Management"
2816
+ msgstr "Gestion et management"
2817
 
2818
+ #: modules/mycred-module-settings.php:678 modules/mycred-module-log.php:427
2819
  msgid "Entries"
2820
+ msgstr "Messages"
2821
 
2822
  #: modules/mycred-module-settings.php:684
2823
  #: modules/mycred-module-settings.php:709
2824
+ #: addons/ranks/myCRED-addon-ranks.php:1669
2825
+ #: addons/buy-creds/modules/buycred-module-pending.php:477
2826
+ #: addons/buy-creds/modules/buycred-module-pending.php:763
2827
  msgid "Actions"
2828
+ msgstr "Action"
2829
 
2830
  #: modules/mycred-module-settings.php:687
2831
  msgid "Empty Log"
2832
  msgstr "Journal vide"
2833
 
2834
  #: modules/mycred-module-settings.php:703
2835
+ #: addons/ranks/myCRED-addon-ranks.php:1080
2836
+ #: addons/badges/myCRED-addon-badges.php:425
2837
  msgid "Users"
2838
+ msgstr "Abonn&eacute;s"
2839
 
2840
  #: modules/mycred-module-settings.php:711
2841
  msgid "Set all to zero"
2842
+ msgstr "Tout remettre à zéro"
2843
 
2844
+ #: modules/mycred-module-settings.php:729 includes/mycred-widgets.php:573
2845
  #: addons/transfer/myCRED-addon-transfer.php:370
2846
  #: addons/sell-content/myCRED-addon-sell-content.php:581
2847
  #: addons/transfer/includes/mycred-transfer-widgets.php:121
2849
  msgid "Point Types"
2850
  msgstr "Types de Points"
2851
 
2852
+ #: modules/mycred-module-settings.php:743
2853
+ #: modules/mycred-module-settings.php:769
2854
+ #: modules/mycred-module-settings.php:799
2855
  msgid "Meta Key"
2856
+ msgstr "Mot-clé"
2857
 
2858
+ #: modules/mycred-module-settings.php:749
2859
+ #: modules/mycred-module-settings.php:775
2860
+ #: modules/mycred-module-settings.php:805
2861
  #: addons/email-notices/myCRED-addon-email-notices.php:578
2862
  #: addons/gateway/carts/mycred-woocommerce.php:155
2863
  msgid "Label"
2864
+ msgstr "Libellé"
2865
 
2866
+ #: modules/mycred-module-settings.php:756
2867
+ #: modules/mycred-module-settings.php:782
2868
  #: includes/classes/class.query-log.php:1019
2869
  #: includes/classes/class.query-log.php:1622
2870
  #: addons/banking/services/mycred-service-payouts.php:472
 
2871
  msgid "Delete"
2872
  msgstr "Suppirmer"
2873
 
2874
+ #: modules/mycred-module-settings.php:795
2875
  msgid "Add New Type"
2876
  msgstr "Ajouter un nouveau type"
2877
 
2878
+ #: modules/mycred-module-settings.php:823
2879
  #: addons/gateway/event-booking/mycred-eventespresso3.php:551
2880
  #: addons/buy-creds/modules/buycred-module-core.php:650
2881
  msgid "Update Settings"
2882
+ msgstr "Mise à jour des réglages"
2883
 
2884
+ #: modules/mycred-module-settings.php:836
2885
  msgid "Identify users by"
2886
  msgstr "Identifer les utilisateurs par"
2887
 
2888
+ #: modules/mycred-module-settings.php:842
2889
  msgid "User ID"
2890
+ msgstr "ID"
2891
 
2892
+ #: modules/mycred-module-settings.php:843
2893
  msgid "User Email"
2894
+ msgstr "E-mail de lutilisateur"
2895
 
2896
+ #: modules/mycred-module-settings.php:844
2897
  msgid "User Login"
2898
  msgstr "ID de l'utilisateur"
2899
 
2900
+ #: modules/mycred-module-settings.php:852
2901
  msgid ""
2902
  "Use ID if you intend to use this export as a backup of your current site "
2903
  "while Email is recommended if you want to export to a different site."
2904
  msgstr ""
2905
+ "Utilisez ID si vous avez l'intention d'utiliser l'exportation à titre de "
2906
  "sauvegarde du site actuel. Nous vous recommandons d'utiliser l'adresse mail "
2907
+ "si vous comptez exploiter les données sur un autre site."
2908
 
2909
+ #: modules/mycred-module-settings.php:857
2910
  msgid "Import Log Entry"
2911
+ msgstr "Import du journal d'entrées"
2912
 
2913
+ #: modules/mycred-module-settings.php:859
2914
  #, php-format
2915
  msgid ""
2916
  "Optional log entry to use if you intend to import this file in a different "
2917
  "%s installation."
2918
  msgstr ""
2919
+ "Entrées de journal optionnelles si vous voulez importer ce fichier dans une "
2920
+ "installation %s différente."
2921
 
2922
+ #: modules/mycred-module-settings.php:866 modules/mycred-module-export.php:268
2923
+ #: modules/mycred-module-export.php:295 modules/mycred-module-export.php:345
2924
  msgid "Export"
2925
+ msgstr "Export"
2926
 
2927
  #: modules/mycred-module-addons.php:25 modules/mycred-module-addons.php:26
2928
  #: includes/mycred-setup.php:171
2932
  #: modules/mycred-module-addons.php:175
2933
  msgid "Give your users badges based on their interaction with your website."
2934
  msgstr ""
2935
+ "Donner à vos utilisateurs des badges basés sur leurs interactions avec votre "
2936
+ "site."
2937
 
2938
  #: modules/mycred-module-addons.php:186
2939
  msgid ""
2940
  "Setup recurring payouts or offer / charge interest on user account balances."
2941
  msgstr ""
2942
+ "Paramétrez les paiements réguliers ou offres / pénalités et intérêts "
2943
  "relatifs aux soldes de comptes de vos utilisateurs."
2944
 
2945
  #: modules/mycred-module-addons.php:197
2950
  msgstr ""
2951
  "Le module additionnel <strong>buy</strong>CRED permet l'achat de points aux "
2952
  "utilisateurs titulaires d'un compte PayPal, Skrill (Moneybookers) ou "
2953
+ "NETbilling. buyCRED permet également à un utilisateur d'acheter des points "
2954
  "pour un autre membre du site."
2955
 
2956
  #: modules/mycred-module-addons.php:208
2958
  "The coupons add-on allows you to create coupons that users can use to add "
2959
  "points to their accounts."
2960
  msgstr ""
2961
+ "Le module de bons de réductions vous permet de créer des bons que les "
2962
+ "utilisateurs pourront utiliser pour ajouter des points à leur compte."
2963
 
2964
  #: modules/mycred-module-addons.php:219
2965
  msgid "Create email notices for any type of myCRED instance."
2966
+ msgstr "Créez des alertes par mail pour tout type d'action avec myCRED."
2967
 
2968
  #: modules/mycred-module-addons.php:230
2969
  msgid ""
2971
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
2972
  "Bookings: Event Espresso and Events Manager (free & pro)."
2973
  msgstr ""
2974
+ "Permettez à vos utilisateurs de payer à l'aide de leur solde de points "
2975
  "<strong>my</strong>CRED. Actuellement compatible avec WooCommerce, "
2976
+ "MarketPress et WP E-Commerce. Egalement compatible avec les systèmes de "
2977
+ "réservations Event Espresso et Events Manager (gratuit & pro)."
2978
 
2979
  #: modules/mycred-module-addons.php:241
2980
  msgid "Create pop-up notifications for when users gain or loose points."
2981
  msgstr ""
2982
+ "Crée une pop-up de notification lorsqu'un utilisateur gagne ou perd des "
2983
  "points."
2984
 
2985
  #: modules/mycred-module-addons.php:253
2987
  "Create ranks for users reaching a certain number of %_plural% with the "
2988
  "option to add logos for each rank."
2989
  msgstr ""
2990
+ "Créez des classements pour les utilisateurs atteignants un certain nombre de "
2991
+ "%_plural%, avec en option l'ajout d'un logo signalant leur classement."
2992
 
2993
  #: modules/mycred-module-addons.php:264
2994
  msgid ""
2997
  "parts of your content allowing you to offer \"teasers\"."
2998
  msgstr ""
2999
  "Ce module vous permet de commercialiser n'importe quel article, page ou post "
3000
+ "type public publié sur votre site. Vous pouvez vendre la totalité d'un "
3001
+ "contenu ou proposer des extraits à titre d'échantillons à l'aide de nos "
3002
  "shortcodes."
3003
 
3004
  #: modules/mycred-module-addons.php:286
3006
  "Allow your users to send or \"donate\" points to other members by either "
3007
  "using the mycred_transfer shortcode or the myCRED Transfer widget."
3008
  msgstr ""
3009
+ "Autorisez vos membres à s'envoyer des points ou en faire don entre eux, en "
3010
  "utilisant le shortcode mycred_transfer ou avec le widget myCRED Transfert."
3011
 
3012
  #: modules/mycred-module-addons.php:330
3016
 
3017
  #: modules/mycred-module-addons.php:337
3018
  msgid "Add-on Activated"
3019
+ msgstr "Module activé"
3020
 
3021
  #: modules/mycred-module-addons.php:340
3022
  msgid "Add-on Deactivated"
3023
+ msgstr "Module désactivé"
3024
 
3025
  #: modules/mycred-module-addons.php:405
3026
  msgid "Activate Add-on"
3028
 
3029
  #: modules/mycred-module-addons.php:406
3030
  msgid "Activate"
3031
+ msgstr "Activation"
3032
 
3033
  #: modules/mycred-module-addons.php:412
3034
  msgid "Deactivate Add-on"
3035
+ msgstr "Désactiver le module"
3036
 
3037
  #: modules/mycred-module-addons.php:413
3038
  msgid "Deactivate"
3039
+ msgstr "Désactivé"
3040
 
3041
  #: modules/mycred-module-log.php:24 modules/mycred-module-log.php:25
3042
  #: addons/gateway/event-booking/mycred-eventespresso3.php:515
3043
  msgid "Log"
3044
  msgstr "Vue d&#39;ensemble"
3045
 
3046
+ #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:892
3047
  #: includes/classes/class.query-export.php:263
3048
  #: includes/classes/class.query-export.php:371
3049
  #: includes/classes/class.query-log.php:891
3055
 
3056
  #: modules/mycred-module-log.php:173
3057
  msgid "Row Deleted"
3058
+ msgstr "Ligne supprimée"
3059
 
3060
  #: modules/mycred-module-log.php:232
3061
  msgid "Log entry not found"
3062
+ msgstr "Entrée introuvable"
3063
 
3064
+ #: modules/mycred-module-log.php:461
3065
  msgid "Edit Log Entry"
3066
+ msgstr "Modifier une entrée du journal"
3067
 
3068
+ #: modules/mycred-module-log.php:465
3069
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
3070
  msgstr ""
3071
+ "Soyez prudent. L'action que vous vous apprêtez à effectuer ne pourra pas "
3072
+ "être annulée."
3073
 
3074
+ #: modules/mycred-module-log.php:496
3075
  msgid "Search results for"
3076
+ msgstr "Résultat de la Recherche pour "
3077
 
3078
+ #: modules/mycred-module-log.php:544
3079
  #, php-format
3080
  msgid "%s Log"
3081
  msgstr "Journal %s"
3082
 
3083
+ #: modules/mycred-module-log.php:652
3084
  #, php-format
3085
  msgid "My %s History"
3086
  msgstr "Mon historique %s"
3090
  msgstr "Template principal"
3091
 
3092
  #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:280
3093
+ #: modules/mycred-module-network.php:296 modules/mycred-module-export.php:386
3094
  #: addons/sell-content/myCRED-addon-sell-content.php:481
3095
  msgid "Enabled"
3096
+ msgstr "Activé(e)"
3097
 
3098
  #: modules/mycred-module-network.php:187 modules/mycred-module-network.php:188
3099
  msgid "Network Settings"
3100
+ msgstr "Paramètres du réseau"
3101
 
3102
  #: modules/mycred-module-network.php:241
3103
  #, php-format
3104
  msgid "%s Network"
3105
+ msgstr "Réseau %s"
3106
 
3107
  #: modules/mycred-module-network.php:257
3108
  #, php-format
3109
  msgid "Note! %s has not yet been setup."
3110
+ msgstr "Inofrmation: %s n'a pas encore été configuré."
3111
 
3112
  #: modules/mycred-module-network.php:285 modules/mycred-module-network.php:301
3113
+ #: modules/mycred-module-export.php:385 plugins/mycred-hook-affiliatewp.php:362
3114
  #: addons/sell-content/myCRED-addon-sell-content.php:396
3115
  #: addons/sell-content/myCRED-addon-sell-content.php:480
3116
  #: addons/buy-creds/modules/buycred-module-core.php:1127
3117
  msgid "Disabled"
3118
+ msgstr "Désactivé"
3119
 
3120
  #: modules/mycred-module-network.php:291
3121
  msgid "Central Logging"
3129
  #, php-format
3130
  msgid "Comma separated list of blog ids where %s is to be disabled."
3131
  msgstr ""
3132
+ "ID, sépar&eacute;s par des virgules, des blogs ou %s doit &ecirc;tre "
3133
  "d&eacute;sactiv&eacute;."
3134
 
3135
  #: modules/mycred-module-network.php:327
3136
  msgid "Save Network Settings"
3137
+ msgstr "Enregistrer les paramètres du réseau"
3138
 
3139
+ #: modules/mycred-module-export.php:317 modules/mycred-module-export.php:364
3140
  #: includes/classes/class.query-log.php:1687
3141
  msgid ""
3142
  "Log entries are exported to a CSV file and depending on the number of "
3143
  "entries selected, the process may take a few seconds."
3144
  msgstr ""
3145
+ "Les données sont exportées dans un fichier CSV. Selon le nombre "
3146
+ "d'enregistrements sélectionnés, le processus peut durer un petit moment."
3147
 
3148
+ #: modules/mycred-module-export.php:432 modules/mycred-module-export.php:480
3149
  #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
3150
  #: includes/importers/mycred-cubepoints.php:353
3151
  #: includes/classes/class.query-export.php:263
3152
  #: includes/classes/class.query-export.php:391
3153
+ #: addons/ranks/myCRED-addon-ranks.php:1083
3154
+ #: addons/ranks/myCRED-addon-ranks.php:1251
3155
+ #: addons/ranks/myCRED-addon-ranks.php:1258
3156
  #: addons/email-notices/myCRED-addon-email-notices.php:280
3157
  #: addons/email-notices/myCRED-addon-email-notices.php:585
3158
  #: addons/coupons/myCRED-addon-coupons.php:256
3159
  #: addons/coupons/myCRED-addon-coupons.php:520
3160
  #: addons/gateway/event-booking/mycred-eventespresso3.php:483
3161
  #: addons/gateway/event-booking/mycred-eventsmanager.php:604
 
3162
  #: addons/gateway/carts/mycred-wpecommerce.php:383
3163
  #: addons/gateway/carts/mycred-woocommerce.php:125
3164
  #: addons/gateway/carts/mycred-woocommerce.php:166
3165
+ #: addons/buy-creds/modules/buycred-module-pending.php:584
3166
+ #: addons/buy-creds/modules/buycred-module-pending.php:762
3167
  msgid "Point Type"
3168
  msgstr "Type de point"
3169
 
3203
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:190
3204
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:320
3205
  msgid "This Week"
3206
+ msgstr "Cette Semaine"
3207
 
3208
  #: modules/mycred-module-buddypress.php:240
3209
  #: includes/classes/class.query-log.php:1749
3210
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:191
3211
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:321
3212
  msgid "This Month"
3213
+ msgstr "Ce Mois-ci"
3214
 
3215
  #: modules/mycred-module-buddypress.php:352
3216
  msgid "Go"
3217
+ msgstr "Allez"
3218
 
3219
  #: modules/mycred-module-buddypress.php:404
3220
  #: modules/mycred-module-buddypress.php:411
3221
+ #: addons/badges/myCRED-addon-badges.php:1165
3222
+ #: addons/badges/myCRED-addon-badges.php:1199
3223
  #: addons/gateway/carts/mycred-woocommerce.php:147
3224
  msgid "Do not show"
3225
  msgstr "Ne pas afficher"
3226
 
3227
  #: modules/mycred-module-buddypress.php:405
3228
+ #: addons/badges/myCRED-addon-badges.php:1166
3229
  msgid "Include in Profile Header"
3230
  msgstr ""
3231
  "Inclure dans\n"
3232
  " \n"
3233
  "le profil\n"
3234
+ "-tête"
3235
 
3236
  #: modules/mycred-module-buddypress.php:406
3237
+ #: addons/ranks/myCRED-addon-ranks.php:1482
3238
+ #: addons/badges/myCRED-addon-badges.php:1167
3239
  msgid "Include under the \"Profile\" tab"
3240
  msgstr "Inclure sous l'onglet \"Profil\""
3241
 
3242
  #: modules/mycred-module-buddypress.php:407
3243
+ #: addons/badges/myCRED-addon-badges.php:1168
3244
  msgid "Include under the \"Profile\" tab and Profile Header"
3245
  msgstr ""
3246
  "Inclure\n"
3253
  " \n"
3254
  "\"\n"
3255
  "Profil\n"
3256
+ "\" En-tête"
3257
 
3258
  #: modules/mycred-module-buddypress.php:412
3259
  msgid "Show in Profile"
3264
  msgstr "Solde de %singular%"
3265
 
3266
  #: modules/mycred-module-buddypress.php:453
3267
+ #: addons/ranks/myCRED-addon-ranks.php:1497
3268
+ #: addons/ranks/myCRED-addon-ranks.php:1538
3269
  #: addons/notifications/myCRED-addon-notifications.php:198
3270
  msgid "Template"
3271
+ msgstr "Texte à afficher"
3272
 
3273
  #: modules/mycred-module-buddypress.php:463
3274
  msgid "%plural% History"
3280
 
3281
  #: modules/mycred-module-buddypress.php:482
3282
  msgid "Menu Title"
3283
+ msgstr ""
3284
+ "Titre\n"
3285
+ " \n"
3286
+ "menu"
3287
 
3288
  #: modules/mycred-module-buddypress.php:484
3289
  msgid "Title shown to me"
3294
  msgid "Title shown to others. Use %s to show the first name."
3295
  msgstr ""
3296
  "Le titre que voient les autres utilisateurs. Utilisez %s pour afficher le "
3297
+ "prénom."
3298
 
3299
  #: modules/mycred-module-buddypress.php:499
3300
  msgid "Menu Position"
3301
+ msgstr ""
3302
+ "Position\n"
3303
+ " du \n"
3304
+ "menu"
3305
 
3306
  #: modules/mycred-module-buddypress.php:501
3307
  msgid "Current menu positions:"
3313
 
3314
  #: modules/mycred-module-buddypress.php:513
3315
  msgid "Number of history entries to show"
3316
+ msgstr "Nombre d'historiques à afficher"
3317
 
3318
  #: plugins/mycred-hook-invite-anyone.php:15
3319
  msgid "Invite Anyone Plugin"
3325
  "accepted."
3326
  msgstr ""
3327
  "Attribution de %_plural% pour l'envoi d'invitations et/ou %_plural% quand "
3328
+ "une invitation est acceptée."
3329
 
3330
  #: plugins/mycred-hook-invite-anyone.php:215
3331
  #: plugins/mycred-hook-invite-anyone.php:239
3359
  #: plugins/mycred-hook-buddypress-media.php:348
3360
  #: plugins/mycred-hook-wp-favorite-posts.php:228
3361
  #: plugins/mycred-hook-wp-favorite-posts.php:240
3362
+ #: plugins/mycred-hook-contact-form7.php:172
3363
  #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:485
3364
  #: plugins/mycred-hook-bbPress.php:536 plugins/mycred-hook-bbPress.php:560
3365
+ #: plugins/mycred-hook-woocommerce.php:514
3366
  #: includes/shortcodes/mycred_hook_table.php:79
3367
  msgid "Limit"
3368
  msgstr "Limite d'attribution"
3408
  #: plugins/mycred-hook-buddypress-media.php:372
3409
  #: plugins/mycred-hook-buddypress-media.php:390
3410
  #: plugins/mycred-hook-buddypress-media.php:408
3411
+ #: plugins/mycred-hook-contact-form7.php:178
3412
  #: plugins/mycred-hook-jetpack.php:549 plugins/mycred-hook-jetpack.php:567
3413
  #: plugins/mycred-hook-bbPress.php:449 plugins/mycred-hook-bbPress.php:467
3414
  #: plugins/mycred-hook-bbPress.php:491 plugins/mycred-hook-bbPress.php:518
3415
  #: plugins/mycred-hook-bbPress.php:542 plugins/mycred-hook-bbPress.php:566
3416
  #: plugins/mycred-hook-bbPress.php:593
3417
+ #: addons/badges/myCRED-addon-badges.php:974
3418
  msgid "Log template"
3419
+ msgstr "Texte à afficher"
3420
+
3421
+ #: plugins/mycred-hook-invite-anyone.php:222
3422
+ #: plugins/mycred-hook-invite-anyone.php:246
3423
+ #: plugins/mycred-hook-wp-polls.php:178
3424
+ #: plugins/mycred-hook-wp-postratings.php:208
3425
+ #: plugins/mycred-hook-wp-postratings.php:215
3426
+ #: plugins/mycred-hook-gravityforms.php:173
3427
+ #: plugins/mycred-hook-simplepress.php:308
3428
+ #: plugins/mycred-hook-simplepress.php:326
3429
+ #: plugins/mycred-hook-simplepress.php:350
3430
+ #: plugins/mycred-hook-simplepress.php:377
3431
+ #: plugins/mycred-hook-buddypress.php:630
3432
+ #: plugins/mycred-hook-buddypress.php:654
3433
+ #: plugins/mycred-hook-buddypress.php:678
3434
+ #: plugins/mycred-hook-buddypress.php:702
3435
+ #: plugins/mycred-hook-buddypress.php:726
3436
+ #: plugins/mycred-hook-buddypress.php:753
3437
+ #: plugins/mycred-hook-buddypress.php:777
3438
+ #: plugins/mycred-hook-buddypress.php:795
3439
+ #: plugins/mycred-hook-buddypress.php:819
3440
+ #: plugins/mycred-hook-buddypress.php:837
3441
+ #: plugins/mycred-hook-buddypress.php:861
3442
+ #: plugins/mycred-hook-buddypress.php:885
3443
+ #: plugins/mycred-hook-buddypress.php:1521
3444
+ #: plugins/mycred-hook-buddypress.php:1539
3445
+ #: plugins/mycred-hook-buddypress.php:1563
3446
+ #: plugins/mycred-hook-buddypress.php:1587
3447
+ #: plugins/mycred-hook-buddypress.php:1611
3448
+ #: plugins/mycred-hook-buddypress.php:1635
3449
+ #: plugins/mycred-hook-buddypress.php:1659
3450
+ #: plugins/mycred-hook-buddypress.php:1683
3451
+ #: plugins/mycred-hook-buddypress.php:1707
3452
+ #: plugins/mycred-hook-buddypress.php:1725
3453
+ #: plugins/mycred-hook-buddypress.php:1749
3454
+ #: plugins/mycred-hook-affiliatewp.php:299
3455
+ #: plugins/mycred-hook-affiliatewp.php:326
3456
+ #: plugins/mycred-hook-affiliatewp.php:370
3457
+ #: plugins/mycred-hook-affiliatewp.php:377
3458
+ #: plugins/mycred-hook-events-manager-light.php:218
3459
+ #: plugins/mycred-hook-events-manager-light.php:236
3460
+ #: plugins/mycred-hook-sharethis.php:274
3461
+ #: plugins/mycred-hook-buddypress-media.php:307
3462
+ #: plugins/mycred-hook-buddypress-media.php:331
3463
+ #: plugins/mycred-hook-buddypress-media.php:355
3464
+ #: plugins/mycred-hook-buddypress-media.php:373
3465
+ #: plugins/mycred-hook-buddypress-media.php:391
3466
+ #: plugins/mycred-hook-buddypress-media.php:409
3467
+ #: plugins/mycred-hook-wp-favorite-posts.php:249
3468
+ #: plugins/mycred-hook-wp-favorite-posts.php:256
3469
+ #: plugins/mycred-hook-wp-favorite-posts.php:274
3470
+ #: plugins/mycred-hook-wp-favorite-posts.php:289
3471
+ #: plugins/mycred-hook-contact-form7.php:179
3472
+ #: plugins/mycred-hook-jetpack.php:550 plugins/mycred-hook-jetpack.php:568
3473
+ #: plugins/mycred-hook-bbPress.php:450 plugins/mycred-hook-bbPress.php:468
3474
+ #: plugins/mycred-hook-bbPress.php:492 plugins/mycred-hook-bbPress.php:519
3475
+ #: plugins/mycred-hook-bbPress.php:543 plugins/mycred-hook-bbPress.php:567
3476
+ #: plugins/mycred-hook-bbPress.php:594 plugins/mycred-hook-woocommerce.php:521
3477
+ #: plugins/mycred-hook-badgeOS.php:328 plugins/mycred-hook-badgeOS.php:346
3478
+ #: addons/transfer/includes/mycred-transfer-widgets.php:102
3479
+ #: addons/transfer/includes/mycred-transfer-widgets.php:106
3480
+ #: addons/transfer/includes/mycred-transfer-widgets.php:110
3481
+ #: addons/transfer/includes/mycred-transfer-widgets.php:122
3482
+ msgid "required"
3483
+ msgstr "demandé"
3484
 
3485
  #: plugins/mycred-hook-wp-polls.php:15
3486
  msgid "WP-Polls"
3489
  #: plugins/mycred-hook-wp-polls.php:16
3490
  msgid "Awards %_plural% for users voting in polls."
3491
  msgstr ""
3492
+ "Attribuer des %_plural% aux utilisateurs répondants aux sondages.Attribuer "
3493
+ "des %_plural% aux utilisateurs répondants aux sondages."
3494
 
3495
  #: plugins/mycred-hook-wp-polls.php:177
3496
  #: plugins/mycred-hook-wp-favorite-posts.php:273
3497
  #: plugins/mycred-hook-wp-favorite-posts.php:288
3498
+ #: plugins/mycred-hook-woocommerce.php:520 plugins/mycred-hook-badgeOS.php:144
3499
  #: plugins/mycred-hook-badgeOS.php:146 plugins/mycred-hook-badgeOS.php:157
3500
  #: plugins/mycred-hook-badgeOS.php:327 plugins/mycred-hook-badgeOS.php:345
3501
  #: addons/coupons/myCRED-addon-coupons.php:764
3507
  #: addons/buy-creds/modules/buycred-module-core.php:426
3508
  #: addons/buy-creds/modules/buycred-module-core.php:453
3509
  msgid "Log Template"
3510
+ msgstr "Texte à afficher"
3511
+
3512
+ #: plugins/mycred-hook-wp-postratings.php:165
3513
+ #: plugins/mycred-hook-wp-favorite-posts.php:222
3514
+ #: plugins/mycred-hook-wp-favorite-posts.php:267
3515
+ msgid "Member"
3516
+ msgstr "Membre"
3517
+
3518
+ #: plugins/mycred-hook-wp-postratings.php:177
3519
+ #: plugins/mycred-hook-wp-favorite-posts.php:234
3520
+ #: plugins/mycred-hook-wp-favorite-posts.php:282
3521
+ msgid "Content Author"
3522
+ msgstr "Auteur du contenu"
3523
 
3524
  #: plugins/mycred-hook-gravityforms.php:15
3525
  msgid "Gravityform Submissions"
3527
 
3528
  #: plugins/mycred-hook-gravityforms.php:16
3529
  msgid "Awards %_plural% for successful form submissions."
3530
+ msgstr "Attribution de %_plural% pour des soumissions réussies de formulaires"
3531
 
3532
  #: plugins/mycred-hook-gravityforms.php:130
3533
+ #: plugins/mycred-hook-contact-form7.php:134
3534
  msgid "No forms found."
3535
+ msgstr "Aucun formulaire n'a été trouvé."
3536
 
3537
  #: plugins/mycred-hook-simplepress.php:16
3538
  msgid "Awards %_plural% for Simple:Press actions."
3556
  "zero to disable a specific hook."
3557
  msgstr ""
3558
  "Attribution de %_plural% pour des actions relatives aux groupes. Utilisez "
3559
+ "une valeur négative ou zéro pour désactiver un hook spécifique."
3560
 
3561
  #: plugins/mycred-hook-buddypress.php:310
3562
  #: addons/gateway/event-booking/mycred-eventsmanager.php:692
 
3563
  #: addons/gateway/carts/mycred-wpecommerce.php:415
3564
  msgid "Insufficient Funds"
3565
  msgstr "Fonds insuffisants"
3567
  #: plugins/mycred-hook-buddypress.php:784
3568
  #: includes/classes/class.query-log.php:2189
3569
  msgid "Deleted Comment"
3570
+ msgstr "Commentaire supprimé"
3571
 
3572
  #: plugins/mycred-hook-buddypress.php:868
3573
  #: includes/classes/class.query-log.php:2208
3576
 
3577
  #: plugins/mycred-hook-affiliatewp.php:306
3578
  msgid "Referring Visitors"
3579
+ msgstr "Visiteurs réferants"
3580
 
3581
  #: plugins/mycred-hook-affiliatewp.php:360
3582
  #: includes/shortcodes/mycred_exchange.php:75
3583
  #: addons/gateway/event-booking/mycred-eventespresso3.php:498
3584
  #: addons/gateway/event-booking/mycred-eventsmanager.php:634
 
3585
  #: addons/gateway/carts/mycred-wpecommerce.php:389
3586
  #: addons/gateway/carts/mycred-woocommerce.php:136
3587
  msgid "Exchange Rate"
3599
 
3600
  #: plugins/mycred-hook-events-manager-light.php:16
3601
  msgid "Awards %_plural% for users attending events."
3602
+ msgstr "Attribuer des %_plural% aux utilisateurs suivants un événement."
3603
 
3604
  #: plugins/mycred-hook-events-manager-light.php:201
3605
  msgid "Attending Event"
3606
+ msgstr "Evénement suivi"
3607
 
3608
  #: plugins/mycred-hook-events-manager-light.php:225
3609
  msgid "Cancelling Attendance"
3619
  "social media sites."
3620
  msgstr ""
3621
  "Attribution de %_plural% pour les utilisateurs partageant/aimant le contenu "
3622
+ "de votre siteweb sur les réseaux sociaux."
3623
 
3624
  #: plugins/mycred-hook-sharethis.php:216
3625
  msgid "Your ShareThis public key is not set."
3626
+ msgstr "Votre clef public SHARETHIS n'est pas fixé."
3627
 
3628
  #: plugins/mycred-hook-sharethis.php:221
3629
  msgid "No ShareThis services detected. Please check your installation."
3630
  msgstr ""
3631
+ "Pas de services SHARETHIS détecté. S'il vous plait, vérifiez votre "
3632
  "installation."
3633
 
3634
  #: plugins/mycred-hook-buddypress-media.php:15
3635
  msgid "rtMedia Galleries"
3636
+ msgstr "Galeries rtMédia"
3637
 
3638
  #: plugins/mycred-hook-buddypress-media.php:16
3639
  msgid ""
3640
  "Award / Deduct %_plural% for users creating albums or uploading new photos."
3641
  msgstr ""
3642
+ "Ajout/supression de %_plural% pour les utilisateurs créant ou téléchargeant "
3643
+ "de nouvelles photos"
3644
 
3645
  #: plugins/mycred-hook-buddypress-media.php:290
3646
  #: includes/classes/class.query-log.php:2223
3647
  msgid "Photo Upload"
3648
+ msgstr "Télécharger la photo"
3649
 
3650
  #: plugins/mycred-hook-buddypress-media.php:314
3651
  #: includes/classes/class.query-log.php:2224
3652
  msgid "Video Upload"
3653
+ msgstr "Télécharger la vidéo"
3654
 
3655
  #: plugins/mycred-hook-buddypress-media.php:338
3656
  #: includes/classes/class.query-log.php:2225
3657
  msgid "Music Upload"
3658
+ msgstr "Télécharger la musique"
3659
 
3660
  #: plugins/mycred-hook-wp-favorite-posts.php:15
3661
  msgid "WP Favorite Posts"
3664
  #: plugins/mycred-hook-wp-favorite-posts.php:16
3665
  msgid "Awards %_plural% for users adding posts to their favorites."
3666
  msgstr ""
3667
+ "Attribuer des %_plural% aux utilisateurs ajoutants un article à leurs "
3668
  "favoris."
3669
 
3670
  #: plugins/mycred-hook-wp-favorite-posts.php:218
3682
  #: plugins/mycred-hook-contact-form7.php:16
3683
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
3684
  msgstr ""
3685
+ "Attribution de %_plural% pour chaque formulaire soumis avec succès (par les "
3686
+ "utilisateurs connectés)."
3687
 
3688
  #: plugins/mycred-hook-jetpack.php:15
3689
  msgid "Jetpack Subscriptions"
3707
 
3708
  #: plugins/mycred-hook-bbPress.php:16
3709
  msgid "Awards %_plural% for bbPress actions."
3710
+ msgstr "Attribution de %_plural% pour des actions relatives à bbPress"
3711
 
3712
  #: plugins/mycred-hook-bbPress.php:501
3713
  msgid "Forum authors can receive %_plural% for creating new topics."
3714
  msgstr ""
3715
+ "Les auteurs de forum percoivent des %_plural% pour la création de nouveaux "
3716
  "sujets."
3717
 
3718
  #: plugins/mycred-hook-bbPress.php:605
3719
  msgid "Show users %_plural% balance in replies"
3720
+ msgstr "Afficher le relevé de %_plural% dans les réponses des utilisateurs"
3721
 
3722
  #: plugins/mycred-hook-woocommerce.php:91
3723
  #: plugins/mycred-hook-woocommerce.php:157
3724
  msgid "Reward with %plural%"
3725
+ msgstr "Récompensez-les avec %plural%"
3726
 
3727
+ #: plugins/mycred-hook-woocommerce.php:388
3728
  msgid "WooCommerce Product Reviews"
3729
  msgstr "Produits WooCommerce revus"
3730
 
3731
+ #: plugins/mycred-hook-woocommerce.php:389
3732
  msgid ""
3733
  "Awards %_plural% for users leaving reviews on your WooCommerce products."
3734
  msgstr ""
3744
  "Default settings for each BadgeOS Achievement type. These settings may be "
3745
  "overridden for individual achievement type."
3746
  msgstr ""
3747
+ "Configuration par défaut de chaque type de réalisation BadgeOS. Ces "
3748
+ "paramètres peuvent être remplacés individuellement à partir de chaque type."
 
3749
 
3750
  #: plugins/mycred-hook-badgeOS.php:124
3751
  #, php-format
3762
 
3763
  #: plugins/mycred-hook-badgeOS.php:142
3764
  msgid "Use zero to disable"
3765
+ msgstr "Utilisez zéro pour désactiver"
3766
 
3767
  #: plugins/mycred-hook-badgeOS.php:155
3768
  msgid "Deduction Log Template"
3774
 
3775
  #: includes/mycred-setup.php:50
3776
  msgid "Run Setup"
3777
+ msgstr "Démarrer l'installation"
3778
 
3779
  #: includes/mycred-setup.php:63 includes/mycred-setup.php:64
3780
  msgid "myCRED Setup"
3789
  #: includes/mycred-remote.php:581
3790
  msgid "This feature requires WordPress Permalinks to be setup and enabled!"
3791
  msgstr ""
3792
+ "Pour utiliser cette fonctionalité, veuillez paramétrer et activer les "
3793
  "permaliens de WordPress."
3794
 
3795
  #: includes/mycred-remote.php:585
3796
  msgid "Click Update Settings to load the Remote API settings."
3797
  msgstr ""
3798
  "Cliquez sur Enregistrer la configuration pour charger la config de l'API "
3799
+ "d'accès à distance."
3800
 
3801
  #: includes/mycred-remote.php:588
3802
  msgid "Allow Remote Access"
3803
+ msgstr "Autoriser l'accès à distance"
3804
 
3805
  #: includes/mycred-remote.php:613
3806
  msgid "Remote Access"
3807
+ msgstr "Accès à distance"
3808
 
3809
  #: includes/mycred-remote.php:615 addons/buy-creds/gateways/bitpay.php:245
3810
  msgid "API Key"
3811
+ msgstr "Clé d&rsquo;API"
3812
 
3813
  #: includes/mycred-remote.php:618
3814
  msgid "Key"
3815
+ msgstr "Clé"
3816
 
3817
  #: includes/mycred-remote.php:620
3818
  msgid "Required for this feature to work!<br />Minimum 12 characters."
3819
  msgstr ""
3820
  "Obligatoire pour le bon fonctionnement de cette option !<br/>Minimum 12 "
3821
+ "caractères"
3822
 
3823
  #: includes/mycred-remote.php:623
3824
  msgid "Key Length"
3825
+ msgstr "Longueur de la clé"
3826
 
3827
  #: includes/mycred-remote.php:628
3828
  msgid "Generate New Key"
3829
+ msgstr "Générer une nouvelle clé"
3830
 
3831
  #: includes/mycred-remote.php:630
3832
  msgid "Warning!"
3837
  "Keep this key safe! Those you share this key with will be able to remotely "
3838
  "deduct / add / transfer %plural%!"
3839
  msgstr ""
3840
+ "Gardez cette clé à l'abri des regards ! Quiconque d'autre que vous qui en "
3841
+ "aurait connaissance pourrait ajouter/déduire/transférer des %plural% !"
3842
 
3843
  #: includes/mycred-remote.php:632
3844
  msgid "Incoming URI"
3850
  "ignored."
3851
  msgstr ""
3852
  "L'adresse d'appel entrante. Tout appel distant depuis une autre URL sera "
3853
+ "ignoré."
3854
 
3855
  #: includes/mycred-remote.php:639
3856
  msgid "Debug Mode"
3857
+ msgstr "Mode débogage"
3858
 
3859
  #: includes/mycred-remote.php:642
3860
  msgid ""
3861
  "Remember to disable when not used to prevent mischievous calls from learning "
3862
  "about your setup!"
3863
  msgstr ""
3864
+ "N'oubliez pas de désactiver l'option lorsqu'elle n'est pas utilisée pour "
3865
+ "empêcher des appels malicieux qui tenteraient de s'informer sur votre "
3866
  "installation&nbsp;!"
3867
 
3868
  #: includes/mycred-about.php:32
3873
  #: includes/mycred-overview.php:25
3874
  #, php-format
3875
  msgid "%s Overview"
3876
+ msgstr "Aperçu %s"
3877
 
3878
  #: includes/mycred-overview.php:83
3879
  #: addons/stats/widgets/mycred-stats-widget-circulation.php:136
3887
 
3888
  #: includes/mycred-overview.php:89
3889
  msgid "Deducted"
3890
+ msgstr "Déduit"
3891
 
3892
  #: includes/mycred-install.php:73
3893
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3899
  "check your PHP configuration or contact your host and ask them to enable it "
3900
  "for you!"
3901
  msgstr ""
3902
+ "La bibliothèque mcrypt PHP doit être activé dans l'ordre d'utilisation du "
3903
+ "plugin! S'il vous plait, vérifier votre configuration PHP ou contactez votre "
3904
+ "Hébergeur et lui demander de l'activer pour vous."
3905
 
3906
  #: includes/mycred-install.php:83
3907
  msgid ""
3908
  "Sorry but your WordPress installation does not reach the minimum "
3909
  "requirements for running myCRED. The following errors were given:"
3910
  msgstr ""
3911
+ "Désolé mais votre installation WordPress ne dispose pas des ressources "
3912
+ "nécessaires au bon fonctionnement de myCRED. Les erreurs suivantes sont "
3913
  "apparues:"
3914
 
3915
  #: includes/mycred-widgets.php:19
3918
  msgstr "Mon solde (%s)"
3919
 
3920
  #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
3921
+ #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1373
3922
  #: addons/gateway/carts/mycred-woocommerce.php:96
3923
  #: addons/transfer/includes/mycred-transfer-widgets.php:91
3924
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:203
3925
  #: addons/buy-creds/gateways/bank-transfer.php:190
3926
  #: addons/buy-creds/gateways/skrill.php:333
3927
  msgid "Title"
3928
+ msgstr "Titre :"
3929
 
3930
  #: includes/mycred-widgets.php:199
3931
  msgid "Include history"
3937
 
3938
  #: includes/mycred-widgets.php:207
3939
  msgid "Number of entires"
3940
+ msgstr "Nombre d'entrées"
3941
 
3942
  #: includes/mycred-widgets.php:211 includes/mycred-widgets.php:386
3943
  msgid "Row layout"
3945
 
3946
  #: includes/mycred-widgets.php:218 includes/mycred-widgets.php:586
3947
  msgid "Show message when not logged in"
3948
+ msgstr "Afficher les messages quand pas connceté"
3949
 
3950
  #: includes/mycred-widgets.php:222 includes/mycred-widgets.php:590
3951
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:35
3952
  msgid "Message"
3953
+ msgstr "Texte"
3954
 
3955
  #: includes/mycred-widgets.php:282
3956
  #, php-format
3959
 
3960
  #: includes/mycred-widgets.php:373
3961
  msgid "Based On"
3962
+ msgstr "Basé sur"
3963
 
3964
  #: includes/mycred-widgets.php:375
3965
  msgid ""
3968
  msgstr ""
3969
  "Utilisez\n"
3970
  " \n"
3971
+ "«balance»\n"
3972
  " \n"
3973
  "(ou solde) pour fonder le\n"
3974
  " \n"
3984
  " \n"
3985
  "ou\n"
3986
  " \n"
3987
+ "utiliser une référence\n"
3988
  " \n"
3989
+ "spécifique\n"
3990
  "."
3991
 
3992
  #: includes/mycred-widgets.php:375
3993
  msgid "Reference Guide"
3994
+ msgstr "Guide de référence"
3995
 
3996
  #: includes/mycred-widgets.php:379
3997
  msgid "Visible to non-members"
4008
  #: includes/mycred-widgets.php:393
4009
  msgid "Optional offset of order. Use zero to return the first in the list."
4010
  msgstr ""
4011
+ "Offset de tri optionnel. Indiquez zéro pour afficher le premier de la liste."
4012
 
4013
  #: includes/mycred-widgets.php:396
4014
  msgid "Order"
4015
+ msgstr "Ordre"
4016
 
4017
  #: includes/mycred-widgets.php:401 includes/classes/class.query-log.php:1081
4018
  msgid "Ascending"
4019
+ msgstr "Ordre croissant"
4020
 
4021
  #: includes/mycred-widgets.php:402 includes/classes/class.query-log.php:1081
4022
  msgid "Descending"
4023
+ msgstr "Ordre décroissant"
4024
 
4025
  #: includes/mycred-widgets.php:415
4026
  msgid "Append current users position"
4032
  "them at the end with their current position."
4033
  msgstr ""
4034
  "Si l'utilisateur courant ne figure pas dans ce classement, vous pouvez "
4035
+ "choisir de l'afficher à la fin avec sa position actuelle"
4036
 
4037
  #: includes/mycred-widgets.php:469
4038
  #, php-format
4051
  msgid "Points"
4052
  msgstr "Points"
4053
 
4054
+ #: includes/mycred-functions.php:472
4055
  msgid "Deleted"
4056
+ msgstr "Supprim&eacute;"
4057
 
4058
+ #: includes/mycred-functions.php:613
4059
  msgid "Deleted Item"
4060
+ msgstr "Item supprimé"
4061
 
4062
+ #: includes/mycred-functions.php:677
4063
  #: addons/email-notices/myCRED-addon-email-notices.php:864
4064
  #: addons/gateway/carts/mycred-wpecommerce.php:370
4065
  msgid "General"
4066
+ msgstr "Principal"
4067
 
4068
+ #: includes/mycred-functions.php:684
4069
  msgid "User Related"
4070
  msgstr "A propos de l'utilisateur"
4071
 
4072
+ #: includes/mycred-functions.php:691
4073
  msgid "Post Related"
4074
+ msgstr "Relatif à l'article"
4075
 
4076
+ #: includes/mycred-functions.php:698
4077
  msgid "Comment Related"
4078
+ msgstr "Commentaire concerné"
4079
 
4080
+ #: includes/mycred-functions.php:705
4081
  msgid "Widget Related"
4082
+ msgstr "Widget concerné"
4083
 
4084
+ #: includes/mycred-functions.php:712
4085
  msgid "Amount Related"
4086
+ msgstr "Montant concerné"
4087
 
4088
+ #: includes/mycred-functions.php:719
4089
  msgid "Video Related"
4090
+ msgstr "Vidéo concernée"
4091
 
4092
+ #: includes/mycred-functions.php:730
4093
  msgid "and"
4094
  msgstr "et"
4095
 
4096
+ #: includes/mycred-functions.php:732
4097
  msgid "Available Template Tags:"
4098
+ msgstr "Mots clés de template disponibles"
4099
 
4100
  #: includes/importers/mycred-cubepoints.php:282
4101
  msgid "No balances were imported."
4102
+ msgstr "Aucun solde n'a été importé"
4103
 
4104
  #: includes/importers/mycred-cubepoints.php:282
4105
  msgid "No log entries were imported!"
4106
+ msgstr "Aucune donnée n'a été importée"
4107
 
4108
  #: includes/importers/mycred-cubepoints.php:288
4109
  #: includes/importers/mycred-balances.php:229
4112
  "Import complete - A total of <strong>%d</strong> balances were successfully "
4113
  "imported. <strong>%d</strong> was skipped."
4114
  msgstr ""
4115
+ "Import terminé - Un total de <strong>%d</strong> soldes a été importé avec "
4116
+ "succès ! <strong>%d</strong> reste(nt) ignoré(s)"
4117
 
4118
  #: includes/importers/mycred-cubepoints.php:340
4119
  #: includes/importers/mycred-cubepoints.php:364
4120
  #: includes/importers/mycred-balances.php:323
4121
  #: includes/importers/mycred-log-entries.php:308
4122
  msgid "Import"
4123
+ msgstr "Import"
4124
 
4125
  #: includes/importers/mycred-cubepoints.php:344
4126
  msgid "Select what to import"
4127
+ msgstr "Sélectionnez ce que vous voulez importer"
4128
 
4129
  #: includes/importers/mycred-cubepoints.php:345
4130
  msgid "Log Entries Only"
4131
+ msgstr "Uniquement les entrées enregistrées"
4132
 
4133
  #: includes/importers/mycred-cubepoints.php:346
4134
  msgid "CubePoints Balances Only"
4136
 
4137
  #: includes/importers/mycred-cubepoints.php:347
4138
  msgid "Log Entries and Balances"
4139
+ msgstr "Les entrées et les soldes"
4140
 
4141
  #: includes/importers/mycred-balances.php:284
4142
  #: includes/importers/mycred-log-entries.php:280
4143
  msgid "Choose a file from your computer:"
4144
+ msgstr "Sélectionnez un fichier:"
4145
 
4146
  #: includes/importers/mycred-balances.php:290
4147
  #: includes/importers/mycred-log-entries.php:286
4148
  #, php-format
4149
  msgid "Maximum size: %s"
4150
+ msgstr "Taille maximale: %s"
4151
 
4152
  #: includes/importers/mycred-balances.php:295
4153
  #: includes/importers/mycred-log-entries.php:291
4157
  #: includes/importers/mycred-balances.php:303
4158
  #: includes/importers/mycred-log-entries.php:299
4159
  msgid "Delimiter"
4160
+ msgstr "Délimiteur"
4161
 
4162
  #: includes/importers/mycred-balances.php:311
4163
  msgid "Method"
4164
+ msgstr "Méthode de mise à jour"
4165
 
4166
  #: includes/importers/mycred-balances.php:315
4167
  msgid "Replace current balances with the amount in this CSV file"
4183
  #: includes/shortcodes/mycred_exchange.php:156
4184
  #, php-format
4185
  msgid "You are excluded from using %s."
4186
+ msgstr "Vous êtes exclu d'utiliser %s"
4187
 
4188
  #: includes/shortcodes/mycred_exchange.php:37
4189
  #: includes/shortcodes/mycred_exchange.php:146
4190
  msgid "Your balance is too low to use this feature."
4191
+ msgstr "Votre solde est trop bas pour utiliser cet élément."
4192
 
4193
  #: includes/shortcodes/mycred_exchange.php:63
4194
  #, php-format
4207
 
4208
  #: includes/shortcodes/mycred_exchange.php:124
4209
  msgid "Point types not found."
4210
+ msgstr "Types de point non trouvé."
4211
 
4212
  #: includes/shortcodes/mycred_exchange.php:169
4213
  #, php-format
4214
  msgid "You must exchange at least %s!"
4215
+ msgstr "Vous devez échanger au minimum %s!"
4216
 
4217
  #: includes/shortcodes/mycred_exchange.php:178
4218
  #: addons/transfer/myCRED-addon-transfer.php:174
4219
  msgid "Insufficient Funds. Please try a lower amount."
4220
+ msgstr "Insuffisance de fonds. S'il vous plait, essayez un montant inférieur."
4221
 
4222
  #: includes/shortcodes/mycred_exchange.php:191
4223
  #, php-format
4232
  #: includes/shortcodes/mycred_exchange.php:211
4233
  #, php-format
4234
  msgid "You have successfully exchanged %s into %s."
4235
+ msgstr "Vous avez échangez avec succès %s en %s."
4236
 
4237
  #: includes/shortcodes/mycred_video.php:44
4238
  msgid "A video ID is required for this shortcode"
4239
+ msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
4240
 
4241
  #: includes/classes/class.query-export.php:374
4242
  #: includes/classes/class.query-log.php:1526
4245
 
4246
  #: includes/classes/class.query-export.php:487
4247
  msgid "Search Results"
4248
+ msgstr "Chercher les résultats"
4249
 
4250
  #: includes/classes/class.query-log.php:954
4251
  msgid "No log entries found"
4252
+ msgstr "Aucun enregistrement à afficher."
4253
 
4254
  #: includes/classes/class.query-log.php:1055
4255
  msgid "Show all references"
4256
+ msgstr "Afficher toutes les références"
4257
 
4258
  #: includes/classes/class.query-log.php:1080
4259
  msgid "Show in order"
4261
 
4262
  #: includes/classes/class.query-log.php:1101
4263
  msgid "Filter"
4264
+ msgstr "Filter"
4265
 
4266
  #: includes/classes/class.query-log.php:1694
4267
  msgid "No export options available."
4274
 
4275
  #: includes/classes/class.query-log.php:1728
4276
  msgid "search log entries"
4277
+ msgstr "Recherchez une donnée"
4278
 
4279
  #: includes/classes/class.query-log.php:2180
4280
  msgid "Website Registration"
4298
 
4299
  #: includes/classes/class.query-log.php:2185
4300
  msgid "Publishing Content"
4301
+ msgstr "Publié le contenu"
4302
 
4303
  #: includes/classes/class.query-log.php:2186
4304
  msgid "Approved Comment"
4305
+ msgstr "Commentaire approuvé"
4306
 
4307
  #: includes/classes/class.query-log.php:2187
4308
  msgid "Unapproved Comment"
4309
+ msgstr "Commentaire non approuvé"
4310
 
4311
  #: includes/classes/class.query-log.php:2188
4312
  msgid "SPAM Comment"
4314
 
4315
  #: includes/classes/class.query-log.php:2190
4316
  msgid "Link Click"
4317
+ msgstr "Lien cliqué"
4318
 
4319
  #: includes/classes/class.query-log.php:2191
4320
  msgid "Watching Video"
4321
+ msgstr "Vidéo regardé"
4322
 
4323
  #: includes/classes/class.query-log.php:2192
4324
  msgid "Visitor Referral"
4325
+ msgstr "Visiter référant"
4326
 
4327
  #: includes/classes/class.query-log.php:2193
4328
  msgid "Signup Referral"
4329
+ msgstr "Inscription référant"
4330
 
4331
  #: includes/classes/class.query-log.php:2197
4332
  msgid "New Profile Update"
4333
+ msgstr "Nouveau profil mis à jour"
4334
 
4335
  #: includes/classes/class.query-log.php:2199
4336
  msgid "Avatar Upload"
4337
+ msgstr "Téléchargement d'avatar"
4338
 
4339
  #: includes/classes/class.query-log.php:2201
4340
  msgid "New Friendship"
4342
 
4343
  #: includes/classes/class.query-log.php:2202
4344
  msgid "Ended Friendship"
4345
+ msgstr "Fin d'amitié"
4346
 
4347
  #: includes/classes/class.query-log.php:2203
4348
  msgid "New Profile Comment"
4358
 
4359
  #: includes/classes/class.query-log.php:2209
4360
  msgid "New Group"
4361
+ msgstr "Nouveau Groupe"
4362
 
4363
  #: includes/classes/class.query-log.php:2210
4364
  msgid "Deleted Group"
4365
+ msgstr "Groupe supprimé"
4366
 
4367
  #: includes/classes/class.query-log.php:2211
4368
  msgid "New Group Forum Topic"
4406
 
4407
  #: includes/classes/class.query-log.php:2231
4408
  msgid "Link Update"
4409
+ msgstr "Lien mis à jour"
4410
 
4411
  #: includes/classes/class.query-log.php:2235
4412
  msgid "New Forum (bbPress)"
4422
 
4423
  #: includes/classes/class.query-log.php:2238
4424
  msgid "New Topic Reply (bbPress)"
4425
+ msgstr "Nouvelle réponse d'un sujet (Bbpress)"
4426
 
4427
  #: includes/classes/class.query-log.php:2242
4428
  msgid "Form Submission (Contact Form 7)"
4440
  msgid "New Forum Post (SimplePress)"
4441
  msgstr "Nouveau post sur le forum (SimplePress)"
4442
 
 
 
 
 
 
 
 
 
4443
  #: includes/classes/class.query-log.php:2270
4444
  msgid "Poll Voting"
4445
  msgstr "Poll Voting"
4455
  #: includes/classes/class.query-log.php:2280
4456
  #: addons/banking/myCRED-addon-banking.php:150
4457
  msgid "Compound Interest"
4458
+ msgstr "Appliquer des Intérêts"
4459
 
4460
  #: includes/classes/class.query-log.php:2288
4461
  msgid "buyCRED Purchase (PayPal Standard)"
4491
 
4492
  #: includes/classes/class.query-log.php:2317
4493
  msgid "Event Payment (Event Espresso)"
4494
+ msgstr "Evènement paiement (Event Espresso)"
4495
 
4496
  #: includes/classes/class.query-log.php:2318
4497
  msgid "Event Sale (Event Espresso)"
4498
+ msgstr "Evènement vendu (Event Espresso)"
4499
 
4500
  #: includes/classes/class.query-log.php:2322
4501
  msgid "Event Payment (Events Manager)"
4502
+ msgstr "Evènement payé (Events Manager)"
4503
 
4504
  #: includes/classes/class.query-log.php:2323
4505
  msgid "Event Sale (Events Manager)"
4506
+ msgstr "Evènement vendu (Events Manager)"
4507
 
4508
  #: includes/classes/class.query-log.php:2332
4509
  #: addons/transfer/myCRED-addon-transfer.php:48
4510
  msgid "Transfer"
4511
+ msgstr "Transférer"
4512
 
4513
  #: includes/classes/class.query-log.php:2336
4514
  msgid "Manual Adjustment by Admin"
4526
 
4527
  #: addons/banking/myCRED-addon-banking.php:159
4528
  msgid "Recurring Payouts"
4529
+ msgstr "Paiements répétés"
4530
 
4531
  #: addons/banking/myCRED-addon-banking.php:160
4532
  msgid "Setup mass %_singular% payouts for your users."
4541
  #: addons/banking/myCRED-addon-banking.php:273
4542
  #: addons/buy-creds/modules/buycred-module-core.php:618
4543
  msgid "Enable"
4544
+ msgstr "Permettre"
4545
 
4546
  #: addons/banking/myCRED-addon-banking.php:292
4547
  msgid "Update Changes"
4553
 
4554
  #: addons/transfer/myCRED-addon-transfer.php:42
4555
  msgid "You have exceeded your %limit% transfer limit."
4556
+ msgstr "Vous avez dépass&eacute; votre limite de transfert %limit%."
4557
 
4558
  #: addons/transfer/myCRED-addon-transfer.php:167
4559
  msgid "Transaction completed."
4560
+ msgstr "Transaction terminée."
4561
 
4562
  #: addons/transfer/myCRED-addon-transfer.php:168
4563
  msgid ""
4564
  "Security token could not be verified. Please contact your site administrator!"
4565
  msgstr ""
4566
+ "Le jeton de sécurité n'a pas pu être vérifié. Veuillez contacter "
4567
  "l'administrateur du site."
4568
 
4569
  #: addons/transfer/myCRED-addon-transfer.php:169
4570
  #: addons/transfer/myCRED-addon-transfer.php:176
4571
  msgid "Communications error. Please try again later."
4572
+ msgstr "Erreur de communication. Veuillez essayer ultérieurement."
4573
 
4574
  #: addons/transfer/myCRED-addon-transfer.php:170
4575
  msgid "Recipient not found. Please try again."
4576
+ msgstr "Le destinataire n'a pas été trouvé. Veuillez recommencer."
4577
 
4578
  #: addons/transfer/myCRED-addon-transfer.php:171
4579
  msgid "Transaction declined by recipient."
4580
+ msgstr "Transaction refusée par le destinataire."
4581
 
4582
  #: addons/transfer/myCRED-addon-transfer.php:172
4583
  msgid "Incorrect amount. Please try again."
4588
  "This myCRED Add-on has not yet been setup! No transfers are allowed until "
4589
  "this has been done!"
4590
  msgstr ""
4591
+ "Ce module myCRED n'a pas encore été paramétré. Aucun transfert n'est "
4592
+ "autorisé avant qu'il ne soit activé."
4593
 
4594
  #: addons/transfer/myCRED-addon-transfer.php:175
4595
  msgid "Transfer Limit exceeded."
4596
+ msgstr "La limite de transfert a été dépassée."
4597
 
4598
  #: addons/transfer/myCRED-addon-transfer.php:340
4599
  msgid "No limits."
4600
+ msgstr "Illimité."
4601
 
4602
  #: addons/transfer/myCRED-addon-transfer.php:341
4603
  msgid "Impose daily limit."
4618
  #: addons/transfer/myCRED-addon-transfer.php:355
4619
  #: addons/buy-creds/gateways/bitpay.php:299
4620
  msgid "Yes"
4621
+ msgstr "Ben Oui"
4622
 
4623
  #: addons/transfer/myCRED-addon-transfer.php:356
4624
  #: addons/buy-creds/gateways/bitpay.php:298
4625
  msgid "No"
4626
+ msgstr "Ne Pas"
4627
 
4628
  #: addons/transfer/myCRED-addon-transfer.php:363
4629
  msgid "Transfers"
4631
 
4632
  #: addons/transfer/myCRED-addon-transfer.php:381
4633
  msgid "Reload"
4634
+ msgstr "Rafraîchir"
4635
 
4636
  #: addons/transfer/myCRED-addon-transfer.php:405
4637
  msgid "Autofill Recipient"
4638
+ msgstr "Autocomplétion du destinataire"
4639
 
4640
  #: addons/transfer/myCRED-addon-transfer.php:417
4641
  msgid "Select what user details recipients should be autofilled by."
4642
  msgstr ""
4643
+ "Sélectionnez les détails à afficher en autocomplétion aux destinataires."
4644
 
4645
  #: addons/transfer/myCRED-addon-transfer.php:424
4646
  #: addons/coupons/myCRED-addon-coupons.php:252
4647
  #: addons/banking/services/mycred-service-payouts.php:599
4648
  #: addons/banking/services/mycred-service-payouts.php:760
4649
  msgid "Limits"
4650
+ msgstr "Règles de limitation"
4651
 
4652
  #: addons/transfer/myCRED-addon-transfer.php:443
4653
  msgid "Limit Amount"
4656
  #: addons/transfer/myCRED-addon-transfer.php:456
4657
  #: addons/sell-content/myCRED-addon-sell-content.php:685
4658
  #: addons/gateway/event-booking/mycred-eventsmanager.php:641
 
4659
  msgid "Log Templates"
4660
+ msgstr "Textes à afficher"
4661
 
4662
  #: addons/transfer/myCRED-addon-transfer.php:460
4663
  msgid "Log template for sending"
4664
+ msgstr "Affichage de l'avis d'expédition"
4665
 
4666
  #: addons/transfer/myCRED-addon-transfer.php:467
4667
  msgid "Log template for receiving"
4668
+ msgstr "Affichage de l'avis de récéption"
4669
+
4670
+ #: addons/transfer/myCRED-addon-transfer.php:507
4671
+ msgid "Limit Template"
4672
+ msgstr "Template des limitations"
4673
+
4674
+ #: addons/transfer/myCRED-addon-transfer.php:523
4675
+ msgid "Balance Template"
4676
+ msgstr "Template des relevés"
4677
 
4678
  #: addons/ranks/myCRED-addon-ranks.php:218
4679
  #: addons/ranks/myCRED-addon-ranks.php:227
4681
  #: addons/ranks/myCRED-addon-ranks.php:339
4682
  #: addons/ranks/myCRED-addon-ranks.php:340
4683
  #: addons/ranks/myCRED-addon-ranks.php:724
4684
+ #: addons/ranks/myCRED-addon-ranks.php:1363
4685
+ #: addons/ranks/myCRED-addon-ranks.php:1658
4686
  msgid "Ranks"
4687
  msgstr "Attribution de Points"
4688
 
4721
  msgstr "Rechercher un classement"
4722
 
4723
  #: addons/ranks/myCRED-addon-ranks.php:234
4724
+ #: addons/ranks/myCRED-addon-ranks.php:1290
4725
  msgid "No ranks found"
4726
+ msgstr "Aucun classement trouvé"
4727
 
4728
  #: addons/ranks/myCRED-addon-ranks.php:235
4729
  msgid "No ranks found in Trash"
4730
+ msgstr "Aucun classement trouvé dans la corbeille"
4731
 
4732
  #: addons/ranks/myCRED-addon-ranks.php:283
4733
  #: addons/ranks/myCRED-addon-ranks.php:284
4737
  #: addons/ranks/myCRED-addon-ranks.php:290
4738
  #: addons/ranks/myCRED-addon-ranks.php:291
4739
  msgid "Rank Updated."
4740
+ msgstr "Rang mis à jour."
4741
 
4742
  #: addons/ranks/myCRED-addon-ranks.php:481
4743
  #, php-format
4744
  msgid "Completed - Total of %d users effected"
4745
+ msgstr "Terminé - %d utilisateurs ont été affectés"
4746
 
4747
  #: addons/ranks/myCRED-addon-ranks.php:987
4748
  msgid "Warning! All ranks will be deleted! This can not be undone!"
4749
  msgstr ""
4750
+ "Attention ! Tous les classements vont être supprimés. Cette action ne pourra "
4751
+ "pas être annulée."
4752
 
4753
  #: addons/ranks/myCRED-addon-ranks.php:988
4754
  msgid "Are you sure you want to re-assign user ranks?"
4755
+ msgstr "Je confirme la réassignation du classement de l'utilisateur"
4756
 
4757
+ #: addons/ranks/myCRED-addon-ranks.php:1077
4758
+ #: addons/ranks/myCRED-addon-ranks.php:1178
4759
  msgid "Rank Title"
4760
  msgstr "Titre du classement"
4761
 
4762
+ #: addons/ranks/myCRED-addon-ranks.php:1078
4763
  msgid "Logo"
4764
  msgstr "Logo"
4765
 
4766
+ #: addons/ranks/myCRED-addon-ranks.php:1079
4767
+ #: addons/badges/myCRED-addon-badges.php:853
4768
+ #: addons/badges/myCRED-addon-badges.php:854
4769
  msgid "Requirement"
4770
  msgstr "Obligation"
4771
 
4772
+ #: addons/ranks/myCRED-addon-ranks.php:1105
4773
  msgid "No Logo Set"
4774
+ msgstr "Aucun logo défini"
4775
 
4776
+ #: addons/ranks/myCRED-addon-ranks.php:1120
4777
+ #: addons/ranks/myCRED-addon-ranks.php:1125
4778
  msgid "Any Value"
4779
  msgstr "Valeur au choix"
4780
 
4781
+ #: addons/ranks/myCRED-addon-ranks.php:1122
4782
  #: addons/buy-creds/modules/buycred-module-core.php:345
4783
  msgid "Minimum %plural%"
4784
  msgstr "%plural% minimum"
4785
 
4786
+ #: addons/ranks/myCRED-addon-ranks.php:1127
4787
  msgid "Maximum %plural%"
4788
  msgstr "Maximum de %plural%"
4789
 
4790
+ #: addons/ranks/myCRED-addon-ranks.php:1279
4791
+ #: addons/ranks/myCRED-addon-ranks.php:1280
4792
  msgid "Not Set"
4793
+ msgstr "Non configuré"
4794
 
4795
+ #: addons/ranks/myCRED-addon-ranks.php:1370
4796
  msgid "Rank Features"
4797
+ msgstr "Caractéristiques du classement"
4798
 
4799
+ #: addons/ranks/myCRED-addon-ranks.php:1376
4800
  msgid "%plural% requirement"
4801
  msgstr "condition requise pour l&#39;attribution de %_plural%"
4802
 
4803
+ #: addons/ranks/myCRED-addon-ranks.php:1382
4804
  msgid "Content"
4805
+ msgstr "Exercices"
4806
 
4807
+ #: addons/ranks/myCRED-addon-ranks.php:1385
4808
  msgid "Excerpt"
4809
  msgstr "Extrait"
4810
 
4811
+ #: addons/ranks/myCRED-addon-ranks.php:1388
4812
  msgid "Comments"
4813
  msgstr "Commentaires"
4814
 
4815
+ #: addons/ranks/myCRED-addon-ranks.php:1391
4816
  msgid "Page Attributes"
4817
  msgstr "Attributs de la page"
4818
 
4819
+ #: addons/ranks/myCRED-addon-ranks.php:1394
4820
  msgid "Custom Fields"
4821
+ msgstr "Champs personnalisés"
4822
 
4823
+ #: addons/ranks/myCRED-addon-ranks.php:1411
4824
  msgid "Display Order"
4825
  msgstr "Ordre d'affichage"
4826
 
4827
+ #: addons/ranks/myCRED-addon-ranks.php:1417
4828
  msgid "Ascending - Lowest rank to highest"
4829
  msgstr "Ascendant - Du plus petit au plus grand"
4830
 
4831
+ #: addons/ranks/myCRED-addon-ranks.php:1418
4832
  msgid "Descending - Highest rank to lowest"
4833
  msgstr "Descendant - Du plus grand au plus petit"
4834
 
4835
+ #: addons/ranks/myCRED-addon-ranks.php:1460
4836
  msgid "Calculate Totals"
4837
  msgstr "Calculer les totaux"
4838
 
4839
+ #: addons/ranks/myCRED-addon-ranks.php:1480
4840
+ #: addons/ranks/myCRED-addon-ranks.php:1521
4841
  msgid "Do not show."
4842
  msgstr "Ne pas afficher."
4843
 
4844
+ #: addons/ranks/myCRED-addon-ranks.php:1481
4845
  msgid "Include in Profile Header."
4846
+ msgstr "Inclure dans l'en-tête du profil."
4847
 
4848
+ #: addons/ranks/myCRED-addon-ranks.php:1483
4849
  msgid "Include under the \"Profile\" tab and Profile Header."
4850
+ msgstr "Inclure sous l'onglet \"Profil\" et dans l'en-tête du profil."
4851
 
4852
+ #: addons/ranks/myCRED-addon-ranks.php:1523
4853
+ #: addons/badges/myCRED-addon-badges.php:1200
4854
  msgid "Include in Profile"
4855
  msgstr "Inclure dans le profil"
4856
 
4857
+ #: addons/ranks/myCRED-addon-ranks.php:1550
4858
+ #: addons/email-notices/myCRED-addon-email-notices.php:1466
4859
+ #: addons/badges/myCRED-addon-badges.php:1227
4860
  #: addons/buy-creds/modules/buycred-module-core.php:460
4861
  msgid "Available Shortcodes"
4862
  msgstr "Shortcodes disponibles"
4863
 
4864
+ #: addons/ranks/myCRED-addon-ranks.php:1661
4865
  msgid "User Meta Key"
4866
+ msgstr "Mot clé utilisateur"
4867
 
4868
+ #: addons/ranks/myCRED-addon-ranks.php:1665
4869
  msgid "No. of ranks"
4870
+ msgstr "N° de classement"
4871
 
4872
+ #: addons/ranks/myCRED-addon-ranks.php:1670
4873
  msgid "Remove All Ranks"
4874
  msgstr "Supprimer tous les classements"
4875
 
4876
+ #: addons/ranks/myCRED-addon-ranks.php:1670
4877
  msgid "Assign Ranks to Users"
4878
+ msgstr "Attribuer un classement à l'utilisateur"
4879
 
4880
  #: addons/notifications/myCRED-addon-notifications.php:191
4881
  msgid "Notifications"
4882
+ msgstr "Alertes"
4883
 
4884
  #: addons/notifications/myCRED-addon-notifications.php:200
4885
  msgid ""
4886
  "Use %entry% to show the log entry in the notice and %amount% for the amount."
4887
  msgstr ""
4888
+ "Utilisez %entry% pour afficher l'élément concerné dans la notice et %amount% "
4889
+ "pour afficher le montant."
4890
 
4891
  #: addons/notifications/myCRED-addon-notifications.php:207
4892
  msgid "Transient Lifespan"
4893
+ msgstr "Durée transitoire"
4894
 
4895
  #: addons/notifications/myCRED-addon-notifications.php:209
4896
  msgid ""
4897
  "The number of days a users notification is saved before being automatically "
4898
  "deleted."
4899
  msgstr ""
4900
+ "Le nombre de jours de conservations d'une notice adressée à l'utilisateur "
4901
+ "avant qu'elle ne soit automatiquement supprimée."
4902
 
4903
  #: addons/notifications/myCRED-addon-notifications.php:214
4904
  msgid "Duration"
4905
+ msgstr "Durée"
4906
 
4907
  #: addons/notifications/myCRED-addon-notifications.php:224
4908
  msgid "Use the included CSS Styling for notifications."
4917
  #: addons/email-notices/myCRED-addon-email-notices.php:179
4918
  #: addons/email-notices/myCRED-addon-email-notices.php:180
4919
  msgid "Email Notice Updated."
4920
+ msgstr "Notice d'Email mis à jour."
4921
 
4922
  #: addons/email-notices/myCRED-addon-email-notices.php:258
4923
  #: addons/email-notices/myCRED-addon-email-notices.php:275
4924
  msgid "Email Subject"
4925
+ msgstr "Sujet de l'e-mail"
4926
 
4927
  #: addons/email-notices/myCRED-addon-email-notices.php:276
4928
  #: addons/banking/services/mycred-service-payouts.php:565
4929
  #: addons/banking/services/mycred-service-payouts.php:880
4930
  msgid "Status"
4931
+ msgstr "&Eacute;tat"
4932
 
4933
  #: addons/email-notices/myCRED-addon-email-notices.php:302
4934
  msgid "Not Active"
4942
  #: addons/email-notices/myCRED-addon-email-notices.php:310
4943
  #: addons/banking/services/mycred-service-payouts.php:31
4944
  msgid "Active"
4945
+ msgstr "&Eacute;mission active"
4946
 
4947
  #: addons/email-notices/myCRED-addon-email-notices.php:312
4948
  #, php-format
4951
 
4952
  #: addons/email-notices/myCRED-addon-email-notices.php:325
4953
  msgid "Email is sent when"
4954
+ msgstr "Le mail sera envoyé quand"
4955
 
4956
  #: addons/email-notices/myCRED-addon-email-notices.php:327
4957
  msgid "Missing instance for this notice!"
4958
+ msgstr "Ce message n'est pas instancié !"
4959
 
4960
  #: addons/email-notices/myCRED-addon-email-notices.php:336
4961
  #: addons/email-notices/myCRED-addon-email-notices.php:338
4962
  #: addons/email-notices/myCRED-addon-email-notices.php:340
4963
  msgid "Sent To"
4964
+ msgstr "Envoyer à"
4965
 
4966
  #: addons/email-notices/myCRED-addon-email-notices.php:338
4967
  #: addons/email-notices/myCRED-addon-email-notices.php:571
4970
 
4971
  #: addons/email-notices/myCRED-addon-email-notices.php:340
4972
  msgid "Both Administrator and User"
4973
+ msgstr "A l'administrateur et à l'utilisateur"
4974
 
4975
  #: addons/email-notices/myCRED-addon-email-notices.php:388
4976
  msgid "Email Settings"
4977
+ msgstr "Paramètres e-mail"
4978
 
4979
  #: addons/email-notices/myCRED-addon-email-notices.php:397
4980
  msgid "Available Template Tags"
4981
+ msgstr "Mots-clés utilisables ici"
4982
 
4983
  #: addons/email-notices/myCRED-addon-email-notices.php:408
4984
  msgid "Email Header"
4985
+ msgstr "En-tête du mail"
4986
 
4987
  #: addons/email-notices/myCRED-addon-email-notices.php:494
4988
  msgid ""
4989
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
4990
  "you are not yet ready to use this email notice!"
4991
  msgstr ""
4992
+ "<strong>ATTENTION</strong><br/>Une fois que le message est publié il est "
4993
+ "actif ! Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à "
4994
  "l'utiliser."
4995
 
4996
  #: addons/email-notices/myCRED-addon-email-notices.php:496
5000
 
5001
  #: addons/email-notices/myCRED-addon-email-notices.php:498
5002
  msgid "This email notice is active."
5003
+ msgstr "Ce message est activé."
5004
 
5005
  #: addons/email-notices/myCRED-addon-email-notices.php:524
5006
  msgid "Send this email notice when..."
5012
 
5013
  #: addons/email-notices/myCRED-addon-email-notices.php:574
5014
  msgid "Both"
5015
+ msgstr "Tous les deux"
5016
 
5017
  #: addons/email-notices/myCRED-addon-email-notices.php:610
5018
+ #: addons/email-notices/myCRED-addon-email-notices.php:1477
5019
  msgid "Senders Name:"
5020
+ msgstr "Expéditeur:"
5021
 
5022
  #: addons/email-notices/myCRED-addon-email-notices.php:614
5023
+ #: addons/email-notices/myCRED-addon-email-notices.php:1483
5024
  msgid "Senders Email:"
5025
+ msgstr "Email de l'expéditeur"
5026
 
5027
  #: addons/email-notices/myCRED-addon-email-notices.php:618
5028
  msgid "Reply-To Email:"
5029
+ msgstr "Adresse de réponse"
5030
 
5031
  #: addons/email-notices/myCRED-addon-email-notices.php:643
5032
  msgid "CSS Styling"
5033
+ msgstr "Règles de style"
5034
 
5035
  #: addons/email-notices/myCRED-addon-email-notices.php:666
5036
  msgid "Site Related"
5058
 
5059
  #: addons/email-notices/myCRED-addon-email-notices.php:865
5060
  msgid "users balance changes"
5061
+ msgstr "le solde a changé"
5062
 
5063
  #: addons/email-notices/myCRED-addon-email-notices.php:866
5064
  msgid "user gains %_plural%"
5070
 
5071
  #: addons/email-notices/myCRED-addon-email-notices.php:868
5072
  msgid "users balance reaches zero"
5073
+ msgstr "le solde est à zéro"
5074
 
5075
  #: addons/email-notices/myCRED-addon-email-notices.php:869
5076
  msgid "users balance goes minus"
5077
+ msgstr "le solde est négatif"
5078
 
5079
  #: addons/email-notices/myCRED-addon-email-notices.php:883
5080
  msgid "Sell Content Add-on"
5082
 
5083
  #: addons/email-notices/myCRED-addon-email-notices.php:884
5084
  msgid "user buys content"
5085
+ msgstr "l'utilisateur a acheté du contenu"
5086
 
5087
  #: addons/email-notices/myCRED-addon-email-notices.php:885
5088
  msgid "authors content gets sold"
5089
+ msgstr "le contenu de cet auteur a été vendu"
5090
 
5091
  #: addons/email-notices/myCRED-addon-email-notices.php:892
5092
  msgid "buyCREDs Add-on"
5094
 
5095
  #: addons/email-notices/myCRED-addon-email-notices.php:893
5096
  msgid "user buys %_plural%"
5097
+ msgstr "l'utilisateur a acheté des %_plural%"
5098
 
5099
  #: addons/email-notices/myCRED-addon-email-notices.php:900
5100
  msgid "Transfer Add-on"
5102
 
5103
  #: addons/email-notices/myCRED-addon-email-notices.php:901
5104
  msgid "user sends %_plural%"
5105
+ msgstr "l'utilisateur a envoyé des %_plural%"
5106
 
5107
  #: addons/email-notices/myCRED-addon-email-notices.php:902
5108
  msgid "user receives %_plural%"
5109
+ msgstr "l'utilisateur a reçu des %_plural%"
5110
 
5111
  #: addons/email-notices/myCRED-addon-email-notices.php:909
5112
  msgid "Ranks Add-on"
5114
 
5115
  #: addons/email-notices/myCRED-addon-email-notices.php:910
5116
  msgid "user is demoted"
5117
+ msgstr "utilisateur rétrogradé"
5118
 
5119
  #: addons/email-notices/myCRED-addon-email-notices.php:911
5120
  msgid "user is promoted"
5121
  msgstr "utilisateur promu"
5122
 
5123
+ #: addons/email-notices/myCRED-addon-email-notices.php:1410
5124
  #: addons/coupons/myCRED-addon-coupons.php:114
5125
  msgid "Email Notices"
5126
  msgstr "Messagerie"
5127
 
5128
+ #: addons/email-notices/myCRED-addon-email-notices.php:1430
5129
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
5130
+ msgstr "Wordpress Con est désactivé. Les emails seront envoyés immédiatement."
 
5131
 
5132
+ #: addons/email-notices/myCRED-addon-email-notices.php:1433
5133
  msgid "Send emails immediately"
5134
+ msgstr "Envoie des emails immédiatement."
5135
 
5136
+ #: addons/email-notices/myCRED-addon-email-notices.php:1436
5137
  msgid "Send emails once an hour"
5138
  msgstr "Envoie des emails une fois par heure."
5139
 
5140
+ #: addons/email-notices/myCRED-addon-email-notices.php:1439
5141
  msgid "Send emails once a day"
5142
  msgstr "Envoie des emails une fois par jour"
5143
 
5144
+ #: addons/email-notices/myCRED-addon-email-notices.php:1460
5145
  msgid ""
5146
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
5147
  "use a SMTP plugin for emails."
5148
  msgstr ""
5149
+ "SMTP Debug. Activé si vous avez l'expérence issu avec wp_mail(s) ou si vous "
5150
+ "utilisez SMTP plugin pour vos mails."
5151
 
5152
+ #: addons/email-notices/myCRED-addon-email-notices.php:1473
5153
+ msgid "Defaults"
5154
+ msgstr "Défaut"
5155
+
5156
+ #: addons/email-notices/myCRED-addon-email-notices.php:1489
5157
  msgid "Reply-To:"
5158
+ msgstr "Adresse de réponse:"
5159
 
5160
+ #: addons/email-notices/myCRED-addon-email-notices.php:1497
5161
  msgid "Default Email Content"
5162
+ msgstr "Contenu par défaut"
5163
 
5164
+ #: addons/email-notices/myCRED-addon-email-notices.php:1499
5165
  msgid "Default email content."
5166
+ msgstr "contenu par défaut"
5167
 
5168
+ #: addons/email-notices/myCRED-addon-email-notices.php:1606
5169
  msgid "Unsubscribe"
5170
+ msgstr "Désinscription"
5171
 
5172
+ #: addons/email-notices/myCRED-addon-email-notices.php:1607
5173
  msgid "Email Notice"
5174
+ msgstr "Message à envoyer"
5175
 
5176
+ #: addons/email-notices/myCRED-addon-email-notices.php:1628
5177
  msgid "There are no email notifications yet."
5178
  msgstr "Il n'y a pas encore de notifications d'email."
5179
 
5180
+ #: addons/email-notices/myCRED-addon-email-notices.php:1635
5181
+ #: addons/buy-creds/modules/buycred-module-pending.php:517
5182
  msgid "Save Changes"
5183
+ msgstr "Sauvegarder les réglages"
5184
+
5185
+ #: addons/stats/myCRED-addon-stats.php:248
5186
+ msgid "Overview"
5187
+ msgstr "Vue d&rsquo;ensemble"
5188
+
5189
+ #: addons/stats/myCRED-addon-stats.php:310
5190
+ msgid "Refresh"
5191
+ msgstr "Rafraichir"
5192
 
5193
  #: addons/badges/myCRED-addon-badges.php:148
5194
  #: addons/badges/myCRED-addon-badges.php:154
5195
  #: addons/badges/myCRED-addon-badges.php:160
5196
  #: addons/badges/myCRED-addon-badges.php:295
5197
  #: addons/badges/myCRED-addon-badges.php:296
5198
+ #: addons/badges/myCRED-addon-badges.php:1152
5199
+ #: addons/badges/myCRED-addon-badges.php:1281
5200
+ #: addons/badges/myCRED-addon-badges.php:1284
5201
  msgid "Badges"
5202
  msgstr "Badges"
5203
 
5223
 
5224
  #: addons/badges/myCRED-addon-badges.php:157
5225
  msgid "No badges found"
5226
+ msgstr "Pas de badges trouvés"
5227
 
5228
  #: addons/badges/myCRED-addon-badges.php:158
5229
  msgid "No badges found in Trash"
5230
+ msgstr "Pas de badge trouvés dans la corbeille"
5231
 
5232
  #: addons/badges/myCRED-addon-badges.php:270
5233
  #: addons/badges/myCRED-addon-badges.php:271
5237
  #: addons/badges/myCRED-addon-badges.php:278
5238
  #: addons/badges/myCRED-addon-badges.php:279
5239
  msgid "Badge Updated."
5240
+ msgstr "Badge mis à jour."
5241
 
5242
+ #: addons/badges/myCRED-addon-badges.php:421
5243
+ #: addons/badges/myCRED-addon-badges.php:505
5244
  msgid "Badge Name"
5245
  msgstr "Nom du badge"
5246
 
5247
+ #: addons/badges/myCRED-addon-badges.php:422
5248
  msgid "Default Image"
5249
+ msgstr "Image par défaut"
5250
 
5251
+ #: addons/badges/myCRED-addon-badges.php:424
5252
  msgid "Requirements"
5253
+ msgstr "Pré-requis"
5254
 
5255
+ #: addons/badges/myCRED-addon-badges.php:541
5256
  msgid "Badge Image"
5257
  msgstr "Image du badge"
5258
 
5259
+ #: addons/badges/myCRED-addon-badges.php:542
5260
  msgid "Use as Badge"
5261
  msgstr ""
5262
  "Utilisez\n"
5265
  " \n"
5266
  "Badge"
5267
 
5268
+ #: addons/badges/myCRED-addon-badges.php:703
5269
  msgid "Assign Badge"
5270
  msgstr "Assigner un badge"
5271
 
5272
+ #: addons/badges/myCRED-addon-badges.php:704
5273
  msgid "Remove Connections"
5274
  msgstr "Supprimer les connexions."
5275
 
5276
+ #: addons/badges/myCRED-addon-badges.php:802
5277
  msgid "Time(s)"
5278
  msgstr "Heure(s)"
5279
 
5280
+ #: addons/badges/myCRED-addon-badges.php:803
5281
  msgid "In total"
5282
  msgstr "Au total"
5283
 
5284
+ #: addons/badges/myCRED-addon-badges.php:1201
5285
  msgid "Include in Forum Replies"
5286
+ msgstr "Inclure dans les réponses du forum"
5287
 
5288
+ #: addons/badges/myCRED-addon-badges.php:1202
5289
  msgid "Include in Profile and Forum Replies"
5290
+ msgstr "Inclure dans les profils et les réponses du forums"
5291
 
5292
+ #: addons/badges/myCRED-addon-badges.php:1433
5293
  msgid "No users has yet earned this badge."
5294
  msgstr ""
5295
  "Aucun utilisateur\n"
5296
  " \n"
5297
  "n'a encore\n"
5298
  " \n"
5299
+ "gagné\n"
5300
  " \n"
5301
  "ce badge\n"
5302
  "."
5307
  #: addons/coupons/myCRED-addon-coupons.php:171
5308
  #: addons/coupons/myCRED-addon-coupons.php:702
5309
  msgid "Coupons"
5310
+ msgstr "Codes de réduction"
5311
 
5312
  #: addons/coupons/myCRED-addon-coupons.php:103
5313
  msgid "Coupon"
5316
  #: addons/coupons/myCRED-addon-coupons.php:104
5317
  #: addons/coupons/myCRED-addon-coupons.php:105
5318
  msgid "Create New"
5319
+ msgstr "Créer une promotion"
5320
 
5321
  #: addons/coupons/myCRED-addon-coupons.php:106
5322
  msgid "Edit Coupon"
5332
 
5333
  #: addons/coupons/myCRED-addon-coupons.php:111
5334
  msgid "No coupons found"
5335
+ msgstr "Aucune promo trouvée"
5336
 
5337
  #: addons/coupons/myCRED-addon-coupons.php:112
5338
  msgid "No coupons found in Trash"
5347
  #: addons/coupons/myCRED-addon-coupons.php:153
5348
  #: addons/coupons/myCRED-addon-coupons.php:154
5349
  msgid "Coupon updated."
5350
+ msgstr "Promo mise à jour."
5351
 
5352
  #: addons/coupons/myCRED-addon-coupons.php:150
5353
  msgid "Coupon published."
5354
+ msgstr "Promo publiée."
5355
 
5356
  #: addons/coupons/myCRED-addon-coupons.php:232
5357
  #: addons/coupons/myCRED-addon-coupons.php:249
5358
  msgid "Coupon Code"
5359
+ msgstr "Code promo"
5360
 
5361
  #: addons/coupons/myCRED-addon-coupons.php:250
5362
  #: addons/coupons/myCRED-addon-coupons.php:513
5374
 
5375
  #: addons/coupons/myCRED-addon-coupons.php:326
5376
  msgid "Expired"
5377
+ msgstr "Expirée"
5378
 
5379
  #: addons/coupons/myCRED-addon-coupons.php:332
5380
  #, php-format
5395
 
5396
  #: addons/coupons/myCRED-addon-coupons.php:524
5397
  msgid "Select the point type that this coupon is applied."
5398
+ msgstr "Sélectionnez le type de point applicable à ce bon"
5399
 
5400
  #: addons/coupons/myCRED-addon-coupons.php:536
5401
  msgid "Expire"
5405
  msgid ""
5406
  "Optional date when this coupon expires. Expired coupons will be trashed."
5407
  msgstr ""
5408
+ "Date d'expiration optionnelle pour ce bon. Les bons échus sont mis à la "
5409
  "corbeille."
5410
 
5411
  #: addons/coupons/myCRED-addon-coupons.php:566
5430
  "Optional minimum balance a user must have in order to use this coupon. Use "
5431
  "zero to disable."
5432
  msgstr ""
5433
+ "Le solde minimum d'un utilisateur pour utiliser ce bon. Indiquez zéro pour "
5434
+ "désactiver l'option."
5435
 
5436
  #: addons/coupons/myCRED-addon-coupons.php:615
5437
  msgid "Maximum Balance"
5442
  "Optional maximum balance a user can have in order to use this coupon. Use "
5443
  "zero to disable."
5444
  msgstr ""
5445
+ "Le solde maximum d'un utilisateur pour utiliser ce bon. Indiquez zéro pour "
5446
+ "désactiver l'option."
5447
 
5448
  #: addons/coupons/myCRED-addon-coupons.php:709
5449
  msgid "Invalid Coupon Message"
5452
  #: addons/coupons/myCRED-addon-coupons.php:711
5453
  msgid "Message to show when users try to use a coupon that does not exists."
5454
  msgstr ""
5455
+ "Le message à afficher lorsqu'un utilisateur tente d'utiliser un bon "
5456
  "inexistant."
5457
 
5458
  #: addons/coupons/myCRED-addon-coupons.php:716
5459
  msgid "Expired Coupon Message"
5460
+ msgstr "Message de coupon échu"
5461
 
5462
  #: addons/coupons/myCRED-addon-coupons.php:718
5463
  msgid "Message to show when users try to use that has expired."
5464
  msgstr ""
5465
+ "Le message à afficher lorsqu'un utilisateur tente d'utiliser un bon échu."
5466
 
5467
  #: addons/coupons/myCRED-addon-coupons.php:725
5468
  msgid "Minimum Balance Message"
5473
  "Message to show when a user does not meet the minimum balance requirement. "
5474
  "(if used)"
5475
  msgstr ""
5476
+ "Le message à afficher lorsqu'un utilisateur ne possède pas le solde minimum "
5477
+ "requis. (si activé)"
5478
 
5479
  #: addons/coupons/myCRED-addon-coupons.php:732
5480
  msgid "Maximum Balance Message"
5485
  "Message to show when a user does not meet the maximum balance requirement. "
5486
  "(if used)"
5487
  msgstr ""
5488
+ "Le message à afficher lorsqu'un utilisateur ne possède pas le solde maximum "
5489
+ "requis. (si activé)"
5490
 
5491
  #: addons/coupons/myCRED-addon-coupons.php:741
5492
  msgid "User Limit Message"
5493
+ msgstr "Message de période d'utilisation"
5494
 
5495
  #: addons/coupons/myCRED-addon-coupons.php:743
5496
  msgid "Message to show when the user limit has been reached for the coupon."
5497
  msgstr ""
5498
+ "Le message à afficher lorsqu'un utilisateur a atteint la fin de la période "
5499
  "d'utilisation du bon."
5500
 
5501
  #: addons/coupons/myCRED-addon-coupons.php:757
5502
  msgid "Success Message"
5503
+ msgstr "Message d'envoi réussi"
5504
 
5505
  #: addons/coupons/myCRED-addon-coupons.php:759
5506
  msgid ""
5507
  "Message to show when a coupon was successfully deposited to a users account."
5508
  msgstr ""
5509
+ "Le message à afficher lorsqu'un bon a été correctement viré sur le compte de "
5510
+ "l'utilisateur."
5511
 
5512
  #: addons/coupons/myCRED-addon-coupons.php:766
5513
  msgid ""
5514
  "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
5515
  "code."
5516
  msgstr ""
5517
+ "Journalisation pour la réussite de rachat de coupon. Utilisez %coupon% pour "
5518
  "afficher le code du bon."
5519
 
5520
  #: addons/sell-content/myCRED-addon-sell-content.php:381
5521
  #: addons/sell-content/myCRED-addon-sell-content.php:384
5522
  #: addons/sell-content/myCRED-addon-sell-content.php:664
5523
  msgid "Profit Share"
5524
+ msgstr "Bénéfice partagé"
5525
 
5526
  #: addons/sell-content/myCRED-addon-sell-content.php:508
5527
  #: addons/sell-content/myCRED-addon-sell-content.php:1000
5530
 
5531
  #: addons/sell-content/myCRED-addon-sell-content.php:511
5532
  msgid "Post Types"
5533
+ msgstr "Types d&rsquo;article"
5534
 
5535
  #: addons/sell-content/myCRED-addon-sell-content.php:673
5536
  #: addons/sell-content/myCRED-addon-sell-content.php:719
5537
  #: addons/gateway/event-booking/mycred-eventespresso3.php:473
5538
  #: addons/gateway/event-booking/mycred-eventsmanager.php:675
 
5539
  #: addons/transfer/includes/mycred-transfer-widgets.php:101
5540
  msgid "Button Label"
5541
+ msgstr "Intitulé du bouton"
5542
 
5543
  #: addons/sell-content/myCRED-addon-sell-content.php:1073
5544
  #: addons/gateway/event-booking/mycred-eventespresso3.php:495
5545
  #: addons/gateway/event-booking/mycred-eventsmanager.php:369
5546
  #: addons/gateway/event-booking/mycred-eventsmanager.php:373
 
 
5547
  msgid "Price"
5548
  msgstr "Prix"
5549
 
5553
 
5554
  #: addons/banking/services/mycred-service-interest.php:28
5555
  msgid "%plural% interest rate payment"
5556
+ msgstr "Versement de %_plural% d'intérêts"
5557
 
5558
  #: addons/banking/services/mycred-service-interest.php:481
5559
  #: addons/banking/services/mycred-service-interest.php:652
5560
  msgid "Interest Rate"
5561
+ msgstr "Taux d'intérêt"
5562
 
5563
  #: addons/banking/services/mycred-service-interest.php:528
5564
  #: addons/banking/services/mycred-service-interest.php:529
5565
  #: addons/banking/services/mycred-service-payouts.php:791
5566
  msgid "Comma separated list of user IDs"
5567
+ msgstr "Séparer les ID des utilisateurs par des virgules"
5568
+
5569
+ #: addons/banking/services/mycred-service-payouts.php:472
5570
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
5571
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
5572
+ msgid "View"
5573
+ msgstr "Voir"
5574
 
5575
  #: addons/banking/services/mycred-service-payouts.php:573
5576
  msgid "Last Run"
5577
+ msgstr "Dernière exécution"
5578
 
5579
  #: addons/banking/services/mycred-service-payouts.php:591
5580
  #: addons/gateway/carts/mycred-wpecommerce.php:396
5587
 
5588
  #: addons/banking/includes/mycred-banking-functions.php:84
5589
  msgid "Daily"
5590
+ msgstr "Journalier"
5591
 
5592
  #: addons/banking/includes/mycred-banking-functions.php:89
5593
  msgid "Weekly"
5595
 
5596
  #: addons/banking/includes/mycred-banking-functions.php:94
5597
  msgid "Monthly"
5598
+ msgstr "Mensuellement"
5599
 
5600
  #: addons/banking/includes/mycred-banking-functions.php:99
5601
  msgid "Quarterly"
5611
 
5612
  #: addons/gateway/event-booking/mycred-eventespresso3.php:26
5613
  #: addons/gateway/event-booking/mycred-eventsmanager.php:594
 
5614
  #: addons/buy-creds/modules/buycred-module-core.php:710
5615
  msgid "Payments"
5616
  msgstr "Paiements"
5617
 
5618
  #: addons/gateway/event-booking/mycred-eventespresso3.php:27
5619
  #: addons/gateway/event-booking/mycred-eventsmanager.php:36
5620
+ #: addons/buy-creds/modules/buycred-module-pending.php:744
 
5621
  msgid "Pay Now"
5622
  msgstr "Payer maintenant"
5623
 
5624
  #: addons/gateway/event-booking/mycred-eventespresso3.php:32
5625
  msgid "Payment for Event Registration"
5626
+ msgstr "Paiement pour l'enregistrement d'un événement"
5627
 
5628
  #: addons/gateway/event-booking/mycred-eventespresso3.php:311
5629
  #: addons/gateway/event-booking/mycred-eventespresso3.php:336
5630
  #: addons/gateway/event-booking/mycred-eventsmanager.php:468
5631
  #: addons/gateway/carts/mycred-wpecommerce.php:120
5632
  msgid "Total Cost"
5633
+ msgstr "Coût total"
5634
 
5635
  #: addons/gateway/event-booking/mycred-eventespresso3.php:315
5636
  #: addons/gateway/event-booking/mycred-eventespresso3.php:340
5637
  msgid "Balance After Purchase"
5638
+ msgstr "Solde après achats"
5639
 
5640
  #: addons/gateway/event-booking/mycred-eventespresso3.php:380
5641
  #, php-format
5645
  #: addons/gateway/event-booking/mycred-eventespresso3.php:389
5646
  #, php-format
5647
  msgid "Deactivate %s"
5648
+ msgstr "Désactiver %s"
5649
 
5650
  #: addons/gateway/event-booking/mycred-eventespresso3.php:402
5651
  msgid "Gateway Settings"
5653
 
5654
  #: addons/gateway/event-booking/mycred-eventespresso3.php:442
5655
  #: addons/gateway/event-booking/mycred-eventsmanager.php:580
 
5656
  #, php-format
5657
  msgid "How many %s is 1 %s worth?"
5658
  msgstr "Combien de %s vaut 1 %s ?"
5659
 
5660
  #: addons/gateway/event-booking/mycred-eventespresso3.php:463
5661
  msgid "Gateway Title"
5662
+ msgstr "Aucun service de paiement n'est installé."
5663
 
5664
  #: addons/gateway/event-booking/mycred-eventespresso3.php:465
5665
  msgid "Title to show on Payment page"
5666
+ msgstr "Titre à afficher sur la page de paiement"
5667
 
5668
  #: addons/gateway/event-booking/mycred-eventespresso3.php:468
5669
  msgid "Payment Type"
5670
+ msgstr "Type de paiement"
5671
 
5672
  #: addons/gateway/event-booking/mycred-eventespresso3.php:470
5673
  msgid "Title to show on receipts and logs"
5674
+ msgstr "Titre à afficher pour les rapports et les journaux d'activités"
5675
 
5676
  #: addons/gateway/event-booking/mycred-eventespresso3.php:475
5677
  msgid "Pay Button"
5679
 
5680
  #: addons/gateway/event-booking/mycred-eventespresso3.php:503
5681
  msgid "Important!"
5682
+ msgstr "Avertissement !"
5683
 
5684
  #: addons/gateway/event-booking/mycred-eventespresso3.php:505
5685
  msgid ""
5686
  "You can disable purchases using this gateway by adding a custom Event Meta: "
5687
  "<code>mycred_no_sale</code>"
5688
  msgstr ""
5689
+ "Vous pouvez désactiver les achats avec ce service en ajoutant ce code "
5690
+ "personnalisé: <code>mycred_no_sale</code>"
5691
 
5692
  #: addons/gateway/event-booking/mycred-eventespresso3.php:506
5693
  msgid "Users must be logged in to use this gateway!"
5695
 
5696
  #: addons/gateway/event-booking/mycred-eventespresso3.php:510
5697
  #: addons/gateway/event-booking/mycred-eventsmanager.php:625
 
5698
  #: addons/gateway/carts/mycred-wpecommerce.php:393
5699
  #: addons/gateway/carts/mycred-woocommerce.php:176
5700
  msgid "Profit Sharing"
5701
+ msgstr "Partage de bénéfice"
5702
 
5703
  #: addons/gateway/event-booking/mycred-eventespresso3.php:512
5704
  #: addons/gateway/event-booking/mycred-eventsmanager.php:628
 
5705
  #: addons/gateway/carts/mycred-wpecommerce.php:397
5706
  #: addons/gateway/carts/mycred-woocommerce.php:178
5707
  msgid "Option to share sales with the product owner. Use zero to disable."
5708
  msgstr ""
5709
+ "Option de partage des ventes avec le propriétaire du produit. Indiquez zéro "
5710
+ "pour désactiver l'option."
5711
 
5712
  #: addons/gateway/event-booking/mycred-eventespresso3.php:525
5713
  #: addons/buy-creds/modules/buycred-module-core.php:415
5714
  msgid "Templates"
5715
+ msgstr "Patrons"
5716
 
5717
  #: addons/gateway/event-booking/mycred-eventespresso3.php:528
5718
  msgid "Solvent users"
5723
  "Message to show users on the payment page before they are charged. Leave "
5724
  "empty to hide."
5725
  msgstr ""
5726
+ "Message à afficher sur la page de paiement avant que l'utilisateur ne soit "
5727
+ "débité. Laissez vide pour ne rien afficher."
5728
 
5729
  #: addons/gateway/event-booking/mycred-eventespresso3.php:533
5730
  msgid "Insolvent users"
5733
  #: addons/gateway/event-booking/mycred-eventespresso3.php:535
5734
  msgid "Message to show users who do not have enough points to pay."
5735
  msgstr ""
5736
+ "Message à afficher aux membres n'ayant pas suffisamment de points pour payer."
 
5737
 
5738
  #: addons/gateway/event-booking/mycred-eventespresso3.php:538
5739
  #: addons/gateway/carts/mycred-wpecommerce.php:411
5743
  #: addons/gateway/event-booking/mycred-eventespresso3.php:540
5744
  msgid "Message to show visitors (users not logged in) on the payment page."
5745
  msgstr ""
5746
+ "Message à afficher aux visiteurs non connectés sur la page de paiement."
5747
 
5748
  #: addons/gateway/event-booking/mycred-eventsmanager.php:30
 
5749
  msgid "Payment for tickets to %link_with_title%"
5750
  msgstr "tickets de Paiement vers %link_with_title%"
5751
 
5752
  #: addons/gateway/event-booking/mycred-eventsmanager.php:31
 
5753
  msgid "Ticket refund for %link_with_title%"
5754
  msgstr "Ticket de Remboursement vers %link_with_title%"
5755
 
5756
  #: addons/gateway/event-booking/mycred-eventsmanager.php:35
 
5757
  msgid "Pay using your %_plural% balance"
5758
  msgstr "Payez avec votre solde de %_plural%"
5759
 
5760
  #: addons/gateway/event-booking/mycred-eventsmanager.php:37
 
5761
  msgid "Pay"
5762
  msgstr "Payer"
5763
 
5764
  #: addons/gateway/event-booking/mycred-eventsmanager.php:40
 
5765
  msgid "Thank you for your payment!"
5766
  msgstr "Merci pour votre paiement !"
5767
 
5768
  #: addons/gateway/event-booking/mycred-eventsmanager.php:41
 
5769
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
5770
  msgstr ""
5771
+ "Désolé mais vous ne pouvez pas payer pour ces tickets à l'aide de %_plural%"
 
5772
 
5773
  #: addons/gateway/event-booking/mycred-eventsmanager.php:366
 
5774
  msgid "Ticket Type"
5775
+ msgstr "Type de billet"
5776
 
5777
  #: addons/gateway/event-booking/mycred-eventsmanager.php:377
 
5778
  msgid "Spaces"
5779
  msgstr "Espaces"
5780
 
5781
  #: addons/gateway/event-booking/mycred-eventsmanager.php:472
5782
  msgid "Balance After Payment"
5783
+ msgstr "Solde après paiement"
5784
 
5785
  #: addons/gateway/event-booking/mycred-eventsmanager.php:585
5786
  msgid "Click to toggle"
5787
+ msgstr "Cliquer ici pour basculer"
5788
 
5789
  #: addons/gateway/event-booking/mycred-eventsmanager.php:586
5790
  #, php-format
5792
  msgstr "%s Paiements"
5793
 
5794
  #: addons/gateway/event-booking/mycred-eventsmanager.php:596
 
5795
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
5796
  msgstr ""
5797
+ "Désactivé - les utilisateurs NE PEUVENT PAS régler de tickets avec leurs "
5798
  "%_plural%."
5799
 
5800
  #: addons/gateway/event-booking/mycred-eventsmanager.php:597
 
5801
  msgid "Single - Users can ONLY pay for tickets using %plural%."
5802
  msgstr ""
5803
  "Unique - les utilisateurs PEUVENT SEULEMENT payer des tickets avec leurs "
5804
  "%_plural%"
5805
 
5806
  #: addons/gateway/event-booking/mycred-eventsmanager.php:598
 
5807
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
5808
  msgstr ""
5809
  "Multi - les utilisateurs peuvent payer leurs tickets avec d'autres services "
5811
 
5812
  #: addons/gateway/event-booking/mycred-eventsmanager.php:618
5813
  #: addons/gateway/event-booking/mycred-eventsmanager.php:651
 
 
5814
  msgid "Refunds"
5815
  msgstr "Remboursements"
5816
 
5819
  "The percentage of the paid amount to refund if a booking gets cancelled. Use "
5820
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
5821
  msgstr ""
5822
+ "Le pourcentage du montant à rembourser en cas d'annulation de commande. "
5823
+ "Mettez zéro pour ne rien rembourser. Aucun remboursement n'est attribué aux "
5824
+ "commandes \"Rejetées\"."
5825
 
5826
  #: addons/gateway/event-booking/mycred-eventsmanager.php:644
 
5827
  msgid "Purchases"
5828
  msgstr "Achats"
5829
 
5830
  #: addons/gateway/event-booking/mycred-eventsmanager.php:661
 
5831
  msgid "Payment Link Label"
5832
+ msgstr "Intitulé du lien de paiement"
5833
 
5834
  #: addons/gateway/event-booking/mycred-eventsmanager.php:664
 
5835
  msgid ""
5836
  "The payment link shows / hides the payment form under \"My Bookings\". No "
5837
  "HTML allowed."
5840
  "commandes\". HTML interdit."
5841
 
5842
  #: addons/gateway/event-booking/mycred-eventsmanager.php:668
 
5843
  msgid "Payment Header"
5844
+ msgstr "En-tête de la page de paiement"
5845
 
5846
  #: addons/gateway/event-booking/mycred-eventsmanager.php:671
 
5847
  msgid "Shown on top of the payment form. No HTML allowed."
5848
+ msgstr "Sera affiché au-dessus du formulaire de paiement. HTML interdit."
5849
 
5850
  #: addons/gateway/event-booking/mycred-eventsmanager.php:678
 
5851
  msgid "The button label for payments. No HTML allowed!"
5852
+ msgstr "Intitulé du bouton de paiement. HTML interdit !"
5853
 
5854
  #: addons/gateway/event-booking/mycred-eventsmanager.php:682
 
5855
  #: addons/gateway/carts/mycred-wpecommerce.php:404
5856
  msgid "Messages"
5857
  msgstr "Messages"
5858
 
5859
  #: addons/gateway/event-booking/mycred-eventsmanager.php:685
 
5860
  msgid "Successful Payments"
5861
+ msgstr "Paiements réussis"
5862
 
5863
  #: addons/gateway/event-booking/mycred-eventsmanager.php:688
5864
  #: addons/gateway/event-booking/mycred-eventsmanager.php:695
 
 
5865
  msgid "No HTML allowed!"
5866
+ msgstr "Le HTML n'est pas autorisé !"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5867
 
5868
  #: addons/gateway/carts/mycred-wpecommerce.php:20
5869
  msgid "Payment for Order: #%order_id%"
5875
 
5876
  #: addons/gateway/carts/mycred-wpecommerce.php:25
5877
  msgid "You must be logged in to use this gateway"
5878
+ msgstr "Vous devez vous connecter pour utiliser ce système de paiement"
5879
 
5880
  #: addons/gateway/carts/mycred-wpecommerce.php:26
5881
  msgid "Insufficient Funds."
5883
 
5884
  #: addons/gateway/carts/mycred-wpecommerce.php:27
5885
  msgid "Deduct the amount from your balance."
5886
+ msgstr "Déduire le montant de votre solde."
5887
 
5888
  #: addons/gateway/carts/mycred-wpecommerce.php:107
5889
  #: addons/buy-creds/gateways/bank-transfer.php:139
5890
  msgid "Item"
5891
+ msgstr "Intitulé"
5892
 
5893
  #: addons/gateway/carts/mycred-wpecommerce.php:128
5894
  #: addons/gateway/carts/mycred-woocommerce.php:808
5897
 
5898
  #: addons/gateway/carts/mycred-wpecommerce.php:202
5899
  msgid "You can not use this gateway."
5900
+ msgstr "Vous ne pouvez pas utiliser ce système de paiement."
5901
 
5902
  #: addons/gateway/carts/mycred-wpecommerce.php:373
5903
  msgid "Log Template for Payments"
5905
 
5906
  #: addons/gateway/carts/mycred-wpecommerce.php:407
5907
  msgid "Instructions"
5908
+ msgstr "Des instructions"
5909
 
5910
  #: addons/gateway/carts/mycred-wpecommerce.php:408
5911
  msgid ""
5912
  "Optional instructions to show users when selecting this gateway. Leave empty "
5913
  "to hide."
5914
  msgstr ""
5915
+ "Informations additionnelles à afficher quand l'utilisateur sélectionne ce "
5916
+ "système de paiement. Laissez vide pour ne rien afficher."
5917
 
5918
  #: addons/gateway/carts/mycred-wpecommerce.php:412
5919
  msgid "Message to show visitors who are not logged in."
5920
+ msgstr "Message à afficher lorsque l'utilisateur n'est pas connecté."
5921
 
5922
  #: addons/gateway/carts/mycred-wpecommerce.php:416
5923
  msgid ""
5924
  "Message to show when users does not have enough %plural% to pay using this "
5925
  "gateway."
5926
  msgstr ""
5927
+ "Message à afficher lorsque l'utilisateur n'a pas suffisamment de %plural% "
5928
+ "pour payer avec ce système de paiement."
5929
 
5930
  #: addons/gateway/carts/mycred-woocommerce.php:89
5931
  msgid "Enable/Disable"
5932
+ msgstr "Activer/Désactiver"
5933
 
5934
  #: addons/gateway/carts/mycred-woocommerce.php:91
5935
  msgid "Enable myCRED Payment"
5940
  "Users who are not logged in or excluded from using myCRED will not have "
5941
  "access to this gateway!"
5942
  msgstr ""
5943
+ "Les utilisateurs qui ne sont pas connectés ou qui sont exclus de myCRED "
5944
+ "n'auront pas accès à ce service de paiement !"
5945
 
5946
  #: addons/gateway/carts/mycred-woocommerce.php:98
5947
  msgid "Title to show for this payment option."
5948
+ msgstr "Titre à afficher pour cette option de paiement"
5949
 
5950
  #: addons/gateway/carts/mycred-woocommerce.php:99
5951
  msgid "Pay with myCRED"
5963
  #: addons/gateway/carts/mycred-woocommerce.php:127
5964
  msgid "Select the point type users can use to pay."
5965
  msgstr ""
5966
+ "Sélectionnez le type de point avec lequel les utilisateurs pourront régler"
5967
 
5968
  #: addons/gateway/carts/mycred-woocommerce.php:132
5969
  msgid "How much is 1 %_singular% worth in %currency%?"
5983
 
5984
  #: addons/gateway/carts/mycred-woocommerce.php:149
5985
  msgid "Show on Checkout Page"
5986
+ msgstr "Afficher sur la page de contrôle d'achats"
5987
 
5988
  #: addons/gateway/carts/mycred-woocommerce.php:150
5989
  msgid "Show in Cart and on Checkout Page"
5990
+ msgstr "Afficher avec le panier et sur la page de contrôle"
5991
 
5992
  #: addons/gateway/carts/mycred-woocommerce.php:157
5993
  msgid "Order Total in %_plural%"
5995
 
5996
  #: addons/gateway/carts/mycred-woocommerce.php:185
5997
  msgid "Log entry template for profit sharing."
5998
+ msgstr "Template de connexion pour les bénéfices partagés"
5999
 
6000
  #: addons/gateway/carts/mycred-woocommerce.php:191
6001
  msgid "Log entry template for refunds of profit shares."
6002
  msgstr ""
6003
+ "Connecter le Template entré pour les remboursements des parts bénéficiaires."
 
6004
 
6005
  #: addons/gateway/carts/mycred-woocommerce.php:294
6006
  msgid "You must be logged in to pay with %_plural%"
6007
+ msgstr "Vous devez être connecté pour payer avec %_plural%"
6008
 
6009
  #: addons/gateway/carts/mycred-woocommerce.php:302
6010
  msgid "You can not use this gateway. Please try a different payment option."
6011
  msgstr ""
6012
  "Vous ne pouvez pas utiliser ce service. Veuillez essayer une autre option de "
6013
+ "règlement."
6014
 
6015
  #: addons/gateway/carts/mycred-woocommerce.php:319
6016
+ #: addons/sell-content/includes/mycred-sell-functions.php:534
6017
  msgid "Insufficient funds."
6018
  msgstr "Fonds insuffisant."
6019
 
6020
  #: addons/gateway/carts/mycred-woocommerce.php:472
6021
  msgid "Your account has successfully been charged."
6022
+ msgstr "Votre compte a été débité avec succès."
6023
 
6024
  #: addons/transfer/includes/mycred-transfer-widgets.php:19
6025
  #, php-format
6032
 
6033
  #: addons/transfer/includes/mycred-transfer-widgets.php:95
6034
  msgid "Show users balance"
6035
+ msgstr "Afficher le relevé de l'utilisateur"
6036
 
6037
  #: addons/transfer/includes/mycred-transfer-widgets.php:98
6038
  msgid "Show users limit"
6044
 
6045
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:160
6046
  msgid "email"
6047
+ msgstr "e-mail"
6048
 
6049
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:162
6050
  #, php-format
6054
  #: addons/ranks/includes/mycred-rank-shortcodes.php:128
6055
  #: addons/ranks/includes/mycred-rank-shortcodes.php:211
6056
  msgid "No users found with this rank"
6057
+ msgstr "Aucun utilisateur avec ce classement n'a été trouvé."
6058
 
6059
  #: addons/ranks/includes/mycred-rank-shortcodes.php:135
6060
  msgid "Rank ID is required!"
6066
 
6067
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:204
6068
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
6069
+ #: addons/buy-creds/modules/buycred-module-pending.php:297
6070
+ #: addons/buy-creds/modules/buycred-module-pending.php:648
6071
+ #: addons/buy-creds/modules/buycred-module-pending.php:761
6072
  #: addons/buy-creds/gateways/bank-transfer.php:141
6073
  msgid "Cost"
6074
  msgstr "Prix"
6075
 
6076
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:248
6077
  msgid "Never"
6078
+ msgstr "Aucune"
6079
 
6080
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:163
6081
  msgid "Select currency"
6091
  msgid "Payment"
6092
  msgstr "Paiement"
6093
 
6094
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:576
6095
+ msgid "First Name"
6096
+ msgstr "Nom"
6097
+
6098
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
6099
+ msgid "Last Name"
6100
+ msgstr "Prénom"
6101
+
6102
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:590
6103
+ msgid "Address Line 1"
6104
+ msgstr "Adresse 1"
6105
+
6106
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:598
6107
+ msgid "Address Line 2"
6108
+ msgstr "Adresse 2"
6109
+
6110
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:606
6111
+ msgid "City"
6112
+ msgstr "Ville"
6113
+
6114
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:612
6115
+ msgid "Zip"
6116
+ msgstr "Code Postal"
6117
+
6118
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
6119
+ msgid "State"
6120
+ msgstr "Province"
6121
+
6122
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:628
6123
+ msgid "Country"
6124
+ msgstr "Pays"
6125
+
6126
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:633
6127
+ msgid "Choose Country"
6128
+ msgstr "Sélectionnez un pays"
6129
+
6130
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:685
6131
  #: addons/buy-creds/gateways/bank-transfer.php:147
6132
  #, php-format
6141
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:787
6142
  #: addons/buy-creds/gateways/bitpay.php:225
6143
  msgid "Click here if you are not automatically redirected"
6144
+ msgstr "Cliquez ici si vous n'êtes pas automatiquement redirigé"
6145
 
6146
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1501
6147
  msgid "January"
6148
+ msgstr "janvier"
6149
 
6150
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1502
6151
  msgid "February"
6152
+ msgstr "février"
6153
 
6154
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1503
6155
  msgid "March"
6156
+ msgstr "mars"
6157
 
6158
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1504
6159
  msgid "April"
6160
+ msgstr "Avr."
6161
 
6162
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1505
6163
  msgid "May"
6164
+ msgstr "May"
6165
 
6166
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1506
6167
  msgid "June"
6168
+ msgstr "juin"
6169
 
6170
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1507
6171
  msgid "July"
6172
+ msgstr "Juil"
6173
 
6174
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1508
6175
  msgid "August"
6176
+ msgstr "Aout"
6177
 
6178
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1509
6179
  msgid "September"
6180
+ msgstr "Sep."
6181
 
6182
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1510
6183
  msgid "October"
6184
+ msgstr "octobre"
6185
 
6186
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1511
6187
  msgid "November"
6188
+ msgstr "novembre"
6189
 
6190
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1512
6191
  msgid "December"
6192
+ msgstr "Decembre"
6193
 
6194
+ #: addons/buy-creds/modules/buycred-module-pending.php:140
6195
  msgctxt "Post Type General Name"
6196
  msgid "Pending Payments"
6197
  msgstr "Paiements en attente"
6198
 
6199
+ #: addons/buy-creds/modules/buycred-module-pending.php:141
6200
  msgctxt "Post Type Singular Name"
6201
  msgid "Pending Payment"
6202
  msgstr "En attente de paiement"
6203
 
 
6204
  #: addons/buy-creds/modules/buycred-module-pending.php:142
6205
+ #: addons/buy-creds/modules/buycred-module-pending.php:144
6206
+ #: addons/buy-creds/modules/buycred-module-pending.php:234
6207
+ #: addons/buy-creds/modules/buycred-module-pending.php:235
6208
  msgid "Pending Payments"
6209
  msgstr "Paiements en attente"
6210
 
6211
+ #: addons/buy-creds/modules/buycred-module-pending.php:148
6212
  msgid "Edit Pending Payment"
6213
  msgstr ""
6214
  "Modifier\n"
6215
  " \n"
6216
  "les attentes de paiement"
6217
 
6218
+ #: addons/buy-creds/modules/buycred-module-pending.php:151
6219
+ #: addons/buy-creds/modules/buycred-module-pending.php:152
6220
  msgid "Not found in Trash"
6221
+ msgstr "Pas trouvé dans la corbeille"
6222
 
6223
+ #: addons/buy-creds/modules/buycred-module-pending.php:293
6224
+ #: addons/buy-creds/modules/buycred-module-pending.php:758
6225
  #: addons/buy-creds/modules/buycred-module-core.php:771
6226
  #: addons/buy-creds/gateways/bank-transfer.php:142
6227
  msgid "Transaction ID"
6228
+ msgstr "ID de transaction"
6229
 
6230
+ #: addons/buy-creds/modules/buycred-module-pending.php:295
6231
  #: addons/buy-creds/modules/buycred-module-core.php:767
6232
  msgid "Buyer"
6233
  msgstr "Acheteur"
6234
 
6235
+ #: addons/buy-creds/modules/buycred-module-pending.php:298
6236
+ #: addons/buy-creds/modules/buycred-module-pending.php:623
6237
+ #: addons/buy-creds/modules/buycred-module-pending.php:759
6238
  #: addons/buy-creds/modules/buycred-module-core.php:766
6239
  #: addons/buy-creds/includes/buycred-functions.php:119
6240
  msgid "Gateway"
6241
  msgstr "Service"
6242
 
6243
+ #: addons/buy-creds/modules/buycred-module-pending.php:299
6244
  msgid "Type"
6245
  msgstr "Type"
6246
 
6247
+ #: addons/buy-creds/modules/buycred-module-pending.php:396
6248
+ #: addons/buy-creds/modules/buycred-module-pending.php:505
6249
  msgid "Pay Out"
6250
  msgstr "Versement"
6251
 
6252
+ #: addons/buy-creds/modules/buycred-module-pending.php:500
6253
  msgid "Save"
6254
+ msgstr "Enregister"
6255
 
6256
+ #: addons/buy-creds/modules/buycred-module-pending.php:654
6257
  #: addons/buy-creds/gateways/bank-transfer.php:209
6258
  #: addons/buy-creds/gateways/bitpay.php:251
6259
  #: addons/buy-creds/gateways/paypal-standard.php:279
6261
  msgid "Currency"
6262
  msgstr "Devise"
6263
 
6264
+ #: addons/buy-creds/modules/buycred-module-pending.php:825
6265
  msgid "No pending payments found"
6266
+ msgstr "Pas d'attente de paiements trouvés"
6267
 
6268
  #: addons/buy-creds/modules/buycred-module-core.php:28
6269
  #: addons/buy-creds/modules/buycred-module-core.php:29
6273
 
6274
  #: addons/buy-creds/modules/buycred-module-core.php:301
6275
  msgid "Please login to purchase %_plural%"
6276
+ msgstr "Veuillez vous connecter pour acquérir des %_plural%"
6277
 
6278
  #: addons/buy-creds/modules/buycred-module-core.php:316
6279
  msgid "Gift purchase from %display_name%."
6283
  msgid ""
6284
  "Select the point types that users can buy. You must select at least one!"
6285
  msgstr ""
6286
+ "Sélectionner les types de point que les utilisateurs peuvent acheter. Vous "
6287
+ "devez en sélectionner au moins une!"
6288
 
6289
  #: addons/buy-creds/modules/buycred-module-core.php:355
6290
  msgid "Show seperate log for %_plural% purchases."
6291
+ msgstr "Afficher des journaux séparés pour l'achat de %_plural%"
6292
 
6293
  #: addons/buy-creds/modules/buycred-module-core.php:433
6294
  msgid "Gifting"
6296
 
6297
  #: addons/buy-creds/modules/buycred-module-core.php:438
6298
  msgid "Allow users to buy %_plural% for other users."
6299
+ msgstr "Autoriser les membres à acquérir des %_plural% pour d'autres membres"
6300
 
6301
  #: addons/buy-creds/modules/buycred-module-core.php:445
6302
  msgid "Allow users to buy %_plural% for content authors."
6303
  msgstr ""
6304
+ "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
6305
 
6306
  #: addons/buy-creds/modules/buycred-module-core.php:547
6307
  msgid "buyCRED Purchase Log"
6319
 
6320
  #: addons/buy-creds/modules/buycred-module-core.php:627
6321
  msgid "Sandbox Mode"
6322
+ msgstr "Mode bac à sable"
6323
 
6324
  #: addons/buy-creds/modules/buycred-module-core.php:630
6325
  msgid "Enable for test purchases."
6327
 
6328
  #: addons/buy-creds/modules/buycred-module-core.php:650
6329
  msgid "More Gateways"
6330
+ msgstr "Plus d'entrés"
6331
 
6332
  #: addons/buy-creds/modules/buycred-module-core.php:770
6333
  msgid "Payed"
6334
+ msgstr "Payé"
6335
 
6336
  #: addons/buy-creds/modules/buycred-module-core.php:982
6337
  msgid "No purchases found"
6338
+ msgstr "Aucun achat trouvé"
6339
 
6340
  #: addons/buy-creds/modules/buycred-module-core.php:1369
6341
  msgid "Buy Now"
6342
+ msgstr "Achetez maintenant"
6343
 
6344
  #: addons/buy-creds/gateways/bank-transfer.php:88
6345
  #: addons/buy-creds/gateways/bitpay.php:163
6349
  #: addons/buy-creds/gateways/skrill.php:186
6350
  msgid "Please setup this gateway before attempting to make a purchase!"
6351
  msgstr ""
6352
+ "Veuillez d'abord paramètrer ce service de paiement avant d'essayer de "
6353
  "finaliser un achat !"
6354
 
6355
  #: addons/buy-creds/gateways/bank-transfer.php:215
6366
  #: addons/buy-creds/gateways/skrill.php:124
6367
  #, php-format
6368
  msgid "Price mismatch. Expected: %s Received: %s"
6369
+ msgstr "Prix décallé. Excepté: %s reçu: %s"
6370
 
6371
  #: addons/buy-creds/gateways/bitpay.php:68
6372
  #: addons/buy-creds/gateways/paypal-standard.php:151
6373
  #: addons/buy-creds/gateways/skrill.php:130
6374
  #, php-format
6375
  msgid "Currency mismatch. Expected: %s Received: %s"
6376
+ msgstr "Mauvais alignement de monnaies. Excepté: %s Reçut: %s"
6377
 
6378
  #: addons/buy-creds/gateways/bitpay.php:74
6379
  #: addons/buy-creds/gateways/netbilling.php:98
6381
  #: addons/buy-creds/gateways/skrill.php:136
6382
  #, php-format
6383
  msgid "Payment not completed. Received: %s"
6384
+ msgstr "Paiement non complet. Reçu: %s"
6385
 
6386
  #: addons/buy-creds/gateways/bitpay.php:85
6387
  #: addons/buy-creds/gateways/netbilling.php:109
6389
  #: addons/buy-creds/gateways/paypal-standard.php:168
6390
  #: addons/buy-creds/gateways/skrill.php:147
6391
  msgid "Failed to credit users account."
6392
+ msgstr "Echec de créditions aux comptes des utilisateurs."
6393
 
6394
  #: addons/buy-creds/gateways/bitpay.php:208
6395
  #: addons/buy-creds/gateways/bitpay.php:219
6398
  #: addons/buy-creds/gateways/paypal-standard.php:261
6399
  #: addons/buy-creds/gateways/skrill.php:275
6400
  msgid "Processing payment &hellip;"
6401
+ msgstr "Procédure de paiement en cours &hellip;"
6402
 
6403
  #: addons/buy-creds/gateways/bitpay.php:211
6404
  msgid ""
6405
  "Could not create a BitPay Invoice. Please contact the site administrator!"
6406
  msgstr ""
6407
+ "Impossible de créer une facture BitPay. Veuillez contacter l'administrateur "
6408
  "du site."
6409
 
6410
  #: addons/buy-creds/gateways/bitpay.php:212
6435
 
6436
  #: addons/buy-creds/gateways/bitpay.php:276
6437
  msgid "High"
6438
+ msgstr "Élevé"
6439
 
6440
  #: addons/buy-creds/gateways/bitpay.php:277
6441
  msgid "Medium"
6442
+ msgstr "Moyen"
6443
 
6444
  #: addons/buy-creds/gateways/bitpay.php:278
6445
  msgid "Low"
6446
+ msgstr "Faible"
6447
 
6448
  #: addons/buy-creds/gateways/bitpay.php:291
6449
  msgid "Full Notifications"
6451
 
6452
  #: addons/buy-creds/gateways/netbilling.php:208
6453
  msgid "Account ID"
6454
+ msgstr "ID de votre compte"
6455
 
6456
  #: addons/buy-creds/gateways/netbilling.php:214
6457
  msgid "Site Tag"
6458
+ msgstr "Mot-clé du site"
6459
 
6460
  #: addons/buy-creds/gateways/netbilling.php:220
6461
  msgid "Order Integrity Key"
6462
+ msgstr "Commandez une clé de sécurité"
6463
 
6464
  #: addons/buy-creds/gateways/netbilling.php:224
6465
  msgid "Found under Step 12 on the Fraud Defense page."
6466
+ msgstr "Trouvé à l'étape 12 de la page Défense contre la Fraude"
6467
 
6468
  #: addons/buy-creds/gateways/netbilling.php:238
6469
  msgid "Postback CGI URL"
6475
  "your site. Under \"Default payment form settings\" make sure the Postback "
6476
  "CGI URL is set to the above address and \"Return method\" is set to POST."
6477
  msgstr ""
6478
+ "Vous que ce service fonctionne, vous devez vous connecter à votre compte "
6479
+ "Netbilling et modifier les paramètres de votre site. A la rubrique \"Default "
6480
+ "payment form settings\", indiquez l'URL ci-dessous dans la case Postback CGI "
6481
+ "URL et assurez-vous que la case \"Return method\" est bien sur POST."
 
6482
 
6483
  #: addons/buy-creds/gateways/netbilling.php:290
6484
  msgid "Incorrect Credit Card number"
6485
+ msgstr "Le numéro de la carte de crédit est incorrect"
6486
 
6487
  #: addons/buy-creds/gateways/netbilling.php:296
6488
  msgid "The credit card entered is past its expiration date."
6489
+ msgstr "Votre carte de crédit est expirée"
6490
 
6491
  #: addons/buy-creds/gateways/netbilling.php:299
6492
  msgid "The CVV2 number entered is not valid."
6493
+ msgstr "Le cryptogramme que vous avez indiqué n'est pas valide."
6494
 
6495
  #: addons/buy-creds/gateways/netbilling.php:306
6496
  msgid "The bank routing number entered is not valid."
6497
+ msgstr "Le numéro de routage de la banque n'est pas valide."
6498
 
6499
  #: addons/buy-creds/gateways/netbilling.php:310
6500
  msgid "The bank account number entered is not valid."
6501
+ msgstr "Le numéro de compte bancaire n'est pas valide"
6502
 
6503
  #: addons/buy-creds/gateways/zombaio.php:204
6504
  #, php-format
6505
  msgid "Duplicate transaction. Received: %s"
6506
+ msgstr "Dupliquer les transactions. Reçu: %s"
6507
 
6508
  #: addons/buy-creds/gateways/zombaio.php:210
6509
  #, php-format
6519
  " \n"
6520
  "est\n"
6521
  " \n"
6522
+ "activé!\n"
6523
  " \n"
6524
+ "Reçu\n"
6525
  ":\n"
6526
  "% s"
6527
 
6544
 
6545
  #: addons/buy-creds/gateways/zombaio.php:339
6546
  msgid "IP Verification"
6547
+ msgstr "ID de vérification"
6548
 
6549
  #: addons/buy-creds/gateways/zombaio.php:342
6550
  msgid "Do not verify that callbacks are coming from Zombaio."
6551
+ msgstr "Ne pas vérifier que les rappels proviennent de Zombaio."
6552
 
6553
  #: addons/buy-creds/gateways/zombaio.php:345
6554
  msgid "Language"
6563
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
6564
  "address and click validate."
6565
  msgstr ""
6566
+ "Pour faire fonctionner ce service, veuillez d'abord vous connecter à ZOA et "
6567
  "indiquez l'adresse ci-dessus comme URL de retour avant de valider."
6568
 
6569
  #: addons/buy-creds/gateways/paypal-standard.php:192
6570
  #: addons/buy-creds/gateways/skrill.php:171
6571
  msgid "Success"
6572
+ msgstr "Succès !"
6573
 
6574
  #: addons/buy-creds/gateways/paypal-standard.php:193
6575
  #: addons/buy-creds/gateways/skrill.php:172
6590
 
6591
  #: addons/buy-creds/gateways/skrill.php:267
6592
  msgid "Gift to:"
6593
+ msgstr "Cadeau à "
6594
 
6595
  #: addons/buy-creds/gateways/skrill.php:268
6596
  msgid "(author)"
6606
 
6607
  #: addons/buy-creds/gateways/skrill.php:324
6608
  msgid "Confirmation Email"
6609
+ msgstr "Confirmation Email"
6610
 
6611
  #: addons/buy-creds/gateways/skrill.php:327
6612
  msgid ""
6613
  "Ask Skrill to send me a confirmation email for each successful purchase."
6614
  msgstr ""
6615
+ "Demander à Skrill d'envoyer un mail de confirmation après chaque acquisition "
6616
+ "réussie."
6617
 
6618
  #: addons/buy-creds/gateways/skrill.php:330
6619
  msgid "Checkout Page"
6620
+ msgstr "Page de contrôle"
6621
 
6622
  #: addons/buy-creds/gateways/skrill.php:335
6623
  msgid ""
6624
  "If left empty, your account email is used as title on the Skill Payment Page."
6625
  msgstr ""
6626
+ "Si vous laissez vide, c'est votre mail de compte qui sera utilisé comme "
6627
  "titre de la page de paiement de Skrill"
6628
 
6629
  #: addons/buy-creds/gateways/skrill.php:340
6632
  "integration results we recommend you use logos with dimensions up to 200px "
6633
  "in width and 50px in height."
6634
  msgstr ""
6635
+ "L'url vers l'image à afficher sur l'interface du service de paiement. Pour "
6636
+ "une intégration optimale, nous vous recommandons d'utiliser un logo de 200 "
6637
  "par 50 pixels."
6638
 
6639
  #: addons/buy-creds/gateways/skrill.php:343
6646
  "completed. This text is shown by Skrill."
6647
  msgstr ""
6648
  "Texte additionnel en option qui s'affichera une fois une transaction "
6649
+ "complétée avec succès. Ce texte est affiché par Skrill."
lang/mycred-ja_JP.mo CHANGED
Binary file
lang/mycred-ja_JP.po CHANGED
@@ -1,31 +1,21 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: myCRED\n"
4
- "Report-Msgid-Bugs-To: http://mycred.me\n"
5
- "POT-Creation-Date: 2017-04-19 14:58+0000\n"
6
- "PO-Revision-Date: 2017-04-19 14:58+0000\n"
7
- "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
- "Language-Team: Japanese (Japan)\n"
9
- "Language: ja-JP\n"
10
- "Plural-Forms: nplurals=1; plural=0\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
- "X-Poedit-Basepath: .\n"
17
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
- "X-Loco-Target-Locale: ja_JP\n"
23
- "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
24
- "content/plugins/mycred\n"
25
- "X-Poedit-SearchPath-1: ."
26
-
27
- #: mycred.php:578
28
- msgid "Import balances via a CSV file."
29
  msgstr ""
30
 
31
  #: modules/mycred-module-management.php:184
@@ -40,16 +30,6 @@ msgstr ""
40
  msgid "No recent activity found."
41
  msgstr ""
42
 
43
- #: modules/mycred-module-management.php:237
44
- #: modules/mycred-module-management.php:775 modules/mycred-module-log.php:93
45
- #: modules/mycred-module-log.php:918
46
- #: includes/classes/class.query-export.php:263
47
- #: includes/classes/class.query-export.php:360
48
- #: includes/classes/class.query-log.php:904
49
- #: addons/transfer/includes/mycred-transfer-widgets.php:109
50
- msgid "Reference"
51
- msgstr ""
52
-
53
  #: modules/mycred-module-management.php:280
54
  msgid "View complete history"
55
  msgstr ""
@@ -58,12 +38,6 @@ msgstr ""
58
  msgid "Balances"
59
  msgstr ""
60
 
61
- #: modules/mycred-module-management.php:747
62
- #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
63
- #: addons/buy-creds/modules/buycred-module-core.php:1374
64
- msgid "Username"
65
- msgstr ""
66
-
67
  #: modules/mycred-module-management.php:759
68
  msgid "Total Balance"
69
  msgstr ""
@@ -76,69 +50,8 @@ msgstr ""
76
  msgid "lowercase without empty spaces"
77
  msgstr ""
78
 
79
- #: modules/mycred-module-management.php:804
80
- msgid "Update"
81
- msgstr ""
82
-
83
- #: modules/mycred-module-management.php:807
84
- msgid "Recent Activity"
85
- msgstr ""
86
-
87
- #: modules/mycred-module-settings.php:432
88
- msgid ""
89
- "In order to adjust the number of decimal places you want to use we must "
90
- "update your log. It is highly recommended that you backup your current log "
91
- "before continuing!"
92
- msgstr ""
93
-
94
- #: modules/mycred-module-settings.php:457
95
- msgid "Update Database"
96
- msgstr ""
97
-
98
- #: modules/mycred-module-settings.php:530 modules/mycred-module-addons.php:330
99
- #: modules/mycred-module-addons.php:368 modules/mycred-module-log.php:554
100
- #: modules/mycred-module-network.php:241 modules/mycred-module-network.php:276
101
- #: modules/mycred-module-network.php:292
102
- #: includes/importers/mycred-cubepoints.php:305
103
- #: includes/importers/mycred-balances.php:245
104
- #: includes/importers/mycred-log-entries.php:239
105
- msgid "Documentation"
106
- msgstr ""
107
-
108
- #: modules/mycred-module-settings.php:548 includes/mycred-setup.php:279
109
- msgid "Singular"
110
- msgstr ""
111
-
112
- #: modules/mycred-module-settings.php:549
113
- #: modules/mycred-module-settings.php:555
114
- #: modules/mycred-module-settings.php:605
115
- #: modules/mycred-module-settings.php:612
116
- #: modules/mycred-module-settings.php:799
117
- #: modules/mycred-module-settings.php:805 includes/mycred-setup.php:280
118
- #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
119
- #: includes/mycred-setup.php:340 addons/coupons/myCRED-addon-coupons.php:710
120
- #: addons/coupons/myCRED-addon-coupons.php:717
121
- #: addons/coupons/myCRED-addon-coupons.php:726
122
- #: addons/coupons/myCRED-addon-coupons.php:733
123
- #: addons/coupons/myCRED-addon-coupons.php:742
124
- #: addons/coupons/myCRED-addon-coupons.php:749
125
- #: addons/coupons/myCRED-addon-coupons.php:758
126
- #: addons/coupons/myCRED-addon-coupons.php:765
127
- #: addons/sell-content/myCRED-addon-sell-content.php:674
128
- #: addons/sell-content/myCRED-addon-sell-content.php:690
129
- #: addons/sell-content/myCRED-addon-sell-content.php:697
130
- #: addons/sell-content/myCRED-addon-sell-content.php:720
131
- #: addons/banking/services/mycred-service-central.php:111
132
- #: addons/banking/services/mycred-service-interest.php:482
133
- #: addons/banking/services/mycred-service-interest.php:500
134
- #: addons/buy-creds/modules/buycred-module-core.php:346
135
- #: addons/buy-creds/modules/buycred-module-core.php:427
136
- #: addons/buy-creds/modules/buycred-module-core.php:454
137
- msgid "Required"
138
- msgstr ""
139
-
140
- #: modules/mycred-module-settings.php:554 includes/mycred-setup.php:285
141
- msgid "Plural"
142
  msgstr ""
143
 
144
  #: modules/mycred-module-settings.php:559 includes/mycred-setup.php:290
@@ -179,10 +92,6 @@ msgstr ""
179
  msgid "Exclude by User ID"
180
  msgstr ""
181
 
182
- #: modules/mycred-module-settings.php:627 includes/mycred-setup.php:354
183
- msgid "Optional"
184
- msgstr ""
185
-
186
  #: modules/mycred-module-settings.php:628 includes/mycred-setup.php:355
187
  msgid "Comma separated list of user IDs to exclude from using this point type."
188
  msgstr ""
@@ -195,28 +104,32 @@ msgstr ""
195
  msgid "Exclude point administrators"
196
  msgstr ""
197
 
198
- #: modules/mycred-module-settings.php:645
199
- msgid "Other Settings"
200
- msgstr ""
201
-
202
  #: modules/mycred-module-settings.php:697
203
  msgid "Balance Meta Key"
204
  msgstr ""
205
 
206
- #: modules/mycred-module-settings.php:847
 
 
 
 
207
  msgid ""
208
- "Use ID if you intend to use this export as a backup of your current site "
209
- "while Email is recommended if you want to export to a different site."
 
210
  msgstr ""
211
 
212
- #: modules/mycred-module-settings.php:850
213
- msgid "Import Log Entry"
 
 
 
214
  msgstr ""
215
 
216
- #: modules/mycred-module-addons.php:275
217
  msgid ""
218
- "Gives you access to your myCRED Statistics based on your users gains and "
219
- "loses."
220
  msgstr ""
221
 
222
  #: modules/mycred-module-log.php:215
@@ -242,193 +155,72 @@ msgid_plural "%d Entries Deleted"
242
  msgstr[0] ""
243
  msgstr[1] ""
244
 
245
- #: modules/mycred-module-log.php:472
246
  msgid "The log entry was successfully updated."
247
  msgstr ""
248
 
249
- #: modules/mycred-module-log.php:473
250
  msgid "The selected log entry could not be deleted."
251
  msgstr ""
252
 
253
- #: modules/mycred-module-log.php:507
254
  #, php-format
255
  msgctxt "e.g. Log entries from April 12th 2016"
256
  msgid "Log entries from %s"
257
  msgstr ""
258
 
259
- #: modules/mycred-module-log.php:925
260
  msgid "Original Entry"
261
  msgstr ""
262
 
263
- #: modules/mycred-module-log.php:937
264
  msgid "Delete Entry"
265
  msgstr ""
266
 
267
- #: modules/mycred-module-log.php:942
268
  msgid "Update Entry"
269
  msgstr ""
270
 
271
- #: modules/mycred-module-network.php:141
272
- msgid "Blocked"
273
- msgstr ""
274
-
275
- #: modules/mycred-module-network.php:149
276
- msgid "Installed"
277
- msgstr ""
278
-
279
- #: modules/mycred-module-network.php:151
280
- msgid "Not Installed"
281
- msgstr ""
282
-
283
  #: modules/mycred-module-network.php:247
284
  msgid "I am sorry but your network is too big to use these features."
285
  msgstr ""
286
 
287
- #: modules/mycred-module-network.php:312
288
- msgid "Blog IDs"
289
- msgstr ""
290
-
291
- #: modules/mycred-module-export.php:358
292
  msgid "Make both format options available."
293
  msgstr ""
294
 
295
- #: modules/mycred-module-export.php:360
296
- msgid "Exports"
297
- msgstr ""
298
-
299
- #: modules/mycred-module-export.php:366
300
- msgid "Front End Exports"
301
- msgstr ""
302
-
303
- #: modules/mycred-module-export.php:382 modules/mycred-module-export.php:430
304
- msgid "Export Format"
305
- msgstr ""
306
-
307
- #: modules/mycred-module-export.php:398 modules/mycred-module-export.php:446
308
- msgid "File Name"
309
- msgstr ""
310
-
311
- #: modules/mycred-module-export.php:407
312
  msgid ""
313
  "If enabled, users will only be able to export their own log entries! Export "
314
  "tools becomes available wherever you are using the mycred_history shortcode "
315
  "or in the users profile."
316
  msgstr ""
317
 
318
- #: modules/mycred-module-export.php:414
319
- msgid "Back End Exports"
320
- msgstr ""
321
-
322
- #: modules/mycred-module-export.php:455
323
  msgid ""
324
  "Raw format should be used when you intend to use the export tool to backup "
325
  "or import entries in another installation. Formatted exports reflect what "
326
  "users see in their history archive."
327
  msgstr ""
328
 
329
- #: modules/mycred-module-buddypress.php:352
330
- msgid "Show:"
331
- msgstr ""
332
-
333
- #: modules/mycred-module-buddypress.php:447
334
- msgid "Members and visitors can view other members %_singular% balance."
335
- msgstr ""
336
-
337
  #: modules/mycred-module-buddypress.php:508
338
  msgid "The history page slug. Must be URL friendly."
339
  msgstr ""
340
 
341
- #: plugins/mycred-hook-invite-anyone.php:205
342
- msgid "Sending Invites"
343
- msgstr ""
344
-
345
- #: plugins/mycred-hook-invite-anyone.php:222
346
- #: plugins/mycred-hook-invite-anyone.php:246
347
- #: plugins/mycred-hook-wp-polls.php:178
348
- #: plugins/mycred-hook-wp-postratings.php:208
349
- #: plugins/mycred-hook-wp-postratings.php:215
350
- #: plugins/mycred-hook-gravityforms.php:173
351
- #: plugins/mycred-hook-simplepress.php:308
352
- #: plugins/mycred-hook-simplepress.php:326
353
- #: plugins/mycred-hook-simplepress.php:350
354
- #: plugins/mycred-hook-simplepress.php:377
355
- #: plugins/mycred-hook-buddypress.php:630
356
- #: plugins/mycred-hook-buddypress.php:654
357
- #: plugins/mycred-hook-buddypress.php:678
358
- #: plugins/mycred-hook-buddypress.php:702
359
- #: plugins/mycred-hook-buddypress.php:726
360
- #: plugins/mycred-hook-buddypress.php:753
361
- #: plugins/mycred-hook-buddypress.php:777
362
- #: plugins/mycred-hook-buddypress.php:795
363
- #: plugins/mycred-hook-buddypress.php:819
364
- #: plugins/mycred-hook-buddypress.php:837
365
- #: plugins/mycred-hook-buddypress.php:861
366
- #: plugins/mycred-hook-buddypress.php:885
367
- #: plugins/mycred-hook-buddypress.php:1521
368
- #: plugins/mycred-hook-buddypress.php:1539
369
- #: plugins/mycred-hook-buddypress.php:1563
370
- #: plugins/mycred-hook-buddypress.php:1587
371
- #: plugins/mycred-hook-buddypress.php:1611
372
- #: plugins/mycred-hook-buddypress.php:1635
373
- #: plugins/mycred-hook-buddypress.php:1659
374
- #: plugins/mycred-hook-buddypress.php:1683
375
- #: plugins/mycred-hook-buddypress.php:1707
376
- #: plugins/mycred-hook-buddypress.php:1725
377
- #: plugins/mycred-hook-buddypress.php:1749
378
- #: plugins/mycred-hook-affiliatewp.php:299
379
- #: plugins/mycred-hook-affiliatewp.php:326
380
- #: plugins/mycred-hook-affiliatewp.php:370
381
- #: plugins/mycred-hook-affiliatewp.php:377
382
- #: plugins/mycred-hook-events-manager-light.php:218
383
- #: plugins/mycred-hook-events-manager-light.php:236
384
- #: plugins/mycred-hook-sharethis.php:274
385
- #: plugins/mycred-hook-buddypress-media.php:307
386
- #: plugins/mycred-hook-buddypress-media.php:331
387
- #: plugins/mycred-hook-buddypress-media.php:355
388
- #: plugins/mycred-hook-buddypress-media.php:373
389
- #: plugins/mycred-hook-buddypress-media.php:391
390
- #: plugins/mycred-hook-buddypress-media.php:409
391
- #: plugins/mycred-hook-wp-favorite-posts.php:249
392
- #: plugins/mycred-hook-wp-favorite-posts.php:256
393
- #: plugins/mycred-hook-wp-favorite-posts.php:274
394
- #: plugins/mycred-hook-wp-favorite-posts.php:289
395
- #: plugins/mycred-hook-contact-form7.php:176
396
- #: plugins/mycred-hook-jetpack.php:550 plugins/mycred-hook-jetpack.php:568
397
- #: plugins/mycred-hook-bbPress.php:450 plugins/mycred-hook-bbPress.php:468
398
- #: plugins/mycred-hook-bbPress.php:492 plugins/mycred-hook-bbPress.php:519
399
- #: plugins/mycred-hook-bbPress.php:543 plugins/mycred-hook-bbPress.php:567
400
- #: plugins/mycred-hook-bbPress.php:594 plugins/mycred-hook-woocommerce.php:517
401
- #: plugins/mycred-hook-badgeOS.php:328 plugins/mycred-hook-badgeOS.php:346
402
- #: addons/transfer/includes/mycred-transfer-widgets.php:102
403
- #: addons/transfer/includes/mycred-transfer-widgets.php:106
404
- #: addons/transfer/includes/mycred-transfer-widgets.php:110
405
- #: addons/transfer/includes/mycred-transfer-widgets.php:122
406
- msgid "required"
407
- msgstr ""
408
-
409
- #: plugins/mycred-hook-invite-anyone.php:229
410
- msgid "Accepted Invites"
411
- msgstr ""
412
-
413
- #: plugins/mycred-hook-wp-postratings.php:161
414
- msgid "Content Rating"
415
- msgstr ""
416
-
417
- #: plugins/mycred-hook-wp-postratings.php:165
418
- #: plugins/mycred-hook-wp-favorite-posts.php:222
419
- #: plugins/mycred-hook-wp-favorite-posts.php:267
420
- msgid "Member"
421
  msgstr ""
422
 
423
- #: plugins/mycred-hook-wp-postratings.php:177
424
- #: plugins/mycred-hook-wp-favorite-posts.php:234
425
- #: plugins/mycred-hook-wp-favorite-posts.php:282
426
- msgid "Content Author"
427
  msgstr ""
428
 
429
- #: plugins/mycred-hook-wp-postratings.php:207
430
- #: plugins/mycred-hook-wp-favorite-posts.php:248
431
- msgid "Member Log Template"
 
432
  msgstr ""
433
 
434
  #: plugins/mycred-hook-wp-postratings.php:214
@@ -436,31 +228,26 @@ msgstr ""
436
  msgid "Content Author Log Template"
437
  msgstr ""
438
 
439
- #: plugins/mycred-hook-gravityforms.php:156
440
- #: plugins/mycred-hook-contact-form7.php:159
441
- #, php-format
442
- msgid "Form: %s"
443
  msgstr ""
444
 
445
- #: plugins/mycred-hook-simplepress.php:291 plugins/mycred-hook-bbPress.php:475
446
- #: plugins/mycred-hook-bbPress.php:550
447
- msgid "New Topic"
448
  msgstr ""
449
 
450
  #: plugins/mycred-hook-simplepress.php:315 plugins/mycred-hook-bbPress.php:508
451
  msgid "Deleted Topic"
452
  msgstr ""
453
 
454
- #: plugins/mycred-hook-simplepress.php:333
455
- msgid "New Topic Post"
456
- msgstr ""
457
-
458
- #: plugins/mycred-hook-simplepress.php:359
459
- msgid "Topic authors can receive %_plural% for posting on their own Topic."
460
  msgstr ""
461
 
462
- #: plugins/mycred-hook-simplepress.php:366
463
- msgid "Deleted Topic Post"
 
 
464
  msgstr ""
465
 
466
  #: plugins/mycred-hook-buddypress.php:613
@@ -483,12 +270,14 @@ msgstr ""
483
  msgid "New Friendships"
484
  msgstr ""
485
 
486
- #: plugins/mycred-hook-buddypress.php:742
487
- msgid "Ending Friendships"
 
 
488
  msgstr ""
489
 
490
- #: plugins/mycred-hook-buddypress.php:760
491
- msgid "New Comment"
492
  msgstr ""
493
 
494
  #: plugins/mycred-hook-buddypress.php:802
@@ -503,16 +292,6 @@ msgstr ""
503
  msgid "New Private Message"
504
  msgstr ""
505
 
506
- #: plugins/mycred-hook-buddypress.php:1502
507
- msgid "Group Creation"
508
- msgstr ""
509
-
510
- #: plugins/mycred-hook-buddypress.php:1508
511
- msgid ""
512
- "If you use a negative value and the user does not have enough %_plural%, the "
513
- "\"Create Group\" button will be disabled."
514
- msgstr ""
515
-
516
  #: plugins/mycred-hook-buddypress.php:1513
517
  msgid "No. of Members"
518
  msgstr ""
@@ -551,18 +330,6 @@ msgstr ""
551
  msgid "Editing Forum Posts"
552
  msgstr ""
553
 
554
- #: plugins/mycred-hook-buddypress.php:1690
555
- msgid "Joining Groups"
556
- msgstr ""
557
-
558
- #: plugins/mycred-hook-buddypress.php:1714
559
- msgid "Leaving Groups"
560
- msgstr ""
561
-
562
- #: plugins/mycred-hook-buddypress.php:1732
563
- msgid "New Group Comments"
564
- msgstr ""
565
-
566
  #: plugins/mycred-hook-affiliatewp.php:293
567
  #: plugins/mycred-hook-affiliatewp.php:312
568
  #: addons/banking/services/mycred-service-payouts.php:768
@@ -594,10 +361,25 @@ msgstr ""
594
  msgid "Apply an exchange rate"
595
  msgstr ""
596
 
 
 
 
 
 
 
 
 
 
 
597
  #: plugins/mycred-hook-sharethis.php:257
598
  msgid "Publishing Posts"
599
  msgstr ""
600
 
 
 
 
 
 
601
  #: plugins/mycred-hook-buddypress-media.php:362
602
  msgid "Photo Deletion"
603
  msgstr ""
@@ -606,30 +388,44 @@ msgstr ""
606
  msgid "Video Deletion"
607
  msgstr ""
608
 
609
- #: plugins/mycred-hook-buddypress-media.php:398
610
- msgid "Music Deletion"
 
 
 
 
 
 
 
 
611
  msgstr ""
612
 
613
- #: plugins/mycred-hook-bbPress.php:433
614
- msgid "New Forums"
 
 
615
  msgstr ""
616
 
617
  #: plugins/mycred-hook-bbPress.php:457
618
  msgid "Deleting Forums"
619
  msgstr ""
620
 
621
- #: plugins/mycred-hook-bbPress.php:526
622
- msgid "Adding Topic to Favorites"
623
  msgstr ""
624
 
625
- #: plugins/mycred-hook-bbPress.php:576
626
- msgid "Topic authors can receive %_plural% for replying to their own Topic."
627
  msgstr ""
628
 
629
  #: plugins/mycred-hook-bbPress.php:583
630
  msgid "Deleted Reply"
631
  msgstr ""
632
 
 
 
 
 
633
  #: plugins/mycred-hook-bbPress.php:608
634
  msgid "Show users %_plural% balance in their bbPress profiles"
635
  msgstr ""
@@ -638,6 +434,11 @@ msgstr ""
638
  msgid "Leave empty for no rewards"
639
  msgstr ""
640
 
 
 
 
 
 
641
  #: plugins/mycred-hook-badgeOS.php:317
642
  #, php-format
643
  msgid "Earning: %s"
@@ -656,14 +457,6 @@ msgid ""
656
  "and who has access to it."
657
  msgstr ""
658
 
659
- #: includes/mycred-setup.php:111
660
- msgid "Your First Point Type"
661
- msgstr ""
662
-
663
- #: includes/mycred-setup.php:127
664
- msgid "Advanced Settings"
665
- msgstr ""
666
-
667
  #: includes/mycred-setup.php:133
668
  msgid "Change Default Point Type Key"
669
  msgstr ""
@@ -681,37 +474,16 @@ msgid ""
681
  "continuing on in this setup!"
682
  msgstr ""
683
 
684
- #: includes/mycred-setup.php:139
685
- msgid "Whitelabel"
686
- msgstr ""
687
-
688
  #: includes/mycred-setup.php:141
689
  msgid ""
690
  "You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
691
  "above code to your wp-config.php file to use."
692
  msgstr ""
693
 
694
- #: includes/mycred-setup.php:149
695
- msgid "Create Point Type"
696
- msgstr ""
697
-
698
- #: includes/mycred-setup.php:149
699
- msgid "Hide"
700
- msgstr ""
701
-
702
- #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
703
- #: addons/email-notices/myCRED-addon-email-notices.php:1435
704
- msgid "Advanced"
705
- msgstr ""
706
-
707
  #: includes/mycred-setup.php:155
708
  msgid "Processing ..."
709
  msgstr ""
710
 
711
- #: includes/mycred-setup.php:160
712
- msgid "Setup Complete!"
713
- msgstr ""
714
-
715
  #: includes/mycred-setup.php:161
716
  msgid "Congratulations! You are now ready to use myCRED. What's next?"
717
  msgstr ""
@@ -731,16 +503,6 @@ msgstr ""
731
  msgid "Setup Hooks"
732
  msgstr ""
733
 
734
- #: includes/mycred-setup.php:172
735
- msgid ""
736
- "If you want to use advanced features such as Transfers, Point Purchases etc. "
737
- "your next step should be to enable and setup your add-ons."
738
- msgstr ""
739
-
740
- #: includes/mycred-setup.php:173
741
- msgid "Setup Add-ons"
742
- msgstr ""
743
-
744
  #: includes/mycred-setup.php:176
745
  msgid "Adjust Settings"
746
  msgstr ""
@@ -751,26 +513,10 @@ msgid ""
751
  "you can visit your default point type's settings."
752
  msgstr ""
753
 
754
- #: includes/mycred-setup.php:178
755
- msgid "View Settings"
756
- msgstr ""
757
-
758
- #: includes/mycred-setup.php:322
759
- msgid "Set to decimals to zero if you prefer to use whole numbers."
760
- msgstr ""
761
-
762
  #: includes/mycred-setup.php:394 includes/mycred-setup.php:453
763
  msgid "Please make sure you fill out all required fields!"
764
  msgstr ""
765
 
766
- #: includes/mycred-install.php:63
767
- msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
768
- msgstr ""
769
-
770
- #: includes/mycred-install.php:68
771
- msgid "myCRED requires PHP 5.3 or higher. Version detected: "
772
- msgstr ""
773
-
774
  #: includes/mycred-widgets.php:22
775
  msgid "Show the current users balance and history."
776
  msgstr ""
@@ -783,10 +529,6 @@ msgstr ""
783
  msgid "Leaderboard based on instances or balances."
784
  msgstr ""
785
 
786
- #: includes/mycred-widgets.php:419
787
- msgid "Timeframe"
788
- msgstr ""
789
-
790
  #: includes/mycred-widgets.php:421
791
  msgid ""
792
  "Option to limit the leaderboard based on a specific timeframe. Leave empty "
@@ -797,43 +539,6 @@ msgstr ""
797
  msgid "Shows multiple balances."
798
  msgstr ""
799
 
800
- #: includes/mycred-functions.php:2815
801
- #, php-format
802
- msgctxt "e.g. 5 th"
803
- msgid "%d th"
804
- msgstr ""
805
-
806
- #: includes/mycred-functions.php:2819
807
- #, php-format
808
- msgctxt "e.g. 1 st"
809
- msgid "%d st"
810
- msgstr ""
811
-
812
- #: includes/mycred-functions.php:2820
813
- #, php-format
814
- msgctxt "e.g. 2 nd"
815
- msgid "%d nd"
816
- msgstr ""
817
-
818
- #: includes/mycred-functions.php:2821
819
- #, php-format
820
- msgctxt "e.g. 3 rd"
821
- msgid "%d rd"
822
- msgstr ""
823
-
824
- #: includes/importers/mycred-cubepoints.php:85
825
- msgid "Could not find a CubePoints installation."
826
- msgstr ""
827
-
828
- #: includes/importers/mycred-cubepoints.php:289
829
- #: includes/importers/mycred-balances.php:230
830
- msgid "View Users"
831
- msgstr ""
832
-
833
- #: includes/importers/mycred-cubepoints.php:305
834
- msgid "Import CubePoints"
835
- msgstr ""
836
-
837
  #: includes/importers/mycred-balances.php:117
838
  #: includes/importers/mycred-balances.php:144
839
  #: includes/importers/mycred-log-entries.php:117
@@ -847,36 +552,10 @@ msgid ""
847
  "Invalid CSV file. Please consult the documentation for further assistance."
848
  msgstr ""
849
 
850
- #: includes/importers/mycred-balances.php:245
851
- #, php-format
852
- msgid "Import Balances %s"
853
- msgstr ""
854
-
855
- #: includes/importers/mycred-log-entries.php:213
856
- #, php-format
857
- msgid ""
858
- "Import complete - A total of <strong>%d</strong> log entries were "
859
- "successfully imported. <strong>%d</strong> was skipped."
860
- msgstr ""
861
-
862
- #: includes/importers/mycred-log-entries.php:239
863
- #, php-format
864
- msgid "Import Log Entries %s"
865
- msgstr ""
866
-
867
- #: includes/shortcodes/mycred_exchange.php:27
868
- #: includes/shortcodes/mycred_hook_table.php:24
869
- msgid "Point type not found."
870
- msgstr ""
871
-
872
  #: includes/classes/class.query-export.php:263
873
  msgid "Reference ID"
874
  msgstr ""
875
 
876
- #: includes/classes/class.query-export.php:263
877
- msgid "Data"
878
- msgstr ""
879
-
880
  #: includes/classes/class.query-export.php:464
881
  msgid "Export log entries raw"
882
  msgstr ""
@@ -897,10 +576,6 @@ msgstr ""
897
  msgid "Export History"
898
  msgstr ""
899
 
900
- #: includes/classes/class.query-log.php:1016
901
- msgid "Bulk Actions"
902
- msgstr ""
903
-
904
  #: includes/classes/class.query-log.php:1017
905
  msgid "Export Raw"
906
  msgstr ""
@@ -909,10 +584,6 @@ msgstr ""
909
  msgid "Export Formatted"
910
  msgstr ""
911
 
912
- #: includes/classes/class.query-log.php:1034
913
- msgid "Apply"
914
- msgstr ""
915
-
916
  #: includes/classes/class.query-log.php:1072
917
  msgid "User ID, Username, Email or Nicename"
918
  msgstr ""
@@ -921,13 +592,6 @@ msgstr ""
921
  msgid "Log entries navigation"
922
  msgstr ""
923
 
924
- #: includes/classes/class.query-log.php:1269
925
- #, php-format
926
- msgid "1 entry"
927
- msgid_plural "%d entries"
928
- msgstr[0] ""
929
- msgstr[1] ""
930
-
931
  #: includes/classes/class.query-log.php:1408
932
  #: includes/classes/class.query-log.php:1458
933
  msgid "Select all"
@@ -937,10 +601,6 @@ msgstr ""
937
  msgid "Select entry"
938
  msgstr ""
939
 
940
- #: includes/classes/class.query-log.php:1539
941
- msgid "Show more details"
942
- msgstr ""
943
-
944
  #: includes/classes/class.query-log.php:1563
945
  msgid "Filter by Date"
946
  msgstr ""
@@ -981,11 +641,6 @@ msgstr ""
981
  msgid "buyCRED Purchase (Bank Transfer)"
982
  msgstr ""
983
 
984
- #: includes/classes/class.query-log.php:2298
985
- #: addons/coupons/myCRED-addon-coupons.php:460
986
- msgid "Coupon Usage"
987
- msgstr ""
988
-
989
  #: includes/classes/class.query-log.php:2327
990
  msgid "Content Purchase"
991
  msgstr ""
@@ -994,6 +649,10 @@ msgstr ""
994
  msgid "Content Sale"
995
  msgstr ""
996
 
 
 
 
 
997
  #: addons/banking/myCRED-addon-banking.php:142
998
  msgid ""
999
  "Instead of creating %_plural% out of thin-air, all payouts are made from a "
@@ -1024,10 +683,6 @@ msgstr ""
1024
  msgid "Are you sure you want to remove this schedule? This can not be undone!"
1025
  msgstr ""
1026
 
1027
- #: addons/banking/myCRED-addon-banking.php:271
1028
- msgid "Warning"
1029
- msgstr ""
1030
-
1031
  #: addons/banking/myCRED-addon-banking.php:271
1032
  msgid ""
1033
  "This banking service uses the WordPress CRON to schedule events. If the "
@@ -1100,20 +755,12 @@ msgid ""
1100
  "someone who is not logged in."
1101
  msgstr ""
1102
 
1103
- #: addons/transfer/myCRED-addon-transfer.php:507
1104
- msgid "Limit Template"
1105
- msgstr ""
1106
-
1107
  #: addons/transfer/myCRED-addon-transfer.php:508
1108
  msgid ""
1109
  "The template to use if you select to show the transfer limit in the transfer "
1110
  "shortcode or widget. Ignored if there is no limit enforced."
1111
  msgstr ""
1112
 
1113
- #: addons/transfer/myCRED-addon-transfer.php:523
1114
- msgid "Balance Template"
1115
- msgstr ""
1116
-
1117
  #: addons/transfer/myCRED-addon-transfer.php:524
1118
  msgid ""
1119
  "The template to use if you select to show the users balance in the transfer "
@@ -1121,7 +768,7 @@ msgid ""
1121
  msgstr ""
1122
 
1123
  #: addons/ranks/myCRED-addon-ranks.php:230
1124
- #: addons/ranks/myCRED-addon-ranks.php:1375
1125
  msgid "Rank Logo"
1126
  msgstr ""
1127
 
@@ -1137,111 +784,80 @@ msgstr ""
1137
  msgid "Use as Logo"
1138
  msgstr ""
1139
 
1140
- #: addons/ranks/myCRED-addon-ranks.php:288
1141
- msgid "Rank Enabled."
1142
- msgstr ""
1143
-
1144
- #: addons/ranks/myCRED-addon-ranks.php:289
1145
- msgid "Rank Saved."
1146
- msgstr ""
1147
-
1148
  #: addons/ranks/myCRED-addon-ranks.php:895
1149
  msgid "No ranks exists."
1150
  msgstr ""
1151
 
1152
- #: addons/ranks/myCRED-addon-ranks.php:1189
1153
  msgid "Rank Setup"
1154
  msgstr ""
1155
 
1156
- #: addons/ranks/myCRED-addon-ranks.php:1230
1157
  msgid "Minimum Balance Requirement"
1158
  msgstr ""
1159
 
1160
- #: addons/ranks/myCRED-addon-ranks.php:1236
1161
  msgid "Maximum Balance Requirement"
1162
  msgstr ""
1163
 
1164
- #: addons/ranks/myCRED-addon-ranks.php:1395
1165
  msgid "Rank Post Type"
1166
  msgstr ""
1167
 
1168
- #: addons/ranks/myCRED-addon-ranks.php:1398
1169
  msgid "Make Ranks Public"
1170
  msgstr ""
1171
 
1172
- #: addons/ranks/myCRED-addon-ranks.php:1402
1173
  msgid "Rank SLUG"
1174
  msgstr ""
1175
 
1176
- #: addons/ranks/myCRED-addon-ranks.php:1404
1177
  msgid ""
1178
  "If you have selected to make Ranks public, you can select what rank archive "
1179
  "URL slug you want to use. Ignored if Ranks are not set to be public."
1180
  msgstr ""
1181
 
1182
- #: addons/ranks/myCRED-addon-ranks.php:1425
1183
  msgid "Option to set in which order Ranks should be shown on the archive page."
1184
  msgstr ""
1185
 
1186
- #: addons/ranks/myCRED-addon-ranks.php:1432
1187
  msgid "Rank Behaviour"
1188
  msgstr ""
1189
 
1190
- #: addons/ranks/myCRED-addon-ranks.php:1437
1191
  msgid "Based on Current Balances"
1192
  msgstr ""
1193
 
1194
- #: addons/ranks/myCRED-addon-ranks.php:1439
1195
  msgid ""
1196
  "Users can be promoted or demoted depending on where their balance fits in "
1197
  "amongst your ranks."
1198
  msgstr ""
1199
 
1200
- #: addons/ranks/myCRED-addon-ranks.php:1445
1201
  msgid "Based on Total Balances"
1202
  msgstr ""
1203
 
1204
- #: addons/ranks/myCRED-addon-ranks.php:1447
1205
  msgid ""
1206
  "Users can only be promoted and gain higher ranks even if their balance "
1207
  "decreases."
1208
  msgstr ""
1209
 
1210
- #: addons/ranks/myCRED-addon-ranks.php:1454
1211
- msgid "Tools"
1212
- msgstr ""
1213
-
1214
- #: addons/ranks/myCRED-addon-ranks.php:1455
1215
  msgid ""
1216
  "Use this button to calculate or recalculate each individual users total "
1217
  "balance if you think your users total balances are incorrect, or if you "
1218
  "switch from Ranks being based on users current balance to total balance."
1219
  msgstr ""
1220
 
1221
- #: addons/ranks/myCRED-addon-ranks.php:1460
1222
- #: addons/badges/myCRED-addon-badges.php:1130
1223
  msgid "Third-party Integrations"
1224
  msgstr ""
1225
 
1226
- #: addons/ranks/myCRED-addon-ranks.php:1499
1227
- #: addons/ranks/myCRED-addon-ranks.php:1540
1228
- #: addons/badges/myCRED-addon-badges.php:1162
1229
- #: addons/badges/myCRED-addon-badges.php:1196
1230
- msgid "Not installed"
1231
- msgstr ""
1232
-
1233
- #: addons/email-notices/myCRED-addon-email-notices.php:128
1234
- #: addons/email-notices/myCRED-addon-email-notices.php:134
1235
- #: addons/email-notices/myCRED-addon-email-notices.php:140
1236
- #: addons/email-notices/myCRED-addon-email-notices.php:196
1237
- #: addons/email-notices/myCRED-addon-email-notices.php:197
1238
- msgid "Email Notifications"
1239
- msgstr ""
1240
-
1241
- #: addons/email-notices/myCRED-addon-email-notices.php:129
1242
- msgid "Email Notification"
1243
- msgstr ""
1244
-
1245
  #: addons/email-notices/myCRED-addon-email-notices.php:132
1246
  msgid "Edit Email Notification"
1247
  msgstr ""
@@ -1262,8 +878,14 @@ msgstr ""
1262
  msgid "No email notifications found in Trash"
1263
  msgstr ""
1264
 
1265
- #: addons/email-notices/myCRED-addon-email-notices.php:176
1266
- msgid "Email Notice Activated."
 
 
 
 
 
 
1267
  msgstr ""
1268
 
1269
  #: addons/email-notices/myCRED-addon-email-notices.php:709
@@ -1279,135 +901,85 @@ msgstr ""
1279
  msgid "user related template tags"
1280
  msgstr ""
1281
 
1282
- #: addons/email-notices/myCRED-addon-email-notices.php:1408
1283
- msgid "Plain Text"
1284
- msgstr ""
1285
-
1286
- #: addons/email-notices/myCRED-addon-email-notices.php:1416
1287
- #: addons/banking/services/mycred-service-payouts.php:825
1288
- msgid "Schedule"
1289
- msgstr ""
1290
-
1291
- #: addons/email-notices/myCRED-addon-email-notices.php:1438
1292
  msgid "Filter Email Subjects"
1293
  msgstr ""
1294
 
1295
- #: addons/email-notices/myCRED-addon-email-notices.php:1441
1296
  msgid "Filter Email Body"
1297
  msgstr ""
1298
 
1299
- #: addons/email-notices/myCRED-addon-email-notices.php:1463
1300
- msgid "Defaults"
1301
- msgstr ""
1302
-
1303
- #: addons/email-notices/myCRED-addon-email-notices.php:1496
1304
- msgid "Default CSS Styling"
1305
- msgstr ""
1306
-
1307
- #: addons/email-notices/myCRED-addon-email-notices.php:1498
1308
  msgid ""
1309
- "Default email CSS styling. Note that if you intend to send HTML emails, you "
1310
- "should use inline CSS styling for best results."
1311
- msgstr ""
1312
-
1313
- #: addons/stats/myCRED-addon-stats.php:172
1314
- msgid "Statistics Color"
1315
- msgstr ""
1316
-
1317
- #: addons/stats/myCRED-addon-stats.php:176
1318
- msgid "Positive Values"
1319
  msgstr ""
1320
 
1321
- #: addons/stats/myCRED-addon-stats.php:182
1322
- msgid "Negative Values"
1323
  msgstr ""
1324
 
1325
- #: addons/badges/myCRED-addon-badges.php:275
1326
- msgid "Badge Enabled."
 
 
1327
  msgstr ""
1328
 
1329
- #: addons/badges/myCRED-addon-badges.php:276
1330
- msgid "Badge Saved."
1331
  msgstr ""
1332
 
1333
- #: addons/badges/myCRED-addon-badges.php:398
1334
  msgid "First Level"
1335
  msgstr ""
1336
 
1337
- #: addons/badges/myCRED-addon-badges.php:511
1338
- #: addons/badges/myCRED-addon-badges.php:802
1339
  msgid "Remove Level"
1340
  msgstr ""
1341
 
1342
- #: addons/badges/myCRED-addon-badges.php:512
1343
- #: addons/badges/myCRED-addon-badges.php:755
1344
- #: addons/badges/myCRED-addon-badges.php:818
1345
- #: addons/badges/myCRED-addon-badges.php:823
1346
  msgid "Set Image"
1347
  msgstr ""
1348
 
1349
- #: addons/badges/myCRED-addon-badges.php:513
1350
- #: addons/badges/myCRED-addon-badges.php:755
1351
- #: addons/badges/myCRED-addon-badges.php:823
1352
- msgid "Change Image"
1353
- msgstr ""
1354
-
1355
- #: addons/badges/myCRED-addon-badges.php:514
1356
  msgid "Are you sure you want to remove this level?"
1357
  msgstr ""
1358
 
1359
- #: addons/badges/myCRED-addon-badges.php:518
1360
- #: addons/badges/myCRED-addon-badges.php:921
1361
- #: addons/badges/includes/mycred-badge-functions.php:272
1362
- msgctxt "Comparison of badge requirements. A AND B"
1363
- msgid "AND"
1364
- msgstr ""
1365
-
1366
- #: addons/badges/myCRED-addon-badges.php:519
1367
- #: addons/badges/myCRED-addon-badges.php:921
1368
- #: addons/badges/includes/mycred-badge-functions.php:270
1369
- msgctxt "Comparison of badge requirements. A OR B"
1370
- msgid "OR"
1371
- msgstr ""
1372
-
1373
- #: addons/badges/myCRED-addon-badges.php:580
1374
  msgid "Default Badge Image"
1375
  msgstr ""
1376
 
1377
- #: addons/badges/myCRED-addon-badges.php:722
1378
  #: addons/badges/includes/mycred-badge-functions.php:288
1379
  msgid "This badge is manually awarded."
1380
  msgstr ""
1381
 
1382
- #: addons/badges/myCRED-addon-badges.php:758
1383
- msgid "Optional image to show when a user has not earned this badge."
1384
- msgstr ""
1385
-
1386
- #: addons/badges/myCRED-addon-badges.php:849
1387
- msgid "Select Point Type"
1388
- msgstr ""
1389
-
1390
- #: addons/badges/myCRED-addon-badges.php:863
1391
  msgid "Select Reference"
1392
  msgstr ""
1393
 
1394
- #: addons/badges/myCRED-addon-badges.php:939
1395
  msgid "Reward"
1396
  msgstr ""
1397
 
1398
- #: addons/badges/myCRED-addon-badges.php:1251
1399
- msgid "No image set"
1400
- msgstr ""
1401
-
1402
- #: addons/badges/myCRED-addon-badges.php:1406
1403
  #, php-format
1404
  msgid "A total of %d users have received this badge."
1405
  msgstr ""
1406
 
1407
- #: addons/badges/myCRED-addon-badges.php:1433
1408
  msgid "No connections where removed."
1409
  msgstr ""
1410
 
 
 
 
 
 
1411
  #: addons/coupons/myCRED-addon-coupons.php:486
1412
  msgid ""
1413
  "Warning. The previous expiration date set for this coupon was formatted "
@@ -1438,10 +1010,6 @@ msgid ""
1438
  "Message to show when a user is excluded from the point type the coupon gives."
1439
  msgstr ""
1440
 
1441
- #: addons/sell-content/myCRED-addon-sell-content.php:153
1442
- msgid "Error"
1443
- msgstr ""
1444
-
1445
  #: addons/sell-content/myCRED-addon-sell-content.php:378
1446
  msgid "Users profit share when their content is purchased."
1447
  msgstr ""
@@ -1469,10 +1037,6 @@ msgctxt "Buying Points"
1469
  msgid "%s Profit Share"
1470
  msgstr ""
1471
 
1472
- #: addons/sell-content/myCRED-addon-sell-content.php:427
1473
- msgid "Leave empty to use the default."
1474
- msgstr ""
1475
-
1476
  #: addons/sell-content/myCRED-addon-sell-content.php:512
1477
  msgid "Which post type(s) content field do you want to sell access to?"
1478
  msgstr ""
@@ -1481,12 +1045,6 @@ msgstr ""
1481
  msgid "Which point type(s) can be used as payment for accessing content?"
1482
  msgstr ""
1483
 
1484
- #: addons/sell-content/myCRED-addon-sell-content.php:635
1485
- #: addons/sell-content/myCRED-addon-sell-content.php:1019
1486
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:198
1487
- msgid "Hour(s)"
1488
- msgstr ""
1489
-
1490
  #: addons/sell-content/myCRED-addon-sell-content.php:643
1491
  msgid "Default Status"
1492
  msgstr ""
@@ -1495,11 +1053,6 @@ msgstr ""
1495
  msgid "Default Price"
1496
  msgstr ""
1497
 
1498
- #: addons/sell-content/myCRED-addon-sell-content.php:657
1499
- #: addons/sell-content/myCRED-addon-sell-content.php:1079
1500
- msgid "Expiration"
1501
- msgstr ""
1502
-
1503
  #: addons/sell-content/myCRED-addon-sell-content.php:659
1504
  #, php-format
1505
  msgid ""
@@ -1523,10 +1076,6 @@ msgstr ""
1523
  msgid "Profit Share payout log entry template"
1524
  msgstr ""
1525
 
1526
- #: addons/sell-content/myCRED-addon-sell-content.php:710
1527
- msgid "Transactions"
1528
- msgstr ""
1529
-
1530
  #: addons/sell-content/myCRED-addon-sell-content.php:714
1531
  msgid "Reload page after successful payments."
1532
  msgstr ""
@@ -1563,10 +1112,6 @@ msgid ""
1563
  "is not logged in on your website."
1564
  msgstr ""
1565
 
1566
- #: addons/sell-content/myCRED-addon-sell-content.php:1056
1567
- msgid "Never expires"
1568
- msgstr ""
1569
-
1570
  #: addons/banking/services/mycred-service-central.php:110
1571
  msgid "Central Bank Account"
1572
  msgstr ""
@@ -1579,25 +1124,6 @@ msgstr ""
1579
  msgid "Daily Compound Schedule"
1580
  msgstr ""
1581
 
1582
- #: addons/banking/services/mycred-service-interest.php:432
1583
- #: addons/banking/services/mycred-service-interest.php:457
1584
- #: addons/banking/services/mycred-service-payouts.php:728
1585
- msgid "Year"
1586
- msgstr ""
1587
-
1588
- #: addons/banking/services/mycred-service-interest.php:433
1589
- #: addons/banking/services/mycred-service-interest.php:458
1590
- #: addons/banking/services/mycred-service-payouts.php:734
1591
- #: addons/banking/includes/mycred-banking-functions.php:95
1592
- msgid "Month"
1593
- msgstr ""
1594
-
1595
- #: addons/banking/services/mycred-service-interest.php:434
1596
- #: addons/banking/services/mycred-service-interest.php:459
1597
- #: addons/banking/includes/mycred-banking-functions.php:85
1598
- msgid "Day"
1599
- msgstr ""
1600
-
1601
  #: addons/banking/services/mycred-service-interest.php:454
1602
  msgid "Payout Schedule"
1603
  msgstr ""
@@ -1645,10 +1171,6 @@ msgstr ""
1645
  msgid "Finished"
1646
  msgstr ""
1647
 
1648
- #: addons/banking/services/mycred-service-payouts.php:34
1649
- msgid "Stopped"
1650
- msgstr ""
1651
-
1652
  #: addons/banking/services/mycred-service-payouts.php:446
1653
  msgid "Not yet started"
1654
  msgstr ""
@@ -1675,10 +1197,6 @@ msgstr ""
1675
  msgid "Max. Balance"
1676
  msgstr ""
1677
 
1678
- #: addons/banking/services/mycred-service-payouts.php:531
1679
- msgid "Exclude Users"
1680
- msgstr ""
1681
-
1682
  #: addons/banking/services/mycred-service-payouts.php:533
1683
  msgid "Include Users"
1684
  msgstr ""
@@ -1696,10 +1214,6 @@ msgstr ""
1696
  msgid "Job Title"
1697
  msgstr ""
1698
 
1699
- #: addons/banking/services/mycred-service-payouts.php:573
1700
- msgid "Start Date"
1701
- msgstr ""
1702
-
1703
  #: addons/banking/services/mycred-service-payouts.php:579
1704
  msgid "Eligible"
1705
  msgstr ""
@@ -1727,10 +1241,6 @@ msgstr ""
1727
  msgid "Paid Out"
1728
  msgstr ""
1729
 
1730
- #: addons/banking/services/mycred-service-payouts.php:615
1731
- msgid "Completed"
1732
- msgstr ""
1733
-
1734
  #: addons/banking/services/mycred-service-payouts.php:616
1735
  msgid "Misses"
1736
  msgstr ""
@@ -1749,11 +1259,6 @@ msgstr ""
1749
  msgid "Schedule Title"
1750
  msgstr ""
1751
 
1752
- #: addons/banking/services/mycred-service-payouts.php:694
1753
- #: addons/banking/services/mycred-service-payouts.php:881
1754
- msgid "Frequency"
1755
- msgstr ""
1756
-
1757
  #: addons/banking/services/mycred-service-payouts.php:715
1758
  msgid "Payout even if the central bank account runs out of funds."
1759
  msgstr ""
@@ -1762,10 +1267,6 @@ msgstr ""
1762
  msgid "First Payout"
1763
  msgstr ""
1764
 
1765
- #: addons/banking/services/mycred-service-payouts.php:754
1766
- msgid "Repeat"
1767
- msgstr ""
1768
-
1769
  #: addons/banking/services/mycred-service-payouts.php:756
1770
  msgid "Use -1 for infinite runs."
1771
  msgstr ""
@@ -1782,10 +1283,6 @@ msgstr ""
1782
  msgid "Include:"
1783
  msgstr ""
1784
 
1785
- #: addons/banking/services/mycred-service-payouts.php:847
1786
- msgid "Exclude:"
1787
- msgstr ""
1788
-
1789
  #: addons/banking/services/mycred-service-payouts.php:872
1790
  msgid ""
1791
  "As long as this service remains disabled, none of your scheduled payouts "
@@ -1800,10 +1297,6 @@ msgstr ""
1800
  msgid "Last Ran"
1801
  msgstr ""
1802
 
1803
- #: addons/banking/services/mycred-service-payouts.php:883
1804
- msgid "Next Run"
1805
- msgstr ""
1806
-
1807
  #: addons/banking/services/mycred-service-payouts.php:891
1808
  msgid "No schedules found."
1809
  msgstr ""
@@ -1827,26 +1320,10 @@ msgstr ""
1827
  msgid "Schedule Deleted"
1828
  msgstr ""
1829
 
1830
- #: addons/banking/includes/mycred-banking-functions.php:80
1831
- msgid "Hour"
1832
- msgstr ""
1833
-
1834
- #: addons/banking/includes/mycred-banking-functions.php:90
1835
- msgid "Week"
1836
- msgstr ""
1837
-
1838
- #: addons/banking/includes/mycred-banking-functions.php:100
1839
- msgid "Quarter"
1840
- msgstr ""
1841
-
1842
  #: addons/banking/includes/mycred-banking-functions.php:105
1843
  msgid "Semiannual"
1844
  msgstr ""
1845
 
1846
- #: addons/banking/includes/mycred-banking-functions.php:110
1847
- msgid "Annual"
1848
- msgstr ""
1849
-
1850
  #: addons/banking/includes/mycred-banking-functions.php:283
1851
  msgid "A title must be set."
1852
  msgstr ""
@@ -1882,13 +1359,6 @@ msgctxt "%s = Point amount formatted"
1882
  msgid "Refunded %s"
1883
  msgstr ""
1884
 
1885
- #: addons/transfer/includes/mycred-transfer-widgets.php:113
1886
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
1887
- #: addons/buy-creds/modules/buycred-module-pending.php:549
1888
- #: addons/buy-creds/modules/buycred-module-core.php:1487
1889
- msgid "Recipient"
1890
- msgstr ""
1891
-
1892
  #: addons/transfer/includes/mycred-transfer-widgets.php:117
1893
  msgid "Recipient Placeholder"
1894
  msgstr ""
@@ -1913,76 +1383,64 @@ msgstr ""
1913
  msgid "An unknown error occurred. Coupon not used."
1914
  msgstr ""
1915
 
1916
- #: addons/sell-content/includes/mycred-sell-functions.php:503
1917
- #, php-format
1918
- msgctxt "Point type name"
1919
- msgid "You can not pay using %s"
1920
- msgstr ""
1921
-
1922
- #: addons/sell-content/includes/mycred-sell-functions.php:764
1923
- #, php-format
1924
- msgctxt "all post type name"
1925
- msgid "All %s"
1926
- msgstr ""
1927
-
1928
- #: addons/sell-content/includes/mycred-sell-functions.php:768
1929
  #, php-format
1930
  msgctxt "all post type name"
1931
  msgid "%s I manually select"
1932
  msgstr ""
1933
 
1934
- #: addons/sell-content/includes/mycred-sell-functions.php:772
1935
  #, php-format
1936
  msgctxt "%s = post type name"
1937
  msgid "All %s except"
1938
  msgstr ""
1939
 
1940
- #: addons/sell-content/includes/mycred-sell-functions.php:773
1941
  #, php-format
1942
  msgctxt "%s = post type name"
1943
  msgid "Comma separated list of %s IDs to exclude"
1944
  msgstr ""
1945
 
1946
- #: addons/sell-content/includes/mycred-sell-functions.php:776
1947
  #, php-format
1948
  msgctxt "%s = post type name"
1949
  msgid "Only %s"
1950
  msgstr ""
1951
 
1952
- #: addons/sell-content/includes/mycred-sell-functions.php:777
1953
  #, php-format
1954
  msgctxt "%s = post type name"
1955
  msgid "Comma separated list of %s IDs"
1956
  msgstr ""
1957
 
1958
- #: addons/sell-content/includes/mycred-sell-functions.php:789
1959
  #, php-format
1960
  msgctxt "e.g. Only \"Posts\" in \"Categories\""
1961
  msgid "Only %s in %s"
1962
  msgstr ""
1963
 
1964
- #: addons/sell-content/includes/mycred-sell-functions.php:790
1965
- #: addons/sell-content/includes/mycred-sell-functions.php:794
1966
- #: addons/sell-content/includes/mycred-sell-functions.php:800
1967
- #: addons/sell-content/includes/mycred-sell-functions.php:804
1968
  #, php-format
1969
  msgctxt "%s = taxonomy name"
1970
  msgid "Comma separated list of %s slugs"
1971
  msgstr ""
1972
 
1973
- #: addons/sell-content/includes/mycred-sell-functions.php:793
1974
  #, php-format
1975
  msgctxt "e.g. Only \"Posts\" not in \"Categories\""
1976
  msgid "Only %s not in %s"
1977
  msgstr ""
1978
 
1979
- #: addons/sell-content/includes/mycred-sell-functions.php:799
1980
  #, php-format
1981
  msgctxt "e.g. Only \"Posts\" with \"Tags\""
1982
  msgid "Only %s with %s"
1983
  msgstr ""
1984
 
1985
- #: addons/sell-content/includes/mycred-sell-functions.php:803
1986
  #, php-format
1987
  msgctxt "e.g. Only \"Posts\" without \"Tags\""
1988
  msgid "Only %s without %s"
@@ -2010,49 +1468,6 @@ msgctxt "%s is replaced with the point amount and name."
2010
  msgid "Received new request to purchase %s."
2011
  msgstr ""
2012
 
2013
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:576
2014
- msgid "First Name"
2015
- msgstr ""
2016
-
2017
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
2018
- msgid "Last Name"
2019
- msgstr ""
2020
-
2021
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:590
2022
- msgid "Address Line 1"
2023
- msgstr ""
2024
-
2025
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:598
2026
- msgid "Address Line 2"
2027
- msgstr ""
2028
-
2029
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:606
2030
- msgid "City"
2031
- msgstr ""
2032
-
2033
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:612
2034
- msgid "Zip"
2035
- msgstr ""
2036
-
2037
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
2038
- msgid "State"
2039
- msgstr ""
2040
-
2041
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:628
2042
- msgid "Country"
2043
- msgstr ""
2044
-
2045
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:633
2046
- msgid "Choose Country"
2047
- msgstr ""
2048
-
2049
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:691
2050
- msgctxt "buyCRED order description"
2051
- msgid "Item"
2052
- msgstr ""
2053
-
2054
- #: addons/buy-creds/modules/buycred-module-pending.php:180
2055
- #: addons/buy-creds/modules/buycred-module-pending.php:181
2056
  #: addons/buy-creds/modules/buycred-module-pending.php:182
2057
  #: addons/buy-creds/modules/buycred-module-pending.php:183
2058
  #: addons/buy-creds/modules/buycred-module-pending.php:184
@@ -2060,34 +1475,28 @@ msgstr ""
2060
  #: addons/buy-creds/modules/buycred-module-pending.php:186
2061
  #: addons/buy-creds/modules/buycred-module-pending.php:187
2062
  #: addons/buy-creds/modules/buycred-module-pending.php:188
 
 
2063
  msgid "Payment Updated."
2064
  msgstr ""
2065
 
2066
- #: addons/buy-creds/modules/buycred-module-pending.php:216
2067
  msgid "Pending payment successfully credited to account."
2068
  msgstr ""
2069
 
2070
- #: addons/buy-creds/modules/buycred-module-pending.php:218
2071
  msgid "Failed to credit the pending payment to account."
2072
  msgstr ""
2073
 
2074
- #: addons/buy-creds/modules/buycred-module-pending.php:441
2075
  msgid "Pending Payment"
2076
  msgstr ""
2077
 
2078
- #: addons/buy-creds/modules/buycred-module-pending.php:479
2079
- msgid "Trash"
2080
- msgstr ""
2081
-
2082
- #: addons/buy-creds/modules/buycred-module-pending.php:543
2083
- msgid "Payer"
2084
- msgstr ""
2085
-
2086
- #: addons/buy-creds/modules/buycred-module-pending.php:652
2087
  msgid "Pending request created."
2088
  msgstr ""
2089
 
2090
- #: addons/buy-creds/modules/buycred-module-pending.php:700
2091
  #, php-format
2092
  msgid "Pending payment updated by %s"
2093
  msgstr ""
@@ -2096,15 +1505,6 @@ msgstr ""
2096
  msgid "Bank Transfer"
2097
  msgstr ""
2098
 
2099
- #: addons/buy-creds/modules/buycred-module-core.php:347
2100
- msgid ""
2101
- "Minimum amount of %plural% a user must purchase. Will default to %cred%."
2102
- msgstr ""
2103
-
2104
- #: addons/buy-creds/modules/buycred-module-core.php:361
2105
- msgid "Redirects"
2106
- msgstr ""
2107
-
2108
  #: addons/buy-creds/modules/buycred-module-core.php:365
2109
  msgid ""
2110
  "Where should users be redirected to upon successfully completing a purchase. "
@@ -2116,21 +1516,12 @@ msgstr ""
2116
  msgid "Redirect to Page"
2117
  msgstr ""
2118
 
2119
- #: addons/buy-creds/modules/buycred-module-core.php:384
2120
- #: addons/buy-creds/modules/buycred-module-core.php:409
2121
- msgid "Redirect to URL"
2122
- msgstr ""
2123
-
2124
  #: addons/buy-creds/modules/buycred-module-core.php:390
2125
  msgid ""
2126
  "Where should users be redirected to if they cancel a transaction. You can "
2127
  "nominate a specific URL or a page."
2128
  msgstr ""
2129
 
2130
- #: addons/buy-creds/modules/buycred-module-core.php:419
2131
- msgid "Login Message"
2132
- msgstr ""
2133
-
2134
  #: addons/buy-creds/modules/buycred-module-core.php:421
2135
  msgid ""
2136
  "Message to show in shortcodes when viewed by someone who is not logged in."
@@ -2144,23 +1535,10 @@ msgstr ""
2144
  msgid "buyCRED Exchange Rates"
2145
  msgstr ""
2146
 
2147
- #: addons/buy-creds/modules/buycred-module-core.php:1125
2148
- #, php-format
2149
- msgctxt "Points Name"
2150
- msgid "Buying %s"
2151
- msgstr ""
2152
-
2153
  #: addons/buy-creds/modules/buycred-module-core.php:1128
2154
  msgid "This point type is not for sale."
2155
  msgstr ""
2156
 
2157
- #: addons/buy-creds/modules/buycred-module-core.php:1140
2158
- #: addons/buy-creds/modules/buycred-module-core.php:1155
2159
- #, php-format
2160
- msgctxt "Buying Points"
2161
- msgid "Buying %s"
2162
- msgstr ""
2163
-
2164
  #: addons/buy-creds/modules/buycred-module-core.php:1143
2165
  #, php-format
2166
  msgctxt "Points Name"
@@ -2179,114 +1557,92 @@ msgstr ""
2179
  msgid "Unknown Gateway"
2180
  msgstr ""
2181
 
2182
- #: addons/buy-creds/gateways/bank-transfer.php:168
2183
- msgid "Continue"
2184
- msgstr ""
2185
-
2186
  #: addons/buy-creds/gateways/bank-transfer.php:196
2187
  msgid "Checkout Logo"
2188
  msgstr ""
2189
-
2190
- #: addons/buy-creds/gateways/bank-transfer.php:202
2191
- msgid "Bank Account Information"
2192
- msgstr ""
2193
-
2194
- #: addons/buy-creds/gateways/bank-transfer.php:206
2195
- msgid "Bank transfer details to show the user on the checkout page."
2196
- msgstr ""
2197
-
2198
- #: addons/buy-creds/gateways/paypal-standard.php:256
2199
- #, php-format
2200
- msgctxt "Return label. %s = Website name"
2201
- msgid "Return to %s"
2202
- msgstr ""
2203
-
2204
- #: addons/buy-creds/gateways/skrill.php:340
2205
- msgid ""
2206
- "The URL to the image you want to use on the top of the gateway. For best "
2207
- "integration results we recommend you use logos with dimensions up to 200px "
2208
- "in width and 50px in height."
2209
  msgstr ""
2210
 
2211
- #: addons/buy-creds/gateways/skrill.php:343
2212
- msgid "Confirmation Note"
2213
  msgstr ""
2214
 
2215
- #. Description of the plugin
2216
- msgid "An adaptive points management system for WordPress powered websites."
 
2217
  msgstr ""
2218
 
2219
- #: mycred.php:565
2220
  #, php-format
2221
  msgid "%s Log Import"
2222
  msgstr "%s のログのインポート"
2223
 
2224
- #: mycred.php:566
2225
  msgid "Import log entries via a CSV file."
2226
- msgstr "CSVファイル経由でログエントリをインポート。"
2227
 
2228
- #: mycred.php:577
2229
  #, php-format
2230
  msgid "%s Balance Import"
2231
  msgstr "%s 残高のインポート"
2232
 
2233
- #: mycred.php:589
 
 
 
 
2234
  #, php-format
2235
  msgid "%s CubePoints Import"
2236
- msgstr "%s CubePointsインポート"
2237
 
2238
- #: mycred.php:590
2239
  msgid "Import CubePoints log entries and / or balances."
2240
- msgstr "CubePointsのログ履歴か / もしくは残高をインポート"
2241
 
2242
- #: mycred.php:632 modules/mycred-module-management.php:316
2243
- #: modules/mycred-module-settings.php:425 modules/mycred-module-log.php:469
2244
  #: addons/transfer/myCRED-addon-transfer.php:159
2245
  #: addons/ranks/myCRED-addon-ranks.php:986
2246
- #: addons/ranks/myCRED-addon-ranks.php:1568
2247
- #: addons/badges/myCRED-addon-badges.php:702
2248
  #: addons/gateway/event-booking/mycred-eventsmanager.php:537
2249
  msgid "Processing..."
2250
- msgstr "処理中・・・"
2251
 
2252
- #: mycred.php:633
2253
  msgid "Sent"
2254
- msgstr "送信済み"
2255
 
2256
- #: mycred.php:634
2257
  msgid "Error - Try Again"
2258
  msgstr "エラー - 再試行"
2259
 
2260
- #: mycred.php:809 mycred.php:810
2261
  #, php-format
2262
  msgid "About %s"
2263
  msgstr "%s について"
2264
 
2265
- #: mycred.php:818 mycred.php:819
2266
  msgid "Awesome People"
2267
  msgstr "素晴らしい人々"
2268
 
2269
- #: mycred.php:856 modules/mycred-module-management.php:558
2270
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:34
2271
- msgid "Balance"
2272
- msgstr "残りポイント"
2273
-
2274
- #: mycred.php:923 modules/mycred-module-management.php:473
2275
  #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
2276
- #: addons/buy-creds/modules/buycred-module-pending.php:444
2277
  msgid "History"
2278
  msgstr "履歴"
2279
 
2280
- #: mycred.php:979 mycred.php:1000
2281
  #: addons/notifications/myCRED-addon-notifications.php:194
2282
  #: addons/email-notices/myCRED-addon-email-notices.php:277
2283
  #: addons/banking/services/mycred-service-interest.php:477
2284
  #: addons/gateway/event-booking/mycred-eventsmanager.php:591
2285
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:605
2286
  msgid "Setup"
2287
- msgstr "セットアップ"
2288
 
2289
- #: mycred.php:981 modules/mycred-module-settings.php:21
2290
  #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
2291
  #: modules/mycred-module-network.php:270
2292
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
@@ -2294,53 +1650,53 @@ msgstr "セットアップ"
2294
  msgid "Settings"
2295
  msgstr "設定"
2296
 
2297
- #: mycred.php:1021
2298
  msgid ""
2299
  "Make sure to backup your database and files before updating, in case "
2300
  "anything goes wrong!"
2301
- msgstr "更新する前にデータベースとファイルのバックアップすることをオススメします。何かが間違って場合には有効です!"
2302
 
2303
  #: abstracts/mycred-abstract-hook.php:90
2304
  msgid "This Hook has no settings"
2305
  msgstr "このフックは設定がありません"
2306
 
2307
- #: abstracts/mycred-abstract-hook.php:290
2308
- #: abstracts/mycred-abstract-hook.php:361 includes/mycred-functions.php:2771
2309
  msgid "No limit"
2310
- msgstr "制限なし"
2311
 
2312
- #: abstracts/mycred-abstract-hook.php:291
2313
  msgid "/ Day"
2314
  msgstr "/ 日"
2315
 
2316
- #: abstracts/mycred-abstract-hook.php:292
2317
  msgid "/ Week"
2318
  msgstr "/ 週"
2319
 
2320
- #: abstracts/mycred-abstract-hook.php:293
2321
  msgid "/ Month"
2322
  msgstr "/ 月"
2323
 
2324
- #: abstracts/mycred-abstract-hook.php:294
2325
  msgid "in Total"
2326
  msgstr "すべて"
2327
 
2328
- #: abstracts/mycred-abstract-hook.php:362
2329
  msgid "Once every 24 hours"
2330
- msgstr "24時間ごとに一度"
2331
 
2332
- #: abstracts/mycred-abstract-hook.php:363
2333
  msgid "Once every 7 days"
2334
- msgstr "7日ごとに一度"
2335
 
2336
- #: abstracts/mycred-abstract-hook.php:364
2337
  msgid "Once per day (reset at midnight)"
2338
- msgstr "1日に1回(午前零時にリセット)"
2339
 
2340
- #: abstracts/mycred-abstract-hook.php:371
2341
  #: addons/email-notices/myCRED-addon-email-notices.php:531
2342
  #: addons/email-notices/myCRED-addon-email-notices.php:862
2343
- #: addons/badges/myCRED-addon-badges.php:880
2344
  #: addons/banking/abstracts/mycred-abstract-service.php:351
2345
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
2346
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
@@ -2355,23 +1711,23 @@ msgstr "選択"
2355
  msgid "Surprise"
2356
  msgstr "サプライズ"
2357
 
2358
- #: abstracts/mycred-abstract-module.php:522
2359
  #: modules/mycred-module-network.php:218
2360
  msgid "click to close"
2361
- msgstr "閉じるをクリック"
2362
 
2363
- #: abstracts/mycred-abstract-module.php:523
2364
  #: modules/mycred-module-network.php:219
2365
  msgid "click to open"
2366
- msgstr "開くをクリック"
2367
 
2368
- #: abstracts/mycred-abstract-module.php:556
2369
  #: modules/mycred-module-network.php:261
2370
- #: addons/email-notices/myCRED-addon-email-notices.php:1546
2371
  #: addons/gateway/event-booking/mycred-eventespresso3.php:451
2372
  #: addons/buy-creds/modules/buycred-module-core.php:597
2373
  msgid "Settings Updated"
2374
- msgstr "設定が更新"
2375
 
2376
  #: modules/mycred-module-management.php:101
2377
  msgid "Update Balance"
@@ -2390,7 +1746,7 @@ msgid "Amount can not be zero"
2390
  msgstr "金額はゼロにすることはできません"
2391
 
2392
  #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
2393
- #: modules/mycred-module-log.php:910
2394
  #: includes/classes/class.query-export.php:263
2395
  #: includes/classes/class.query-export.php:399
2396
  #: includes/classes/class.query-log.php:892
@@ -2399,7 +1755,7 @@ msgstr "金額はゼロにすることはできません"
2399
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:202
2400
  #: addons/buy-creds/modules/buycred-module-core.php:768
2401
  msgid "Date"
2402
- msgstr "日付"
2403
 
2404
  #: modules/mycred-module-management.php:236
2405
  #: addons/banking/services/mycred-service-interest.php:435
@@ -2408,23 +1764,33 @@ msgstr "日付"
2408
  msgid "Time"
2409
  msgstr "時間"
2410
 
 
 
 
 
 
 
 
 
 
 
2411
  #: modules/mycred-module-management.php:238 modules/mycred-module-log.php:96
2412
  #: includes/classes/class.query-export.php:263
2413
  #: includes/classes/class.query-export.php:406
2414
  #: includes/classes/class.query-log.php:894
2415
  #: includes/classes/class.query-log.php:907
2416
  msgid "Entry"
2417
- msgstr "エントリー"
2418
 
2419
  #: modules/mycred-module-management.php:314
2420
  msgid "Edit Users Balance"
2421
  msgstr "ユーザー残りポイントの編集"
2422
 
2423
  #: modules/mycred-module-management.php:315
2424
- #: modules/mycred-module-settings.php:430 modules/mycred-module-log.php:468
2425
  #: addons/banking/myCRED-addon-banking.php:204
2426
  msgid "Close"
2427
- msgstr "閉じる"
2428
 
2429
  #: modules/mycred-module-management.php:453
2430
  #: modules/mycred-module-management.php:571
@@ -2436,7 +1802,7 @@ msgstr "除外"
2436
  #: modules/mycred-module-management.php:463
2437
  #: addons/coupons/myCRED-addon-coupons.php:309
2438
  msgid "Total"
2439
- msgstr "合計"
2440
 
2441
  #: modules/mycred-module-management.php:474
2442
  msgid "Adjust"
@@ -2447,11 +1813,11 @@ msgstr "調整する"
2447
  #: includes/classes/class.query-log.php:1621
2448
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:68
2449
  msgid "Edit"
2450
- msgstr "編集"
2451
 
2452
  #: modules/mycred-module-management.php:583
2453
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
2454
- #: addons/buy-creds/modules/buycred-module-pending.php:718
2455
  msgid "Cancel"
2456
  msgstr "キャンセル"
2457
 
@@ -2460,6 +1826,12 @@ msgstr "キャンセル"
2460
  msgid "ID"
2461
  msgstr "ID"
2462
 
 
 
 
 
 
 
2463
  #: modules/mycred-module-management.php:753
2464
  #: addons/gateway/event-booking/mycred-eventespresso3.php:307
2465
  #: addons/gateway/event-booking/mycred-eventespresso3.php:332
@@ -2479,17 +1851,17 @@ msgstr "現在の残高"
2479
  #: addons/transfer/includes/mycred-transfer-widgets.php:105
2480
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
2481
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
2482
- #: addons/buy-creds/modules/buycred-module-pending.php:269
2483
- #: addons/buy-creds/modules/buycred-module-pending.php:615
2484
- #: addons/buy-creds/modules/buycred-module-pending.php:733
2485
  msgid "Amount"
2486
- msgstr "金額"
2487
 
2488
  #: modules/mycred-module-management.php:770
2489
  msgid "A positive or negative value"
2490
  msgstr "正または負の値"
2491
 
2492
- #: modules/mycred-module-management.php:796 modules/mycred-module-log.php:929
2493
  #: addons/gateway/event-booking/mycred-eventespresso3.php:518
2494
  msgid "Log Entry"
2495
  msgstr "ログ履歴"
@@ -2502,6 +1874,14 @@ msgstr "ログ履歴"
2502
  msgid "optional"
2503
  msgstr "オプション"
2504
 
 
 
 
 
 
 
 
 
2505
  #: modules/mycred-module-settings.php:138
2506
  msgid "Accounts successfully reset"
2507
  msgstr "アカウントを正常にリセット"
@@ -2536,11 +1916,19 @@ msgstr "警告!すべてのユーザーの残りポイントはゼロに設定
2536
 
2537
  #: modules/mycred-module-settings.php:429
2538
  msgid "Done!"
2539
- msgstr "なし!"
2540
 
2541
- #: modules/mycred-module-settings.php:431
2542
- msgid "Export users %plural%"
2543
- msgstr "%plural% ユーザーのエクスポート"
 
 
 
 
 
 
 
 
2544
 
2545
  #: modules/mycred-module-settings.php:468
2546
  #: modules/mycred-module-settings.php:480
@@ -2550,13 +1938,23 @@ msgstr "小数部分なし"
2550
  #: modules/mycred-module-settings.php:492
2551
  #, php-format
2552
  msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
2553
- msgstr "<a href=\"%s\">ここをクリック</a>して既定ポイントを変更する種類のセットアップを実行します。"
2554
 
2555
  #: modules/mycred-module-settings.php:530
2556
  #, php-format
2557
  msgid "%s Settings"
2558
  msgstr "%s 設定"
2559
 
 
 
 
 
 
 
 
 
 
 
2560
  #: modules/mycred-module-settings.php:539
2561
  msgid "Core Settings"
2562
  msgstr "コアの設定"
@@ -2564,18 +1962,53 @@ msgstr "コアの設定"
2564
  #: modules/mycred-module-settings.php:544 includes/mycred-setup.php:275
2565
  #: addons/gateway/event-booking/mycred-eventespresso3.php:460
2566
  #: addons/gateway/event-booking/mycred-eventsmanager.php:658
2567
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
2568
  msgid "Labels"
2569
  msgstr "ラベル"
2570
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2571
  #: modules/mycred-module-settings.php:562 includes/mycred-setup.php:293
2572
- #: addons/email-notices/myCRED-addon-email-notices.php:1405
2573
  msgid "Format"
2574
- msgstr "フォーマット"
2575
 
2576
  #: modules/mycred-module-settings.php:566 includes/mycred-setup.php:297
2577
  msgid "Prefix"
2578
- msgstr "前に"
2579
 
2580
  #: modules/mycred-module-settings.php:572 includes/mycred-setup.php:303
2581
  msgid "Separators"
@@ -2597,12 +2030,20 @@ msgstr "ヒント"
2597
  msgid ""
2598
  "As this is your main point type, the value you select here will be the "
2599
  "largest number of decimals your installation will support."
2600
- msgstr "これはあなたの主なポイントの種類は、ここで選択する値は、インストールをサポート最大桁数になります。"
2601
 
2602
  #: modules/mycred-module-settings.php:600 includes/mycred-setup.php:328
2603
  msgid "Security"
2604
  msgstr "セキュリティ"
2605
 
 
 
 
 
 
 
 
 
2606
  #: modules/mycred-module-settings.php:647
2607
  msgid "Delete log entries when user is deleted."
2608
  msgstr "ユーザーが削除されたときにログ履歴を削除します。"
@@ -2611,33 +2052,33 @@ msgstr "ユーザーが削除されたときにログ履歴を削除します。
2611
  msgid "Management"
2612
  msgstr "管理"
2613
 
2614
- #: modules/mycred-module-settings.php:678 modules/mycred-module-log.php:433
2615
  msgid "Entries"
2616
- msgstr "エントリー"
2617
 
2618
  #: modules/mycred-module-settings.php:684
2619
  #: modules/mycred-module-settings.php:709
2620
- #: addons/ranks/myCRED-addon-ranks.php:1665
2621
- #: addons/buy-creds/modules/buycred-module-pending.php:450
2622
- #: addons/buy-creds/modules/buycred-module-pending.php:736
2623
  msgid "Actions"
2624
  msgstr "アクション"
2625
 
2626
  #: modules/mycred-module-settings.php:687
2627
  msgid "Empty Log"
2628
- msgstr "空のログ"
2629
 
2630
  #: modules/mycred-module-settings.php:703
2631
- #: addons/ranks/myCRED-addon-ranks.php:1076
2632
- #: addons/badges/myCRED-addon-badges.php:400
2633
  msgid "Users"
2634
  msgstr "ユーザー"
2635
 
2636
  #: modules/mycred-module-settings.php:711
2637
  msgid "Set all to zero"
2638
- msgstr "すべてをゼロに設定します。"
2639
 
2640
- #: modules/mycred-module-settings.php:728 includes/mycred-widgets.php:573
2641
  #: addons/transfer/myCRED-addon-transfer.php:370
2642
  #: addons/sell-content/myCRED-addon-sell-content.php:581
2643
  #: addons/transfer/includes/mycred-transfer-widgets.php:121
@@ -2645,72 +2086,82 @@ msgstr "すべてをゼロに設定します。"
2645
  msgid "Point Types"
2646
  msgstr "ポイントタイプ"
2647
 
2648
- #: modules/mycred-module-settings.php:742
2649
- #: modules/mycred-module-settings.php:768
2650
- #: modules/mycred-module-settings.php:798
2651
  msgid "Meta Key"
2652
  msgstr "メタキー"
2653
 
2654
- #: modules/mycred-module-settings.php:748
2655
- #: modules/mycred-module-settings.php:774
2656
- #: modules/mycred-module-settings.php:804
2657
  #: addons/email-notices/myCRED-addon-email-notices.php:578
2658
  #: addons/gateway/carts/mycred-woocommerce.php:155
2659
  msgid "Label"
2660
- msgstr "ラベル"
2661
 
2662
- #: modules/mycred-module-settings.php:755
2663
- #: modules/mycred-module-settings.php:781
2664
  #: includes/classes/class.query-log.php:1019
2665
  #: includes/classes/class.query-log.php:1622
2666
  #: addons/banking/services/mycred-service-payouts.php:472
2667
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
2668
  msgid "Delete"
2669
- msgstr "削除"
2670
 
2671
- #: modules/mycred-module-settings.php:794
2672
  msgid "Add New Type"
2673
  msgstr "新しいタイプを追加"
2674
 
2675
- #: modules/mycred-module-settings.php:810
2676
  msgid ""
2677
  "The meta key must be lowercase and only contain letters or underscores. All "
2678
  "other characters will be deleted!"
2679
- msgstr "メタキーは小文字でのみ、文字またはアンダースコアが含まれている必要があります。他のすべての文字が削除されます!"
2680
 
2681
- #: modules/mycred-module-settings.php:822
2682
  #: addons/gateway/event-booking/mycred-eventespresso3.php:551
2683
  #: addons/buy-creds/modules/buycred-module-core.php:650
2684
  msgid "Update Settings"
2685
- msgstr "更新設定"
2686
 
2687
- #: modules/mycred-module-settings.php:831
2688
  msgid "Identify users by"
2689
  msgstr "ユーザーを識別する"
2690
 
2691
- #: modules/mycred-module-settings.php:837
2692
  msgid "User ID"
2693
- msgstr "ユーザーID"
2694
 
2695
- #: modules/mycred-module-settings.php:838
2696
  msgid "User Email"
2697
  msgstr "ユーザーのメール"
2698
 
2699
- #: modules/mycred-module-settings.php:839
2700
  msgid "User Login"
2701
  msgstr "ユーザーログイン"
2702
 
2703
  #: modules/mycred-module-settings.php:852
 
 
 
 
 
 
 
 
 
 
 
2704
  #, php-format
2705
  msgid ""
2706
  "Optional log entry to use if you intend to import this file in a different "
2707
  "%s installation."
2708
  msgstr "あなたは別の %s のインストール中にこのファイルをインポートする場合は、オプションのログエントリに使用する。"
2709
 
2710
- #: modules/mycred-module-settings.php:855 modules/mycred-module-export.php:236
2711
- #: modules/mycred-module-export.php:263 modules/mycred-module-export.php:313
2712
  msgid "Export"
2713
- msgstr "エクスポート"
2714
 
2715
  #: modules/mycred-module-addons.php:25 modules/mycred-module-addons.php:26
2716
  #: includes/mycred-setup.php:171
@@ -2726,16 +2177,6 @@ msgid ""
2726
  "Setup recurring payouts or offer / charge interest on user account balances."
2727
  msgstr "支払いまたはオファーを繰り返しセットアップ / ユーザーアカウント残高の利息をチャージ。"
2728
 
2729
- #: modules/mycred-module-addons.php:197
2730
- msgid ""
2731
- "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
2732
- "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
2733
- "also let your users buy points for other members."
2734
- msgstr ""
2735
- "<strong>購入</strong>CREDアドオン PayPal、Skrill (マネーブッカーズ) または NETbilling "
2736
- "を使用してポイントを購入するユーザーことができます。<strong>購入</strong>"
2737
- "CREDまた他のメンバーのためのポイントを購入するユーザーをさせることができます。"
2738
-
2739
  #: modules/mycred-module-addons.php:208
2740
  msgid ""
2741
  "The coupons add-on allows you to create coupons that users can use to add "
@@ -2744,28 +2185,12 @@ msgstr "クーポンアドオンでは、ユーザーが自分のアカウント
2744
 
2745
  #: modules/mycred-module-addons.php:219
2746
  msgid "Create email notices for any type of myCRED instance."
2747
- msgstr "myCREDインスタンスの任意のタイプのメール通知を作成します。"
2748
-
2749
- #: modules/mycred-module-addons.php:230
2750
- msgid ""
2751
- "Let your users pay using their <strong>my</strong>CRED points balance. "
2752
- "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
2753
- "Bookings: Event Espresso and Events Manager (free & pro)."
2754
- msgstr ""
2755
- "ユーザーは<strong>my</strong>CREDポイント残高を使用して支払うことができます。サポートされているカートは: "
2756
- "WooCommerce、MarketPress、WP E-コマース、サポートされているイベントの予約: イベントエスプレッソ、イベントマネージャー "
2757
- "(無料 & プロ)。"
2758
 
2759
  #: modules/mycred-module-addons.php:241
2760
  msgid "Create pop-up notifications for when users gain or loose points."
2761
  msgstr "ユーザーのポイントの獲得や消失をポップアップ通知を作成します。"
2762
 
2763
- #: modules/mycred-module-addons.php:253
2764
- msgid ""
2765
- "Create ranks for users reaching a certain number of %_plural% with the "
2766
- "option to add logos for each rank."
2767
- msgstr "各ランクのロゴを追加するオプションで %_plural% 数に到達したユーザーのためのランクを作成します。"
2768
-
2769
  #: modules/mycred-module-addons.php:264
2770
  msgid ""
2771
  "This add-on allows you to sell posts, pages or any public post types on your "
@@ -2775,6 +2200,12 @@ msgstr ""
2775
  "このアドオンは、投稿、ページまたはあなたのウェブサイト上の公開の投稿タイプを販売することができます。あなたが全体のコンテンツを販売または "
2776
  "\"teasers\" を提供できるように、コンテンツの一部を販売私たちのショート コードを使用することができます\"。"
2777
 
 
 
 
 
 
 
2778
  #: modules/mycred-module-addons.php:286
2779
  msgid ""
2780
  "Allow your users to send or \"donate\" points to other members by either "
@@ -2802,7 +2233,7 @@ msgstr "アドオンを有効にします。"
2802
 
2803
  #: modules/mycred-module-addons.php:406
2804
  msgid "Activate"
2805
- msgstr "アクティブ化"
2806
 
2807
  #: modules/mycred-module-addons.php:412
2808
  msgid "Deactivate Add-on"
@@ -2810,14 +2241,14 @@ msgstr "アドオンを無効化します。"
2810
 
2811
  #: modules/mycred-module-addons.php:413
2812
  msgid "Deactivate"
2813
- msgstr "非アクティブ化"
2814
 
2815
  #: modules/mycred-module-log.php:24 modules/mycred-module-log.php:25
2816
  #: addons/gateway/event-booking/mycred-eventespresso3.php:515
2817
  msgid "Log"
2818
  msgstr "履歴"
2819
 
2820
- #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:906
2821
  #: includes/classes/class.query-export.php:263
2822
  #: includes/classes/class.query-export.php:371
2823
  #: includes/classes/class.query-log.php:891
@@ -2835,40 +2266,52 @@ msgstr "行削除"
2835
  msgid "Log entry not found"
2836
  msgstr "エントリのログが見つからない"
2837
 
2838
- #: modules/mycred-module-log.php:467
2839
  msgid "Edit Log Entry"
2840
  msgstr "ログ履歴の編集"
2841
 
2842
- #: modules/mycred-module-log.php:471
2843
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
2844
  msgstr "あなたはこのログ履歴を削除してもよろしいていますか?これは元に戻すことはできません!"
2845
 
2846
- #: modules/mycred-module-log.php:502
2847
  msgid "Search results for"
2848
  msgstr "検索結果"
2849
 
2850
- #: modules/mycred-module-log.php:554
2851
  #, php-format
2852
  msgid "%s Log"
2853
  msgstr "%s ログ"
2854
 
2855
- #: modules/mycred-module-log.php:564
2856
  msgid ""
2857
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
2858
  "Certain hooks and shortcodes will not work correctly!"
2859
  msgstr "警告。必須 Mcrypt PHP ライブラリはこのサーバーにインストールされていません!一部のフックとショートコードが正しく動作しません!"
2860
 
2861
- #: modules/mycred-module-log.php:666
2862
  #, php-format
2863
  msgid "My %s History"
2864
  msgstr "My %s 履歴"
2865
 
 
 
 
 
 
 
 
 
 
 
 
 
2866
  #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:275
2867
  msgid "Master Template"
2868
  msgstr "マスター テンプレート"
2869
 
2870
  #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:280
2871
- #: modules/mycred-module-network.php:296 modules/mycred-module-export.php:354
2872
  #: addons/sell-content/myCRED-addon-sell-content.php:481
2873
  msgid "Enabled"
2874
  msgstr "有効化"
@@ -2885,10 +2328,10 @@ msgstr "%s ネットワーク"
2885
  #: modules/mycred-module-network.php:257
2886
  #, php-format
2887
  msgid "Note! %s has not yet been setup."
2888
- msgstr "注意!%s がセットアップをまだされていません。"
2889
 
2890
  #: modules/mycred-module-network.php:285 modules/mycred-module-network.php:301
2891
- #: modules/mycred-module-export.php:353 plugins/mycred-hook-affiliatewp.php:362
2892
  #: addons/sell-content/myCRED-addon-sell-content.php:396
2893
  #: addons/sell-content/myCRED-addon-sell-content.php:480
2894
  #: addons/buy-creds/modules/buycred-module-core.php:1127
@@ -2903,6 +2346,10 @@ msgstr "集中ログ記録"
2903
  msgid "Site Block"
2904
  msgstr "サイトのブロック"
2905
 
 
 
 
 
2906
  #: modules/mycred-module-network.php:314
2907
  #, php-format
2908
  msgid "Comma separated list of blog ids where %s is to be disabled."
@@ -2912,35 +2359,54 @@ msgstr "コンマで区切った一覧のブログIDで %s が無効になりま
2912
  msgid "Save Network Settings"
2913
  msgstr "ネットワーク設定を保存します。"
2914
 
2915
- #: modules/mycred-module-export.php:285 modules/mycred-module-export.php:332
2916
  #: includes/classes/class.query-log.php:1687
2917
  msgid ""
2918
  "Log entries are exported to a CSV file and depending on the number of "
2919
  "entries selected, the process may take a few seconds."
2920
  msgstr "ログ履歴はCSVファイルにエクスポートされ選択されたエントリの数に応じて処理には数秒かかる場合があります。"
2921
 
2922
- #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2923
  #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
2924
  #: includes/importers/mycred-cubepoints.php:353
2925
  #: includes/classes/class.query-export.php:263
2926
  #: includes/classes/class.query-export.php:391
2927
- #: addons/ranks/myCRED-addon-ranks.php:1079
2928
- #: addons/ranks/myCRED-addon-ranks.php:1247
2929
- #: addons/ranks/myCRED-addon-ranks.php:1254
2930
  #: addons/email-notices/myCRED-addon-email-notices.php:280
2931
  #: addons/email-notices/myCRED-addon-email-notices.php:585
2932
  #: addons/coupons/myCRED-addon-coupons.php:256
2933
  #: addons/coupons/myCRED-addon-coupons.php:520
2934
  #: addons/gateway/event-booking/mycred-eventespresso3.php:483
2935
  #: addons/gateway/event-booking/mycred-eventsmanager.php:604
2936
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611
2937
  #: addons/gateway/carts/mycred-wpecommerce.php:383
2938
  #: addons/gateway/carts/mycred-woocommerce.php:125
2939
  #: addons/gateway/carts/mycred-woocommerce.php:166
2940
- #: addons/buy-creds/modules/buycred-module-pending.php:557
2941
- #: addons/buy-creds/modules/buycred-module-pending.php:735
2942
  msgid "Point Type"
2943
- msgstr "ポイントの種類"
 
 
 
 
2944
 
2945
  #: modules/mycred-module-buddypress.php:31
2946
  msgid "My History"
@@ -2987,31 +2453,35 @@ msgstr "今週"
2987
  msgid "This Month"
2988
  msgstr "今月"
2989
 
 
 
 
 
2990
  #: modules/mycred-module-buddypress.php:352
2991
  msgid "Go"
2992
- msgstr "行く"
2993
 
2994
  #: modules/mycred-module-buddypress.php:404
2995
  #: modules/mycred-module-buddypress.php:411
2996
- #: addons/badges/myCRED-addon-badges.php:1140
2997
- #: addons/badges/myCRED-addon-badges.php:1174
2998
  #: addons/gateway/carts/mycred-woocommerce.php:147
2999
  msgid "Do not show"
3000
  msgstr "表示しない"
3001
 
3002
  #: modules/mycred-module-buddypress.php:405
3003
- #: addons/badges/myCRED-addon-badges.php:1141
3004
  msgid "Include in Profile Header"
3005
  msgstr "プロフィールのヘッダーに含める"
3006
 
3007
  #: modules/mycred-module-buddypress.php:406
3008
- #: addons/ranks/myCRED-addon-ranks.php:1478
3009
- #: addons/badges/myCRED-addon-badges.php:1142
3010
  msgid "Include under the \"Profile\" tab"
3011
  msgstr "\"プロフィール\" タブの下に挿入"
3012
 
3013
  #: modules/mycred-module-buddypress.php:407
3014
- #: addons/badges/myCRED-addon-badges.php:1143
3015
  msgid "Include under the \"Profile\" tab and Profile Header"
3016
  msgstr "\"プロフィール\" タブとプロフィールのヘッダーの下に挿入"
3017
 
@@ -3023,20 +2493,24 @@ msgstr "プロフィールを表示します。"
3023
  msgid "%singular% Balance"
3024
  msgstr "%singular% 残高"
3025
 
 
 
 
 
3026
  #: modules/mycred-module-buddypress.php:453
3027
- #: addons/ranks/myCRED-addon-ranks.php:1493
3028
- #: addons/ranks/myCRED-addon-ranks.php:1534
3029
  #: addons/notifications/myCRED-addon-notifications.php:198
3030
  msgid "Template"
3031
- msgstr "テンプレート"
3032
 
3033
  #: modules/mycred-module-buddypress.php:463
3034
  msgid "%plural% History"
3035
- msgstr "%plural% 履歴"
3036
 
3037
  #: modules/mycred-module-buddypress.php:477
3038
  msgid "Members can view each others %_plural% history."
3039
- msgstr "メンバーはお互いの %_plural% の履歴を表示することができます。"
3040
 
3041
  #: modules/mycred-module-buddypress.php:482
3042
  msgid "Menu Title"
@@ -3071,11 +2545,9 @@ msgstr "表示する履歴エントリの数"
3071
  msgid "Invite Anyone Plugin"
3072
  msgstr "誰でも招待プラグイン"
3073
 
3074
- #: plugins/mycred-hook-invite-anyone.php:16
3075
- msgid ""
3076
- "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
3077
- "accepted."
3078
- msgstr "招待受け入れられた場合の招待状及び/または %_plural% を送信するための %_plural% 賞。"
3079
 
3080
  #: plugins/mycred-hook-invite-anyone.php:215
3081
  #: plugins/mycred-hook-invite-anyone.php:239
@@ -3109,10 +2581,10 @@ msgstr "招待受け入れられた場合の招待状及び/または %_plural%
3109
  #: plugins/mycred-hook-buddypress-media.php:348
3110
  #: plugins/mycred-hook-wp-favorite-posts.php:228
3111
  #: plugins/mycred-hook-wp-favorite-posts.php:240
3112
- #: plugins/mycred-hook-contact-form7.php:169
3113
  #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:485
3114
  #: plugins/mycred-hook-bbPress.php:536 plugins/mycred-hook-bbPress.php:560
3115
- #: plugins/mycred-hook-woocommerce.php:510
3116
  #: includes/shortcodes/mycred_hook_table.php:79
3117
  msgid "Limit"
3118
  msgstr "制限"
@@ -3158,28 +2630,92 @@ msgstr "制限"
3158
  #: plugins/mycred-hook-buddypress-media.php:372
3159
  #: plugins/mycred-hook-buddypress-media.php:390
3160
  #: plugins/mycred-hook-buddypress-media.php:408
3161
- #: plugins/mycred-hook-contact-form7.php:175
3162
  #: plugins/mycred-hook-jetpack.php:549 plugins/mycred-hook-jetpack.php:567
3163
  #: plugins/mycred-hook-bbPress.php:449 plugins/mycred-hook-bbPress.php:467
3164
  #: plugins/mycred-hook-bbPress.php:491 plugins/mycred-hook-bbPress.php:518
3165
  #: plugins/mycred-hook-bbPress.php:542 plugins/mycred-hook-bbPress.php:566
3166
  #: plugins/mycred-hook-bbPress.php:593
3167
- #: addons/badges/myCRED-addon-badges.php:949
3168
  msgid "Log template"
3169
  msgstr "ログテンプレート"
3170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3171
  #: plugins/mycred-hook-wp-polls.php:15
3172
  msgid "WP-Polls"
3173
  msgstr "WP-Polls(世論調査)"
3174
 
3175
- #: plugins/mycred-hook-wp-polls.php:16
3176
- msgid "Awards %_plural% for users voting in polls."
3177
- msgstr "世論調査で投票ユーザーのための %_plural% 賞。"
3178
-
3179
  #: plugins/mycred-hook-wp-polls.php:177
3180
  #: plugins/mycred-hook-wp-favorite-posts.php:273
3181
  #: plugins/mycred-hook-wp-favorite-posts.php:288
3182
- #: plugins/mycred-hook-woocommerce.php:516 plugins/mycred-hook-badgeOS.php:144
3183
  #: plugins/mycred-hook-badgeOS.php:146 plugins/mycred-hook-badgeOS.php:157
3184
  #: plugins/mycred-hook-badgeOS.php:327 plugins/mycred-hook-badgeOS.php:345
3185
  #: addons/coupons/myCRED-addon-coupons.php:764
@@ -3197,69 +2733,85 @@ msgstr "ログテンプレート"
3197
  msgid "Post Ratings"
3198
  msgstr "投稿評価"
3199
 
3200
- #: plugins/mycred-hook-wp-postratings.php:16
3201
- msgid ""
3202
- "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
3203
- "author and the user rating."
3204
- msgstr "投稿評価のための %_plural% 賞。%_plural% を授与の両方をサポートし著者とユーザーの評価を投稿する。"
 
 
 
 
 
 
 
 
3205
 
3206
- #: plugins/mycred-hook-wp-postratings.php:85
3207
- msgid "Based on rating"
3208
- msgstr "基本の評価"
 
 
3209
 
3210
  #: plugins/mycred-hook-wp-postratings.php:192
3211
  #: plugins/mycred-hook-wp-postratings.php:199
3212
  msgid "Use the Rating Value instead of the amount set here."
3213
  msgstr "ここでは設定数量の代わりに評価値を使用します。"
3214
 
 
 
 
 
 
3215
  #: plugins/mycred-hook-gravityforms.php:15
3216
  msgid "Gravityform Submissions"
3217
  msgstr "重力フォーム送信"
3218
 
3219
- #: plugins/mycred-hook-gravityforms.php:16
3220
- msgid "Awards %_plural% for successful form submissions."
3221
- msgstr "成功したフォームの送信のための %_plural% 賞"
3222
-
3223
  #: plugins/mycred-hook-gravityforms.php:130
3224
- #: plugins/mycred-hook-contact-form7.php:131
3225
  msgid "No forms found."
3226
- msgstr "いいえフォームがみつかりませんでした。"
3227
 
3228
- #: plugins/mycred-hook-simplepress.php:16
3229
- msgid "Awards %_plural% for Simple:Press actions."
3230
- msgstr "シンプルの %_plural% 賞: プレスアクション。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3231
 
3232
  #: plugins/mycred-hook-buddypress.php:16
3233
  msgid "BuddyPress: Members"
3234
- msgstr "BuddyPress: メンバー"
3235
-
3236
- #: plugins/mycred-hook-buddypress.php:17
3237
- msgid "Awards %_plural% for profile related actions."
3238
- msgstr "プロフィール関連のアクションのための %_plural% 賞"
3239
 
3240
  #: plugins/mycred-hook-buddypress.php:25
3241
  msgid "BuddyPress: Groups"
3242
  msgstr "BuddyPress: グループ"
3243
 
3244
- #: plugins/mycred-hook-buddypress.php:26
3245
- msgid ""
3246
- "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
3247
- "zero to disable a specific hook."
3248
- msgstr ""
3249
- "グループ関連のアクションのための %_plural% 賞。 マイナスを使用して特定のフックを無効にゼロまたは %_plural% を控除します。"
3250
-
3251
  #: plugins/mycred-hook-buddypress.php:310
3252
  #: addons/gateway/event-booking/mycred-eventsmanager.php:692
3253
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:727
3254
  #: addons/gateway/carts/mycred-wpecommerce.php:415
3255
  msgid "Insufficient Funds"
3256
  msgstr "残高不足"
3257
 
3258
- #: plugins/mycred-hook-buddypress.php:735
3259
- msgid ""
3260
- "Users with zero balance can not add friends. Requires that you deduct "
3261
- "%_plural% for adding a new friend."
3262
- msgstr "ゼロの残高を持つユーザーの友人を追加できません。新しい友達を追加するための %_plural% を控除する必要があります。"
3263
 
3264
  #: plugins/mycred-hook-buddypress.php:784
3265
  #: includes/classes/class.query-log.php:2189
@@ -3271,6 +2823,28 @@ msgstr "削除されたコメント"
3271
  msgid "Sending Gift"
3272
  msgstr "ギフト送信"
3273
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3274
  #: plugins/mycred-hook-affiliatewp.php:15
3275
  msgid "AffiliateWP"
3276
  msgstr "AffiliateWP"
@@ -3279,7 +2853,7 @@ msgstr "AffiliateWP"
3279
  msgid ""
3280
  "Awards %_plural% for affiliate signups, referring visitors and store sale "
3281
  "referrals."
3282
- msgstr "アフィリエイトの会員登録を参照する訪問者と店舗販売の紹介のための %_plural% 賞"
3283
 
3284
  #: plugins/mycred-hook-affiliatewp.php:287
3285
  msgid "Affiliate Signup"
@@ -3297,7 +2871,6 @@ msgstr "セールス参照"
3297
  #: includes/shortcodes/mycred_exchange.php:75
3298
  #: addons/gateway/event-booking/mycred-eventespresso3.php:498
3299
  #: addons/gateway/event-booking/mycred-eventsmanager.php:634
3300
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:650
3301
  #: addons/gateway/carts/mycred-wpecommerce.php:389
3302
  #: addons/gateway/carts/mycred-woocommerce.php:136
3303
  msgid "Exchange Rate"
@@ -3321,10 +2894,6 @@ msgstr "ログテンプレート - 払い戻し"
3321
  msgid "Events Manager"
3322
  msgstr "イベントマネージャー"
3323
 
3324
- #: plugins/mycred-hook-events-manager-light.php:16
3325
- msgid "Awards %_plural% for users attending events."
3326
- msgstr "イベントに参加したユーザーのための %_plural% 賞"
3327
-
3328
  #: plugins/mycred-hook-events-manager-light.php:201
3329
  msgid "Attending Event"
3330
  msgstr "出席する"
@@ -3335,13 +2904,7 @@ msgstr "出席キャンセル"
3335
 
3336
  #: plugins/mycred-hook-sharethis.php:15
3337
  msgid "%plural% for Sharing"
3338
- msgstr "%plural% の共有"
3339
-
3340
- #: plugins/mycred-hook-sharethis.php:16
3341
- msgid ""
3342
- "Awards %_plural% for users sharing / liking your website content to popular "
3343
- "social media sites."
3344
- msgstr "ユーザーの共有で %_plural% 賞 / 人気のあるソーシャル メディア サイトにあなたのウェブサイトのコンテンツをシェアする。"
3345
 
3346
  #: plugins/mycred-hook-sharethis.php:216
3347
  msgid "Your ShareThis public key is not set."
@@ -3355,11 +2918,6 @@ msgstr "ShareThis のサービスが検出なし。インストールを確認
3355
  msgid "rtMedia Galleries"
3356
  msgstr "rtMediaギャラリー"
3357
 
3358
- #: plugins/mycred-hook-buddypress-media.php:16
3359
- msgid ""
3360
- "Award / Deduct %_plural% for users creating albums or uploading new photos."
3361
- msgstr "ユーザーがアルバムを作成したり、新しい写真をアップロードするための %_plural% 賞 / 控除。"
3362
-
3363
  #: plugins/mycred-hook-buddypress-media.php:290
3364
  #: includes/classes/class.query-log.php:2223
3365
  msgid "Photo Upload"
@@ -3379,10 +2937,6 @@ msgstr "オーディオアップロード"
3379
  msgid "WP Favorite Posts"
3380
  msgstr "WP お気に入り投稿"
3381
 
3382
- #: plugins/mycred-hook-wp-favorite-posts.php:16
3383
- msgid "Awards %_plural% for users adding posts to their favorites."
3384
- msgstr "お気に入りにポストを追加するユーザーのための %_plural% 賞。"
3385
-
3386
  #: plugins/mycred-hook-wp-favorite-posts.php:218
3387
  msgid "Adding Content to Favorites"
3388
  msgstr "お気に入りへのコンテンツの追加"
@@ -3395,19 +2949,9 @@ msgstr "お気に入りからコンテンツを削除する"
3395
  msgid "Contact Form 7 Form Submissions"
3396
  msgstr "Contact Form 7 のフォーム送信"
3397
 
3398
- #: plugins/mycred-hook-contact-form7.php:16
3399
- msgid "Awards %_plural% for successful form submissions (by logged in users)."
3400
- msgstr "フォーム送信に成功した %_plural% 賞 (ログインユーザーのみ)."
3401
-
3402
  #: plugins/mycred-hook-jetpack.php:15
3403
  msgid "Jetpack Subscriptions"
3404
- msgstr "Jetpack購読"
3405
-
3406
- #: plugins/mycred-hook-jetpack.php:16
3407
- msgid ""
3408
- "Awards %_plural% for users signing up for site or comment updates using "
3409
- "Jetpack."
3410
- msgstr "Jetpackのを使用してサイトまたはコメントの更新プログラムのためにサインアップするユーザーのための %_plural% 賞。"
3411
 
3412
  #: plugins/mycred-hook-jetpack.php:539
3413
  msgid "Site Subscriptions"
@@ -3419,33 +2963,28 @@ msgstr "コメントの購読"
3419
 
3420
  #: plugins/mycred-hook-bbPress.php:16
3421
  msgid "Awards %_plural% for bbPress actions."
3422
- msgstr "%_plural% 賞のbbPress アクション。"
3423
 
3424
- #: plugins/mycred-hook-bbPress.php:501
3425
- msgid "Forum authors can receive %_plural% for creating new topics."
3426
- msgstr "フォーラム著者は新しいトピックを作成するための %_plural% を受け取ることができます。"
3427
 
3428
- #: plugins/mycred-hook-bbPress.php:605
3429
- msgid "Show users %_plural% balance in replies"
3430
- msgstr "返信の残高 %_plural% をユーザーに表示します。"
3431
 
3432
  #: plugins/mycred-hook-woocommerce.php:91
3433
  #: plugins/mycred-hook-woocommerce.php:157
3434
  msgid "Reward with %plural%"
3435
- msgstr "%plural% で報酬"
3436
 
3437
- #: plugins/mycred-hook-woocommerce.php:384
3438
  msgid "WooCommerce Product Reviews"
3439
  msgstr "WooCommerce 商品レビュー"
3440
 
3441
- #: plugins/mycred-hook-woocommerce.php:385
3442
- msgid ""
3443
- "Awards %_plural% for users leaving reviews on your WooCommerce products."
3444
- msgstr "あなたのWooCommerceは製品のレビューを残すユーザーのための %_plural% 賞。"
3445
-
3446
  #: plugins/mycred-hook-badgeOS.php:15
3447
  msgid "BadgeOS"
3448
- msgstr "バッジOS"
3449
 
3450
  #: plugins/mycred-hook-badgeOS.php:16
3451
  msgid ""
@@ -3458,11 +2997,11 @@ msgstr "それぞれのバッジOS達成タイプのデフォルト設定。こ
3458
  msgid ""
3459
  "Please setup your <a href=\"%s\">default settings</a> before using this "
3460
  "feature."
3461
- msgstr "<a href=\"%s\">デフォルト設定</a>にこの機能を使用する前にセットアップしてください。"
3462
 
3463
  #: plugins/mycred-hook-badgeOS.php:138 plugins/mycred-hook-badgeOS.php:140
3464
  msgid "%plural% to Award"
3465
- msgstr "%plural%"
3466
 
3467
  #: plugins/mycred-hook-badgeOS.php:142
3468
  msgid "Use zero to disable"
@@ -3470,7 +3009,7 @@ msgstr "無効にするにはゼロを使用しする"
3470
 
3471
  #: plugins/mycred-hook-badgeOS.php:155
3472
  msgid "Deduction Log Template"
3473
- msgstr "控除ログテンプレート"
3474
 
3475
  #: includes/mycred-setup.php:50
3476
  msgid "myCRED needs your attention."
@@ -3478,17 +3017,64 @@ msgstr "myCRED はあなたの注意が必要です。"
3478
 
3479
  #: includes/mycred-setup.php:50
3480
  msgid "Run Setup"
3481
- msgstr "セットアップを実行"
3482
 
3483
  #: includes/mycred-setup.php:63 includes/mycred-setup.php:64
3484
  msgid "myCRED Setup"
3485
- msgstr "myCREDセットアップ"
3486
 
3487
  #: includes/mycred-setup.php:105
3488
  #: addons/sell-content/myCRED-addon-sell-content.php:639
3489
  #, php-format
3490
  msgid "%s Setup"
3491
- msgstr "%s セットアップ"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3492
 
3493
  #: includes/mycred-remote.php:581
3494
  msgid "This feature requires WordPress Permalinks to be setup and enabled!"
@@ -3496,19 +3082,19 @@ msgstr "この機能はワードプレスのパーマリンクを設定か有効
3496
 
3497
  #: includes/mycred-remote.php:585
3498
  msgid "Click Update Settings to load the Remote API settings."
3499
- msgstr "リモート API 設定を読み込むときの更新の設定をクリックします。"
3500
 
3501
  #: includes/mycred-remote.php:588
3502
  msgid "Allow Remote Access"
3503
- msgstr "リモート アクセスを許可します。"
3504
 
3505
  #: includes/mycred-remote.php:613
3506
  msgid "Remote Access"
3507
- msgstr "リモート アクセス"
3508
 
3509
  #: includes/mycred-remote.php:615 addons/buy-creds/gateways/bitpay.php:245
3510
  msgid "API Key"
3511
- msgstr "API Key"
3512
 
3513
  #: includes/mycred-remote.php:618
3514
  msgid "Key"
@@ -3532,13 +3118,13 @@ msgstr "新しいキーを生成します。"
3532
 
3533
  #: includes/mycred-remote.php:630
3534
  msgid "Warning!"
3535
- msgstr "警告 "
3536
 
3537
  #: includes/mycred-remote.php:630
3538
  msgid ""
3539
  "Keep this key safe! Those you share this key with will be able to remotely "
3540
  "deduct / add / transfer %plural%!"
3541
- msgstr "このキーを安全に保つ !このキーを共有する人々 がリモートで控除 / 追加 / が %plural% を転送することができる !"
3542
 
3543
  #: includes/mycred-remote.php:632
3544
  msgid "Incoming URI"
@@ -3558,7 +3144,7 @@ msgstr "デバッグモード"
3558
  msgid ""
3559
  "Remember to disable when not used to prevent mischievous calls from learning "
3560
  "about your setup!"
3561
- msgstr "あなたのセットアップについての学習からいたずらの呼び出しを防ぐために使用しないときには無効にすることを忘れないでください!"
3562
 
3563
  #: includes/mycred-about.php:32
3564
  #, php-format
@@ -3582,11 +3168,19 @@ msgstr "受賞"
3582
 
3583
  #: includes/mycred-overview.php:89
3584
  msgid "Deducted"
3585
- msgstr "除外"
 
 
 
 
 
 
 
 
3586
 
3587
  #: includes/mycred-install.php:73
3588
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3589
- msgstr "myCREDは、SQL5.0以降が必要です。バージョンが検出されました:"
3590
 
3591
  #: includes/mycred-install.php:78
3592
  msgid ""
@@ -3611,7 +3205,7 @@ msgid "(%s) My Balance"
3611
  msgstr "私の残高 (%s) "
3612
 
3613
  #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
3614
- #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1369
3615
  #: addons/gateway/carts/mycred-woocommerce.php:96
3616
  #: addons/transfer/includes/mycred-transfer-widgets.php:91
3617
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:203
@@ -3630,7 +3224,7 @@ msgstr "履歴タイトル"
3630
 
3631
  #: includes/mycred-widgets.php:207
3632
  msgid "Number of entires"
3633
- msgstr "エントリの数"
3634
 
3635
  #: includes/mycred-widgets.php:211 includes/mycred-widgets.php:386
3636
  msgid "Row layout"
@@ -3643,7 +3237,7 @@ msgstr "ログインしていないときにメッセージを表示"
3643
  #: includes/mycred-widgets.php:222 includes/mycred-widgets.php:590
3644
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:35
3645
  msgid "Message"
3646
- msgstr "メッセージ"
3647
 
3648
  #: includes/mycred-widgets.php:282
3649
  #, php-format
@@ -3682,7 +3276,7 @@ msgstr "命令のオフセット (オプション)。最初のリストに戻る
3682
 
3683
  #: includes/mycred-widgets.php:396
3684
  msgid "Order"
3685
- msgstr "順序"
3686
 
3687
  #: includes/mycred-widgets.php:401 includes/classes/class.query-log.php:1081
3688
  msgid "Ascending"
@@ -3702,6 +3296,10 @@ msgid ""
3702
  "them at the end with their current position."
3703
  msgstr "現在のユーザがこのリーダーボードにない場合、あなたはそれらの現在位置と終了時にそれらを追加することを選択することができます。"
3704
 
 
 
 
 
3705
  #: includes/mycred-widgets.php:469
3706
  #, php-format
3707
  msgid "(%s) Wallet"
@@ -3719,74 +3317,102 @@ msgstr "ポイント"
3719
  msgid "Points"
3720
  msgstr "ポイント"
3721
 
3722
- #: includes/mycred-functions.php:466
3723
  msgid "Deleted"
3724
- msgstr "削除"
3725
 
3726
- #: includes/mycred-functions.php:607
3727
  msgid "Deleted Item"
3728
  msgstr "削除済みアイテム"
3729
 
3730
- #: includes/mycred-functions.php:671
3731
  #: addons/email-notices/myCRED-addon-email-notices.php:864
3732
  #: addons/gateway/carts/mycred-wpecommerce.php:370
3733
  msgid "General"
3734
- msgstr "一般"
3735
 
3736
- #: includes/mycred-functions.php:678
3737
  msgid "User Related"
3738
  msgstr "関連ユーザー"
3739
 
3740
- #: includes/mycred-functions.php:685
3741
  msgid "Post Related"
3742
  msgstr "関連投稿"
3743
 
3744
- #: includes/mycred-functions.php:692
3745
  msgid "Comment Related"
3746
  msgstr "関連コメント"
3747
 
3748
- #: includes/mycred-functions.php:699
3749
  msgid "Widget Related"
3750
  msgstr "関連ウィジェット"
3751
 
3752
- #: includes/mycred-functions.php:706
3753
  msgid "Amount Related"
3754
  msgstr "関連金額"
3755
 
3756
- #: includes/mycred-functions.php:713
3757
  msgid "Video Related"
3758
  msgstr "関連ビデオ"
3759
 
3760
- #: includes/mycred-functions.php:724
3761
  msgid "and"
3762
- msgstr ""
3763
 
3764
- #: includes/mycred-functions.php:726
3765
  msgid "Available Template Tags:"
3766
- msgstr "使用可能なテンプレートのタグ:"
3767
 
3768
- #: includes/mycred-functions.php:2777
3769
  msgid "in total"
3770
  msgstr "合計"
3771
 
3772
- #: includes/mycred-functions.php:2779
3773
  msgid "per day"
3774
  msgstr "1 日あたり"
3775
 
3776
- #: includes/mycred-functions.php:2782
3777
  msgid "per week"
3778
  msgstr "1週あたり"
3779
 
3780
- #: includes/mycred-functions.php:2785
3781
  msgid "per month"
3782
  msgstr "1月あたり"
3783
 
3784
- #: includes/mycred-functions.php:2787 includes/mycred-functions.php:2793
3785
  #, php-format
3786
  msgid "Maximum once"
3787
  msgid_plural "Maximum %d times"
3788
  msgstr[0] "最大回"
3789
- msgstr[1] "最大 %d 時間"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3790
 
3791
  #: includes/importers/mycred-cubepoints.php:282
3792
  msgid "No balances were imported."
@@ -3806,6 +3432,15 @@ msgstr ""
3806
  "完全なインポート - 合計<strong>%d</strong>の残高が正常にインポートされました。 <strong>%d</strong>"
3807
  "件のスキップがありました。"
3808
 
 
 
 
 
 
 
 
 
 
3809
  #: includes/importers/mycred-cubepoints.php:340
3810
  #: includes/importers/mycred-cubepoints.php:364
3811
  #: includes/importers/mycred-balances.php:323
@@ -3823,27 +3458,32 @@ msgstr "ログエントリのみ"
3823
 
3824
  #: includes/importers/mycred-cubepoints.php:346
3825
  msgid "CubePoints Balances Only"
3826
- msgstr "CubePoints残高のみ"
3827
 
3828
  #: includes/importers/mycred-cubepoints.php:347
3829
  msgid "Log Entries and Balances"
3830
  msgstr "ログ履歴および残高"
3831
 
 
 
 
 
 
3832
  #: includes/importers/mycred-balances.php:284
3833
  #: includes/importers/mycred-log-entries.php:280
3834
  msgid "Choose a file from your computer:"
3835
- msgstr "お使いのコンピュータからファイルを選択します。:"
3836
 
3837
  #: includes/importers/mycred-balances.php:290
3838
  #: includes/importers/mycred-log-entries.php:286
3839
  #, php-format
3840
  msgid "Maximum size: %s"
3841
- msgstr "最大サイズ:%s"
3842
 
3843
  #: includes/importers/mycred-balances.php:295
3844
  #: includes/importers/mycred-log-entries.php:291
3845
  msgid "OR enter path to file:"
3846
- msgstr "またはファイルへのパスを入力します。:"
3847
 
3848
  #: includes/importers/mycred-balances.php:303
3849
  #: includes/importers/mycred-log-entries.php:299
@@ -3856,16 +3496,35 @@ msgstr "メソッド"
3856
 
3857
  #: includes/importers/mycred-balances.php:315
3858
  msgid "Replace current balances with the amount in this CSV file"
3859
- msgstr "このCSVファイルに量と現在の残高を交換してください"
3860
 
3861
  #: includes/importers/mycred-balances.php:316
3862
  msgid "Adjust current balances according to the amount in this CSV file"
3863
- msgstr "このCSVファイルの量に応じて、現在の残高を調整します"
 
 
 
 
 
 
 
 
 
3864
 
3865
  #: includes/importers/mycred-log-entries.php:214
3866
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:100
3867
  msgid "View Log"
3868
- msgstr "ログの表示"
 
 
 
 
 
 
 
 
 
 
3869
 
3870
  #: includes/shortcodes/mycred_exchange.php:33
3871
  #: includes/shortcodes/mycred_exchange.php:41
@@ -3897,7 +3556,7 @@ msgstr "1 %s = <span class=\"rate\">%s</span> %s"
3897
 
3898
  #: includes/shortcodes/mycred_exchange.php:124
3899
  msgid "Point types not found."
3900
- msgstr "小数点タイプが見つかりません。"
3901
 
3902
  #: includes/shortcodes/mycred_exchange.php:169
3903
  #, php-format
@@ -3926,7 +3585,7 @@ msgstr "%s は %s に正常に交換しています。"
3926
 
3927
  #: includes/shortcodes/mycred_hook_table.php:21
3928
  msgid "No instances found for this point type"
3929
- msgstr "インスタンスはこのポイントタイプにみつかりませんでした。"
3930
 
3931
  #: includes/shortcodes/mycred_hook_table.php:77
3932
  msgid "Instance"
@@ -3936,6 +3595,10 @@ msgstr "インスタンス"
3936
  msgid "A video ID is required for this shortcode"
3937
  msgstr "動画IDはこのショートコードのために必要とされる"
3938
 
 
 
 
 
3939
  #: includes/classes/class.query-export.php:374
3940
  #: includes/classes/class.query-log.php:1526
3941
  msgid "User Missing"
@@ -3947,7 +3610,15 @@ msgstr "検索結果"
3947
 
3948
  #: includes/classes/class.query-log.php:954
3949
  msgid "No log entries found"
3950
- msgstr "いいえログ履歴が見つかりませんでした"
 
 
 
 
 
 
 
 
3951
 
3952
  #: includes/classes/class.query-log.php:1055
3953
  msgid "Show all references"
@@ -3959,11 +3630,22 @@ msgstr "順番に表示"
3959
 
3960
  #: includes/classes/class.query-log.php:1101
3961
  msgid "Filter"
3962
- msgstr "フィルター"
 
 
 
 
 
 
 
 
 
 
 
3963
 
3964
  #: includes/classes/class.query-log.php:1694
3965
  msgid "No export options available."
3966
- msgstr "いいえエクスポートのオプションを使用できません。"
3967
 
3968
  #: includes/classes/class.query-log.php:1727
3969
  #: includes/classes/class.query-log.php:1729
@@ -3984,7 +3666,7 @@ msgstr "ウェブサイトの訪問"
3984
 
3985
  #: includes/classes/class.query-log.php:2182
3986
  msgid "Viewing Content (Member)"
3987
- msgstr "コンテンツ閲覧 (メンバー)"
3988
 
3989
  #: includes/classes/class.query-log.php:2183
3990
  msgid "Viewing Content (Author)"
@@ -3992,7 +3674,7 @@ msgstr "コンテンツの表示(著者)"
3992
 
3993
  #: includes/classes/class.query-log.php:2184
3994
  msgid "Logging in"
3995
- msgstr "ログインする"
3996
 
3997
  #: includes/classes/class.query-log.php:2185
3998
  msgid "Publishing Content"
@@ -4008,7 +3690,7 @@ msgstr "未承認のコメント"
4008
 
4009
  #: includes/classes/class.query-log.php:2188
4010
  msgid "SPAM Comment"
4011
- msgstr "SPAMコメント"
4012
 
4013
  #: includes/classes/class.query-log.php:2190
4014
  msgid "Link Click"
@@ -4132,7 +3814,7 @@ msgstr "フォーム送信 (Contact Form 7)"
4132
 
4133
  #: includes/classes/class.query-log.php:2245
4134
  msgid "Form Submission (Gravity Form)"
4135
- msgstr "フォーム送信(重力フォーム)"
4136
 
4137
  #: includes/classes/class.query-log.php:2248
4138
  msgid "New Forum Topic (SimplePress)"
@@ -4203,6 +3885,11 @@ msgstr "buyCRED 購入 (NETBilling)"
4203
  msgid "buyCRED Purchase (BitPay)"
4204
  msgstr "buyCRED 購入 (BitPay)"
4205
 
 
 
 
 
 
4206
  #: includes/classes/class.query-log.php:2302
4207
  msgid "Store Purchase (WooCommerce)"
4208
  msgstr "ストア購入 (WooCommerce)"
@@ -4225,7 +3912,7 @@ msgstr "ストア報酬(MarketPress)"
4225
 
4226
  #: includes/classes/class.query-log.php:2311
4227
  msgid "Store Purchase (WP E-Commerce)"
4228
- msgstr "ストア購入(WOOCommerce)"
4229
 
4230
  #: includes/classes/class.query-log.php:2317
4231
  msgid "Event Payment (Event Espresso)"
@@ -4258,27 +3945,27 @@ msgstr "管理者による手動調整"
4258
  msgid "Banking"
4259
  msgstr "バンキング"
4260
 
4261
- #: addons/banking/myCRED-addon-banking.php:141
4262
- msgid "Central Banking"
4263
- msgstr "管理バンキング"
4264
-
4265
  #: addons/banking/myCRED-addon-banking.php:159
4266
  msgid "Recurring Payouts"
4267
- msgstr "定期購入"
4268
 
4269
  #: addons/banking/myCRED-addon-banking.php:160
4270
  msgid "Setup mass %_singular% payouts for your users."
4271
- msgstr "あなたのユーザーに対して大量の %_singular% の支払いを設定します。"
4272
 
4273
  #: addons/banking/myCRED-addon-banking.php:253
4274
  #, php-format
4275
  msgid "%s Banking"
4276
  msgstr "%s バンキング"
4277
 
 
 
 
 
4278
  #: addons/banking/myCRED-addon-banking.php:273
4279
  #: addons/buy-creds/modules/buycred-module-core.php:618
4280
  msgid "Enable"
4281
- msgstr "有効にする"
4282
 
4283
  #: addons/banking/myCRED-addon-banking.php:292
4284
  msgid "Update Changes"
@@ -4286,7 +3973,7 @@ msgstr "変更の更新"
4286
 
4287
  #: addons/transfer/myCRED-addon-transfer.php:41
4288
  msgid "You do not have enough %plural% to send."
4289
- msgstr "送信に %plural% 必要なポイントがありません。"
4290
 
4291
  #: addons/transfer/myCRED-addon-transfer.php:42
4292
  msgid "You have exceeded your %limit% transfer limit."
@@ -4334,7 +4021,7 @@ msgstr "制限はありません。"
4334
 
4335
  #: addons/transfer/myCRED-addon-transfer.php:341
4336
  msgid "Impose daily limit."
4337
- msgstr "毎日の制限を課します。"
4338
 
4339
  #: addons/transfer/myCRED-addon-transfer.php:342
4340
  msgid "Impose weekly limit."
@@ -4388,7 +4075,6 @@ msgstr "限度額"
4388
  #: addons/transfer/myCRED-addon-transfer.php:456
4389
  #: addons/sell-content/myCRED-addon-sell-content.php:685
4390
  #: addons/gateway/event-booking/mycred-eventsmanager.php:641
4391
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:657
4392
  msgid "Log Templates"
4393
  msgstr "ログテンプレート"
4394
 
@@ -4400,6 +4086,14 @@ msgstr "ログを送信するためのテンプレート"
4400
  msgid "Log template for receiving"
4401
  msgstr "受信ログのテンプレート"
4402
 
 
 
 
 
 
 
 
 
4403
  #: addons/ranks/myCRED-addon-ranks.php:216
4404
  #, php-format
4405
  msgid "Ranks for %s"
@@ -4411,8 +4105,8 @@ msgstr "%s のランク"
4411
  #: addons/ranks/myCRED-addon-ranks.php:339
4412
  #: addons/ranks/myCRED-addon-ranks.php:340
4413
  #: addons/ranks/myCRED-addon-ranks.php:724
4414
- #: addons/ranks/myCRED-addon-ranks.php:1359
4415
- #: addons/ranks/myCRED-addon-ranks.php:1654
4416
  msgid "Ranks"
4417
  msgstr "ランク"
4418
 
@@ -4422,7 +4116,7 @@ msgstr "ランク"
4422
  #: addons/ranks/myCRED-addon-ranks.php:876
4423
  #: addons/ranks/myCRED-addon-ranks.php:904
4424
  msgid "Rank"
4425
- msgstr "ランク"
4426
 
4427
  #: addons/ranks/myCRED-addon-ranks.php:223
4428
  #: addons/ranks/myCRED-addon-ranks.php:224
@@ -4432,7 +4126,7 @@ msgstr "ランク"
4432
  #: addons/badges/myCRED-addon-badges.php:151
4433
  #: addons/banking/services/mycred-service-payouts.php:896
4434
  msgid "Add New"
4435
- msgstr "新規追加"
4436
 
4437
  #: addons/ranks/myCRED-addon-ranks.php:225
4438
  msgid "Edit Rank"
@@ -4451,7 +4145,7 @@ msgid "Search Ranks"
4451
  msgstr "ランク検索"
4452
 
4453
  #: addons/ranks/myCRED-addon-ranks.php:234
4454
- #: addons/ranks/myCRED-addon-ranks.php:1286
4455
  msgid "No ranks found"
4456
  msgstr "ランクがみつかりません"
4457
 
@@ -4469,6 +4163,14 @@ msgstr "ゴミ箱にランクがみつかりません"
4469
  msgid "Rank Updated."
4470
  msgstr "ランクを更新。"
4471
 
 
 
 
 
 
 
 
 
4472
  #: addons/ranks/myCRED-addon-ranks.php:481
4473
  #, php-format
4474
  msgid "Completed - Total of %d users effected"
@@ -4482,103 +4184,107 @@ msgstr "警告!すべてのランクが削除されます!これは元に戻
4482
  msgid "Are you sure you want to re-assign user ranks?"
4483
  msgstr "あなたはユーザーランクを再割り当てしてもよろしいですか?"
4484
 
4485
- #: addons/ranks/myCRED-addon-ranks.php:1073
4486
- #: addons/ranks/myCRED-addon-ranks.php:1174
4487
  msgid "Rank Title"
4488
  msgstr "ランクタイトル"
4489
 
4490
- #: addons/ranks/myCRED-addon-ranks.php:1074
4491
  msgid "Logo"
4492
  msgstr "ロゴ"
4493
 
4494
- #: addons/ranks/myCRED-addon-ranks.php:1075
4495
- #: addons/badges/myCRED-addon-badges.php:828
4496
- #: addons/badges/myCRED-addon-badges.php:829
4497
  msgid "Requirement"
4498
  msgstr "必要条件"
4499
 
4500
- #: addons/ranks/myCRED-addon-ranks.php:1101
4501
  msgid "No Logo Set"
4502
- msgstr "いいえロゴ設定されていない"
4503
 
4504
- #: addons/ranks/myCRED-addon-ranks.php:1116
4505
- #: addons/ranks/myCRED-addon-ranks.php:1121
4506
  msgid "Any Value"
4507
  msgstr "任意の値"
4508
 
4509
- #: addons/ranks/myCRED-addon-ranks.php:1118
4510
  #: addons/buy-creds/modules/buycred-module-core.php:345
4511
  msgid "Minimum %plural%"
4512
- msgstr "最小 %plural%"
4513
 
4514
- #: addons/ranks/myCRED-addon-ranks.php:1123
4515
  msgid "Maximum %plural%"
4516
- msgstr "最大 %plural%"
4517
 
4518
- #: addons/ranks/myCRED-addon-ranks.php:1275
4519
- #: addons/ranks/myCRED-addon-ranks.php:1276
4520
  msgid "Not Set"
4521
- msgstr "設定なし"
4522
 
4523
- #: addons/ranks/myCRED-addon-ranks.php:1366
4524
  msgid "Rank Features"
4525
  msgstr "ランクの特長"
4526
 
4527
- #: addons/ranks/myCRED-addon-ranks.php:1372
4528
  msgid "%plural% requirement"
4529
- msgstr "%plural% の要件"
4530
 
4531
- #: addons/ranks/myCRED-addon-ranks.php:1378
4532
  msgid "Content"
4533
- msgstr "コンテンツ"
4534
 
4535
- #: addons/ranks/myCRED-addon-ranks.php:1381
4536
  msgid "Excerpt"
4537
  msgstr "抜粋"
4538
 
4539
- #: addons/ranks/myCRED-addon-ranks.php:1384
4540
  msgid "Comments"
4541
  msgstr "コメント"
4542
 
4543
- #: addons/ranks/myCRED-addon-ranks.php:1387
4544
  msgid "Page Attributes"
4545
  msgstr "ページ属性"
4546
 
4547
- #: addons/ranks/myCRED-addon-ranks.php:1390
4548
  msgid "Custom Fields"
4549
  msgstr "カスタムフィールド"
4550
 
4551
- #: addons/ranks/myCRED-addon-ranks.php:1407
4552
  msgid "Display Order"
4553
  msgstr "表示順序"
4554
 
4555
- #: addons/ranks/myCRED-addon-ranks.php:1413
4556
  msgid "Ascending - Lowest rank to highest"
4557
  msgstr "昇順 - 最低ランクを最高に"
4558
 
4559
- #: addons/ranks/myCRED-addon-ranks.php:1414
4560
  msgid "Descending - Highest rank to lowest"
4561
  msgstr "降順 - 最高ランクを最低に"
4562
 
4563
- #: addons/ranks/myCRED-addon-ranks.php:1456
 
 
 
 
4564
  msgid "Calculate Totals"
4565
  msgstr "合計を計算します。"
4566
 
4567
- #: addons/ranks/myCRED-addon-ranks.php:1476
4568
- #: addons/ranks/myCRED-addon-ranks.php:1517
4569
  msgid "Do not show."
4570
  msgstr "表示しない。"
4571
 
4572
- #: addons/ranks/myCRED-addon-ranks.php:1477
4573
  msgid "Include in Profile Header."
4574
  msgstr "プロフィールのヘッダーに含める。"
4575
 
4576
- #: addons/ranks/myCRED-addon-ranks.php:1479
4577
  msgid "Include under the \"Profile\" tab and Profile Header."
4578
  msgstr "\"Profile\" タブの下に含めるとヘッダーのプロフィールを作成します。"
4579
 
4580
- #: addons/ranks/myCRED-addon-ranks.php:1495
4581
- #: addons/ranks/myCRED-addon-ranks.php:1536
4582
  msgid ""
4583
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
4584
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
@@ -4586,45 +4292,52 @@ msgstr ""
4586
  "ユーザーがBuddyPressにランク表示するときに使用するテンプレート。ランクのロゴを表示するには、タイトルと %rank_logo% の "
4587
  "%rank_title% を使用してください。 HTMLが許可されます。"
4588
 
4589
- #: addons/ranks/myCRED-addon-ranks.php:1518
 
 
 
 
 
 
 
4590
  msgid "Include in Topic Replies"
4591
  msgstr "トピック返信を挿入"
4592
 
4593
- #: addons/ranks/myCRED-addon-ranks.php:1519
4594
- #: addons/badges/myCRED-addon-badges.php:1175
4595
  msgid "Include in Profile"
4596
  msgstr "プロフィールに挿入"
4597
 
4598
- #: addons/ranks/myCRED-addon-ranks.php:1520
4599
  msgid "Include in Topic Replies and Profile"
4600
  msgstr "トピック返信とプロフィールを挿入"
4601
 
4602
- #: addons/ranks/myCRED-addon-ranks.php:1546
4603
- #: addons/email-notices/myCRED-addon-email-notices.php:1456
4604
- #: addons/badges/myCRED-addon-badges.php:1202
4605
  #: addons/buy-creds/modules/buycred-module-core.php:460
4606
  msgid "Available Shortcodes"
4607
  msgstr "利用可能なショートコード"
4608
 
4609
- #: addons/ranks/myCRED-addon-ranks.php:1657
4610
  msgid "User Meta Key"
4611
  msgstr "ユーザーメタキー"
4612
 
4613
- #: addons/ranks/myCRED-addon-ranks.php:1661
4614
  msgid "No. of ranks"
4615
  msgstr "ランク番号"
4616
 
4617
- #: addons/ranks/myCRED-addon-ranks.php:1666
4618
  msgid "Remove All Ranks"
4619
  msgstr "すべてのランクを削除"
4620
 
4621
- #: addons/ranks/myCRED-addon-ranks.php:1666
4622
  msgid "Assign Ranks to Users"
4623
  msgstr "ユーザーへのランクの割当て"
4624
 
4625
  #: addons/notifications/myCRED-addon-notifications.php:191
4626
  msgid "Notifications"
4627
- msgstr "通知"
4628
 
4629
  #: addons/notifications/myCRED-addon-notifications.php:200
4630
  msgid ""
@@ -4659,6 +4372,18 @@ msgstr "予告するまでの秒数は、自動的にユーザーに表示され
4659
  msgid "Use the included CSS Styling for notifications."
4660
  msgstr "通知に含まれている CSS スタイルを使用します。"
4661
 
 
 
 
 
 
 
 
 
 
 
 
 
4662
  #: addons/email-notices/myCRED-addon-email-notices.php:171
4663
  #: addons/email-notices/myCRED-addon-email-notices.php:172
4664
  #: addons/email-notices/myCRED-addon-email-notices.php:173
@@ -4670,6 +4395,10 @@ msgstr "通知に含まれている CSS スタイルを使用します。"
4670
  msgid "Email Notice Updated."
4671
  msgstr "メー
1
  msgid ""
2
  msgstr ""
3
+ "PO-Revision-Date: 2017-08-29 08:41+0000\n"
 
 
 
 
 
 
 
4
  "MIME-Version: 1.0\n"
5
  "Content-Type: text/plain; charset=UTF-8\n"
6
  "Content-Transfer-Encoding: 8bit\n"
7
+ "Plural-Forms: nplurals=1; plural=0\n"
8
  "X-Generator: Loco - https://localise.biz/\n"
9
+ "Language: ja-JP\n"
10
+ "Project-Id-Version: Plugins - myCRED - Stable (latest release)\n"
11
+ "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2017-08-29 08:41+0000\n"
13
+ "Last-Translator: mycredlabs <gabriel.s@merovingi.com>\n"
14
+ "Language-Team: Japanese (Japan)"
15
+
16
+ #: mycred.php:859 modules/mycred-module-management.php:558
17
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:34
18
+ msgid "Balance"
 
 
 
19
  msgstr ""
20
 
21
  #: modules/mycred-module-management.php:184
30
  msgid "No recent activity found."
31
  msgstr ""
32
 
 
 
 
 
 
 
 
 
 
 
33
  #: modules/mycred-module-management.php:280
34
  msgid "View complete history"
35
  msgstr ""
38
  msgid "Balances"
39
  msgstr ""
40
 
 
 
 
 
 
 
41
  #: modules/mycred-module-management.php:759
42
  msgid "Total Balance"
43
  msgstr ""
50
  msgid "lowercase without empty spaces"
51
  msgstr ""
52
 
53
+ #: modules/mycred-module-settings.php:431
54
+ msgid "Export %singular% Balances"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  msgstr ""
56
 
57
  #: modules/mycred-module-settings.php:559 includes/mycred-setup.php:290
92
  msgid "Exclude by User ID"
93
  msgstr ""
94
 
 
 
 
 
95
  #: modules/mycred-module-settings.php:628 includes/mycred-setup.php:355
96
  msgid "Comma separated list of user IDs to exclude from using this point type."
97
  msgstr ""
104
  msgid "Exclude point administrators"
105
  msgstr ""
106
 
 
 
 
 
107
  #: modules/mycred-module-settings.php:697
108
  msgid "Balance Meta Key"
109
  msgstr ""
110
 
111
+ #: modules/mycred-module-settings.php:712
112
+ msgid "Export Balances"
113
+ msgstr ""
114
+
115
+ #: modules/mycred-module-addons.php:197
116
  msgid ""
117
+ "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
118
+ "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
119
+ "also let your users buy points for other members."
120
  msgstr ""
121
 
122
+ #: modules/mycred-module-addons.php:230
123
+ msgid ""
124
+ "Let your users pay using their <strong>my</strong>CRED points balance. "
125
+ "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
126
+ "Bookings: Event Espresso and Events Manager (free & pro)."
127
  msgstr ""
128
 
129
+ #: modules/mycred-module-addons.php:253
130
  msgid ""
131
+ "Create ranks for users reaching a certain number of %_plural% with the "
132
+ "option to add logos for each rank."
133
  msgstr ""
134
 
135
  #: modules/mycred-module-log.php:215
155
  msgstr[0] ""
156
  msgstr[1] ""
157
 
158
+ #: modules/mycred-module-log.php:466
159
  msgid "The log entry was successfully updated."
160
  msgstr ""
161
 
162
+ #: modules/mycred-module-log.php:467
163
  msgid "The selected log entry could not be deleted."
164
  msgstr ""
165
 
166
+ #: modules/mycred-module-log.php:501
167
  #, php-format
168
  msgctxt "e.g. Log entries from April 12th 2016"
169
  msgid "Log entries from %s"
170
  msgstr ""
171
 
172
+ #: modules/mycred-module-log.php:911
173
  msgid "Original Entry"
174
  msgstr ""
175
 
176
+ #: modules/mycred-module-log.php:923
177
  msgid "Delete Entry"
178
  msgstr ""
179
 
180
+ #: modules/mycred-module-log.php:928
181
  msgid "Update Entry"
182
  msgstr ""
183
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  #: modules/mycred-module-network.php:247
185
  msgid "I am sorry but your network is too big to use these features."
186
  msgstr ""
187
 
188
+ #: modules/mycred-module-export.php:390
 
 
 
 
189
  msgid "Make both format options available."
190
  msgstr ""
191
 
192
+ #: modules/mycred-module-export.php:439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
  msgid ""
194
  "If enabled, users will only be able to export their own log entries! Export "
195
  "tools becomes available wherever you are using the mycred_history shortcode "
196
  "or in the users profile."
197
  msgstr ""
198
 
199
+ #: modules/mycred-module-export.php:487
 
 
 
 
200
  msgid ""
201
  "Raw format should be used when you intend to use the export tool to backup "
202
  "or import entries in another installation. Formatted exports reflect what "
203
  "users see in their history archive."
204
  msgstr ""
205
 
 
 
 
 
 
 
 
 
206
  #: modules/mycred-module-buddypress.php:508
207
  msgid "The history page slug. Must be URL friendly."
208
  msgstr ""
209
 
210
+ #: plugins/mycred-hook-invite-anyone.php:16
211
+ msgid ""
212
+ "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
213
+ "accepted."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  msgstr ""
215
 
216
+ #: plugins/mycred-hook-wp-polls.php:16
217
+ msgid "Awards %_plural% for users voting in polls."
 
 
218
  msgstr ""
219
 
220
+ #: plugins/mycred-hook-wp-postratings.php:16
221
+ msgid ""
222
+ "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
223
+ "author and the user rating."
224
  msgstr ""
225
 
226
  #: plugins/mycred-hook-wp-postratings.php:214
228
  msgid "Content Author Log Template"
229
  msgstr ""
230
 
231
+ #: plugins/mycred-hook-gravityforms.php:16
232
+ msgid "Awards %_plural% for successful form submissions."
 
 
233
  msgstr ""
234
 
235
+ #: plugins/mycred-hook-simplepress.php:16
236
+ msgid "Awards %_plural% for Simple:Press actions."
 
237
  msgstr ""
238
 
239
  #: plugins/mycred-hook-simplepress.php:315 plugins/mycred-hook-bbPress.php:508
240
  msgid "Deleted Topic"
241
  msgstr ""
242
 
243
+ #: plugins/mycred-hook-buddypress.php:17
244
+ msgid "Awards %_plural% for profile related actions."
 
 
 
 
245
  msgstr ""
246
 
247
+ #: plugins/mycred-hook-buddypress.php:26
248
+ msgid ""
249
+ "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
250
+ "zero to disable a specific hook."
251
  msgstr ""
252
 
253
  #: plugins/mycred-hook-buddypress.php:613
270
  msgid "New Friendships"
271
  msgstr ""
272
 
273
+ #: plugins/mycred-hook-buddypress.php:735
274
+ msgid ""
275
+ "Users with zero balance can not add friends. Requires that you deduct "
276
+ "%_plural% for adding a new friend."
277
  msgstr ""
278
 
279
+ #: plugins/mycred-hook-buddypress.php:742
280
+ msgid "Ending Friendships"
281
  msgstr ""
282
 
283
  #: plugins/mycred-hook-buddypress.php:802
292
  msgid "New Private Message"
293
  msgstr ""
294
 
 
 
 
 
 
 
 
 
 
 
295
  #: plugins/mycred-hook-buddypress.php:1513
296
  msgid "No. of Members"
297
  msgstr ""
330
  msgid "Editing Forum Posts"
331
  msgstr ""
332
 
 
 
 
 
 
 
 
 
 
 
 
 
333
  #: plugins/mycred-hook-affiliatewp.php:293
334
  #: plugins/mycred-hook-affiliatewp.php:312
335
  #: addons/banking/services/mycred-service-payouts.php:768
361
  msgid "Apply an exchange rate"
362
  msgstr ""
363
 
364
+ #: plugins/mycred-hook-events-manager-light.php:16
365
+ msgid "Awards %_plural% for users attending events."
366
+ msgstr ""
367
+
368
+ #: plugins/mycred-hook-sharethis.php:16
369
+ msgid ""
370
+ "Awards %_plural% for users sharing / liking your website content to popular "
371
+ "social media sites."
372
+ msgstr ""
373
+
374
  #: plugins/mycred-hook-sharethis.php:257
375
  msgid "Publishing Posts"
376
  msgstr ""
377
 
378
+ #: plugins/mycred-hook-buddypress-media.php:16
379
+ msgid ""
380
+ "Award / Deduct %_plural% for users creating albums or uploading new photos."
381
+ msgstr ""
382
+
383
  #: plugins/mycred-hook-buddypress-media.php:362
384
  msgid "Photo Deletion"
385
  msgstr ""
388
  msgid "Video Deletion"
389
  msgstr ""
390
 
391
+ #: plugins/mycred-hook-buddypress-media.php:398
392
+ msgid "Music Deletion"
393
+ msgstr ""
394
+
395
+ #: plugins/mycred-hook-wp-favorite-posts.php:16
396
+ msgid "Awards %_plural% for users adding posts to their favorites."
397
+ msgstr ""
398
+
399
+ #: plugins/mycred-hook-contact-form7.php:16
400
+ msgid "Awards %_plural% for successful form submissions (by logged in users)."
401
  msgstr ""
402
 
403
+ #: plugins/mycred-hook-jetpack.php:16
404
+ msgid ""
405
+ "Awards %_plural% for users signing up for site or comment updates using "
406
+ "Jetpack."
407
  msgstr ""
408
 
409
  #: plugins/mycred-hook-bbPress.php:457
410
  msgid "Deleting Forums"
411
  msgstr ""
412
 
413
+ #: plugins/mycred-hook-bbPress.php:501
414
+ msgid "Forum authors can receive %_plural% for creating new topics."
415
  msgstr ""
416
 
417
+ #: plugins/mycred-hook-bbPress.php:526
418
+ msgid "Adding Topic to Favorites"
419
  msgstr ""
420
 
421
  #: plugins/mycred-hook-bbPress.php:583
422
  msgid "Deleted Reply"
423
  msgstr ""
424
 
425
+ #: plugins/mycred-hook-bbPress.php:605
426
+ msgid "Show users %_plural% balance in replies"
427
+ msgstr ""
428
+
429
  #: plugins/mycred-hook-bbPress.php:608
430
  msgid "Show users %_plural% balance in their bbPress profiles"
431
  msgstr ""
434
  msgid "Leave empty for no rewards"
435
  msgstr ""
436
 
437
+ #: plugins/mycred-hook-woocommerce.php:389
438
+ msgid ""
439
+ "Awards %_plural% for users leaving reviews on your WooCommerce products."
440
+ msgstr ""
441
+
442
  #: plugins/mycred-hook-badgeOS.php:317
443
  #, php-format
444
  msgid "Earning: %s"
457
  "and who has access to it."
458
  msgstr ""
459
 
 
 
 
 
 
 
 
 
460
  #: includes/mycred-setup.php:133
461
  msgid "Change Default Point Type Key"
462
  msgstr ""
474
  "continuing on in this setup!"
475
  msgstr ""
476
 
 
 
 
 
477
  #: includes/mycred-setup.php:141
478
  msgid ""
479
  "You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
480
  "above code to your wp-config.php file to use."
481
  msgstr ""
482
 
 
 
 
 
 
 
 
 
 
 
 
 
 
483
  #: includes/mycred-setup.php:155
484
  msgid "Processing ..."
485
  msgstr ""
486
 
 
 
 
 
487
  #: includes/mycred-setup.php:161
488
  msgid "Congratulations! You are now ready to use myCRED. What's next?"
489
  msgstr ""
503
  msgid "Setup Hooks"
504
  msgstr ""
505
 
 
 
 
 
 
 
 
 
 
 
506
  #: includes/mycred-setup.php:176
507
  msgid "Adjust Settings"
508
  msgstr ""
513
  "you can visit your default point type's settings."
514
  msgstr ""
515
 
 
 
 
 
 
 
 
 
516
  #: includes/mycred-setup.php:394 includes/mycred-setup.php:453
517
  msgid "Please make sure you fill out all required fields!"
518
  msgstr ""
519
 
 
 
 
 
 
 
 
 
520
  #: includes/mycred-widgets.php:22
521
  msgid "Show the current users balance and history."
522
  msgstr ""
529
  msgid "Leaderboard based on instances or balances."
530
  msgstr ""
531
 
 
 
 
 
532
  #: includes/mycred-widgets.php:421
533
  msgid ""
534
  "Option to limit the leaderboard based on a specific timeframe. Leave empty "
539
  msgid "Shows multiple balances."
540
  msgstr ""
541
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
542
  #: includes/importers/mycred-balances.php:117
543
  #: includes/importers/mycred-balances.php:144
544
  #: includes/importers/mycred-log-entries.php:117
552
  "Invalid CSV file. Please consult the documentation for further assistance."
553
  msgstr ""
554
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
555
  #: includes/classes/class.query-export.php:263
556
  msgid "Reference ID"
557
  msgstr ""
558
 
 
 
 
 
559
  #: includes/classes/class.query-export.php:464
560
  msgid "Export log entries raw"
561
  msgstr ""
576
  msgid "Export History"
577
  msgstr ""
578
 
 
 
 
 
579
  #: includes/classes/class.query-log.php:1017
580
  msgid "Export Raw"
581
  msgstr ""
584
  msgid "Export Formatted"
585
  msgstr ""
586
 
 
 
 
 
587
  #: includes/classes/class.query-log.php:1072
588
  msgid "User ID, Username, Email or Nicename"
589
  msgstr ""
592
  msgid "Log entries navigation"
593
  msgstr ""
594
 
 
 
 
 
 
 
 
595
  #: includes/classes/class.query-log.php:1408
596
  #: includes/classes/class.query-log.php:1458
597
  msgid "Select all"
601
  msgid "Select entry"
602
  msgstr ""
603
 
 
 
 
 
604
  #: includes/classes/class.query-log.php:1563
605
  msgid "Filter by Date"
606
  msgstr ""
641
  msgid "buyCRED Purchase (Bank Transfer)"
642
  msgstr ""
643
 
 
 
 
 
 
644
  #: includes/classes/class.query-log.php:2327
645
  msgid "Content Purchase"
646
  msgstr ""
649
  msgid "Content Sale"
650
  msgstr ""
651
 
652
+ #: addons/banking/myCRED-addon-banking.php:141
653
+ msgid "Central Banking"
654
+ msgstr ""
655
+
656
  #: addons/banking/myCRED-addon-banking.php:142
657
  msgid ""
658
  "Instead of creating %_plural% out of thin-air, all payouts are made from a "
683
  msgid "Are you sure you want to remove this schedule? This can not be undone!"
684
  msgstr ""
685
 
 
 
 
 
686
  #: addons/banking/myCRED-addon-banking.php:271
687
  msgid ""
688
  "This banking service uses the WordPress CRON to schedule events. If the "
755
  "someone who is not logged in."
756
  msgstr ""
757
 
 
 
 
 
758
  #: addons/transfer/myCRED-addon-transfer.php:508
759
  msgid ""
760
  "The template to use if you select to show the transfer limit in the transfer "
761
  "shortcode or widget. Ignored if there is no limit enforced."
762
  msgstr ""
763
 
 
 
 
 
764
  #: addons/transfer/myCRED-addon-transfer.php:524
765
  msgid ""
766
  "The template to use if you select to show the users balance in the transfer "
768
  msgstr ""
769
 
770
  #: addons/ranks/myCRED-addon-ranks.php:230
771
+ #: addons/ranks/myCRED-addon-ranks.php:1379
772
  msgid "Rank Logo"
773
  msgstr ""
774
 
784
  msgid "Use as Logo"
785
  msgstr ""
786
 
 
 
 
 
 
 
 
 
787
  #: addons/ranks/myCRED-addon-ranks.php:895
788
  msgid "No ranks exists."
789
  msgstr ""
790
 
791
+ #: addons/ranks/myCRED-addon-ranks.php:1193
792
  msgid "Rank Setup"
793
  msgstr ""
794
 
795
+ #: addons/ranks/myCRED-addon-ranks.php:1234
796
  msgid "Minimum Balance Requirement"
797
  msgstr ""
798
 
799
+ #: addons/ranks/myCRED-addon-ranks.php:1240
800
  msgid "Maximum Balance Requirement"
801
  msgstr ""
802
 
803
+ #: addons/ranks/myCRED-addon-ranks.php:1399
804
  msgid "Rank Post Type"
805
  msgstr ""
806
 
807
+ #: addons/ranks/myCRED-addon-ranks.php:1402
808
  msgid "Make Ranks Public"
809
  msgstr ""
810
 
811
+ #: addons/ranks/myCRED-addon-ranks.php:1406
812
  msgid "Rank SLUG"
813
  msgstr ""
814
 
815
+ #: addons/ranks/myCRED-addon-ranks.php:1408
816
  msgid ""
817
  "If you have selected to make Ranks public, you can select what rank archive "
818
  "URL slug you want to use. Ignored if Ranks are not set to be public."
819
  msgstr ""
820
 
821
+ #: addons/ranks/myCRED-addon-ranks.php:1429
822
  msgid "Option to set in which order Ranks should be shown on the archive page."
823
  msgstr ""
824
 
825
+ #: addons/ranks/myCRED-addon-ranks.php:1436
826
  msgid "Rank Behaviour"
827
  msgstr ""
828
 
829
+ #: addons/ranks/myCRED-addon-ranks.php:1441
830
  msgid "Based on Current Balances"
831
  msgstr ""
832
 
833
+ #: addons/ranks/myCRED-addon-ranks.php:1443
834
  msgid ""
835
  "Users can be promoted or demoted depending on where their balance fits in "
836
  "amongst your ranks."
837
  msgstr ""
838
 
839
+ #: addons/ranks/myCRED-addon-ranks.php:1449
840
  msgid "Based on Total Balances"
841
  msgstr ""
842
 
843
+ #: addons/ranks/myCRED-addon-ranks.php:1451
844
  msgid ""
845
  "Users can only be promoted and gain higher ranks even if their balance "
846
  "decreases."
847
  msgstr ""
848
 
849
+ #: addons/ranks/myCRED-addon-ranks.php:1459
 
 
 
 
850
  msgid ""
851
  "Use this button to calculate or recalculate each individual users total "
852
  "balance if you think your users total balances are incorrect, or if you "
853
  "switch from Ranks being based on users current balance to total balance."
854
  msgstr ""
855
 
856
+ #: addons/ranks/myCRED-addon-ranks.php:1464
857
+ #: addons/badges/myCRED-addon-badges.php:1155
858
  msgid "Third-party Integrations"
859
  msgstr ""
860
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
861
  #: addons/email-notices/myCRED-addon-email-notices.php:132
862
  msgid "Edit Email Notification"
863
  msgstr ""
878
  msgid "No email notifications found in Trash"
879
  msgstr ""
880
 
881
+ #: addons/email-notices/myCRED-addon-email-notices.php:325
882
+ msgid "Email is sent when"
883
+ msgstr ""
884
+
885
+ #: addons/email-notices/myCRED-addon-email-notices.php:494
886
+ msgid ""
887
+ "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
888
+ "you are not yet ready to use this email notice!"
889
  msgstr ""
890
 
891
  #: addons/email-notices/myCRED-addon-email-notices.php:709
901
  msgid "user related template tags"
902
  msgstr ""
903
 
904
+ #: addons/email-notices/myCRED-addon-email-notices.php:1448
 
 
 
 
 
 
 
 
 
905
  msgid "Filter Email Subjects"
906
  msgstr ""
907
 
908
+ #: addons/email-notices/myCRED-addon-email-notices.php:1451
909
  msgid "Filter Email Body"
910
  msgstr ""
911
 
912
+ #: addons/email-notices/myCRED-addon-email-notices.php:1460
 
 
 
 
 
 
 
 
913
  msgid ""
914
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
915
+ "use a SMTP plugin for emails."
 
 
 
 
 
 
 
 
916
  msgstr ""
917
 
918
+ #: addons/email-notices/myCRED-addon-email-notices.php:1506
919
+ msgid "Default CSS Styling"
920
  msgstr ""
921
 
922
+ #: addons/email-notices/myCRED-addon-email-notices.php:1508
923
+ msgid ""
924
+ "Default email CSS styling. Note that if you intend to send HTML emails, you "
925
+ "should use inline CSS styling for best results."
926
  msgstr ""
927
 
928
+ #: addons/stats/myCRED-addon-stats.php:172
929
+ msgid "Statistics Color"
930
  msgstr ""
931
 
932
+ #: addons/badges/myCRED-addon-badges.php:423
933
  msgid "First Level"
934
  msgstr ""
935
 
936
+ #: addons/badges/myCRED-addon-badges.php:536
937
+ #: addons/badges/myCRED-addon-badges.php:827
938
  msgid "Remove Level"
939
  msgstr ""
940
 
941
+ #: addons/badges/myCRED-addon-badges.php:537
942
+ #: addons/badges/myCRED-addon-badges.php:780
943
+ #: addons/badges/myCRED-addon-badges.php:843
944
+ #: addons/badges/myCRED-addon-badges.php:848
945
  msgid "Set Image"
946
  msgstr ""
947
 
948
+ #: addons/badges/myCRED-addon-badges.php:539
 
 
 
 
 
 
949
  msgid "Are you sure you want to remove this level?"
950
  msgstr ""
951
 
952
+ #: addons/badges/myCRED-addon-badges.php:605
 
 
 
 
 
 
 
 
 
 
 
 
 
 
953
  msgid "Default Badge Image"
954
  msgstr ""
955
 
956
+ #: addons/badges/myCRED-addon-badges.php:747
957
  #: addons/badges/includes/mycred-badge-functions.php:288
958
  msgid "This badge is manually awarded."
959
  msgstr ""
960
 
961
+ #: addons/badges/myCRED-addon-badges.php:888
 
 
 
 
 
 
 
 
962
  msgid "Select Reference"
963
  msgstr ""
964
 
965
+ #: addons/badges/myCRED-addon-badges.php:964
966
  msgid "Reward"
967
  msgstr ""
968
 
969
+ #: addons/badges/myCRED-addon-badges.php:1431
 
 
 
 
970
  #, php-format
971
  msgid "A total of %d users have received this badge."
972
  msgstr ""
973
 
974
+ #: addons/badges/myCRED-addon-badges.php:1458
975
  msgid "No connections where removed."
976
  msgstr ""
977
 
978
+ #: addons/badges/myCRED-addon-badges.php:1460
979
+ #, php-format
980
+ msgid "%s connections where removed."
981
+ msgstr ""
982
+
983
  #: addons/coupons/myCRED-addon-coupons.php:486
984
  msgid ""
985
  "Warning. The previous expiration date set for this coupon was formatted "
1010
  "Message to show when a user is excluded from the point type the coupon gives."
1011
  msgstr ""
1012
 
 
 
 
 
1013
  #: addons/sell-content/myCRED-addon-sell-content.php:378
1014
  msgid "Users profit share when their content is purchased."
1015
  msgstr ""
1037
  msgid "%s Profit Share"
1038
  msgstr ""
1039
 
 
 
 
 
1040
  #: addons/sell-content/myCRED-addon-sell-content.php:512
1041
  msgid "Which post type(s) content field do you want to sell access to?"
1042
  msgstr ""
1045
  msgid "Which point type(s) can be used as payment for accessing content?"
1046
  msgstr ""
1047
 
 
 
 
 
 
 
1048
  #: addons/sell-content/myCRED-addon-sell-content.php:643
1049
  msgid "Default Status"
1050
  msgstr ""
1053
  msgid "Default Price"
1054
  msgstr ""
1055
 
 
 
 
 
 
1056
  #: addons/sell-content/myCRED-addon-sell-content.php:659
1057
  #, php-format
1058
  msgid ""
1076
  msgid "Profit Share payout log entry template"
1077
  msgstr ""
1078
 
 
 
 
 
1079
  #: addons/sell-content/myCRED-addon-sell-content.php:714
1080
  msgid "Reload page after successful payments."
1081
  msgstr ""
1112
  "is not logged in on your website."
1113
  msgstr ""
1114
 
 
 
 
 
1115
  #: addons/banking/services/mycred-service-central.php:110
1116
  msgid "Central Bank Account"
1117
  msgstr ""
1124
  msgid "Daily Compound Schedule"
1125
  msgstr ""
1126
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1127
  #: addons/banking/services/mycred-service-interest.php:454
1128
  msgid "Payout Schedule"
1129
  msgstr ""
1171
  msgid "Finished"
1172
  msgstr ""
1173
 
 
 
 
 
1174
  #: addons/banking/services/mycred-service-payouts.php:446
1175
  msgid "Not yet started"
1176
  msgstr ""
1197
  msgid "Max. Balance"
1198
  msgstr ""
1199
 
 
 
 
 
1200
  #: addons/banking/services/mycred-service-payouts.php:533
1201
  msgid "Include Users"
1202
  msgstr ""
1214
  msgid "Job Title"
1215
  msgstr ""
1216
 
 
 
 
 
1217
  #: addons/banking/services/mycred-service-payouts.php:579
1218
  msgid "Eligible"
1219
  msgstr ""
1241
  msgid "Paid Out"
1242
  msgstr ""
1243
 
 
 
 
 
1244
  #: addons/banking/services/mycred-service-payouts.php:616
1245
  msgid "Misses"
1246
  msgstr ""
1259
  msgid "Schedule Title"
1260
  msgstr ""
1261
 
 
 
 
 
 
1262
  #: addons/banking/services/mycred-service-payouts.php:715
1263
  msgid "Payout even if the central bank account runs out of funds."
1264
  msgstr ""
1267
  msgid "First Payout"
1268
  msgstr ""
1269
 
 
 
 
 
1270
  #: addons/banking/services/mycred-service-payouts.php:756
1271
  msgid "Use -1 for infinite runs."
1272
  msgstr ""
1283
  msgid "Include:"
1284
  msgstr ""
1285
 
 
 
 
 
1286
  #: addons/banking/services/mycred-service-payouts.php:872
1287
  msgid ""
1288
  "As long as this service remains disabled, none of your scheduled payouts "
1297
  msgid "Last Ran"
1298
  msgstr ""
1299
 
 
 
 
 
1300
  #: addons/banking/services/mycred-service-payouts.php:891
1301
  msgid "No schedules found."
1302
  msgstr ""
1320
  msgid "Schedule Deleted"
1321
  msgstr ""
1322
 
 
 
 
 
 
 
 
 
 
 
 
 
1323
  #: addons/banking/includes/mycred-banking-functions.php:105
1324
  msgid "Semiannual"
1325
  msgstr ""
1326
 
 
 
 
 
1327
  #: addons/banking/includes/mycred-banking-functions.php:283
1328
  msgid "A title must be set."
1329
  msgstr ""
1359
  msgid "Refunded %s"
1360
  msgstr ""
1361
 
 
 
 
 
 
 
 
1362
  #: addons/transfer/includes/mycred-transfer-widgets.php:117
1363
  msgid "Recipient Placeholder"
1364
  msgstr ""
1383
  msgid "An unknown error occurred. Coupon not used."
1384
  msgstr ""
1385
 
1386
+ #: addons/sell-content/includes/mycred-sell-functions.php:790
 
 
 
 
 
 
 
 
 
 
 
 
1387
  #, php-format
1388
  msgctxt "all post type name"
1389
  msgid "%s I manually select"
1390
  msgstr ""
1391
 
1392
+ #: addons/sell-content/includes/mycred-sell-functions.php:794
1393
  #, php-format
1394
  msgctxt "%s = post type name"
1395
  msgid "All %s except"
1396
  msgstr ""
1397
 
1398
+ #: addons/sell-content/includes/mycred-sell-functions.php:795
1399
  #, php-format
1400
  msgctxt "%s = post type name"
1401
  msgid "Comma separated list of %s IDs to exclude"
1402
  msgstr ""
1403
 
1404
+ #: addons/sell-content/includes/mycred-sell-functions.php:798
1405
  #, php-format
1406
  msgctxt "%s = post type name"
1407
  msgid "Only %s"
1408
  msgstr ""
1409
 
1410
+ #: addons/sell-content/includes/mycred-sell-functions.php:799
1411
  #, php-format
1412
  msgctxt "%s = post type name"
1413
  msgid "Comma separated list of %s IDs"
1414
  msgstr ""
1415
 
1416
+ #: addons/sell-content/includes/mycred-sell-functions.php:811
1417
  #, php-format
1418
  msgctxt "e.g. Only \"Posts\" in \"Categories\""
1419
  msgid "Only %s in %s"
1420
  msgstr ""
1421
 
1422
+ #: addons/sell-content/includes/mycred-sell-functions.php:812
1423
+ #: addons/sell-content/includes/mycred-sell-functions.php:816
1424
+ #: addons/sell-content/includes/mycred-sell-functions.php:822
1425
+ #: addons/sell-content/includes/mycred-sell-functions.php:826
1426
  #, php-format
1427
  msgctxt "%s = taxonomy name"
1428
  msgid "Comma separated list of %s slugs"
1429
  msgstr ""
1430
 
1431
+ #: addons/sell-content/includes/mycred-sell-functions.php:815
1432
  #, php-format
1433
  msgctxt "e.g. Only \"Posts\" not in \"Categories\""
1434
  msgid "Only %s not in %s"
1435
  msgstr ""
1436
 
1437
+ #: addons/sell-content/includes/mycred-sell-functions.php:821
1438
  #, php-format
1439
  msgctxt "e.g. Only \"Posts\" with \"Tags\""
1440
  msgid "Only %s with %s"
1441
  msgstr ""
1442
 
1443
+ #: addons/sell-content/includes/mycred-sell-functions.php:825
1444
  #, php-format
1445
  msgctxt "e.g. Only \"Posts\" without \"Tags\""
1446
  msgid "Only %s without %s"
1468
  msgid "Received new request to purchase %s."
1469
  msgstr ""
1470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1471
  #: addons/buy-creds/modules/buycred-module-pending.php:182
1472
  #: addons/buy-creds/modules/buycred-module-pending.php:183
1473
  #: addons/buy-creds/modules/buycred-module-pending.php:184
1475
  #: addons/buy-creds/modules/buycred-module-pending.php:186
1476
  #: addons/buy-creds/modules/buycred-module-pending.php:187
1477
  #: addons/buy-creds/modules/buycred-module-pending.php:188
1478
+ #: addons/buy-creds/modules/buycred-module-pending.php:189
1479
+ #: addons/buy-creds/modules/buycred-module-pending.php:190
1480
  msgid "Payment Updated."
1481
  msgstr ""
1482
 
1483
+ #: addons/buy-creds/modules/buycred-module-pending.php:218
1484
  msgid "Pending payment successfully credited to account."
1485
  msgstr ""
1486
 
1487
+ #: addons/buy-creds/modules/buycred-module-pending.php:220
1488
  msgid "Failed to credit the pending payment to account."
1489
  msgstr ""
1490
 
1491
+ #: addons/buy-creds/modules/buycred-module-pending.php:468
1492
  msgid "Pending Payment"
1493
  msgstr ""
1494
 
1495
+ #: addons/buy-creds/modules/buycred-module-pending.php:679
 
 
 
 
 
 
 
 
1496
  msgid "Pending request created."
1497
  msgstr ""
1498
 
1499
+ #: addons/buy-creds/modules/buycred-module-pending.php:727
1500
  #, php-format
1501
  msgid "Pending payment updated by %s"
1502
  msgstr ""
1505
  msgid "Bank Transfer"
1506
  msgstr ""
1507
 
 
 
 
 
 
 
 
 
 
1508
  #: addons/buy-creds/modules/buycred-module-core.php:365
1509
  msgid ""
1510
  "Where should users be redirected to upon successfully completing a purchase. "
1516
  msgid "Redirect to Page"
1517
  msgstr ""
1518
 
 
 
 
 
 
1519
  #: addons/buy-creds/modules/buycred-module-core.php:390
1520
  msgid ""
1521
  "Where should users be redirected to if they cancel a transaction. You can "
1522
  "nominate a specific URL or a page."
1523
  msgstr ""
1524
 
 
 
 
 
1525
  #: addons/buy-creds/modules/buycred-module-core.php:421
1526
  msgid ""
1527
  "Message to show in shortcodes when viewed by someone who is not logged in."
1535
  msgid "buyCRED Exchange Rates"
1536
  msgstr ""
1537
 
 
 
 
 
 
 
1538
  #: addons/buy-creds/modules/buycred-module-core.php:1128
1539
  msgid "This point type is not for sale."
1540
  msgstr ""
1541
 
 
 
 
 
 
 
 
1542
  #: addons/buy-creds/modules/buycred-module-core.php:1143
1543
  #, php-format
1544
  msgctxt "Points Name"
1557
  msgid "Unknown Gateway"
1558
  msgstr ""
1559
 
 
 
 
 
1560
  #: addons/buy-creds/gateways/bank-transfer.php:196
1561
  msgid "Checkout Logo"
1562
  msgstr ""
1563
+
1564
+ #: addons/buy-creds/gateways/bank-transfer.php:202
1565
+ msgid "Bank Account Information"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1566
  msgstr ""
1567
 
1568
+ #: addons/buy-creds/gateways/bank-transfer.php:206
1569
+ msgid "Bank transfer details to show the user on the checkout page."
1570
  msgstr ""
1571
 
1572
+ #: addons/buy-creds/gateways/skrill.php:327
1573
+ msgid ""
1574
+ "Ask Skrill to send me a confirmation email for each successful purchase."
1575
  msgstr ""
1576
 
1577
+ #: mycred.php:568
1578
  #, php-format
1579
  msgid "%s Log Import"
1580
  msgstr "%s のログのインポート"
1581
 
1582
+ #: mycred.php:569
1583
  msgid "Import log entries via a CSV file."
1584
+ msgstr "CSV ファイル経由でログエントリをインポート。"
1585
 
1586
+ #: mycred.php:580
1587
  #, php-format
1588
  msgid "%s Balance Import"
1589
  msgstr "%s 残高のインポート"
1590
 
1591
+ #: mycred.php:581
1592
+ msgid "Import balances via a CSV file."
1593
+ msgstr "CSV ファイルからのインポート残高。"
1594
+
1595
+ #: mycred.php:592
1596
  #, php-format
1597
  msgid "%s CubePoints Import"
1598
+ msgstr "%s CubePoints インポート"
1599
 
1600
+ #: mycred.php:593
1601
  msgid "Import CubePoints log entries and / or balances."
1602
+ msgstr "CubePoints のログ項目・残高をインポートします。"
1603
 
1604
+ #: mycred.php:635 modules/mycred-module-management.php:316
1605
+ #: modules/mycred-module-settings.php:425 modules/mycred-module-log.php:463
1606
  #: addons/transfer/myCRED-addon-transfer.php:159
1607
  #: addons/ranks/myCRED-addon-ranks.php:986
1608
+ #: addons/ranks/myCRED-addon-ranks.php:1572
1609
+ #: addons/badges/myCRED-addon-badges.php:727
1610
  #: addons/gateway/event-booking/mycred-eventsmanager.php:537
1611
  msgid "Processing..."
1612
+ msgstr "処理中…"
1613
 
1614
+ #: mycred.php:636
1615
  msgid "Sent"
1616
+ msgstr "送信済"
1617
 
1618
+ #: mycred.php:637
1619
  msgid "Error - Try Again"
1620
  msgstr "エラー - 再試行"
1621
 
1622
+ #: mycred.php:812 mycred.php:813
1623
  #, php-format
1624
  msgid "About %s"
1625
  msgstr "%s について"
1626
 
1627
+ #: mycred.php:821 mycred.php:822
1628
  msgid "Awesome People"
1629
  msgstr "素晴らしい人々"
1630
 
1631
+ #: mycred.php:926 modules/mycred-module-management.php:473
 
 
 
 
 
1632
  #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
1633
+ #: addons/buy-creds/modules/buycred-module-pending.php:471
1634
  msgid "History"
1635
  msgstr "履歴"
1636
 
1637
+ #: mycred.php:997 mycred.php:1018
1638
  #: addons/notifications/myCRED-addon-notifications.php:194
1639
  #: addons/email-notices/myCRED-addon-email-notices.php:277
1640
  #: addons/banking/services/mycred-service-interest.php:477
1641
  #: addons/gateway/event-booking/mycred-eventsmanager.php:591
 
1642
  msgid "Setup"
1643
+ msgstr "設定"
1644
 
1645
+ #: mycred.php:999 modules/mycred-module-settings.php:21
1646
  #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
1647
  #: modules/mycred-module-network.php:270
1648
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
1650
  msgid "Settings"
1651
  msgstr "設定"
1652
 
1653
+ #: mycred.php:1039
1654
  msgid ""
1655
  "Make sure to backup your database and files before updating, in case "
1656
  "anything goes wrong!"
1657
+ msgstr "万が一何かうまくいかなかった時のため、更新する前にデータベースとファイルのバックアップすることをおすすめします。"
1658
 
1659
  #: abstracts/mycred-abstract-hook.php:90
1660
  msgid "This Hook has no settings"
1661
  msgstr "このフックは設定がありません"
1662
 
1663
+ #: abstracts/mycred-abstract-hook.php:293
1664
+ #: abstracts/mycred-abstract-hook.php:364 includes/mycred-functions.php:2784
1665
  msgid "No limit"
1666
+ msgstr "試行回数の制限なし"
1667
 
1668
+ #: abstracts/mycred-abstract-hook.php:294
1669
  msgid "/ Day"
1670
  msgstr "/ 日"
1671
 
1672
+ #: abstracts/mycred-abstract-hook.php:295
1673
  msgid "/ Week"
1674
  msgstr "/ 週"
1675
 
1676
+ #: abstracts/mycred-abstract-hook.php:296
1677
  msgid "/ Month"
1678
  msgstr "/ 月"
1679
 
1680
+ #: abstracts/mycred-abstract-hook.php:297
1681
  msgid "in Total"
1682
  msgstr "すべて"
1683
 
1684
+ #: abstracts/mycred-abstract-hook.php:365
1685
  msgid "Once every 24 hours"
1686
+ msgstr "24時間ごとに1回"
1687
 
1688
+ #: abstracts/mycred-abstract-hook.php:366
1689
  msgid "Once every 7 days"
1690
+ msgstr "7日ごとに1回"
1691
 
1692
+ #: abstracts/mycred-abstract-hook.php:367
1693
  msgid "Once per day (reset at midnight)"
1694
+ msgstr "1日に1回 (午前0時にリセット)"
1695
 
1696
+ #: abstracts/mycred-abstract-hook.php:374
1697
  #: addons/email-notices/myCRED-addon-email-notices.php:531
1698
  #: addons/email-notices/myCRED-addon-email-notices.php:862
1699
+ #: addons/badges/myCRED-addon-badges.php:905
1700
  #: addons/banking/abstracts/mycred-abstract-service.php:351
1701
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
1702
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
1711
  msgid "Surprise"
1712
  msgstr "サプライズ"
1713
 
1714
+ #: abstracts/mycred-abstract-module.php:520
1715
  #: modules/mycred-module-network.php:218
1716
  msgid "click to close"
1717
+ msgstr "クリックして閉じる"
1718
 
1719
+ #: abstracts/mycred-abstract-module.php:521
1720
  #: modules/mycred-module-network.php:219
1721
  msgid "click to open"
1722
+ msgstr "クリックして開く"
1723
 
1724
+ #: abstracts/mycred-abstract-module.php:554
1725
  #: modules/mycred-module-network.php:261
1726
+ #: addons/email-notices/myCRED-addon-email-notices.php:1556
1727
  #: addons/gateway/event-booking/mycred-eventespresso3.php:451
1728
  #: addons/buy-creds/modules/buycred-module-core.php:597
1729
  msgid "Settings Updated"
1730
+ msgstr "設定を更新しました"
1731
 
1732
  #: modules/mycred-module-management.php:101
1733
  msgid "Update Balance"
1746
  msgstr "金額はゼロにすることはできません"
1747
 
1748
  #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
1749
+ #: modules/mycred-module-log.php:896
1750
  #: includes/classes/class.query-export.php:263
1751
  #: includes/classes/class.query-export.php:399
1752
  #: includes/classes/class.query-log.php:892
1755
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:202
1756
  #: addons/buy-creds/modules/buycred-module-core.php:768
1757
  msgid "Date"
1758
+ msgstr "新しい順に表示"
1759
 
1760
  #: modules/mycred-module-management.php:236
1761
  #: addons/banking/services/mycred-service-interest.php:435
1764
  msgid "Time"
1765
  msgstr "時間"
1766
 
1767
+ #: modules/mycred-module-management.php:237
1768
+ #: modules/mycred-module-management.php:775 modules/mycred-module-log.php:93
1769
+ #: modules/mycred-module-log.php:904
1770
+ #: includes/classes/class.query-export.php:263
1771
+ #: includes/classes/class.query-export.php:360
1772
+ #: includes/classes/class.query-log.php:904
1773
+ #: addons/transfer/includes/mycred-transfer-widgets.php:109
1774
+ msgid "Reference"
1775
+ msgstr "リファレンス"
1776
+
1777
  #: modules/mycred-module-management.php:238 modules/mycred-module-log.php:96
1778
  #: includes/classes/class.query-export.php:263
1779
  #: includes/classes/class.query-export.php:406
1780
  #: includes/classes/class.query-log.php:894
1781
  #: includes/classes/class.query-log.php:907
1782
  msgid "Entry"
1783
+ msgstr "投稿"
1784
 
1785
  #: modules/mycred-module-management.php:314
1786
  msgid "Edit Users Balance"
1787
  msgstr "ユーザー残りポイントの編集"
1788
 
1789
  #: modules/mycred-module-management.php:315
1790
+ #: modules/mycred-module-settings.php:430 modules/mycred-module-log.php:462
1791
  #: addons/banking/myCRED-addon-banking.php:204
1792
  msgid "Close"
1793
+ msgstr "終了"
1794
 
1795
  #: modules/mycred-module-management.php:453
1796
  #: modules/mycred-module-management.php:571
1802
  #: modules/mycred-module-management.php:463
1803
  #: addons/coupons/myCRED-addon-coupons.php:309
1804
  msgid "Total"
1805
+ msgstr "トータル"
1806
 
1807
  #: modules/mycred-module-management.php:474
1808
  msgid "Adjust"
1813
  #: includes/classes/class.query-log.php:1621
1814
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:68
1815
  msgid "Edit"
1816
+ msgstr "編集する"
1817
 
1818
  #: modules/mycred-module-management.php:583
1819
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
1820
+ #: addons/buy-creds/modules/buycred-module-pending.php:745
1821
  msgid "Cancel"
1822
  msgstr "キャンセル"
1823
 
1826
  msgid "ID"
1827
  msgstr "ID"
1828
 
1829
+ #: modules/mycred-module-management.php:747
1830
+ #: modules/mycred-module-export.php:432 modules/mycred-module-export.php:480
1831
+ #: addons/buy-creds/modules/buycred-module-core.php:1374
1832
+ msgid "Username"
1833
+ msgstr "ユーザー名"
1834
+
1835
  #: modules/mycred-module-management.php:753
1836
  #: addons/gateway/event-booking/mycred-eventespresso3.php:307
1837
  #: addons/gateway/event-booking/mycred-eventespresso3.php:332
1851
  #: addons/transfer/includes/mycred-transfer-widgets.php:105
1852
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
1853
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
1854
+ #: addons/buy-creds/modules/buycred-module-pending.php:296
1855
+ #: addons/buy-creds/modules/buycred-module-pending.php:642
1856
+ #: addons/buy-creds/modules/buycred-module-pending.php:760
1857
  msgid "Amount"
1858
+ msgstr "数量"
1859
 
1860
  #: modules/mycred-module-management.php:770
1861
  msgid "A positive or negative value"
1862
  msgstr "正または負の値"
1863
 
1864
+ #: modules/mycred-module-management.php:796 modules/mycred-module-log.php:915
1865
  #: addons/gateway/event-booking/mycred-eventespresso3.php:518
1866
  msgid "Log Entry"
1867
  msgstr "ログ履歴"
1874
  msgid "optional"
1875
  msgstr "オプション"
1876
 
1877
+ #: modules/mycred-module-management.php:804
1878
+ msgid "Update"
1879
+ msgstr "更新"
1880
+
1881
+ #: modules/mycred-module-management.php:807
1882
+ msgid "Recent Activity"
1883
+ msgstr "最近のアクティビティ"
1884
+
1885
  #: modules/mycred-module-settings.php:138
1886
  msgid "Accounts successfully reset"
1887
  msgstr "アカウントを正常にリセット"
1916
 
1917
  #: modules/mycred-module-settings.php:429
1918
  msgid "Done!"
1919
+ msgstr "完了"
1920
 
1921
+ #: modules/mycred-module-settings.php:432
1922
+ msgid ""
1923
+ "In order to adjust the number of decimal places you want to use we must "
1924
+ "update your log. It is highly recommended that you backup your current log "
1925
+ "before continuing!"
1926
+ msgstr ""
1927
+ "小数点以下の桁数を調整するためには私たちはあなたのログを更新する必要が使用する。これは非常にそのあなたのバックアップを続行する前に現在のログをお勧めします!"
1928
+
1929
+ #: modules/mycred-module-settings.php:457
1930
+ msgid "Update Database"
1931
+ msgstr "データベースのアップデート"
1932
 
1933
  #: modules/mycred-module-settings.php:468
1934
  #: modules/mycred-module-settings.php:480
1938
  #: modules/mycred-module-settings.php:492
1939
  #, php-format
1940
  msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
1941
+ msgstr "デフォルトのポイントタイプ設定を変更するには<a href=\"%s\">ここをクリック</a>してください。"
1942
 
1943
  #: modules/mycred-module-settings.php:530
1944
  #, php-format
1945
  msgid "%s Settings"
1946
  msgstr "%s 設定"
1947
 
1948
+ #: modules/mycred-module-settings.php:530 modules/mycred-module-addons.php:330
1949
+ #: modules/mycred-module-addons.php:368 modules/mycred-module-log.php:544
1950
+ #: modules/mycred-module-network.php:241 modules/mycred-module-network.php:276
1951
+ #: modules/mycred-module-network.php:292
1952
+ #: includes/importers/mycred-cubepoints.php:305
1953
+ #: includes/importers/mycred-balances.php:245
1954
+ #: includes/importers/mycred-log-entries.php:239
1955
+ msgid "Documentation"
1956
+ msgstr "ドキュメンテーション"
1957
+
1958
  #: modules/mycred-module-settings.php:539
1959
  msgid "Core Settings"
1960
  msgstr "コアの設定"
1962
  #: modules/mycred-module-settings.php:544 includes/mycred-setup.php:275
1963
  #: addons/gateway/event-booking/mycred-eventespresso3.php:460
1964
  #: addons/gateway/event-booking/mycred-eventsmanager.php:658
 
1965
  msgid "Labels"
1966
  msgstr "ラベル"
1967
 
1968
+ #: modules/mycred-module-settings.php:548 includes/mycred-setup.php:279
1969
+ msgid "Singular"
1970
+ msgstr "単数形"
1971
+
1972
+ #: modules/mycred-module-settings.php:549
1973
+ #: modules/mycred-module-settings.php:555
1974
+ #: modules/mycred-module-settings.php:605
1975
+ #: modules/mycred-module-settings.php:612
1976
+ #: modules/mycred-module-settings.php:800
1977
+ #: modules/mycred-module-settings.php:806 includes/mycred-setup.php:280
1978
+ #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
1979
+ #: includes/mycred-setup.php:340 addons/coupons/myCRED-addon-coupons.php:710
1980
+ #: addons/coupons/myCRED-addon-coupons.php:717
1981
+ #: addons/coupons/myCRED-addon-coupons.php:726
1982
+ #: addons/coupons/myCRED-addon-coupons.php:733
1983
+ #: addons/coupons/myCRED-addon-coupons.php:742
1984
+ #: addons/coupons/myCRED-addon-coupons.php:749
1985
+ #: addons/coupons/myCRED-addon-coupons.php:758
1986
+ #: addons/coupons/myCRED-addon-coupons.php:765
1987
+ #: addons/sell-content/myCRED-addon-sell-content.php:674
1988
+ #: addons/sell-content/myCRED-addon-sell-content.php:690
1989
+ #: addons/sell-content/myCRED-addon-sell-content.php:697
1990
+ #: addons/sell-content/myCRED-addon-sell-content.php:720
1991
+ #: addons/banking/services/mycred-service-central.php:111
1992
+ #: addons/banking/services/mycred-service-interest.php:482
1993
+ #: addons/banking/services/mycred-service-interest.php:500
1994
+ #: addons/buy-creds/modules/buycred-module-core.php:346
1995
+ #: addons/buy-creds/modules/buycred-module-core.php:427
1996
+ #: addons/buy-creds/modules/buycred-module-core.php:454
1997
+ msgid "Required"
1998
+ msgstr "必須"
1999
+
2000
+ #: modules/mycred-module-settings.php:554 includes/mycred-setup.php:285
2001
+ msgid "Plural"
2002
+ msgstr "複数形"
2003
+
2004
  #: modules/mycred-module-settings.php:562 includes/mycred-setup.php:293
2005
+ #: addons/email-notices/myCRED-addon-email-notices.php:1415
2006
  msgid "Format"
2007
+ msgstr "書式"
2008
 
2009
  #: modules/mycred-module-settings.php:566 includes/mycred-setup.php:297
2010
  msgid "Prefix"
2011
+ msgstr "接頭辞"
2012
 
2013
  #: modules/mycred-module-settings.php:572 includes/mycred-setup.php:303
2014
  msgid "Separators"
2030
  msgid ""
2031
  "As this is your main point type, the value you select here will be the "
2032
  "largest number of decimals your installation will support."
2033
+ msgstr "これは主要なポイントタイプのため、ここで選択した値がインストールでサポートされる最大の小数単位となります。"
2034
 
2035
  #: modules/mycred-module-settings.php:600 includes/mycred-setup.php:328
2036
  msgid "Security"
2037
  msgstr "セキュリティ"
2038
 
2039
+ #: modules/mycred-module-settings.php:627 includes/mycred-setup.php:354
2040
+ msgid "Optional"
2041
+ msgstr "オプション"
2042
+
2043
+ #: modules/mycred-module-settings.php:645
2044
+ msgid "Other Settings"
2045
+ msgstr "その他の設定"
2046
+
2047
  #: modules/mycred-module-settings.php:647
2048
  msgid "Delete log entries when user is deleted."
2049
  msgstr "ユーザーが削除されたときにログ履歴を削除します。"
2052
  msgid "Management"
2053
  msgstr "管理"
2054
 
2055
+ #: modules/mycred-module-settings.php:678 modules/mycred-module-log.php:427
2056
  msgid "Entries"
2057
+ msgstr "お問い合わせ内容"
2058
 
2059
  #: modules/mycred-module-settings.php:684
2060
  #: modules/mycred-module-settings.php:709
2061
+ #: addons/ranks/myCRED-addon-ranks.php:1669
2062
+ #: addons/buy-creds/modules/buycred-module-pending.php:477
2063
+ #: addons/buy-creds/modules/buycred-module-pending.php:763
2064
  msgid "Actions"
2065
  msgstr "アクション"
2066
 
2067
  #: modules/mycred-module-settings.php:687
2068
  msgid "Empty Log"
2069
+ msgstr "ログを空にする"
2070
 
2071
  #: modules/mycred-module-settings.php:703
2072
+ #: addons/ranks/myCRED-addon-ranks.php:1080
2073
+ #: addons/badges/myCRED-addon-badges.php:425
2074
  msgid "Users"
2075
  msgstr "ユーザー"
2076
 
2077
  #: modules/mycred-module-settings.php:711
2078
  msgid "Set all to zero"
2079
+ msgstr "すべてをゼロに設定"
2080
 
2081
+ #: modules/mycred-module-settings.php:729 includes/mycred-widgets.php:573
2082
  #: addons/transfer/myCRED-addon-transfer.php:370
2083
  #: addons/sell-content/myCRED-addon-sell-content.php:581
2084
  #: addons/transfer/includes/mycred-transfer-widgets.php:121
2086
  msgid "Point Types"
2087
  msgstr "ポイントタイプ"
2088
 
2089
+ #: modules/mycred-module-settings.php:743
2090
+ #: modules/mycred-module-settings.php:769
2091
+ #: modules/mycred-module-settings.php:799
2092
  msgid "Meta Key"
2093
  msgstr "メタキー"
2094
 
2095
+ #: modules/mycred-module-settings.php:749
2096
+ #: modules/mycred-module-settings.php:775
2097
+ #: modules/mycred-module-settings.php:805
2098
  #: addons/email-notices/myCRED-addon-email-notices.php:578
2099
  #: addons/gateway/carts/mycred-woocommerce.php:155
2100
  msgid "Label"
2101
+ msgstr "表示ラベル"
2102
 
2103
+ #: modules/mycred-module-settings.php:756
2104
+ #: modules/mycred-module-settings.php:782
2105
  #: includes/classes/class.query-log.php:1019
2106
  #: includes/classes/class.query-log.php:1622
2107
  #: addons/banking/services/mycred-service-payouts.php:472
 
2108
  msgid "Delete"
2109
+ msgstr "消去"
2110
 
2111
+ #: modules/mycred-module-settings.php:795
2112
  msgid "Add New Type"
2113
  msgstr "新しいタイプを追加"
2114
 
2115
+ #: modules/mycred-module-settings.php:811
2116
  msgid ""
2117
  "The meta key must be lowercase and only contain letters or underscores. All "
2118
  "other characters will be deleted!"
2119
+ msgstr "メタキーは小文字で、文字またはアンダースコアのみが含まれている必要があります。他のすべての文字は削除されます。"
2120
 
2121
+ #: modules/mycred-module-settings.php:823
2122
  #: addons/gateway/event-booking/mycred-eventespresso3.php:551
2123
  #: addons/buy-creds/modules/buycred-module-core.php:650
2124
  msgid "Update Settings"
2125
+ msgstr "設定を更新"
2126
 
2127
+ #: modules/mycred-module-settings.php:836
2128
  msgid "Identify users by"
2129
  msgstr "ユーザーを識別する"
2130
 
2131
+ #: modules/mycred-module-settings.php:842
2132
  msgid "User ID"
2133
+ msgstr "ユーザー ID"
2134
 
2135
+ #: modules/mycred-module-settings.php:843
2136
  msgid "User Email"
2137
  msgstr "ユーザーのメール"
2138
 
2139
+ #: modules/mycred-module-settings.php:844
2140
  msgid "User Login"
2141
  msgstr "ユーザーログイン"
2142
 
2143
  #: modules/mycred-module-settings.php:852
2144
+ msgid ""
2145
+ "Use ID if you intend to use this export as a backup of your current site "
2146
+ "while Email is recommended if you want to export to a different site."
2147
+ msgstr ""
2148
+ "あなたはメールを使用すると、別のサイトにエクスポートする場合に推奨されている。あなたの現在のサイトのバックアップとして、このエクスポートを使用する場合は、IDを使用してください。"
2149
+
2150
+ #: modules/mycred-module-settings.php:857
2151
+ msgid "Import Log Entry"
2152
+ msgstr "ログエントリーのインポート"
2153
+
2154
+ #: modules/mycred-module-settings.php:859
2155
  #, php-format
2156
  msgid ""
2157
  "Optional log entry to use if you intend to import this file in a different "
2158
  "%s installation."
2159
  msgstr "あなたは別の %s のインストール中にこのファイルをインポートする場合は、オプションのログエントリに使用する。"
2160
 
2161
+ #: modules/mycred-module-settings.php:866 modules/mycred-module-export.php:268
2162
+ #: modules/mycred-module-export.php:295 modules/mycred-module-export.php:345
2163
  msgid "Export"
2164
+ msgstr "書き出し"
2165
 
2166
  #: modules/mycred-module-addons.php:25 modules/mycred-module-addons.php:26
2167
  #: includes/mycred-setup.php:171
2177
  "Setup recurring payouts or offer / charge interest on user account balances."
2178
  msgstr "支払いまたはオファーを繰り返しセットアップ / ユーザーアカウント残高の利息をチャージ。"
2179
 
 
 
 
 
 
 
 
 
 
 
2180
  #: modules/mycred-module-addons.php:208
2181
  msgid ""
2182
  "The coupons add-on allows you to create coupons that users can use to add "
2185
 
2186
  #: modules/mycred-module-addons.php:219
2187
  msgid "Create email notices for any type of myCRED instance."
2188
+ msgstr "myCRED インスタンスの任意のタイプのメール通知を作成します。"
 
 
 
 
 
 
 
 
 
 
2189
 
2190
  #: modules/mycred-module-addons.php:241
2191
  msgid "Create pop-up notifications for when users gain or loose points."
2192
  msgstr "ユーザーのポイントの獲得や消失をポップアップ通知を作成します。"
2193
 
 
 
 
 
 
 
2194
  #: modules/mycred-module-addons.php:264
2195
  msgid ""
2196
  "This add-on allows you to sell posts, pages or any public post types on your "
2200
  "このアドオンは、投稿、ページまたはあなたのウェブサイト上の公開の投稿タイプを販売することができます。あなたが全体のコンテンツを販売または "
2201
  "\"teasers\" を提供できるように、コンテンツの一部を販売私たちのショート コードを使用することができます\"。"
2202
 
2203
+ #: modules/mycred-module-addons.php:275
2204
+ msgid ""
2205
+ "Gives you access to your myCRED Statistics based on your users gains and "
2206
+ "loses."
2207
+ msgstr "ユーザーの損益に基づいた myCRED 統計情報へのアクセスを付与します。"
2208
+
2209
  #: modules/mycred-module-addons.php:286
2210
  msgid ""
2211
  "Allow your users to send or \"donate\" points to other members by either "
2233
 
2234
  #: modules/mycred-module-addons.php:406
2235
  msgid "Activate"
2236
+ msgstr "有効化"
2237
 
2238
  #: modules/mycred-module-addons.php:412
2239
  msgid "Deactivate Add-on"
2241
 
2242
  #: modules/mycred-module-addons.php:413
2243
  msgid "Deactivate"
2244
+ msgstr "無効化"
2245
 
2246
  #: modules/mycred-module-log.php:24 modules/mycred-module-log.php:25
2247
  #: addons/gateway/event-booking/mycred-eventespresso3.php:515
2248
  msgid "Log"
2249
  msgstr "履歴"
2250
 
2251
+ #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:892
2252
  #: includes/classes/class.query-export.php:263
2253
  #: includes/classes/class.query-export.php:371
2254
  #: includes/classes/class.query-log.php:891
2266
  msgid "Log entry not found"
2267
  msgstr "エントリのログが見つからない"
2268
 
2269
+ #: modules/mycred-module-log.php:461
2270
  msgid "Edit Log Entry"
2271
  msgstr "ログ履歴の編集"
2272
 
2273
+ #: modules/mycred-module-log.php:465
2274
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
2275
  msgstr "あなたはこのログ履歴を削除してもよろしいていますか?これは元に戻すことはできません!"
2276
 
2277
+ #: modules/mycred-module-log.php:496
2278
  msgid "Search results for"
2279
  msgstr "検索結果"
2280
 
2281
+ #: modules/mycred-module-log.php:544
2282
  #, php-format
2283
  msgid "%s Log"
2284
  msgstr "%s ログ"
2285
 
2286
+ #: modules/mycred-module-log.php:554
2287
  msgid ""
2288
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
2289
  "Certain hooks and shortcodes will not work correctly!"
2290
  msgstr "警告。必須 Mcrypt PHP ライブラリはこのサーバーにインストールされていません!一部のフックとショートコードが正しく動作しません!"
2291
 
2292
+ #: modules/mycred-module-log.php:652
2293
  #, php-format
2294
  msgid "My %s History"
2295
  msgstr "My %s 履歴"
2296
 
2297
+ #: modules/mycred-module-network.php:141
2298
+ msgid "Blocked"
2299
+ msgstr "ブロック済み"
2300
+
2301
+ #: modules/mycred-module-network.php:149
2302
+ msgid "Installed"
2303
+ msgstr "インストール済み"
2304
+
2305
+ #: modules/mycred-module-network.php:151
2306
+ msgid "Not Installed"
2307
+ msgstr "未インストール"
2308
+
2309
  #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:275
2310
  msgid "Master Template"
2311
  msgstr "マスター テンプレート"
2312
 
2313
  #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:280
2314
+ #: modules/mycred-module-network.php:296 modules/mycred-module-export.php:386
2315
  #: addons/sell-content/myCRED-addon-sell-content.php:481
2316
  msgid "Enabled"
2317
  msgstr "有効化"
2328
  #: modules/mycred-module-network.php:257
2329
  #, php-format
2330
  msgid "Note! %s has not yet been setup."
2331
+ msgstr "ご注意ください。%s がまだ設定されていません。"
2332
 
2333
  #: modules/mycred-module-network.php:285 modules/mycred-module-network.php:301
2334
+ #: modules/mycred-module-export.php:385 plugins/mycred-hook-affiliatewp.php:362
2335
  #: addons/sell-content/myCRED-addon-sell-content.php:396
2336
  #: addons/sell-content/myCRED-addon-sell-content.php:480
2337
  #: addons/buy-creds/modules/buycred-module-core.php:1127
2346
  msgid "Site Block"
2347
  msgstr "サイトのブロック"
2348
 
2349
+ #: modules/mycred-module-network.php:312
2350
+ msgid "Blog IDs"
2351
+ msgstr "ブログ ID"
2352
+
2353
  #: modules/mycred-module-network.php:314
2354
  #, php-format
2355
  msgid "Comma separated list of blog ids where %s is to be disabled."
2359
  msgid "Save Network Settings"
2360
  msgstr "ネットワーク設定を保存します。"
2361
 
2362
+ #: modules/mycred-module-export.php:317 modules/mycred-module-export.php:364
2363
  #: includes/classes/class.query-log.php:1687
2364
  msgid ""
2365
  "Log entries are exported to a CSV file and depending on the number of "
2366
  "entries selected, the process may take a few seconds."
2367
  msgstr "ログ履歴はCSVファイルにエクスポートされ選択されたエントリの数に応じて処理には数秒かかる場合があります。"
2368
 
2369
+ #: modules/mycred-module-export.php:392
2370
+ msgid "Exports"
2371
+ msgstr "エクスポート"
2372
+
2373
+ #: modules/mycred-module-export.php:398
2374
+ msgid "Front End Exports"
2375
+ msgstr "フロントエンドのエクスポート"
2376
+
2377
+ #: modules/mycred-module-export.php:414 modules/mycred-module-export.php:462
2378
+ msgid "Export Format"
2379
+ msgstr "エクスポートフォーマット"
2380
+
2381
+ #: modules/mycred-module-export.php:430 modules/mycred-module-export.php:478
2382
+ msgid "File Name"
2383
+ msgstr "ファイル名"
2384
+
2385
+ #: modules/mycred-module-export.php:432 modules/mycred-module-export.php:480
2386
  #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
2387
  #: includes/importers/mycred-cubepoints.php:353
2388
  #: includes/classes/class.query-export.php:263
2389
  #: includes/classes/class.query-export.php:391
2390
+ #: addons/ranks/myCRED-addon-ranks.php:1083
2391
+ #: addons/ranks/myCRED-addon-ranks.php:1251
2392
+ #: addons/ranks/myCRED-addon-ranks.php:1258
2393
  #: addons/email-notices/myCRED-addon-email-notices.php:280
2394
  #: addons/email-notices/myCRED-addon-email-notices.php:585
2395
  #: addons/coupons/myCRED-addon-coupons.php:256
2396
  #: addons/coupons/myCRED-addon-coupons.php:520
2397
  #: addons/gateway/event-booking/mycred-eventespresso3.php:483
2398
  #: addons/gateway/event-booking/mycred-eventsmanager.php:604
 
2399
  #: addons/gateway/carts/mycred-wpecommerce.php:383
2400
  #: addons/gateway/carts/mycred-woocommerce.php:125
2401
  #: addons/gateway/carts/mycred-woocommerce.php:166
2402
+ #: addons/buy-creds/modules/buycred-module-pending.php:584
2403
+ #: addons/buy-creds/modules/buycred-module-pending.php:762
2404
  msgid "Point Type"
2405
+ msgstr "ポイントタイプ"
2406
+
2407
+ #: modules/mycred-module-export.php:446
2408
+ msgid "Back End Exports"
2409
+ msgstr "バックエンドのエクスポート"
2410
 
2411
  #: modules/mycred-module-buddypress.php:31
2412
  msgid "My History"
2453
  msgid "This Month"
2454
  msgstr "今月"
2455
 
2456
+ #: modules/mycred-module-buddypress.php:352
2457
+ msgid "Show:"
2458
+ msgstr "表示:"
2459
+
2460
  #: modules/mycred-module-buddypress.php:352
2461
  msgid "Go"
2462
+ msgstr "移動"
2463
 
2464
  #: modules/mycred-module-buddypress.php:404
2465
  #: modules/mycred-module-buddypress.php:411
2466
+ #: addons/badges/myCRED-addon-badges.php:1165
2467
+ #: addons/badges/myCRED-addon-badges.php:1199
2468
  #: addons/gateway/carts/mycred-woocommerce.php:147
2469
  msgid "Do not show"
2470
  msgstr "表示しない"
2471
 
2472
  #: modules/mycred-module-buddypress.php:405
2473
+ #: addons/badges/myCRED-addon-badges.php:1166
2474
  msgid "Include in Profile Header"
2475
  msgstr "プロフィールのヘッダーに含める"
2476
 
2477
  #: modules/mycred-module-buddypress.php:406
2478
+ #: addons/ranks/myCRED-addon-ranks.php:1482
2479
+ #: addons/badges/myCRED-addon-badges.php:1167
2480
  msgid "Include under the \"Profile\" tab"
2481
  msgstr "\"プロフィール\" タブの下に挿入"
2482
 
2483
  #: modules/mycred-module-buddypress.php:407
2484
+ #: addons/badges/myCRED-addon-badges.php:1168
2485
  msgid "Include under the \"Profile\" tab and Profile Header"
2486
  msgstr "\"プロフィール\" タブとプロフィールのヘッダーの下に挿入"
2487
 
2493
  msgid "%singular% Balance"
2494
  msgstr "%singular% 残高"
2495
 
2496
+ #: modules/mycred-module-buddypress.php:447
2497
+ msgid "Members and visitors can view other members %_singular% balance."
2498
+ msgstr "会員と訪問者は他の会員の%_singular%残高を表示できます。"
2499
+
2500
  #: modules/mycred-module-buddypress.php:453
2501
+ #: addons/ranks/myCRED-addon-ranks.php:1497
2502
+ #: addons/ranks/myCRED-addon-ranks.php:1538
2503
  #: addons/notifications/myCRED-addon-notifications.php:198
2504
  msgid "Template"
2505
+ msgstr "Template"
2506
 
2507
  #: modules/mycred-module-buddypress.php:463
2508
  msgid "%plural% History"
2509
+ msgstr "%plural%履歴"
2510
 
2511
  #: modules/mycred-module-buddypress.php:477
2512
  msgid "Members can view each others %_plural% history."
2513
+ msgstr "会員はお互いの%_plural%履歴を表示できます。"
2514
 
2515
  #: modules/mycred-module-buddypress.php:482
2516
  msgid "Menu Title"
2545
  msgid "Invite Anyone Plugin"
2546
  msgstr "誰でも招待プラグイン"
2547
 
2548
+ #: plugins/mycred-hook-invite-anyone.php:205
2549
+ msgid "Sending Invites"
2550
+ msgstr "招待の送信"
 
 
2551
 
2552
  #: plugins/mycred-hook-invite-anyone.php:215
2553
  #: plugins/mycred-hook-invite-anyone.php:239
2581
  #: plugins/mycred-hook-buddypress-media.php:348
2582
  #: plugins/mycred-hook-wp-favorite-posts.php:228
2583
  #: plugins/mycred-hook-wp-favorite-posts.php:240
2584
+ #: plugins/mycred-hook-contact-form7.php:172
2585
  #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:485
2586
  #: plugins/mycred-hook-bbPress.php:536 plugins/mycred-hook-bbPress.php:560
2587
+ #: plugins/mycred-hook-woocommerce.php:514
2588
  #: includes/shortcodes/mycred_hook_table.php:79
2589
  msgid "Limit"
2590
  msgstr "制限"
2630
  #: plugins/mycred-hook-buddypress-media.php:372
2631
  #: plugins/mycred-hook-buddypress-media.php:390
2632
  #: plugins/mycred-hook-buddypress-media.php:408
2633
+ #: plugins/mycred-hook-contact-form7.php:178
2634
  #: plugins/mycred-hook-jetpack.php:549 plugins/mycred-hook-jetpack.php:567
2635
  #: plugins/mycred-hook-bbPress.php:449 plugins/mycred-hook-bbPress.php:467
2636
  #: plugins/mycred-hook-bbPress.php:491 plugins/mycred-hook-bbPress.php:518
2637
  #: plugins/mycred-hook-bbPress.php:542 plugins/mycred-hook-bbPress.php:566
2638
  #: plugins/mycred-hook-bbPress.php:593
2639
+ #: addons/badges/myCRED-addon-badges.php:974
2640
  msgid "Log template"
2641
  msgstr "ログテンプレート"
2642
 
2643
+ #: plugins/mycred-hook-invite-anyone.php:222
2644
+ #: plugins/mycred-hook-invite-anyone.php:246
2645
+ #: plugins/mycred-hook-wp-polls.php:178
2646
+ #: plugins/mycred-hook-wp-postratings.php:208
2647
+ #: plugins/mycred-hook-wp-postratings.php:215
2648
+ #: plugins/mycred-hook-gravityforms.php:173
2649
+ #: plugins/mycred-hook-simplepress.php:308
2650
+ #: plugins/mycred-hook-simplepress.php:326
2651
+ #: plugins/mycred-hook-simplepress.php:350
2652
+ #: plugins/mycred-hook-simplepress.php:377
2653
+ #: plugins/mycred-hook-buddypress.php:630
2654
+ #: plugins/mycred-hook-buddypress.php:654
2655
+ #: plugins/mycred-hook-buddypress.php:678
2656
+ #: plugins/mycred-hook-buddypress.php:702
2657
+ #: plugins/mycred-hook-buddypress.php:726
2658
+ #: plugins/mycred-hook-buddypress.php:753
2659
+ #: plugins/mycred-hook-buddypress.php:777
2660
+ #: plugins/mycred-hook-buddypress.php:795
2661
+ #: plugins/mycred-hook-buddypress.php:819
2662
+ #: plugins/mycred-hook-buddypress.php:837
2663
+ #: plugins/mycred-hook-buddypress.php:861
2664
+ #: plugins/mycred-hook-buddypress.php:885
2665
+ #: plugins/mycred-hook-buddypress.php:1521
2666
+ #: plugins/mycred-hook-buddypress.php:1539
2667
+ #: plugins/mycred-hook-buddypress.php:1563
2668
+ #: plugins/mycred-hook-buddypress.php:1587
2669
+ #: plugins/mycred-hook-buddypress.php:1611
2670
+ #: plugins/mycred-hook-buddypress.php:1635
2671
+ #: plugins/mycred-hook-buddypress.php:1659
2672
+ #: plugins/mycred-hook-buddypress.php:1683
2673
+ #: plugins/mycred-hook-buddypress.php:1707
2674
+ #: plugins/mycred-hook-buddypress.php:1725
2675
+ #: plugins/mycred-hook-buddypress.php:1749
2676
+ #: plugins/mycred-hook-affiliatewp.php:299
2677
+ #: plugins/mycred-hook-affiliatewp.php:326
2678
+ #: plugins/mycred-hook-affiliatewp.php:370
2679
+ #: plugins/mycred-hook-affiliatewp.php:377
2680
+ #: plugins/mycred-hook-events-manager-light.php:218
2681
+ #: plugins/mycred-hook-events-manager-light.php:236
2682
+ #: plugins/mycred-hook-sharethis.php:274
2683
+ #: plugins/mycred-hook-buddypress-media.php:307
2684
+ #: plugins/mycred-hook-buddypress-media.php:331
2685
+ #: plugins/mycred-hook-buddypress-media.php:355
2686
+ #: plugins/mycred-hook-buddypress-media.php:373
2687
+ #: plugins/mycred-hook-buddypress-media.php:391
2688
+ #: plugins/mycred-hook-buddypress-media.php:409
2689
+ #: plugins/mycred-hook-wp-favorite-posts.php:249
2690
+ #: plugins/mycred-hook-wp-favorite-posts.php:256
2691
+ #: plugins/mycred-hook-wp-favorite-posts.php:274
2692
+ #: plugins/mycred-hook-wp-favorite-posts.php:289
2693
+ #: plugins/mycred-hook-contact-form7.php:179
2694
+ #: plugins/mycred-hook-jetpack.php:550 plugins/mycred-hook-jetpack.php:568
2695
+ #: plugins/mycred-hook-bbPress.php:450 plugins/mycred-hook-bbPress.php:468
2696
+ #: plugins/mycred-hook-bbPress.php:492 plugins/mycred-hook-bbPress.php:519
2697
+ #: plugins/mycred-hook-bbPress.php:543 plugins/mycred-hook-bbPress.php:567
2698
+ #: plugins/mycred-hook-bbPress.php:594 plugins/mycred-hook-woocommerce.php:521
2699
+ #: plugins/mycred-hook-badgeOS.php:328 plugins/mycred-hook-badgeOS.php:346
2700
+ #: addons/transfer/includes/mycred-transfer-widgets.php:102
2701
+ #: addons/transfer/includes/mycred-transfer-widgets.php:106
2702
+ #: addons/transfer/includes/mycred-transfer-widgets.php:110
2703
+ #: addons/transfer/includes/mycred-transfer-widgets.php:122
2704
+ msgid "required"
2705
+ msgstr "必須"
2706
+
2707
+ #: plugins/mycred-hook-invite-anyone.php:229
2708
+ msgid "Accepted Invites"
2709
+ msgstr "承認した招待"
2710
+
2711
  #: plugins/mycred-hook-wp-polls.php:15
2712
  msgid "WP-Polls"
2713
  msgstr "WP-Polls(世論調査)"
2714
 
 
 
 
 
2715
  #: plugins/mycred-hook-wp-polls.php:177
2716
  #: plugins/mycred-hook-wp-favorite-posts.php:273
2717
  #: plugins/mycred-hook-wp-favorite-posts.php:288
2718
+ #: plugins/mycred-hook-woocommerce.php:520 plugins/mycred-hook-badgeOS.php:144
2719
  #: plugins/mycred-hook-badgeOS.php:146 plugins/mycred-hook-badgeOS.php:157
2720
  #: plugins/mycred-hook-badgeOS.php:327 plugins/mycred-hook-badgeOS.php:345
2721
  #: addons/coupons/myCRED-addon-coupons.php:764
2733
  msgid "Post Ratings"
2734
  msgstr "投稿評価"
2735
 
2736
+ #: plugins/mycred-hook-wp-postratings.php:85
2737
+ msgid "Based on rating"
2738
+ msgstr "基本の評価"
2739
+
2740
+ #: plugins/mycred-hook-wp-postratings.php:161
2741
+ msgid "Content Rating"
2742
+ msgstr "コンテンツ評価"
2743
+
2744
+ #: plugins/mycred-hook-wp-postratings.php:165
2745
+ #: plugins/mycred-hook-wp-favorite-posts.php:222
2746
+ #: plugins/mycred-hook-wp-favorite-posts.php:267
2747
+ msgid "Member"
2748
+ msgstr "会員"
2749
 
2750
+ #: plugins/mycred-hook-wp-postratings.php:177
2751
+ #: plugins/mycred-hook-wp-favorite-posts.php:234
2752
+ #: plugins/mycred-hook-wp-favorite-posts.php:282
2753
+ msgid "Content Author"
2754
+ msgstr "コンテンツの著者"
2755
 
2756
  #: plugins/mycred-hook-wp-postratings.php:192
2757
  #: plugins/mycred-hook-wp-postratings.php:199
2758
  msgid "Use the Rating Value instead of the amount set here."
2759
  msgstr "ここでは設定数量の代わりに評価値を使用します。"
2760
 
2761
+ #: plugins/mycred-hook-wp-postratings.php:207
2762
+ #: plugins/mycred-hook-wp-favorite-posts.php:248
2763
+ msgid "Member Log Template"
2764
+ msgstr "会員ログテンプレート"
2765
+
2766
  #: plugins/mycred-hook-gravityforms.php:15
2767
  msgid "Gravityform Submissions"
2768
  msgstr "重力フォーム送信"
2769
 
 
 
 
 
2770
  #: plugins/mycred-hook-gravityforms.php:130
2771
+ #: plugins/mycred-hook-contact-form7.php:134
2772
  msgid "No forms found."
2773
+ msgstr "フォームが見つかりませんでした。"
2774
 
2775
+ #: plugins/mycred-hook-gravityforms.php:156
2776
+ #: plugins/mycred-hook-contact-form7.php:162
2777
+ #, php-format
2778
+ msgid "Form: %s"
2779
+ msgstr "フォーム: %s"
2780
+
2781
+ #: plugins/mycred-hook-simplepress.php:291 plugins/mycred-hook-bbPress.php:475
2782
+ #: plugins/mycred-hook-bbPress.php:550
2783
+ msgid "New Topic"
2784
+ msgstr "新規トピック"
2785
+
2786
+ #: plugins/mycred-hook-simplepress.php:333
2787
+ msgid "New Topic Post"
2788
+ msgstr "新規トピック投稿"
2789
+
2790
+ #: plugins/mycred-hook-simplepress.php:359
2791
+ msgid "Topic authors can receive %_plural% for posting on their own Topic."
2792
+ msgstr "トピック投稿者は自分のトピックに投稿することにより%_plural%を受け取れます。"
2793
+
2794
+ #: plugins/mycred-hook-simplepress.php:366
2795
+ msgid "Deleted Topic Post"
2796
+ msgstr "削除済みのトピック投稿"
2797
 
2798
  #: plugins/mycred-hook-buddypress.php:16
2799
  msgid "BuddyPress: Members"
2800
+ msgstr "BuddyPress: 会員"
 
 
 
 
2801
 
2802
  #: plugins/mycred-hook-buddypress.php:25
2803
  msgid "BuddyPress: Groups"
2804
  msgstr "BuddyPress: グループ"
2805
 
 
 
 
 
 
 
 
2806
  #: plugins/mycred-hook-buddypress.php:310
2807
  #: addons/gateway/event-booking/mycred-eventsmanager.php:692
 
2808
  #: addons/gateway/carts/mycred-wpecommerce.php:415
2809
  msgid "Insufficient Funds"
2810
  msgstr "残高不足"
2811
 
2812
+ #: plugins/mycred-hook-buddypress.php:760
2813
+ msgid "New Comment"
2814
+ msgstr "新しいコメント"
 
 
2815
 
2816
  #: plugins/mycred-hook-buddypress.php:784
2817
  #: includes/classes/class.query-log.php:2189
2823
  msgid "Sending Gift"
2824
  msgstr "ギフト送信"
2825
 
2826
+ #: plugins/mycred-hook-buddypress.php:1502
2827
+ msgid "Group Creation"
2828
+ msgstr "グループ作成"
2829
+
2830
+ #: plugins/mycred-hook-buddypress.php:1508
2831
+ msgid ""
2832
+ "If you use a negative value and the user does not have enough %_plural%, the "
2833
+ "\"Create Group\" button will be disabled."
2834
+ msgstr "負の値を使用し、ユーザーが充分な%_plural%を持っていない場合、「グループを作成」ボタンは無効になります。"
2835
+
2836
+ #: plugins/mycred-hook-buddypress.php:1690
2837
+ msgid "Joining Groups"
2838
+ msgstr "グループに参加"
2839
+
2840
+ #: plugins/mycred-hook-buddypress.php:1714
2841
+ msgid "Leaving Groups"
2842
+ msgstr "グループを脱退"
2843
+
2844
+ #: plugins/mycred-hook-buddypress.php:1732
2845
+ msgid "New Group Comments"
2846
+ msgstr "新規グループコメント"
2847
+
2848
  #: plugins/mycred-hook-affiliatewp.php:15
2849
  msgid "AffiliateWP"
2850
  msgstr "AffiliateWP"
2853
  msgid ""
2854
  "Awards %_plural% for affiliate signups, referring visitors and store sale "
2855
  "referrals."
2856
+ msgstr "アフィリエイト登録、訪問者の紹介、紹介によるストアの売上に対して%_plural%を付与します。"
2857
 
2858
  #: plugins/mycred-hook-affiliatewp.php:287
2859
  msgid "Affiliate Signup"
2871
  #: includes/shortcodes/mycred_exchange.php:75
2872
  #: addons/gateway/event-booking/mycred-eventespresso3.php:498
2873
  #: addons/gateway/event-booking/mycred-eventsmanager.php:634
 
2874
  #: addons/gateway/carts/mycred-wpecommerce.php:389
2875
  #: addons/gateway/carts/mycred-woocommerce.php:136
2876
  msgid "Exchange Rate"
2894
  msgid "Events Manager"
2895
  msgstr "イベントマネージャー"
2896
 
 
 
 
 
2897
  #: plugins/mycred-hook-events-manager-light.php:201
2898
  msgid "Attending Event"
2899
  msgstr "出席する"
2904
 
2905
  #: plugins/mycred-hook-sharethis.php:15
2906
  msgid "%plural% for Sharing"
2907
+ msgstr "共有に対する%plural%"
 
 
 
 
 
 
2908
 
2909
  #: plugins/mycred-hook-sharethis.php:216
2910
  msgid "Your ShareThis public key is not set."
2918
  msgid "rtMedia Galleries"
2919
  msgstr "rtMediaギャラリー"
2920
 
 
 
 
 
 
2921
  #: plugins/mycred-hook-buddypress-media.php:290
2922
  #: includes/classes/class.query-log.php:2223
2923
  msgid "Photo Upload"
2937
  msgid "WP Favorite Posts"
2938
  msgstr "WP お気に入り投稿"
2939
 
 
 
 
 
2940
  #: plugins/mycred-hook-wp-favorite-posts.php:218
2941
  msgid "Adding Content to Favorites"
2942
  msgstr "お気に入りへのコンテンツの追加"
2949
  msgid "Contact Form 7 Form Submissions"
2950
  msgstr "Contact Form 7 のフォーム送信"
2951
 
 
 
 
 
2952
  #: plugins/mycred-hook-jetpack.php:15
2953
  msgid "Jetpack Subscriptions"
2954
+ msgstr "Jetpack 購読"
 
 
 
 
 
 
2955
 
2956
  #: plugins/mycred-hook-jetpack.php:539
2957
  msgid "Site Subscriptions"
2963
 
2964
  #: plugins/mycred-hook-bbPress.php:16
2965
  msgid "Awards %_plural% for bbPress actions."
2966
+ msgstr "bbPress でのアクションに対して%_plural%を付与します。"
2967
 
2968
+ #: plugins/mycred-hook-bbPress.php:433
2969
+ msgid "New Forums"
2970
+ msgstr "新規フォーラム"
2971
 
2972
+ #: plugins/mycred-hook-bbPress.php:576
2973
+ msgid "Topic authors can receive %_plural% for replying to their own Topic."
2974
+ msgstr "トピック投稿者は自分のトピックに返信することにより%_plural%を受け取れます。"
2975
 
2976
  #: plugins/mycred-hook-woocommerce.php:91
2977
  #: plugins/mycred-hook-woocommerce.php:157
2978
  msgid "Reward with %plural%"
2979
+ msgstr "%plural%で報酬"
2980
 
2981
+ #: plugins/mycred-hook-woocommerce.php:388
2982
  msgid "WooCommerce Product Reviews"
2983
  msgstr "WooCommerce 商品レビュー"
2984
 
 
 
 
 
 
2985
  #: plugins/mycred-hook-badgeOS.php:15
2986
  msgid "BadgeOS"
2987
+ msgstr "バッジ OS"
2988
 
2989
  #: plugins/mycred-hook-badgeOS.php:16
2990
  msgid ""
2997
  msgid ""
2998
  "Please setup your <a href=\"%s\">default settings</a> before using this "
2999
  "feature."
3000
+ msgstr "この機能を使用する前に<a href=\"%s\">デフォルト設定</a>を設定してください。"
3001
 
3002
  #: plugins/mycred-hook-badgeOS.php:138 plugins/mycred-hook-badgeOS.php:140
3003
  msgid "%plural% to Award"
3004
+ msgstr "付与する%plural%"
3005
 
3006
  #: plugins/mycred-hook-badgeOS.php:142
3007
  msgid "Use zero to disable"
3009
 
3010
  #: plugins/mycred-hook-badgeOS.php:155
3011
  msgid "Deduction Log Template"
3012
+ msgstr "減額ログテンプレート"
3013
 
3014
  #: includes/mycred-setup.php:50
3015
  msgid "myCRED needs your attention."
3017
 
3018
  #: includes/mycred-setup.php:50
3019
  msgid "Run Setup"
3020
+ msgstr "設定を実行"
3021
 
3022
  #: includes/mycred-setup.php:63 includes/mycred-setup.php:64
3023
  msgid "myCRED Setup"
3024
+ msgstr "myCRED 設定"
3025
 
3026
  #: includes/mycred-setup.php:105
3027
  #: addons/sell-content/myCRED-addon-sell-content.php:639
3028
  #, php-format
3029
  msgid "%s Setup"
3030
+ msgstr "%s 設定"
3031
+
3032
+ #: includes/mycred-setup.php:111
3033
+ msgid "Your First Point Type"
3034
+ msgstr "最初のポイントタイプ"
3035
+
3036
+ #: includes/mycred-setup.php:127
3037
+ msgid "Advanced Settings"
3038
+ msgstr "高度な設定"
3039
+
3040
+ #: includes/mycred-setup.php:139
3041
+ msgid "Whitelabel"
3042
+ msgstr "ホワイトラベル"
3043
+
3044
+ #: includes/mycred-setup.php:149
3045
+ msgid "Create Point Type"
3046
+ msgstr "ポイントタイプを作成"
3047
+
3048
+ #: includes/mycred-setup.php:149
3049
+ msgid "Hide"
3050
+ msgstr "非表示"
3051
+
3052
+ #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
3053
+ #: addons/email-notices/myCRED-addon-email-notices.php:1445
3054
+ msgid "Advanced"
3055
+ msgstr "高度な設定"
3056
+
3057
+ #: includes/mycred-setup.php:160
3058
+ msgid "Setup Complete!"
3059
+ msgstr "セットアップが完了しました。"
3060
+
3061
+ #: includes/mycred-setup.php:172
3062
+ msgid ""
3063
+ "If you want to use advanced features such as Transfers, Point Purchases etc. "
3064
+ "your next step should be to enable and setup your add-ons."
3065
+ msgstr "例えば移管、ポイントによる購入などの高度な機能を使用したい場合は、次のステップとしてアドオンを有効化し設定してください。"
3066
+
3067
+ #: includes/mycred-setup.php:173
3068
+ msgid "Setup Add-ons"
3069
+ msgstr "アドオンの設定"
3070
+
3071
+ #: includes/mycred-setup.php:178
3072
+ msgid "View Settings"
3073
+ msgstr "表示設定"
3074
+
3075
+ #: includes/mycred-setup.php:322
3076
+ msgid "Set to decimals to zero if you prefer to use whole numbers."
3077
+ msgstr "整数を使いたい場合は小数点以下はゼロに設定してください。"
3078
 
3079
  #: includes/mycred-remote.php:581
3080
  msgid "This feature requires WordPress Permalinks to be setup and enabled!"
3082
 
3083
  #: includes/mycred-remote.php:585
3084
  msgid "Click Update Settings to load the Remote API settings."
3085
+ msgstr "リモート API 設定を読み込むには「設定を更新」をクリックしてください。"
3086
 
3087
  #: includes/mycred-remote.php:588
3088
  msgid "Allow Remote Access"
3089
+ msgstr "リモートアクセスを許可"
3090
 
3091
  #: includes/mycred-remote.php:613
3092
  msgid "Remote Access"
3093
+ msgstr "リモートアクセス"
3094
 
3095
  #: includes/mycred-remote.php:615 addons/buy-creds/gateways/bitpay.php:245
3096
  msgid "API Key"
3097
+ msgstr "API キー"
3098
 
3099
  #: includes/mycred-remote.php:618
3100
  msgid "Key"
3118
 
3119
  #: includes/mycred-remote.php:630
3120
  msgid "Warning!"
3121
+ msgstr "警告 !"
3122
 
3123
  #: includes/mycred-remote.php:630
3124
  msgid ""
3125
  "Keep this key safe! Those you share this key with will be able to remotely "
3126
  "deduct / add / transfer %plural%!"
3127
+ msgstr "このキーを安全に保管してください。キーを共有した人は、%plural%をリモートから減額・追加・移管できるようになります。"
3128
 
3129
  #: includes/mycred-remote.php:632
3130
  msgid "Incoming URI"
3144
  msgid ""
3145
  "Remember to disable when not used to prevent mischievous calls from learning "
3146
  "about your setup!"
3147
+ msgstr "いたずらの呼び出しによってサイトの設定が知られるのを防ぐため、使用されていないときは無効化するのを忘れないでください。"
3148
 
3149
  #: includes/mycred-about.php:32
3150
  #, php-format
3168
 
3169
  #: includes/mycred-overview.php:89
3170
  msgid "Deducted"
3171
+ msgstr "減額済み"
3172
+
3173
+ #: includes/mycred-install.php:63
3174
+ msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
3175
+ msgstr "myCRED は WordPress 4.0以降が必要です。バージョンが検出されました: "
3176
+
3177
+ #: includes/mycred-install.php:68
3178
+ msgid "myCRED requires PHP 5.3 or higher. Version detected: "
3179
+ msgstr "myCRED は、PHP 5.3以降が必要です。バージョンが検出されました: "
3180
 
3181
  #: includes/mycred-install.php:73
3182
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3183
+ msgstr "myCRED には SQL 5.0以降が必要です。検出バージョン:"
3184
 
3185
  #: includes/mycred-install.php:78
3186
  msgid ""
3205
  msgstr "私の残高 (%s) "
3206
 
3207
  #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
3208
+ #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1373
3209
  #: addons/gateway/carts/mycred-woocommerce.php:96
3210
  #: addons/transfer/includes/mycred-transfer-widgets.php:91
3211
  #: addons/sell-content/includes/mycred-sell-shortcodes.php:203
3224
 
3225
  #: includes/mycred-widgets.php:207
3226
  msgid "Number of entires"
3227
+ msgstr "エントリーの数"
3228
 
3229
  #: includes/mycred-widgets.php:211 includes/mycred-widgets.php:386
3230
  msgid "Row layout"
3237
  #: includes/mycred-widgets.php:222 includes/mycred-widgets.php:590
3238
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:35
3239
  msgid "Message"
3240
+ msgstr "本文"
3241
 
3242
  #: includes/mycred-widgets.php:282
3243
  #, php-format
3276
 
3277
  #: includes/mycred-widgets.php:396
3278
  msgid "Order"
3279
+ msgstr "注文"
3280
 
3281
  #: includes/mycred-widgets.php:401 includes/classes/class.query-log.php:1081
3282
  msgid "Ascending"
3296
  "them at the end with their current position."
3297
  msgstr "現在のユーザがこのリーダーボードにない場合、あなたはそれらの現在位置と終了時にそれらを追加することを選択することができます。"
3298
 
3299
+ #: includes/mycred-widgets.php:419
3300
+ msgid "Timeframe"
3301
+ msgstr "タイムフレーム"
3302
+
3303
  #: includes/mycred-widgets.php:469
3304
  #, php-format
3305
  msgid "(%s) Wallet"
3317
  msgid "Points"
3318
  msgstr "ポイント"
3319
 
3320
+ #: includes/mycred-functions.php:472
3321
  msgid "Deleted"
3322
+ msgstr "削除済み"
3323
 
3324
+ #: includes/mycred-functions.php:613
3325
  msgid "Deleted Item"
3326
  msgstr "削除済みアイテム"
3327
 
3328
+ #: includes/mycred-functions.php:677
3329
  #: addons/email-notices/myCRED-addon-email-notices.php:864
3330
  #: addons/gateway/carts/mycred-wpecommerce.php:370
3331
  msgid "General"
3332
+ msgstr "全般"
3333
 
3334
+ #: includes/mycred-functions.php:684
3335
  msgid "User Related"
3336
  msgstr "関連ユーザー"
3337
 
3338
+ #: includes/mycred-functions.php:691
3339
  msgid "Post Related"
3340
  msgstr "関連投稿"
3341
 
3342
+ #: includes/mycred-functions.php:698
3343
  msgid "Comment Related"
3344
  msgstr "関連コメント"
3345
 
3346
+ #: includes/mycred-functions.php:705
3347
  msgid "Widget Related"
3348
  msgstr "関連ウィジェット"
3349
 
3350
+ #: includes/mycred-functions.php:712
3351
  msgid "Amount Related"
3352
  msgstr "関連金額"
3353
 
3354
+ #: includes/mycred-functions.php:719
3355
  msgid "Video Related"
3356
  msgstr "関連ビデオ"
3357
 
3358
+ #: includes/mycred-functions.php:730
3359
  msgid "and"
3360
+ msgstr "および"
3361
 
3362
+ #: includes/mycred-functions.php:732
3363
  msgid "Available Template Tags:"
3364
+ msgstr "使用可能なテンプレートタグ:"
3365
 
3366
+ #: includes/mycred-functions.php:2790
3367
  msgid "in total"
3368
  msgstr "合計"
3369
 
3370
+ #: includes/mycred-functions.php:2792
3371
  msgid "per day"
3372
  msgstr "1 日あたり"
3373
 
3374
+ #: includes/mycred-functions.php:2795
3375
  msgid "per week"
3376
  msgstr "1週あたり"
3377
 
3378
+ #: includes/mycred-functions.php:2798
3379
  msgid "per month"
3380
  msgstr "1月あたり"
3381
 
3382
+ #: includes/mycred-functions.php:2800 includes/mycred-functions.php:2806
3383
  #, php-format
3384
  msgid "Maximum once"
3385
  msgid_plural "Maximum %d times"
3386
  msgstr[0] "最大回"
3387
+ msgstr[1] ""
3388
+
3389
+ #: includes/mycred-functions.php:2828
3390
+ #, php-format
3391
+ msgctxt "e.g. 5 th"
3392
+ msgid "%d th"
3393
+ msgstr "%d番目"
3394
+
3395
+ #: includes/mycred-functions.php:2832
3396
+ #, php-format
3397
+ msgctxt "e.g. 1 st"
3398
+ msgid "%d st"
3399
+ msgstr "%d番目"
3400
+
3401
+ #: includes/mycred-functions.php:2833
3402
+ #, php-format
3403
+ msgctxt "e.g. 2 nd"
3404
+ msgid "%d nd"
3405
+ msgstr "%d番目"
3406
+
3407
+ #: includes/mycred-functions.php:2834
3408
+ #, php-format
3409
+ msgctxt "e.g. 3 rd"
3410
+ msgid "%d rd"
3411
+ msgstr "%d番目"
3412
+
3413
+ #: includes/importers/mycred-cubepoints.php:85
3414
+ msgid "Could not find a CubePoints installation."
3415
+ msgstr "CubePoints インストールが見つかりませんでした。"
3416
 
3417
  #: includes/importers/mycred-cubepoints.php:282
3418
  msgid "No balances were imported."
3432
  "完全なインポート - 合計<strong>%d</strong>の残高が正常にインポートされました。 <strong>%d</strong>"
3433
  "件のスキップがありました。"
3434
 
3435
+ #: includes/importers/mycred-cubepoints.php:289
3436
+ #: includes/importers/mycred-balances.php:230
3437
+ msgid "View Users"
3438
+ msgstr "ユーザーを表示"
3439
+
3440
+ #: includes/importers/mycred-cubepoints.php:305
3441
+ msgid "Import CubePoints"
3442
+ msgstr "CubePoints をインポート"
3443
+
3444
  #: includes/importers/mycred-cubepoints.php:340
3445
  #: includes/importers/mycred-cubepoints.php:364
3446
  #: includes/importers/mycred-balances.php:323
3458
 
3459
  #: includes/importers/mycred-cubepoints.php:346
3460
  msgid "CubePoints Balances Only"
3461
+ msgstr "CubePoints 残高のみ"
3462
 
3463
  #: includes/importers/mycred-cubepoints.php:347
3464
  msgid "Log Entries and Balances"
3465
  msgstr "ログ履歴および残高"
3466
 
3467
+ #: includes/importers/mycred-balances.php:245
3468
+ #, php-format
3469
+ msgid "Import Balances %s"
3470
+ msgstr "インポート残高%s"
3471
+
3472
  #: includes/importers/mycred-balances.php:284
3473
  #: includes/importers/mycred-log-entries.php:280
3474
  msgid "Choose a file from your computer:"
3475
+ msgstr "お使いのコンピュータからファイルを選択:"
3476
 
3477
  #: includes/importers/mycred-balances.php:290
3478
  #: includes/importers/mycred-log-entries.php:286
3479
  #, php-format
3480
  msgid "Maximum size: %s"
3481
+ msgstr "最大サイズ: %s"
3482
 
3483
  #: includes/importers/mycred-balances.php:295
3484
  #: includes/importers/mycred-log-entries.php:291
3485
  msgid "OR enter path to file:"
3486
+ msgstr "またはファイルへのパスを入力:"
3487
 
3488
  #: includes/importers/mycred-balances.php:303
3489
  #: includes/importers/mycred-log-entries.php:299
3496
 
3497
  #: includes/importers/mycred-balances.php:315
3498
  msgid "Replace current balances with the amount in this CSV file"
3499
+ msgstr "この CSV ファイルに量と現在の残高を交換してください"
3500
 
3501
  #: includes/importers/mycred-balances.php:316
3502
  msgid "Adjust current balances according to the amount in this CSV file"
3503
+ msgstr "この CSV ファイルの量に応じて、現在の残高を調整します"
3504
+
3505
+ #: includes/importers/mycred-log-entries.php:213
3506
+ #, php-format
3507
+ msgid ""
3508
+ "Import complete - A total of <strong>%d</strong> log entries were "
3509
+ "successfully imported. <strong>%d</strong> was skipped."
3510
+ msgstr ""
3511
+ "インポート完了 - 合計<strong>%d</strong>件のログ項目をインポートしました。<strong>%d</strong>"
3512
+ "件をスキップしました。"
3513
 
3514
  #: includes/importers/mycred-log-entries.php:214
3515
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:100
3516
  msgid "View Log"
3517
+ msgstr "ログ参照"
3518
+
3519
+ #: includes/importers/mycred-log-entries.php:239
3520
+ #, php-format
3521
+ msgid "Import Log Entries %s"
3522
+ msgstr "インポートログ項目 %s"
3523
+
3524
+ #: includes/shortcodes/mycred_exchange.php:27
3525
+ #: includes/shortcodes/mycred_hook_table.php:24
3526
+ msgid "Point type not found."
3527
+ msgstr "ポイントタイプが見つかりません。"
3528
 
3529
  #: includes/shortcodes/mycred_exchange.php:33
3530
  #: includes/shortcodes/mycred_exchange.php:41
3556
 
3557
  #: includes/shortcodes/mycred_exchange.php:124
3558
  msgid "Point types not found."
3559
+ msgstr "ポイントタイプが見つかりません。"
3560
 
3561
  #: includes/shortcodes/mycred_exchange.php:169
3562
  #, php-format
3585
 
3586
  #: includes/shortcodes/mycred_hook_table.php:21
3587
  msgid "No instances found for this point type"
3588
+ msgstr "このポイントタイプのインスタンスは見つかりませんでした。"
3589
 
3590
  #: includes/shortcodes/mycred_hook_table.php:77
3591
  msgid "Instance"
3595
  msgid "A video ID is required for this shortcode"
3596
  msgstr "動画IDはこのショートコードのために必要とされる"
3597
 
3598
+ #: includes/classes/class.query-export.php:263
3599
+ msgid "Data"
3600
+ msgstr "日付"
3601
+
3602
  #: includes/classes/class.query-export.php:374
3603
  #: includes/classes/class.query-log.php:1526
3604
  msgid "User Missing"
3610
 
3611
  #: includes/classes/class.query-log.php:954
3612
  msgid "No log entries found"
3613
+ msgstr "ログ項目が見つかりませんでした"
3614
+
3615
+ #: includes/classes/class.query-log.php:1016
3616
+ msgid "Bulk Actions"
3617
+ msgstr "一括操作"
3618
+
3619
+ #: includes/classes/class.query-log.php:1034
3620
+ msgid "Apply"
3621
+ msgstr "適用"
3622
 
3623
  #: includes/classes/class.query-log.php:1055
3624
  msgid "Show all references"
3630
 
3631
  #: includes/classes/class.query-log.php:1101
3632
  msgid "Filter"
3633
+ msgstr "検索条件"
3634
+
3635
+ #: includes/classes/class.query-log.php:1269
3636
+ #, php-format
3637
+ msgid "1 entry"
3638
+ msgid_plural "%d entries"
3639
+ msgstr[0] "%d件のエントリー"
3640
+ msgstr[1] ""
3641
+
3642
+ #: includes/classes/class.query-log.php:1539
3643
+ msgid "Show more details"
3644
+ msgstr "さらに詳細を表示"
3645
 
3646
  #: includes/classes/class.query-log.php:1694
3647
  msgid "No export options available."
3648
+ msgstr "利用できるエクスポートのオプションがありません。"
3649
 
3650
  #: includes/classes/class.query-log.php:1727
3651
  #: includes/classes/class.query-log.php:1729
3666
 
3667
  #: includes/classes/class.query-log.php:2182
3668
  msgid "Viewing Content (Member)"
3669
+ msgstr "コンテンツ閲覧 (会員)"
3670
 
3671
  #: includes/classes/class.query-log.php:2183
3672
  msgid "Viewing Content (Author)"
3674
 
3675
  #: includes/classes/class.query-log.php:2184
3676
  msgid "Logging in"
3677
+ msgstr "ログイン中"
3678
 
3679
  #: includes/classes/class.query-log.php:2185
3680
  msgid "Publishing Content"
3690
 
3691
  #: includes/classes/class.query-log.php:2188
3692
  msgid "SPAM Comment"
3693
+ msgstr "SPAM コメント"
3694
 
3695
  #: includes/classes/class.query-log.php:2190
3696
  msgid "Link Click"
3814
 
3815
  #: includes/classes/class.query-log.php:2245
3816
  msgid "Form Submission (Gravity Form)"
3817
+ msgstr "フォーム送信 (Gravity Form)"
3818
 
3819
  #: includes/classes/class.query-log.php:2248
3820
  msgid "New Forum Topic (SimplePress)"
3885
  msgid "buyCRED Purchase (BitPay)"
3886
  msgstr "buyCRED 購入 (BitPay)"
3887
 
3888
+ #: includes/classes/class.query-log.php:2298
3889
+ #: addons/coupons/myCRED-addon-coupons.php:460
3890
+ msgid "Coupon Usage"
3891
+ msgstr "クーポンの使い方"
3892
+
3893
  #: includes/classes/class.query-log.php:2302
3894
  msgid "Store Purchase (WooCommerce)"
3895
  msgstr "ストア購入 (WooCommerce)"
3912
 
3913
  #: includes/classes/class.query-log.php:2311
3914
  msgid "Store Purchase (WP E-Commerce)"
3915
+ msgstr "ストア購入 (WP E-Commerce)"
3916
 
3917
  #: includes/classes/class.query-log.php:2317
3918
  msgid "Event Payment (Event Espresso)"
3945
  msgid "Banking"
3946
  msgstr "バンキング"
3947
 
 
 
 
 
3948
  #: addons/banking/myCRED-addon-banking.php:159
3949
  msgid "Recurring Payouts"
3950
+ msgstr "定期配当"
3951
 
3952
  #: addons/banking/myCRED-addon-banking.php:160
3953
  msgid "Setup mass %_singular% payouts for your users."
3954
+ msgstr "ユーザーに対する一括%_singular%配当を設定する。"
3955
 
3956
  #: addons/banking/myCRED-addon-banking.php:253
3957
  #, php-format
3958
  msgid "%s Banking"
3959
  msgstr "%s バンキング"
3960
 
3961
+ #: addons/banking/myCRED-addon-banking.php:271
3962
+ msgid "Warning"
3963
+ msgstr "警告"
3964
+
3965
  #: addons/banking/myCRED-addon-banking.php:273
3966
  #: addons/buy-creds/modules/buycred-module-core.php:618
3967
  msgid "Enable"
3968
+ msgstr "有効化"
3969
 
3970
  #: addons/banking/myCRED-addon-banking.php:292
3971
  msgid "Update Changes"
3973
 
3974
  #: addons/transfer/myCRED-addon-transfer.php:41
3975
  msgid "You do not have enough %plural% to send."
3976
+ msgstr "送信するための%plural%が足りません。"
3977
 
3978
  #: addons/transfer/myCRED-addon-transfer.php:42
3979
  msgid "You have exceeded your %limit% transfer limit."
4021
 
4022
  #: addons/transfer/myCRED-addon-transfer.php:341
4023
  msgid "Impose daily limit."
4024
+ msgstr "日ごとの制限を設定する。"
4025
 
4026
  #: addons/transfer/myCRED-addon-transfer.php:342
4027
  msgid "Impose weekly limit."
4075
  #: addons/transfer/myCRED-addon-transfer.php:456
4076
  #: addons/sell-content/myCRED-addon-sell-content.php:685
4077
  #: addons/gateway/event-booking/mycred-eventsmanager.php:641
 
4078
  msgid "Log Templates"
4079
  msgstr "ログテンプレート"
4080
 
4086
  msgid "Log template for receiving"
4087
  msgstr "受信ログのテンプレート"
4088
 
4089
+ #: addons/transfer/myCRED-addon-transfer.php:507
4090
+ msgid "Limit Template"
4091
+ msgstr "制限テンプレート"
4092
+
4093
+ #: addons/transfer/myCRED-addon-transfer.php:523
4094
+ msgid "Balance Template"
4095
+ msgstr "残高テンプレート"
4096
+
4097
  #: addons/ranks/myCRED-addon-ranks.php:216
4098
  #, php-format
4099
  msgid "Ranks for %s"
4105
  #: addons/ranks/myCRED-addon-ranks.php:339
4106
  #: addons/ranks/myCRED-addon-ranks.php:340
4107
  #: addons/ranks/myCRED-addon-ranks.php:724
4108
+ #: addons/ranks/myCRED-addon-ranks.php:1363
4109
+ #: addons/ranks/myCRED-addon-ranks.php:1658
4110
  msgid "Ranks"
4111
  msgstr "ランク"
4112
 
4116
  #: addons/ranks/myCRED-addon-ranks.php:876
4117
  #: addons/ranks/myCRED-addon-ranks.php:904
4118
  msgid "Rank"
4119
+ msgstr "順位"
4120
 
4121
  #: addons/ranks/myCRED-addon-ranks.php:223
4122
  #: addons/ranks/myCRED-addon-ranks.php:224
4126
  #: addons/badges/myCRED-addon-badges.php:151
4127
  #: addons/banking/services/mycred-service-payouts.php:896
4128
  msgid "Add New"
4129
+ msgstr "新規作成"
4130
 
4131
  #: addons/ranks/myCRED-addon-ranks.php:225
4132
  msgid "Edit Rank"
4145
  msgstr "ランク検索"
4146
 
4147
  #: addons/ranks/myCRED-addon-ranks.php:234
4148
+ #: addons/ranks/myCRED-addon-ranks.php:1290
4149
  msgid "No ranks found"
4150
  msgstr "ランクがみつかりません"
4151
 
4163
  msgid "Rank Updated."
4164
  msgstr "ランクを更新。"
4165
 
4166
+ #: addons/ranks/myCRED-addon-ranks.php:288
4167
+ msgid "Rank Enabled."
4168
+ msgstr "ランクを有効にしました。"
4169
+
4170
+ #: addons/ranks/myCRED-addon-ranks.php:289
4171
+ msgid "Rank Saved."
4172
+ msgstr "ランクを保存しました。"
4173
+
4174
  #: addons/ranks/myCRED-addon-ranks.php:481
4175
  #, php-format
4176
  msgid "Completed - Total of %d users effected"
4184
  msgid "Are you sure you want to re-assign user ranks?"
4185
  msgstr "あなたはユーザーランクを再割り当てしてもよろしいですか?"
4186
 
4187
+ #: addons/ranks/myCRED-addon-ranks.php:1077
4188
+ #: addons/ranks/myCRED-addon-ranks.php:1178
4189
  msgid "Rank Title"
4190
  msgstr "ランクタイトル"
4191
 
4192
+ #: addons/ranks/myCRED-addon-ranks.php:1078
4193
  msgid "Logo"
4194
  msgstr "ロゴ"
4195
 
4196
+ #: addons/ranks/myCRED-addon-ranks.php:1079
4197
+ #: addons/badges/myCRED-addon-badges.php:853
4198
+ #: addons/badges/myCRED-addon-badges.php:854
4199
  msgid "Requirement"
4200
  msgstr "必要条件"
4201
 
4202
+ #: addons/ranks/myCRED-addon-ranks.php:1105
4203
  msgid "No Logo Set"
4204
+ msgstr "ロゴ未設定"
4205
 
4206
+ #: addons/ranks/myCRED-addon-ranks.php:1120
4207
+ #: addons/ranks/myCRED-addon-ranks.php:1125
4208
  msgid "Any Value"
4209
  msgstr "任意の値"
4210
 
4211
+ #: addons/ranks/myCRED-addon-ranks.php:1122
4212
  #: addons/buy-creds/modules/buycred-module-core.php:345
4213
  msgid "Minimum %plural%"
4214
+ msgstr "最小%plural%"
4215
 
4216
+ #: addons/ranks/myCRED-addon-ranks.php:1127
4217
  msgid "Maximum %plural%"
4218
+ msgstr "最大%plural%"
4219
 
4220
+ #: addons/ranks/myCRED-addon-ranks.php:1279
4221
+ #: addons/ranks/myCRED-addon-ranks.php:1280
4222
  msgid "Not Set"
4223
+ msgstr "未定義"
4224
 
4225
+ #: addons/ranks/myCRED-addon-ranks.php:1370
4226
  msgid "Rank Features"
4227
  msgstr "ランクの特長"
4228
 
4229
+ #: addons/ranks/myCRED-addon-ranks.php:1376
4230
  msgid "%plural% requirement"
4231
+ msgstr "%plural%要件"
4232
 
4233
+ #: addons/ranks/myCRED-addon-ranks.php:1382
4234
  msgid "Content"
4235
+ msgstr "コンテント"
4236
 
4237
+ #: addons/ranks/myCRED-addon-ranks.php:1385
4238
  msgid "Excerpt"
4239
  msgstr "抜粋"
4240
 
4241
+ #: addons/ranks/myCRED-addon-ranks.php:1388
4242
  msgid "Comments"
4243
  msgstr "コメント"
4244
 
4245
+ #: addons/ranks/myCRED-addon-ranks.php:1391
4246
  msgid "Page Attributes"
4247
  msgstr "ページ属性"
4248
 
4249
+ #: addons/ranks/myCRED-addon-ranks.php:1394
4250
  msgid "Custom Fields"
4251
  msgstr "カスタムフィールド"
4252
 
4253
+ #: addons/ranks/myCRED-addon-ranks.php:1411
4254
  msgid "Display Order"
4255
  msgstr "表示順序"
4256
 
4257
+ #: addons/ranks/myCRED-addon-ranks.php:1417
4258
  msgid "Ascending - Lowest rank to highest"
4259
  msgstr "昇順 - 最低ランクを最高に"
4260
 
4261
+ #: addons/ranks/myCRED-addon-ranks.php:1418
4262
  msgid "Descending - Highest rank to lowest"
4263
  msgstr "降順 - 最高ランクを最低に"
4264
 
4265
+ #: addons/ranks/myCRED-addon-ranks.php:1458
4266
+ msgid "Tools"
4267
+ msgstr "ツール"
4268
+
4269
+ #: addons/ranks/myCRED-addon-ranks.php:1460
4270
  msgid "Calculate Totals"
4271
  msgstr "合計を計算します。"
4272
 
4273
+ #: addons/ranks/myCRED-addon-ranks.php:1480
4274
+ #: addons/ranks/myCRED-addon-ranks.php:1521
4275
  msgid "Do not show."
4276
  msgstr "表示しない。"
4277
 
4278
+ #: addons/ranks/myCRED-addon-ranks.php:1481
4279
  msgid "Include in Profile Header."
4280
  msgstr "プロフィールのヘッダーに含める。"
4281
 
4282
+ #: addons/ranks/myCRED-addon-ranks.php:1483
4283
  msgid "Include under the \"Profile\" tab and Profile Header."
4284
  msgstr "\"Profile\" タブの下に含めるとヘッダーのプロフィールを作成します。"
4285
 
4286
+ #: addons/ranks/myCRED-addon-ranks.php:1499
4287
+ #: addons/ranks/myCRED-addon-ranks.php:1540
4288
  msgid ""
4289
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
4290
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
4292
  "ユーザーがBuddyPressにランク表示するときに使用するテンプレート。ランクのロゴを表示するには、タイトルと %rank_logo% の "
4293
  "%rank_title% を使用してください。 HTMLが許可されます。"
4294
 
4295
+ #: addons/ranks/myCRED-addon-ranks.php:1503
4296
+ #: addons/ranks/myCRED-addon-ranks.php:1544
4297
+ #: addons/badges/myCRED-addon-badges.php:1187
4298
+ #: addons/badges/myCRED-addon-badges.php:1221
4299
+ msgid "Not installed"
4300
+ msgstr "未インストール"
4301
+
4302
+ #: addons/ranks/myCRED-addon-ranks.php:1522
4303
  msgid "Include in Topic Replies"
4304
  msgstr "トピック返信を挿入"
4305
 
4306
+ #: addons/ranks/myCRED-addon-ranks.php:1523
4307
+ #: addons/badges/myCRED-addon-badges.php:1200
4308
  msgid "Include in Profile"
4309
  msgstr "プロフィールに挿入"
4310
 
4311
+ #: addons/ranks/myCRED-addon-ranks.php:1524
4312
  msgid "Include in Topic Replies and Profile"
4313
  msgstr "トピック返信とプロフィールを挿入"
4314
 
4315
+ #: addons/ranks/myCRED-addon-ranks.php:1550
4316
+ #: addons/email-notices/myCRED-addon-email-notices.php:1466
4317
+ #: addons/badges/myCRED-addon-badges.php:1227
4318
  #: addons/buy-creds/modules/buycred-module-core.php:460
4319
  msgid "Available Shortcodes"
4320
  msgstr "利用可能なショートコード"
4321
 
4322
+ #: addons/ranks/myCRED-addon-ranks.php:1661
4323
  msgid "User Meta Key"
4324
  msgstr "ユーザーメタキー"
4325
 
4326
+ #: addons/ranks/myCRED-addon-ranks.php:1665
4327
  msgid "No. of ranks"
4328
  msgstr "ランク番号"
4329
 
4330
+ #: addons/ranks/myCRED-addon-ranks.php:1670
4331
  msgid "Remove All Ranks"
4332
  msgstr "すべてのランクを削除"
4333
 
4334
+ #: addons/ranks/myCRED-addon-ranks.php:1670
4335
  msgid "Assign Ranks to Users"
4336
  msgstr "ユーザーへのランクの割当て"
4337
 
4338
  #: addons/notifications/myCRED-addon-notifications.php:191
4339
  msgid "Notifications"
4340
+ msgstr "お知らせ"
4341
 
4342
  #: addons/notifications/myCRED-addon-notifications.php:200
4343
  msgid ""
4372
  msgid "Use the included CSS Styling for notifications."
4373
  msgstr "通知に含まれている CSS スタイルを使用します。"
4374
 
4375
+ #: addons/email-notices/myCRED-addon-email-notices.php:128
4376
+ #: addons/email-notices/myCRED-addon-email-notices.php:134
4377
+ #: addons/email-notices/myCRED-addon-email-notices.php:140
4378
+ #: addons/email-notices/myCRED-addon-email-notices.php:196
4379
+ #: addons/email-notices/myCRED-addon-email-notices.php:197
4380
+ msgid "Email Notifications"
4381
+ msgstr "メール通知"
4382
+
4383
+ #: addons/email-notices/myCRED-addon-email-notices.php:129
4384
+ msgid "Email Notification"
4385
+ msgstr "メール通知"
4386
+
4387
  #: addons/email-notices/myCRED-addon-email-notices.php:171
4388
  #: addons/email-notices/myCRED-addon-email-notices.php:172
4389
  #: addons/email-notices/myCRED-addon-email-notices.php:173
4395
  msgid "Email Notice Updated."
4396
  msgstr "メー