summaryrefslogtreecommitdiffstats
path: root/frontends/php/sysmap.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-06-30 10:03:23 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-06-30 10:03:23 +0000
commit83eb854d01145ddb03b03d71e93a39b27539650e (patch)
tree1bf0472607c3e1968972d0b0624a8b2cf6c83f4e /frontends/php/sysmap.php
parent197f0c3db5a4fd740a8783049c75fa6693e438bf (diff)
downloadzabbix-83eb854d01145ddb03b03d71e93a39b27539650e.tar.gz
zabbix-83eb854d01145ddb03b03d71e93a39b27539650e.tar.xz
zabbix-83eb854d01145ddb03b03d71e93a39b27539650e.zip
- [DEV-137] minor changes in locales and sorting discovery hosts table (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5807 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/sysmap.php')
-rw-r--r--frontends/php/sysmap.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/frontends/php/sysmap.php b/frontends/php/sysmap.php
index d0068968..87a5dc6c 100644
--- a/frontends/php/sysmap.php
+++ b/frontends/php/sysmap.php
@@ -68,7 +68,7 @@ include_once "include/page_header.php";
check_fields($fields);
?>
<?php
- show_table_header("CONFIGURATION OF NETWORK MAP");
+ show_table_header(S_CONFIGURATION_OF_NETWORK_MAPS_BIG);
if(!sysmap_accessible($_REQUEST["sysmapid"],PERM_READ_WRITE)) access_deny();
$sysmap = DBfetch(DBselect("select * from sysmaps where sysmapid=".$_REQUEST["sysmapid"]));
@@ -153,7 +153,7 @@ include_once "include/page_header.php";
if(isset($_REQUEST["form"]) && ($_REQUEST["form"]=="add_element" ||
($_REQUEST["form"]=="update" && isset($_REQUEST["selementid"]))))
{
- show_table_header("DISPLAYED ELEMENTS");
+ show_table_header(S_DISPLAYED_ELEMENTS);
echo SBR;
insert_map_element_form();
}
@@ -163,7 +163,7 @@ include_once "include/page_header.php";
$row = DBfetch(DBselect("select count(*) as count from sysmaps_elements where sysmapid=".$_REQUEST["sysmapid"]));
if($row["count"]>1)
{
- show_table_header("CONNECTORS");
+ show_table_header(S_CONNECTORS);
echo SBR;
insert_map_link_form();
}
@@ -173,7 +173,7 @@ include_once "include/page_header.php";
}
}
else{
- show_table_header("DISPLAYED ELEMENTS", new CButton("form","Add element",
+ show_table_header(S_DISPLAYED_ELEMENTS, new CButton("form",S_ADD_ELEMENT,
"return redirect('".$page["file"]."?form=add_element".url_param("sysmapid")."');"));
$table = new CTableInfo();
@@ -207,7 +207,7 @@ include_once "include/page_header.php";
$table->show();
echo SBR;
- show_table_header("CONNECTORS", new CButton("form","Create connection",
+ show_table_header(S_CONNECTORS, new CButton("form",S_CREATE_CONNECTION,
"return redirect('".$page["file"]."?form=add_link".
url_param("sysmapid")."');"));