[prev in list] [next in list] [prev in thread] [next in thread] 

List:       ipfire-scm
Subject:    [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 714ef1cf953745a3c73f900d8012bf3a
From:       Arne Fitzenreiter <git () ipfire ! org>
Date:       2020-05-18 20:21:47
Message-ID: 49Qr5S1TT6z2xkw () people01 ! haj ! ipfire ! org
[Download RAW message or body]

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 <arne_f@ipfire.org>
Date:   Mon May 18 20:21:21 2020 +0000

    core145: add knot
    
    Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>

commit d73e1c75c862f1a6471a81a31f14d36f4f20a4c2
Author: Matthias Fischer <matthias.fischer@ipfire.org>
Date:   Sat May 16 10:38:58 2020 +0200

    knot: Update to 2.9.4
    
    For details see:
    https://www.knot-dns.cz/2020-05-05-version-294.html
    
    Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org>
    Reviewed-by: Michael Tremer <michael.tremer@ipfire.org>
    Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>

commit 177f79b6924f3bbe539dcf1ceff22d6a28eb6b7a
Author: Arne Fitzenreiter <arne_f@ipfire.org>
Date:   Mon May 18 20:19:16 2020 +0000

    core145: add ids-functions.pl
    
    Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>

commit adb320bc4a834db81137c3b9b8c2158e54f0a615
Author: Stefan Schantl <stefan.schantl@ipfire.org>
Date:   Mon May 18 21:15:54 2020 +0200

    ids-functions.pl: Fix generating of HOME_NET declaration
    
    Fixes #12407.
    
    Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
    Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>

commit 5011657a7bbcafd04db8b167d3ea73b19ca4e162
Author: Michael Tremer <michael.tremer@ipfire.org>
Date:   Mon May 18 11:04:54 2020 +0000

    de: Fix typo in "received"
    
    Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
    Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>

commit 1a2cc05fefeac6d0b1183fa501c627c221d8410d
Author: Stéphane Pautrel <stephane.pautrel@gmail.com>
Date:   Mon May 18 11:04:53 2020 +0000

    fr: Add missing strings
    
    Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
    Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>

-----------------------------------------------------------------------

Summary of changes:
 config/cfgroot/ids-functions.pl                    |  17 +-
 config/rootfiles/core/145/filelists/files          |   1 +
 .../{oldcore/128 => 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 => 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() {
 	}
 
 	# Format home net declaration.
-	my $line = "\"\[";
-
-	# Loop through the array of networks.
-	foreach my $network (@networks) {
-		# Add the network to the line.
-		$line = "$line" . "$network";
-
-		# Check if the current network was the last in the array.
-		if ($network eq $networks[-1]) {
-			# Close the line.
-			$line = "$line" . "\]\"";
-		} else {
-			# Add "," for the next network.
-			$line = "$line" . "\,";
-		}
-	}
+	my $line = "[" . join(',', @networks) . "]";
 
 	# 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/core/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 assignment \
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 from date = \
The to date has to be later than the from date!  WARNING: untranslated string: fwhost \
cust geoipgrp = unknown string  WARNING: untranslated string: fwhost err hostip = \
unknown string  WARNING: untranslated string: guardian block a host = unknown string
@@ -799,6 +799,7 @@ WARNING: untranslated string: guardian logtarget_file = unknown \
string  WARNING: untranslated string: guardian logtarget_syslog = unknown string
 WARNING: untranslated string: guardian no entries = unknown string
 WARNING: untranslated string: guardian service = unknown string
+WARNING: untranslated string: no entries = No entries at the moment.
 WARNING: untranslated string: pakfire invalid tree = Invalid repository selected
 WARNING: untranslated string: route config changed = unknown string
 WARNING: untranslated string: routing config added = 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 = Countries
 WARNING: untranslated string: country = Country
 WARNING: untranslated string: country codes and flags = Country Codes and Flags:
 WARNING: untranslated string: countrycode = Code
+WARNING: untranslated string: cpu frequency = CPU frequency
 WARNING: untranslated string: cpu frequency per = CPU frequency per
 WARNING: untranslated string: cpu idle usage = Idle CPU Usage
 WARNING: untranslated string: cpu interrupt usage = Interrupt CPU Usage
@@ -599,6 +600,7 @@ WARNING: untranslated string: dialup red not ppp = Dialup \
profiles can only used  WARNING: untranslated string: directory mask = UNIX directory \
rights  WARNING: untranslated string: directory writeable = directory writeable
 WARNING: untranslated string: disabled = disabled
+WARNING: untranslated string: disconnected = Disconnected
 WARNING: untranslated string: disk access per = Disk Access per
 WARNING: untranslated string: disk usage = Disk usage
 WARNING: untranslated string: display = Display
@@ -668,7 +670,7 @@ WARNING: untranslated string: drop action1 = Default behaviour of \
(outgoing) fir  WARNING: untranslated string: drop action2 = Default behaviour of \
(input) firewall  WARNING: untranslated string: drop forward = Log dropped forward \
packets  WARNING: untranslated string: drop input = Log dropped input packets
-WARNING: untranslated string: drop newnotsyn = Log dropped new not syn packets
+WARNING: untranslated string: drop newnotsyn = Log dropped new not SYN packets
 WARNING: untranslated string: drop outgoing = Log dropped outgoing packets
 WARNING: untranslated string: drop portscan = Log dropped portscan packets
 WARNING: untranslated string: drop proxy = Drop all packets not addressed to proxy
@@ -680,6 +682,7 @@ WARNING: untranslated string: duplicate ip = Duplicate IP address \
entered  WARNING: untranslated string: duplicate ip bold = Duplicate addresses are in \
<b>bold</b>  WARNING: untranslated string: duplicate mac = Duplicate MAC address \
entered  WARNING: untranslated string: duplicate name = That name is already being \
used, please choose another. +WARNING: untranslated string: duration = Duration
 WARNING: untranslated string: dyn dns source choice = Dynamic DNS provider(s) will \
receive an IP address for this IPFire from:  WARNING: untranslated string: dynamic \
dns = Dynamic DNS  WARNING: untranslated string: e-mail address too long = E-mail \
address is too long; it should not be longer than 40 characters. @@ -728,6 +731,7 @@ \
WARNING: untranslated string: entropy = Entropy  WARNING: untranslated string: \
entropy graphs = Entropy Graphs  WARNING: untranslated string: error = Error
 WARNING: untranslated string: error messages = Error messages
+WARNING: untranslated string: error the to date has to be later than the from date = \
The to date has to be later than the from date!  WARNING: untranslated string: esp \
keylife should be between 1 and 24 hours = ESP keylife should be between 1 and 24 \
hours.  WARNING: untranslated string: every = Every
 WARNING: untranslated string: exampel = example
@@ -1335,6 +1339,7 @@ WARNING: untranslated string: next = next
 WARNING: untranslated string: no = No
 WARNING: untranslated string: no data = unknown string
 WARNING: untranslated string: no dhcp lease = No DHCP lease has been acquired
+WARNING: untranslated string: no entries = No entries at the moment.
 WARNING: untranslated string: no filter pass = Enter the standard class for \
non-filtered packets.  WARNING: untranslated string: no log selected = No log \
selected  WARNING: untranslated string: no time limit = unlimited time
@@ -1407,6 +1412,7 @@ WARNING: untranslated string: outgoing traffic in bytes per \
second = Outgoing Tr  WARNING: untranslated string: ovpn = OpenVPN
 WARNING: untranslated string: ovpn add conf = Additional configuration
 WARNING: untranslated string: ovpn con stat = OpenVPN Connection Statistics
+WARNING: untranslated string: ovpn connection name = Connection Name
 WARNING: untranslated string: ovpn crypt options = Cryptographic options
 WARNING: untranslated string: ovpn dh = Diffie-Hellman parameters length
 WARNING: untranslated string: ovpn dh new key = Generate new Diffie-Hellman \
parameters @@ -1426,6 +1432,7 @@ WARNING: untranslated string: ovpn on red = OpenVPN \
on RED:  WARNING: untranslated string: ovpn port in root range = A port number of \
1024 or higher is required.  WARNING: untranslated string: ovpn routes push = 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 = Route push options +WARNING: untranslated string: \
ovpn rw connection log = OpenVPN Roadwarrior Connections Log  WARNING: untranslated \
string: ovpn server status = Current OpenVPN server status:  WARNING: untranslated \
string: ovpn subnet = OpenVPN subnet:  WARNING: untranslated string: ovpn subnet is \
invalid = OpenVPN subnet is invalid. @@ -1534,6 +1541,7 @@ WARNING: untranslated \
string: real address = Real Address  WARNING: untranslated string: reboot = Reboot
 WARNING: untranslated string: rebooting = Rebooting
 WARNING: untranslated string: rebooting ipfire = Rebooting IPFire
+WARNING: untranslated string: received = Received
 WARNING: untranslated string: reconnect = Reconnect
 WARNING: untranslated string: reconnection = Reconnection
 WARNING: untranslated string: red = Internet
@@ -1597,6 +1605,7 @@ WARNING: untranslated string: security = Security
 WARNING: untranslated string: security options = Security Options
 WARNING: untranslated string: select = Select
 WARNING: untranslated string: send cr = ISP requires Carriage Return:
+WARNING: untranslated string: sent = Sent
 WARNING: untranslated string: september = September
 WARNING: untranslated string: serial = Serial
 WARNING: untranslated string: server restart = You are not able to save any changes \
while the OpenVPN server is running. @@ -1774,6 +1783,7 @@ WARNING: untranslated \
string: tor traffic limit hard = Traffic limit has been re  WARNING: untranslated \
string: tor traffic limit soft = Traffic limit almost reached. Not accepting any new \
connections.  WARNING: untranslated string: tor traffic read written = Total traffic \
(read/written)  WARNING: untranslated string: tor use exit nodes = Use only these \
exit nodes (one per line) +WARNING: untranslated string: total connection time = \
Total Connection Time  WARNING: untranslated string: total hits for log section = \
Total hits for log section  WARNING: untranslated string: traffic on = Traffic on
 WARNING: untranslated string: traffics = 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 = Count
 WARNING: untranslated string: countries = Countries
 WARNING: untranslated string: country codes and flags = Country Codes and Flags:
 WARNING: untranslated string: countrycode = Code
+WARNING: untranslated string: cpu frequency = CPU frequency
 WARNING: untranslated string: crypto error = Cryptographic error
 WARNING: untranslated string: crypto warning = Cryptographic warning
 WARNING: untranslated string: dangerous = Dangerous
@@ -818,6 +818,7 @@ WARNING: untranslated string: dhcp dns key name = Key Name
 WARNING: untranslated string: dhcp dns update = DNS Update
 WARNING: untranslated string: dhcp dns update algo = Algorithm
 WARNING: untranslated string: dhcp dns update secret = Secret
+WARNING: untranslated string: disconnected = Disconnected
 WARNING: untranslated string: dl client arch insecure = Download insecure Client \
Package (zip)  WARNING: untranslated string: dnat address = Firewall Interface
 WARNING: untranslated string: dns = unknown string
@@ -856,6 +857,7 @@ WARNING: untranslated string: drop action1 = Default behaviour of \
(outgoing) fir  WARNING: untranslated string: drop action2 = Default behaviour of \
(input) firewall  WARNING: untranslated string: drop forward = Log dropped forward \
packets  WARNING: untranslated string: drop outgoing = Log dropped outgoing packets
+WARNING: untranslated string: duration = Duration
 WARNING: untranslated string: eight hours = 8 Hours
 WARNING: untranslated string: email config = Configuration
 WARNING: untranslated string: email empty field = Empty field
@@ -882,6 +884,7 @@ WARNING: untranslated string: encryption = Encryption:
 WARNING: untranslated string: entropy = Entropy
 WARNING: untranslated string: entropy graphs = Entropy Graphs
 WARNING: untranslated string: error = Error
+WARNING: untranslated string: error the to date has to be later than the from date = \
The to date has to be later than the from date!  WARNING: untranslated string: \
fallout zombieload ridl = Fallout/ZombieLoad/RIDL  WARNING: untranslated string: \
fifteen minutes = 15 Minutes  WARNING: untranslated string: fireinfo ipfire version = \
IPFire version @@ -1188,6 +1191,7 @@ WARNING: untranslated string: most preferred = \
most preferred  WARNING: untranslated string: mtu = MTU
 WARNING: untranslated string: nameserver = Nameserver
 WARNING: untranslated string: no data = unknown string
+WARNING: untranslated string: no entries = No entries at the moment.
 WARNING: untranslated string: none = none
 WARNING: untranslated string: not a valid dh key = Not a valid Diffie-Hellman \
parameters file. Please use a length of 2048, 3072 or 4096 bits and the PKCS#3 \
format.  WARNING: untranslated string: not affected = Not Affected
@@ -1213,6 +1217,7 @@ WARNING: untranslated string: outgoing firewall p2p allow = \
Using the P2P protoc  WARNING: untranslated string: outgoing firewall p2p deny = \
Using the P2P protocol is forbidden  WARNING: untranslated string: outgoing overhead \
in bytes per second = Outgoing Overhead  WARNING: untranslated string: ovpn add conf \
= Additional configuration +WARNING: untranslated string: ovpn connection name = \
Connection Name  WARNING: untranslated string: ovpn crypt options = Cryptographic \
options  WARNING: untranslated string: ovpn dh = Diffie-Hellman parameters length
 WARNING: untranslated string: ovpn dh new key = Generate new Diffie-Hellman \
parameters @@ -1229,6 +1234,7 @@ WARNING: untranslated string: ovpn no connections = \
No active OpenVPN connection  WARNING: untranslated string: ovpn port in root range = \
A port number of 1024 or higher is required.  WARNING: untranslated string: ovpn \
routes push = 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 = Route push options +WARNING: \
untranslated string: ovpn rw connection log = OpenVPN Roadwarrior Connections Log  \
WARNING: untranslated string: ovpn tls auth = TLS Channel Protection:  WARNING: \
untranslated string: ovpn warning rfc3280 = Your host certificate is not RFC3280 \
compliant. <br>Please update to the latest IPFire version and generate as soon as \
possible a new root and host certificate.</br><br>All OpenVPN clients needs then to \
be renewed!</br>  WARNING: untranslated string: p2p block = P2P networks
@@ -1253,6 +1259,7 @@ WARNING: untranslated string: ptr = PTR
 WARNING: untranslated string: qos enter bandwidths = You will need to enter your \
downstream and upstream bandwidth!  WARNING: untranslated string: random number \
generator daemon = Random Number Generator Daemon  WARNING: untranslated string: rdns \
= rDNS +WARNING: untranslated string: received = Received
 WARNING: untranslated string: red1 = RED
 WARNING: untranslated string: required field = Required field
 WARNING: untranslated string: route config changed = unknown string
@@ -1262,6 +1269,7 @@ WARNING: untranslated string: routing table = unknown string
 WARNING: untranslated string: samba join a domain = Join a domain
 WARNING: untranslated string: samba join domain = Join domain
 WARNING: untranslated string: search = Search
+WARNING: untranslated string: sent = Sent
 WARNING: untranslated string: server restart = You are not able to save any changes \
while the OpenVPN server is running.  WARNING: untranslated string: show dh = Show \
Diffie-Hellman parameters  WARNING: untranslated string: show tls-auth key = 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 mssfix 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 assignment \
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 = unknown string
-WARNING: untranslated string: Captive clients = unknown string
-WARNING: untranslated string: Scan for Songs = unknown string
-WARNING: untranslated string: bytes = unknown string
-WARNING: untranslated string: dns = unknown string
 WARNING: untranslated string: fwhost cust geoipgrp = unknown string
 WARNING: untranslated string: fwhost err hostip = unknown string
 WARNING: untranslated string: guardian block a host = unknown string
@@ -844,11 +838,7 @@ WARNING: untranslated string: guardian logtarget_file = unknown \
string  WARNING: untranslated string: guardian logtarget_syslog = unknown string
 WARNING: untranslated string: guardian no entries = unknown string
 WARNING: untranslated string: guardian service = unknown string
-WARNING: untranslated string: info messages = unknown string
-WARNING: untranslated string: no data = unknown string
 WARNING: untranslated string: pakfire ago = ago.
 WARNING: untranslated string: route config changed = unknown string
 WARNING: untranslated string: routing config added = unknown string
 WARNING: untranslated string: routing config changed = unknown string
-WARNING: untranslated string: routing table = unknown string
-WARNING: untranslated string: vpn statistics n2n = 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 = Block
 WARNING: untranslated string: broken = Broken
 WARNING: untranslated string: bytes = unknown string
 WARNING: untranslated string: check all = Check all
+WARNING: untranslated string: cpu frequency = CPU frequency
 WARNING: untranslated string: crypto error = Cryptographic error
 WARNING: untranslated string: crypto warning = Cryptographic warning
 WARNING: untranslated string: dangerous = Dangerous
@@ -842,6 +842,7 @@ WARNING: untranslated string: dhcp dns key name = Key Name
 WARNING: untranslated string: dhcp dns update = DNS Update
 WARNING: untranslated string: dhcp dns update algo = Algorithm
 WARNING: untranslated string: dhcp dns update secret = Secret
+WARNING: untranslated string: disconnected = Disconnected
 WARNING: untranslated string: dl client arch insecure = Download insecure Client \
Package (zip)  WARNING: untranslated string: dns = unknown string
 WARNING: untranslated string: dns check servers = Check DNS Servers
@@ -861,6 +862,7 @@ WARNING: untranslated string: dns use protocol for dns queries = \
Protocol for DN  WARNING: untranslated string: dnsforward dnssec disabled = DNSSEC \
Validation is disabled  WARNING: untranslated string: dnsforward forward_servers = \
Nameservers  WARNING: untranslated string: dnssec disabled warning = WARNING: DNSSEC \
has been disabled +WARNING: untranslated string: duration = Duration
 WARNING: untranslated string: eight hours = 8 Hours
 WARNING: untranslated string: email config = Configuration
 WARNING: untranslated string: email empty field = Empty field
@@ -883,6 +885,7 @@ WARNING: untranslated string: email usemail = Activate Mail \
Service  WARNING: untranslated string: emerging pro rules = Emergingthreats.net Pro \
Rules  WARNING: untranslated string: enable smt = Enable Simultaneous Multi-Threading \
(SMT)  WARNING: untranslated string: error = Error
+WARNING: untranslated string: error the to date has to be later than the from date = \
The to date has to be later than the from date!  WARNING: untranslated string: \
fallout zombieload ridl = Fallout/ZombieLoad/RIDL  WARNING: untranslated string: \
fifteen minutes = 15 Minutes  WARNING: untranslated string: firewall graph country = \
Firewall-Diagram (Country) @@ -1000,6 +1003,7 @@ WARNING: untranslated string: \
messages = Messages  WARNING: untranslated string: mitigated = Mitigated
 WARNING: untranslated string: mtu = MTU
 WARNING: untranslated string: no data = unknown string
+WARNING: untranslated string: no entries = No entries at the moment.
 WARNING: untranslated string: none = none
 WARNING: untranslated string: not affected = Not Affected
 WARNING: untranslated string: not validating = Not validating
@@ -1010,8 +1014,10 @@ WARNING: untranslated string: one year = One Year
 WARNING: untranslated string: outgoing compression in bytes per second = Outgoing \
compression  WARNING: untranslated string: outgoing overhead in bytes per second = \
Outgoing Overhead  WARNING: untranslated string: ovpn add conf = Additional \
configuration +WARNING: untranslated string: ovpn connection name = Connection Name
 WARNING: untranslated string: ovpn error dh = The Diffie-Hellman parameter needs to \
be in minimum 2048 bit! <br>Please generate or upload a new Diffie-Hellman parameter, \
this can be made below in the section "Diffie-Hellman parameters options".</br>  \
WARNING: untranslated string: ovpn error md5 = You host certificate uses MD5 for the \
signature which is not accepted anymore. <br>Please update to the latest IPFire \
version and generate a new root and host certificate.</br><br>All OpenVPN clients \
needs then to be renewed!</br> +WARNING: untranslated string: ovpn rw connection log \
= OpenVPN Roadwarrior Connections Log  WARNING: untranslated string: ovpn tls auth = \
TLS Channel Protection:  WARNING: untranslated string: ovpn warning rfc3280 = Your \
host certificate is not RFC3280 compliant. <br>Please update to the latest IPFire \
version and generate as soon as possible a new root and host certificate.</br><br>All \
OpenVPN clients needs then to be renewed!</br>  WARNING: untranslated string: pakfire \
invalid tree = Invalid repository selected @@ -1026,6 +1032,7 @@ WARNING: \
untranslated string: pptp route = PPTP Route  WARNING: untranslated string: processor \
vulnerability mitigations = Processor Vulnerability Mitigations  WARNING: \
untranslated string: ptr = PTR  WARNING: untranslated string: rdns = rDNS
+WARNING: untranslated string: received = Received
 WARNING: untranslated string: required field = Required field
 WARNING: untranslated string: route config changed = unknown string
 WARNING: untranslated string: routing config added = unknown string
@@ -1034,6 +1041,7 @@ WARNING: untranslated string: routing table = unknown string
 WARNING: untranslated string: samba join a domain = Join a domain
 WARNING: untranslated string: samba join domain = Join domain
 WARNING: untranslated string: search = Search
+WARNING: untranslated string: sent = Sent
 WARNING: untranslated string: smt disabled = Simultaneous Multi-Threading (SMT) is \
disabled  WARNING: untranslated string: smt enabled = Simultaneous Multi-Threading \
(SMT) is enabled  WARNING: untranslated string: smt not supported = Simultaneous \
                Multi-Threading (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 = Broken
 WARNING: untranslated string: bytes = unknown string
 WARNING: untranslated string: capabilities = Capabilities
 WARNING: untranslated string: check all = Check all
+WARNING: untranslated string: cpu frequency = CPU frequency
 WARNING: untranslated string: crypto error = Cryptographic error
 WARNING: untranslated string: crypto warning = Cryptographic warning
 WARNING: untranslated string: dangerous = Dangerous
@@ -842,6 +842,7 @@ WARNING: untranslated string: dhcp dns key name = Key Name
 WARNING: untranslated string: dhcp dns update = DNS Update
 WARNING: untranslated string: dhcp dns update algo = Algorithm
 WARNING: untranslated string: dhcp dns update secret = Secret
+WARNING: untranslated string: disconnected = Disconnected
 WARNING: untranslated string: dl client arch insecure = Download insecure Client \
Package (zip)  WARNING: untranslated string: dns = unknown string
 WARNING: untranslated string: dns check servers = Check DNS Servers
@@ -866,6 +867,7 @@ WARNING: untranslated string: dnssec not supported = DNSSEC Not \
supported  WARNING: untranslated string: dnssec validating = DNSSEC Validating
 WARNING: untranslated string: download tls-auth key = Download tls-auth key
 WARNING: untranslated string: drop outgoing = Log dropped outgoing packets
+WARNING: untranslated string: duration = Duration
 WARNING: untranslated string: eight hours = 8 Hours
 WARNING: untranslated string: email config = Configuration
 WARNING: untranslated string: email empty field = Empty field
@@ -888,6 +890,7 @@ WARNING: untranslated string: email usemail = Activate Mail \
Service  WARNING: untranslated string: emerging pro rules = Emergingthreats.net Pro \
Rules  WARNING: untranslated string: enable smt = Enable Simultaneous Multi-Threading \
(SMT)  WARNING: untranslated string: error = Error
+WARNING: untranslated string: error the to date has to be later than the from date = \
The to date has to be later than the from date!  WARNING: untranslated string: \
fallout zombieload ridl = Fallout/ZombieLoad/RIDL  WARNING: untranslated string: \
fifteen minutes = 15 Minutes  WARNING: untranslated string: firewall graph country = \
Firewall-Diagram (Country) @@ -1024,6 +1027,7 @@ WARNING: untranslated string: \
monitor interface = Monitor Interface  WARNING: untranslated string: mtu = MTU
 WARNING: untranslated string: nameserver = Nameserver
 WARNING: untranslated string: no data = unknown string
+WARNING: untranslated string: no entries = No entries at the moment.
 WARNING: untranslated string: none = none
 WARNING: untranslated string: not a valid dh key = Not a valid Diffie-Hellman \
parameters file. Please use a length of 2048, 3072 or 4096 bits and the PKCS#3 \
format.  WARNING: untranslated string: not affected = Not Affected
@@ -1035,6 +1039,7 @@ WARNING: untranslated string: one year = One Year
 WARNING: untranslated string: outgoing compression in bytes per second = Outgoing \
compression  WARNING: untranslated string: outgoing overhead in bytes per second = \
Outgoing Overhead  WARNING: untranslated string: ovpn add conf = Additional \
configuration +WARNING: untranslated string: ovpn connection name = Connection Name
 WARNING: untranslated string: ovpn crypt options = Cryptographic options
 WARNING: untranslated string: ovpn dh = Diffie-Hellman parameters length
 WARNING: untranslated string: ovpn dh new key = Generate new Diffie-Hellman \
parameters @@ -1044,6 +1049,7 @@ WARNING: untranslated string: ovpn error dh = The \
Diffie-Hellman parameter needs  WARNING: untranslated string: ovpn error md5 = You \
host certificate uses MD5 for the signature which is not accepted anymore. <br>Please \
update to the latest IPFire version and generate a new root and host \
certificate.</br><br>All OpenVPN clients needs then to be renewed!</br>  WARNING: \
untranslated string: ovpn generating the root and host certificates = Generating the \
root and host certificate can take a long time.  WARNING: untranslated string: ovpn \
ha = Hash algorithm +WARNING: untranslated string: ovpn rw connection log = OpenVPN \
Roadwarrior Connections Log  WARNING: untranslated string: ovpn tls auth = TLS \
Channel Protection:  WARNING: untranslated string: ovpn warning rfc3280 = Your host \
certificate is not RFC3280 compliant. <br>Please update to the latest IPFire version \
and generate as soon as possible a new root and host certificate.</br><br>All OpenVPN \
clients needs then to be renewed!</br>  WARNING: untranslated string: pakfire invalid \
tree = Invalid repository selected @@ -1059,6 +1065,7 @@ WARNING: untranslated \
string: processor vulnerability mitigations = Processor Vu  WARNING: untranslated \
string: ptr = PTR  WARNING: untranslated string: random number generator daemon = \
Random Number Generator Daemon  WARNING: untranslated string: rdns = rDNS
+WARNING: untranslated string: received = Received
 WARNING: untranslated string: required field = Required field
 WARNING: untranslated string: route config changed = unknown string
 WARNING: untranslated string: routing config added = unknown string
@@ -1067,6 +1074,7 @@ WARNING: untranslated string: routing table = unknown string
 WARNING: untranslated string: samba join a domain = Join a domain
 WARNING: untranslated string: samba join domain = Join domain
 WARNING: untranslated string: search = Search
+WARNING: untranslated string: sent = Sent
 WARNING: untranslated string: show dh = Show Diffie-Hellman parameters
 WARNING: untranslated string: show tls-auth key = Show tls-auth key
 WARNING: untranslated string: smt disabled = 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 = Count
 WARNING: untranslated string: countries = Countries
 WARNING: untranslated string: country codes and flags = Country Codes and Flags:
 WARNING: untranslated string: countrycode = Code
+WARNING: untranslated string: cpu frequency = CPU frequency
 WARNING: untranslated string: crypto error = Cryptographic error
 WARNING: untranslated string: crypto warning = Cryptographic warning
 WARNING: untranslated string: dangerous = Dangerous
@@ -818,6 +818,7 @@ WARNING: untranslated string: dhcp dns key name = Key Name
 WARNING: untranslated string: dhcp dns update = DNS Update
 WARNING: untranslated string: dhcp dns update algo = Algorithm
 WARNING: untranslated string: dhcp dns update secret = Secret
+WARNING: untranslated string: disconnected = Disconnected
 WARNING: untranslated string: dl client arch insecure = Download insecure Client \
Package (zip)  WARNING: untranslated string: dnat address = Firewall Interface
 WARNING: untranslated string: dns = unknown string
@@ -856,6 +857,7 @@ WARNING: untranslated string: drop action1 = Default behaviour of \
(outgoing) fir  WARNING: untranslated string: drop action2 = Default behaviour of \
(input) firewall  WARNING: untranslated string: drop forward = Log dropped forward \
packets  WARNING: untranslated string: drop outgoing = Log dropped outgoing packets
+WARNING: untranslated string: duration = Duration
 WARNING: untranslated string: eight hours = 8 Hours
 WARNING: untranslated string: email config = Configuration
 WARNING: untranslated string: email empty field = Empty field
@@ -882,6 +884,7 @@ WARNING: untranslated string: encryption = Encryption:
 WARNING: untranslated string: entropy = Entropy
 WARNING: untranslated string: entropy graphs = Entropy Graphs
 WARNING: untranslated string: error = Error
+WARNING: untranslated string: error the to date has to be later than the from date = \
The to date has to be later than the from date!  WARNING: untranslated string: \
fallout zombieload ridl = Fallout/ZombieLoad/RIDL  WARNING: untranslated string: \
fifteen minutes = 15 Minutes  WARNING: untranslated string: fireinfo ipfire version = \
IPFire version @@ -1188,6 +1191,7 @@ WARNING: untranslated string: most preferred = \
most preferred  WARNING: untranslated string: mtu = MTU
 WARNING: untranslated string: nameserver = Nameserver
 WARNING: untranslated string: no data = unknown string
+WARNING: untranslated string: no entries = No entries at the moment.
 WARNING: untranslated string: none = none
 WARNING: untranslated string: not a valid dh key = Not a valid Diffie-Hellman \
parameters file. Please use a length of 2048, 3072 or 4096 bits and the PKCS#3 \
format.  WARNING: untranslated string: not affected = Not Affected
@@ -1213,6 +1217,7 @@ WARNING: untranslated string: outgoing firewall p2p allow = \
Using the P2P protoc  WARNING: untranslated string: outgoing firewall p2p deny = \
Using the P2P protocol is forbidden  WARNING: untranslated string: outgoing overhead \
in bytes per second = Outgoing Overhead  WARNING: untranslated string: ovpn add conf \
= Additional configuration +WARNING: untranslated string: ovpn connection name = \
Connection Name  WARNING: untranslated string: ovpn crypt options = Cryptographic \
options  WARNING: untranslated string: ovpn dh = Diffie-Hellman parameters length
 WARNING: untranslated string: ovpn dh new key = Generate new Diffie-Hellman \
parameters @@ -1229,6 +1234,7 @@ WARNING: untranslated string: ovpn no connections = \
No active OpenVPN connection  WARNING: untranslated string: ovpn port in root range = \
A port number of 1024 or higher is required.  WARNING: untranslated string: ovpn \
routes push = 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 = Route push options +WARNING: \
untranslated string: ovpn rw connection log = OpenVPN Roadwarrior Connections Log  \
WARNING: untranslated string: ovpn tls auth = TLS Channel Protection:  WARNING: \
untranslated string: ovpn warning rfc3280 = Your host certificate is not RFC3280 \
compliant. <br>Please update to the latest IPFire version and generate as soon as \
possible a new root and host certificate.</br><br>All OpenVPN clients needs then to \
be renewed!</br>  WARNING: untranslated string: p2p block = P2P networks
@@ -1253,6 +1259,7 @@ WARNING: untranslated string: ptr = PTR
 WARNING: untranslated string: qos enter bandwidths = You will need to enter your \
downstream and upstream bandwidth!  WARNING: untranslated string: random number \
generator daemon = Random Number Generator Daemon  WARNING: untranslated string: rdns \
= rDNS +WARNING: untranslated string: received = Received
 WARNING: untranslated string: red1 = RED
 WARNING: untranslated string: required field = Required field
 WARNING: untranslated string: route config changed = unknown string
@@ -1262,6 +1269,7 @@ WARNING: untranslated string: routing table = unknown string
 WARNING: untranslated string: samba join a domain = Join a domain
 WARNING: untranslated string: samba join domain = Join domain
 WARNING: untranslated string: search = Search
+WARNING: untranslated string: sent = Sent
 WARNING: untranslated string: server restart = You are not able to save any changes \
while the OpenVPN server is running.  WARNING: untranslated string: show dh = Show \
Diffie-Hellman parameters  WARNING: untranslated string: show tls-auth key = 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 = Count
 WARNING: untranslated string: countries = Countries
 WARNING: untranslated string: country codes and flags = Country Codes and Flags:
 WARNING: untranslated string: countrycode = Code
+WARNING: untranslated string: cpu frequency = CPU frequency
 WARNING: untranslated string: crypto error = Cryptographic error
 WARNING: untranslated string: crypto warning = Cryptographic warning
 WARNING: untranslated string: dangerous = Dangerous
@@ -821,6 +821,7 @@ WARNING: untranslated string: dhcp dns key name = Key Name
 WARNING: untranslated string: dhcp dns update = DNS Update
 WARNING: untranslated string: dhcp dns update algo = Algorithm
 WARNING: untranslated string: dhcp dns update secret = Secret
+WARNING: untranslated string: disconnected = Disconnected
 WARNING: untranslated string: disk access per = Disk Access per
 WARNING: untranslated string: dl client arch insecure = Download insecure Client \
Package (zip)  WARNING: untranslated string: dnat address = Firewall Interface
@@ -860,6 +861,7 @@ WARNING: untranslated string: drop action1 = Default behaviour of \
(outgoing) fir  WARNING: untranslated string: drop action2 = Default behaviour of \
(input) firewall  WARNING: untranslated string: drop forward = Log dropped forward \
packets  WARNING: untranslated string: drop outgoing = Log dropped outgoing packets
+WARNING: untranslated string: duration = Duration
 WARNING: untranslated string: eight hours = 8 Hours
 WARNING: untranslated string: email config = Configuration
 WARNING: untranslated string: email empty field = Empty field
@@ -886,6 +888,7 @@ WARNING: untranslated string: encryption = Encryption:
 WARNING: untranslated string: entropy = Entropy
 WARNING: untranslated string: entropy graphs = Entropy Graphs
 WARNING: untranslated string: error = Error
+WARNING: untranslated string: error the to date has to be later than the from date = \
The to date has to be later than the from date!  WARNING: untranslated string: \
extrahd because there is already a device mounted = , because there is already a \
device mounted  WARNING: untranslated string: extrahd cant umount = Can't umount
 WARNING: untranslated string: extrahd install or load driver = If your device isn't \
listed here, you need to install or load the driver.<br />If you can see your device \
but no partitions you have to create them first. @@ -1190,6 +1193,7 @@ WARNING: \
untranslated string: most preferred = most preferred  WARNING: untranslated string: \
mtu = MTU  WARNING: untranslated string: nameserver = Nameserver
 WARNING: untranslated string: no data = unknown string
+WARNING: untranslated string: no entries = No entries at the moment.
 WARNING: untranslated string: none = none
 WARNING: untranslated string: not a valid dh key = Not a valid Diffie-Hellman \
parameters file. Please use a length of 2048, 3072 or 4096 bits and the PKCS#3 \
format.  WARNING: untranslated string: not affected = Not Affected
@@ -1214,6 +1218,7 @@ WARNING: untranslated string: outgoing firewall access = \
Outgoing Firewall Acces  WARNING: untranslated string: outgoing overhead in bytes per \
second = Outgoing Overhead  WARNING: untranslated string: outgoing traffic in bytes \
per second = Outgoing Traffic  WARNING: untranslated string: ovpn add conf = \
Additional configuration +WARNING: untranslated string: ovpn connection name = \
Connection Name  WARNING: untranslated string: ovpn crypt options = Cryptographic \
options  WARNING: untranslated string: ovpn dh = Diffie-Hellman parameters length
 WARNING: untranslated string: ovpn dh new key = Generate new Diffie-Hellman \
parameters @@ -1226,6 +1231,7 @@ WARNING: untranslated string: ovpn ha = Hash \
algorithm  WARNING: untranslated string: ovpn mgmt in root range = A port number of \
1024 or higher is required.  WARNING: untranslated string: ovpn no connections = No \
active OpenVPN connections  WARNING: untranslated string: ovpn port in root range = A \
port number of 1024 or higher is required. +WARNING: untranslated string: ovpn rw \
connection log = OpenVPN Roadwarrior Connections Log  WARNING: untranslated string: \
ovpn tls auth = TLS Channel Protection:  WARNING: untranslated string: ovpn warning \
rfc3280 = Your host certificate is not RFC3280 compliant. <br>Please update to the \
latest IPFire version and generate as soon as possible a new root and host \
certificate.</br><br>All OpenVPN clients needs then to be renewed!</br>  WARNING: \
untranslated string: p2p block = P2P networks @@ -1249,6 +1255,7 @@ WARNING: \
untranslated string: ptr = PTR  WARNING: untranslated string: qos enter bandwidths = \
You will need to enter your downstream and upstream bandwidth!  WARNING: untranslated \
string: random number generator daemon = Random Number Generator Daemon  WARNING: \
untranslated string: rdns = rDNS +WARNING: untranslated string: received = Received
 WARNING: untranslated string: red1 = RED
 WARNING: untranslated string: required field = Required field
 WARNING: untranslated string: route config changed = unknown string
@@ -1258,6 +1265,7 @@ WARNING: untranslated string: routing table = unknown string
 WARNING: untranslated string: samba join a domain = Join a domain
 WARNING: untranslated string: samba join domain = Join domain
 WARNING: untranslated string: search = Search
+WARNING: untranslated string: sent = Sent
 WARNING: untranslated string: server restart = You are not able to save any changes \
while the OpenVPN server is running.  WARNING: untranslated string: show dh = Show \
Diffie-Hellman parameters  WARNING: untranslated string: show tls-auth key = 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 = Web Proxy \
Auto-Discovery Pro  WARNING: untranslated string: advproxy wpad view pac = Open PAC \
File  WARNING: untranslated string: broken = Broken
 WARNING: untranslated string: bytes = unknown string
+WARNING: untranslated string: cpu frequency = CPU frequency
 WARNING: untranslated string: crypto error = Cryptographic error
 WARNING: untranslated string: crypto warning = Cryptographic warning
 WARNING: untranslated string: dangerous = Dangerous
 WARNING: untranslated string: default IP address = Default IP Address
+WARNING: untranslated string: disconnected = Disconnected
 WARNING: untranslated string: dns = unknown string
 WARNING: untranslated string: dns check servers = Check DNS Servers
 WARNING: untranslated string: dns configuration = DNS Configuration
@@ -837,11 +838,13 @@ WARNING: untranslated string: dns use isp assigned nameservers \
= Use ISP-assigne  WARNING: untranslated string: dns use protocol for dns queries = \
Protocol for DNS queries  WARNING: untranslated string: dnsforward dnssec disabled = \
DNSSEC Validation is disabled  WARNING: untranslated string: dnsforward \
forward_servers = Nameservers +WARNING: untranslated string: duration = Duration
 WARNING: untranslated string: email tls explicit = explicit (STARTTLS)
 WARNING: untranslated string: email tls implicit = implicit (TLS)
 WARNING: untranslated string: emerging pro rules = Emergingthreats.net Pro Rules
 WARNING: untranslated string: enable smt = Enable Simultaneous Multi-Threading (SMT)
 WARNING: untranslated string: error = Error
+WARNING: untranslated string: error the to date has to be later than the from date = \
The to date has to be later than the from date!  WARNING: untranslated string: \
fallout zombieload ridl = Fallout/ZombieLoad/RIDL  WARNING: untranslated string: \
force enable = Forced  WARNING: untranslated string: foreshadow = Foreshadow
@@ -918,10 +921,13 @@ WARNING: untranslated string: meltdown = Meltdown
 WARNING: untranslated string: mitigated = Mitigated
 WARNING: untranslated string: mtu = MTU
 WARNING: untranslated string: no data = unknown string
+WARNING: untranslated string: no entries = No entries at the moment.
 WARNING: untranslated string: not affected = Not Affected
 WARNING: untranslated string: not validating = Not validating
+WARNING: untranslated string: ovpn connection name = Connection Name
 WARNING: untranslated string: ovpn error dh = The Diffie-Hellman parameter needs to \
be in minimum 2048 bit! <br>Please generate or upload a new Diffie-Hellman parameter, \
this can be made below in the section "Diffie-Hellman parameters options".</br>  \
WARNING: untranslated string: ovpn error md5 = You host certificate uses MD5 for the \
signature which is not accepted anymore. <br>Please update to the latest IPFire \
version and generate a new root and host certificate.</br><br>All OpenVPN clients \
needs then to be renewed!</br> +WARNING: untranslated string: ovpn rw connection log \
= OpenVPN Roadwarrior Connections Log  WARNING: untranslated string: ovpn tls auth = \
TLS Channel Protection:  WARNING: untranslated string: ovpn warning rfc3280 = Your \
host certificate is not RFC3280 compliant. <br>Please update to the latest IPFire \
version and generate as soon as possible a new root and host certificate.</br><br>All \
OpenVPN clients needs then to be renewed!</br>  WARNING: untranslated string: pakfire \
invalid tree = Invalid repository selected @@ -932,10 +938,12 @@ WARNING: \
untranslated string: pakfire tree unstable = Unstable  WARNING: untranslated string: \
please reboot to apply your changes = Please reboot to apply your changes  WARNING: \
untranslated string: processor vulnerability mitigations = Processor Vulnerability \
Mitigations  WARNING: untranslated string: ptr = PTR
+WARNING: untranslated string: received = Received
 WARNING: untranslated string: route config changed = unknown string
 WARNING: untranslated string: routing config added = unknown string
 WARNING: untranslated string: routing config changed = unknown string
 WARNING: untranslated string: routing table = unknown string
+WARNING: untranslated string: sent = Sent
 WARNING: untranslated string: smt disabled = Simultaneous Multi-Threading (SMT) is \
disabled  WARNING: untranslated string: smt enabled = Simultaneous Multi-Threading \
(SMT) is enabled  WARNING: untranslated string: smt not supported = Simultaneous \
                Multi-Threading (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' => 'OpenVPN',
 'ovpn add conf' => 'Erweiterte Konfiguration',
 'ovpn con stat' => 'OpenVPN Verbindungs-Statistik',
-'ovpn connection name' => 'Verbindungs-Name',
 'ovpn config' => 'OVPN-Konfiguration',
+'ovpn connection name' => 'Verbindungs-Name',
 'ovpn crypt options' => 'Kryptografieoptionen',
 'ovpn device' => 'OpenVPN-Gerät',
 'ovpn dh' => 'Diffie-Hellman-Parameter-Länge',
@@ -2085,7 +2085,7 @@
 'reboot sure' => 'Sind Sie sicher, dass Sie neustarten wollen?',
 'rebooting' => 'Starte neu ...',
 'rebooting ipfire' => 'Starte IPFire neu',
-'recieved' => 'Empfangen',
+'received' => 'Empfangen',
 'reconnect' => 'Neu Verbinden',
 'reconnection' => 'Wiederverbindung',
 'red' => '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' => 'No Alcatel USB firmware. Please upload.',
 'no cfg upload' => 'No data was uploaded',
 'no dhcp lease' => 'No DHCP lease has been acquired',
-'no entries' => 'No entries at the moment.',
 'no eciadsl synch.bin file' => 'No ECI ADSL synch.bin file. Please upload.',
+'no entries' => 'No entries at the moment.',
 'no filter pass' => 'Enter the standard class for non-filtered packets.',
 'no fritzdsl driver' => 'No Fritz!DSL driver.  Please upload.',
 'no hardware random number generator' => 'This system has no source for entropy.',
@@ -1923,8 +1923,8 @@
 'ovpn' => 'OpenVPN',
 'ovpn add conf' => 'Additional configuration',
 'ovpn con stat' => 'OpenVPN Connection Statistics',
-'ovpn connection name' => 'Connection Name',
 'ovpn config' => 'OVPN-Config',
+'ovpn connection name' => 'Connection Name',
 'ovpn crypt options' => 'Cryptographic options',
 'ovpn device' => 'OpenVPN device:',
 'ovpn dh' => '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' => '1 jour',
 'Captive 1month' => '1 mois',
 'Captive 1week' => '1 semaine',
+'Captive ACTIVATE' => 'ACTIVER',
 'Captive GAIN ACCESS' => 'ACCEDER',
 'Captive WiFi coupon' => 'Coupon wifi',
 'Captive activate' => 'Activation',
@@ -24,6 +25,7 @@
 'Captive brand color' => 'Couleur de fond personnalisée',
 'Captive branding' => 'Personnalisation',
 'Captive client session expiry time' => 'Délai d\'expiration de la session',
+'Captive clients' => 'Clients',
 'Captive config' => 'Paramètres',
 'Captive coupon' => 'Coupon',
 'Captive delete logo' => 'Supprimer le logo',
@@ -33,6 +35,7 @@
 'Captive export coupons' => 'Export de coupons',
 'Captive generate coupons' => 'Création de coupons',
 'Captive generated coupon no' => 'Nb de coupons créés',
+'Captive genvoucher' => 'Générer un coupon',
 'Captive heading terms' => 'Termes &amp; conditions',
 'Captive heading voucher' => 'Coupon ou code d\accès',
 'Captive invalid coupon' => 'Vous avez saisi un code de coupon invalide. Veuillez \
réessayer.', @@ -42,6 +45,8 @@
 'Captive issued coupons' => 'Coupons émis',
 'Captive logo uploaded' => 'Logo téléchargé',
 'Captive logo_set' => 'Logo actuel',
+'Captive logo_upload' => 'Télécharger le logo',
+'Captive logo_upload1' => '(PNG, min. 1280x400, max. 1920x800)',
 'Captive mac' => 'Adresse MAC',
 'Captive noexpiretime' => 'Aucune plage de temps de connexion valide donnée',
 'Captive nolimit' => 'illimité',
@@ -97,9 +102,9 @@
 'MB written' => 'Mo écrits',
 'MTU' => 'Taille du MTU :',
 'MTU settings' => 'Paramètres MTU :',
-'Number of Countries for the pie chart' => 'Nombre de pays pour le graphique \
                circulaire ',
-'Number of IPs for the pie chart' => 'Nombre d\'IPs pour le graphique circulaire ',
-'Number of Ports for the pie chart' => 'Nombre de ports pour le graphique circulaire \
', +'Number of Countries for the pie chart' => 'Nombre de pays du graphique \
circulaire ', +'Number of IPs for the pie chart' => 'Nombre d\'IPs du graphique \
circulaire ', +'Number of Ports for the pie chart' => 'Nombre de ports du graphique \
circulaire ',  'OVPN' => 'OpenVPN',
 'OpenVPN' => 'OpenVPN',
 'Pages' => 'Pages',
@@ -111,6 +116,7 @@
 'Remote VPN IP' => 'Sous-réseau VPN (ex. 10.0.10.0/255.255.255.0) :',
 'Resolv' => 'Résoudre/réessayer :',
 'Scan for Files' => 'Recherche de fichiers',
+'Scan for Songs' => 'Recherche de chansons',
 'Scan from Directory' => 'Recherche depuis le répertoire',
 'Set time on boot' => 'Forcer le réglage de l\'heure système au démarrage',
 'Subclass' => 'Sous-classe',
@@ -154,6 +160,7 @@
 'add xtaccess' => 'Ajouter un accès externe',
 'add-route' => 'Ajouter route supplémentaire',
 'added from dhcp lease list' => 'Ajouter à partir de la liste de baux DHCP',
+'addon' => 'Module complémentaire',
 'addons' => 'Modules complémentaires',
 'admin user password has been changed' => 'Le mot de passe admin a été changé.',
 'admin users' => 'Utilisateur avec droits super-utilisateur',
@@ -163,10 +170,10 @@
 'adsl settings' => 'Paramètres ADSL',
 'advanced' => 'Avancé',
 'advanced server' => 'Options avancées du serveur',
-'advproxy AUTH always required' => 'Exiger l\'authentification pour un accès sans \
                restriction des adresses sources',
-'advproxy AUTH auth cache TTL' => 'Cache d\'authentification TTL (en minutes)',
+'advproxy AUTH always required' => 'Exiger l\'authentification pour un accès sans \
restriction des adresses sources ', +'advproxy AUTH auth cache TTL' => 'Cache \
d\'authentification TTL (en minutes) ',  'advproxy AUTH global settings' => \
                'Paramètres d\'authentification global',
-'advproxy AUTH limit of IP addresses' => 'Limite d\'adresses IP par utilisateur',
+'advproxy AUTH limit of IP addresses' => 'Limite d\'adresses IP par utilisateur ',
 'advproxy AUTH method' => 'Méthode d\'authentification',
 'advproxy AUTH method ident' => 'identd',
 'advproxy AUTH method ldap' => 'LDAP',
@@ -175,50 +182,50 @@
 'advproxy AUTH method ntlm' => 'Domaine Windows NT4',
 'advproxy AUTH method ntlm auth' => 'Active Directory Windows',
 'advproxy AUTH method radius' => 'RADIUS',
-'advproxy AUTH no auth' => 'Domaines sans authentification (un par ligne)',
-'advproxy AUTH number of auth processes' => 'Nombre de processus \
                d\'authentification',
-'advproxy AUTH realm' => 'Invite du domaine d\'authentification',
+'advproxy AUTH no auth' => 'Domaines sans authentification (un par ligne) ',
+'advproxy AUTH number of auth processes' => 'Nombre de processus d\'authentification \
', +'advproxy AUTH realm' => 'Invite du domaine d\'authentification ',
 'advproxy AUTH user IP cache TTL' => 'Cache utilisateur/IP TTL (en minutes)',
 'advproxy IDENT authorized users' => 'Utilisateurs autorisés (un par ligne)',
-'advproxy IDENT aware hosts' => 'Identification des hôtes courants (un par ligne)',
+'advproxy IDENT aware hosts' => 'Identification des hôtes courants (un par ligne) \
',  'advproxy IDENT identd settings' => 'Paramètres communs identd',
-'advproxy IDENT required' => 'Exiger l\'authentification identd',
-'advproxy IDENT timeout' => 'Limite de temps d\'identification (en secondes)',
+'advproxy IDENT required' => 'Exiger l\'authentification identd ',
+'advproxy IDENT timeout' => 'Limite de temps d\'identification (en secondes) ',
 'advproxy IDENT unauthorized users' => 'Utilisateurs non autorisés (un par ligne)',
-'advproxy IDENT use negative access list' => 'Utilisation interdite du contrôle \
                d\'accès',
-'advproxy IDENT use positive access list' => 'Utilisation autorisée du contrôle \
d\'accès', +'advproxy IDENT use negative access list' => 'Utilisation interdite du \
contrôle d\'accès ', +'advproxy IDENT use positive access list' => 'Utilisation \
autorisée du contrôle d\'accès ',  'advproxy IDENT user based access restrictions' \
=> 'Définition d\'utilisateurs en fonction des restrictions d\'accès',  'advproxy \
LDAP ADS' => 'Active Directory',  'advproxy LDAP NDS' => 'Novell eDirectory',
 'advproxy LDAP V2' => 'LDAP version 2',
 'advproxy LDAP V3' => 'LDAP version 3',
 'advproxy LDAP auth' => 'Authentification LDAP',
-'advproxy LDAP basedn' => 'Nom absolu LDAP',
-'advproxy LDAP binddn password' => 'Mot de passe Bind DN',
+'advproxy LDAP basedn' => 'Nom absolu LDAP ',
+'advproxy LDAP binddn password' => 'Mot de passe Bind DN ',
 'advproxy LDAP binddn settings' => 'Paramètres lien nom utilisateur et mot de passe \
                LDAP',
-'advproxy LDAP binddn username' => 'Nom utilisateur Bind DN',
+'advproxy LDAP binddn username' => 'Nom utilisateur Bind DN ',
 'advproxy LDAP common settings' => 'Paramètres communs LDAP',
 'advproxy LDAP group access control' => 'Contrôle d\accès basé sur le groupe',
-'advproxy LDAP group required' => 'Groupe requis',
-'advproxy LDAP port' => 'Port',
-'advproxy LDAP server' => 'Serveur LDAP',
-'advproxy LDAP type' => 'Type LDAP',
+'advproxy LDAP group required' => 'Groupe requis ',
+'advproxy LDAP port' => 'Port ',
+'advproxy LDAP server' => 'Serveur LDAP ',
+'advproxy LDAP type' => 'Type LDAP ',
 'advproxy MIME block types' => ' Bloquer ces types MIME (un par ligne)',
 'advproxy MIME filter' => 'Filtre de type MIME',
 'advproxy NCSA auth' => 'Authentification des utilisateurs locaux',
 'advproxy NCSA create user' => 'Créer utilisateur',
-'advproxy NCSA group' => 'Groupe',
+'advproxy NCSA group' => 'Groupe ',
 'advproxy NCSA group membership' => 'Appartenance au groupe',
-'advproxy NCSA grp disabled' => 'Désactiver',
+'advproxy NCSA grp disabled' => 'Désactivé',
 'advproxy NCSA grp extended' => 'Etendu',
 'advproxy NCSA grp standard' => 'Standard',
-'advproxy NCSA min password length' => 'Longueur minimale du mot de passe',
+'advproxy NCSA min password length' => 'Longueur minimale du mot de passe ',
 'advproxy NCSA no accounts' => 'Aucun compte utilisateur disponible',
-'advproxy NCSA password' => 'Mot de passe',
+'advproxy NCSA password' => 'Mot de passe ',
 'advproxy NCSA password confirm' => 'Mot de passe (confirmation) ',
 'advproxy NCSA redirector bypass' => 'Redirection par contournement pour les membres \
du groupe',  'advproxy NCSA update user' => 'Mise à jour utilisateur',
-'advproxy NCSA user accounts' => 'Comptes utilisateurs',
+'advproxy NCSA user accounts' => 'Comptes utilisateurs ',
 'advproxy NCSA user management' => 'Gestion des utilisateurs',
 'advproxy NCSA username' => 'Nom utilisateur ',
 'advproxy NTLM BDC hostname' => 'Nom d\'hôte BDC',
@@ -234,14 +241,14 @@
 'advproxy NTLM use positive access list' => 'Utilisation autorisée de contrôle \
d\'accès',  'advproxy NTLM user based access restrictions' => 'Définition \
d\'utilisateurs en fonction des restrictions d\'accès',  'advproxy RADIUS authorized \
                users' => 'Utilisateurs autorisés (un par ligne)',
-'advproxy RADIUS identifier' => 'Identifiant',
-'advproxy RADIUS port' => 'Port',
+'advproxy RADIUS identifier' => 'Identifiant ',
+'advproxy RADIUS port' => 'Port ',
 'advproxy RADIUS radius settings' => 'Paramètres communs RADIUS',
-'advproxy RADIUS secret' => 'Secret partagé',
-'advproxy RADIUS server' => 'Serveur RADIUS',
+'advproxy RADIUS secret' => 'Secret partagé ',
+'advproxy RADIUS server' => 'Serveur RADIUS ',
 'advproxy RADIUS unauthorized users' => 'Utilisateurs non autorisés (un par \
                ligne)',
-'advproxy RADIUS use negative access list' => 'Utilisation interdite de contrôle \
                d\'accès',
-'advproxy RADIUS use positive access list' => 'Utilisation autorisée de contrôle \
d\'accès', +'advproxy RADIUS use negative access list' => 'Utilisation interdite de \
contrôle d\'accès ', +'advproxy RADIUS use positive access list' => 'Utilisation \
autorisée de contrôle d\'accès ',  'advproxy RADIUS user based access \
restrictions' => 'Définition d\'utilisateurs en fonction des restrictions \
d\'accès',  'advproxy UA enable filter' => 'Activer la vérification du navigateur \
',  'advproxy access' => 'Accès',
@@ -339,8 +346,8 @@
 'advproxy max upload size' => 'Volume d\'envoi maximal (Ko) ',
 'advproxy memory replacement policy' => 'Politique de remplacement de mémoire ',
 'advproxy min size' => 'Volume d\'objet minimal (Ko) ',
-'advproxy mode allow' => 'autoriser',
-'advproxy mode deny' => 'interdire',
+'advproxy mode allow' => 'Autorisé',
+'advproxy mode deny' => 'Interdit',
 'advproxy monday' => 'Lun',
 'advproxy network based access' => 'Contrôle d\'accès réseau',
 'advproxy no cache sites' => 'Ne pas mettre en cache ces domaines (un par ligne) ',
@@ -375,7 +382,7 @@
 'advproxy throttle mmedia' => 'Multimédia ',
 'advproxy throttling per host on' => 'Limite par hôte',
 'advproxy throttling total on' => 'Limite globale',
-'advproxy throttling unlimited' => 'illimité',
+'advproxy throttling unlimited' => 'Illimitée',
 'advproxy thursday' => 'Jeu',
 'advproxy time restrictions' => 'Restrictions horaires',
 'advproxy to' => 'A',
@@ -433,7 +440,6 @@
 'alt system' => 'Système',
 'alt vpn' => 'VPNs',
 'and' => 'Et',
-'ansi t1.483' => 'A EFFACER',
 'apcupsd' => 'Statut UPS-APC',
 'application layer gateways' => 'Passerelles de couche d\'application',
 'apply' => 'Appliquer maintenant',
@@ -497,8 +503,6 @@
 'basic options' => 'Options de base',
 'beep when ppp connects or disconnects' => 'Emettre un son quand IPFire se connecte \
ou se déconnecte',  'behind a proxy' => 'Derrière un proxy :',
-'bewan adsl pci st' => 'A SUPPRIMER',
-'bewan adsl usb' => 'A SUPPRIMER',
 'bit' => 'bit',
 'bitrate' => 'Echantillonage',
 'bleeding rules' => 'Bleeding Edge règles de Snort',
@@ -512,6 +516,7 @@
 'broken pipe' => 'Lien rompu',
 'buffered memory' => 'Mémoire tampon',
 'buffers' => 'tampons',
+'bytes' => 'Octets',
 'bytes per second' => 'Octets par seconde',
 'bytes received' => 'Octets reçus',
 'bytes sent' => 'Octets envoyés',
@@ -599,9 +604,10 @@
 'ccd err routeovpn2' => 'Déjà poussé depuis le serveur OpenVPN.',
 'ccd hint' => 'Sur cette page, vous pouvez définir des réseaux statiques à partir \
desquels les clients nomades peuvent obtenir des affectations d\'adresses IP fixes.', \
                'ccd invalid' => 'Invalide.',
-'ccd iroute' => 'IPFire a accès à ces réseaux sur le site du client',
-'ccd iroute2' => 'Le client a accès à ces réseaux sur le site d\'IPFire',
+'ccd iroute' => 'IPFire accède à ces réseaux sur le site du client',
+'ccd iroute2' => 'Le client accède à ces réseaux sur le site d\'IPFire',
 'ccd iroutehint' => 'Attention ! Si vous modifiez ces paramètres, vous devez \
redémarrer le serveur OpenVPN pour que les modifications prennent effet !', +'ccd \
maxclients' => 'Adresses possibles',  'ccd modify' => 'Changer de réseau',
 'ccd name' => 'Nom',
 'ccd net' => 'Pools adresses IP statiques',
@@ -613,7 +619,7 @@
 'cert' => 'Certif',
 'certificate' => 'Certificat',
 'certificate authorities' => 'Autorité de certification',
-'certificate does not have a valid ca associated with it' => 'Le certificat n\'est \
pas associé à une CA valide.', +'certificate does not have a valid ca associated \
with it' => 'Le certificat n\'est pas associé à une autorité de certification \
valide.',  'certificate file move failed' => 'Le déplacement du fichier certificat a \
échoué',  'cfg restart' => 'Un redémarrage est conseillé après restauration \
d\'une configuration archivée.',  'chain' => 'Chaîne',
@@ -656,7 +662,7 @@
 'connection type' => 'Type de connexion',
 'connection type is invalid' => 'Le type de connexion est non valide.',
 'connections' => 'Connexions',
-'connections are associated with this ca.  deleting the ca will delete these \
connections as well.' => 'Les connexions sont associées avec ce CA. La suppression \
de ce CA entraînera la suppression des connexions associées.', +'connections are \
associated with this ca.  deleting the ca will delete these connections as well.' => \
'Les connexions sont associées avec cette CA. La suppression de cette CA entraînera \
la suppression des connexions associées.',  'connscheduler' => 'Planificateur de \
connexion',  'core notice 1' => '<strong>Remarque :</strong> Il y a une mise à jour \
disponible de',  'core notice 2' => 'vers',
@@ -678,6 +684,7 @@
 'country' => 'Pays ',
 'country codes and flags' => 'Codes de pays et drapeaux :',
 'countrycode' => 'Code',
+'cpu frequency' => 'Fréquence CPU',
 'cpu frequency per' => 'Fréquence CPU par',
 'cpu idle usage' => 'Pourcentage d\'inactivité CPU',
 'cpu interrupt usage' => 'Utilisation des interruptions CPU',
@@ -820,7 +827,8 @@
 'directory writeable' => 'Ecriture possible dans ce répertoire',
 'disabled' => 'Arrêté',
 'disconnect' => 'OVPN stoppé / déconnecté',
-'disconnects' => 'Déconnecté',
+'disconnected' => 'Déconnecté',
+'disconnects' => 'Déconnexion',
 'disk access per' => 'Accès disque par',
 'disk usage' => 'Utilisation disque',
 'display' => 'Réglages',
@@ -836,6 +844,7 @@
 'dmz pinhole rule removed' => 'Règle DMZ pinhole supprimée; Redémarrage DMZ \
pinhole',  'dmzpinholes for same net not necessary' => 'Les DMZ Pinholes ne sont pas \
forcément dans le même réseau. Choisir différentes sources ou destinations \
réseau.',  'dnat address' => 'Interface pare-feu',
+'dns' => 'Système de noms de domaines',
 'dns address deleted' => 'Suppression effectuée !',
 'dns address deleted txt' => 'Les adresses du serveur DNS ont été supprimées avec \
succès.<br />Vous devez redémarrer ou reconnecter pour que les modifications \
prennent effet !',  'dns address done' => 'Les adresses du serveur DNS vont être \
sauvegardées.', @@ -849,7 +858,7 @@
 'dns error 0' => 'L\'adresse IP du <strong>premier</strong> serveur DNS n\'est pas \
valide, veuillez revoir votre saisie<br />La saisie de l\'adresse du \
<strong>second</strong> serveur DNS est valide.',  'dns error 01' => 'Les adresses IP \
du <strong>premier</strong> et du <strong>second</strong> serveur DNS ne sont pas \
valides, veuillez revoir vos saisies',  'dns error 1' => 'L\'adresse IP du \
<strong>second</strong> serveur DNS n\'est pas valide, veuillez revoir votre \
saisie<br />La saisie de l\'adresse du <strong>premier</strong> serveur DNS est \
                valide.',
-'dns forward disable dnssec' => 'Désactiver DNSSEC (dangereux)',
+'dns forward disable dnssec' => 'Désactiver DNSSEC (dangereux) ',
 'dns forwarding dnssec disabled notice' => '(DNSSEC désactivé)',
 'dns header' => 'Assigner les adresses du serveur DNS seulement pour le DHCP sur \
ROUGE0',  'dns isp assigned nameserver' => 'Serveur DNS attribué par le FAI',
@@ -935,6 +944,7 @@
 'duplicate ip bold' => 'Les adresses en double sont en <b>gras</b>',
 'duplicate mac' => 'Adresse MAC entrée en double',
 'duplicate name' => 'Ce nom est déjà utilisé veuillez en choisir un autre.',
+'duration' => 'Durée',
 'dyn dns source choice' => 'Le(s) fournisseur(s) de DNS dynamique(s) recevront une \
adresse d\'IPFire depuis :',  'dynamic dns' => 'DNS dynamique',
 'dynamic dns client' => 'Client DNS dynamique',
@@ -976,8 +986,8 @@
 'email testmail' => 'Envoyer un message de test',
 'email text' => 'Email de test depuis le service de mail IPFire',
 'email tls' => 'Utiliser une connexion chiffrée TLS',
-'email tls explicit' => 'explicite (STARTTLS)',
-'email tls implicit' => 'implicite (TLS)',
+'email tls explicit' => 'Explicite (STARTTLS)',
+'email tls implicit' => 'Implicite (TLS)',
 'email usemail' => 'Activation du service',
 'emailreportlevel' => 'Niveau de rapport des mails',
 'emerging pro rules' => 'Règles Pro de la communauté Emergingthreats.net',
@@ -995,14 +1005,14 @@
 'encrypted' => 'Chiffré',
 'encryption' => 'Chiffrement :',
 'end address' => 'Adresse de fin :',
-'enter ack class' => 'Entrez la classe ACK <br /> et cliquez sur \
                <i>Sauvegarder</i>.',
-'enter data' => 'Entrez vos réglages <br /> et cliquez sur <i>Sauvegarder</i>.',
+'enter ack class' => 'Saisissez la classe ACK <br /> et cliquez sur \
<i>Sauvegarder</i>.', +'enter data' => 'Saisissez vos réglages <br /> et cliquez sur \
<i>Sauvegarder</i>.',  'entropy' => 'Courbe d\'efficacité (entropie)',
 'entropy graphs' => 'Graphs entropie',
 'err bk 1' => 'Erreur lors de la création de l\'archive',
 'err bk 10 password' => 'Erreur avec le mot de passe de sauvegarde',
 'err bk 2 key' => 'Erreur lors de la création du fichier clef',
-'err bk 3 tar' => 'Erreur lors de la réunion des fichiers à archiver',
+'err bk 3 tar' => 'Erreur lors du groupement des fichiers à archiver',
 'err bk 4 gz' => 'Erreur lors de la compression de l\'archive',
 'err bk 5 encrypt' => 'Erreur lors du chiffrement de l\'archive',
 'err rs 1' => 'Erreur lors de la restauration de l\'archive',
@@ -1013,6 +1023,7 @@
 'error config' => 'Impossible d\'ouvrir /var/ipcop/ovpn/config/ZERINA.ovpn !',
 'error external access' => 'Impossible d\'ouvrir /var/ipcop/xtaccess/config \
(l\'accès externe ne peut pas être garanti) !',  'error messages' => 'Remarque :',
+'error the to date has to be later than the from date' => 'La date d\'aujourd\'hui \
doit être postérieure à la date de début !',  'esp encryption' => 'Chiffrement \
ESP :',  'esp grouptype' => 'Type de groupe ESP :',
 'esp integrity' => 'Intégrité ESP :',
@@ -1044,7 +1055,7 @@
 'extrahd unable to read' => 'Impossible de lire',
 'extrahd unable to write' => 'Impossible d\'écrire',
 'extrahd you cant mount' => 'Vous ne pouvez pas monter',
-'fallout zombieload ridl' => 'Fallout/ZombieLoad/RIDL',
+'fallout zombieload ridl' => 'Fallout / ZombieLoad / RIDL',
 'false classnumber' => 'Le numéro de classe ne correspond pas à l\'interface.',
 'false max bandwith' => 'La bande passante maximum est fausse.',
 'false min bandwith' => 'La bande passante minimum est fausse.',
@@ -1097,7 +1108,7 @@
 'force enable' => 'Forcé',
 'force update' => 'Forcer la mise à jour',
 'force user' => 'Obliger tous les nouveaux fichiers à l\'utilisateur',
-'foreshadow' => 'Foreshadow',
+'foreshadow' => 'Foreshadow - exécution spéculative ',
 'forward firewall' => 'Pare-feu',
 'forwarding rule added' => 'Règle de transfert ajoutée ; Redémarrage du \
transitaire',  'forwarding rule removed' => 'Règle de transfert supprimée ; \
Redémarrage du transitaire', @@ -1313,8 +1324,6 @@
 'fwhost used' => 'Utilisé',
 'fwhost welcome' => 'Ici, vous pouvez regrouper des hôtes uniques, des réseaux et \
des services, ce qui créera de nouvelles règles plus facilement et plus \
rapidement.',  'fwhost wo subnet' => '(sans sous-réseau)',
-'g.dtm' => 'A SUPPRIMER',
-'g.lite' => 'A SUPPRIMER',
 'gateway' => 'Passerelle ',
 'gateway ip' => 'IP passerelle',
 'gen dh' => 'Générer nouveaux paramètres Diffie-Hellman ',
@@ -1323,7 +1332,7 @@
 'generate a certificate' => 'Générer un certificat :',
 'generate dh key' => 'Générer paramètres Diffie-Hellman',
 'generate iso' => 'Générer ISO',
-'generate ptr' => 'Générer PTR',
+'generate ptr' => 'Générer PTR ',
 'generate root/host certificates' => 'Générer des certificats root / hôte',
 'generate tripwire keys and init' => 'Générer des clefs Tripwire et init',
 'generatekeys' => 'Générer des clefs',
@@ -1435,6 +1444,7 @@
 'incoming traffic in bytes per second' => 'Trafic entrant',
 'incorrect password' => 'Mot de passe incorrect',
 'info' => 'Info',
+'info messages' => 'Info',
 'init string' => 'Init :',
 'insert floppy' => 'Pour sauvegarder sur disquette, insérez une disquette formatée \
dans le lecteur d\'un PC IPFire et cliquez sur <i>Sauvegardez sur disquette</i> pour \
sauvegarder la configuration système. Veuillez examiner attentivement le résultat \
afin de vous assurez que la sauvegarde s\'est correctement effectuée. Cela peut \
prendre un certain temps, veuillez patienter.<p>',  'insert removable device' => \
'Insérez un périphérique externe', @@ -1489,7 +1499,7 @@
 'invalid input for local ip address' => 'Entrée non valide pour l\'adresse IP \
locale',  'invalid input for max clients' => 'Nombre de clients maximum non valide',
 'invalid input for mode' => 'Entrée non valide pour le mode',
-'invalid input for name' => 'Mauvaise entrée pour le nom d\'utilisateur ou le nom \
du sytème', +'invalid input for name' => 'Mauvaise saisie pour le nom d\'utilisateur \
ou le nom d\'hôte du système',  'invalid input for oink code' => 'Oink code non \
valide',  'invalid input for organization' => 'Organisation non valide',
 'invalid input for remote host/ip' => 'hôte/IP distant(e) non valide.',
@@ -1549,7 +1559,7 @@
 'ipsec mode tunnel' => 'Tunnel',
 'ipsec network' => 'Réseau IPsec',
 'ipsec no connections' => 'Aucune connexion IPsec active',
-'ipsec routing table entries' => 'Entrées de table de routage IPsec',
+'ipsec routing table entries' => 'Entrées de la table de routage IPsec',
 'ipsec settings' => 'Paramètres IPsec',
 'iptable rules' => 'Règles table IP',
 'iptmangles' => 'Table IP Mangle ',
@@ -1559,7 +1569,7 @@
 'isdn settings' => 'Réglages RNIS supplémentaires :',
 'isdn1' => 'RNIS unique',
 'isdn2' => 'RNIS double',
-'itlb multihit' => 'MultiHit iTLB',
+'itlb multihit' => 'ITLB - erreur vérification machine',
 'january' => 'Janvier',
 'javascript menu error1' => 'Si les menus déroulants ne fonctionnent pas, \
désactivez le Javascript sur la',  'javascript menu error2' => 'page.',
@@ -1691,7 +1701,7 @@
 'media' => 'Stockage',
 'media information' => 'Informations du stockage',
 'medium' => 'Moyen',
-'meltdown' => 'Effondrement',
+'meltdown' => 'Meltdown - accès mémoire',
 'memory' => 'Mémoire',
 'memory information' => 'Informations mémoire',
 'memory usage per' => 'Utilisation de la mémoire par',
@@ -1801,8 +1811,10 @@
 'no' => 'Non',
 'no alcatelusb firmware' => 'Aucun firmware Alcatel USB, veuillez le charger.',
 'no cfg upload' => 'Aucune donnée n\'a été envoyée',
+'no data' => 'Pas de donnée',
 'no dhcp lease' => 'Aucun bail DHCP n\'a été obtenu',
 'no eciadsl synch.bin file' => 'Aucun fichier ECI ADSL synch.bin, veuillez le \
charger.', +'no entries' => 'Aucune entrée actuellement.',
 'no filter pass' => 'Entrez la classe standard pour les paquets non filtrés.',
 'no fritzdsl driver' => 'Aucun pilote Fritz!DSL, veuillez le charger.',
 'no hardware random number generator' => 'Ce système n\'a pas de source pour \
l\'entropie.', @@ -1900,14 +1912,14 @@
 'outgoing firewall groups' => 'Groupes de pare-feu',
 'outgoing firewall ip groups' => 'Groupes d\'adresses IP du pare-feu sortant',
 'outgoing firewall mac groups' => 'Groupes d\'adresses MAC du pare-feu sortant',
-'outgoing firewall mode0' => 'En utilisant ce mode, tous les clients peuvent avoir \
accès à Internet sans restrictions.', +'outgoing firewall mode0' => 'En utilisant \
ce mode, tous les clients peuvent avoir accès à Internet sans restriction.',  \
'outgoing firewall mode1' => 'En utilisant ce mode, seules les connexions basées sur \
les règles prédéfinies sont autorisées.',  'outgoing firewall mode2' => 'En \
utilisant ce mode, toutes les connexions sont autorisées sans tenir compte de la \
liste de définitions.',  'outgoing firewall outgoing firewall reserved groupname' => \
'Veuillez utiliser un autre nom de groupe, ce nom est réservé.',  'outgoing \
firewall p2p allow' => 'le protocole p2p est autorisé',  'outgoing firewall p2p \
deny' => 'le protocole p2p est refusé',  'outgoing firewall p2p description 1' => \
                'Le bouton',
-'outgoing firewall p2p description 2' => ' signifie que le protocole est autorisé \
ou', +'outgoing firewall p2p description 2' => 'signifie que le protocole est \
autorisé ou',  'outgoing firewall p2p description 3' => 'que le protocole p2p est \
bloqué.',  'outgoing firewall reset' => 'Tout réinitialiser',
 'outgoing firewall view group' => 'Voir le groupe',
@@ -1919,6 +1931,7 @@
 'ovpn add conf' => 'Configuration additionnelle',
 'ovpn con stat' => 'Statistiques de connexions OpenVPN',
 'ovpn config' => 'Config OVPN',
+'ovpn connection name' => 'Nom de la connexion',
 'ovpn crypt options' => 'Options cryptographiques',
 'ovpn device' => 'Périphérique OpenVPN :',
 'ovpn dh' => 'Longueur de paramètres Diffie-Hellman ',
@@ -1928,7 +1941,7 @@
 'ovpn dl' => 'Télécharger Config OVPN',
 'ovpn engines' => 'Moteur Crypto',
 'ovpn errmsg green already pushed' => 'La route pour le réseau VERT est toujours \
                activée',
-'ovpn errmsg invalid ip or mask' => 'Adresse ou masque de sous-r?seau invalide',
+'ovpn errmsg invalid ip or mask' => 'Adresse ou masque de sous-réseau invalide',
 'ovpn error dh' => 'Le paramètre Diffie-Hellman doit être au minimum à 2048 bits \
! <br>Veuillez générer ou télécharger un nouveau paramètre Diffie-Hellman, cela \
peut être fait ci-dessous dans la section "Options de paramètres \
Diffie-Hellman".</br>',  'ovpn error md5' => 'Votre certificat hôte utilise MD5 pour \
la signature qui n\'est plus acceptée. <br>Veuillez mettre à jour la dernière \
version d\'IPFire et générez un nouveau certificat racine et hôte..</br><br>Tous \
les clients OpenVPN doivent ensuite être renouvelés!</br>',  'ovpn generating the \
root and host certificates' => 'La génération du certificat racine et hôte peut \
prendre du temps.', @@ -1950,13 +1963,15 @@
 'ovpn reneg sec' => 'Durée de vie de la clé de session :',
 'ovpn routes push' => 'Routes (une par ligne) :',
 'ovpn routes push options' => 'Options de route push',
+'ovpn rw connection log' => 'Rapports de connexions client nomade OpenVPN',
 'ovpn server status' => 'Statut actuel du serveur OpenVPN :',
-'ovpn subnet' => 'Sous-réseau OpenVPN (c.a.d. 10.0.10.0/255.255.255.0)',
+'ovpn subnet' => 'Sous-réseau OpenVPN',
 'ovpn subnet is invalid' => 'Sous-réseau OpenVPN non valide.',
 'ovpn subnet overlap' => 'Le sous-réseau OpenVPN se chevauche avec : ',
 'ovpn tls auth' => 'Protection du canal TLS :',
 'ovpn warning rfc3280' => 'Votre certificat d\'hôte n\'est pas conforme avec la \
RFC3280.<br>Veuillez mettre à jour la dernière version d\'IPFire et générer dès \
que possible un nouveau certificat racine et hôte.</br><br>Tous les clients OpenVPN \
doivent ensuite être renouvelés !</br>',  'ovpn_fastio' => 'Fast-IO',
+'ovpn_fragment' => 'Taille du fragment',
 'ovpn_mssfix' => 'Taille MSSFIX',
 'ovpn_mtudisc' => 'Découverte MTU',
 'ovpn_processprio' => 'Priorité du processus',
@@ -2088,7 +2103,7 @@
 'qos add subclass' => 'Ajouter une sous-classe',
 'qos enter bandwidths' => 'Vous devrez saisir votre bande passante en aval et en \
amont !',  'qos graphs' => 'Graphiques Qos',
-'qos warning' => 'Cette règle <strong>doit</strong> être sauvée, autrement elle \
ne sera pas retenue !', +'qos warning' => 'Cette règle <strong>doit</strong> être \
enregistrée, sinon elle ne sera pas retenue !',  'quick control' => 'Contrôle \
rapide',  'quick playlist' => 'Liste de lecture rapide',
 'ram' => 'RAM',
@@ -2104,6 +2119,7 @@
 'reboot sure' => 'Etes-vous sûr de vouloir redémarrer ?',
 'rebooting' => 'Redémarrage en cours...',
 'rebooting ipfire' => 'Redemarrage d\'IPFire',
+'received' => 'Reçu',
 'reconnect' => 'Reconnecter',
 'reconnection' => 'Reconnexion ',
 'red' => 'Internet',
@@ -2144,7 +2160,7 @@
 'resetting the vpn configuration will remove the root ca, the host certificate and \
all certificate based connections' => 'La réinitialisation de la configuration VPN \
va supprimer le CA root, le certificat hôte et tous les certificats basés sur les \
connexions ',  'restart' => 'Relancer',
 'restart ovpn server' => 'Relancer le serveur OpenVPN',
-'restore' => 'Restaurer',
+'restore' => 'Restauration',
 'restore defaults' => 'Restaurer par défaut',
 'restore hardware settings' => 'Restaurer les paramètres matériels',
 'restore settings' => 'Réinitialiser les paramètres',
@@ -2153,8 +2169,10 @@
 'root certificate' => 'Certificat root',
 'root path' => 'Répertoire root',
 'root user password' => 'Mot de passe root',
+'route config changed' => '',
 'route subnet is invalid' => 'L\'itinéraire additionnel push du sous-réseau est \
non valide',  'router ip' => 'Adresse IP du routeur :',
+'routing table' => 'Table de routage',
 'routing table entries' => 'Entrées de la table de routage :',
 'rsvd dst port overlap' => 'La plage des ports de destination comprend un port \
réservé à IPFire :',  'rsvd src port overlap' => 'La plage des ports source \
comprend un port réservé à IPFire :', @@ -2190,6 +2208,7 @@
 'send cr' => 'Le FAI impose un retour chariot :',
 'send email notification' => 'Activé, envoyer une notification email',
 'send test mail' => 'Envoyer email de test',
+'sent' => 'Envoyé',
 'september' => 'Septembre',
 'serial' => 'Numéro',
 'server reserved' => 'Le serveur de nom de connexion est réservé et non \
autorisé', @@ -2269,9 +2288,9 @@
 'source port overlaps' => 'La plage de port source chevauche une plage de port \
existante.',  'speaker off' => 'Haut-parleur éteint :',
 'speaker on' => 'Haut-parleur allumé :',
-'spectre variant 1' => 'Variante Spectre 1',
-'spectre variant 2' => 'Variante Spectre 2',
-'spectre variant 4' => 'Variante Spectre 4',
+'spectre variant 1' => 'Spectre - variante 1',
+'spectre variant 2' => 'Spectre - variante 2',
+'spectre variant 4' => 'Spectre - variante 4',
 'squid extension methods' => 'Votre liste de <tt>méthodes d\'extension</tt>',
 'squid extension methods invalid' => 'Votre liste de méthodes d\'extension peut \
seulement contenir des mots composés de majuscules ou de chiffres, séparés par un \
espace. ',  'squid fix cache' => 'Cache de réparation',
@@ -2295,7 +2314,7 @@
 'ssh no active logins' => 'Pas de connexion active',
 'ssh no auth' => 'Vous n\'avez autorisé aucune méthode d\'authentification ; Cela \
va vous empêcher toute connexion future',  'ssh passwords' => 'Autoriser \
                l\'authentification par mot de passe',
-'ssh port' => 'Le port SSH défini est 22 (par défaut 222)',
+'ssh port' => 'Définir le port SSH à 22 (par défaut 222)',
 'ssh portfw' => 'Autoriser le transfert TCP',
 'ssh tempstart15' => 'Arrêter le service SSH dans 15 mns',
 'ssh tempstart30' => 'Arrêter le service SSH dans 30 mns',
@@ -2588,7 +2607,6 @@
 'upload a certificate request' => 'Envoyer une demande de certificat :',
 'upload ca certificate' => 'Envoyer un certificat CA',
 'upload dh key' => 'Télécharger paramètres Diffie-Hellman',
-'upload fcdsl.o' => 'A SUPPRIMER',
 'upload file' => 'Envoyer un fichier',
 'upload new ruleset' => 'Télécharger un nouveau réglement',
 'upload p12 file' => 'Envoyer fichier PKCS12',
@@ -2636,7 +2654,7 @@
 'urlfilter block all' => 'Bloquer toutes les url non autorisées explicitement ',
 'urlfilter block archives' => 'Bloquer fichiers d\'archives compressés ',
 'urlfilter block audio-video' => 'Bloquer fichiers audio / vidéo ',
-'urlfilter block categories' => 'Bloquer catégories',
+'urlfilter block categories' => 'Bloquage de catégories',
 'urlfilter block executables' => 'Bloquer fichiers exécutables ',
 'urlfilter block ip' => 'Bloquer les sites atteints par leur IP ',
 'urlfilter block settings' => ' Réglages de filtre URL',
@@ -2689,7 +2707,7 @@
 'urlfilter file ext block' => 'Blocage extension de fichier',
 'urlfilter filename' => 'Nom',
 'urlfilter filesize' => 'Taille',
-'urlfilter filter settings' => 'Paramètres filtre URL',
+'urlfilter filter settings' => 'Paramètres de filtre URL',
 'urlfilter fri' => 'Ven',
 'urlfilter friday' => 'Vendredi',
 'urlfilter from' => 'De',
@@ -2709,7 +2727,7 @@
 'urlfilter log summary' => 'Nombre total d\'url atteintes pour',
 'urlfilter log viewer' => 'Rapport de filtre URL',
 'urlfilter logs' => 'Rapports de filtre URL',
-'urlfilter maintenance' => 'Maintenance filtre URL',
+'urlfilter maintenance' => 'Maintenance de filtre URL',
 'urlfilter manage local file repository' => 'Gérer le fichier de dépôt local ',
 'urlfilter manage repository' => 'Gérer le dépôt',
 'urlfilter minutes' => 'minutes',
@@ -2737,7 +2755,7 @@
 'urlfilter restart' => 'Redémarrer filtre URL',
 'urlfilter restart message' => 'Filtre URL doit être redémarré pour activer les \
changements de règles',  'urlfilter restart notification' => 'Activer règles \
                modifiées',
-'urlfilter restore' => 'Importer fichier de sauvegarde',
+'urlfilter restore' => 'Importer le fichier de sauvegarde',
 'urlfilter restore results' => 'Restaurer résultats',
 'urlfilter restore settings' => 'Restaurer les paramètres du filtre URL',
 'urlfilter restore success' => 'Configuration filtre URL restaurée. Filtre URL doit \
être redémarré pour activer les nouveaux paramètres.', @@ -2752,7 +2770,7 @@
 'urlfilter select source' => 'Choisir une source de téléchargement ',
 'urlfilter set time constraints' => 'Fixer les contraintes horaires',
 'urlfilter set user quota' => 'Fixer les quotas utilisateur',
-'urlfilter show category' => 'Montrer la catégorie de page bloquée ',
+'urlfilter show category' => 'Montrer catégorie page bloquée ',
 'urlfilter show dnserror' => 'Utiliser "Erreur DNS" pour url bloquées ',
 'urlfilter show ip' => 'Montrer adresse IP page bloquée ',
 'urlfilter show url' => 'Montrer adresse url page bloquée ',
@@ -2814,9 +2832,9 @@
 'user proxy logs' => 'log utilisateur proxy',
 'username' => 'Nom utilisateur :',
 'username not set' => 'Nom d\'utilisateur non défini.',
-'users department' => 'Département de l\'utilisateur',
-'users email' => 'Adresse email de l\'utilisateur',
-'users fullname or system hostname' => 'Nom d\'utilisateur complet ou nom d\'hôte \
du système', +'users department' => 'Département de l\'utilisateur ',
+'users email' => 'Adresse email de l\'utilisateur ',
+'users fullname or system hostname' => 'Nom d\'utilisateur complet ou nom d\'hôte \
du système ',  'valid root certificate already exists' => 'Un certificat racine \
valide existe déjà .',  'valid till' => 'Valide jusqu\'au',
 'vci number' => 'Nombre VCI :',
@@ -2859,8 +2877,9 @@
 'vpn start action add' => 'Attendre l\'initialisation de la connexion',
 'vpn start action route' => 'A la demande',
 'vpn start action start' => 'Toujours démarré',
-'vpn statistic n2n' => 'Stats OpenVPN (site-Ã -site)',
+'vpn statistic n2n' => 'Stat OpenVPN (site-Ã -site)',
 'vpn statistic rw' => 'Stats OpenVPN (client nomade)',
+'vpn statistics n2n' => 'Stats OpenVPN (site-Ã -site)',
 'vpn subjectaltname' => 'Nom de l\'objet',
 'vpn subjectaltname missing' => 'Le nom de l\'objet ne peut être vide.',
 'vpn wait' => 'ATTENTE',
@@ -2986,9 +3005,9 @@
 'zoneconf nicmode default' => 'Défaut',
 'zoneconf nicmode macvtap' => 'MacVTap',
 'zoneconf notice reboot' => 'Veuillez redémarrer pour appliquer vos changements.',
-'zoneconf title' => 'Configuration de zones',
-'zoneconf val native assignment error' => 'Une carte réseau ne peut pas être \
                atteinte nativement par davantage qu\'une zone.',
-'zoneconf val ppp assignment error' => 'La carte réseau utilisée pour ROUGE en \
mode PPP ne peut être atteinte par une autre zone.', +'zoneconf title' => \
'Configuration des zones', +'zoneconf val native assignment error' => 'Une carte \
réseau ne peut pas être utilisée nativement par davantage qu\'une zone.', \
+'zoneconf val ppp assignment error' => 'La carte réseau utilisée pour ROUGE en \
mode PPP ne peut être utilisée par une autre zone.',  'zoneconf val vlan amount \
assignment error' => 'Une zone ne peut pas avoir plus d\'un VLAN attribué.',  \
'zoneconf val vlan tag assignment error' => 'Vous ne pouvez pas utiliser le même \
label VLAN plus d\'une fois par carte réseau.',  'zoneconf val zoneslave amount \
error' => 'Une zone qui n\'est pas en mode pont ne peut pas avoir plus d\'une carte \
                réseau assignée',
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  <info@ipfire.org>                     #
+# Copyright (C) 2007-2020  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # 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 @@
 
 include Config
 
-VER        = 2.9.2
+VER        = 2.9.4
 
 THISAPP    = knot-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 4f5ccc7b136858bb5dae8eacb2d3c4fe
+$(DL_FILE)_MD5 = 4975cfc1b0a789bc1263b07d28f2493c
 
 install : $(TARGET)
 


hooks/post-receive
--
IPFire 2.x development tree



_______________________________________________
IPFire-SCM mailing list
IPFire-SCM@lists.ipfire.org
https://lists.ipfire.org/mailman/listinfo/ipfire-scm


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic