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

Размер файла: 6.73Kb
  1. <?php
  2. // +------------------------------------------------------------------------+
  3. // | class.upload.ca_CA.php |
  4. // +------------------------------------------------------------------------+
  5. // | Copyright (c) Antoni Canals 2008. All rights reserved. |
  6. // | Version 0.25 |
  7. // | Last modified 24/12/2008 |
  8. // | Email antoni.canals@prehistoria.urv.cat |
  9. // | Web http://iphes.urv.cat |
  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 catalan translation
  32. *
  33. * @version 0.25
  34. * @author Antoni Canals (antoni.canals@prehistoria.urv.cat)
  35. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  36. * @copyright Antoni Canals
  37. * @package cmf
  38. * @subpackage external
  39. */
  40.  
  41. $translation = array();
  42. $translation['file_error'] = 'Error de transmissió. Si us plau, torneu-ho a provar.';
  43. $translation['local_file_missing'] = 'El fitxer local no existeix.';
  44. $translation['local_file_not_readable'] = 'El fitxer local no es pot llegir.';
  45. $translation['uploaded_too_big_ini'] = 'Error en pujar el fitxer (la mida del fitxer que es vol pujar depassa la directiva \'upload_max_filesize\' del fitxer php.ini).';
  46. $translation['uploaded_too_big_html'] = 'Error en pujar el fitxer (la mida del fitxer que es vol pujar depassa la directiva \'MAX_FILE_SIZE\' especificada en el formulari html).';
  47. $translation['uploaded_partial'] = 'Error en pujar el fitxer (el fitxer només ha sigut parcialment pujat).';
  48. $translation['uploaded_missing'] = 'Error en pujar el fitxer (no s\'ha pujat cap fitxer).';
  49. $translation['uploaded_unknown'] = 'Error en pujar el fitxer (codi d\'error desconegut).';
  50. $translation['try_again'] = 'Error en pujar el fitxer. Si us plau, torneu-ho a provar.';
  51. $translation['file_too_big'] = 'Fitxer massa gran.';
  52. $translation['no_mime'] = 'No es pot detectar el tipus MIME.';
  53. $translation['incorrect_file'] = 'Tipus de fitxer (MIME) incorrecte.';
  54. $translation['image_too_wide'] = 'La imatge és massa ample.';
  55. $translation['image_too_narrow'] = 'La imatge no és prou ample';
  56. $translation['image_too_high'] = 'La imatge és massa alta.';
  57. $translation['image_too_short'] = 'La imatge és massa curta.';
  58. $translation['ratio_too_high'] = 'La ratio de la imatge és massa gran (la imatge és massa ample).';
  59. $translation['ratio_too_low'] = 'La ratio de la imatge és massa petita (la imatge és massa alta).';
  60. $translation['too_many_pixels'] = 'La imatge té massa pixels.';
  61. $translation['not_enough_pixels'] = 'La imatge no té prou pixels.';
  62. $translation['file_not_uploaded'] = 'Error en pujar el fitxer. No es pot continuar.';
  63. $translation['already_exists'] = '%s ja existeix. Si us plau, canvieu el nom del fitxer.';
  64. $translation['temp_file_missing'] = 'El fitxer temporal és incorrecte. No es pot continuar.';
  65. $translation['source_missing'] = 'El fitxer pujat és incorrecte. No es pot continuar.';
  66. $translation['destination_dir'] = 'El directori de destí no es pot crear. No es pot continuar.';
  67. $translation['destination_dir_missing'] = 'El directori de destí no existeix. No es pot continuar.';
  68. $translation['destination_path_not_dir'] = 'El \'path\' de destí no és un directori. No es pot continuar.';
  69. $translation['destination_dir_write'] = 'El directori de destí no es pot obrir en escriptura. No es pot continuar.';
  70. $translation['destination_path_write'] = 'El \'path\' de destí no té drets d\'escriptura. No es pot continuar.';
  71. $translation['temp_file'] = 'No es pot crear el fitxer temporal. No es pot continuar.';
  72. $translation['source_not_readable'] = 'El fitxer d\'origen no es pot llegir. No es pot continuar.';
  73. $translation['no_create_support'] = 'Creació des del fitxer %s impossible.';
  74. $translation['create_error'] = 'Error en la creació del fitxer %s imatge des del fitxer origen.';
  75. $translation['source_invalid'] = 'No puc llegir la imatge d\'origen. Esteu segurs que és una imatge?.';
  76. $translation['gd_missing'] = 'GD sembla que no està present.';
  77. $translation['watermark_no_create_support'] = 'Creació des del fitxer %s impossible, no es pot llegir la watermark.';
  78. $translation['watermark_create_error'] = 'Error en la creació de la watermark %s des del fitxer origen.';
  79. $translation['watermark_invalid'] = 'Format de la imatge desconegut, no es pot llegir la watermark.';
  80. $translation['file_create'] = 'No es pot crear el fitxer %s.';
  81. $translation['no_conversion_type'] = 'El tipus de conversió no està definit.';
  82. $translation['copy_failed'] = 'Error en copiar el fitxer al servidor. La comanda \'copy()\' ha fallat.';
  83. $translation['reading_failed'] = 'Error en la lectura del fitxer.';
  84.  
  85. ?>