diff options
| author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2004-05-20 12:34:33 +0000 |
|---|---|---|
| committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2004-05-20 12:34:33 +0000 |
| commit | d3efc4c51bb20d6122b9b45964017a9d1eae7c3a (patch) | |
| tree | c4288136453a2efab1a29e2298ed7c5c9a885701 /frontends/php/maps.php | |
| parent | 03daa4e63ed831c05e5e55d1f12411a5b3fbd6d8 (diff) | |
- added support of localisation (Alexei)
- added file frontends/php/include/locale_en.inc.php (Alexei)
- fixed check of NNTP service (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@1347 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/maps.php')
| -rw-r--r-- | frontends/php/maps.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/frontends/php/maps.php b/frontends/php/maps.php index a3119790..2f2cbb20 100644 --- a/frontends/php/maps.php +++ b/frontends/php/maps.php @@ -20,7 +20,7 @@ ?> <?php include "include/config.inc.php"; - $page["title"] = "Network maps"; + $page["title"] = S_NETWORK_MAPS; $page["file"] = "maps.php"; $nomenu=0; @@ -41,7 +41,7 @@ <?php if(isset($HTTP_GET_VARS["sysmapid"])&&!check_right("Network map","R",$HTTP_GET_VARS["sysmapid"])) { - show_table_header("<font color=\"AA0000\">No permissions !</font>"); + show_table_header("<font color=\"AA0000\">".S_NO_PERMISSIONS."</font>"); show_footer(); exit; } @@ -51,7 +51,7 @@ if(!isset($HTTP_GET_VARS["fullscreen"])) { show_table_header_begin(); - echo "NETWORK MAPS"; + echo S_NETWORK_MAPS_BIG; show_table_v_delimiter(); @@ -78,7 +78,7 @@ if(DBnum_rows($result) == 0) { - echo "No maps to display"; + echo S_NO_MAPS_TO_DISPLAY; } show_table_header_end(); @@ -102,7 +102,7 @@ } else { - $map="Select map to display"; + $map=S_SELECT_MAP_TO_DISPLAY; } show_table_header($map); |
