diff options
author | Phil Davis <phil.davis@inf.org> | 2014-10-31 07:55:59 +0545 |
---|---|---|
committer | Phil Davis <phil.davis@inf.org> | 2014-10-31 07:55:59 +0545 |
commit | 687712eec9efaa54ce4ea5d3fc51d3d21ee65f4b (patch) | |
tree | ea5b3db1ee81d9dce774f8826116f67d2a387367 | |
parent | 95169728d8dd93f9fa98b07ef9d768be660f5c68 (diff) | |
download | pfsense-687712eec9efaa54ce4ea5d3fc51d3d21ee65f4b.zip pfsense-687712eec9efaa54ce4ea5d3fc51d3d21ee65f4b.tar.gz |
More gettext typos
-rw-r--r-- | usr/local/www/interfaces_lagg.php | 6 |
1 files changed, 3 insertions, 3 deletions
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."); |