diff options
author | Renato Botelho <garga@FreeBSD.org> | 2014-11-05 07:12:17 -0200 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2014-11-05 07:12:17 -0200 |
commit | fcfa23da8b29c803a52e74243b8049b997e7f2ee (patch) | |
tree | 2e7fc479763baa7a92d3cfe890a9d97b5ba1ff52 | |
parent | 5940e6552321bc6228167cfa42825141e06c2f2e (diff) | |
parent | 687712eec9efaa54ce4ea5d3fc51d3d21ee65f4b (diff) | |
download | pfsense-fcfa23da8b29c803a52e74243b8049b997e7f2ee.zip pfsense-fcfa23da8b29c803a52e74243b8049b997e7f2ee.tar.gz |
Merge pull request #1319 from phil-davis/patch-1
-rw-r--r-- | usr/local/www/interfaces_bridge.php | 6 | ||||
-rw-r--r-- | usr/local/www/interfaces_gif.php | 6 | ||||
-rw-r--r-- | usr/local/www/interfaces_gre.php | 6 | ||||
-rw-r--r-- | usr/local/www/interfaces_lagg.php | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/usr/local/www/interfaces_bridge.php b/usr/local/www/interfaces_bridge.php index d41ae44..6099975 100644 --- a/usr/local/www/interfaces_bridge.php +++ b/usr/local/www/interfaces_bridge.php @@ -3,7 +3,7 @@ /* interfaces_bridge.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 @@ -60,9 +60,9 @@ function bridge_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_bridges[$_GET['id']])) - $input_errors[] = getext("Wrong index supplied"); + $input_errors[] = gettext("Wrong index supplied"); /* check if still in use */ else if (bridge_inuse($_GET['id'])) { $input_errors[] = gettext("This bridge cannot be deleted because it is assigned as an interface."); diff --git a/usr/local/www/interfaces_gif.php b/usr/local/www/interfaces_gif.php index 5ef00bf..b7307ce 100644 --- a/usr/local/www/interfaces_gif.php +++ b/usr/local/www/interfaces_gif.php @@ -3,7 +3,7 @@ /* interfaces_gif.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 @@ -60,9 +60,9 @@ function gif_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_gifs[$_GET['id']])) - $input_errors[] = getext("Wrong index supplied"); + $input_errors[] = gettext("Wrong index supplied"); /* check if still in use */ else if (gif_inuse($_GET['id'])) { $input_errors[] = gettext("This gif TUNNEL cannot be deleted because it is still being used as an interface."); 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."); diff --git a/usr/local/www/interfaces_lagg.php b/usr/local/www/interfaces_lagg.php index fcba0ae..856fdab 100644 --- a/usr/local/www/interfaces_lagg.php +++ b/usr/local/www/interfaces_lagg.php @@ -3,7 +3,7 @@ /* interfaces_lagg.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 @@ -66,9 +66,9 @@ function lagg_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_laggs[$_GET['id']])) - $input_errors[] = getext("Wrong index supplied"); + $input_errors[] = gettext("Wrong index supplied"); /* check if still in use */ else if (lagg_inuse($_GET['id'])) { $input_errors[] = gettext("This LAGG interface cannot be deleted because it is still being used."); |