Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c12e39355b9ac7c2329a6835c36ced898779af07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
###############################################################################
# Copyright (c) 2005, 2019 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
# 
# Contributors:
#     IBM Corporation - initial API and implementation
###############################################################################
providerName=Eclipse Web Tools Platform
pluginName=HTML UI Source Editor
HTML_Source_Page_Editor.name=HTML Editor
WEB.name=Web
HTML_Files.name=HTML Files
HTML_Source.name=Editor
HTML_Content_Assist.name=Content Assist
HTML_Templates.name=Templates
HTML_Styles.name=Styles
HTML_Syntax_Coloring=Syntax Coloring
HTML_Typing=Typing
HTML_Validation=Validation
Appearance=Appearance
HTML_Property_validation=HTML Syntax
WebContentSettings.name=Web Content Settings
Device_Profile_Entry_Provider_Extension.name=Device Profile Entry Provider Extension
All_HTML_context_type_Extension_Element.name=All HTML
HTML_New_context_type_Extension_Element.name=New HTML
HTML_Tag_context_type_Extension_Element.name=HTML Tag
HTML_Attribute_context_type_Extension_Element.name=HTML Attribute
HTML_Attribute_value_context_type_Extension_Element.name=HTML Attribute value
proposalCategory.htmlAttributeValues=HTML Attribute value proposals
###############################################################################
#org.eclipse.ui.newWizards extension point
_UI_WIZARD_NAME = HTML File
_UI_WIZARD_CREATE_NEW_FILE = Create a new HTML file
##
AddTask.label=Add &Task...
AddTask.tooltip=Add Task...
AddBookmark.label=Add Boo&kmark...
AddBookmark.tooltip=Add Bookmark...
SelectRuler.label=Select Ruler
##
CleanupDocument_label=Cleanup Document...
CleanupDocument_tooltip=Cleanup Document
ToggleComment_label=Toggle Comment
ToggleComment_tooltip=Toggle Comment
AddBlockComment_label=Add Block Comment
AddBlockComment_tooltip=Add Block Comment
RemoveBlockComment_label=Remove Block Comment
RemoveBlockComment_tooltip=Remove Block Comment
FindOccurrences_label=Occurrences in File
StructureSelectEnclosing_label=Enclosing Element
StructureSelectEnclosing_tooltip=Expand selection to include enclosing element
StructureSelectNext_label=Next Element
StructureSelectNext_tooltip=Expand selection to include next sibling
StructureSelectPrevious_label=Previous Element
StructureSelectPrevious_tooltip=Expand selection to include previous sibling
StructureSelectHistory_label=Restore Last Selection
StructureSelectHistory_tooltip=Restore last selection
##
preferenceKeywords.files=editor html creating saving files suffix specified encoding iana loading
preferenceKeywords.source=editor html source formatting line width split multiple attributes new clear blank indent tabs spaces size content assist automatically suggestions prompt characters inserted strategy lax strict markup case code generation tag names capitalization uppercase lowercase
preferenceKeywords.contentassist=html editor content code assist complete completion insert overwrite single proposal common prefix automatically import fill argument name guess alphabetical hide auto activation trigger category categories separate specific
preferenceKeywords.templates=editor html templates snippet macros
preferenceKeywords.styles=editor html style customize syntax highlighting type text content foreground background bold color
preferenceKeywords.webcontent=editor html web content settings profile style document type doctype public system css
preferenceKeywords.severities=html errors warnings ignore options severity severities suppress project specific projectspecific
##
HTML_Editors_target_name=HTML Editors

scope.structured.text.editor.html.name=Editing HTML Source
scope.structured.text.editor.html.description=Editing HTML Source
scope.structured.text.editor.html.occurrences.name=HTML Source Occurrences
scope.structured.text.editor.html.occurrences.description=HTML Source Occurrences

Colors.scriptAreaBorder=Script Area Border
hyperlinkDetector.anchor.name=Anchors
hyperlink.target.script.name=HTML Client Script
hyperlink.target.eventhandler.name=HTML Event Handlers

proposalCategory.htmlTags=HTML Tag Proposals
proposalCategory.htmlTemplates=HTML Template Proposals
proposalCategory.generic = Generic HTML Proposals

HideComments.label=Comments
HideComments.description=Hides Comments

nbsp.label = non-breaking space
nbsp.content =  
lt.label = < less than
lt.content = &lt;
gt.label = > greater than
gt.content = &gt;
ampersand.label = & ampersand
ampersand.content = &amp;
doublequote.label = " double quotation mark
doublequote.content = &quot;
singlequote.label = " apostrophe/single quotation mark
singlequote.content = &apos;
cent.label = ¢ cent
cent.content = &cent;
pound.label = £ pound sterling
pound.content = &pound;
euro.label = \u20AC euro
euro.content = &euro;
yen.label = ¥ yen
yen.content = &yen;
copyright.label = © copyright
copyright.content = &copy;
trademark.label = ® registered trademark
trademark.content = &reg;
checkmark.label = \u2713 checkmark
checkmark.content = &checkmark;
cross.label = \u2717 cross
cross.content = &cross;
dl.label = definition list
dl.content = <dl>\n  <dt> First definition</dt>  <dd>  First explanation</dd>\n  <dt> Second definition</dt> <dd> Second explanation</dd>\n</dl>\n
smiley.label = \uD83D\uDE42 slightly smiling face
smiley.content = \uD83D\uDE42

category.label = HTML

Back to the top