1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Ban IP plugin for piwigo | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2016-2017 ddtddt http://temmii.com/piwigo/ | |
---|
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 | |
---|
22 | //admin |
---|
23 | $lang['IP ban'] = 'IP ban'; |
---|
24 | $lang['Range IP address banned'] = 'Range IP address banned'; |
---|
25 | $lang['Ban IP'] = 'Ban IP'; |
---|
26 | $lang['IP ban deleted'] = 'IP ban deleted'; |
---|
27 | $lang['This isn\'t an IP'] = 'This isn\'t an IP'; |
---|
28 | $lang['Range IP already banned'] = 'Range IP already banned'; |
---|
29 | $lang['IP is in a banned range'] = 'IP is in a banned range '; |
---|
30 | $lang['IP already banned'] = 'IP already banned'; |
---|
31 | $lang['Range IP ban insert'] = 'Range IP ban insert'; |
---|
32 | $lang['IP ban insert'] = 'IP ban insert'; |
---|
33 | $lang['IP ban update'] = 'IP ban update'; |
---|
34 | $lang['Delete all banned IP addresses'] = 'Delete all banned IP addresses'; |
---|
35 | $lang['Ban new IP address'] = 'Ban new IP address'; |
---|
36 | $lang['IP'] = 'IP'; |
---|
37 | $lang['List IP banned'] = 'List IP banned'; |
---|
38 | $lang['Edit IP banned'] = 'Edit IP banned'; |
---|
39 | $lang['Update'] = 'Update'; |
---|
40 | $lang['Show %s IP'] = 'Show %s IP'; |
---|
41 | $lang['No matching IP found'] = 'No matching IP found'; |
---|
42 | $lang['Showing %s to %s of %s IP'] = 'Showing %s to %s of %s IP'; |
---|
43 | $lang['(filtered from %s total IP)'] = '(filtered from %s total IP)'; |
---|
44 | |
---|