blob: b9b792e6947afdcd692a4b9ece21e998b5964c3d [file] [log] [blame]
nitind958d79a2004-11-23 19:23:00 +00001###############################################################################
amywu25735762006-10-09 22:46:06 +00002# Copyright (c) 2004, 2006 IBM Corporation and others.
nitind958d79a2004-11-23 19:23:00 +00003# All rights reserved. This program and the accompanying materials
4# are made available under the terms of the Eclipse Public License v1.0
5# which accompanies this distribution, and is available at
6# http://www.eclipse.org/legal/epl-v10.html
7#
8# Contributors:
9# IBM Corporation - initial API and implementation
amywu25735762006-10-09 22:46:06 +000010# Benjamin Muskalla, b.muskalla@gmx.net - [156040] no new html template for xhtml 1.0 strict
nitind958d79a2004-11-23 19:23:00 +000011###############################################################################
12Templates.comment.name=comment
13Templates.comment.desc=comment
14Templates.ul.name=ul
david_williams4da6ac012005-03-15 02:43:58 +000015Templates.ul.desc=unordered list
nitind958d79a2004-11-23 19:23:00 +000016Templates.ul.content=<ul>\n <li> Item one </li>\n <li> Item two </li>\n</ul>\n
17Templates.dl.name=dl
david_williams4da6ac012005-03-15 02:43:58 +000018Templates.dl.desc=definition list
david_williamsdc384712005-06-26 04:04:47 +000019Templates.dl.content=<dl>\n <dt> First definition</dt> <dd> First explanation</dd>\n <dt> Second definition</dt> <dd> Second explanation</dd>\n</dl>\n
nitind958d79a2004-11-23 19:23:00 +000020Templates.table.name=table
david_williams4da6ac012005-03-15 02:43:58 +000021Templates.table.desc=table
22Templates.table.content=<table>\n <tr>\n <th>Column 1 Heading</th>\n <th>Column 2 Heading</th>\n </tr>\n <tr>\n <td>Row 1: Col 1</td>\n <td>Row 1: Col 2</td>\n </tr>\n</table>\n
nitind958d79a2004-11-23 19:23:00 +000023Templates.ol.name=ol
david_williams4da6ac012005-03-15 02:43:58 +000024Templates.ol.desc=ordered list
nitind958d79a2004-11-23 19:23:00 +000025Templates.ol.content=<ol>\n <li> Item one </li>\n <li> Item two </li>\n</ol>\n
nitind938c8252005-09-29 18:36:50 +000026Templates.html.name=New HTML File (4.01 transitional)
david_williams4da6ac012005-03-15 02:43:58 +000027Templates.html.desc=html 4.01 transitional
amywu58ce6862006-08-14 20:50:00 +000028Templates.html.content=<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\n<html>\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>
nitind938c8252005-09-29 18:36:50 +000029Templates.htmlframeset.name=New HTML File (4.01 frameset)
david_williams4da6ac012005-03-15 02:43:58 +000030Templates.htmlframeset.desc=html 4.01 frameset
amywu58ce6862006-08-14 20:50:00 +000031Templates.htmlframeset.content=<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">\n<html>\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=${encoding}">\n<title>Insert title here</title>\n</head>\n<frameset>\n <frame>\n <frame>\n <noframes>\n <body>\n <p>This page uses frames. The current browser you are using does not support frames.</p>\n </body>\n </noframes>\n</frameset>\n</html>
amywu5420cd42006-10-09 21:22:05 +000032Templates.htmlstrict.name=New HTML File (4.01 strict)
33Templates.htmlstrict.desc=html 4.01 strict
34Templates.htmlstrict.content=<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN" "http://www.w3.org/TR/html4/strict.dtd">\n<html>\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>
nitind938c8252005-09-29 18:36:50 +000035Templates.xhtml.name=New XHTML File (1.0 transitional)
david_williams4da6ac012005-03-15 02:43:58 +000036Templates.xhtml.desc=xhtml 1.0 transitional
37Templates.xhtml.content=<?xml version="1.0" encoding="${encoding}" ?>\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\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>
nitind938c8252005-09-29 18:36:50 +000038Templates.xhtmlframeset.name=New XHTML File (1.0 frameset)
david_williams4da6ac012005-03-15 02:43:58 +000039Templates.xhtmlframeset.desc=xhtml 1.0 frameset
40Templates.xhtmlframeset.content=<?xml version="1.0" encoding="${encoding}" ?>\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">\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<frameset>\n <frame />\n <frame />\n <noframes>\n <body>\n <p>This page uses frames. The current browser you are using does not support frames.</p>\n </body>\n </noframes>\n</frameset>\n</html>
amywu5420cd42006-10-09 21:22:05 +000041Templates.xhtmlstrict.name=New XHTML File (1.0 strict)
42Templates.xhtmlstrict.desc=xhtml 1.0 strict
43Templates.xhtmlstrict.content=<?xml version="1.0" encoding="${encoding}" ?>\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\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>
nitind958d79a2004-11-23 19:23:00 +000044Templates.script.name=script
45Templates.script.desc=script (commented)
46Templates.script.content=<script type=\"${cursor}text/javascript\">\n<!--\n\n//-->\n</script>
47Templates.style.name=style
48Templates.style.desc=style (commented)
49Templates.style.content=<style>\n<!--\n${cursor}\n-->\n</style>
50Templates.imgmap.name=img
51Templates.imgmap.desc=img (map)