Adjust the text of the symlink error message.

This commit is contained in:
Bharat Mediratta 2009-09-15 19:57:12 -07:00
parent 7cc37451f4
commit c3f8b62376

View File

@ -87,7 +87,7 @@ class Admin_Server_Add_Controller extends Admin_Controller {
$add_path = $form->group("add_path");
$add_path->input("path")->label(t("Path"))->rules("required")
->error_messages("not_readable", t("This directory is not readable by the webserver"))
->error_messages("is_symlink", t("Path can not be symbolic link"));
->error_messages("is_symlink", t("Symbolic links are not allowed"));
$add_path->submit("add")->value(t("Add Path"));
return $form;