Cosmetics
[fedora-idea.git] / platform-resources_eng / src / messages / CodeInsightBundle.properties
blob118f4b5f785b44167cb2c10450129ec9147a3387
1 codeinsight.settings=CodeInsight settings
2 error.hint.file.is.readonly=File {0} is read-only
3 error.dialog.readonly.file.title=File Is Read-Only
4 error.dialog.readonly.files.title=Cannot Modify Read-Only Files
5 error.dialog.readonly.files.message={0} contains read-only file(s).\nProcess all other (writeable) files?
6 process.scope.directory=Directory ''{0}''
7 process.scope.project=Project ''{0}''
8 process.scope.module=Module ''{0}''
9 reformat.code.accept.button.text=Run
10 process.scope.file=&File {0}
11 reformat.option.selected.text=&Selected text
12 reformat.option.all.files.in.directory=&All files in directory {0}
13 reformat.option.include.subdirectories=&Include subdirectories
14 reformat.option.optimize.imports=&Optimize imports
15 process.optimize.imports=Optimize Imports
16 progress.text.optimizing.imports=Optimizing imports...
17 process.reformat.code=Reformat Code
18 progress.text.reformatting.code=Reformatting code...
19 dialog.reformat.files.title=Reformat Files
20 dialog.reformat.files.optimize.imports.checkbox=&Optimize imports
21 dialog.reformat.files.reformat.selected.files.label=Reformat selected files?
22 command.name.typing=Typing
23 dialog.import.on.paste.title=Select Classes to Import
24 dialog.import.on.paste.title2=Select Elements to Import
25 dialog.paste.on.import.text=The code fragment which you have pasted uses classes\n\
26   that are not accessible by imports in the new context.\n\
27   Select classes that you want to import to the new file.
28 dialog.paste.on.import.text2=The code fragment which you have pasted uses elements\nthat are not accessible by imports in the new context.\nSelect elements that you want to import to the new file.
29 paste.data.flavor.folding=FoldingData
30 paste.dataflavor.referencedata=ReferenceData
31 generate.constructor.fields.chooser.title=Choose Fields to Initialize by Constructor
32 error.attempt.to.generate.constructor.for.anonymous.class=Cannot add constructor to an anonymous class
33 generate.constructor.super.constructor.chooser.title=Choose Super Class Constructor
34 generate.delegate.method.chooser.title=Select Methods to Generate Delegates for
35 generate.delegate.target.chooser.title=Select Target to Generate Delegates for
36 generate.equals.and.hashcode.already.defined.warning=Methods ''boolean equals(Object)'' and ''int hashCode()'' are already defined\nfor class {0}. Do you want to delete them and proceed?
37 generate.equals.and.hashcode.already.defined.warning.anonymous=Methods 'boolean equals(Object)' and 'int hashCode()' are already defined\nfor this anonymous class. Do you want to delete them and proceed?
38 generate.equals.and.hashcode.already.defined.title=Generate equals() and hashCode()
39 generate.equals.and.hashcode.error.no.object.class.message=Cannot generate equals() and hashCode().\nNo java.lang.Object class found.
40 generate.equals.and.hashcode.error.no.object.class.title=No java.lang.Object
41 generate.equals.compare.nested.arrays.comment= // Compare nested arrays - values of {0} here
42 generate.equals.compare.arrays.comment= // Probably incorrect - comparing Object[] arrays with Arrays.equals
43 generate.getter.setter.title=Select Fields to Generate Getters and Setters
44 generate.getter.fields.chooser.title=Select Fields to Generate Getters
45 generate.setter.fields.chooser.title=Select Fields to Generate Setters
46 override.implement.broken.file.template.message=Please Correct "Overridden/Implemented Method Body" Template
47 override.implement.broken.file.template.title=File Template Error
48 methods.to.implement.chooser.title=Select Methods to Implement
49 methods.to.override.chooser.title=Select Methods to Override
50 methods.to.override.implement.chooser.title=Select Methods to Override/Implement
51 generate.list.popup.title=Generate
52 surround.with.cast.template=((Type)expr)
53 surround.with.dowhile.template=do / while
54 surround.with.for.template=for
55 surround.with.ifelse.expression.template=if (expr) {...} else {...}
56 surround.with.ifelse.template=if / else
57 surround.with.if.expression.template=if (expr) {...}
58 surround.with.if.template=if
59 surround.with.not.instanceof.template=!(expr instanceof Type)
60 surround.with.not.template=!(expr)
61 surround.with.parenthesis.template=(expr)
62 surround.with.runnable.template=Runnable
63 surround.with.synchronized.template=synchronized
64 surround.with.try.catch.finally.template=try / catch / finally
65 surround.with.try.catch.template=try / catch
66 surround.with.try.catch.incorrect.template.message=Invalid File Template for Catch Body!
67 surround.with.try.catch.incorrect.template.title=Surround With Try / Catch
68 surround.with.try.finally.template=try / finally
69 surround.with.while.template=while
70 surround.with.runtime.type.template=((RuntimeType)expr)
71 surround.with.chooser.title=Surround With
72 unwrap.popup.title=Choose the statement to unwrap/remove
73 unwrap.if=Unwrap 'if...'
74 unwrap.else=Unwrap 'else...'
75 remove.else=Remove 'else...'
76 unwrap.while=Unwrap 'while...'
77 unwrap.for=Unwrap 'for...'
78 unwrap.braces=Unwrap braces
79 unwrap.try=Unwrap 'try...'
80 remove.catch=Remove 'catch...'
81 unwrap.synchronized=Unwrap 'synchronized...'
82 unwrap.method.parameter=Unwrap ''{0}''
83 unwrap.anonymous=Unwrap 'anonymous...'
84 generate.equals.hashcode.wizard.title=Generate equals() and hashCode()
85 generate.equals.hashcode.equals.fields.chooser.title=Choose fields to be included in equals()
86 generate.equals.hashcode.hashcode.fields.chooser.title=Choose fields to be included in hashCode()
87 generate.equals.hashcode.non.null.fields.chooser.title=Select all non-null fields
88 generate.equals.hashcode.accept.sublcasses=Accept &subclasses as parameter to equals() method
89 generate.equals.hashcode.accept.sublcasses.explanation=<html><body>While generally incompliant to Object.equals() specification accepting<br>subclasses might be necessary for generated \
90 method to work correctly<br>with frameworks, which generate Proxy subclasses like Hibernate.</body></html>
91 generate.equals.hashcode.internal.error=Internal error
92 generate.equals.warning.equals.for.nested.arrays.not.supported=equals() for nested arrays is not supported
93 generate.equals.warning.generated.equals.could.be.incorrect=Generated equals() for Object[] can be incorrect
94 generate.equals.hashcode.warning.hashcode.for.arrays.is.not.supported=hashCode () for arrays is not supported
95 highlight.thrown.exceptions.chooser.all.entry=All listed
96 highlight.exceptions.thrown.chooser.title=Choose Exception Classes to Highlight
97 highlight.exceptions.thrown.notfound=No exceptions thrown in the method found 
98 status.bar.exit.points.highlighted.message={0} exit {0, choice, 1#point|2#points} highlighted (press {1} again to remove the highlighting, Escape to remove all highlighting)
99 status.bar.highlighted.usages.message={0} {0, choice, 1#usage|2#usages} of {1} found (press {2} again to remove the highlighting, Escape to remove all highlighting)
100 status.bar.highlighted.usages.no.target.message={0} {0, choice, 1#usage|2#usages} found (press {2} again to remove the highlighting, Escape to remove all highlighting)
101 status.bar.overridden.methods.highlighted.message={0} overridden {0, choice, 1#method|2#methods} found (press {1} again to remove the highlighting, Escape to remove all highlighting)
102 status.bar.highlighted.usages.not.found.message=No usages of {0} found
103 status.bar.highlighted.usages.not.found.no.target.message=No usages found
104 parameter.info.no.parameters=<no parameters>
105 xml.tag.info.no.attributes=<no attributes>
106 n.of.m={0} of {1}
107 quick.definition.back=Back
108 quick.definition.forward=Forward
109 quick.definition.edit.source=Edit Source
110 quick.definition.show.source=Show Source
111 i18n.quickfix.property.panel.title=Property Info
112 i18n.quickfix.property.panel.update.all.files.in.bundle.checkbox=Update all properties files in &Resource bundle
113 i18n.quickfix.property.panel.properties.file.label=&Properties File:
114 i18n.quickfix.property.panel.property.value.label=Property &Value:
115 i18n.quickfix.property.panel.property.key.label=Property &Key:
116 i18n.quickfix.code.panel.title=Java Code Info
117 i18n.quickfix.code.panel.resource.bundle.expression.label=Resource bundle &expression:
118 i18n.quickfix.preview.panel.title=Preview
119 quickfix.i18n.concatentation=I18nize string concatenation containing hard coded string literal
120 quickfix.i18n.concatentation.error=String concatenation not found
121 quickfix.i18n.command.name=I18nize
122 inspection.i18n.display.name=Hard coded strings
123 inspection.i18n.option.ignore.assert=Ignore for assert statement arguments
124 inspection.i18n.option.ignore.for.exception.constructor.arguments=Ignore for exception constructor arguments
125 inspection.i18n.option.ignore.for.specified.exception.constructor.arguments=Ignore for specified exception constructor arguments
126 inspection.i18n.option.ignore.for.junit.assert.arguments=Ignore for JUnit assert arguments
127 inspection.i18n.option.ignore.qualified.class.names=Ignore literals which have value equal to existing qualified class name
128 inspection.i18n.option.ignore.property.keys=Ignore literals which have value equal to existing property key
129 inspection.i18n.option.ignore.nonalphanumerics=Ignore literals which do not contain alphabetic characters
130 inspection.i18n.quickfix=I18nize hard coded string literal
131 inspection.i18n.message.general.with.value=Hard coded string literal: ''{0}''
132 inspection.unresolved.property.key.reference.name=Invalid property key
133 inspection.unresolved.property.key.reference.message=String literal ''{0}'' doesn''t appear to be valid property key
134 inspection.invalid.resource.bundle.reference=Invalid resource bundle reference ''{0}''
135 i18nize.dialog.title=I18nize Hardcoded String
136 i18nize.dialog.error.jdk.message=Class 'java.util.ResourceBundle' cannot be found.\nPlease setup correct JDK.
137 i18nize.dialog.error.jdk.title=Class Not Found
138 i18nize.dialog.property.file.chooser.title=Choose Properties File
139 i18nize.dialog.template.link.label=Edit I18n template
140 i18nize.dialog.error.property.already.defined.message=Property ''{0}'' already exists in the file ''{1}''
141 i18nize.dialog.error.property.already.defined.title=Property Already Exists
142 intention.split.declaration.family=Split Declaration
143 intention.split.declaration.text=Split into separate declarations
144 intention.split.declaration.assignment.text=Split into declaration and assignment
145 intention.add.override.annotation=Add '@Override' Annotation
146 intention.add.override.annotation.family=Add Override Annotation
147 intention.make.type.generic.family=Make Type Generic
148 intention.make.type.generic.text=Change type of {0} to {1}
149 intention.split.if.family=Split If
150 intention.split.if.text=Split into 2 if's
151 intention.implement.abstract.method.family=Implement Abstract Method
152 intention.implement.abstract.method.text=Implement method ''{0}''
153 intention.add.annotation.family=Add Annotation
154 intention.add.on.demand.static.import.family=Add On Demand Static Import
155 intention.add.on.demand.static.import.text=Add on demand static import for ''{0}''
156 intention.add.single.member.static.import.family=Add Single-Member Static Import
157 intention.add.single.member.static.import.text=Add static import for ''{0}''
158 intention.replace.concatenation.with.formatted.output.family=Replace Concatenation with Formatted Output
159 intention.replace.concatenation.with.formatted.output.text=Replace + with java.text.MessageFormat call
160 intention.color.chooser.dialog=Choose Color
161 dialog.create.field.from.parameter.title=Create Field
162 dialog.create.field.from.parameter.already.exists.text=Use existing field {0}?
163 dialog.create.field.from.parameter.already.exists.title=Field Already Exists
164 dialog.create.field.from.parameter.field.type.label=Field of type {0}
165 dialog.create.field.from.parameter.field.name.label=Name:
166 dialog.create.field.from.parameter.declare.final.checkbox=Declare &final
167 dialog.create.class.destination.package.label=Destination package:
168 dialog.create.class.package.chooser.title=Choose Destination Package
169 create.directory.command=Create directory
170 dialog.create.class.label=Create {0}:
171 dialog.create.class.name=Create {0} {1}
172 intention.implement.abstract.class.family=Implement Abstract Class or Interface
173 intention.implement.abstract.class.default.text=Implement Abstract Class
174 intention.implement.abstract.class.interface.text=Implement Interface
175 intention.implement.abstract.class.subclass.text=Create Subclass
176 intention.error.cannot.create.class.message=Cannot Create Class ''{0}''
177 intention.error.cannot.create.class.title=Failed to Create Class
178 intention.assign.field.from.parameter.text=Assign Parameter to Field ''{0}''
179 intention.assign.field.from.parameter.family=Assign Parameter to Field
180 intention.create.field.from.parameter.text=Create Field For Parameter ''{0}''
181 intention.create.field.from.parameter.family=Create Field for Parameter
182 intention.implement.abstract.method.searching.for.descendants.progress=Searching For Descendants...
183 intention.implement.abstract.method.error.no.classes.message=There are no classes found where this method can be implemented
184 intention.implement.abstract.method.error.no.classes.title=No Classes Found
185 intention.implement.abstract.method.class.chooser.title=Choose Implementing Class
186 intention.implement.abstract.method.command.name=Implement method
187 intention.invert.if.condition=Invert If Condition
189 intention.create.test=Create Test
190 intention.create.test.dialog.testing.library=Testing library:
191 intention.create.test.dialog.class.name=Class name:
192 intention.create.test.dialog.super.class=Superclass:
193 intention.create.test.dialog.choose.super.class=Choose Superclass
194 intention.create.test.dialog.generate=Generate:
195 intention.create.test.dialog.show.inherited=Show inherited methods
196 intention.create.test.dialog.select.methods=Generate test methods for:
197 intention.create.test.dialog.library.not.found={0} library not found in the module
198 intention.create.test.dialog.fix.library=Fix
200 lightbulb.tooltip=Click or press {0}
201 dialog.intention.settings.intention.list.title=Intention List
202 dialog.intention.settings.description.panel.title=Description
203 dialog.intention.settings.description.usage.example.title=<html><body><center><b>Usage Example:</b></center></body></html>
204 intention.settings=Intentions
205 intention.settings.category.text=<html><body><font face=\"verdana\" size=\"-1\">\
206   <center>You have selected intention category ''<b>{0}</b>''.</center>\
207   <center>Clicking the checkbox you can enable/disable all intentions in this category.</center>\
208   <center>To enable/disable particular intention, select the intention inside this category.</center>\
209   </font></body></html>
210 javadoc.description.copied.from.interface=Description copied from interface:
211 javadoc.description.copied.from.class=Description copied from class:
212 javadoc.deprecated=Deprecated
213 javadoc.since=Since:
214 javadoc.see.also=See Also:
215 javadoc.parameters=Parameters:
216 javadoc.returns=Returns:
217 javadoc.throws=Throws:
218 javadoc.method.in.interface={0} in interface {1}
219 javadoc.method.in.class={0} in class {1}
220 javadoc.method.overrides=Overrides:
221 javadoc.method.specified.by=Specified by:
222 javadoc.external.fetch.error.message=Cannot fetch remote documentation: {0}
223 searching.for.implementations=Searching For Implementations...
225 goto.implementation.chooser.title=<html><body>Choose Implementation of <b>{0}</b> ({1} classes found)</body></html>
226 goto.implementation.in.file.chooser.title=<html><body>Choose Implementation of <b>{0}</b> ({1} files found)</body></html>
228 goto.test.chooser.title=<html><body>Choose Test for <b>{0}</b> ({1} classes found)</body></html>
229 goto.test.in.file.chooser.title=<html><body>Choose Test for <b>{0}</b> ({1} files found)</body></html>
230 goto.test.subject.chooser.title=<html><body>Choose Test Subject for <b>{0}</b> ({1} classes found)</body></html>
231 goto.test.subject.in.file.chooser.title=<html><body>Choose Test Subject for <b>{0}</b> ({1} files found)</body></html>
233 incremental.search.tooltip.prefix=Search for:
234 goto.super.method.chooser.title=Choose super method
235 goto.super.class.chooser.title=Choose super class or interface
236 javadoc.action.back=Back
237 javadoc.action.forward=Forward
238 javadoc.action.view.external=View External Documentation
239 javadoc.documentation.not.found.message=The documentation for this element is not found.\nPlease add all the needed paths to API docs in Project Settings.
240 javadoc.documentation.not.found.title=No Documentation
241 javadoc.fetching.progress=Fetching Documentation....
242 no.documentation.found=No documentation found.
243 javadoc.candiates=<html>Candidates for method call <b>{0}</b> are:<br><br>{1}</html>
244 javadoc.candidates.not.found=<html>No candidates found for method call <b>{0}</b>.</html>
245 declaration.navigation.title=Choose Declaration
246 template.shortcut.enter=Enter
247 template.shortcut.tab=Tab
248 template.shortcut.space=Space
249 dialog.edit.live.template.title=Edit Live Template
250 dialog.add.live.template.title=Add Live Template
251 templates.no.defined=No templates defined in this context
252 templates.surround.no.defined=No surround templates defined in this context
253 templates.no.defined.with.prefix=No templates starting with ''{0}'' defined in this context
254 templates.settings.page.title=Live Templates
255 templates.select.template.chooser.title=Select Template
256 templates.export.display.name=Code templates
257 templates.dialog.edit.variables.title=Edit Template Variables
258 templates.dialog.edit.variables.border.title=Variables
259 templates.dialog.edit.variables.action.move.up=Move &Up
260 templates.dialog.edit.variables.action.move.down=Move &Down
261 templates.dialog.edit.variables.table.column.name=Name
262 templates.dialog.edit.variables.table.column.expression=Expression
263 templates.dialog.edit.variables.table.column.default.value=Default value
264 templates.dialog.edit.variables.table.column.skip.if.defined=Skip if defined
265 templates.dialog.table.column.abbreviation=Abbreviation
266 templates.dialog.table.column.description=Description
267 templates.dialog.table.column.active=Active
268 templates.dialog.table.action.add=&Add...
269 templates.dialog.table.action.copy=&Copy...
270 templates.dialog.table.action.edit=&Edit...
271 templates.dialog.table.action.remove=&Remove
272 templates.dialog.shortcut.chooser.label=By default expand with
273 dialog.copy.live.template.title=Copy Live Template
274 template.delete.confirmation.text=Do you want to delete this template?
275 template.delete.confirmation.title=Confirm Delete
276 template.delete.group.confirmation.text=Do you want to delete this template group?
277 dialog.edit.template.shortcut.default=Default ({0})
278 dialog.edit.template.template.text.title=Template text
279 dialog.edit.template.button.edit.variables=&Edit variables
280 dialog.edit.template.label.abbreviation=&Abbreviation:
281 dialog.edit.template.label.group=&Group:
282 dialog.edit.template.label.description=&Description:
283 dialog.edit.template.options.title=Options
284 dialog.edit.template.label.expand.with=Expand with
285 dialog.edit.template.checkbox.reformat.according.to.style=&Reformat according to style
286 dialog.edit.template.checkbox.shorten.fq.names=Shorten &FQ names
287 dialog.edit.template.context.title=Context
288 dialog.edit.template.checkbox.java.code=&Java code
289 dialog.edit.template.checkbox.html=&HTML
290 dialog.edit.template.checkbox.java.comment=Java &comment
291 dialog.edit.template.checkbox.xml=&XML
292 dialog.edit.template.checkbox.java.string=Java &string
293 dialog.edit.template.checkbox.jsp=JS&P
294 dialog.edit.template.checkbox.smart.type.completion=Smart type c&ompletion
295 dialog.edit.template.checkbox.other=O&ther
296 dialog.edit.template.error.title=Cannot Save
297 dialog.edit.template.error.malformed.abbreviation=Cannot save the template.\nTemplate abbreviation should contain only letters, digits, dots and hyphens.
298 dialog.edit.template.error.already.exists=Cannot save the template.\nTemplate with the abbreviation \"{0}\"\nalready exists in group \"{1}\".\nTry another abbreviation.
299 dialog.edit.template.error.malformed.template=Error parsing the template
300 finish.template.command=Finish Template
301 insert.code.template.command=Insert Code Template
302 template.next.variable.command=Go to Next Code Template Tab
303 template.previous.variable.command=Go to Previous Code Template Tab
304 macro.array.variable=arrayVariable()
305 macro.capitalize.string=capitalize(String)
306 macro.cast.to.left.side.type=castToLeftSideType()
307 macro.classname=className()
308 macro.component.type.of.array=componentTypeOf(Array)
309 macro.current.package=currentPackage()
310 macro.decapitalize.string=decapitalize(String)
311 macro.firstWord.string=firstWord(String)
312 macro.undescoresToSpaces.string=underscoresToSpaces(String)
313 macro.descendant.classes.enum=descendantClassesEnum(String)
314 macro.enum=enum(...)
315 macro.expected.type=expectedType()
316 macro.groovy.script=groovyScript("groovy code")
317 macro.guess.element.type.of.container=guessElementType(Container)
318 macro.iterable.component.type=iterableComponentType(ArrayOrIterable)
319 macro.iterable.variable=iterableVariable()
320 macro.linenumber=lineNumber()
321 macro.methodname=methodName()
322 macro.qualified.class.name=qualifiedClassName()
323 macro.right.side.type=rightSideType()
324 macro.suggest.index.name=suggestIndexName()
325 macro.suggest.variable.name=suggestVariableName()
326 macro.variable.of.type=variableOfType(Type)
327 command.name.surround.with.runtime.cast=Surround with runtime cast
328 inspection.i18n.expression.is.invalid.error.message=The I18nized Expression template is not a valid expression
329 inspection.error.dialog.title=Error
330 livetemplate.description.tag.pair=Tag pair
331 livetemplate.description.itar=Iterate elements of array
332 livetemplate.description.itco=Iterate elements of java.util.Collection
333 livetemplate.description.iten=Iterate java.util.Enumeration
334 livetemplate.description.itit=Iterate java.util.Iterator
335 livetemplate.description.itli=Iterate elements of java.util.List
336 livetemplate.description.ittok=Iterate tokens from String
337 livetemplate.description.itve=Iterate elements of java.util.Vector
338 livetemplate.description.ritar=Iterate elements of array in reverse order
339 livetemplate.description.iter=Iterate Iterable | Array in J2SDK 5.0 syntax
340 livetemplate.description.itover=Iterate over an Iterable or Array selection in J2SDK 5.0 syntax
341 livetemplate.description.inst=Checks object type with instanceof and down-casts it
342 livetemplate.description.lst=Fetches last element of an array
343 livetemplate.description.mn=Sets lesser value to a variable
344 livetemplate.description.mx=Sets greater value to a variable
345 livetemplate.description.psvm=main() method declaration
346 livetemplate.description.toar=Stores elements of java.util.Collection into array
347 livetemplate.description.lazy=Performs lazy initialization
348 livetemplate.description.serr=Prints a string to System.err
349 livetemplate.description.sout=Prints a string to System.out
350 livetemplate.description.souf=Prints a formatted string to System.out
351 livetemplate.description.soutm=Prints current class and method names to System.out
352 livetemplate.description.soutv=Prints a value to System.out
353 livetemplate.description.st=String
354 livetemplate.description.psf=public static final
355 livetemplate.description.psfi=public static final int
356 livetemplate.description.psfs=public static final String
357 livetemplate.description.thr=throw new
358 livetemplate.description.surround.braces=Surround with {}
359 livetemplate.description.surround.parens=Surround with ()
360 livetemplate.description.surround.tag=Surround with <tag></tag>
361 livetemplate.description.surround.tag.in.htmlorjsp=Surround with <tag></tag> in HTML/JSP
362 livetemplate.description.surround.cdata.in.xmlorhtmlorjsp=Surround with CDATA section
363 livetemplate.description.surround.with.callable=Surround with Callable
364 livetemplate.description.surround.with.read.lock=Surround with ReadWriteLock.readLock
365 livetemplate.description.surround.with.write.lock=Surround with ReadWriteLock.writeLock
366 quickfix.add.variable.text=Initialize variable ''{0}''
367 quickfix.add.variable.family.name=Initialize variable
368 inspection.i18n.quickfix.annotate.as=Annotate as @{0}
369 inspection.i18n.quickfix.annotate.element.as=Annotate {0} ''{1}'' as @{2}
370 disable.intention.action=Disable ''{0}''
371 enable.intention.action=Enable ''{0}''
372 under.construction.string=Under construction.
373 inspection.i18n.option.ignore.comment.pattern=Ignore lines containing this comment (pattern in java.util.Pattern format):
374 inspection.i18n.option.ignore.comment.title=Non-Nls comment pattern
375 inspection.i18n.option.ignore.assigned.to.constants=Ignore literals assigned to constants
376 inspection.i18n.option.ignore.tostring=Ignore contents of toString() method
377 intention.move.initializer.to.constructor=Move initializer to constructor
378 intention.move.field.assignment.to.declaration=Move assignment to field declaration
379 i18nize.jsp.error=Please select JSP text to I18nize.\nMake sure you have not selected any scriptlets, custom tags or other foreign languages elements.\nAlso, HTML tags inside selection must be balanced.
380 i18nize.error.title=Cannot I18nize Selection
381 i18nize.error.message=You can only i18nize Java string literal or substring thereof.\nPlease point the caret inside Java string literal or select part of it.
382 display.coverage.prompt=Do you want to display coverage data for ''{0}''?
383 code.coverage=Code Coverage
384 coverage.button.add.package=Add &Package
385 coverage.pattern.filter.editor.choose.package.title=Choose Package
386 no.coverage=No coverage
387 code.coverage.is.not.supported=Code coverage is supported for jre 5.0 or higher
388 title.popup.show.coverage=Coverage Suites
389 prompt.remove.coverage=Do you want to remove ''{0}'' coverage data?
390 title.remove.coverage.data=Remove Coverage Data
391 coverage.data.outdated=Coverage data outdated
392 coverage.data.not.found=Coverage data not found
393 error.cannot.resolve.class=Cannot resolve class ''{0}''
394 implementation.view.title=Definition of {0}
395 javadoc.info.title=Documentation for {0}
396 intention.intercept.ejb.method.or.class.family=Add EJB interceptor
397 intention.intercept.ejb.method.or.class.class.text=Add interceptor for EJB class ''{0}''
398 intention.intercept.ejb.method.or.class.method.text=Add interceptor for business method ''{0}''
399 intention.edit.interceptor.binding.family=Interceptor Bindings
400 intention.edit.interceptor.binding.text=Edit Interceptor ''{0}'' bindings
401 powered.by=Powered by:
402 powered.by.plugin=''{0}'' plugin.
403 error.cannot.convert.default.message=Invalid value: ''{0}''
404 error.cannot.resolve.default.message=Cannot resolve symbol ''{0}''
405 error.cannot.resolve.0.1=Cannot resolve {0} {1}
406 error.unknown.enum.value.message=Unknown enum value ''{0}''
407 i18nize.cant.create.properties.file.because.its.name.is.associated=Can''t create properties file ''{0}'' because its name is associated with the {1}.
408 i18nize.error.creating.properties.file=Error creating properties file
409 node.method.tooltip=Method
410 node.field.tooltip=Field
411 node.annotation.tooltip=Annotation
412 node.anonymous.class.tooltip=Anonymous Class
413 node.enum.tooltip=Enum
414 node.exception.tooltip=Exception
415 node.interface.tooltip=Interface
416 node.junit.test.tooltip=JUnit Test
417 node.runnable.class.tooltip=Runnable Class
418 node.class.tooltip=Class
419 node.excluded.flag.tooltip=Excluded
420 node.abstract.flag.tooltip=Abstract
421 node.final.flag.tooltip=Final
422 node.static.flag.tooltip=Static
423 multiple.implementations.tooltip=Multiple implementations
424 static.class.initializer={0}class initializer
426 # suppress inspection "unused property"
427 intentions.category.ejb=EJB
428 set.language.level=Set language level
429 set.language.level.to.0=Set language level to {0}
430 remove.annotation=Remove annotation
431 add.external.annotation.test=Add external annotation @{0}
432 deannotate.intention.action.text=Deannotate
433 deannotate.intention.chooser.title=Choose annotation to delete
434 javadoc.type.parameters=Type parameters:
435 highlight.overridden.classes.chooser.title=Choose Classes to Highlight Overridden Methods from
436 no.methods.overriding.0.are.found=No methods overriding {0, choice, 0#|1# '{1}'|2#these classes} are found
437 copy.abstract.method.no.existing.implementations.found=No existing implementations found
438 copy.abstract.method.intention.name=Use existing implementation of ''{0}''
439 copy.abstract.method.popup.title=Choose implementation to copy
440 copy.abstract.method.title=Use Abstract Method Implementation
441 i18nize.empty.file.path=Please specify properties file path
442 choose.type.popup.title=Choose Type
443 cast.expression=Cast expression
444 cast.to.0=Cast to ''{0}''
445 class.completion.file.path=Press {0} to search for all project files
446 property.has.more.parameters.than.passed=Property ''{0}'' expected {1} {1, choice, 1#parameter|2#parameters}, passed {2}
447 create.file.family=Create File
448 rename.file.reference.family=Rename File Reference
449 rename.file.reference.text=Rename File Reference to {0}
450 create.directory.text=Create Directory {0}
451 create.file.text=Create File {0}
452 create.tagfile.text=Create Tag File {0}
453 rename.file.fix=Rename File
454 rename.public.class.family=Rename Public Class
455 rename.public.class.text=Rename class ''{0}'' to ''{1}''
456 rename.named.element.text=Rename ''{0}'' to ''{1}''