[3673] | 1 | <?php |
---|
| 2 | // +-----------------------------------------------------------------------+ |
---|
| 3 | // | Piwigo - a PHP based picture gallery | |
---|
| 4 | // +-----------------------------------------------------------------------+ |
---|
| 5 | // | Copyright(C) 2009 Pierrick LE GALL http://piwigo.org | |
---|
| 6 | // +-----------------------------------------------------------------------+ |
---|
| 7 | // | This program is free software; you can redistribute it and/or modify | |
---|
| 8 | // | it under the terms of the GNU General Public License as published by | |
---|
| 9 | // | the Free Software Foundation | |
---|
| 10 | // | | |
---|
| 11 | // | This program is distributed in the hope that it will be useful, but | |
---|
| 12 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
| 13 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
| 14 | // | General Public License for more details. | |
---|
| 15 | // | | |
---|
| 16 | // | You should have received a copy of the GNU General Public License | |
---|
| 17 | // | along with this program; if not, write to the Free Software | |
---|
| 18 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
| 19 | // | USA. | |
---|
| 20 | // +-----------------------------------------------------------------------+ |
---|
| 21 | |
---|
[9372] | 22 | $lang['Add a permission'] = 'Add a permission'; |
---|
| 23 | $lang['Who?'] = 'Who?'; |
---|
| 24 | $lang['any visitor'] = 'any visitor'; |
---|
| 25 | $lang['any registered user'] = 'any registered user'; |
---|
| 26 | $lang['a specific user'] = 'a specific user'; |
---|
| 27 | $lang['a group'] = 'a group'; |
---|
| 28 | $lang['Where?'] = 'Where?'; |
---|
| 29 | $lang['The whole gallery'] = 'The whole gallery'; |
---|
| 30 | $lang['ability to create sub-albums'] = 'ability to create sub-albums'; |
---|
| 31 | $lang['Which level of trust?'] = 'Which level of trust?'; |
---|
| 32 | $lang['sub-albums creation'] = 'sub-albums creation'; |
---|
| 33 | $lang['Upload Permissions'] = 'Upload Permissions'; |
---|
| 34 | $lang['Pending Photos'] = 'Pending Photos'; |
---|
| 35 | $lang['Permission added'] = 'Permission added'; |
---|
| 36 | $lang['Permission removed'] = 'Permission removed'; |
---|
| 37 | $lang['%s (the user)'] = '%s (the user)'; |
---|
| 38 | $lang['%s (the group)'] = '%s (the group)'; |
---|
| 39 | $lang['low trust'] = 'low trust'; |
---|
| 40 | $lang['uploaded photos must be validated by an administrator'] = 'uploaded photos must be validated by an administrator'; |
---|
| 41 | $lang['high trust'] = 'high trust'; |
---|
| 42 | $lang['uploaded photos are directly displayed in the gallery'] = 'uploaded photos are directly displayed in the gallery'; |
---|
| 43 | $lang['%d photos validated'] = '%d photos validated'; |
---|
| 44 | $lang['%d photos rejected'] = '%d photos rejected'; |
---|
| 45 | $lang['web size'] = 'web size'; |
---|
| 46 | $lang['Zoom'] = 'Zoom'; |
---|
| 47 | $lang['Upload your own photos'] = 'Upload your own photos'; |
---|
| 48 | $lang['%d photos uploaded by %s'] = '%d photos uploaded by %s'; |
---|
| 49 | $lang['Validation page: %s'] = 'Validation page: %s'; |
---|
| 50 | $lang['%d photos uploaded into album "%s"'] = '%d photos uploaded into album "%s"'; |
---|
| 51 | $lang['Hi administrators,'] = 'Hi administrators,'; |
---|
[9453] | 52 | |
---|
| 53 | $lang['No album, this photo is orphan'] = 'No album, this photo is orphan'; |
---|
[9510] | 54 | |
---|
| 55 | $lang['Cancel'] = 'Cancel'; |
---|
| 56 | $lang['Permission updated'] = 'Permission updated'; |
---|
| 57 | $lang['Delete permission'] = 'Delete permission'; |
---|
[9516] | 58 | $lang['%u pending photos'] = '%u pending photos'; |
---|
[9538] | 59 | $lang['Level 16'] = 'Pending'; |
---|
[10652] | 60 | |
---|
| 61 | $lang['Edit a permission'] = 'Edit a permission'; |
---|
| 62 | $lang['Your photos are waiting for validation, administrators have been notified'] = 'Your photos are waiting for validation, administrators have been notified'; |
---|
[3673] | 63 | ?> |
---|