[183314] tag directive content assist template actually inserts taglib directive
diff --git a/bundles/org.eclipse.jst.jsp.ui/templates/jspdefault-templates.properties b/bundles/org.eclipse.jst.jsp.ui/templates/jspdefault-templates.properties
index 1e42bf1..7badb94 100644
--- a/bundles/org.eclipse.jst.jsp.ui/templates/jspdefault-templates.properties
+++ b/bundles/org.eclipse.jst.jsp.ui/templates/jspdefault-templates.properties
@@ -39,14 +39,14 @@
Templates.jspxhtmlxml.desc=JSP with xhtml markup and xml style syntax
Templates.jspxhtmlxml.content=<?xml version="1.0" encoding="${encoding}" ?>\n<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">\n <jsp:directive.page language="java"\n contentType="text/html; charset=${encoding}" pageEncoding="${encoding}" />\n <jsp:text>\n <![CDATA[ <?xml version="1.0" encoding="${encoding}" ?> ]]>\n </jsp:text>\n <jsp:text>\n <![CDATA[ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ]]>\n </jsp:text>\n<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=${encoding}" />\n<title>Insert title here</title>\n</head>\n<body>\n${cursor}\n</body>\n</html>\n</jsp:root>
-Templates.jsptagdirective.name=JSP tag directive
-Templates.jsptagdirective.desc=JSP tag directive
-Templates.jsptagdirective.content=<%@ taglib description="${cursor}" small-icon=""%>
+Templates.jsptagdirective.name=Tag file tag directive
+Templates.jsptagdirective.desc=Tag file tag directive
+Templates.jsptagdirective.content=<%@ tag display-name="${cursor}" description="" small-icon="" %>
-Templates.jspvariabledirective.name=JSP variable directive
-Templates.jspvariabledirective.desc=JSP variable directive
-Templates.jspvariabledirective.content=<%@ variable name="${cursor}"%>
+Templates.jspvariabledirective.name=Tag variable directive
+Templates.jspvariabledirective.desc=Tag variable directive
+Templates.jspvariabledirective.content=<%@ variable variable-class="${cursor}" description="" %>
-Templates.jspattributedirective.name=JSP attribute directive
-Templates.jspattributedirective.desc=JSP attribute directive
-Templates.jspattributedirective.content=<%@ attribute description="${cursor}" %>
+Templates.jspattributedirective.name=Tag attribute directive
+Templates.jspattributedirective.desc=Tag attribute directive
+Templates.jspattributedirective.content=<%@ attribute name="${cursor}" description="" required="" type="" %>