[3673] | 1 | <?php |
---|
| 2 | // +-----------------------------------------------------------------------+ |
---|
| 3 | // | Piwigo - a PHP based picture gallery | |
---|
| 4 | // +-----------------------------------------------------------------------+ |
---|
[9372] | 5 | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org | |
---|
| 6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
| 7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
[3673] | 8 | // +-----------------------------------------------------------------------+ |
---|
| 9 | // | This program is free software; you can redistribute it and/or modify | |
---|
| 10 | // | it under the terms of the GNU General Public License as published by | |
---|
| 11 | // | the Free Software Foundation | |
---|
| 12 | // | | |
---|
| 13 | // | This program is distributed in the hope that it will be useful, but | |
---|
| 14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
| 15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
| 16 | // | General Public License for more details. | |
---|
| 17 | // | | |
---|
| 18 | // | You should have received a copy of the GNU General Public License | |
---|
| 19 | // | along with this program; if not, write to the Free Software | |
---|
| 20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
| 21 | // | USA. | |
---|
| 22 | // +-----------------------------------------------------------------------+ |
---|
| 23 | |
---|
[9372] | 24 | $lang['Add a permission'] = 'Ajouter une permission'; |
---|
| 25 | $lang['Who?'] = 'Qui ?'; |
---|
| 26 | $lang['any visitor'] = 'n\'importe quel visiteur'; |
---|
| 27 | $lang['any registered user'] = 'n\'importe quel utilisateur enregistré'; |
---|
| 28 | $lang['a specific user'] = 'un utilisateur en particulier'; |
---|
| 29 | $lang['a group'] = 'un groupe'; |
---|
| 30 | $lang['Where?'] = 'Où ?'; |
---|
| 31 | $lang['The whole gallery'] = 'La galerie toute entière'; |
---|
| 32 | $lang['ability to create sub-albums'] = 'possibilité de créer des sous-albums'; |
---|
| 33 | $lang['Which level of trust?'] = 'Quel degré de confiance ?'; |
---|
| 34 | $lang['sub-albums creation'] = 'création de sous-albums'; |
---|
| 35 | $lang['Upload Permissions'] = 'Permissions d\'ajout'; |
---|
| 36 | $lang['Pending Photos'] = 'Photos en attente'; |
---|
| 37 | $lang['Permission added'] = 'Permission enregistrée'; |
---|
| 38 | $lang['Permission removed'] = 'Permission supprimée'; |
---|
| 39 | $lang['%s (the user)'] = '%s (l\'utilisateur)'; |
---|
| 40 | $lang['%s (the group)'] = '%s (le groupe)'; |
---|
| 41 | $lang['low trust'] = 'confiance faible'; |
---|
| 42 | $lang['uploaded photos must be validated by an administrator'] = 'les photos ajoutées doivent être validées par un administrateur'; |
---|
| 43 | $lang['high trust'] = 'confiance élevée'; |
---|
| 44 | $lang['uploaded photos are directly displayed in the gallery'] = 'les photos ajoutées sont directement visibles dans la galerie'; |
---|
| 45 | $lang['%d photos validated'] = '%d photos validées'; |
---|
| 46 | $lang['%d photos rejected'] = '%d photos rejetées'; |
---|
| 47 | $lang['web size'] = 'taille web'; |
---|
| 48 | $lang['Zoom'] = 'Zoom'; |
---|
| 49 | $lang['Upload your own photos'] = 'Ajoutez vos propres photos'; |
---|
| 50 | $lang['%d photos uploaded by %s'] = '%d photos ajoutées par %s'; |
---|
| 51 | $lang['Validation page: %s'] = 'Page de validation : %s'; |
---|
| 52 | $lang['%d photos uploaded into album "%s"'] = '%d photos ajoutée à l\'album "%s"'; |
---|
| 53 | $lang['Hi administrators,'] = 'Bonjours chers administrateurs,'; |
---|
[9453] | 54 | |
---|
| 55 | $lang['No album, this photo is orphan'] = 'Aucun album, cette photo est orpheline'; |
---|
[10659] | 56 | |
---|
[9510] | 57 | $lang['Cancel'] = 'Annuler'; |
---|
| 58 | $lang['Permission updated'] = 'Permission mise à jour'; |
---|
| 59 | $lang['Delete permission'] = 'Supprimer la permission'; |
---|
[9516] | 60 | $lang['%u pending photos'] = '%u photos en attente'; |
---|
[9538] | 61 | $lang['Level 16'] = 'En attente'; |
---|
[10659] | 62 | |
---|
| 63 | $lang['Edit a permission'] = 'Editer une permission'; |
---|
| 64 | $lang['Your photos are waiting for validation, administrators have been notified'] = 'Vos photos sont en attente de validation, les administrateurs sont prévenus'; |
---|
[12333] | 65 | |
---|
[12508] | 66 | $lang['Set Photo Properties'] = 'Définir les propriétés de la photo'; |
---|
[10659] | 67 | ?> |
---|