1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based picture gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
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 | |
---|
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 | |
---|
24 | $lang['Add a permission'] = 'Aggiungere un permesso'; |
---|
25 | $lang['Who?'] = 'Chi?'; |
---|
26 | $lang['any visitor'] = 'qualsiasi visitatore'; |
---|
27 | $lang['any registered user'] = 'qualsiasi utente registrato'; |
---|
28 | $lang['a specific user'] = 'un utente specifico'; |
---|
29 | $lang['a group'] = 'un gruppo'; |
---|
30 | $lang['Where?'] = 'Dove?'; |
---|
31 | $lang['The whole gallery'] = 'Tutta la galleria'; |
---|
32 | $lang['ability to create sub-albums'] = 'abilitare la creazione di sub-album'; |
---|
33 | $lang['Which level of trust?'] = 'Quale livello di fiducia?'; |
---|
34 | $lang['sub-albums creation'] = 'creazione dei sub-album'; |
---|
35 | $lang['Upload Permissions'] = 'Autorizzazione per l\'upload'; |
---|
36 | $lang['Pending Photos'] = 'Foto in attesa'; |
---|
37 | $lang['Permission added'] = 'Permesso registrato'; |
---|
38 | $lang['Permission removed'] = 'Permesso rimosso'; |
---|
39 | $lang['%s (the user)'] = '%s (l\'utente)'; |
---|
40 | $lang['%s (the group)'] = '%s (il gruppo)'; |
---|
41 | $lang['low trust'] = 'bassa fiducia'; |
---|
42 | $lang['uploaded photos must be validated by an administrator'] = 'le foto caricate devono essere convalidate da un amministratore'; |
---|
43 | $lang['high trust'] = 'alta fiducia'; |
---|
44 | $lang['uploaded photos are directly displayed in the gallery'] = 'le foto caricate sono direttamente visibili nella galleria'; |
---|
45 | $lang['%d photos validated'] = '%d foto convalidate'; |
---|
46 | $lang['%d photos rejected'] = '%d foto rifiutate'; |
---|
47 | $lang['web size'] = 'formato web'; |
---|
48 | $lang['Zoom'] = 'Zoom'; |
---|
49 | $lang['Upload your own photos'] = 'Caricate le vostre foto'; |
---|
50 | $lang['%d photos uploaded by %s'] = '%d foto caricate da %s'; |
---|
51 | $lang['Validation page: %s'] = 'Pagina di convalida: %s'; |
---|
52 | $lang['%d photos uploaded into album "%s"'] = '%d le foto caricate nell\'album "%s"'; |
---|
53 | $lang['Hi administrators,'] = 'Salve amministratori,'; |
---|
54 | |
---|
55 | $lang['No album, this photo is orphan'] = 'Nessun album, questa photo è orfana'; |
---|
56 | |
---|
57 | $lang['Cancel'] = 'Cancellare'; |
---|
58 | $lang['Permission updated'] = 'Autorizzazione a l\'aggiornamento'; |
---|
59 | $lang['Delete permission'] = 'Cancellare il permesso'; |
---|
60 | $lang['%u pending photos'] = '%u foto in attesa'; |
---|
61 | $lang['Level 16'] = 'In attesa'; |
---|
62 | |
---|
63 | $lang['Edit a permission'] = 'Modificare un permesso'; |
---|
64 | $lang['Your photos are waiting for validation, administrators have been notified'] = 'Le vostre foto sono in attesa di convalida, gli amministratori sono stati avvisati'; |
---|
65 | $lang['Set Photo Properties'] = 'Imposta proprietà immagine'; |
---|
66 | ?> |
---|