@@ -83,8 +83,8 @@ |
||
83 | 83 | */ |
84 | 84 | $lang = array_merge($lang, array( |
85 | 85 | 'PPDE_DONORS' => array( |
86 | - 0 => '', // 0 - Used for pagination. Let this language key empty. |
|
87 | - 1 => '%d donateur', // 1 |
|
86 | + 0 => '', // 0 - Used for pagination. Let this language key empty. |
|
87 | + 1 => '%d donateur', // 1 |
|
88 | 88 | 2 => '%d donateurs', // 2+ |
89 | 89 | ), |
90 | 90 | )); |
@@ -80,8 +80,8 @@ |
||
80 | 80 | */ |
81 | 81 | $lang = array_merge($lang, array( |
82 | 82 | 'PPDE_DONORS' => array( |
83 | - 0 => '', // 0 - Used for pagination. Let this language key empty. |
|
84 | - 1 => '%d donor', // 1 |
|
83 | + 0 => '', // 0 - Used for pagination. Let this language key empty. |
|
84 | + 1 => '%d donor', // 1 |
|
85 | 85 | 2 => '%d donors', // 2+ |
86 | 86 | ), |
87 | 87 | )); |
@@ -361,31 +361,31 @@ |
||
361 | 361 | private function transaction_vars_list() |
362 | 362 | { |
363 | 363 | return array( |
364 | - 'business' => '', // Primary merchant e-mail address |
|
365 | - 'confirmed' => false, // used to check if the payment is confirmed |
|
366 | - 'exchange_rate' => '', // Exchange rate used if a currency conversion occurred |
|
364 | + 'business' => '', // Primary merchant e-mail address |
|
365 | + 'confirmed' => false, // used to check if the payment is confirmed |
|
366 | + 'exchange_rate' => '', // Exchange rate used if a currency conversion occurred |
|
367 | 367 | 'first_name' => array('', true), // First name of sender |
368 | 368 | 'item_name' => array('', true), // Equal to: $this->config['sitename'] |
369 | - 'item_number' => '', // Equal to: 'uid_' . $this->user->data['user_id'] . '_' . time() |
|
369 | + 'item_number' => '', // Equal to: 'uid_' . $this->user->data['user_id'] . '_' . time() |
|
370 | 370 | 'last_name' => array('', true), // Last name of sender |
371 | - 'mc_currency' => '', // Currency |
|
372 | - 'mc_gross' => 0.00, // Amt received (before fees) |
|
373 | - 'mc_fee' => 0.00, // Amt of fees |
|
374 | - 'parent_txn_id' => '', // Transaction ID |
|
375 | - 'payer_email' => '', // PayPal sender email address |
|
376 | - 'payer_id' => '', // PayPal sender ID |
|
377 | - 'payer_status' => 'unverified', // PayPal sender status (verified, unverified?) |
|
378 | - 'payment_date' => '', // Payment Date/Time EX: '19:08:04 Oct 03, 2007 PDT' |
|
379 | - 'payment_status' => '', // eg: 'Completed' |
|
380 | - 'payment_type' => '', // Payment type |
|
381 | - 'receiver_id' => '', // Secure Merchant Account ID |
|
382 | - 'receiver_email' => '', // Merchant e-mail address |
|
383 | - 'residence_country' => '', // Merchant country code |
|
384 | - 'settle_amount' => 0.00, // Amt received after currency conversion (before fees) |
|
385 | - 'settle_currency' => '', // Currency of 'settle_amount' |
|
386 | - 'test_ipn' => false, // used when transaction come from Sandbox platform |
|
387 | - 'txn_id' => '', // Transaction ID |
|
388 | - 'txn_type' => '', // Transaction type - Should be: 'send_money' |
|
371 | + 'mc_currency' => '', // Currency |
|
372 | + 'mc_gross' => 0.00, // Amt received (before fees) |
|
373 | + 'mc_fee' => 0.00, // Amt of fees |
|
374 | + 'parent_txn_id' => '', // Transaction ID |
|
375 | + 'payer_email' => '', // PayPal sender email address |
|
376 | + 'payer_id' => '', // PayPal sender ID |
|
377 | + 'payer_status' => 'unverified', // PayPal sender status (verified, unverified?) |
|
378 | + 'payment_date' => '', // Payment Date/Time EX: '19:08:04 Oct 03, 2007 PDT' |
|
379 | + 'payment_status' => '', // eg: 'Completed' |
|
380 | + 'payment_type' => '', // Payment type |
|
381 | + 'receiver_id' => '', // Secure Merchant Account ID |
|
382 | + 'receiver_email' => '', // Merchant e-mail address |
|
383 | + 'residence_country' => '', // Merchant country code |
|
384 | + 'settle_amount' => 0.00, // Amt received after currency conversion (before fees) |
|
385 | + 'settle_currency' => '', // Currency of 'settle_amount' |
|
386 | + 'test_ipn' => false, // used when transaction come from Sandbox platform |
|
387 | + 'txn_id' => '', // Transaction ID |
|
388 | + 'txn_type' => '', // Transaction type - Should be: 'send_money' |
|
389 | 389 | ); |
390 | 390 | } |
391 | 391 |