| 1 | <?php |
|---|
| 2 | // +-----------------------------------------------------------------------+ |
|---|
| 3 | // | PhpWebGallery - a PHP based picture gallery | |
|---|
| 4 | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | |
|---|
| 5 | // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | |
|---|
| 6 | // +-----------------------------------------------------------------------+ |
|---|
| 7 | // | file : $Id$ |
|---|
| 8 | // | last update : $Date$ |
|---|
| 9 | // | last modifier : $Author$ |
|---|
| 10 | // | revision : $Revision$ |
|---|
| 11 | // +-----------------------------------------------------------------------+ |
|---|
| 12 | // | This program is free software; you can redistribute it and/or modify | |
|---|
| 13 | // | it under the terms of the GNU General Public License as published by | |
|---|
| 14 | // | the Free Software Foundation | |
|---|
| 15 | // | | |
|---|
| 16 | // | This program is distributed in the hope that it will be useful, but | |
|---|
| 17 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
|---|
| 18 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
|---|
| 19 | // | General Public License for more details. | |
|---|
| 20 | // | | |
|---|
| 21 | // | You should have received a copy of the GNU General Public License | |
|---|
| 22 | // | along with this program; if not, write to the Free Software | |
|---|
| 23 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
|---|
| 24 | // | USA. | |
|---|
| 25 | // +-----------------------------------------------------------------------+ |
|---|
| 26 | |
|---|
| 27 | $lang['Add_Index'] = 'Ajout des fichiers "index"'; |
|---|
| 28 | $lang['Advanced_Add_Index'] = 'Ajout et écrasement des fichiers "index" pour tous les sites locaux'; |
|---|
| 29 | $lang['Manager_Add_Index'] = 'ajout des "index"'; |
|---|
| 30 | |
|---|
| 31 | $lang['add_index_file_copied'] = '%s copié'; |
|---|
| 32 | $lang['add_index_file_not_copied'] = '%s non copié'; |
|---|
| 33 | $lang['add_index_not_local_site'] = '%s [%d] est un site distant, ce n\'est pas compatible avec l\'ajout de fichiers "index"'; |
|---|
| 34 | $lang['add_index_nb_copied_file'] = '%d fichier copié'; |
|---|
| 35 | $lang['add_index_nb_copied_files'] = '%d fichiers copiés'; |
|---|
| 36 | $lang['add_index_nb_skipped_file'] = '%d fichier à ne pas traiter'; |
|---|
| 37 | $lang['add_index_nb_skipped_files'] = '%d fichiers à ne pas traiter'; |
|---|
| 38 | $lang['add_index_nb_not_copied_file'] = '%d fichier non copié'; |
|---|
| 39 | $lang['add_index_nb_not_copied_files'] = '%d fichiers non copiés'; |
|---|
| 40 | $lang['add_index_src_file_dont_exists'] = 'Le fichier source n\'existe pas, la duplication de ce fichier n\'est pas possible'; |
|---|
| 41 | |
|---|
| 42 | ?> |
|---|