[9715] | 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'] = 'Dodaj uprawnienia'; |
---|
| 25 | $lang['Who?'] = 'Kto?'; |
---|
| 26 | $lang['any visitor'] = 'dowolny odwiedzający'; |
---|
| 27 | $lang['any registered user'] = 'dowolny zarejestrowany użytkownik'; |
---|
| 28 | $lang['a specific user'] = 'konkretny użytkownik'; |
---|
| 29 | $lang['a group'] = 'grupa'; |
---|
| 30 | $lang['Where?'] = 'Gdzie?'; |
---|
| 31 | $lang['The whole gallery'] = 'Cała galeria'; |
---|
[12141] | 32 | $lang['ability to create sub-albums'] = 'możliwość tworzenia podalbumów'; |
---|
| 33 | $lang['Which level of trust?'] = 'Który poziom zaufania?'; |
---|
| 34 | $lang['sub-albums creation'] = 'tworzenie podalbumów'; |
---|
[9715] | 35 | $lang['Upload Permissions'] = 'Uprawnienia Wgrywania'; |
---|
| 36 | $lang['Pending Photos'] = 'Oczekujące Zdjęcia'; |
---|
| 37 | $lang['Permission added'] = 'Dodane uprawnienia'; |
---|
| 38 | $lang['Permission removed'] = 'Usunięte uprawnienia'; |
---|
| 39 | $lang['%s (the user)'] = '%s (użytkownik)'; |
---|
| 40 | $lang['%s (the group)'] = '%s (grupa)'; |
---|
| 41 | $lang['low trust'] = 'niskie zaufanie'; |
---|
| 42 | $lang['uploaded photos must be validated by an administrator'] = 'wgrane zdjęcia muszą być zatwierdzone przez administratora'; |
---|
| 43 | $lang['high trust'] = 'wysokie zaufanie'; |
---|
| 44 | $lang['uploaded photos are directly displayed in the gallery'] = 'wgrane zdjęcia są od razu wyświetlane w galerii'; |
---|
| 45 | $lang['%d photos validated'] = '%d zdjęć zaakceptowanych'; |
---|
| 46 | $lang['%d photos rejected'] = '%d zdjęć odrzuconych'; |
---|
| 47 | $lang['web size'] = 'rozmiar web'; |
---|
| 48 | $lang['Zoom'] = 'Powiększenie'; |
---|
| 49 | $lang['Upload your own photos'] = 'Wgraj swoje własne zdjęcia'; |
---|
| 50 | $lang['%d photos uploaded by %s'] = '%d zdjęć wgranych przez %s'; |
---|
| 51 | $lang['Validation page: %s'] = 'Strona walidacji: %s'; |
---|
| 52 | $lang['%d photos uploaded into album "%s"'] = '%d zdjęć wgranych do albumu "%s"'; |
---|
| 53 | $lang['Hi administrators,'] = 'Witajcie administratorzy,'; |
---|
[12141] | 54 | $lang['No album, this photo is orphan'] = 'To zdjęcie nie jest w albumie'; |
---|
[10582] | 55 | $lang['Cancel'] = 'Zrezygnuj'; |
---|
| 56 | $lang['Permission updated'] = 'Pozwolenie zaktualizowane'; |
---|
[12141] | 57 | $lang['Delete permission'] = 'Usuń pozwolenie'; |
---|
[10735] | 58 | $lang['Level 16'] = 'W oczekiwaniu'; |
---|
| 59 | $lang['%u pending photos'] = '%u oczekujących zdjęć'; |
---|
| 60 | $lang['Edit a permission'] = 'Edytuj uprawnienie'; |
---|
| 61 | $lang['Your photos are waiting for validation, administrators have been notified'] = 'Twoje zdjęcia oczekują na zatwierdzenie, administratorzy zostali powiadomieni.'; |
---|
[9715] | 62 | |
---|
| 63 | ?> |
---|