work.inc.php 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. /*
  3. +----------------------------------------------------------------------+
  4. | CLAROLINE version 1.3.0 $Revision: 3 $ |
  5. +----------------------------------------------------------------------+
  6. | Copyright (c) 2001, 2002 Universite catholique de Louvain (UCL) |
  7. +----------------------------------------------------------------------+
  8. | $Id: work.inc.php 3 2004-01-23 14:01:45Z olivierb78 $ |
  9. +----------------------------------------------------------------------+
  10. | This program is free software; you can redistribute it and/or |
  11. | modify it under the terms of the GNU General Public License |
  12. | as published by the Free Software Foundation; either version 2 |
  13. | of the License, or (at your option) any later version. |
  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 Free Software |
  22. | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
  23. | 02111-1307, USA. The GNU GPL license is also available through |
  24. | the world-wide-web at http://www.gnu.org/copyleft/gpl.html |
  25. +----------------------------------------------------------------------+
  26. | Authors: Thomas Depraetere <depraetere@ipm.ucl.ac.be> |
  27. | Hugues Peeters <peeters@ipm.ucl.ac.be> |
  28. | Christophe Gesché <gesche@ipm.ucl.ac.be> |
  29. +----------------------------------------------------------------------+
  30. */
  31. /***************************************************************
  32. * Language translation
  33. ****************************************************************
  34. GOAL
  35. ****
  36. Translate the interface in chosen language
  37. *****************************************************************/
  38. // GENERIC
  39. $langModify="modifier";
  40. $langDelete="effacer";
  41. $langTitle="Titre";
  42. $langHelp="aide";
  43. $langAddIntro="Ajouter un texte d'introduction";
  44. $langBackList="Retour à la liste";
  45. // WORKS
  46. $langDownloadFile="Envoyer le document";
  47. $langTooBig="Vous n'avez pas choisi de fichier à envoyer ou bien le fichier est trop gros.";
  48. $langListDeleted="La liste a été complètement effacée";
  49. $langDocModif="Le document a été modifié";
  50. $langDocAdd="Le document a été ajouté";
  51. $langDocDel="Le document a été effacé";
  52. $langTitleWork="Titre du document en toutes lettres";
  53. $langAuthors="Auteurs";
  54. $langDescription="Description éventuelle";
  55. $langDelList="Effacer complètement la liste";
  56. $langWorks="Contributions des uns et des autres";
  57. $langDocument = "Document";
  58. $langWorkDelete="Effacer";
  59. $langWorkModify="Modifier";
  60. $langWorkConfirmDelete="Confirmez-vous cette suppression ?";
  61. $langAllFiles="Tous les fichiers";
  62. ?>