summaryrefslogtreecommitdiffstats
path: root/frontends/php/tr_comments.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2004-05-25 07:40:51 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2004-05-25 07:40:51 +0000
commit231faf1162a0aac6feb4e30b18da7bd14bb8de11 (patch)
tree5c9266d54cb8b65d5014629871ff730547268bdb /frontends/php/tr_comments.php
parentd3efc4c51bb20d6122b9b45964017a9d1eae7c3a (diff)
downloadzabbix-231faf1162a0aac6feb4e30b18da7bd14bb8de11.tar.gz
zabbix-231faf1162a0aac6feb4e30b18da7bd14bb8de11.tar.xz
zabbix-231faf1162a0aac6feb4e30b18da7bd14bb8de11.zip
- added support for real delta. item.delta=2. (Alexei)
- new selection for triggers.php (Alexei) - new selection for items.php (Alexei) - removed helpdesk.php (Alexei) - fixed check of permissions for screenedit.php (Alexei) - new selection for graphs in charts.php (Alexei) - new selection of maps in maps.php (Alexei) - new selection of group and host for latest.php (Alexei) - added support for macro {IPADDRESS} (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@1348 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/tr_comments.php')
-rw-r--r--frontends/php/tr_comments.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/frontends/php/tr_comments.php b/frontends/php/tr_comments.php
index 2c1a1439..fde6d328 100644
--- a/frontends/php/tr_comments.php
+++ b/frontends/php/tr_comments.php
@@ -19,7 +19,7 @@
**/
?>
<?php
- $page["title"] = "Trigger comments";
+ $page["title"] = S_TRIGGER_COMMENTS;
$page["file"] = "tr_comments.php";
include "include/config.inc.php";
@@ -28,14 +28,14 @@
<?php
if(!check_right("Trigger comment","R",$HTTP_GET_VARS["triggerid"]))
{
- show_table_header("<font color=\"AA0000\">No permissions !</font>");
+ show_table_header("<font color=\"AA0000\">".S_NO_PERMISSIONS."</font>");
show_footer();
exit;
}
?>
<?php
- show_table_header("TRIGGER COMMENTS");
+ show_table_header(S_TRIGGER_COMMENTS_BIG);
echo "<br>";
?>
@@ -43,7 +43,7 @@
if(isset($HTTP_GET_VARS["register"]) && ($HTTP_GET_VARS["register"]=="update"))
{
$result=update_trigger_comments($HTTP_GET_VARS["triggerid"],$HTTP_GET_VARS["comments"]);
- show_messages($result,"Trigger comment updated","Cannot update trigger comment");
+ show_messages($result, S_COMMENT_UPDATED, S_CANNO_UPDATE_COMMENT);
}
?>
@@ -54,12 +54,12 @@
<?php
show_table2_header_begin();
- echo "Comments";
+ echo S_COMMENTS;
show_table2_v_delimiter();
echo "<form method=\"get\" action=\"tr_comments.php\">";
echo "<input name=\"triggerid\" type=\"hidden\" value=".$HTTP_GET_VARS["triggerid"].">";
- echo "Comments";
+ echo S_COMMENTS;
show_table2_h_delimiter();
echo "<textarea name=\"comments\" cols=100 ROWS=\"25\" wrap=\"soft\">$comments</TEXTAREA>";