initial commit of file from CVS for smeserver-webfilter on Sat Sep 7 16:44:31 AEST 2024

This commit is contained in:
Trevor Batley
2024-09-07 16:44:31 +10:00
parent d8b207fd9e
commit 4e92e4ef80
87 changed files with 9052 additions and 2 deletions

View File

@@ -0,0 +1 @@
squid_log

View File

@@ -0,0 +1 @@
squid

View File

@@ -0,0 +1 @@
enabled

View File

@@ -0,0 +1 @@
service

View File

@@ -0,0 +1 @@
child,liste_bu,sexual_education,cleaning,reaffected,cooking,bank,astrology,financial,jobsearch,marketingware,strict_redirector,strong_redirector,tricheur,mixed_adult,dangerous_material

View File

@@ -0,0 +1 @@
enabled

View File

@@ -0,0 +1 @@
service

View File

@@ -0,0 +1 @@
disabled

View File

@@ -0,0 +1 @@
service

View File

@@ -0,0 +1 @@
enabled

View File

@@ -0,0 +1 @@
service

View File

@@ -0,0 +1,27 @@
{
my $rec = $DB->get('squid-db-logd')
|| $DB->new_record('squid-db-logd', {type => 'service'});
my $pw = $rec->prop('DbPassword');
if (not $pw or length($pw) < 57){
use MIME::Base64 qw(encode_base64);
$pw = "not set due to error";
if ( open( RANDOM, "/dev/urandom" ) ){
my $buf;
# 57 bytes is a full line of Base64 coding, and contains
# 456 bits of randomness - given a perfectly random /dev/random
if ( read( RANDOM, $buf, 57 ) != 57 ){
warn("Short read from /dev/random: $!");
}
else{
$pw = encode_base64($buf);
chomp $pw;
}
close RANDOM;
}
else{
warn "Could not open /dev/urandom: $!";
}
$rec->set_prop('DbPassword', $pw);
}
}

View File

@@ -0,0 +1,84 @@
#!/bin/bash
#----------------------------------------------------------------------
# copyright (C) 2011 Firewall Services
# daniel@firewall-services.com
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#----------------------------------------------------------------------
# This function check if the given category is disabled
function cat_is_disabled(){
cat=$1
local ret=0
for D in $(echo $DISABLED_CAT | sed -e 's/[;,]/ /g'); do
if [ "$D" == "$cat" ]; then
local ret=1
break
fi
done
echo $ret
}
/bin/mkdir -p /var/squidGuard/blacklists/{black,white}
# Be sure those files exists
for F in "black/domains" "black/urls" "white/domains" "white/urls"; do
if [ \! -e /var/squidGuard/blacklists/$F ]; then
touch /var/squidGuard/blacklists/$F
fi
done
UPDATE=$(/sbin/e-smith/db configuration getprop squidguard AutoUpdate || echo enabled)
DISABLED_CAT=$(/sbin/e-smith/db configuration getprop squidguard DisabledCategories)
if [ "$UPDATE" == "enabled" ]; then
# Update database from the University of Toulouse
/usr/bin/rsync -rzPq ftp.univ-tlse1.fr::blacklist/dest/ /var/squidGuard/blacklists/
fi
# Rebuild database only if something changed
for CAT in $(ls /var/squidGuard/blacklists/); do
if [ "$(cat_is_disabled $CAT)" == "1" ]; then
echo "$CAT is disabled, skiping"
continue
fi
for TYPE in domains urls; do
if [ -f /var/squidGuard/blacklists/$CAT/$TYPE ]; then
OLDMD=$(cat /var/squidGuard/blacklists/$CAT/$TYPE.md5 2>/dev/null)
NEWMD=$(md5sum /var/squidGuard/blacklists/$CAT/$TYPE | cut -d' ' -f1)
if [ "$OLDMD" != "$NEWMD" ]; then
echo "$CAT/$TYPE has changed, database needs to be updated"
rm -f /var/squidGuard/blacklists/$CAT/$TYPE.db
/usr/bin/squidGuard -P -C $CAT/$TYPE
if [ -e /var/squidGuard/blacklists/$CAT/$TYPE.db ]; then
md5sum /var/squidGuard/blacklists/$CAT/$TYPE | cut -d' ' -f1 > \
/var/squidGuard/blacklists/$CAT/$TYPE.md5
fi
else
echo "$CAT/$TYPE hasn't changed, no database update needed"
fi
fi
done
done
chown -R squid:squid /var/squidGuard/blacklists
chown -R squid:squid /var/log/squidGuard/*
chmod 640 /var/log/squidGuard/*
# Reload squid configuration
/usr/sbin/squid -k reconfigure

View File

@@ -0,0 +1,258 @@
<lexicon lang="bg">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Disabled</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Enabled</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Черен списък</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Бял списък</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="da">
<entry>
<base>WEB_FILTERING</base>
<trans>Web filter</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtrering konfiguration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>Denne side lader dig blokere nogle hjemmeside kategorier</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Deaktiveret</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Aktiveret</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Vil du aktivere URL filtrering og blokere valgte hjemmeside kategorier ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL filter</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>du at aktivere antivirus filtrering og blokere download af inficerede filer ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV filter</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>Du kan kontrollere hjemmeside kategorier, du vil blokere</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blokeret ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Kategori</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blokerede kategorier</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>Dette felt indeholder et eller flere poster</trans>
</entry>
<entry>
<base>adult</base>
<trans>Voksen websteder lige fra erotisk til hardcore pornografi</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racistisk, antisemitisk, tilskyndelse til had websteder</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting websteder certificeret af ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrologi relaterede websteder</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio og video websteder</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online netbanker</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting websteder</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" nyheds websteder</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating websteder</trans>
</entry>
<entry>
<base>child</base>
<trans>Websteder godkendt for</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websteder for at rense og opdatere computere</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Websteder for madlavning</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>Websteder, der beskriver, hvordan man skaber farlige materialer (eksplosive, gift osv.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating hjemmesider</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Narkotika relaterede hjemmesider</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>Fil hosting hjemmesider (video, billeder, lyd)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Finansielle websteder</trans>
</entry>
<entry>
<base>forums</base>
<trans>Fora</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online spille websteder, kasinoer, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online spil eller spil distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking og computer angreb websteder</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Jobs gning</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>uddannelsesm ssige websteder for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websteder der installerer malware</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga og tegneserier relaterede hjemmesider</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Meget specielle marketing websteder</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Telefon relaterede websteder (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank og lignende websteder</trans>
</entry>
<entry>
<base>press</base>
<trans>Nyheds websteder</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Annonce</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radiostationer</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Websteder, der har \'e6ndret ejerskab og dermed indhold</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtrerende omdirigerings websteder</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Fjernbetjening websteder</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sekter</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websteder der taler om seksualundervisning og kan vises som pornografisk</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websteder</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Sociale netverk</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sport</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Ligesom omdirigering, men omfatter klassiske gemaskiner</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Ligesom streng omdirigering, men for Google og andre, kun blokere nogle geord</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>Websteder, der forklarer, hvordan du snyde eksamen</trans>
</entry>
<entry>
<base>warez</base>
<trans>Websteder for forfalskede programmer</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail osv.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[Du kan indtaste her en IP-adresser listen (eller IP intervaller), for hvilke URL-filtrering vil blive deaktiveret (men AV-filtrering vil stadig blive anvendt). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Ufiltrerede IP-adresser</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[F\'f8lgende felter lader dig styre din egen liste blokerede websteder (blacklist) eller liste tilladt websteder (whitelist). Den whitelist altid forrang. <br> Du kan indtaste her en liste over blokerede dom\'e6nenavne eller webadresser.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Sortlistet</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Indtast her et dom\'e6nenavne eller webadresse lister, som vil blive tilladt</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Hvidlistet</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="de">
<entry>
<base>WEB_FILTERING</base>
<trans>Internetfilter</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>Hier können sie Webseiten nach Kategorien filtern</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Deaktiviert</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Aktiviert</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Wollen sie den Internetfilter aktivieren?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filter</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Wollen sie den Antivirus-Gateway aktivieren?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>Antivirus Filter</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>Aktivieren sie die Webseiten-Kategorien, die sie blockieren möchten.</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Aktiviert</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Kategorie</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Aktivierte Kategorien</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>Dieses Feld enthält einen oder mehrere Einträge</trans>
</entry>
<entry>
<base>adult</base>
<trans>Erotikseiten, Pornographie</trans>
</entry>
<entry>
<base>agressif</base>
<trans>Rassistische und antisemitische Seiten</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Glücksspielseiten von ARJEL nicht zertifiziert</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrologie</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio- und Videose</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online Banking Seiten</trans>
</entry>
<entry>
<base>blog</base>
<trans>Internetblogs</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>Prominenten Nachrichten</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online Chats</trans>
</entry>
<entry>
<base>child</base>
<trans>Für Kinder geeignete Seiten</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Updateseiten</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Kochrezepte</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>Anleitungen zum Bombenbau oder zur Giftmischung</trans>
</entry>
<entry>
<base>dating</base>
<trans>Partnerbörsen</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drogen</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>Datei-Hostingseiten (Videos, Bilder, Musik)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Finanzen</trans>
</entry>
<entry>
<base>forums</base>
<trans>Internetforen</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online Spieleseiten</trans>
</entry>
<entry>
<base>games</base>
<trans>Onlinespiele und -anbieter</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacker Webseiten</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Stellenbörsen</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>Bildungsseiten für "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Mit Malware infizierte Seiten</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga- und Comicseiten</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Marketing Webseiten</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Angebote für Handys (Klingeltöne etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishingseiten</trans>
</entry>
<entry>
<base>press</base>
<trans>Nachrichten</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Anzeigenmarkt</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internetradios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Webseiten, die Eigentum und somit Inhalte geändert haben</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Seiten, die Internetfilter umgehen</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Seiten zur Fernbedienung</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sekten</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>Seiten mit sexuellen Diskussionen und Inhalten</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping-Webseiten</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Soziale Netzwerke</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sportseiten</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Seiten, die Internetfilter umgehen und weitere Suchmaschinen</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Seiten, die Internetfilter umgehen und weitere Suchmaschinen, einige Schlüsselwörter werden geblockt</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>Seiten, die Betrügereien bei Prüfungen erklären</trans>
</entry>
<entry>
<base>warez</base>
<trans>Seiten mit gefälschter Software</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmailer (GMX, Web.de etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[Geben sie hier IP-Adressen oder einen IP-Adressebereich ein, die nicht gefiltert werden sollen (der Antivirus-Filter bleibt erhalten). Beispiel:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Ungefilterte IP-Adressen</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[Nachfolgend können sie blockierte (Blacklist) und erlaubte (Whitelist) Webseiten eingeben. Die Whitelist hat immer Vorrang.<br><br>Sie können hier blockierte URLs oder IP-Adressen eingeben.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Erlaubte Webseiten oder IP-Adressen</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="el">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Απενεργοποιημένος/η/ο</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Ενεργοποιήθηκε</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="en-us">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Disabled</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Enabled</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="es">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Deshabilitado</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Habilitado</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="et">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Keelatud</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Lubatud</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="fr">
<entry>
<base>WEB_FILTERING</base>
<trans>Filtrage Web</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Configuration du filtrage Web</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>Cette page vous permet de bloquer certaines catégories de sites Web</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Désactivé</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Activé</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Voulez-vous activer le filtrage d'URL et bloquer certaines catégories de sites Web ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>Filtrage d'URLs</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Voulez-vous activer le filtrage antivirus et bloquer les téléchargements de fichiers infectés ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>Filtrage AV</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>Vous pouvez vérifier les catégories de sites Web que vous voulez bloquer</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Bloqué ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Catégorie</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Catégories bloquées</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>Ce champ contient une ou plusieurs entrées erronées</trans>
</entry>
<entry>
<base>adult</base>
<trans>Sites pour adultes allant de la pornographie érotique à la pornographie « hardcore »</trans>
</entry>
<entry>
<base>agressif</base>
<trans>Sites racistes, antisémites, incitant à la haine</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Sites de paris en ligne certifiés par l'ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Sites relatifs à l'astrologie</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Sites audio et video</trans>
</entry>
<entry>
<base>bank</base>
<trans>Sites de banques en ligne</trans>
</entry>
<entry>
<base>blog</base>
<trans>Sites hébergeant des blogues</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>Sites d'information « people »</trans>
</entry>
<entry>
<base>chat</base>
<trans>Sites de messageries instantanées</trans>
</entry>
<entry>
<base>child</base>
<trans>Sites favoris des enfants</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Sites Web de désinfection et de mises à jour d'ordinateurs</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Sites de fichiers témoins (« cookies »)</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>Sites Web décrivant comment créer des matières dangereuses (explosif, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Sites Web de rencontres</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Sites Web liés à la drogue</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>Sites Web hébergeant des fichiers (vidéo, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Sites Web de la finance</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Sites Web de jeux en ligne, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Jeux en ligne ou vente de jeux</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Sites Web de piratage et d'attaques d'ordinateur</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Recherche d'emploi</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>Sites Web éducatifs pour « univ-tise1.fr »</trans>
</entry>
<entry>
<base>malware</base>
<trans>Sites Web d'injection de logiciels malfaisants</trans>
</entry>
<entry>
<base>manga</base>
<trans>Sites Web relatifs aux mangas et aux bandes dessinées</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Sites Web de commerce très spécial</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Sites Web liés à la téléphonie (sonneries, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Sites Web dhameçonnage, de pièges bancaires et autres</trans>
</entry>
<entry>
<base>press</base>
<trans>Sites Web d'informations</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Publicité</trans>
</entry>
<entry>
<base>radio</base>
<trans>Radios sur Internet</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Site qui ont changé de propriétaire et donc de contenu</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtrage des sites Web de contournement</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Sites Web de prise de contrôle à distance</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sectes</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>Sites Web qui parlent d'éducation sexuelle et peuvent être détectés comme pornographiques</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Sites Web marchands</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Réseaux sociaux</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Comme « redirector » mais inclut les moteurs de recherche classiques</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Comme « strict_redirector » mais pour Google et autres, bloque seulement quelques mots-clés</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>Sites Web qui expliquent comment tricher aux examens</trans>
</entry>
<entry>
<base>warez</base>
<trans>Sites Web de logiciels contrefaits</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Messageries sur le Web (hotmail, gmail, etc)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[Vous pouvez entrer ici une liste d'adresses IP (ou des intervalles d'IP) pour lesquelles le filtrage d'URL sera désactivé (mais le filtrage AV sera encore appliqué). Par exemple :<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Adresses IP non filtrées</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[Les champs suivants vous permettent de configurer votre propre liste de sites Web bloqués (blacklist) ou liste de sites Web autorisés (whitelist). La liste blanche a toujours la priorité.<br><br>Vous pouvez entrer ici une liste de noms de domaines bloqués ou d'URLs.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Liste noire</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Entrer ici une liste de noms de domaine ou d'URLs qui seront autorisés</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Liste blanche</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="he">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Disabled</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Enabled</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="hu">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Letiltva</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Engedélyezve</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="id">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Disabled</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Enabled</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="it">
<entry>
<base>WEB_FILTERING</base>
<trans>Filtro Web</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Configurazione filtro Web</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>Questa pagina consente di bloccare alcune categorie di siti Web</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Disabilitato</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Abilitato</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Si vuole abilitare il filtro URL e bloccare categorie selezionate di Siti Web?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>Filtro URL</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Si vuole attivare il filtro antivirus e bloccare il download di file infetti ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>Filtro AV</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>Si possono controllare le categorie di Siti Web che si vogliono bloccare</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Bloccato?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Categoria</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Categorie bloccate</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>Il campo contiene una o più righe scorrette</trans>
</entry>
<entry>
<base>adult</base>
<trans>Siti per adulti spazianti dall'erotismo alla pornografia hardcore</trans>
</entry>
<entry>
<base>agressif</base>
<trans>siti razzisti, antisemiti, incitanti all'odio</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Siti di scommesse online certificati da ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Siti astrologici</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Siti contenenti file audio e video</trans>
</entry>
<entry>
<base>bank</base>
<trans>Siti di banking online</trans>
</entry>
<entry>
<base>blog</base>
<trans>Siti di blogging</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>Siti di notizie mondane</trans>
</entry>
<entry>
<base>chat</base>
<trans>Chat online</trans>
</entry>
<entry>
<base>child</base>
<trans>Siti approvati per bambini</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Siti Web per ripulire ed aggiornare computer</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Siti di cucina</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>Siti Web che descrivono la creazione di sostanze pericolose (esplosivi, veleni, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Siti per incontri on-line (Dating)</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Siti che pubblcizzano o commercializzano droghe</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>Siti per deposito di file (video, immagini, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Siti Web di finanza</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Siti per giochi online, casino, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Siti per giochi online o per distribuzione di giochi</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Siti di hacking e attacco ai PC</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Siti Web di ricerca di lavoro</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>Siti Web di istruzione per "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Siti Web che infettano con badware</trans>
</entry>
<entry>
<base>manga</base>
<trans>Siti Web su manga e fumetti in generale</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Siti Web di commercio molto speciali</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Siti Web di telefonia (suoneria ecc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Siti Web di phishing, finte banche ed altro</trans>
</entry>
<entry>
<base>press</base>
<trans>Siti Web di informazione</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Siti Web di pubblicità</trans>
</entry>
<entry>
<base>radio</base>
<trans>Radio Internet</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Siti Web che hanno cambiato proprietario e quindi contenuti</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Siti Web per evitare il filtro contenuti</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Siti Web per il controllo remoto</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sette</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>Siti Web che trattano di educazione sessuale e sono rilevati come pornografici</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Siti Web di acquisto on-line</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social network</trans>
</entry>
<entry>
<base>sports</base>
<trans>Siti Web di sport</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Come redirector, ma include i motori di ricerca classici</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Come strict_redirector, ma per google ed altri blocca solo alcune parole chiave</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>Siti Web che spiegano come imbrogliare agli esami</trans>
</entry>
<entry>
<base>warez</base>
<trans>Siti Web di software contraffatto</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmail (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[Qui si può inserire una lista di indirizzi IP (o intervalli di IP) per i quali il filtro URL sarà disabilitato (ma il filtro AV sarà ancora applicato). Per esempio:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Indirizzi IP non filtrati</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[I campi seguenti permettono di gestire la propria lista di Siti Web bloccati (blacklist) o consentiti (whitelist). La whitelist ha sempre la precedenza .<br><br>Qui si può inserire la lista di domini o URL bloccat.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Inserire qui la lista di nomi di dominio o URL che saranno consentiti</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>White List</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="ja">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Disabled</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Enabled</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="nb">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Deaktivert</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>aktivert</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="nl">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Inactief</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Actief</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="pl">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Disabled</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Enabled</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="pt-br">
<entry>
<base>WEB_FILTERING</base>
<trans>Filtragem Web</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Configuraçã de filtragem Web</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>Esta página permite voce bloquear algumas categorias de sites web</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Desabilitado</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Habilitado</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Você deseja habilitar a filtragem de URL e bloquear as categorias de web sites selecionadas ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>Filtragem de URL</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Você quer habilitar a filtragem com antivirus e bloquear download de arquivos infectados ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>Filtragem AV</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>Você deve marcar as categorias de sites web que deseja bloquear</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Bloqueado ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Categoria</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Categorias bloqueadas</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>Este campo contem um ou mais entradas inválidas</trans>
</entry>
<entry>
<base>adult</base>
<trans>Sites adultos, desde eroticos até pornografia hardcore</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racistas, anti-semitas, sites que incitam violencia e ódio</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Site online de apostas certificados pela ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Sites relacionadoas a astrologia</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Sites de Audio and video</trans>
</entry>
<entry>
<base>bank</base>
<trans>Sites de bancos online</trans>
</entry>
<entry>
<base>blog</base>
<trans>Sites que hospedam Blogs</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>Sites com notícias de Celebridades</trans>
</entry>
<entry>
<base>chat</base>
<trans>Sites de bate papo online</trans>
</entry>
<entry>
<base>child</base>
<trans>Sites aprovados para crianças</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Sites para limpar e atualizar computadores</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Sites sobre Cozinha</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>Sites descrevendo como criar materias perigosos (explosivos, veneno, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Sites de encontros</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Sites relacionados a drogas</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>Sites de hospedagem de arquivos video, imagens, áudio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Sites Financeiros</trans>
</entry>
<entry>
<base>forums</base>
<trans>Foruns de discussão</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Site de jogos online, cassinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Jogos online games ou distribuição de jogos</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Sites de Hacking e ataques a computadores</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Sites de procura de emprego</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Sites que injetam malware</trans>
</entry>
<entry>
<base>manga</base>
<trans>Sites de conteúdo relacionado a Manga e gibis</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Sites de Marketing muito especiais</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Sites relacionados a telefone (toques, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Sites de Phishing, falsos bancos e correlatos</trans>
</entry>
<entry>
<base>press</base>
<trans>Sites de Notícias</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Publicidade</trans>
</entry>
<entry>
<base>radio</base>
<trans>Radios via Internet</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites que mudaram de proprietário e por isso de conteúdo</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Sites ensinando a contornar filtragem web</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Sites de Controle Remoto</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>Sites que falam sobre educação sexual e podem ser detectados como pornografia</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Sites de Compras</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Redes Sociais</trans>
</entry>
<entry>
<base>sports</base>
<trans>Esportes</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Sites que ensinam contornar filtragem e incluindo os mecanismos de busca clássicos</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Sites que ensinam contornar filtragem, mas para os mecanismos de busca clássicos, somente algumas palavras chave são bloqueadas</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>Sites que explicam como trapacear em exames</trans>
</entry>
<entry>
<base>warez</base>
<trans>Sites de pirataria de software - warez</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (HotMail, Gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[VocÊ pode digitar aqui uma lista de endereços IP(ou range de IP) para as quais a filtragem de URL será desabilitada (mas ainda terá filtragem de virus se estiver habilitada). Por exemplo:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Endereços IP sem filtragem</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[Os seguintes campos permitem que você crie suas próprias listas de sites bloqueados (blacklist) ou liberados (whitelist). A whitelist sempre tem precedencia sobre a blacklist.<br><br>Você pode digitar aqui uma lista de URLs ou nomes de domínio.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Digite aqui uma lista de nomes de domínio ou URL que serão liberados</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Lista Branca</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="pt">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Desabilitado</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Habilitado</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="ro">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Disabled</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Activat</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="ru">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Отключен</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Включен</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="sl">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Onemogoceno</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Omogoceno</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="sv">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Ej tillåten</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Tillåten</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="th">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>ปิดไม่ใช้งาน</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>เปิดใช้งาน</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="tr">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>Etkin değil</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>Etkin</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="zh-cn">
<entry>
<base>WEB_FILTERING</base>
<trans>网页过滤</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>网页过滤设置</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>禁用</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>启用</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL 过滤</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>病毒过滤</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>在线赌博网站</trans>
</entry>
<entry>
<base>astrology</base>
<trans>迷信类网站</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>音视频网站</trans>
</entry>
<entry>
<base>bank</base>
<trans>电子银行</trans>
</entry>
<entry>
<base>blog</base>
<trans>博客托管</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>在线聊天</trans>
</entry>
<entry>
<base>child</base>
<trans>儿童网站</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>约会网站</trans>
</entry>
<entry>
<base>drogue</base>
<trans>毒品相关的网站</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>文件托管类网站 (视频, 图片, 音频)</trans>
</entry>
<entry>
<base>financial</base>
<trans>财经网站</trans>
</entry>
<entry>
<base>forums</base>
<trans>社区网站</trans>
</entry>
<entry>
<base>gambling</base>
<trans>在线游戏类的网站.</trans>
</entry>
<entry>
<base>games</base>
<trans>在线游戏或游戏发行类的网站</trans>
</entry>
<entry>
<base>hacking</base>
<trans>黑客网站</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>找工作的网站</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>教育类网站</trans>
</entry>
<entry>
<base>malware</base>
<trans>包含恶意软件的网站</trans>
</entry>
<entry>
<base>manga</base>
<trans>动漫类网站</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>小众网站</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>电话销售类网站</trans>
</entry>
<entry>
<base>phishing</base>
<trans>钓鱼网站</trans>
</entry>
<entry>
<base>press</base>
<trans>新闻网站</trans>
</entry>
<entry>
<base>publicite</base>
<trans>广告</trans>
</entry>
<entry>
<base>radio</base>
<trans>互联网电台</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>例外的网站</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>色情网站</trans>
</entry>
<entry>
<base>shopping</base>
<trans>购物网站</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>社交网络</trans>
</entry>
<entry>
<base>sports</base>
<trans>体育</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>考试作弊网站</trans>
</entry>
<entry>
<base>warez</base>
<trans>盗版软件网站</trans>
</entry>
<entry>
<base>webmail</base>
<trans>网页邮箱 (hotmail, gmail 等.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>黑名单</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>白名单</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1,258 @@
<lexicon lang="zh-tw">
<entry>
<base>WEB_FILTERING</base>
<trans>Web Filtering</trans>
</entry>
<entry>
<base>FORM_TITLE</base>
<trans>Web filtering configuration</trans>
</entry>
<entry>
<base>PAGE_DESCRIPTION</base>
<trans>This page lets you block some websites categories</trans>
</entry>
<entry>
<base>DISABLED</base>
<trans>禁用</trans>
</entry>
<entry>
<base>ENABLED</base>
<trans>啟用</trans>
</entry>
<entry>
<base>DESC_URL_FILTER_STATUS</base>
<trans>Do you want to enable URL filtering and block selected website categories ?</trans>
</entry>
<entry>
<base>LABEL_URL_FILTER_STATUS</base>
<trans>URL Filtering</trans>
</entry>
<entry>
<base>DESC_AV_FILTER_STATUS</base>
<trans>Do you want to enable antivirus filtering and block infected files downloads ?</trans>
</entry>
<entry>
<base>LABEL_AV_FILTER_STATUS</base>
<trans>AV Filtering</trans>
</entry>
<entry>
<base>DESC_BLOCKED_CATEGORIES</base>
<trans>You can check websites categories you want to block</trans>
</entry>
<entry>
<base>BLOCKED_OR_NOT</base>
<trans>Blocked ?</trans>
</entry>
<entry>
<base>CATEGORY</base>
<trans>Category</trans>
</entry>
<entry>
<base>BLOCKED_CATEGORIES</base>
<trans>Blocked categories</trans>
</entry>
<entry>
<base>NOT_A_VALID_IP_LIST</base>
<trans>This field contains one or more bad entries(s)</trans>
</entry>
<entry>
<base>adult</base>
<trans>Adult sites ranging from erotic to hardcore pornography</trans>
</entry>
<entry>
<base>agressif</base>
<trans>racist, antisemitic, inciting to hatred sites</trans>
</entry>
<entry>
<base>arjel</base>
<trans>Online betting sites certified by the ARJEL</trans>
</entry>
<entry>
<base>astrology</base>
<trans>Astrology related sites</trans>
</entry>
<entry>
<base>audio-video</base>
<trans>Audio and video sites</trans>
</entry>
<entry>
<base>bank</base>
<trans>Online banking sites</trans>
</entry>
<entry>
<base>blog</base>
<trans>Blog hosting sites</trans>
</entry>
<entry>
<base>celebrity</base>
<trans>"People" news sites</trans>
</entry>
<entry>
<base>chat</base>
<trans>Online chating sites</trans>
</entry>
<entry>
<base>child</base>
<trans>Child approved sites</trans>
</entry>
<entry>
<base>cleaning</base>
<trans>Websites to sanitize and update computers</trans>
</entry>
<entry>
<base>cooking</base>
<trans>Cooking sites</trans>
</entry>
<entry>
<base>dangerous_material</base>
<trans>websites describing how to create hazardous materials (explosive, poison, etc.)</trans>
</entry>
<entry>
<base>dating</base>
<trans>Dating websites</trans>
</entry>
<entry>
<base>drogue</base>
<trans>Drugs related websites</trans>
</entry>
<entry>
<base>filehosting</base>
<trans>File hosting websites (video, images, audio)</trans>
</entry>
<entry>
<base>financial</base>
<trans>Financial websites</trans>
</entry>
<entry>
<base>forums</base>
<trans>Forums</trans>
</entry>
<entry>
<base>gambling</base>
<trans>Online gaming websites, casinos, etc.</trans>
</entry>
<entry>
<base>games</base>
<trans>Online games or games distribution</trans>
</entry>
<entry>
<base>hacking</base>
<trans>Hacking and computer attacks websites</trans>
</entry>
<entry>
<base>jobsearch</base>
<trans>Job search</trans>
</entry>
<entry>
<base>liste_bu</base>
<trans>educational websites for "univ-tlse1.fr"</trans>
</entry>
<entry>
<base>malware</base>
<trans>Websites injecting badwares</trans>
</entry>
<entry>
<base>manga</base>
<trans>Manga and comics related websites</trans>
</entry>
<entry>
<base>marketingware</base>
<trans>Very special marketing websites</trans>
</entry>
<entry>
<base>mobile-phone</base>
<trans>Phone related websites (ring, etc.)</trans>
</entry>
<entry>
<base>phishing</base>
<trans>Phishing, bank traps ans other websites</trans>
</entry>
<entry>
<base>press</base>
<trans>News websites</trans>
</entry>
<entry>
<base>publicite</base>
<trans>Advertisement</trans>
</entry>
<entry>
<base>radio</base>
<trans>Internet radios</trans>
</entry>
<entry>
<base>reaffected</base>
<trans>Sites that have changed ownership and therefore content</trans>
</entry>
<entry>
<base>redirector</base>
<trans>Filtering bypass websites</trans>
</entry>
<entry>
<base>remote-control</base>
<trans>Remote control websites</trans>
</entry>
<entry>
<base>sect</base>
<trans>Sects</trans>
</entry>
<entry>
<base>sexual_education</base>
<trans>websites that talk about sex education and can be detected as pornographic</trans>
</entry>
<entry>
<base>shopping</base>
<trans>Shopping websites</trans>
</entry>
<entry>
<base>social_networks</base>
<trans>Social networks</trans>
</entry>
<entry>
<base>sports</base>
<trans>Sports</trans>
</entry>
<entry>
<base>strict_redirector</base>
<trans>Like redirector, but include classic search engines</trans>
</entry>
<entry>
<base>strong_redirector</base>
<trans>Like strict_redirector, but for google and others, only block some keywords</trans>
</entry>
<entry>
<base>tricheur</base>
<trans>websites that explain how to cheat on exams</trans>
</entry>
<entry>
<base>warez</base>
<trans>Counterfeit softwares websites</trans>
</entry>
<entry>
<base>webmail</base>
<trans>Webmails (hotmail, gmail etc.)</trans>
</entry>
<entry>
<base>DESC_UNRESTRICTED</base>
<trans><![CDATA[You can enter here an IP addresses list (or IP ranges) for which URL filtering will be disabled (but AV filtering will still be applied). For example:<br><br>192.168.1.20<br>192.168.2.0/24<br>192.168.3.0/255.255.255.0<br>192.168.4.5-192.168.4.10<br>]]></trans>
</entry>
<entry>
<base>LABEL_UNRESTRICTED</base>
<trans>Unfiltered IP addresses</trans>
</entry>
<entry>
<base>DESC_BLACK</base>
<trans><![CDATA[The following fields lets you manage your own blocked websites list (blacklist) or allowed websites list (whitelist). The whitelist always takes precedence.<br><br>You can enter here a list of blocked domain names or urls.]]></trans>
</entry>
<entry>
<base>LABEL_BLACK</base>
<trans>Blacklist</trans>
</entry>
<entry>
<base>DESC_WHITE</base>
<trans>Enter here a domain names or urls list which will be allowed</trans>
</entry>
<entry>
<base>LABEL_WHITE</base>
<trans>Whitelist</trans>
</entry>
</lexicon>

View File

@@ -0,0 +1 @@
PERMS=0755

View File

@@ -0,0 +1 @@
PERMS=0750

View File

@@ -0,0 +1 @@
exec /etc/e-smith/events/actions/squidguard-update-databases 2>&1 > /dev/null

View File

@@ -0,0 +1,47 @@
{
my $db = ${'squid-db-logd'}{'DbName'} || 'squid_log';
my $user = ${'squid-db-logd'}{'DbUser'} || 'squid';
my $pass = ${'squid-db-logd'}{'DbPassword'} || 'squid';
my $dbstruct = `rpm -qd smeserver-webfilter | grep squid_log.sql`;
$OUT .= <<"END";
#! /bin/sh
if [ ! -d /var/lib/mysql/$db ]; then
/usr/bin/mysql -e 'create database $db'
/usr/bin/mysql $db < $dbstruct
fi
/usr/bin/mysql <<EOF
USE mysql;
REPLACE INTO user (
host,
user,
password)
VALUES (
'localhost',
'$user',
PASSWORD ('$pass'));
REPLACE INTO db (
host,
db,
user,
select_priv, insert_priv, update_priv, delete_priv,
create_priv, alter_priv, index_priv, drop_priv, create_tmp_table_priv,
grant_priv, lock_tables_priv, references_priv)
VALUES (
'localhost',
'$db',
'$user',
'Y', 'Y', 'Y', 'Y',
'Y', 'Y', 'Y', 'Y', 'Y',
'N', 'Y', 'Y');
FLUSH PRIVILEGES;
EOF
END
}

View File

@@ -0,0 +1,13 @@
ScriptAlias /squidGuard/cgi-bin/ /usr/share/squidGuard/cgi-bin/
Alias /squidGuard /usr/share/squidGuard
<Directory /usr/share/squidGuard/cgi-bin>
AllowOverride None
Options +ExecCGI
Require all granted
</Directory>
<Directory /usr/share/squidGuard/images>
AllowOverride None
Options None
Require all granted
</Directory>

View File

@@ -0,0 +1,9 @@
/var/log/squidGuard/*.log \{
weekly
rotate 52
copytruncate
compress
notifempty
missingok
\}

View File

@@ -0,0 +1,25 @@
{
my $sg = $squidguard{'status'} || 'disabled';
my $sc = $squidclamav{'status'} || 'disabled';
my $redir = '';
if ($sc eq 'enabled'){
$redir = '/usr/bin/squidclamav';
}
elsif ($sg eq 'enabled'){
$redir = '/usr/bin/squidGuard';
}
if ($redir ne ''){
$OUT .=<<"EOF";
redirect_program $redir
redirect_children 20
EOF
}
else{
$OUT .= '# neither squidGuard nor squidclamav is enabled';
}
}
acl self src 127.0.0.1
url_rewrite_access deny self

View File

@@ -0,0 +1,2 @@
dbhome /var/squidGuard
logdir /var/log/squidGuard

View File

@@ -0,0 +1,13 @@
src unrestricted \{
{
my $ip = $squidguard{'UnrestrictedIP'} || '';
$ip =~ s/[,;]/ /g;
$OUT .=<<"EOF" if ($ip ne '');
ip $ip
EOF
}
\}

View File

@@ -0,0 +1,33 @@
dest black \{
log deny.log
domainlist blacklists/black/domains
urllist blacklists/black/urls
\}
dest white \{
log white.log
domainlist blacklists/white/domains
urllist blacklists/white/urls
\}
{
my @hide = split (/[;,]/, ($squidguard{'DisabledCategories'} || ''));
opendir BL, '/var/squidGuard/blacklists/' || die "Couldn't open blacklists dir\n";
while (my $cat = readdir(BL)){
next if (!-d "/var/squidGuard/blacklists/$cat" ||
$cat =~ /^\./ ||
$cat eq 'black' ||
$cat eq 'white' ||
grep { $_ eq $cat } @hide );
$OUT .= "dest $cat {\n\tlog deny.log\n";
$OUT .= "\tdomainlist blacklists/$cat/domains\n"
if (-e "/var/squidGuard/blacklists/$cat/domains");
$OUT .= "\turllist blacklists/$cat/urls\n"
if (-e "/var/squidGuard/blacklists/$cat/urls");
$OUT .= "\texpressionlist blacklists/$cat/expressions\n"
if (-e "/var/squidGuard/blacklists/$cat/expressions");
$OUT .= "}\n";
}
closedir BL;
}

View File

@@ -0,0 +1 @@
acl \{

View File

@@ -0,0 +1,3 @@
unrestricted \{
pass any
\}

View File

@@ -0,0 +1,17 @@
{
my @blocked = split(/[;,]/, ($squidguard{'BlockedCategories'} || ''));
my $redirect = $squidguard{'RedirectUrl'} ||
"http://$SystemName.$DomainName/squidGuard/".
'cgi-bin/blocked.cgi?clientaddr=%a&clientname=%n'.
'&clientuser=%i&clientgroup=%s&targetgroup=%t&url=%u';
my $deny = 'white !black';
$deny .= " !$_" foreach (@blocked);
$deny .= " !in-addr" if (($squidguard{'DenyIP'} || 'disabled') eq 'enabled');
$OUT .=<<"EOF";
default {
pass $deny any
redirect $redirect
}
EOF
}

View File

@@ -0,0 +1 @@
\}

View File

@@ -0,0 +1,2 @@
squid_ip 127.0.0.1
squid_port {$squid{'TCPPort'} || '3128';}

View File

@@ -0,0 +1,16 @@
logfile /var/log/squid/squidclamav.log
{
my $debug = $squidclamav{'Debug'} || 'no';
if ($debug =~ m/^yes|enabled|on|1$/i){
$OUT .=<<"EOF";
debug 1
stat 1
logredir 1
EOF
}
else{
$OUT .= "# Debuging is disabled\n";
}
}

View File

@@ -0,0 +1,2 @@
clamd_local /var/clamav/clamd.socket
maxsize {$squidclamav{'MaxScanSize'} || '5000000';}

View File

@@ -0,0 +1,9 @@
{
my $sg = $squidguard{'status'} || 'disabled';
if ($sg eq 'enabled'){
$OUT .= "squidguard /usr/bin/squidGuard\n";
}
else{
$OUT .= "# squidGuard is disabled\n";
}
}

View File

@@ -0,0 +1 @@
redirect http://{$SystemName.'.'.$DomainName}/squidGuard/cgi-bin/blocked.cgi

View File

@@ -0,0 +1,4 @@
maxredir 30
timeout 60
useragent Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)

View File

@@ -0,0 +1,11 @@
# Do not scan images
abort ^.*\.(ico|gif|png|jpg)$
abortcontent ^image\/.*$
# Do not scan streamed videos
abortcontent ^video\/x-flv$
abortcontent ^video\/mp4$
# Do not scan sequence of framed Microsoft Media Server (MMS) data packets
abortcontent ^.*application\/x-mms-framed.*$

View File

@@ -0,0 +1,10 @@
{
if ( -e "/etc/squid/clamav_whitelist" ){
Text::Template::_load_text("/etc/squid/clamav_whitelist");
}
else{
$OUT .= "";
}
}

View File

@@ -0,0 +1,9 @@
image = /usr/share/squidGuard/images/blocked.gif
redirect = http://{$SystemName.'.'.$DomainName}/images/blocked.gif
proxy = {$SystemName.'.'.$DomainName}
proxymaster = admin@{$DomainName}
autoinaddr = 2
company = {$squidGuard{'CompanyName'} || $ldap{'defaultCompany'}}
companylogo = {$squidGuard{'CompanyLogo'} || ''}
squidguard = http://www.squidguard.org
squidguardlogo = http://www.squidguard.org/Logos/squidGuard.gif

View File

@@ -0,0 +1,79 @@
#!/usr/bin/perl -wT
#----------------------------------------------------------------------
# heading : Configuration
# description : WEB_FILTERING
# navigation : 6000 6950
#----------------------------------------------------------------------
# Copyright (C) 2011-2012 Firewall Services
# daniel@firewall-services.com
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
use strict;
use esmith::FormMagick;
use esmith::FormMagick::Panel::webfilter;
my $f = esmith::FormMagick::Panel::webfilter->new();
$f->display();
__DATA__
<form title="FORM_TITLE" header="/etc/e-smith/web/common/head.tmpl" footer="/etc/e-smith/web/common/foot.tmpl">
<page name="First" pre-event="print_status_message()" post-event="change_settings()">
<description>PAGE_DESCRIPTION</description>
<field type="select"
id="url_filter_status"
options="'disabled' => 'DISABLED', 'enabled' => 'ENABLED'"
value="get_prop('squidguard', 'status')">
<description>DESC_URL_FILTER_STATUS</description>
<label>LABEL_URL_FILTER_STATUS</label>
</field>
<field type="select"
id="av_filter_status"
options="'disabled' => 'DISABLED', 'enabled' => 'ENABLED'"
value="get_prop('squidclamav','status')">
<description>DESC_AV_FILTER_STATUS</description>
<label>LABEL_AV_FILTER_STATUS</label>
</field>
<field type="literal" id="blocked_desc" value="">
<description>DESC_BLOCKED_CATEGORIES</description>
</field>
<subroutine src="print_categories()"/>
<field type="textarea" id="unrestricted" cols="60" rows="10"
value="get_list('squidguard','UnrestrictedIP')" validation="valid_ip_list()">
<description>DESC_UNRESTRICTED</description>
<label>LABEL_UNRESTRICTED</label>
</field>
<field type="textarea" id="black" cols="60" rows="10"
value="get_wbl('black')">
<description>DESC_BLACK</description>
<label>LABEL_BLACK</label>
</field>
<field type="textarea" id="white" cols="60" rows="10"
value="get_wbl('white')">
<description>DESC_WHITE</description>
<label>LABEL_WHITE</label>
</field>
<subroutine src="print_button('SAVE')" />
</page>
</form>