fix #774 infinite loop in net.sourceforge.phpeclipse.builder.IdentifierIndexManager...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / corext / template / php / JavaTemplateMessages.properties
1 ###############################################################################
2 # Copyright (c) 2000, 2004 IBM Corporation and others.
3 # All rights reserved. This program and the accompanying materials 
4 # are made available under the terms of the Common Public License v1.0
5 # which accompanies this distribution, and is available at
6 # http://www.eclipse.org/legal/cpl-v10.html
7
8 # Contributors:
9 #     IBM Corporation - initial API and implementation
10 ###############################################################################
11
12
13 ContextType.error.multiple.cursor.variables=Template has multiple cursor variables.
14
15 Templates.for_array=iterate over array
16 Templates.for_temp=iterate over array with temporary variable
17 Templates.for_collection=iterate over collection
18 Templates.while_enumeration=iterate with enumeration
19 Templates.while_iterator=iterate with iterator
20 Templates.do=do while statement
21 Templates.switch=switch case statement
22 Templates.if=if statement
23 Templates.ifelse=if else statement
24 Templates.elseif=else if block
25 Templates.else=else block
26 Templates.try=try catch block
27 Templates.catch=catch block
28 Templates.main=main method
29 Templates.public_method=public method
30 Templates.protected_method=protected method
31 Templates.private_method=private method
32 Templates.private_static_method=private static method
33 Templates.instanceof=dynamic type test and cast
34 Templates.cast=dynamic cast
35 Templates.toarray=convert collection to array
36 Templates.test=test method
37 Templates.systrace=print current method to standard out
38 Templates.sysout=print to standard out
39 Templates.syserr=print to standard error
40 Templates.code_tag=<code></code>
41 Templates.code_tag_null=<code>null</code>
42 Templates.pre_tag=<pre></pre>
43 Templates.b_tag=<b></b>
44 Templates.i_tag=<i></i>
45 Templates.author=author name
46 Templates.new=create new object
47 Templates.lazy=lazy creation
48 Templates.while_condition=while loop with condition
49
50 # Java Only stuff
51 CompilationUnitContextType.variable.description.file=Filename of compilation unit
52 CompilationUnitContextType.variable.description.primary.type.name=Filename without extension
53 CompilationUnitContextType.variable.description.enclosing.method=Enclosing method name
54 CompilationUnitContextType.variable.description.enclosing.type=Enclosing type name
55 CompilationUnitContextType.variable.description.enclosing.package=Enclosing package name
56 CompilationUnitContextType.variable.description.enclosing.project=Enclosing project name
57 CompilationUnitContextType.variable.description.enclosing.method.arguments=Argument names of enclosing method
58 CompilationUnitContextType.variable.description.return.type=Enclosing method return type
59
60 JavaContextType.variable.description.array=A proposal for an array
61 JavaContextType.variable.description.array.type=A proposal for the element type of an array
62 JavaContextType.variable.description.array.element=A proposal for the element name of an array
63 JavaContextType.variable.description.index=A proposal for an index (int)
64 JavaContextType.variable.description.collection=A proposal for a collection (java.util.Collection)
65 JavaContextType.variable.description.iterator=A proposal for an iterator (java.util.Iterator)
66 JavaContextType.variable.description.todo=Todo task tag
67
68 JavaContext.error.title=Template Error
69 JavaContext.error.message=Template file incomplete or has errors.  You can load the default templates from the template preferences page (Java>Templates).
70
71 CodeTemplateContextType.variable.description.todo=Todo task tag
72 CodeTemplateContextType.variable.description.packdeclaration=Package declaration of the new type
73 CodeTemplateContextType.variable.description.typedeclaration=Generated type declaration
74 CodeTemplateContextType.variable.description.getterfieldname=The name of field to set or get
75 CodeTemplateContextType.variable.description.getterfieldtype=The type of the field to set or get
76 CodeTemplateContextType.variable.description.fieldname=The name of field
77 CodeTemplateContextType.variable.description.fieldtype=The type of the field
78 CodeTemplateContextType.variable.description.barefieldname=The name of field to set or get without pre- or suffix
79 CodeTemplateContextType.variable.description.param=The parameter passed into the setter method
80 CodeTemplateContextType.variable.description.typecomment=Content of code template 'typecomment'
81 CodeTemplateContextType.variable.description.exceptiontype=The type of the caught exception
82 CodeTemplateContextType.variable.description.exceptionvar=The variable name of the caught exception
83 CodeTemplateContextType.variable.description.enclosingtype=The type enclosing this method
84 CodeTemplateContextType.variable.description.typename=Name of the current type
85 CodeTemplateContextType.variable.description.enclosingmethod=The enclosing method
86 CodeTemplateContextType.variable.description.bodystatement=Return statement or super call
87 CodeTemplateContextType.variable.description.returntype=Return type of the enclosing method
88 CodeTemplateContextType.variable.description.tags=Generated Javadoc tags (@param, @return...)
89 CodeTemplateContextType.variable.description.seetag=See tag pointing to the overridden method (@see T#m())
90
91 CodeTemplateContextType.variable.description.filename=Name of the enclosing compilation unit
92 CodeTemplateContextType.variable.description.packagename=Name of the enclosing package
93 CodeTemplateContextType.variable.description.projectname=Name of the enclosing project
94
95 CodeTemplateContextType.validate.unknownvariable=Variable ''{0}'' is unknown.
96 CodeTemplateContextType.validate.missingvariable=Variable ''{0}'' is required.
97 CodeTemplateContextType.validate.invalidcomment=Pattern is not a valid Java comment.
98
99
100
101 CodeTemplates.error.title=Error accessing code templates.
102
103 # strings in default templates
104 CodeTemplates.constructorcomment=Comment for created constructors
105 CodeTemplates.typecomment=Comment for created types
106 CodeTemplates.fieldcomment=Comment for fields
107 CodeTemplates.nonoverridingcomment=Comment for non-overriding methods
108 CodeTemplates.overridecomment=Comment for overriding methods
109 CodeTemplates.gettercomment=Comment for getter method
110 # ! Do not translate ${bare_field_name} !
111 CodeTemplates.gettercomment.returntagcontent=Returns the ${bare_field_name}.
112 CodeTemplates.settercomment=Comment for setter method
113 # ! Do not translate ${bare_field_name} !
114 CodeTemplates.settercomment.paramtagcontent=The ${bare_field_name} to set.
115
116 CodeTemplates.newfile=Newly created files
117 CodeTemplates.catchblock=Code in new catch blocks
118 CodeTemplates.methodstub=Code in created method stubs
119 CodeTemplates.constructorstub=Code in created constructor stubs
120 CodeTemplates.getterstub=Code in created getters
121 CodeTemplates.setterstub=Code in created setters
122
123 # ! Do not translate @todo !
124 CodeTemplates.typecomment.content1=To change the template for this generated type comment go to
125 CodeTemplates.typecomment.content2=Window - Preferences - Java - Code Style - Code Templates
126
127 # ! Do not translate ${field} !
128 CodeTemplates.fieldcomment.content=Comment for <code>${field}</code>
129
130 CodeTemplates.overridecomment.nonjd=(non-Javadoc)
131
132 # ! Do not translate ${date} !
133 CodeTemplates.newfile.content1=Created on ${date}
134 CodeTemplates.newfile.content2=To change the template for this generated file go to
135 CodeTemplates.newfile.content3=Window - Preferences - Java - Code Style - Code Templates
136
137 CodeTemplates.catchblock.tododesc=Auto-generated catch block
138 CodeTemplates.methodstub.tododesc=Auto-generated method stub
139 CodeTemplates.constructorstub.tododesc=Auto-generated constructor stub