Просмотр файла vendor/verot/class.upload.php/src/lang/class.upload.es_ES.php

Размер файла: 6.71Kb
  1. <?php
  2. // +------------------------------------------------------------------------+
  3. // | class.upload.es_ES.php |
  4. // +------------------------------------------------------------------------+
  5. // | Copyright (c) Jorge Peréz Vega 2007. All rights reserved. |
  6. // | Version 0.25 |
  7. // | Last modified 17/11/2007 |
  8. // | Email jorge@cocoroto.com |
  9. // | Web http://www.cocoroto.com |
  10. // +------------------------------------------------------------------------+
  11. // | This program is free software; you can redistribute it and/or modify |
  12. // | it under the terms of the GNU General Public License version 2 as |
  13. // | published by the Free Software Foundation. |
  14. // | |
  15. // | This program is distributed in the hope that it will be useful, |
  16. // | but WITHOUT ANY WARRANTY; without even the implied warranty of |
  17. // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
  18. // | GNU General Public License for more details. |
  19. // | |
  20. // | You should have received a copy of the GNU General Public License |
  21. // | along with this program; if not, write to the |
  22. // | Free Software Foundation, Inc., 59 Temple Place, Suite 330, |
  23. // | Boston, MA 02111-1307 USA |
  24. // | |
  25. // | Please give credit on sites that use class.upload and submit changes |
  26. // | of the script so other people can use them as well. |
  27. // | This script is free to use, don't abuse. |
  28. // +------------------------------------------------------------------------+
  29.  
  30. /**
  31. * Class upload spanish translation
  32. *
  33. * @version 0.25
  34. * @author Jorge Peréz Vega (jorge@cocoroto.com)
  35. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  36. * @copyright Jorge Peréz Vega
  37. * @package cmf
  38. * @subpackage external
  39. */
  40.  
  41. $translation = array();
  42. $translation['file_error'] = 'Error de transmisión. Por favor, inténtalo de nuevo.';
  43. $translation['local_file_missing'] = 'El archivo local no existe.';
  44. $translation['local_file_not_readable'] = 'El archivo local no se puede leer.';
  45. $translation['uploaded_too_big_ini'] = 'Error al cargar el archivo (el archivo cargado excede la directiva upload_max_filesize en php.ini).';
  46. $translation['uploaded_too_big_html'] = 'Error al cargar el archivo (el archivo cargado excede la directiva MAX_FILE_SIZE que se especificó en el formulario html).';
  47. $translation['uploaded_partial'] = 'Error al cargar el archivo (el archivo sólo fue cargado parcialmente).';
  48. $translation['uploaded_missing'] = 'Error al cargar el archivo (el archivo no se ha cargado).';
  49. $translation['uploaded_unknown'] = 'Error al cargar el archivo (código de error desconocido).';
  50. $translation['try_again'] = 'Error al cargar el archivo. Por favor, inténtalo de nuevo.';
  51. $translation['file_too_big'] = 'Archivo demasiado grande.';
  52. $translation['no_mime'] = 'MIME type no se pueden detectar.';
  53. $translation['incorrect_file'] = 'Tipo de archivo incorrecto.';
  54. $translation['image_too_wide'] = 'La imagen es demasiado ancha.';
  55. $translation['image_too_narrow'] = 'La imagen es demasiado estrecha.';
  56. $translation['image_too_high'] = 'La imagen es demasiado alta.';
  57. $translation['image_too_short'] = 'La imagen es demasiado corta.';
  58. $translation['ratio_too_high'] = 'El ratio es demasiado alto (imagen demasiado ancha).';
  59. $translation['ratio_too_low'] = 'El ratio es demasiado bajo (imagen demasiado alta).';
  60. $translation['too_many_pixels'] = 'La image tiene demasiados píxeles.';
  61. $translation['not_enough_pixels'] = 'La imagen no tiene bastantes pixeles.';
  62. $translation['file_not_uploaded'] = 'El archivo no fue transmitido. Imposible continuar.';
  63. $translation['already_exists'] = '%s ya existe. Por favor, cambie el nombre del archivo.';
  64. $translation['temp_file_missing'] = 'El archivo fuente es incorrecta. Imposible continuar.';
  65. $translation['source_missing'] = 'El archivo transmitido es incorrecto. Imposible continuar.';
  66. $translation['destination_dir'] = 'El directorio de destino no puede ser creado. Imposible continuar.';
  67. $translation['destination_dir_missing'] = 'El directorio de destino no existe. Imposible continuar.';
  68. $translation['destination_path_not_dir'] = 'El path especifivado no es un directorio. Imposible continuar.';
  69. $translation['destination_dir_write'] = 'Directorio de destino, no se puede hacer editable. Imposible continuar.';
  70. $translation['destination_path_write'] = 'EL path de destino no tinee permisos de escritura o no puede ser abierto. Imposible continuar.';
  71. $translation['temp_file'] = 'No se puede crear el archivo temporal. Imposible continuar.';
  72. $translation['source_not_readable'] = 'El archivo fuente no es legible. Imposible continuar.';
  73. $translation['no_create_support'] = 'Creación desde un archivo %s imposible..';
  74. $translation['create_error'] = 'Error en la creación de la imagen %s desde el código fuente.';
  75. $translation['source_invalid'] = 'Imposible leer la imagen fuente. ¿Es una imagen?.';
  76. $translation['gd_missing'] = 'GD no parece estar presente.';
  77. $translation['watermark_no_create_support'] = 'Creación desde un archivo %s imposible, watermark no puede ser leído.';
  78. $translation['watermark_create_error'] = 'Error en el momento de la creación del watermark %s desde el archivo fuente.';
  79. $translation['watermark_invalid'] = 'Imposible leer el watermark, formato de archivo desconocido.';
  80. $translation['file_create'] = 'Creación de un archivo %s imposible.';
  81. $translation['no_conversion_type'] = 'No se define el tipo de conversión.';
  82. $translation['copy_failed'] = 'Error al copiar el archivo en el servidor. copy() ha fallado.';
  83. $translation['reading_failed'] = 'Error al leer el archivo.';
  84.  
  85. ?>