diff options
author | Phil Davis <phil.davis@inf.org> | 2014-10-31 07:54:07 +0545 |
---|---|---|
committer | Phil Davis <phil.davis@inf.org> | 2014-10-31 07:54:07 +0545 |
commit | c69f62b8f98b3409351e7825c19f0f4a460ce09c (patch) | |
tree | ac36bec493a89f803da0e2fbac754ed7779550ad | |
parent | 91ee10c0a9c254ae725b7f08ec1016070b12b1ad (diff) | |
download | pfsense-c69f62b8f98b3409351e7825c19f0f4a460ce09c.zip pfsense-c69f62b8f98b3409351e7825c19f0f4a460ce09c.tar.gz |
More gettext typos
-rw-r--r-- | usr/local/www/interfaces_gre.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/interfaces_gre.php b/usr/local/www/interfaces_gre.php index eeedb2d..fde3af9 100644 --- a/usr/local/www/interfaces_gre.php +++ b/usr/local/www/interfaces_gre.php @@ -3,7 +3,7 @@ /* interfaces_gre.php - Copyright (C) 2008 Ermal Luçi + Copyright (C) 2008 Ermal Luçi All rights reserved. Redistribution and use in source and binary forms, with or without @@ -61,9 +61,9 @@ function gre_inuse($num) { if ($_GET['act'] == "del") { if (!isset($_GET['id'])) - $input_errors[] = getext("Wrong parameters supplied"); + $input_errors[] = gettext("Wrong parameters supplied"); else if (empty($a_gres[$_GET['id']])) - $input_errors[] = getext("Wrong index supplied"); + $input_errors[] = gettext("Wrong index supplied"); /* check if still in use */ else if (gre_inuse($_GET['id'])) { $input_errors[] = gettext("This GRE tunnel cannot be deleted because it is still being used as an interface."); |