es.php 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. /**
  3. * Translation strings for Spanish by psy@faeries
  4. *
  5. * @package Lorea
  6. *
  7. * Copyright 2011-2016 Lorea Faeries <https://code.lorea.io>
  8. *
  9. * This program is free software: you can redistribute it and/or
  10. * modify it under the terms of the GNU Affero General Public License
  11. * as published by the Free Software Foundation, either version 3 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful, but
  15. * WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public
  20. * License along with this program. If not, see
  21. * <http://www.gnu.org/licenses/>.
  22. */
  23. $spanish = array(
  24. 'donation' => "Donaciones",
  25. 'donation:title' => 'Sostenibilidad',
  26. 'donation:title:everyone' => 'Habitantes que han contribu&iacute;do econ&oacute;micamente:',
  27. 'donation:show:everyone' => 'Ver todas',
  28. 'donation:desc' => "Ayudanos a mantener la red conectada!",
  29. 'donation:paypal' => "<strong>Via Paypal:</strong>",
  30. 'donation:bitcoin' => "<strong>Via Bitcoin:</strong>",
  31. 'donation:banktransfer' => "<strong>Via transferencia bancaria:</strong>",
  32. 'donation:latest' => "<strong>&Uacute;ltimas donantes:</strong>",
  33. 'donation:donator' => 'Donante',
  34. 'donation:add' => 'Promocionar como donante',
  35. 'donation:remove' => 'Quitar como donante',
  36. 'donation:added' => 'La habitante seleccionada es ahora una donante',
  37. 'donation:removed' => 'La habitante seleccionada ha sido quitada de la lista de donantes',
  38. 'donation:none' => 'No hay donantes ;(',
  39. // Plugin settings
  40. 'donation:paypal_code' => "Opcional: Insertar código de Paypal aquí:",
  41. 'donation:bitcoin_code' => "Opcional: Insertar código de Bitcoin aquí:",
  42. 'donation:bitcoin_label' => "Opcional: Insertar etiqueta de Bitcoin aquí:",
  43. 'donation:bank_account' => "Opcional: Insertar número de cuenta bancaria para transferencias:",
  44. 'donation:bank_account:text' => "Transferir a cuenta:<br><b>%s</b><br>Introduce el nombre de la red como sujeto de la transferencia para facilitar su localización.",
  45. 'donation:num_display' => 'Número de donantes a mostrar:',
  46. 'donation:sidebar_donation' => 'Mostrar donación an la barra lateral:',
  47. 'donation:profile_show' => 'Mostrar donantes como:',
  48. 'donation:text' => 'Mostrar nombres',
  49. 'donation:small' => 'Pequeños iconos',
  50. 'donation:tiny' => 'Iconos diminutos',
  51. 'donation:useriver' => 'Anunciar donaciones en el River:',
  52. 'donation:profile_donation' => 'Mostrar estado de donante en el perfil:',
  53. 'donation:expires' => 'Número de meses que la donación es válida:',
  54. // Error messages
  55. 'donation:add:error' => 'Error: No se puede realizar la donación!',
  56. // River
  57. 'river:donation:user:default' => '%s ha hecho una donaci&oacute;n para mantener el proyecto. Infinitas gracias...',
  58. );
  59. add_translation("es",$spanish);
  60. ?>