2010-06-30 Sergio Martin <sergio.martin@artica.es>

* operation/events/events.php: Changed the Server and All text
	on the events filter to use gettext. 



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2942 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2010-06-30 17:04:32 +00:00
parent 618bc80b97
commit 4a868db26e
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2010-06-30 Sergio Martin <sergio.martin@artica.es>
* operation/events/events.php: Changed the Server and All text
on the events filter to use gettext.
2010-06-30 Sergio Martin <sergio.martin@artica.es> 2010-06-30 Sergio Martin <sergio.martin@artica.es>
* operation/events/events.php: Fixed the agent filter. Now the * operation/events/events.php: Fixed the agent filter. Now the

View File

@ -107,10 +107,10 @@ if($id_agent == -2) {
switch ($text_agent) switch ($text_agent)
{ {
case All: case __('All'):
$id_agent = -1; $id_agent = -1;
break; break;
case Server: case __('Server'):
$id_agent = 0; $id_agent = 0;
break; break;
default: default:
@ -122,10 +122,10 @@ else{
switch ($id_agent) switch ($id_agent)
{ {
case -1: case -1:
$text_agent = 'All'; $text_agent = __('All');
break; break;
case 0: case 0:
$text_agent = 'Server'; $text_agent = __('Server');
break; break;
default: default:
$text_agent = get_agent_name($id_agent); $text_agent = get_agent_name($id_agent);