es.php 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. /**
  25. * Menu items and titles
  26. */
  27. 'videolist' => "Vídeos",
  28. 'videolist:owner' => "Vídeos de %s",
  29. 'videolist:video_name' => 'Título',
  30. 'videolist:friends' => "Vídeos de contactos",
  31. 'videolist:all' => "Todos los vídeos",
  32. 'videolist:add' => "Añadir un vídeo",
  33. 'videolist:group' => "Vídeos del grupo",
  34. 'groups:enablevideolist' => 'Vídeos',
  35. 'videolist:edit' => "Editar éste vídeo",
  36. 'videolist:delete' => "Borrar éste vídeo",
  37. 'videolist:new' => "Añadir un vídeo",
  38. 'videolist:notification' =>
  39. '%s ha añadido un nuevo vídeo:
  40. %s
  41. %s
  42. Sigue el enlace para ver y comentar:
  43. %s
  44. ',
  45. 'videolist:delete:confirm' => 'Seguro que deseas borrar el vídeo?',
  46. 'item:object:videolist_item' => 'Vídeos',
  47. 'videolist:nogroup' => 'El grupo no tiene vídeos, de momento...',
  48. 'videolist:more' => 'Más vídeos',
  49. 'videolist:none' => 'No se han publicado vídeos, de momento...',
  50. /**
  51. * River
  52. **/
  53. 'river:create:object:videolist_item' => '%s ha enlazado el vídeo %s',
  54. 'river:update:object:videolist_item' => '%s ha actualizado el vídeo %s',
  55. 'river:comment:object:videolist_item' => '%s ha comentado en el vídeo %s',
  56. /**
  57. * Form fields
  58. */
  59. 'videolist:title' => 'Título',
  60. 'videolist:description' => 'Descripción',
  61. 'videolist:video_url' => 'URL del video (Vimeo o Youtube)',
  62. 'videolist:access_id' => 'Quién puede ver el vídeo?',
  63. 'videolist:tags' => 'Añadir etiquetas',
  64. /**
  65. * Status and error messages
  66. */
  67. 'videolist:error:no_save' => 'Ha ocurrido un error al salvar el vídeo, intenta de nuevo',
  68. 'videolist:saved' => 'El vídeo se ha enlazado correctamente!',
  69. 'videolist:deleted' => 'El vídeo se ha borrado correctamente!',
  70. 'videolist:deletefailed' => 'El vídeo no puede ser borrado, intenta de nuevo',
  71. 'videolist:error:invalid_url' => 'La fuente del video no está soportada',
  72. /**
  73. * Widget
  74. **/
  75. 'videolist:num_videos' => 'Número de vídeos a mostrar',
  76. 'videolist:widget:description' => 'Tu lista personal de vídeos',
  77. );
  78. add_translation("es", $spanish);