summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVinicius Coque <vcoque@gmail.com>2013-01-05 15:01:52 -0200
committerVinicius Coque <vcoque@gmail.com>2013-01-05 15:03:24 -0200
commit96568521876f2abc0a767e5101564e84e92f2aa4 (patch)
treebe77a2cf59782138a8d5cccbce367fe4ce444bd1
parent9d584d5d92e7a87add867bbf7da2ab96a6c5efbd (diff)
downloadpfsense-96568521876f2abc0a767e5101564e84e92f2aa4.zip
pfsense-96568521876f2abc0a767e5101564e84e92f2aa4.tar.gz
Removing gettext from strins that should not be translated
-rw-r--r--etc/inc/auth.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/auth.inc b/etc/inc/auth.inc
index f469137..7bd10ad 100644
--- a/etc/inc/auth.inc
+++ b/etc/inc/auth.inc
@@ -1222,7 +1222,7 @@ function auth_get_authserver($name) {
}
}
if ($name == "Local Database")
- return array("name" => gettext("Local Database"), "type" => gettext("Local Auth"), "host" => $config['system']['hostname']);
+ return array("name" => gettext("Local Database"), "type" => "Local Auth", "host" => $config['system']['hostname']);
}
function auth_get_authserver_list() {
@@ -1237,7 +1237,7 @@ function auth_get_authserver_list() {
}
}
- $list["Local Database"] = array( "name" => gettext("Local Database"), "type" => gettext("Local Auth"), "host" => $config['system']['hostname']);
+ $list["Local Database"] = array( "name" => gettext("Local Database"), "type" => "Local Auth", "host" => $config['system']['hostname']);
return $list;
}
OpenPOWER on IntegriCloud