Removed unused member fDataString.
[phpeclipse.git] / net.sourceforge.phpeclipse / templates / default-templates.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 Templates.for_array=iterate over array
13 Templates.for_temp=iterate over array with temporary variable
14 Templates.for_collection=iterate over collection
15 Templates.while_enumeration=iterate with enumeration
16 Templates.while_iterator=iterate with iterator
17 Templates.do=do while statement
18 Templates.switch=switch case statement
19 Templates.if=if statement
20 Templates.ifelse=if else statement
21 Templates.elseif=else if block
22 Templates.else=else block
23 Templates.try=try catch block
24 Templates.catch=catch block
25 Templates.main=main method
26 Templates.public_method=public method
27 Templates.protected_method=protected method
28 Templates.private_method=private method
29 Templates.private_static_method=private static method
30 Templates.instanceof=dynamic type test and cast
31 Templates.cast=dynamic cast
32 Templates.toarray=convert collection to array
33 Templates.test=test method
34 Templates.systrace=print current method to standard out
35 Templates.sysout=print to standard out
36 Templates.syserr=print to standard error
37 Templates.code_tag=<code></code>
38 Templates.code_tag_null=<code>null</code>
39 Templates.code_tag_true=<code>true</code>
40 Templates.code_tag_false=<code>false</code>
41 Templates.pre_tag=<pre></pre>
42 Templates.b_tag=<b></b>
43 Templates.i_tag=<i></i>
44 Templates.author=author name
45 Templates.new=create new object
46 Templates.lazy=lazy creation
47 Templates.while_condition=while loop with condition
48 Templates.non-nls= non-externalized string marker
49 Templates.synchronized= blocksynchronized block
50 Templates.runnable= runnable
51
52 # Java Only stuff
53 CompilationUnitContextType.variable.description.file=Filename of compilation unit
54 CompilationUnitContextType.variable.description.primary.type.name=Filename without extension
55 CompilationUnitContextType.variable.description.enclosing.method=Enclosing method name
56 CompilationUnitContextType.variable.description.enclosing.type=Enclosing type name
57 CompilationUnitContextType.variable.description.enclosing.package=Enclosing package name
58 CompilationUnitContextType.variable.description.enclosing.project=Enclosing project name
59 CompilationUnitContextType.variable.description.enclosing.method.arguments=Argument names of enclosing method
60 CompilationUnitContextType.variable.description.return.type=Enclosing method return type
61
62 JavaContextType.variable.description.array=A proposal for an array
63 JavaContextType.variable.description.array.type=A proposal for the element type of an array
64 JavaContextType.variable.description.array.element=A proposal for the element name of an array
65 JavaContextType.variable.description.index=A proposal for an index (int)
66 JavaContextType.variable.description.collection=A proposal for a collection (java.util.Collection)
67 JavaContextType.variable.description.iterator=A proposal for an iterator (java.util.Iterator)
68 JavaContextType.variable.description.todo=Todo task tag
69
70 JavaContext.error.title=Template Error
71 JavaContext.error.message=Template file incomplete or has errors.  You can load the default templates from the template preference page (Java>Templates).
72
73 CodeTemplateContextType.variable.description.todo=Todo task tag
74 CodeTemplateContextType.variable.description.packdeclaration=Package declaration of the new type
75 CodeTemplateContextType.variable.description.typedeclaration=Generated type declaration
76 CodeTemplateContextType.variable.description.getterfieldname=The name of field to set or get
77 CodeTemplateContextType.variable.description.getterfieldtype=The type of the field to set or get
78 CodeTemplateContextType.variable.description.fieldname=The name of field
79 CodeTemplateContextType.variable.description.fieldtype=The type of the field
80 CodeTemplateContextType.variable.description.barefieldname=The name of field to set or get without prefix or suffix
81 CodeTemplateContextType.variable.description.param=The parameter passed into the setter method
82 CodeTemplateContextType.variable.description.typecomment=Content of code template 'typecomment'
83 CodeTemplateContextType.variable.description.exceptiontype=The type of the caught exception
84 CodeTemplateContextType.variable.description.exceptionvar=The variable name of the caught exception
85 CodeTemplateContextType.variable.description.enclosingtype=The type enclosing this method
86 CodeTemplateContextType.variable.description.typename=Name of the current type
87 CodeTemplateContextType.variable.description.enclosingmethod=The enclosing method
88 CodeTemplateContextType.variable.description.bodystatement=Return statement or super call
89 CodeTemplateContextType.variable.description.returntype=Return type of the enclosing method
90 CodeTemplateContextType.variable.description.tags=Generated Javadoc tags (@param, @return...)
91 CodeTemplateContextType.variable.description.seetag=See tag pointing to the overridden method (@see T#m())
92
93 CodeTemplateContextType.variable.description.filename=Name of the enclosing compilation unit
94 CodeTemplateContextType.variable.description.packagename=Name of the enclosing package
95 CodeTemplateContextType.variable.description.projectname=Name of the enclosing project
96
97 CodeTemplateContextType.validate.unknownvariable=Variable ''{0}'' is unknown.
98 CodeTemplateContextType.validate.missingvariable=Variable ''{0}'' is required.
99 CodeTemplateContextType.validate.invalidcomment=Pattern is not a valid Java comment.
100
101
102
103 CodeTemplates.error.title=Error accessing code templates.
104
105 # strings in default templates
106 CodeTemplates.constructorcomment=Comment for created constructors
107 CodeTemplates.typecomment=Comment for created types
108 CodeTemplates.fieldcomment=Comment for fields
109 CodeTemplates.nonoverridingcomment=Comment for non-overriding methods
110 CodeTemplates.overridecomment=Comment for overriding methods
111 CodeTemplates.gettercomment=Comment for getter method
112 # ! Do not translate ${bare_field_name} !
113 CodeTemplates.gettercomment.returntagcontent=Returns the ${bare_field_name}.
114 CodeTemplates.settercomment=Comment for setter method
115 # ! Do not translate ${bare_field_name} !
116 CodeTemplates.settercomment.paramtagcontent=The ${bare_field_name} to set.
117
118 CodeTemplates.newfile=Newly created PHP files
119 CodeTemplates.newhtml=Newly created HTML files
120 CodeTemplates.catchblock=Code in new catch blocks
121 CodeTemplates.methodstub=Code in created method stubs
122 CodeTemplates.constructorstub=Code in created constructor stubs
123 CodeTemplates.getterstub=Code in created getters
124 CodeTemplates.setterstub=Code in created setters
125
126 # ! Do not translate @todo !
127 CodeTemplates.typecomment.content1=To change the template for this generated type comment go to
128 CodeTemplates.typecomment.content2=Window - Preferences - Java - Code Style - Code Templates
129
130 # ! Do not translate ${field} !
131 CodeTemplates.fieldcomment.content=Comment for <code>${field}</code>
132
133 CodeTemplates.overridecomment.nonjd=(non-Javadoc)
134
135 # ! Do not translate ${date} !
136 CodeTemplates.newfile.content1=Created on ${date}
137 CodeTemplates.newfile.content2=To change the template for this generated file go to
138 CodeTemplates.newfile.content3=Window - Preferences - PHPeclipse - PHP - Code Templates
139
140 CodeTemplates.newhtml.content1=Created on ${date}
141 CodeTemplates.newhtml.content2=To change the template for this generated file go to
142 CodeTemplates.newhtml.content3=Window - Preferences - PHPeclipse - PHP - Code Templates
143
144 CodeTemplates.catchblock.tododesc=Auto-generated catch block
145 CodeTemplates.methodstub.tododesc=Auto-generated method stub
146 CodeTemplates.constructorstub.tododesc=Auto-generated constructor stub
147