]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
ovpnclients.dat: Fix hard coded language string
authorStefan Schantl <stefan.schantl@ipfire.org>
Mon, 13 Apr 2020 07:45:34 +0000 (09:45 +0200)
committerArne Fitzenreiter <arne_f@ipfire.org>
Fri, 1 May 2020 19:12:28 +0000 (19:12 +0000)
Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
html/cgi-bin/logs.cgi/ovpnclients.dat

index 46667a9d1f8cd6a000be9af88a7026ca267ca9d6..bb7bdfb7bb4d2080c6dbfddfcf276c9bf8ceeb10 100755 (executable)
@@ -207,7 +207,7 @@ print "<table width='100%'>\n";
                print "<td class='base' colspan='2'>\n";
 
                        print "<select name='CONNECTION_NAME' size='1'>\n";
-                               print "<option value=''>All</option>\n";
+                               print "<option value=''>$Lang::tr{'all'}</option>\n";
 
                                # Loop through all configured OpenVPN connections and sort them by name.
                                foreach my $key (sort { $ovpnsettings{$a}[2] cmp $ovpnsettings{$b}[2] } keys %ovpnsettings) {