en.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. /**
  3. * Elgg Donation plugin
  4. * @license: GPL v 2.
  5. * @author Tiger
  6. * @copyright TechIsUs
  7. * @link www.techisus.dk
  8. */
  9. $english = array(
  10. 'donation:page1' => "Keep the network strong",
  11. 'donation' => "Donations",
  12. 'donation:title' => 'Help %s',
  13. 'donation:title:everyone' => 'Those who already have contributed to %s',
  14. 'donation:show:everyone' => 'Show all',
  15. 'donation:desc' => "Help us keep %s running.",
  16. 'donation:paypal' => "<strong>Via Paypal:</strong>",
  17. 'donation:bitcoin' => "<strong>Via Bitcoin:</strong>",
  18. 'donation:banktransfer' => "<strong>Via banktransfer:</strong>",
  19. 'donation:latest' => "<strong>Latest Donators:</strong>",
  20. 'donation:donator' => 'Contributer to %s',
  21. 'donation:add' => 'Set as donator',
  22. 'donation:remove' => 'Remove as donator',
  23. 'donation:added' => 'The selected user is now a donator',
  24. 'donation:removed' => 'The selected user is removed from the donator list',
  25. 'donation:none' => 'No donators to display',
  26. // Plugin settings
  27. 'donation:paypal_code' => "Optional: Insert Paypal code here:",
  28. 'donation:bitcoin_code' => "Optional: Insert Bitcoin code here (<i>bitcoin:</i> and <i>?label</i> codes will be added for links by this plugin.):",
  29. 'donation:bitcoin_label' => "Optional: Insert Bitcoin label here:",
  30. 'donation:bank_account' => "Optional: A bank account number for bank transfers:",
  31. 'donation:bank_account:text' => "Transfer to account:<br><b>%s</b><br>please state your username on the transfer.",
  32. 'donation:num_display' => 'Number of donators to display:',
  33. 'donation:sidebar_donation' => 'Show donation in sidebar:',
  34. 'donation:profile_show' => 'Show donators as:',
  35. 'donation:text' => 'Show names',
  36. 'donation:small' => 'Small icons',
  37. 'donation:tiny' => 'Tiny ikons',
  38. 'donation:useriver' => 'Announce donations to River:',
  39. 'donation:profile_donation' => 'Show donation status on profile:',
  40. 'donation:expires' => 'Months donations are valid:',
  41. // Error messages
  42. 'donation:add:error' => 'Error: Could not make user a donator!',
  43. // River
  44. 'river:donation:user:default' => '%s have donated to this website. Thank you...',
  45. );
  46. add_translation("en",$english);
  47. ?>