Skip to main content
summaryrefslogtreecommitdiffstats
blob: 73743c48aea02ebfae3371958afabd159255e09e (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
#########################################
# (c) Copyright IBM Corp. 2000, 2001.
# All Rights Reserved.
#########################################

# preference page
TemplatePreferencePage.error.import=Failed to import templates.
TemplatePreferencePage.error.export=Failed to export templates.
TemplatePreferencePage.error.read.title=Reading Templates
TemplatePreferencePage.error.write.title=Reading Templates
TemplatePreferencePage.message=&Create, edit or remove templates:
TemplatePreferencePage.title=Templates

TemplatePreferencePage.new=&New...
TemplatePreferencePage.edit=&Edit...
TemplatePreferencePage.import=&Import...
TemplatePreferencePage.export=E&xport...
TemplatePreferencePage.export.all=Ex&port All...
TemplatePreferencePage.remove=&Remove
TemplatePreferencePage.enable.all=Ena&ble All
TemplatePreferencePage.disable.all=Di&sable All
TemplatePreferencePage.editor=Template

TemplatePreferencePage.column.name=Name
TemplatePreferencePage.column.context=Context
TemplatePreferencePage.column.description=Description

TemplatePreferencePage.use.code.formatter=Use Code &Formatter

TemplatePreferencePage.import.title=Importing Templates
TemplatePreferencePage.import.extension=*.xml

TemplatePreferencePage.export.title=Exporting {0} Templates
TemplatePreferencePage.export.filename=templates.xml
TemplatePreferencePage.export.extension=*.xml

TemplatePreferencePage.export.exists.title=Exporting Templates
TemplatePreferencePage.export.message={0} already exists.\nDo you want to replace it?

TemplatePreferencePage.question.create.new.title=Edit Template
TemplatePreferencePage.question.create.new.message=The name of the template was changed.\nDo you want to create a new template?

# edit template dialog
EditTemplateDialog.error.noname=Template name must not be empty.
EditTemplateDialog.error.adjacent.variables=Template pattern has adjacent variables.
EditTemplateDialog.title.new=New Template
EditTemplateDialog.title.edit=Edit Template

EditTemplateDialog.name=&Name:
EditTemplateDialog.description=&Description:
EditTemplateDialog.context=&Context:
EditTemplateDialog.pattern=&Pattern:
EditTemplateDialog.insert.variable=Insert &Variable...

EditTemplateDialog.undo=&Undo@Ctrl+Z
EditTemplateDialog.cut=Cu&t@Ctrl+X
EditTemplateDialog.copy=&Copy@Ctrl+C
EditTemplateDialog.paste=&Paste@Ctrl+V
EditTemplateDialog.select.all=Select &All@Ctrl+A
EditTemplateDialog.content.assist=Insert &Variable...@Ctrl+Space

# template variable dialog
TemplateVariableDialog.title=Select a template variable.
TemplateVariableDialog.column.name=Name
TemplateVariableDialog.column.description=Description
TemplateVariableDialog.insert=&Insert

TemplateVariableProposal.error.title=Error applying template variable proposal
TemplateVariableProcessor.error.title=Error creating template variable proposals

# template set
TemplateSet.error.read=Error occured while reading templates.
TemplateSet.error.write=Error occured while writing templates.

# templates
Templates.error.title=Error accessing templates.
Templates.error.read=Error occured while reading templates.
Templates.error.write=Error occured while writing templates.

# template engine
TemplateEngine.error.title=Could not create template proposals.

# template proposal
TemplateProposal.delimiter=\ - 

# template evaluator
TemplateEvaluator.error.title=Template Evaluation Error

# template collector
TemplateCollector.variable.description.file=Filename of compilation unit
TemplateCollector.variable.description.line=Current line number
TemplateCollector.variable.description.date=Current date
TemplateCollector.variable.description.time=Current time
TemplateCollector.variable.description.user=User name
TemplateCollector.variable.description.array=A proposal for an array
TemplateCollector.variable.description.array.type=A proposal for the element type of an array
TemplateCollector.variable.description.array.element=A proposal for the element name of an array
TemplateCollector.variable.description.index=A proposal for an index (int)
TemplateCollector.variable.description.collector=A proposal for a collector (java.util.Collector)
TemplateCollector.variable.description.iterator=A proposal for an iterator (java.util.Iterator)
TemplateCollector.variable.description.return.type=Return type (evaluates to void)
TemplateCollector.variable.description.arguments=Method arguments (evaluates to empty string)

# template translator
TemplateTranslator.error.incomplete.variable=Template has incomplete variables.
TemplateTranslator.error.invalid.identifier=Template has invalid variable identifiers.

Back to the top