From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arne Fitzenreiter To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 714ef1cf953745a3c73f900d8012bf3aadd2f9e0 Date: Mon, 18 May 2020 20:21:47 +0000 Message-ID: <49Qr5S1TT6z2xkw@people01.haj.ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0821344924676493775==" List-Id: --===============0821344924676493775== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, next has been updated via 714ef1cf953745a3c73f900d8012bf3aadd2f9e0 (commit) via d73e1c75c862f1a6471a81a31f14d36f4f20a4c2 (commit) via 177f79b6924f3bbe539dcf1ceff22d6a28eb6b7a (commit) via adb320bc4a834db81137c3b9b8c2158e54f0a615 (commit) via 5011657a7bbcafd04db8b167d3ea73b19ca4e162 (commit) via 1a2cc05fefeac6d0b1183fa501c627c221d8410d (commit) from ba137dd89827c4aaf5b7097c3794025cc0d3c1be (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 714ef1cf953745a3c73f900d8012bf3aadd2f9e0 Author: Arne Fitzenreiter Date: Mon May 18 20:21:21 2020 +0000 core145: add knot =20 Signed-off-by: Arne Fitzenreiter commit d73e1c75c862f1a6471a81a31f14d36f4f20a4c2 Author: Matthias Fischer Date: Sat May 16 10:38:58 2020 +0200 knot: Update to 2.9.4 =20 For details see: https://www.knot-dns.cz/2020-05-05-version-294.html =20 Signed-off-by: Matthias Fischer Reviewed-by: Michael Tremer Signed-off-by: Arne Fitzenreiter commit 177f79b6924f3bbe539dcf1ceff22d6a28eb6b7a Author: Arne Fitzenreiter Date: Mon May 18 20:19:16 2020 +0000 core145: add ids-functions.pl =20 Signed-off-by: Arne Fitzenreiter commit adb320bc4a834db81137c3b9b8c2158e54f0a615 Author: Stefan Schantl Date: Mon May 18 21:15:54 2020 +0200 ids-functions.pl: Fix generating of HOME_NET declaration =20 Fixes #12407. =20 Signed-off-by: Stefan Schantl Signed-off-by: Arne Fitzenreiter commit 5011657a7bbcafd04db8b167d3ea73b19ca4e162 Author: Michael Tremer Date: Mon May 18 11:04:54 2020 +0000 de: Fix typo in "received" =20 Signed-off-by: Michael Tremer Signed-off-by: Arne Fitzenreiter commit 1a2cc05fefeac6d0b1183fa501c627c221d8410d Author: St=C3=A9phane Pautrel Date: Mon May 18 11:04:53 2020 +0000 fr: Add missing strings =20 Signed-off-by: Michael Tremer Signed-off-by: Arne Fitzenreiter ----------------------------------------------------------------------- Summary of changes: config/cfgroot/ids-functions.pl | 17 +- config/rootfiles/core/145/filelists/files | 1 + .../{oldcore/128 =3D> core/145}/filelists/knot | 0 doc/language_issues.de | 3 +- doc/language_issues.en | 12 +- doc/language_issues.es | 10 +- doc/language_issues.fr | 22 +-- doc/language_issues.it | 10 +- doc/language_issues.nl | 10 +- doc/language_issues.pl | 10 +- doc/language_issues.ru | 10 +- doc/language_issues.tr | 10 +- doc/language_missings | 62 +++++++ langs/de/cgi-bin/de.pl | 4 +- langs/en/cgi-bin/en.pl | 4 +- langs/fr/cgi-bin/fr.pl | 181 ++++++++++++-------= -- lfs/knot | 6 +- 17 files changed, 244 insertions(+), 128 deletions(-) copy config/rootfiles/{oldcore/128 =3D> core/145}/filelists/knot (100%) Difference in files: diff --git a/config/cfgroot/ids-functions.pl b/config/cfgroot/ids-functions.pl index f124b12be..e33569849 100644 --- a/config/cfgroot/ids-functions.pl +++ b/config/cfgroot/ids-functions.pl @@ -677,22 +677,7 @@ sub generate_home_net_file() { } =20 # Format home net declaration. - my $line =3D "\"\["; - - # Loop through the array of networks. - foreach my $network (@networks) { - # Add the network to the line. - $line =3D "$line" . "$network"; - - # Check if the current network was the last in the array. - if ($network eq $networks[-1]) { - # Close the line. - $line =3D "$line" . "\]\""; - } else { - # Add "," for the next network. - $line =3D "$line" . "\,"; - } - } + my $line =3D "[" . join(',', @networks) . "]"; =20 # Open file to store the addresses of the home net. open(FILE, ">$homenet_file") or die "Could not open $homenet_file. $!\n"; diff --git a/config/rootfiles/core/145/filelists/files b/config/rootfiles/cor= e/145/filelists/files index 6e88c4b0d..e2caa6bee 100644 --- a/config/rootfiles/core/145/filelists/files +++ b/config/rootfiles/core/145/filelists/files @@ -16,6 +16,7 @@ usr/local/bin/makegraphs usr/sbin/openvpn-metrics usr/share/hwdata/pci.ids var/ipfire/menu.d/70-log.menu +var/ipfire/ids-functions.pl var/ipfire/general-functions.pl var/ipfire/graphs.pl usr/bin/squidGuard diff --git a/config/rootfiles/core/145/filelists/knot b/config/rootfiles/core= /145/filelists/knot new file mode 120000 index 000000000..28e96f878 --- /dev/null +++ b/config/rootfiles/core/145/filelists/knot @@ -0,0 +1 @@ +../../../common/knot \ No newline at end of file diff --git a/doc/language_issues.de b/doc/language_issues.de index 31235fe25..2dc986d0a 100644 --- a/doc/language_issues.de +++ b/doc/language_issues.de @@ -668,7 +668,6 @@ WARNING: translation string unused: tor accounting period= daily WARNING: translation string unused: tor accounting period monthly WARNING: translation string unused: tor accounting period weekly WARNING: translation string unused: tor exit country -WARNING: translation string unused: total connection time WARNING: translation string unused: traffic back WARNING: translation string unused: traffic calc time WARNING: translation string unused: traffic calc time bad @@ -768,6 +767,7 @@ WARNING: translation string unused: zoneconf val ppp assi= gnment error WARNING: translation string unused: zoneconf val vlan amount assignment error WARNING: translation string unused: zoneconf val vlan tag assignment error WARNING: translation string unused: zoneconf val zoneslave amount error +WARNING: untranslated string: error the to date has to be later than the fro= m date =3D The to date has to be later than the from date! WARNING: untranslated string: fwhost cust geoipgrp =3D unknown string WARNING: untranslated string: fwhost err hostip =3D unknown string WARNING: untranslated string: guardian block a host =3D unknown string @@ -799,6 +799,7 @@ WARNING: untranslated string: guardian logtarget_file =3D= unknown string WARNING: untranslated string: guardian logtarget_syslog =3D unknown string WARNING: untranslated string: guardian no entries =3D unknown string WARNING: untranslated string: guardian service =3D unknown string +WARNING: untranslated string: no entries =3D No entries at the moment. WARNING: untranslated string: pakfire invalid tree =3D Invalid repository se= lected WARNING: untranslated string: route config changed =3D unknown string WARNING: untranslated string: routing config added =3D unknown string diff --git a/doc/language_issues.en b/doc/language_issues.en index ac4389b68..88fa6ed79 100644 --- a/doc/language_issues.en +++ b/doc/language_issues.en @@ -499,6 +499,7 @@ WARNING: untranslated string: countries =3D Countries WARNING: untranslated string: country =3D Country WARNING: untranslated string: country codes and flags =3D Country Codes and = Flags: WARNING: untranslated string: countrycode =3D Code +WARNING: untranslated string: cpu frequency =3D CPU frequency WARNING: untranslated string: cpu frequency per =3D CPU frequency per WARNING: untranslated string: cpu idle usage =3D Idle CPU Usage WARNING: untranslated string: cpu interrupt usage =3D Interrupt CPU Usage @@ -599,6 +600,7 @@ WARNING: untranslated string: dialup red not ppp =3D Dial= up profiles can only used WARNING: untranslated string: directory mask =3D UNIX directory rights WARNING: untranslated string: directory writeable =3D directory writeable WARNING: untranslated string: disabled =3D disabled +WARNING: untranslated string: disconnected =3D Disconnected WARNING: untranslated string: disk access per =3D Disk Access per WARNING: untranslated string: disk usage =3D Disk usage WARNING: untranslated string: display =3D Display @@ -668,7 +670,7 @@ WARNING: untranslated string: drop action1 =3D Default be= haviour of (outgoing) fir WARNING: untranslated string: drop action2 =3D Default behaviour of (input) = firewall WARNING: untranslated string: drop forward =3D Log dropped forward packets WARNING: untranslated string: drop input =3D Log dropped input packets -WARNING: untranslated string: drop newnotsyn =3D Log dropped new not syn pac= kets +WARNING: untranslated string: drop newnotsyn =3D Log dropped new not SYN pac= kets WARNING: untranslated string: drop outgoing =3D Log dropped outgoing packets WARNING: untranslated string: drop portscan =3D Log dropped portscan packets WARNING: untranslated string: drop proxy =3D Drop all packets not addressed = to proxy @@ -680,6 +682,7 @@ WARNING: untranslated string: duplicate ip =3D Duplicate = IP address entered WARNING: untranslated string: duplicate ip bold =3D Duplicate addresses are = in bold WARNING: untranslated string: duplicate mac =3D Duplicate MAC address entered WARNING: untranslated string: duplicate name =3D That name is already being = used, please choose another. +WARNING: untranslated string: duration =3D Duration WARNING: untranslated string: dyn dns source choice =3D Dynamic DNS provider= (s) will receive an IP address for this IPFire from: WARNING: untranslated string: dynamic dns =3D Dynamic DNS WARNING: untranslated string: e-mail address too long =3D E-mail address is = too long; it should not be longer than 40 characters. @@ -728,6 +731,7 @@ WARNING: untranslated string: entropy =3D Entropy WARNING: untranslated string: entropy graphs =3D Entropy Graphs WARNING: untranslated string: error =3D Error WARNING: untranslated string: error messages =3D Error messages +WARNING: untranslated string: error the to date has to be later than the fro= m date =3D The to date has to be later than the from date! WARNING: untranslated string: esp keylife should be between 1 and 24 hours = =3D ESP keylife should be between 1 and 24 hours. WARNING: untranslated string: every =3D Every WARNING: untranslated string: exampel =3D example @@ -1335,6 +1339,7 @@ WARNING: untranslated string: next =3D next WARNING: untranslated string: no =3D No WARNING: untranslated string: no data =3D unknown string WARNING: untranslated string: no dhcp lease =3D No DHCP lease has been acqui= red +WARNING: untranslated string: no entries =3D No entries at the moment. WARNING: untranslated string: no filter pass =3D Enter the standard class fo= r non-filtered packets. WARNING: untranslated string: no log selected =3D No log selected WARNING: untranslated string: no time limit =3D unlimited time @@ -1407,6 +1412,7 @@ WARNING: untranslated string: outgoing traffic in bytes= per second =3D Outgoing Tr WARNING: untranslated string: ovpn =3D OpenVPN WARNING: untranslated string: ovpn add conf =3D Additional configuration WARNING: untranslated string: ovpn con stat =3D OpenVPN Connection Statistics +WARNING: untranslated string: ovpn connection name =3D Connection Name WARNING: untranslated string: ovpn crypt options =3D Cryptographic options WARNING: untranslated string: ovpn dh =3D Diffie-Hellman parameters length WARNING: untranslated string: ovpn dh new key =3D Generate new Diffie-Hellma= n parameters @@ -1426,6 +1432,7 @@ WARNING: untranslated string: ovpn on red =3D OpenVPN o= n RED: WARNING: untranslated string: ovpn port in root range =3D A port number of 1= 024 or higher is required. WARNING: untranslated string: ovpn routes push =3D Routes (one per line) e.g= . 192.168.10.0/255.255.255.0 192.168.20.0/24 WARNING: untranslated string: ovpn routes push options =3D Route push options +WARNING: untranslated string: ovpn rw connection log =3D OpenVPN Roadwarrior= Connections Log WARNING: untranslated string: ovpn server status =3D Current OpenVPN server = status: WARNING: untranslated string: ovpn subnet =3D OpenVPN subnet: WARNING: untranslated string: ovpn subnet is invalid =3D OpenVPN subnet is i= nvalid. @@ -1534,6 +1541,7 @@ WARNING: untranslated string: real address =3D Real Add= ress WARNING: untranslated string: reboot =3D Reboot WARNING: untranslated string: rebooting =3D Rebooting WARNING: untranslated string: rebooting ipfire =3D Rebooting IPFire +WARNING: untranslated string: received =3D Received WARNING: untranslated string: reconnect =3D Reconnect WARNING: untranslated string: reconnection =3D Reconnection WARNING: untranslated string: red =3D Internet @@ -1597,6 +1605,7 @@ WARNING: untranslated string: security =3D Security WARNING: untranslated string: security options =3D Security Options WARNING: untranslated string: select =3D Select WARNING: untranslated string: send cr =3D ISP requires Carriage Return: +WARNING: untranslated string: sent =3D Sent WARNING: untranslated string: september =3D September WARNING: untranslated string: serial =3D Serial WARNING: untranslated string: server restart =3D You are not able to save an= y changes while the OpenVPN server is running. @@ -1774,6 +1783,7 @@ WARNING: untranslated string: tor traffic limit hard = =3D Traffic limit has been re WARNING: untranslated string: tor traffic limit soft =3D Traffic limit almos= t reached. Not accepting any new connections. WARNING: untranslated string: tor traffic read written =3D Total traffic (re= ad/written) WARNING: untranslated string: tor use exit nodes =3D Use only these exit nod= es (one per line) +WARNING: untranslated string: total connection time =3D Total Connection Time WARNING: untranslated string: total hits for log section =3D Total hits for = log section WARNING: untranslated string: traffic on =3D Traffic on WARNING: untranslated string: traffics =3D Utilization-overview diff --git a/doc/language_issues.es b/doc/language_issues.es index ee14a8e08..ef78d6680 100644 --- a/doc/language_issues.es +++ b/doc/language_issues.es @@ -593,7 +593,6 @@ WARNING: translation string unused: to email adr WARNING: translation string unused: to install an update WARNING: translation string unused: to warn email bad WARNING: translation string unused: too long 80 char max -WARNING: translation string unused: total connection time WARNING: translation string unused: traffic back WARNING: translation string unused: traffic calc time WARNING: translation string unused: traffic calc time bad @@ -800,6 +799,7 @@ WARNING: untranslated string: count =3D Count WARNING: untranslated string: countries =3D Countries WARNING: untranslated string: country codes and flags =3D Country Codes and = Flags: WARNING: untranslated string: countrycode =3D Code +WARNING: untranslated string: cpu frequency =3D CPU frequency WARNING: untranslated string: crypto error =3D Cryptographic error WARNING: untranslated string: crypto warning =3D Cryptographic warning WARNING: untranslated string: dangerous =3D Dangerous @@ -818,6 +818,7 @@ WARNING: untranslated string: dhcp dns key name =3D Key N= ame WARNING: untranslated string: dhcp dns update =3D DNS Update WARNING: untranslated string: dhcp dns update algo =3D Algorithm WARNING: untranslated string: dhcp dns update secret =3D Secret +WARNING: untranslated string: disconnected =3D Disconnected WARNING: untranslated string: dl client arch insecure =3D Download insecure = Client Package (zip) WARNING: untranslated string: dnat address =3D Firewall Interface WARNING: untranslated string: dns =3D unknown string @@ -856,6 +857,7 @@ WARNING: untranslated string: drop action1 =3D Default be= haviour of (outgoing) fir WARNING: untranslated string: drop action2 =3D Default behaviour of (input) = firewall WARNING: untranslated string: drop forward =3D Log dropped forward packets WARNING: untranslated string: drop outgoing =3D Log dropped outgoing packets +WARNING: untranslated string: duration =3D Duration WARNING: untranslated string: eight hours =3D 8 Hours WARNING: untranslated string: email config =3D Configuration WARNING: untranslated string: email empty field =3D Empty field @@ -882,6 +884,7 @@ WARNING: untranslated string: encryption =3D Encryption: WARNING: untranslated string: entropy =3D Entropy WARNING: untranslated string: entropy graphs =3D Entropy Graphs WARNING: untranslated string: error =3D Error +WARNING: untranslated string: error the to date has to be later than the fro= m date =3D The to date has to be later than the from date! WARNING: untranslated string: fallout zombieload ridl =3D Fallout/ZombieLoad= /RIDL WARNING: untranslated string: fifteen minutes =3D 15 Minutes WARNING: untranslated string: fireinfo ipfire version =3D IPFire version @@ -1188,6 +1191,7 @@ WARNING: untranslated string: most preferred =3D most p= referred WARNING: untranslated string: mtu =3D MTU WARNING: untranslated string: nameserver =3D Nameserver WARNING: untranslated string: no data =3D unknown string +WARNING: untranslated string: no entries =3D No entries at the moment. WARNING: untranslated string: none =3D none WARNING: untranslated string: not a valid dh key =3D Not a valid Diffie-Hell= man parameters file. Please use a length of 2048, 3072 or 4096 bits and the P= KCS#3 format. WARNING: untranslated string: not affected =3D Not Affected @@ -1213,6 +1217,7 @@ WARNING: untranslated string: outgoing firewall p2p all= ow =3D Using the P2P protoc WARNING: untranslated string: outgoing firewall p2p deny =3D Using the P2P p= rotocol is forbidden WARNING: untranslated string: outgoing overhead in bytes per second =3D Outg= oing Overhead WARNING: untranslated string: ovpn add conf =3D Additional configuration +WARNING: untranslated string: ovpn connection name =3D Connection Name WARNING: untranslated string: ovpn crypt options =3D Cryptographic options WARNING: untranslated string: ovpn dh =3D Diffie-Hellman parameters length WARNING: untranslated string: ovpn dh new key =3D Generate new Diffie-Hellma= n parameters @@ -1229,6 +1234,7 @@ WARNING: untranslated string: ovpn no connections =3D N= o active OpenVPN connection WARNING: untranslated string: ovpn port in root range =3D A port number of 1= 024 or higher is required. WARNING: untranslated string: ovpn routes push =3D Routes (one per line) e.g= . 192.168.10.0/255.255.255.0 192.168.20.0/24 WARNING: untranslated string: ovpn routes push options =3D Route push options +WARNING: untranslated string: ovpn rw connection log =3D OpenVPN Roadwarrior= Connections Log WARNING: untranslated string: ovpn tls auth =3D TLS Channel Protection: WARNING: untranslated string: ovpn warning rfc3280 =3D Your host certificate= is not RFC3280 compliant.
Please update to the latest IPFire version and= generate as soon as possible a new root and host certificate.

All Op= enVPN clients needs then to be renewed!
WARNING: untranslated string: p2p block =3D P2P networks @@ -1253,6 +1259,7 @@ WARNING: untranslated string: ptr =3D PTR WARNING: untranslated string: qos enter bandwidths =3D You will need to ente= r your downstream and upstream bandwidth! WARNING: untranslated string: random number generator daemon =3D Random Numb= er Generator Daemon WARNING: untranslated string: rdns =3D rDNS +WARNING: untranslated string: received =3D Received WARNING: untranslated string: red1 =3D RED WARNING: untranslated string: required field =3D Required field WARNING: untranslated string: route config changed =3D unknown string @@ -1262,6 +1269,7 @@ WARNING: untranslated string: routing table =3D unknown= string WARNING: untranslated string: samba join a domain =3D Join a domain WARNING: untranslated string: samba join domain =3D Join domain WARNING: untranslated string: search =3D Search +WARNING: untranslated string: sent =3D Sent WARNING: untranslated string: server restart =3D You are not able to save an= y changes while the OpenVPN server is running. WARNING: untranslated string: show dh =3D Show Diffie-Hellman parameters WARNING: untranslated string: show tls-auth key =3D Show tls-auth key diff --git a/doc/language_issues.fr b/doc/language_issues.fr index 3df3bf4f9..fd10b171e 100644 --- a/doc/language_issues.fr +++ b/doc/language_issues.fr @@ -7,6 +7,7 @@ WARNING: translation string unused: Captive auth_lic WARNING: translation string unused: Captive auth_vou WARNING: translation string unused: Captive err doublevoucher WARNING: translation string unused: Captive expire +WARNING: translation string unused: Captive genvoucher WARNING: translation string unused: Captive heading terms WARNING: translation string unused: Captive heading voucher WARNING: translation string unused: Captive invalid coupon @@ -14,6 +15,8 @@ WARNING: translation string unused: Captive invalid logosize WARNING: translation string unused: Captive invalid_voucher WARNING: translation string unused: Captive ip WARNING: translation string unused: Captive logo_set +WARNING: translation string unused: Captive logo_upload +WARNING: translation string unused: Captive logo_upload1 WARNING: translation string unused: Captive noexpiretime WARNING: translation string unused: Captive nr WARNING: translation string unused: Captive please enter a coupon code @@ -44,6 +47,7 @@ WARNING: translation string unused: add service WARNING: translation string unused: add subclass WARNING: translation string unused: add xtaccess WARNING: translation string unused: add-route +WARNING: translation string unused: addon WARNING: translation string unused: admin user password has been changed WARNING: translation string unused: administrator user password WARNING: translation string unused: adsl settings @@ -109,7 +113,6 @@ WARNING: translation string unused: alt information WARNING: translation string unused: alt ovpn WARNING: translation string unused: alt vpn WARNING: translation string unused: and -WARNING: translation string unused: ansi t1.483 WARNING: translation string unused: apply WARNING: translation string unused: archive not exist WARNING: translation string unused: attemps @@ -142,8 +145,6 @@ WARNING: translation string unused: backup sets WARNING: translation string unused: backup to floppy WARNING: translation string unused: bad characters in WARNING: translation string unused: behind a proxy -WARNING: translation string unused: bewan adsl pci st -WARNING: translation string unused: bewan adsl usb WARNING: translation string unused: bitrate WARNING: translation string unused: bleeding rules WARNING: translation string unused: blue access use hint @@ -157,6 +158,7 @@ WARNING: translation string unused: cant enable xtaccess WARNING: translation string unused: capsinactive WARNING: translation string unused: ccd err iroute WARNING: translation string unused: ccd err netadr +WARNING: translation string unused: ccd maxclients WARNING: translation string unused: cfg restart WARNING: translation string unused: check for net traffic update WARNING: translation string unused: choose config @@ -359,8 +361,6 @@ WARNING: translation string unused: fwhost orange WARNING: translation string unused: fwhost reread WARNING: translation string unused: fwhost reset WARNING: translation string unused: fwhost wo subnet -WARNING: translation string unused: g.dtm -WARNING: translation string unused: g.lite WARNING: translation string unused: gen static key WARNING: translation string unused: generate WARNING: translation string unused: generate tripwire keys and init @@ -558,6 +558,7 @@ WARNING: translation string unused: ovpn mtu-disc with ms= sfix or fragment WARNING: translation string unused: ovpn mtu-disc yes WARNING: translation string unused: ovpn reneg sec WARNING: translation string unused: ovpn_fastio +WARNING: translation string unused: ovpn_fragment WARNING: translation string unused: ovpn_mssfix WARNING: translation string unused: ovpn_mtudisc WARNING: translation string unused: ovpn_processprio @@ -705,7 +706,6 @@ WARNING: translation string unused: tor accounting period= weekly WARNING: translation string unused: tor bridge enabled WARNING: translation string unused: tor errmsg invalid node id WARNING: translation string unused: tor exit country -WARNING: translation string unused: total connection time WARNING: translation string unused: traffic back WARNING: translation string unused: traffic calc time WARNING: translation string unused: traffic calc time bad @@ -751,7 +751,6 @@ WARNING: translation string unused: updxlrtr unknown WARNING: translation string unused: updxlrtr update information WARNING: translation string unused: updxlrtr update notification WARNING: translation string unused: updxlrtr used by -WARNING: translation string unused: upload fcdsl.o WARNING: translation string unused: upload file WARNING: translation string unused: upload new ruleset WARNING: translation string unused: upload static key @@ -808,11 +807,6 @@ WARNING: translation string unused: zoneconf val ppp ass= ignment error WARNING: translation string unused: zoneconf val vlan amount assignment error WARNING: translation string unused: zoneconf val vlan tag assignment error WARNING: translation string unused: zoneconf val zoneslave amount error -WARNING: untranslated string: Captive ACTIVATE =3D unknown string -WARNING: untranslated string: Captive clients =3D unknown string -WARNING: untranslated string: Scan for Songs =3D unknown string -WARNING: untranslated string: bytes =3D unknown string -WARNING: untranslated string: dns =3D unknown string WARNING: untranslated string: fwhost cust geoipgrp =3D unknown string WARNING: untranslated string: fwhost err hostip =3D unknown string WARNING: untranslated string: guardian block a host =3D unknown string @@ -844,11 +838,7 @@ WARNING: untranslated string: guardian logtarget_file = =3D unknown string WARNING: untranslated string: guardian logtarget_syslog =3D unknown string WARNING: untranslated string: guardian no entries =3D unknown string WARNING: untranslated string: guardian service =3D unknown string -WARNING: untranslated string: info messages =3D unknown string -WARNING: untranslated string: no data =3D unknown string WARNING: untranslated string: pakfire ago =3D ago. WARNING: untranslated string: route config changed =3D unknown string WARNING: untranslated string: routing config added =3D unknown string WARNING: untranslated string: routing config changed =3D unknown string -WARNING: untranslated string: routing table =3D unknown string -WARNING: untranslated string: vpn statistics n2n =3D unknown string diff --git a/doc/language_issues.it b/doc/language_issues.it index 5c65f4641..16ff776b5 100644 --- a/doc/language_issues.it +++ b/doc/language_issues.it @@ -681,7 +681,6 @@ WARNING: translation string unused: tor accounting period= weekly WARNING: translation string unused: tor bridge enabled WARNING: translation string unused: tor errmsg invalid node id WARNING: translation string unused: tor exit country -WARNING: translation string unused: total connection time WARNING: translation string unused: traffic back WARNING: translation string unused: traffic calc time WARNING: translation string unused: traffic calc time bad @@ -833,6 +832,7 @@ WARNING: untranslated string: block =3D Block WARNING: untranslated string: broken =3D Broken WARNING: untranslated string: bytes =3D unknown string WARNING: untranslated string: check all =3D Check all +WARNING: untranslated string: cpu frequency =3D CPU frequency WARNING: untranslated string: crypto error =3D Cryptographic error WARNING: untranslated string: crypto warning =3D Cryptographic warning WARNING: untranslated string: dangerous =3D Dangerous @@ -842,6 +842,7 @@ WARNING: untranslated string: dhcp dns key name =3D Key N= ame WARNING: untranslated string: dhcp dns update =3D DNS Update WARNING: untranslated string: dhcp dns update algo =3D Algorithm WARNING: untranslated string: dhcp dns update secret =3D Secret +WARNING: untranslated string: disconnected =3D Disconnected WARNING: untranslated string: dl client arch insecure =3D Download insecure = Client Package (zip) WARNING: untranslated string: dns =3D unknown string WARNING: untranslated string: dns check servers =3D Check DNS Servers @@ -861,6 +862,7 @@ WARNING: untranslated string: dns use protocol for dns qu= eries =3D Protocol for DN WARNING: untranslated string: dnsforward dnssec disabled =3D DNSSEC Validati= on is disabled WARNING: untranslated string: dnsforward forward_servers =3D Nameservers WARNING: untranslated string: dnssec disabled warning =3D WARNING: DNSSEC ha= s been disabled +WARNING: untranslated string: duration =3D Duration WARNING: untranslated string: eight hours =3D 8 Hours WARNING: untranslated string: email config =3D Configuration WARNING: untranslated string: email empty field =3D Empty field @@ -883,6 +885,7 @@ WARNING: untranslated string: email usemail =3D Activate = Mail Service WARNING: untranslated string: emerging pro rules =3D Emergingthreats.net Pro= Rules WARNING: untranslated string: enable smt =3D Enable Simultaneous Multi-Threa= ding (SMT) WARNING: untranslated string: error =3D Error +WARNING: untranslated string: error the to date has to be later than the fro= m date =3D The to date has to be later than the from date! WARNING: untranslated string: fallout zombieload ridl =3D Fallout/ZombieLoad= /RIDL WARNING: untranslated string: fifteen minutes =3D 15 Minutes WARNING: untranslated string: firewall graph country =3D Firewall-Diagram (C= ountry) @@ -1000,6 +1003,7 @@ WARNING: untranslated string: messages =3D Messages WARNING: untranslated string: mitigated =3D Mitigated WARNING: untranslated string: mtu =3D MTU WARNING: untranslated string: no data =3D unknown string +WARNING: untranslated string: no entries =3D No entries at the moment. WARNING: untranslated string: none =3D none WARNING: untranslated string: not affected =3D Not Affected WARNING: untranslated string: not validating =3D Not validating @@ -1010,8 +1014,10 @@ WARNING: untranslated string: one year =3D One Year WARNING: untranslated string: outgoing compression in bytes per second =3D O= utgoing compression WARNING: untranslated string: outgoing overhead in bytes per second =3D Outg= oing Overhead WARNING: untranslated string: ovpn add conf =3D Additional configuration +WARNING: untranslated string: ovpn connection name =3D Connection Name WARNING: untranslated string: ovpn error dh =3D The Diffie-Hellman parameter= needs to be in minimum 2048 bit!
Please generate or upload a new Diffie-= Hellman parameter, this can be made below in the section "Diffie-Hellman para= meters options".
WARNING: untranslated string: ovpn error md5 =3D You host certificate uses M= D5 for the signature which is not accepted anymore.
Please update to the = latest IPFire version and generate a new root and host certificate.

A= ll OpenVPN clients needs then to be renewed!
+WARNING: untranslated string: ovpn rw connection log =3D OpenVPN Roadwarrior= Connections Log WARNING: untranslated string: ovpn tls auth =3D TLS Channel Protection: WARNING: untranslated string: ovpn warning rfc3280 =3D Your host certificate= is not RFC3280 compliant.
Please update to the latest IPFire version and= generate as soon as possible a new root and host certificate.

All Op= enVPN clients needs then to be renewed!
WARNING: untranslated string: pakfire invalid tree =3D Invalid repository se= lected @@ -1026,6 +1032,7 @@ WARNING: untranslated string: pptp route =3D PPTP Route WARNING: untranslated string: processor vulnerability mitigations =3D Proces= sor Vulnerability Mitigations WARNING: untranslated string: ptr =3D PTR WARNING: untranslated string: rdns =3D rDNS +WARNING: untranslated string: received =3D Received WARNING: untranslated string: required field =3D Required field WARNING: untranslated string: route config changed =3D unknown string WARNING: untranslated string: routing config added =3D unknown string @@ -1034,6 +1041,7 @@ WARNING: untranslated string: routing table =3D unknown= string WARNING: untranslated string: samba join a domain =3D Join a domain WARNING: untranslated string: samba join domain =3D Join domain WARNING: untranslated string: search =3D Search +WARNING: untranslated string: sent =3D Sent WARNING: untranslated string: smt disabled =3D Simultaneous Multi-Threading = (SMT) is disabled WARNING: untranslated string: smt enabled =3D Simultaneous Multi-Threading (= SMT) is enabled WARNING: untranslated string: smt not supported =3D Simultaneous Multi-Threa= ding (SMT) is not supported diff --git a/doc/language_issues.nl b/doc/language_issues.nl index 6a43f3be9..328a8e1f2 100644 --- a/doc/language_issues.nl +++ b/doc/language_issues.nl @@ -673,7 +673,6 @@ WARNING: translation string unused: tor accounting period= weekly WARNING: translation string unused: tor bridge enabled WARNING: translation string unused: tor errmsg invalid node id WARNING: translation string unused: tor exit country -WARNING: translation string unused: total connection time WARNING: translation string unused: traffic back WARNING: translation string unused: traffic calc time WARNING: translation string unused: traffic calc time bad @@ -827,6 +826,7 @@ WARNING: untranslated string: broken =3D Broken WARNING: untranslated string: bytes =3D unknown string WARNING: untranslated string: capabilities =3D Capabilities WARNING: untranslated string: check all =3D Check all +WARNING: untranslated string: cpu frequency =3D CPU frequency WARNING: untranslated string: crypto error =3D Cryptographic error WARNING: untranslated string: crypto warning =3D Cryptographic warning WARNING: untranslated string: dangerous =3D Dangerous @@ -842,6 +842,7 @@ WARNING: untranslated string: dhcp dns key name =3D Key N= ame WARNING: untranslated string: dhcp dns update =3D DNS Update WARNING: untranslated string: dhcp dns update algo =3D Algorithm WARNING: untranslated string: dhcp dns update secret =3D Secret +WARNING: untranslated string: disconnected =3D Disconnected WARNING: untranslated string: dl client arch insecure =3D Download insecure = Client Package (zip) WARNING: untranslated string: dns =3D unknown string WARNING: untranslated string: dns check servers =3D Check DNS Servers @@ -866,6 +867,7 @@ WARNING: untranslated string: dnssec not supported =3D DN= SSEC Not supported WARNING: untranslated string: dnssec validating =3D DNSSEC Validating WARNING: untranslated string: download tls-auth key =3D Download tls-auth key WARNING: untranslated string: drop outgoing =3D Log dropped outgoing packets +WARNING: untranslated string: duration =3D Duration WARNING: untranslated string: eight hours =3D 8 Hours WARNING: untranslated string: email config =3D Configuration WARNING: untranslated string: email empty field =3D Empty field @@ -888,6 +890,7 @@ WARNING: untranslated string: email usemail =3D Activate = Mail Service WARNING: untranslated string: emerging pro rules =3D Emergingthreats.net Pro= Rules WARNING: untranslated string: enable smt =3D Enable Simultaneous Multi-Threa= ding (SMT) WARNING: untranslated string: error =3D Error +WARNING: untranslated string: error the to date has to be later than the fro= m date =3D The to date has to be later than the from date! WARNING: untranslated string: fallout zombieload ridl =3D Fallout/ZombieLoad= /RIDL WARNING: untranslated string: fifteen minutes =3D 15 Minutes WARNING: untranslated string: firewall graph country =3D Firewall-Diagram (C= ountry) @@ -1024,6 +1027,7 @@ WARNING: untranslated string: monitor interface =3D Mon= itor Interface WARNING: untranslated string: mtu =3D MTU WARNING: untranslated string: nameserver =3D Nameserver WARNING: untranslated string: no data =3D unknown string +WARNING: untranslated string: no entries =3D No entries at the moment. WARNING: untranslated string: none =3D none WARNING: untranslated string: not a valid dh key =3D Not a valid Diffie-Hell= man parameters file. Please use a length of 2048, 3072 or 4096 bits and the P= KCS#3 format. WARNING: untranslated string: not affected =3D Not Affected @@ -1035,6 +1039,7 @@ WARNING: untranslated string: one year =3D One Year WARNING: untranslated string: outgoing compression in bytes per second =3D O= utgoing compression WARNING: untranslated string: outgoing overhead in bytes per second =3D Outg= oing Overhead WARNING: untranslated string: ovpn add conf =3D Additional configuration +WARNING: untranslated string: ovpn connection name =3D Connection Name WARNING: untranslated string: ovpn crypt options =3D Cryptographic options WARNING: untranslated string: ovpn dh =3D Diffie-Hellman parameters length WARNING: untranslated string: ovpn dh new key =3D Generate new Diffie-Hellma= n parameters @@ -1044,6 +1049,7 @@ WARNING: untranslated string: ovpn error dh =3D The Dif= fie-Hellman parameter needs WARNING: untranslated string: ovpn error md5 =3D You host certificate uses M= D5 for the signature which is not accepted anymore.
Please update to the = latest IPFire version and generate a new root and host certificate.

A= ll OpenVPN clients needs then to be renewed!
WARNING: untranslated string: ovpn generating the root and host certificates= =3D Generating the root and host certificate can take a long time. WARNING: untranslated string: ovpn ha =3D Hash algorithm +WARNING: untranslated string: ovpn rw connection log =3D OpenVPN Roadwarrior= Connections Log WARNING: untranslated string: ovpn tls auth =3D TLS Channel Protection: WARNING: untranslated string: ovpn warning rfc3280 =3D Your host certificate= is not RFC3280 compliant.
Please update to the latest IPFire version and= generate as soon as possible a new root and host certificate.

All Op= enVPN clients needs then to be renewed!
WARNING: untranslated string: pakfire invalid tree =3D Invalid repository se= lected @@ -1059,6 +1065,7 @@ WARNING: untranslated string: processor vulnerability m= itigations =3D Processor Vu WARNING: untranslated string: ptr =3D PTR WARNING: untranslated string: random number generator daemon =3D Random Numb= er Generator Daemon WARNING: untranslated string: rdns =3D rDNS +WARNING: untranslated string: received =3D Received WARNING: untranslated string: required field =3D Required field WARNING: untranslated string: route config changed =3D unknown string WARNING: untranslated string: routing config added =3D unknown string @@ -1067,6 +1074,7 @@ WARNING: untranslated string: routing table =3D unknown= string WARNING: untranslated string: samba join a domain =3D Join a domain WARNING: untranslated string: samba join domain =3D Join domain WARNING: untranslated string: search =3D Search +WARNING: untranslated string: sent =3D Sent WARNING: untranslated string: show dh =3D Show Diffie-Hellman parameters WARNING: untranslated string: show tls-auth key =3D Show tls-auth key WARNING: untranslated string: smt disabled =3D Simultaneous Multi-Threading = (SMT) is disabled diff --git a/doc/language_issues.pl b/doc/language_issues.pl index ee14a8e08..ef78d6680 100644 --- a/doc/language_issues.pl +++ b/doc/language_issues.pl @@ -593,7 +593,6 @@ WARNING: translation string unused: to email adr WARNING: translation string unused: to install an update WARNING: translation string unused: to warn email bad WARNING: translation string unused: too long 80 char max -WARNING: translation string unused: total connection time WARNING: translation string unused: traffic back WARNING: translation string unused: traffic calc time WARNING: translation string unused: traffic calc time bad @@ -800,6 +799,7 @@ WARNING: untranslated string: count =3D Count WARNING: untranslated string: countries =3D Countries WARNING: untranslated string: country codes and flags =3D Country Codes and = Flags: WARNING: untranslated string: countrycode =3D Code +WARNING: untranslated string: cpu frequency =3D CPU frequency WARNING: untranslated string: crypto error =3D Cryptographic error WARNING: untranslated string: crypto warning =3D Cryptographic warning WARNING: untranslated string: dangerous =3D Dangerous @@ -818,6 +818,7 @@ WARNING: untranslated string: dhcp dns key name =3D Key N= ame WARNING: untranslated string: dhcp dns update =3D DNS Update WARNING: untranslated string: dhcp dns update algo =3D Algorithm WARNING: untranslated string: dhcp dns update secret =3D Secret +WARNING: untranslated string: disconnected =3D Disconnected WARNING: untranslated string: dl client arch insecure =3D Download insecure = Client Package (zip) WARNING: untranslated string: dnat address =3D Firewall Interface WARNING: untranslated string: dns =3D unknown string @@ -856,6 +857,7 @@ WARNING: untranslated string: drop action1 =3D Default be= haviour of (outgoing) fir WARNING: untranslated string: drop action2 =3D Default behaviour of (input) = firewall WARNING: untranslated string: drop forward =3D Log dropped forward packets WARNING: untranslated string: drop outgoing =3D Log dropped outgoing packets +WARNING: untranslated string: duration =3D Duration WARNING: untranslated string: eight hours =3D 8 Hours WARNING: untranslated string: email config =3D Configuration WARNING: untranslated string: email empty field =3D Empty field @@ -882,6 +884,7 @@ WARNING: untranslated string: encryption =3D Encryption: WARNING: untranslated string: entropy =3D Entropy WARNING: untranslated string: entropy graphs =3D Entropy Graphs WARNING: untranslated string: error =3D Error +WARNING: untranslated string: error the to date has to be later than the fro= m date =3D The to date has to be later than the from date! WARNING: untranslated string: fallout zombieload ridl =3D Fallout/ZombieLoad= /RIDL WARNING: untranslated string: fifteen minutes =3D 15 Minutes WARNING: untranslated string: fireinfo ipfire version =3D IPFire version @@ -1188,6 +1191,7 @@ WARNING: untranslated string: most preferred =3D most p= referred WARNING: untranslated string: mtu =3D MTU WARNING: untranslated string: nameserver =3D Nameserver WARNING: untranslated string: no data =3D unknown string +WARNING: untranslated string: no entries =3D No entries at the moment. WARNING: untranslated string: none =3D none WARNING: untranslated string: not a valid dh key =3D Not a valid Diffie-Hell= man parameters file. Please use a length of 2048, 3072 or 4096 bits and the P= KCS#3 format. WARNING: untranslated string: not affected =3D Not Affected @@ -1213,6 +1217,7 @@ WARNING: untranslated string: outgoing firewall p2p all= ow =3D Using the P2P protoc WARNING: untranslated string: outgoing firewall p2p deny =3D Using the P2P p= rotocol is forbidden WARNING: untranslated string: outgoing overhead in bytes per second =3D Outg= oing Overhead WARNING: untranslated string: ovpn add conf =3D Additional configuration +WARNING: untranslated string: ovpn connection name =3D Connection Name WARNING: untranslated string: ovpn crypt options =3D Cryptographic options WARNING: untranslated string: ovpn dh =3D Diffie-Hellman parameters length WARNING: untranslated string: ovpn dh new key =3D Generate new Diffie-Hellma= n parameters @@ -1229,6 +1234,7 @@ WARNING: untranslated string: ovpn no connections =3D N= o active OpenVPN connection WARNING: untranslated string: ovpn port in root range =3D A port number of 1= 024 or higher is required. WARNING: untranslated string: ovpn routes push =3D Routes (one per line) e.g= . 192.168.10.0/255.255.255.0 192.168.20.0/24 WARNING: untranslated string: ovpn routes push options =3D Route push options +WARNING: untranslated string: ovpn rw connection log =3D OpenVPN Roadwarrior= Connections Log WARNING: untranslated string: ovpn tls auth =3D TLS Channel Protection: WARNING: untranslated string: ovpn warning rfc3280 =3D Your host certificate= is not RFC3280 compliant.
Please update to the latest IPFire version and= generate as soon as possible a new root and host certificate.

All Op= enVPN clients needs then to be renewed!
WARNING: untranslated string: p2p block =3D P2P networks @@ -1253,6 +1259,7 @@ WARNING: untranslated string: ptr =3D PTR WARNING: untranslated string: qos enter bandwidths =3D You will need to ente= r your downstream and upstream bandwidth! WARNING: untranslated string: random number generator daemon =3D Random Numb= er Generator Daemon WARNING: untranslated string: rdns =3D rDNS +WARNING: untranslated string: received =3D Received WARNING: untranslated string: red1 =3D RED WARNING: untranslated string: required field =3D Required field WARNING: untranslated string: route config changed =3D unknown string @@ -1262,6 +1269,7 @@ WARNING: untranslated string: routing table =3D unknown= string WARNING: untranslated string: samba join a domain =3D Join a domain WARNING: untranslated string: samba join domain =3D Join domain WARNING: untranslated string: search =3D Search +WARNING: untranslated string: sent =3D Sent WARNING: untranslated string: server restart =3D You are not able to save an= y changes while the OpenVPN server is running. WARNING: untranslated string: show dh =3D Show Diffie-Hellman parameters WARNING: untranslated string: show tls-auth key =3D Show tls-auth key diff --git a/doc/language_issues.ru b/doc/language_issues.ru index f2722b941..0a579d406 100644 --- a/doc/language_issues.ru +++ b/doc/language_issues.ru @@ -596,7 +596,6 @@ WARNING: translation string unused: to email adr WARNING: translation string unused: to install an update WARNING: translation string unused: to warn email bad WARNING: translation string unused: too long 80 char max -WARNING: translation string unused: total connection time WARNING: translation string unused: traffic back WARNING: translation string unused: traffic calc time WARNING: translation string unused: traffic calc time bad @@ -803,6 +802,7 @@ WARNING: untranslated string: count =3D Count WARNING: untranslated string: countries =3D Countries WARNING: untranslated string: country codes and flags =3D Country Codes and = Flags: WARNING: untranslated string: countrycode =3D Code +WARNING: untranslated string: cpu frequency =3D CPU frequency WARNING: untranslated string: crypto error =3D Cryptographic error WARNING: untranslated string: crypto warning =3D Cryptographic warning WARNING: untranslated string: dangerous =3D Dangerous @@ -821,6 +821,7 @@ WARNING: untranslated string: dhcp dns key name =3D Key N= ame WARNING: untranslated string: dhcp dns update =3D DNS Update WARNING: untranslated string: dhcp dns update algo =3D Algorithm WARNING: untranslated string: dhcp dns update secret =3D Secret +WARNING: untranslated string: disconnected =3D Disconnected WARNING: untranslated string: disk access per =3D Disk Access per WARNING: untranslated string: dl client arch insecure =3D Download insecure = Client Package (zip) WARNING: untranslated string: dnat address =3D Firewall Interface @@ -860,6 +861,7 @@ WARNING: untranslated string: drop action1 =3D Default be= haviour of (outgoing) fir WARNING: untranslated string: drop action2 =3D Default behaviour of (input) = firewall WARNING: untranslated string: drop forward =3D Log dropped forward packets WARNING: untranslated string: drop outgoing =3D Log dropped outgoing packets +WARNING: untranslated string: duration =3D Duration WARNING: untranslated string: eight hours =3D 8 Hours WARNING: untranslated string: email config =3D Configuration WARNING: untranslated string: email empty field =3D Empty field @@ -886,6 +888,7 @@ WARNING: untranslated string: encryption =3D Encryption: WARNING: untranslated string: entropy =3D Entropy WARNING: untranslated string: entropy graphs =3D Entropy Graphs WARNING: untranslated string: error =3D Error +WARNING: untranslated string: error the to date has to be later than the fro= m date =3D The to date has to be later than the from date! WARNING: untranslated string: extrahd because there is already a device moun= ted =3D , because there is already a device mounted WARNING: untranslated string: extrahd cant umount =3D Can't umount WARNING: untranslated string: extrahd install or load driver =3D If your dev= ice isn't listed here, you need to install or load the driver.
If you ca= n see your device but no partitions you have to create them first. @@ -1190,6 +1193,7 @@ WARNING: untranslated string: most preferred =3D most p= referred WARNING: untranslated string: mtu =3D MTU WARNING: untranslated string: nameserver =3D Nameserver WARNING: untranslated string: no data =3D unknown string +WARNING: untranslated string: no entries =3D No entries at the moment. WARNING: untranslated string: none =3D none WARNING: untranslated string: not a valid dh key =3D Not a valid Diffie-Hell= man parameters file. Please use a length of 2048, 3072 or 4096 bits and the P= KCS#3 format. WARNING: untranslated string: not affected =3D Not Affected @@ -1214,6 +1218,7 @@ WARNING: untranslated string: outgoing firewall access = =3D Outgoing Firewall Acces WARNING: untranslated string: outgoing overhead in bytes per second =3D Outg= oing Overhead WARNING: untranslated string: outgoing traffic in bytes per second =3D Outgo= ing Traffic WARNING: untranslated string: ovpn add conf =3D Additional configuration +WARNING: untranslated string: ovpn connection name =3D Connection Name WARNING: untranslated string: ovpn crypt options =3D Cryptographic options WARNING: untranslated string: ovpn dh =3D Diffie-Hellman parameters length WARNING: untranslated string: ovpn dh new key =3D Generate new Diffie-Hellma= n parameters @@ -1226,6 +1231,7 @@ WARNING: untranslated string: ovpn ha =3D Hash algorithm WARNING: untranslated string: ovpn mgmt in root range =3D A port number of 1= 024 or higher is required. WARNING: untranslated string: ovpn no connections =3D No active OpenVPN conn= ections WARNING: untranslated string: ovpn port in root range =3D A port number of 1= 024 or higher is required. +WARNING: untranslated string: ovpn rw connection log =3D OpenVPN Roadwarrior= Connections Log WARNING: untranslated string: ovpn tls auth =3D TLS Channel Protection: WARNING: untranslated string: ovpn warning rfc3280 =3D Your host certificate= is not RFC3280 compliant.
Please update to the latest IPFire version and= generate as soon as possible a new root and host certificate.

All Op= enVPN clients needs then to be renewed!
WARNING: untranslated string: p2p block =3D P2P networks @@ -1249,6 +1255,7 @@ WARNING: untranslated string: ptr =3D PTR WARNING: untranslated string: qos enter bandwidths =3D You will need to ente= r your downstream and upstream bandwidth! WARNING: untranslated string: random number generator daemon =3D Random Numb= er Generator Daemon WARNING: untranslated string: rdns =3D rDNS +WARNING: untranslated string: received =3D Received WARNING: untranslated string: red1 =3D RED WARNING: untranslated string: required field =3D Required field WARNING: untranslated string: route config changed =3D unknown string @@ -1258,6 +1265,7 @@ WARNING: untranslated string: routing table =3D unknown= string WARNING: untranslated string: samba join a domain =3D Join a domain WARNING: untranslated string: samba join domain =3D Join domain WARNING: untranslated string: search =3D Search +WARNING: untranslated string: sent =3D Sent WARNING: untranslated string: server restart =3D You are not able to save an= y changes while the OpenVPN server is running. WARNING: untranslated string: show dh =3D Show Diffie-Hellman parameters WARNING: untranslated string: show tls-auth key =3D Show tls-auth key diff --git a/doc/language_issues.tr b/doc/language_issues.tr index a8247c5aa..d04c99305 100644 --- a/doc/language_issues.tr +++ b/doc/language_issues.tr @@ -709,7 +709,6 @@ WARNING: translation string unused: tor accounting period= weekly WARNING: translation string unused: tor bridge enabled WARNING: translation string unused: tor errmsg invalid node id WARNING: translation string unused: tor exit country -WARNING: translation string unused: total connection time WARNING: translation string unused: traffic back WARNING: translation string unused: traffic calc time WARNING: translation string unused: traffic calc time bad @@ -816,10 +815,12 @@ WARNING: untranslated string: advproxy wpad title =3D W= eb Proxy Auto-Discovery Pro WARNING: untranslated string: advproxy wpad view pac =3D Open PAC File WARNING: untranslated string: broken =3D Broken WARNING: untranslated string: bytes =3D unknown string +WARNING: untranslated string: cpu frequency =3D CPU frequency WARNING: untranslated string: crypto error =3D Cryptographic error WARNING: untranslated string: crypto warning =3D Cryptographic warning WARNING: untranslated string: dangerous =3D Dangerous WARNING: untranslated string: default IP address =3D Default IP Address +WARNING: untranslated string: disconnected =3D Disconnected WARNING: untranslated string: dns =3D unknown string WARNING: untranslated string: dns check servers =3D Check DNS Servers WARNING: untranslated string: dns configuration =3D DNS Configuration @@ -837,11 +838,13 @@ WARNING: untranslated string: dns use isp assigned name= servers =3D Use ISP-assigne WARNING: untranslated string: dns use protocol for dns queries =3D Protocol = for DNS queries WARNING: untranslated string: dnsforward dnssec disabled =3D DNSSEC Validati= on is disabled WARNING: untranslated string: dnsforward forward_servers =3D Nameservers +WARNING: untranslated string: duration =3D Duration WARNING: untranslated string: email tls explicit =3D explicit (STARTTLS) WARNING: untranslated string: email tls implicit =3D implicit (TLS) WARNING: untranslated string: emerging pro rules =3D Emergingthreats.net Pro= Rules WARNING: untranslated string: enable smt =3D Enable Simultaneous Multi-Threa= ding (SMT) WARNING: untranslated string: error =3D Error +WARNING: untranslated string: error the to date has to be later than the fro= m date =3D The to date has to be later than the from date! WARNING: untranslated string: fallout zombieload ridl =3D Fallout/ZombieLoad= /RIDL WARNING: untranslated string: force enable =3D Forced WARNING: untranslated string: foreshadow =3D Foreshadow @@ -918,10 +921,13 @@ WARNING: untranslated string: meltdown =3D Meltdown WARNING: untranslated string: mitigated =3D Mitigated WARNING: untranslated string: mtu =3D MTU WARNING: untranslated string: no data =3D unknown string +WARNING: untranslated string: no entries =3D No entries at the moment. WARNING: untranslated string: not affected =3D Not Affected WARNING: untranslated string: not validating =3D Not validating +WARNING: untranslated string: ovpn connection name =3D Connection Name WARNING: untranslated string: ovpn error dh =3D The Diffie-Hellman parameter= needs to be in minimum 2048 bit!
Please generate or upload a new Diffie-= Hellman parameter, this can be made below in the section "Diffie-Hellman para= meters options".
WARNING: untranslated string: ovpn error md5 =3D You host certificate uses M= D5 for the signature which is not accepted anymore.
Please update to the = latest IPFire version and generate a new root and host certificate.

A= ll OpenVPN clients needs then to be renewed!
+WARNING: untranslated string: ovpn rw connection log =3D OpenVPN Roadwarrior= Connections Log WARNING: untranslated string: ovpn tls auth =3D TLS Channel Protection: WARNING: untranslated string: ovpn warning rfc3280 =3D Your host certificate= is not RFC3280 compliant.
Please update to the latest IPFire version and= generate as soon as possible a new root and host certificate.

All Op= enVPN clients needs then to be renewed!
WARNING: untranslated string: pakfire invalid tree =3D Invalid repository se= lected @@ -932,10 +938,12 @@ WARNING: untranslated string: pakfire tree unstable =3D= Unstable WARNING: untranslated string: please reboot to apply your changes =3D Please= reboot to apply your changes WARNING: untranslated string: processor vulnerability mitigations =3D Proces= sor Vulnerability Mitigations WARNING: untranslated string: ptr =3D PTR +WARNING: untranslated string: received =3D Received WARNING: untranslated string: route config changed =3D unknown string WARNING: untranslated string: routing config added =3D unknown string WARNING: untranslated string: routing config changed =3D unknown string WARNING: untranslated string: routing table =3D unknown string +WARNING: untranslated string: sent =3D Sent WARNING: untranslated string: smt disabled =3D Simultaneous Multi-Threading = (SMT) is disabled WARNING: untranslated string: smt enabled =3D Simultaneous Multi-Threading (= SMT) is enabled WARNING: untranslated string: smt not supported =3D Simultaneous Multi-Threa= ding (SMT) is not supported diff --git a/doc/language_missings b/doc/language_missings index 1588a9140..bfc3ba41f 100644 --- a/doc/language_missings +++ b/doc/language_missings @@ -32,9 +32,11 @@ < dh name is invalid < dns could not add server < done +< error the to date has to be later than the from date < g.dtm < g.lite < insert removable device +< no entries < notes < okay < quick control @@ -189,6 +191,7 @@ < countries < countrycode < country codes and flags +< cpu frequency < crypto error < cryptographic settings < crypto warning @@ -212,6 +215,7 @@ < dh name is invalid < dh parameter < Disabled +< disconnected < dl client arch insecure < dnat address < dns check servers @@ -253,6 +257,7 @@ < drop action2 < drop forward < drop outgoing +< duration < eight hours < email config < email empty field @@ -283,6 +288,7 @@ < entropy < entropy graphs < error +< error the to date has to be later than the from date < fallout zombieload ridl < fifteen minutes < fireinfo ipfire version @@ -606,6 +612,7 @@ < MTU settings < nameserver < never +< no entries < no hardware random number generator < none < not affected @@ -649,6 +656,7 @@ < outgoing firewall view group < outgoing overhead in bytes per second < ovpn add conf +< ovpn connection name < ovpn crypt options < ovpn dh < ovpn dh new key @@ -674,6 +682,7 @@ < ovpn reneg sec < ovpn routes push < ovpn routes push options +< ovpn rw connection log < ovpn tls auth < ovpn warning rfc3280 < p2p block @@ -697,12 +706,14 @@ < qos enter bandwidths < random number generator daemon < rdns +< received < red1 < required field < runmode < samba join a domain < samba join domain < search +< sent < server restart < Set time on boot < show dh @@ -904,6 +915,12 @@ ############################################################################ # Checking cgi-bin translations for language: fr # ############################################################################ +< ansi t1.483 +< bewan adsl pci st +< bewan adsl usb +< g.dtm +< g.lite +< upload fcdsl.o ############################################################################ # Checking cgi-bin translations for language: it # ############################################################################ @@ -981,6 +998,7 @@ < Captive WiFi coupon < Captive wrong ext < check all +< cpu frequency < crypto error < cryptographic settings < crypto warning @@ -993,6 +1011,7 @@ < dhcp dns update algo < dhcp dns update secret < Disabled +< disconnected < dl client arch insecure < dns check servers < dns configuration @@ -1012,6 +1031,7 @@ < dns tls hostname < dns use isp assigned nameservers < dns use protocol for dns queries +< duration < eight hours < email config < email empty field @@ -1038,6 +1058,7 @@ < emerging pro rules < enable smt < error +< error the to date has to be later than the from date < fallout zombieload ridl < fifteen minutes < firewall graph country @@ -1128,6 +1149,7 @@ < mitigated < mtu < MTU settings +< no entries < none < not affected < not validating @@ -1140,8 +1162,10 @@ < outgoing compression in bytes per second < outgoing overhead in bytes per second < ovpn add conf +< ovpn connection name < ovpn error dh < ovpn error md5 +< ovpn rw connection log < ovpn tls auth < ovpn warning rfc3280 < pakfire invalid tree @@ -1156,11 +1180,13 @@ < processor vulnerability mitigations < ptr < rdns +< received < required field < runmode < samba join a domain < samba join domain < search +< sent < smt disabled < smt enabled < smt not supported @@ -1326,6 +1352,7 @@ < Captive WiFi coupon < Captive wrong ext < check all +< cpu frequency < crypto error < cryptographic settings < crypto warning @@ -1345,6 +1372,7 @@ < dh name is invalid < dh parameter < Disabled +< disconnected < dl client arch insecure < dns check servers < dns configuration @@ -1372,6 +1400,7 @@ < download dh parameter < download tls-auth key < drop outgoing +< duration < eight hours < email config < email empty field @@ -1398,6 +1427,7 @@ < emerging pro rules < enable smt < error +< error the to date has to be later than the from date < fallout zombieload ridl < fifteen minutes < firewall graph country @@ -1508,6 +1538,7 @@ < MTU settings < nameserver < never +< no entries < none < not affected < not a valid dh key @@ -1521,6 +1552,7 @@ < outgoing compression in bytes per second < outgoing overhead in bytes per second < ovpn add conf +< ovpn connection name < ovpn crypt options < ovpn dh < ovpn dh new key @@ -1532,6 +1564,7 @@ < ovpn generating the root and host certificates < ovpn ha < ovpn reneg sec +< ovpn rw connection log < ovpn tls auth < ovpn warning rfc3280 < pakfire invalid tree @@ -1547,11 +1580,13 @@ < ptr < random number generator daemon < rdns +< received < required field < runmode < samba join a domain < samba join domain < search +< sent < show dh < show tls-auth key < smt disabled @@ -1786,6 +1821,7 @@ < countries < countrycode < country codes and flags +< cpu frequency < crypto error < cryptographic settings < crypto warning @@ -1809,6 +1845,7 @@ < dh name is invalid < dh parameter < Disabled +< disconnected < dl client arch insecure < dnat address < dns check servers @@ -1850,6 +1887,7 @@ < drop action2 < drop forward < drop outgoing +< duration < eight hours < email config < email empty field @@ -1880,6 +1918,7 @@ < entropy < entropy graphs < error +< error the to date has to be later than the from date < extrahd because there is already a device mounted < extrahd cant umount < extrahd install or load driver @@ -2205,6 +2244,7 @@ < MTU settings < nameserver < never +< no entries < no hardware random number generator < none < not affected @@ -2234,6 +2274,7 @@ < outgoing firewall access < outgoing overhead in bytes per second < ovpn add conf +< ovpn connection name < ovpn crypt options < ovpn dh < ovpn dh new key @@ -2259,6 +2300,7 @@ < ovpn reneg sec < ovpn routes push < ovpn routes push options +< ovpn rw connection log < ovpn tls auth < ovpn warning rfc3280 < p2p block @@ -2282,12 +2324,14 @@ < qos enter bandwidths < random number generator daemon < rdns +< received < red1 < required field < runmode < samba join a domain < samba join domain < search +< sent < server restart < show dh < show tls-auth key @@ -2626,6 +2670,7 @@ < countries < countrycode < country codes and flags +< cpu frequency < crypto error < cryptographic settings < crypto warning @@ -2650,6 +2695,7 @@ < dh name is invalid < dh parameter < Disabled +< disconnected < disk access per < dl client arch insecure < dnat address @@ -2692,6 +2738,7 @@ < drop action2 < drop forward < drop outgoing +< duration < Edit an existing route < eight hours < email config @@ -2723,6 +2770,7 @@ < entropy < entropy graphs < error +< error the to date has to be later than the from date < extrahd because there is already a device mounted < extrahd cant umount < extrahd install or load driver @@ -3052,6 +3100,7 @@ < MTU settings < nameserver < never +< no entries < no hardware random number generator < none < not affected @@ -3082,6 +3131,7 @@ < outgoing overhead in bytes per second < outgoing traffic in bytes per second < ovpn add conf +< ovpn connection name < ovpn crypt options < ovpn dh < ovpn dh new key @@ -3103,6 +3153,7 @@ < ovpn no connections < ovpn port in root range < ovpn reneg sec +< ovpn rw connection log < ovpn tls auth < ovpn warning rfc3280 < p2p block @@ -3126,12 +3177,14 @@ < qos enter bandwidths < random number generator daemon < rdns +< received < red1 < required field < runmode < samba join a domain < samba join domain < search +< sent < server restart < show dh < show tls-auth key @@ -3343,6 +3396,7 @@ < advproxy wpad view pac < broken < Captive delete logo +< cpu frequency < crypto error < cryptographic settings < crypto warning @@ -3350,6 +3404,7 @@ < dangerous < default IP address < Disabled +< disconnected < dns check servers < dns configuration < dns could not add server @@ -3367,11 +3422,13 @@ < dns tls hostname < dns use isp assigned nameservers < dns use protocol for dns queries +< duration < email tls explicit < email tls implicit < emerging pro rules < enable smt < error +< error the to date has to be later than the from date < fallout zombieload ridl < force enable < foreshadow @@ -3416,11 +3473,14 @@ < meltdown < mitigated < mtu +< no entries < not affected < not validating < okay +< ovpn connection name < ovpn error dh < ovpn error md5 +< ovpn rw connection log < ovpn tls auth < ovpn warning rfc3280 < pakfire invalid tree @@ -3431,7 +3491,9 @@ < please reboot to apply your changes < processor vulnerability mitigations < ptr +< received < runmode +< sent < smt disabled < smt enabled < smt not supported diff --git a/langs/de/cgi-bin/de.pl b/langs/de/cgi-bin/de.pl index 05b0973a0..216d49d7c 100644 --- a/langs/de/cgi-bin/de.pl +++ b/langs/de/cgi-bin/de.pl @@ -1897,8 +1897,8 @@ 'ovpn' =3D> 'OpenVPN', 'ovpn add conf' =3D> 'Erweiterte Konfiguration', 'ovpn con stat' =3D> 'OpenVPN Verbindungs-Statistik', -'ovpn connection name' =3D> 'Verbindungs-Name', 'ovpn config' =3D> 'OVPN-Konfiguration', +'ovpn connection name' =3D> 'Verbindungs-Name', 'ovpn crypt options' =3D> 'Kryptografieoptionen', 'ovpn device' =3D> 'OpenVPN-Ger=C3=A4t', 'ovpn dh' =3D> 'Diffie-Hellman-Parameter-L=C3=A4nge', @@ -2085,7 +2085,7 @@ 'reboot sure' =3D> 'Sind Sie sicher, dass Sie neustarten wollen?', 'rebooting' =3D> 'Starte neu ...', 'rebooting ipfire' =3D> 'Starte IPFire neu', -'recieved' =3D> 'Empfangen', +'received' =3D> 'Empfangen', 'reconnect' =3D> 'Neu Verbinden', 'reconnection' =3D> 'Wiederverbindung', 'red' =3D> 'Internet', diff --git a/langs/en/cgi-bin/en.pl b/langs/en/cgi-bin/en.pl index cb3df3a7e..ff08bce0c 100644 --- a/langs/en/cgi-bin/en.pl +++ b/langs/en/cgi-bin/en.pl @@ -1806,8 +1806,8 @@ 'no alcatelusb firmware' =3D> 'No Alcatel USB firmware. Please upload.', 'no cfg upload' =3D> 'No data was uploaded', 'no dhcp lease' =3D> 'No DHCP lease has been acquired', -'no entries' =3D> 'No entries at the moment.', 'no eciadsl synch.bin file' =3D> 'No ECI ADSL synch.bin file. Please upload.= ', +'no entries' =3D> 'No entries at the moment.', 'no filter pass' =3D> 'Enter the standard class for non-filtered packets.', 'no fritzdsl driver' =3D> 'No Fritz!DSL driver. Please upload.', 'no hardware random number generator' =3D> 'This system has no source for en= tropy.', @@ -1923,8 +1923,8 @@ 'ovpn' =3D> 'OpenVPN', 'ovpn add conf' =3D> 'Additional configuration', 'ovpn con stat' =3D> 'OpenVPN Connection Statistics', -'ovpn connection name' =3D> 'Connection Name', 'ovpn config' =3D> 'OVPN-Config', +'ovpn connection name' =3D> 'Connection Name', 'ovpn crypt options' =3D> 'Cryptographic options', 'ovpn device' =3D> 'OpenVPN device:', 'ovpn dh' =3D> 'Diffie-Hellman parameters length', diff --git a/langs/fr/cgi-bin/fr.pl b/langs/fr/cgi-bin/fr.pl index 509dc0053..dc7b00fd0 100644 --- a/langs/fr/cgi-bin/fr.pl +++ b/langs/fr/cgi-bin/fr.pl @@ -12,6 +12,7 @@ 'Captive 1day' =3D> '1 jour', 'Captive 1month' =3D> '1 mois', 'Captive 1week' =3D> '1 semaine', +'Captive ACTIVATE' =3D> 'ACTIVER', 'Captive GAIN ACCESS' =3D> 'ACCEDER', 'Captive WiFi coupon' =3D> 'Coupon wifi', 'Captive activate' =3D> 'Activation', @@ -24,6 +25,7 @@ 'Captive brand color' =3D> 'Couleur de fond personnalis=C3=A9e', 'Captive branding' =3D> 'Personnalisation', 'Captive client session expiry time' =3D> 'D=C3=A9lai d\'expiration de la se= ssion', +'Captive clients' =3D> 'Clients', 'Captive config' =3D> 'Param=C3=A8tres', 'Captive coupon' =3D> 'Coupon', 'Captive delete logo' =3D> 'Supprimer le logo', @@ -33,6 +35,7 @@ 'Captive export coupons' =3D> 'Export de coupons', 'Captive generate coupons' =3D> 'Cr=C3=A9ation de coupons', 'Captive generated coupon no' =3D> 'Nb de coupons cr=C3=A9=C3=A9s', +'Captive genvoucher' =3D> 'G=C3=A9n=C3=A9rer un coupon', 'Captive heading terms' =3D> 'Termes & conditions', 'Captive heading voucher' =3D> 'Coupon ou code d\acc=C3=A8s', 'Captive invalid coupon' =3D> 'Vous avez saisi un code de coupon invalide. V= euillez r=C3=A9essayer.', @@ -42,6 +45,8 @@ 'Captive issued coupons' =3D> 'Coupons =C3=A9mis', 'Captive logo uploaded' =3D> 'Logo t=C3=A9l=C3=A9charg=C3=A9', 'Captive logo_set' =3D> 'Logo actuel', +'Captive logo_upload' =3D> 'T=C3=A9l=C3=A9charger le logo', +'Captive logo_upload1' =3D> '(PNG, min. 1280x400, max. 1920x800)', 'Captive mac' =3D> 'Adresse MAC', 'Captive noexpiretime' =3D> 'Aucune plage de temps de connexion valide donn= =C3=A9e', 'Captive nolimit' =3D> 'illimit=C3=A9', @@ -97,9 +102,9 @@ 'MB written' =3D> 'Mo =C3=A9crits', 'MTU' =3D> 'Taille du MTU :', 'MTU settings' =3D> 'Param=C3=A8tres MTU :', -'Number of Countries for the pie chart' =3D> 'Nombre de pays pour le graphiq= ue circulaire ', -'Number of IPs for the pie chart' =3D> 'Nombre d\'IPs pour le graphique circ= ulaire ', -'Number of Ports for the pie chart' =3D> 'Nombre de ports pour le graphique = circulaire ', +'Number of Countries for the pie chart' =3D> 'Nombre de pays du graphique ci= rculaire ', +'Number of IPs for the pie chart' =3D> 'Nombre d\'IPs du graphique circulair= e ', +'Number of Ports for the pie chart' =3D> 'Nombre de ports du graphique circu= laire ', 'OVPN' =3D> 'OpenVPN', 'OpenVPN' =3D> 'OpenVPN', 'Pages' =3D> 'Pages', @@ -111,6 +116,7 @@ 'Remote VPN IP' =3D> 'Sous-r=C3=A9seau VPN (ex. 10.0.10.0/255.255.255.0) :', 'Resolv' =3D> 'R=C3=A9soudre/r=C3=A9essayer :', 'Scan for Files' =3D> 'Recherche de fichiers', +'Scan for Songs' =3D> 'Recherche de chansons', 'Scan from Directory' =3D> 'Recherche depuis le r=C3=A9pertoire', 'Set time on boot' =3D> 'Forcer le r=C3=A9glage de l\'heure syst=C3=A8me au = d=C3=A9marrage', 'Subclass' =3D> 'Sous-classe', @@ -154,6 +160,7 @@ 'add xtaccess' =3D> 'Ajouter un acc=C3=A8s externe', 'add-route' =3D> 'Ajouter route suppl=C3=A9mentaire', 'added from dhcp lease list' =3D> 'Ajouter =C3=A0 partir de la liste de baux= DHCP', +'addon' =3D> 'Module compl=C3=A9mentaire', 'addons' =3D> 'Modules compl=C3=A9mentaires', 'admin user password has been changed' =3D> 'Le mot de passe admin a =C3=A9t= =C3=A9 chang=C3=A9.', 'admin users' =3D> 'Utilisateur avec droits super-utilisateur', @@ -163,10 +170,10 @@ 'adsl settings' =3D> 'Param=C3=A8tres ADSL', 'advanced' =3D> 'Avanc=C3=A9', 'advanced server' =3D> 'Options avanc=C3=A9es du serveur', -'advproxy AUTH always required' =3D> 'Exiger l\'authentification pour un acc= =C3=A8s sans restriction des adresses sources', -'advproxy AUTH auth cache TTL' =3D> 'Cache d\'authentification TTL (en minut= es)', +'advproxy AUTH always required' =3D> 'Exiger l\'authentification pour un acc= =C3=A8s sans restriction des adresses sources ', +'advproxy AUTH auth cache TTL' =3D> 'Cache d\'authentification TTL (en minut= es) ', 'advproxy AUTH global settings' =3D> 'Param=C3=A8tres d\'authentification gl= obal', -'advproxy AUTH limit of IP addresses' =3D> 'Limite d\'adresses IP par utilis= ateur', +'advproxy AUTH limit of IP addresses' =3D> 'Limite d\'adresses IP par utilis= ateur ', 'advproxy AUTH method' =3D> 'M=C3=A9thode d\'authentification', 'advproxy AUTH method ident' =3D> 'identd', 'advproxy AUTH method ldap' =3D> 'LDAP', @@ -175,50 +182,50 @@ 'advproxy AUTH method ntlm' =3D> 'Domaine Windows NT4', 'advproxy AUTH method ntlm auth' =3D> 'Active Directory Windows', 'advproxy AUTH method radius' =3D> 'RADIUS', -'advproxy AUTH no auth' =3D> 'Domaines sans authentification (un par ligne)', -'advproxy AUTH number of auth processes' =3D> 'Nombre de processus d\'authen= tification', -'advproxy AUTH realm' =3D> 'Invite du domaine d\'authentification', +'advproxy AUTH no auth' =3D> 'Domaines sans authentification (un par ligne) = ', +'advproxy AUTH number of auth processes' =3D> 'Nombre de processus d\'authen= tification ', +'advproxy AUTH realm' =3D> 'Invite du domaine d\'authentification ', 'advproxy AUTH user IP cache TTL' =3D> 'Cache utilisateur/IP TTL (en minutes= )', 'advproxy IDENT authorized users' =3D> 'Utilisateurs autoris=C3=A9s (un par = ligne)', -'advproxy IDENT aware hosts' =3D> 'Identification des h=C3=B4tes courants (u= n par ligne)', +'advproxy IDENT aware hosts' =3D> 'Identification des h=C3=B4tes courants (u= n par ligne) ', 'advproxy IDENT identd settings' =3D> 'Param=C3=A8tres communs identd', -'advproxy IDENT required' =3D> 'Exiger l\'authentification identd', -'advproxy IDENT timeout' =3D> 'Limite de temps d\'identification (en seconde= s)', +'advproxy IDENT required' =3D> 'Exiger l\'authentification identd ', +'advproxy IDENT timeout' =3D> 'Limite de temps d\'identification (en seconde= s) ', 'advproxy IDENT unauthorized users' =3D> 'Utilisateurs non autoris=C3=A9s (u= n par ligne)', -'advproxy IDENT use negative access list' =3D> 'Utilisation interdite du con= tr=C3=B4le d\'acc=C3=A8s', -'advproxy IDENT use positive access list' =3D> 'Utilisation autoris=C3=A9e d= u contr=C3=B4le d\'acc=C3=A8s', +'advproxy IDENT use negative access list' =3D> 'Utilisation interdite du con= tr=C3=B4le d\'acc=C3=A8s ', +'advproxy IDENT use positive access list' =3D> 'Utilisation autoris=C3=A9e d= u contr=C3=B4le d\'acc=C3=A8s ', 'advproxy IDENT user based access restrictions' =3D> 'D=C3=A9finition d\'uti= lisateurs en fonction des restrictions d\'acc=C3=A8s', 'advproxy LDAP ADS' =3D> 'Active Directory', 'advproxy LDAP NDS' =3D> 'Novell eDirectory', 'advproxy LDAP V2' =3D> 'LDAP version 2', 'advproxy LDAP V3' =3D> 'LDAP version 3', 'advproxy LDAP auth' =3D> 'Authentification LDAP', -'advproxy LDAP basedn' =3D> 'Nom absolu LDAP', -'advproxy LDAP binddn password' =3D> 'Mot de passe Bind DN', +'advproxy LDAP basedn' =3D> 'Nom absolu LDAP ', +'advproxy LDAP binddn password' =3D> 'Mot de passe Bind DN ', 'advproxy LDAP binddn settings' =3D> 'Param=C3=A8tres lien nom utilisateur e= t mot de passe LDAP', -'advproxy LDAP binddn username' =3D> 'Nom utilisateur Bind DN', +'advproxy LDAP binddn username' =3D> 'Nom utilisateur Bind DN ', 'advproxy LDAP common settings' =3D> 'Param=C3=A8tres communs LDAP', 'advproxy LDAP group access control' =3D> 'Contr=C3=B4le d\acc=C3=A8s bas=C3= =A9 sur le groupe', -'advproxy LDAP group required' =3D> 'Groupe requis', -'advproxy LDAP port' =3D> 'Port', -'advproxy LDAP server' =3D> 'Serveur LDAP', -'advproxy LDAP type' =3D> 'Type LDAP', +'advproxy LDAP group required' =3D> 'Groupe requis ', +'advproxy LDAP port' =3D> 'Port ', +'advproxy LDAP server' =3D> 'Serveur LDAP ', +'advproxy LDAP type' =3D> 'Type LDAP ', 'advproxy MIME block types' =3D> ' Bloquer ces types MIME (un par ligne)', 'advproxy MIME filter' =3D> 'Filtre de type MIME', 'advproxy NCSA auth' =3D> 'Authentification des utilisateurs locaux', 'advproxy NCSA create user' =3D> 'Cr=C3=A9er utilisateur', -'advproxy NCSA group' =3D> 'Groupe', +'advproxy NCSA group' =3D> 'Groupe ', 'advproxy NCSA group membership' =3D> 'Appartenance au groupe', -'advproxy NCSA grp disabled' =3D> 'D=C3=A9sactiver', +'advproxy NCSA grp disabled' =3D> 'D=C3=A9sactiv=C3=A9', 'advproxy NCSA grp extended' =3D> 'Etendu', 'advproxy NCSA grp standard' =3D> 'Standard', -'advproxy NCSA min password length' =3D> 'Longueur minimale du mot de passe', +'advproxy NCSA min password length' =3D> 'Longueur minimale du mot de passe = ', 'advproxy NCSA no accounts' =3D> 'Aucun compte utilisateur disponible', -'advproxy NCSA password' =3D> 'Mot de passe', +'advproxy NCSA password' =3D> 'Mot de passe ', 'advproxy NCSA password confirm' =3D> 'Mot de passe (confirmation) ', 'advproxy NCSA redirector bypass' =3D> 'Redirection par contournement pour l= es membres du groupe', 'advproxy NCSA update user' =3D> 'Mise =C3=A0 jour utilisateur', -'advproxy NCSA user accounts' =3D> 'Comptes utilisateurs', +'advproxy NCSA user accounts' =3D> 'Comptes utilisateurs ', 'advproxy NCSA user management' =3D> 'Gestion des utilisateurs', 'advproxy NCSA username' =3D> 'Nom utilisateur ', 'advproxy NTLM BDC hostname' =3D> 'Nom d\'h=C3=B4te BDC', @@ -234,14 +241,14 @@ 'advproxy NTLM use positive access list' =3D> 'Utilisation autoris=C3=A9e de= contr=C3=B4le d\'acc=C3=A8s', 'advproxy NTLM user based access restrictions' =3D> 'D=C3=A9finition d\'util= isateurs en fonction des restrictions d\'acc=C3=A8s', 'advproxy RADIUS authorized users' =3D> 'Utilisateurs autoris=C3=A9s (un par= ligne)', -'advproxy RADIUS identifier' =3D> 'Identifiant', -'advproxy RADIUS port' =3D> 'Port', +'advproxy RADIUS identifier' =3D> 'Identifiant ', +'advproxy RADIUS port' =3D> 'Port ', 'advproxy RADIUS radius settings' =3D> 'Param=C3=A8tres communs RADIUS', -'advproxy RADIUS secret' =3D> 'Secret partag=C3=A9', -'advproxy RADIUS server' =3D> 'Serveur RADIUS', +'advproxy RADIUS secret' =3D> 'Secret partag=C3=A9 ', +'advproxy RADIUS server' =3D> 'Serveur RADIUS ', 'advproxy RADIUS unauthorized users' =3D> 'Utilisateurs non autoris=C3=A9s (= un par ligne)', -'advproxy RADIUS use negative access list' =3D> 'Utilisation interdite de co= ntr=C3=B4le d\'acc=C3=A8s', -'advproxy RADIUS use positive access list' =3D> 'Utilisation autoris=C3=A9e = de contr=C3=B4le d\'acc=C3=A8s', +'advproxy RADIUS use negative access list' =3D> 'Utilisation interdite de co= ntr=C3=B4le d\'acc=C3=A8s ', +'advproxy RADIUS use positive access list' =3D> 'Utilisation autoris=C3=A9e = de contr=C3=B4le d\'acc=C3=A8s ', 'advproxy RADIUS user based access restrictions' =3D> 'D=C3=A9finition d\'ut= ilisateurs en fonction des restrictions d\'acc=C3=A8s', 'advproxy UA enable filter' =3D> 'Activer la v=C3=A9rification du navigateur= ', 'advproxy access' =3D> 'Acc=C3=A8s', @@ -339,8 +346,8 @@ 'advproxy max upload size' =3D> 'Volume d\'envoi maximal (Ko) ', 'advproxy memory replacement policy' =3D> 'Politique de remplacement de m=C3= =A9moire ', 'advproxy min size' =3D> 'Volume d\'objet minimal (Ko) ', -'advproxy mode allow' =3D> 'autoriser', -'advproxy mode deny' =3D> 'interdire', +'advproxy mode allow' =3D> 'Autoris=C3=A9', +'advproxy mode deny' =3D> 'Interdit', 'advproxy monday' =3D> 'Lun', 'advproxy network based access' =3D> 'Contr=C3=B4le d\'acc=C3=A8s r=C3=A9sea= u', 'advproxy no cache sites' =3D> 'Ne pas mettre en cache ces domaines (un par = ligne) ', @@ -375,7 +382,7 @@ 'advproxy throttle mmedia' =3D> 'Multim=C3=A9dia ', 'advproxy throttling per host on' =3D> 'Limite par h=C3=B4te', 'advproxy throttling total on' =3D> 'Limite globale', -'advproxy throttling unlimited' =3D> 'illimit=C3=A9', +'advproxy throttling unlimited' =3D> 'Illimit=C3=A9e', 'advproxy thursday' =3D> 'Jeu', 'advproxy time restrictions' =3D> 'Restrictions horaires', 'advproxy to' =3D> 'A', @@ -433,7 +440,6 @@ 'alt system' =3D> 'Syst=C3=A8me', 'alt vpn' =3D> 'VPNs', 'and' =3D> 'Et', -'ansi t1.483' =3D> 'A EFFACER', 'apcupsd' =3D> 'Statut UPS-APC', 'application layer gateways' =3D> 'Passerelles de couche d\'application', 'apply' =3D> 'Appliquer maintenant', @@ -497,8 +503,6 @@ 'basic options' =3D> 'Options de base', 'beep when ppp connects or disconnects' =3D> 'Emettre un son quand IPFire se= connecte ou se d=C3=A9connecte', 'behind a proxy' =3D> 'Derri=C3=A8re un proxy :', -'bewan adsl pci st' =3D> 'A SUPPRIMER', -'bewan adsl usb' =3D> 'A SUPPRIMER', 'bit' =3D> 'bit', 'bitrate' =3D> 'Echantillonage', 'bleeding rules' =3D> 'Bleeding Edge r=C3=A8gles de Snort', @@ -512,6 +516,7 @@ 'broken pipe' =3D> 'Lien rompu', 'buffered memory' =3D> 'M=C3=A9moire tampon', 'buffers' =3D> 'tampons', +'bytes' =3D> 'Octets', 'bytes per second' =3D> 'Octets par seconde', 'bytes received' =3D> 'Octets re=C3=A7us', 'bytes sent' =3D> 'Octets envoy=C3=A9s', @@ -599,9 +604,10 @@ 'ccd err routeovpn2' =3D> 'D=C3=A9j=C3=A0 pouss=C3=A9 depuis le serveur Open= VPN.', 'ccd hint' =3D> 'Sur cette page, vous pouvez d=C3=A9finir des r=C3=A9seaux s= tatiques =C3=A0 partir desquels les clients nomades peuvent obtenir des affec= tations d\'adresses IP fixes.', 'ccd invalid' =3D> 'Invalide.', -'ccd iroute' =3D> 'IPFire a acc=C3=A8s =C3=A0 ces r=C3=A9seaux sur le site d= u client', -'ccd iroute2' =3D> 'Le client a acc=C3=A8s =C3=A0 ces r=C3=A9seaux sur le si= te d\'IPFire', +'ccd iroute' =3D> 'IPFire acc=C3=A8de =C3=A0 ces r=C3=A9seaux sur le site du= client', +'ccd iroute2' =3D> 'Le client acc=C3=A8de =C3=A0 ces r=C3=A9seaux sur le sit= e d\'IPFire', 'ccd iroutehint' =3D> 'Attention ! Si vous modifiez ces param=C3=A8tres, vou= s devez red=C3=A9marrer le serveur OpenVPN pour que les modifications prennen= t effet !', +'ccd maxclients' =3D> 'Adresses possibles', 'ccd modify' =3D> 'Changer de r=C3=A9seau', 'ccd name' =3D> 'Nom', 'ccd net' =3D> 'Pools adresses IP statiques', @@ -613,7 +619,7 @@ 'cert' =3D> 'Certif', 'certificate' =3D> 'Certificat', 'certificate authorities' =3D> 'Autorit=C3=A9 de certification', -'certificate does not have a valid ca associated with it' =3D> 'Le certifica= t n\'est pas associ=C3=A9 =C3=A0 une CA valide.', +'certificate does not have a valid ca associated with it' =3D> 'Le certifica= t n\'est pas associ=C3=A9 =C3=A0 une autorit=C3=A9 de certification valide.', 'certificate file move failed' =3D> 'Le d=C3=A9placement du fichier certific= at a =C3=A9chou=C3=A9', 'cfg restart' =3D> 'Un red=C3=A9marrage est conseill=C3=A9 apr=C3=A8s restau= ration d\'une configuration archiv=C3=A9e.', 'chain' =3D> 'Cha=C3=AEne', @@ -656,7 +662,7 @@ 'connection type' =3D> 'Type de connexion', 'connection type is invalid' =3D> 'Le type de connexion est non valide.', 'connections' =3D> 'Connexions', -'connections are associated with this ca. deleting the ca will delete these= connections as well.' =3D> 'Les connexions sont associ=C3=A9es avec ce CA. L= a suppression de ce CA entra=C3=AEnera la suppression des connexions associ= =C3=A9es.', +'connections are associated with this ca. deleting the ca will delete these= connections as well.' =3D> 'Les connexions sont associ=C3=A9es avec cette CA= . La suppression de cette CA entra=C3=AEnera la suppression des connexions as= soci=C3=A9es.', 'connscheduler' =3D> 'Planificateur de connexion', 'core notice 1' =3D> 'Remarque : Il y a une mise =C3=A0 jou= r disponible de', 'core notice 2' =3D> 'vers', @@ -678,6 +684,7 @@ 'country' =3D> 'Pays ', 'country codes and flags' =3D> 'Codes de pays et drapeaux :', 'countrycode' =3D> 'Code', +'cpu frequency' =3D> 'Fr=C3=A9quence CPU', 'cpu frequency per' =3D> 'Fr=C3=A9quence CPU par', 'cpu idle usage' =3D> 'Pourcentage d\'inactivit=C3=A9 CPU', 'cpu interrupt usage' =3D> 'Utilisation des interruptions CPU', @@ -820,7 +827,8 @@ 'directory writeable' =3D> 'Ecriture possible dans ce r=C3=A9pertoire', 'disabled' =3D> 'Arr=C3=AAt=C3=A9', 'disconnect' =3D> 'OVPN stopp=C3=A9 / d=C3=A9connect=C3=A9', -'disconnects' =3D> 'D=C3=A9connect=C3=A9', +'disconnected' =3D> 'D=C3=A9connect=C3=A9', +'disconnects' =3D> 'D=C3=A9connexion', 'disk access per' =3D> 'Acc=C3=A8s disque par', 'disk usage' =3D> 'Utilisation disque', 'display' =3D> 'R=C3=A9glages', @@ -836,6 +844,7 @@ 'dmz pinhole rule removed' =3D> 'R=C3=A8gle DMZ pinhole supprim=C3=A9e; Red= =C3=A9marrage DMZ pinhole', 'dmzpinholes for same net not necessary' =3D> 'Les DMZ Pinholes ne sont pas = forc=C3=A9ment dans le m=C3=AAme r=C3=A9seau. Choisir diff=C3=A9rentes source= s ou destinations r=C3=A9seau.', 'dnat address' =3D> 'Interface pare-feu', +'dns' =3D> 'Syst=C3=A8me de noms de domaines', 'dns address deleted' =3D> 'Suppression effectu=C3=A9e !', 'dns address deleted txt' =3D> 'Les adresses du serveur DNS ont =C3=A9t=C3= =A9 supprim=C3=A9es avec succ=C3=A8s.
Vous devez red=C3=A9marrer ou reco= nnecter pour que les modifications prennent effet !', 'dns address done' =3D> 'Les adresses du serveur DNS vont =C3=AAtre sauvegar= d=C3=A9es.', @@ -849,7 +858,7 @@ 'dns error 0' =3D> 'L\'adresse IP du premier serveur DNS n\= 'est pas valide, veuillez revoir votre saisie
La saisie de l\'adresse du= second serveur DNS est valide.', 'dns error 01' =3D> 'Les adresses IP du premier et du second serveur DNS ne sont pas valides, veuillez revoir vos saisi= es', 'dns error 1' =3D> 'L\'adresse IP du second serveur DNS n\'= est pas valide, veuillez revoir votre saisie
La saisie de l\'adresse du = premier serveur DNS est valide.', -'dns forward disable dnssec' =3D> 'D=C3=A9sactiver DNSSEC (dangereux)', +'dns forward disable dnssec' =3D> 'D=C3=A9sactiver DNSSEC (dangereux) ', 'dns forwarding dnssec disabled notice' =3D> '(DNSSEC d=C3=A9sactiv=C3=A9)', 'dns header' =3D> 'Assigner les adresses du serveur DNS seulement pour le DH= CP sur ROUGE0', 'dns isp assigned nameserver' =3D> 'Serveur DNS attribu=C3=A9 par le FAI', @@ -935,6 +944,7 @@ 'duplicate ip bold' =3D> 'Les adresses en double sont en gras', 'duplicate mac' =3D> 'Adresse MAC entr=C3=A9e en double', 'duplicate name' =3D> 'Ce nom est d=C3=A9j=C3=A0 utilis=C3=A9 veuillez en ch= oisir un autre.', +'duration' =3D> 'Dur=C3=A9e', 'dyn dns source choice' =3D> 'Le(s) fournisseur(s) de DNS dynamique(s) recev= ront une adresse d\'IPFire depuis :', 'dynamic dns' =3D> 'DNS dynamique', 'dynamic dns client' =3D> 'Client DNS dynamique', @@ -976,8 +986,8 @@ 'email testmail' =3D> 'Envoyer un message de test', 'email text' =3D> 'Email de test depuis le service de mail IPFire', 'email tls' =3D> 'Utiliser une connexion chiffr=C3=A9e TLS', -'email tls explicit' =3D> 'explicite (STARTTLS)', -'email tls implicit' =3D> 'implicite (TLS)', +'email tls explicit' =3D> 'Explicite (STARTTLS)', +'email tls implicit' =3D> 'Implicite (TLS)', 'email usemail' =3D> 'Activation du service', 'emailreportlevel' =3D> 'Niveau de rapport des mails', 'emerging pro rules' =3D> 'R=C3=A8gles Pro de la communaut=C3=A9 Emergingthr= eats.net', @@ -995,14 +1005,14 @@ 'encrypted' =3D> 'Chiffr=C3=A9', 'encryption' =3D> 'Chiffrement :', 'end address' =3D> 'Adresse de fin :', -'enter ack class' =3D> 'Entrez la classe ACK
et cliquez sur Sauveg= arder.', -'enter data' =3D> 'Entrez vos r=C3=A9glages
et cliquez sur Sauvega= rder.', +'enter ack class' =3D> 'Saisissez la classe ACK
et cliquez sur Sau= vegarder.', +'enter data' =3D> 'Saisissez vos r=C3=A9glages
et cliquez sur Sauv= egarder.', 'entropy' =3D> 'Courbe d\'efficacit=C3=A9 (entropie)', 'entropy graphs' =3D> 'Graphs entropie', 'err bk 1' =3D> 'Erreur lors de la cr=C3=A9ation de l\'archive', 'err bk 10 password' =3D> 'Erreur avec le mot de passe de sauvegarde', 'err bk 2 key' =3D> 'Erreur lors de la cr=C3=A9ation du fichier clef', -'err bk 3 tar' =3D> 'Erreur lors de la r=C3=A9union des fichiers =C3=A0 arch= iver', +'err bk 3 tar' =3D> 'Erreur lors du groupement des fichiers =C3=A0 archiver', 'err bk 4 gz' =3D> 'Erreur lors de la compression de l\'archive', 'err bk 5 encrypt' =3D> 'Erreur lors du chiffrement de l\'archive', 'err rs 1' =3D> 'Erreur lors de la restauration de l\'archive', @@ -1013,6 +1023,7 @@ 'error config' =3D> 'Impossible d\'ouvrir /var/ipcop/ovpn/config/ZERINA.ovpn= !', 'error external access' =3D> 'Impossible d\'ouvrir /var/ipcop/xtaccess/confi= g (l\'acc=C3=A8s externe ne peut pas =C3=AAtre garanti) !', 'error messages' =3D> 'Remarque :', +'error the to date has to be later than the from date' =3D> 'La date d\'aujo= urd\'hui doit =C3=AAtre post=C3=A9rieure =C3=A0 la date de d=C3=A9but !', 'esp encryption' =3D> 'Chiffrement ESP :', 'esp grouptype' =3D> 'Type de groupe ESP :', 'esp integrity' =3D> 'Int=C3=A9grit=C3=A9 ESP :', @@ -1044,7 +1055,7 @@ 'extrahd unable to read' =3D> 'Impossible de lire', 'extrahd unable to write' =3D> 'Impossible d\'=C3=A9crire', 'extrahd you cant mount' =3D> 'Vous ne pouvez pas monter', -'fallout zombieload ridl' =3D> 'Fallout/ZombieLoad/RIDL', +'fallout zombieload ridl' =3D> 'Fallout / ZombieLoad / RIDL', 'false classnumber' =3D> 'Le num=C3=A9ro de classe ne correspond pas =C3=A0 = l\'interface.', 'false max bandwith' =3D> 'La bande passante maximum est fausse.', 'false min bandwith' =3D> 'La bande passante minimum est fausse.', @@ -1097,7 +1108,7 @@ 'force enable' =3D> 'Forc=C3=A9', 'force update' =3D> 'Forcer la mise =C3=A0 jour', 'force user' =3D> 'Obliger tous les nouveaux fichiers =C3=A0 l\'utilisateur', -'foreshadow' =3D> 'Foreshadow', +'foreshadow' =3D> 'Foreshadow - ex=C3=A9cution sp=C3=A9culative ', 'forward firewall' =3D> 'Pare-feu', 'forwarding rule added' =3D> 'R=C3=A8gle de transfert ajout=C3=A9e ; Red=C3= =A9marrage du transitaire', 'forwarding rule removed' =3D> 'R=C3=A8gle de transfert supprim=C3=A9e ; Red= =C3=A9marrage du transitaire', @@ -1313,8 +1324,6 @@ 'fwhost used' =3D> 'Utilis=C3=A9', 'fwhost welcome' =3D> 'Ici, vous pouvez regrouper des h=C3=B4tes uniques, de= s r=C3=A9seaux et des services, ce qui cr=C3=A9era de nouvelles r=C3=A8gles p= lus facilement et plus rapidement.', 'fwhost wo subnet' =3D> '(sans sous-r=C3=A9seau)', -'g.dtm' =3D> 'A SUPPRIMER', -'g.lite' =3D> 'A SUPPRIMER', 'gateway' =3D> 'Passerelle ', 'gateway ip' =3D> 'IP passerelle', 'gen dh' =3D> 'G=C3=A9n=C3=A9rer nouveaux param=C3=A8tres Diffie-Hellman ', @@ -1323,7 +1332,7 @@ 'generate a certificate' =3D> 'G=C3=A9n=C3=A9rer un certificat :', 'generate dh key' =3D> 'G=C3=A9n=C3=A9rer param=C3=A8tres Diffie-Hellman', 'generate iso' =3D> 'G=C3=A9n=C3=A9rer ISO', -'generate ptr' =3D> 'G=C3=A9n=C3=A9rer PTR', +'generate ptr' =3D> 'G=C3=A9n=C3=A9rer PTR ', 'generate root/host certificates' =3D> 'G=C3=A9n=C3=A9rer des certificats ro= ot / h=C3=B4te', 'generate tripwire keys and init' =3D> 'G=C3=A9n=C3=A9rer des clefs Tripwire= et init', 'generatekeys' =3D> 'G=C3=A9n=C3=A9rer des clefs', @@ -1435,6 +1444,7 @@ 'incoming traffic in bytes per second' =3D> 'Trafic entrant', 'incorrect password' =3D> 'Mot de passe incorrect', 'info' =3D> 'Info', +'info messages' =3D> 'Info', 'init string' =3D> 'Init :', 'insert floppy' =3D> 'Pour sauvegarder sur disquette, ins=C3=A9rez une disqu= ette format=C3=A9e dans le lecteur d\'un PC IPFire et cliquez sur Sauvegar= dez sur disquette pour sauvegarder la configuration syst=C3=A8me. Veuille= z examiner attentivement le r=C3=A9sultat afin de vous assurez que la sauvega= rde s\'est correctement effectu=C3=A9e. Cela peut prendre un certain temps, v= euillez patienter.

', 'insert removable device' =3D> 'Ins=C3=A9rez un p=C3=A9riph=C3=A9rique exter= ne', @@ -1489,7 +1499,7 @@ 'invalid input for local ip address' =3D> 'Entr=C3=A9e non valide pour l\'ad= resse IP locale', 'invalid input for max clients' =3D> 'Nombre de clients maximum non valide', 'invalid input for mode' =3D> 'Entr=C3=A9e non valide pour le mode', -'invalid input for name' =3D> 'Mauvaise entr=C3=A9e pour le nom d\'utilisate= ur ou le nom du syt=C3=A8me', +'invalid input for name' =3D> 'Mauvaise saisie pour le nom d\'utilisateur ou= le nom d\'h=C3=B4te du syst=C3=A8me', 'invalid input for oink code' =3D> 'Oink code non valide', 'invalid input for organization' =3D> 'Organisation non valide', 'invalid input for remote host/ip' =3D> 'h=C3=B4te/IP distant(e) non valide.= ', @@ -1549,7 +1559,7 @@ 'ipsec mode tunnel' =3D> 'Tunnel', 'ipsec network' =3D> 'R=C3=A9seau IPsec', 'ipsec no connections' =3D> 'Aucune connexion IPsec active', -'ipsec routing table entries' =3D> 'Entr=C3=A9es de table de routage IPsec', +'ipsec routing table entries' =3D> 'Entr=C3=A9es de la table de routage IPse= c', 'ipsec settings' =3D> 'Param=C3=A8tres IPsec', 'iptable rules' =3D> 'R=C3=A8gles table IP', 'iptmangles' =3D> 'Table IP Mangle ', @@ -1559,7 +1569,7 @@ 'isdn settings' =3D> 'R=C3=A9glages RNIS suppl=C3=A9mentaires :', 'isdn1' =3D> 'RNIS unique', 'isdn2' =3D> 'RNIS double', -'itlb multihit' =3D> 'MultiHit iTLB', +'itlb multihit' =3D> 'ITLB - erreur v=C3=A9rification machine', 'january' =3D> 'Janvier', 'javascript menu error1' =3D> 'Si les menus d=C3=A9roulants ne fonctionnent = pas, d=C3=A9sactivez le Javascript sur la', 'javascript menu error2' =3D> 'page.', @@ -1691,7 +1701,7 @@ 'media' =3D> 'Stockage', 'media information' =3D> 'Informations du stockage', 'medium' =3D> 'Moyen', -'meltdown' =3D> 'Effondrement', +'meltdown' =3D> 'Meltdown - acc=C3=A8s m=C3=A9moire', 'memory' =3D> 'M=C3=A9moire', 'memory information' =3D> 'Informations m=C3=A9moire', 'memory usage per' =3D> 'Utilisation de la m=C3=A9moire par', @@ -1801,8 +1811,10 @@ 'no' =3D> 'Non', 'no alcatelusb firmware' =3D> 'Aucun firmware Alcatel USB, veuillez le charg= er.', 'no cfg upload' =3D> 'Aucune donn=C3=A9e n\'a =C3=A9t=C3=A9 envoy=C3=A9e', +'no data' =3D> 'Pas de donn=C3=A9e', 'no dhcp lease' =3D> 'Aucun bail DHCP n\'a =C3=A9t=C3=A9 obtenu', 'no eciadsl synch.bin file' =3D> 'Aucun fichier ECI ADSL synch.bin, veuillez= le charger.', +'no entries' =3D> 'Aucune entr=C3=A9e actuellement.', 'no filter pass' =3D> 'Entrez la classe standard pour les paquets non filtr= =C3=A9s.', 'no fritzdsl driver' =3D> 'Aucun pilote Fritz!DSL, veuillez le charger.', 'no hardware random number generator' =3D> 'Ce syst=C3=A8me n\'a pas de sour= ce pour l\'entropie.', @@ -1900,14 +1912,14 @@ 'outgoing firewall groups' =3D> 'Groupes de pare-feu', 'outgoing firewall ip groups' =3D> 'Groupes d\'adresses IP du pare-feu sorta= nt', 'outgoing firewall mac groups' =3D> 'Groupes d\'adresses MAC du pare-feu sor= tant', -'outgoing firewall mode0' =3D> 'En utilisant ce mode, tous les clients peuve= nt avoir acc=C3=A8s =C3=A0 Internet sans restrictions.', +'outgoing firewall mode0' =3D> 'En utilisant ce mode, tous les clients peuve= nt avoir acc=C3=A8s =C3=A0 Internet sans restriction.', 'outgoing firewall mode1' =3D> 'En utilisant ce mode, seules les connexions = bas=C3=A9es sur les r=C3=A8gles pr=C3=A9d=C3=A9finies sont autoris=C3=A9es.', 'outgoing firewall mode2' =3D> 'En utilisant ce mode, toutes les connexions = sont autoris=C3=A9es sans tenir compte de la liste de d=C3=A9finitions.', 'outgoing firewall outgoing firewall reserved groupname' =3D> 'Veuillez util= iser un autre nom de groupe, ce nom est r=C3=A9serv=C3=A9.', 'outgoing firewall p2p allow' =3D> 'le protocole p2p est autoris=C3=A9', 'outgoing firewall p2p deny' =3D> 'le protocole p2p est refus=C3=A9', 'outgoing firewall p2p description 1' =3D> 'Le bouton', -'outgoing firewall p2p description 2' =3D> ' signifie que le protocole est a= utoris=C3=A9 ou', +'outgoing firewall p2p description 2' =3D> 'signifie que le protocole est au= toris=C3=A9 ou', 'outgoing firewall p2p description 3' =3D> 'que le protocole p2p est bloqu= =C3=A9.', 'outgoing firewall reset' =3D> 'Tout r=C3=A9initialiser', 'outgoing firewall view group' =3D> 'Voir le groupe', @@ -1919,6 +1931,7 @@ 'ovpn add conf' =3D> 'Configuration additionnelle', 'ovpn con stat' =3D> 'Statistiques de connexions OpenVPN', 'ovpn config' =3D> 'Config OVPN', +'ovpn connection name' =3D> 'Nom de la connexion', 'ovpn crypt options' =3D> 'Options cryptographiques', 'ovpn device' =3D> 'P=C3=A9riph=C3=A9rique OpenVPN :', 'ovpn dh' =3D> 'Longueur de param=C3=A8tres Diffie-Hellman ', @@ -1928,7 +1941,7 @@ 'ovpn dl' =3D> 'T=C3=A9l=C3=A9charger Config OVPN', 'ovpn engines' =3D> 'Moteur Crypto', 'ovpn errmsg green already pushed' =3D> 'La route pour le r=C3=A9seau VERT e= st toujours activ=C3=A9e', -'ovpn errmsg invalid ip or mask' =3D> 'Adresse ou masque de sous-r?seau inva= lide', +'ovpn errmsg invalid ip or mask' =3D> 'Adresse ou masque de sous-r=C3=A9seau= invalide', 'ovpn error dh' =3D> 'Le param=C3=A8tre Diffie-Hellman doit =C3=AAtre au min= imum =C3=A0 2048 bits !
Veuillez g=C3=A9n=C3=A9rer ou t=C3=A9l=C3=A9charg= er un nouveau param=C3=A8tre Diffie-Hellman, cela peut =C3=AAtre fait ci-dess= ous dans la section "Options de param=C3=A8tres Diffie-Hellman".
', 'ovpn error md5' =3D> 'Votre certificat h=C3=B4te utilise MD5 pour la signat= ure qui n\'est plus accept=C3=A9e.
Veuillez mettre =C3=A0 jour la derni= =C3=A8re version d\'IPFire et g=C3=A9n=C3=A9rez un nouveau certificat racine = et h=C3=B4te..

Tous les clients OpenVPN doivent ensuite =C3=AAtre ren= ouvel=C3=A9s!
', 'ovpn generating the root and host certificates' =3D> 'La g=C3=A9n=C3=A9rati= on du certificat racine et h=C3=B4te peut prendre du temps.', @@ -1950,13 +1963,15 @@ 'ovpn reneg sec' =3D> 'Dur=C3=A9e de vie de la cl=C3=A9 de session :', 'ovpn routes push' =3D> 'Routes (une par ligne) :', 'ovpn routes push options' =3D> 'Options de route push', +'ovpn rw connection log' =3D> 'Rapports de connexions client nomade OpenVPN', 'ovpn server status' =3D> 'Statut actuel du serveur OpenVPN :', -'ovpn subnet' =3D> 'Sous-r=C3=A9seau OpenVPN (c.a.d. 10.0.10.0/255.255.255.0= )', +'ovpn subnet' =3D> 'Sous-r=C3=A9seau OpenVPN', 'ovpn subnet is invalid' =3D> 'Sous-r=C3=A9seau OpenVPN non valide.', 'ovpn subnet overlap' =3D> 'Le sous-r=C3=A9seau OpenVPN se chevauche avec : = ', 'ovpn tls auth' =3D> 'Protection du canal TLS :', 'ovpn warning rfc3280' =3D> 'Votre certificat d\'h=C3=B4te n\'est pas confor= me avec la RFC3280.
Veuillez mettre =C3=A0 jour la derni=C3=A8re version d= \'IPFire et g=C3=A9n=C3=A9rer d=C3=A8s que possible un nouveau certificat rac= ine et h=C3=B4te.

Tous les clients OpenVPN doivent ensuite =C3=AAtre = renouvel=C3=A9s !
', 'ovpn_fastio' =3D> 'Fast-IO', +'ovpn_fragment' =3D> 'Taille du fragment', 'ovpn_mssfix' =3D> 'Taille MSSFIX', 'ovpn_mtudisc' =3D> 'D=C3=A9couverte MTU', 'ovpn_processprio' =3D> 'Priorit=C3=A9 du processus', @@ -2088,7 +2103,7 @@ 'qos add subclass' =3D> 'Ajouter une sous-classe', 'qos enter bandwidths' =3D> 'Vous devrez saisir votre bande passante en aval= et en amont !', 'qos graphs' =3D> 'Graphiques Qos', -'qos warning' =3D> 'Cette r=C3=A8gle doit =C3=AAtre sauv=C3= =A9e, autrement elle ne sera pas retenue !', +'qos warning' =3D> 'Cette r=C3=A8gle doit =C3=AAtre enregis= tr=C3=A9e, sinon elle ne sera pas retenue !', 'quick control' =3D> 'Contr=C3=B4le rapide', 'quick playlist' =3D> 'Liste de lecture rapide', 'ram' =3D> 'RAM', @@ -2104,6 +2119,7 @@ 'reboot sure' =3D> 'Etes-vous s=C3=BBr de vouloir red=C3=A9marrer ?', 'rebooting' =3D> 'Red=C3=A9marrage en cours...', 'rebooting ipfire' =3D> 'Redemarrage d\'IPFire', +'received' =3D> 'Re=C3=A7u', 'reconnect' =3D> 'Reconnecter', 'reconnection' =3D> 'Reconnexion ', 'red' =3D> 'Internet', @@ -2144,7 +2160,7 @@ 'resetting the vpn configuration will remove the root ca, the host certifica= te and all certificate based connections' =3D> 'La r=C3=A9initialisation de l= a configuration VPN va supprimer le CA root, le certificat h=C3=B4te et tous = les certificats bas=C3=A9s sur les connexions ', 'restart' =3D> 'Relancer', 'restart ovpn server' =3D> 'Relancer le serveur OpenVPN', -'restore' =3D> 'Restaurer', +'restore' =3D> 'Restauration', 'restore defaults' =3D> 'Restaurer par d=C3=A9faut', 'restore hardware settings' =3D> 'Restaurer les param=C3=A8tres mat=C3=A9rie= ls', 'restore settings' =3D> 'R=C3=A9initialiser les param=C3=A8tres', @@ -2153,8 +2169,10 @@ 'root certificate' =3D> 'Certificat root', 'root path' =3D> 'R=C3=A9pertoire root', 'root user password' =3D> 'Mot de passe root', +'route config changed' =3D> '', 'route subnet is invalid' =3D> 'L\'itin=C3=A9raire additionnel push du sous-= r=C3=A9seau est non valide', 'router ip' =3D> 'Adresse IP du routeur :', +'routing table' =3D> 'Table de routage', 'routing table entries' =3D> 'Entr=C3=A9es de la table de routage :', 'rsvd dst port overlap' =3D> 'La plage des ports de destination comprend un = port r=C3=A9serv=C3=A9 =C3=A0 IPFire :', 'rsvd src port overlap' =3D> 'La plage des ports source comprend un port r= =C3=A9serv=C3=A9 =C3=A0 IPFire :', @@ -2190,6 +2208,7 @@ 'send cr' =3D> 'Le FAI impose un retour chariot :', 'send email notification' =3D> 'Activ=C3=A9, envoyer une notification email', 'send test mail' =3D> 'Envoyer email de test', +'sent' =3D> 'Envoy=C3=A9', 'september' =3D> 'Septembre', 'serial' =3D> 'Num=C3=A9ro', 'server reserved' =3D> 'Le serveur de nom de connexion est r=C3=A9serv=C3=A9= et non autoris=C3=A9', @@ -2269,9 +2288,9 @@ 'source port overlaps' =3D> 'La plage de port source chevauche une plage de = port existante.', 'speaker off' =3D> 'Haut-parleur =C3=A9teint :', 'speaker on' =3D> 'Haut-parleur allum=C3=A9 :', -'spectre variant 1' =3D> 'Variante Spectre 1', -'spectre variant 2' =3D> 'Variante Spectre 2', -'spectre variant 4' =3D> 'Variante Spectre 4', +'spectre variant 1' =3D> 'Spectre - variante 1', +'spectre variant 2' =3D> 'Spectre - variante 2', +'spectre variant 4' =3D> 'Spectre - variante 4', 'squid extension methods' =3D> 'Votre liste de m=C3=A9thodes d\'extensio= n', 'squid extension methods invalid' =3D> 'Votre liste de m=C3=A9thodes d\'exte= nsion peut seulement contenir des mots compos=C3=A9s de majuscules ou de chif= fres, s=C3=A9par=C3=A9s par un espace. ', 'squid fix cache' =3D> 'Cache de r=C3=A9paration', @@ -2295,7 +2314,7 @@ 'ssh no active logins' =3D> 'Pas de connexion active', 'ssh no auth' =3D> 'Vous n\'avez autoris=C3=A9 aucune m=C3=A9thode d\'authen= tification ; Cela va vous emp=C3=AAcher toute connexion future', 'ssh passwords' =3D> 'Autoriser l\'authentification par mot de passe', -'ssh port' =3D> 'Le port SSH d=C3=A9fini est 22 (par d=C3=A9faut 222)', +'ssh port' =3D> 'D=C3=A9finir le port SSH =C3=A0 22 (par d=C3=A9faut 222)', 'ssh portfw' =3D> 'Autoriser le transfert TCP', 'ssh tempstart15' =3D> 'Arr=C3=AAter le service SSH dans 15 mns', 'ssh tempstart30' =3D> 'Arr=C3=AAter le service SSH dans 30 mns', @@ -2588,7 +2607,6 @@ 'upload a certificate request' =3D> 'Envoyer une demande de certificat :', 'upload ca certificate' =3D> 'Envoyer un certificat CA', 'upload dh key' =3D> 'T=C3=A9l=C3=A9charger param=C3=A8tres Diffie-Hellman', -'upload fcdsl.o' =3D> 'A SUPPRIMER', 'upload file' =3D> 'Envoyer un fichier', 'upload new ruleset' =3D> 'T=C3=A9l=C3=A9charger un nouveau r=C3=A9glement', 'upload p12 file' =3D> 'Envoyer fichier PKCS12', @@ -2636,7 +2654,7 @@ 'urlfilter block all' =3D> 'Bloquer toutes les url non autoris=C3=A9es expli= citement ', 'urlfilter block archives' =3D> 'Bloquer fichiers d\'archives compress=C3=A9= s ', 'urlfilter block audio-video' =3D> 'Bloquer fichiers audio / vid=C3=A9o ', -'urlfilter block categories' =3D> 'Bloquer cat=C3=A9gories', +'urlfilter block categories' =3D> 'Bloquage de cat=C3=A9gories', 'urlfilter block executables' =3D> 'Bloquer fichiers ex=C3=A9cutables ', 'urlfilter block ip' =3D> 'Bloquer les sites atteints par leur IP ', 'urlfilter block settings' =3D> ' R=C3=A9glages de filtre URL', @@ -2689,7 +2707,7 @@ 'urlfilter file ext block' =3D> 'Blocage extension de fichier', 'urlfilter filename' =3D> 'Nom', 'urlfilter filesize' =3D> 'Taille', -'urlfilter filter settings' =3D> 'Param=C3=A8tres filtre URL', +'urlfilter filter settings' =3D> 'Param=C3=A8tres de filtre URL', 'urlfilter fri' =3D> 'Ven', 'urlfilter friday' =3D> 'Vendredi', 'urlfilter from' =3D> 'De', @@ -2709,7 +2727,7 @@ 'urlfilter log summary' =3D> 'Nombre total d\'url atteintes pour', 'urlfilter log viewer' =3D> 'Rapport de filtre URL', 'urlfilter logs' =3D> 'Rapports de filtre URL', -'urlfilter maintenance' =3D> 'Maintenance filtre URL', +'urlfilter maintenance' =3D> 'Maintenance de filtre URL', 'urlfilter manage local file repository' =3D> 'G=C3=A9rer le fichier de d=C3= =A9p=C3=B4t local ', 'urlfilter manage repository' =3D> 'G=C3=A9rer le d=C3=A9p=C3=B4t', 'urlfilter minutes' =3D> 'minutes', @@ -2737,7 +2755,7 @@ 'urlfilter restart' =3D> 'Red=C3=A9marrer filtre URL', 'urlfilter restart message' =3D> 'Filtre URL doit =C3=AAtre red=C3=A9marr=C3= =A9 pour activer les changements de r=C3=A8gles', 'urlfilter restart notification' =3D> 'Activer r=C3=A8gles modifi=C3=A9es', -'urlfilter restore' =3D> 'Importer fichier de sauvegarde', +'urlfilter restore' =3D> 'Importer le fichier de sauvegarde', 'urlfilter restore results' =3D> 'Restaurer r=C3=A9sultats', 'urlfilter restore settings' =3D> 'Restaurer les param=C3=A8tres du filtre U= RL', 'urlfilter restore success' =3D> 'Configuration filtre URL restaur=C3=A9e. F= iltre URL doit =C3=AAtre red=C3=A9marr=C3=A9 pour activer les nouveaux param= =C3=A8tres.', @@ -2752,7 +2770,7 @@ 'urlfilter select source' =3D> 'Choisir une source de t=C3=A9l=C3=A9chargeme= nt ', 'urlfilter set time constraints' =3D> 'Fixer les contraintes horaires', 'urlfilter set user quota' =3D> 'Fixer les quotas utilisateur', -'urlfilter show category' =3D> 'Montrer la cat=C3=A9gorie de page bloqu=C3= =A9e ', +'urlfilter show category' =3D> 'Montrer cat=C3=A9gorie page bloqu=C3=A9e ', 'urlfilter show dnserror' =3D> 'Utiliser "Erreur DNS" pour url bloqu=C3=A9es= ', 'urlfilter show ip' =3D> 'Montrer adresse IP page bloqu=C3=A9e ', 'urlfilter show url' =3D> 'Montrer adresse url page bloqu=C3=A9e ', @@ -2814,9 +2832,9 @@ 'user proxy logs' =3D> 'log utilisateur proxy', 'username' =3D> 'Nom utilisateur :', 'username not set' =3D> 'Nom d\'utilisateur non d=C3=A9fini.', -'users department' =3D> 'D=C3=A9partement de l\'utilisateur', -'users email' =3D> 'Adresse email de l\'utilisateur', -'users fullname or system hostname' =3D> 'Nom d\'utilisateur complet ou nom = d\'h=C3=B4te du syst=C3=A8me', +'users department' =3D> 'D=C3=A9partement de l\'utilisateur ', +'users email' =3D> 'Adresse email de l\'utilisateur ', +'users fullname or system hostname' =3D> 'Nom d\'utilisateur complet ou nom = d\'h=C3=B4te du syst=C3=A8me ', 'valid root certificate already exists' =3D> 'Un certificat racine valide ex= iste d=C3=A9j=C3=A0.', 'valid till' =3D> 'Valide jusqu\'au', 'vci number' =3D> 'Nombre VCI :', @@ -2859,8 +2877,9 @@ 'vpn start action add' =3D> 'Attendre l\'initialisation de la connexion', 'vpn start action route' =3D> 'A la demande', 'vpn start action start' =3D> 'Toujours d=C3=A9marr=C3=A9', -'vpn statistic n2n' =3D> 'Stats OpenVPN (site-=C3=A0-site)', +'vpn statistic n2n' =3D> 'Stat OpenVPN (site-=C3=A0-site)', 'vpn statistic rw' =3D> 'Stats OpenVPN (client nomade)', +'vpn statistics n2n' =3D> 'Stats OpenVPN (site-=C3=A0-site)', 'vpn subjectaltname' =3D> 'Nom de l\'objet', 'vpn subjectaltname missing' =3D> 'Le nom de l\'objet ne peut =C3=AAtre vide= .', 'vpn wait' =3D> 'ATTENTE', @@ -2986,9 +3005,9 @@ 'zoneconf nicmode default' =3D> 'D=C3=A9faut', 'zoneconf nicmode macvtap' =3D> 'MacVTap', 'zoneconf notice reboot' =3D> 'Veuillez red=C3=A9marrer pour appliquer vos c= hangements.', -'zoneconf title' =3D> 'Configuration de zones', -'zoneconf val native assignment error' =3D> 'Une carte r=C3=A9seau ne peut p= as =C3=AAtre atteinte nativement par davantage qu\'une zone.', -'zoneconf val ppp assignment error' =3D> 'La carte r=C3=A9seau utilis=C3=A9e= pour ROUGE en mode PPP ne peut =C3=AAtre atteinte par une autre zone.', +'zoneconf title' =3D> 'Configuration des zones', +'zoneconf val native assignment error' =3D> 'Une carte r=C3=A9seau ne peut p= as =C3=AAtre utilis=C3=A9e nativement par davantage qu\'une zone.', +'zoneconf val ppp assignment error' =3D> 'La carte r=C3=A9seau utilis=C3=A9e= pour ROUGE en mode PPP ne peut =C3=AAtre utilis=C3=A9e par une autre zone.', 'zoneconf val vlan amount assignment error' =3D> 'Une zone ne peut pas avoir= plus d\'un VLAN attribu=C3=A9.', 'zoneconf val vlan tag assignment error' =3D> 'Vous ne pouvez pas utiliser l= e m=C3=AAme label VLAN plus d\'une fois par carte r=C3=A9seau.', 'zoneconf val zoneslave amount error' =3D> 'Une zone qui n\'est pas en mode = pont ne peut pas avoir plus d\'une carte r=C3=A9seau assign=C3=A9e', diff --git a/lfs/knot b/lfs/knot index 513314e92..e5074d08c 100644 --- a/lfs/knot +++ b/lfs/knot @@ -1,7 +1,7 @@ ############################################################################= ### # = # # IPFire.org - A linux based firewall = # -# Copyright (C) 2007-2019 IPFire Team = # +# Copyright (C) 2007-2020 IPFire Team = # # = # # 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 = # @@ -24,7 +24,7 @@ =20 include Config =20 -VER =3D 2.9.2 +VER =3D 2.9.4 =20 THISAPP =3D knot-$(VER) DL_FILE =3D $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects =3D $(DL_FILE) =20 $(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) =20 -$(DL_FILE)_MD5 =3D 4f5ccc7b136858bb5dae8eacb2d3c4fe +$(DL_FILE)_MD5 =3D 4975cfc1b0a789bc1263b07d28f2493c =20 install : $(TARGET) =20 hooks/post-receive -- IPFire 2.x development tree --===============0821344924676493775==--