blob: 9632f9d8a1e97e8431ea796ff63513ab8891686c [file] [log] [blame]
asobolev162d2b82007-05-02 15:07:19 +00001###############################################################################
2# Copyright (c) 2005, 2007 IBM Corporation and others.
3# All rights reserved. This program and the accompanying materials
4# are made available under the terms of the Eclipse Public License v1.0
5# which accompanies this distribution, and is available at
6# http://www.eclipse.org/legal/epl-v10.html
7#
8
9###############################################################################
asobolevc6294ad2007-02-22 08:39:46 +000010pluginProvider=Eclipse.org
11pluginName=Dynamic Languages Toolkit Core UI
12
13context.editingScriptSource.name = Editing Script Source
14context.editingScriptSource.description = Editing Script Source Context
15
16##########################################################################
17# Marker Support
18##########################################################################
19markerCategory.problem = DLTK Problems
20markerCategory.buildpath_problem = DLTK Build Path Problems
21
22#--- script problem grouping
23MarkerCategory.name=DLTK Problem Type
24MarkerCategory.buildpath=Build Path
25MarkerCategory.fatal=Fatal Errors
26MarkerCategory.documentation=Documentation
27MarkerCategory.codestyle=Code Style
28MarkerCategory.potential=Potential Programming Problems
29MarkerCategory.deprecation=Deprecation
30MarkerCategory.generictypes=Type Safety and Raw Types
31MarkerCategory.unnecessary=Unnecessary Code
32MarkerCategory.nls=Externalized Strings
33MarkerCategory.restrictedAPI=Restricted API
34
35buildPathPrefName=Build Path
36
37ScriptWorkingSetPage.name=Script Working Set
38OthersWorkingSetWizardPage.name=Other projects
39
40##########################################################################
41# Filter Support
42##########################################################################
43HideSystemFiles.label= .* resources
44HideSystemFiles.description= Hides resources with names that start with a '.'
45
46HideEmptyPackages.label= Empty packages
47HideEmptyPackages.description= Hides all empty packages
48
49HideNoPackageContainingFolders.label= Folder containing no packages
50HideNoPackageContainingFolders.description= Hides folders which do not contain any packages
51
52HideEmptyInnerPackages.label= Empty parent packages
53HideEmptyInnerPackages.description= Hides empty packages which do not contain Script files but other sub-folders. E.g. given a package 'org.junit' where 'org' does not contain any Script files, this filter will hide the package 'org' but not the package 'org.junit'
54
55HideNonScriptElements.label= Non-Script elements
56HideNonScriptElements.description= Show only Script elements
57
58HideReferencedLibraries.label= Libraries from external
59HideReferencedLibraries.description= Hides external libraries i.e. those not contained inside the project itself
60
61HideContainedLibraries.label=Libraries in project
62HideContainedLibraries.description= Hides local libraries i.e. those contained inside the project itself
63
64HideScriptFiles.label= Script files
65HideScriptFiles.description= Hides all Script files
66
67HideImportDeclaration.label= Import declarations
68HideImportDeclaration.description= Hides all import declarations
69
70HideNonScriptProjects.label= Non-Script projects
71HideNonScriptProjects.description= Shows only Script projects
72
73HideAnnotation.label= Annotations
74HideAnnotation.description= Hides all annotations
75
76HideNonSharedProjects.label= Non-shared projects
77HideNonSharedProjects.description= Shows only shared projects
78
79HideClosedProjects.label= Closed projects
80HideClosedProjects.description= Hides closed projects
81
82HideFields.label= Fields
83HideFields.description= Hides fields
84
85HideLocalTypes.label= Local types
86HideLocalTypes.description= Hides local types
87
88sourceHover= Source
89sourceHoverDescription= Shows the source of the selected element.
90documentationHover= Documentation
91documentationHoverDescription= Shows the documentation of the selected element.
92nlsStringHover= Externalized String
93nlsStringHoverDescription= Shows the externalized string of the selected key.
94sequentialHover= Combined Hover
95sequentialHoverDescription= Tries the hovers in the sequence listed in above table, excluding this hover, and uses the one which fits best for the selected element and the current context.
96annotationHover= Annotation Description
97annotationHoverDescription= Shows the description of the selected annotation.
98problemHover= Problem Description
99problemHoverDescription= Shows the description of the selected problem.
100
101scriptCompletionProposalComputer= Script Completion Proposal Computers
102sacriptCompletionProposalSorters= Script Completion Proposal Sorters
103
104#############################
105#Content Assistance
106
107RelevanceSorter.name=by relevance
108AlphabeticSorter.name=alphabetically
109
110ScriptProposalCategory= Other &Script Proposals
111ScriptTypesCategory= &Type Proposals
112DefaultProposalCategory= &Basic Proposals
113TemplateProposalCategory= Te&mplate Proposals
114TextProposalCategory= &Word Proposals
115
116scriptEditorTextHoversName=Script Editor Text Hovers
117scriptDocumentSetupParticipant=Script Document Setup Participant
118
119SpecificContentAssist.name= Content Assist
120SpecificContentAssist.desc= A parameterizable command that invokes content assist with a single completion proposal category
121SpecificContentAssist.param= type
122
123
124#--- commands not assigned to a menu
125ActionDefinition.foldingCollapseMembers.name= Collapse Members
126ActionDefinition.foldingCollapseMembers.description= Collapse all members
127
128ActionDefinition.foldingCollapseComments.name= Collapse Comments
129ActionDefinition.foldingCollapseComments.description= Collapse all comments
130
131#--- Script explorer
132ScriptExplorerViewName=Script explorer
133
134#--- Call Hierarchy
135CallHierarchyViewName=Call Hierarchy
136OpenCallHierarchyAction.label=Open &Call hierarchy
137
asobolev53826762007-02-26 13:18:38 +0000138
139
asobolevc6294ad2007-02-22 08:39:46 +0000140##########################################################################
141# Coding Action set
142##########################################################################
143CodingActionSet.label= DLTK Coding
144CodingActionSet.description= Action set containing coding related DLTK actions
145
146Refactoring.menu.label= Refac&tor
147
148Refactoring.renameAction.label=Re&name...
149Refactoring.moveAction.label=&Move...
150Refactoring.modifyParametersAction.label=&Change Method Signature...
151Refactoring.convertNestedToTopAction.label=Con&vert Member Type to Top Level
152
153Refactoring.pushDownAction.label=Push &Down...
154Refactoring.pullUpAction.label=Pull &Up...
155Refactoring.extractInterfaceAction.label=&Extract Interface...
156Refactoring.extractSupertypeAction.label=Extrac&t Superclass...
157Refactoring.changeTypeAction.label=Generali&ze Declared Type...
158Refactoring.useSupertypeAction.label=Use Supertype W&here Possible...
159Refactoring.inferTypeArgumentsAction.label=Infer &Generic Type Arguments...
160
161Refactoring.extractMethodAction.label=E&xtract Method...
162Refactoring.extractTempAction.label=Extract &Local Variable...
163Refactoring.extractConstantAction.label=Extr&act Constant...
164
165Refactoring.introduceIndirectionAction.label=Introduce Indirec&tion...
166Refactoring.introduceParameterAction.label=Introduce &Parameter...
167Refactoring.introduceFactoryAction.label=Introduce &Factory...
168Refactoring.convertLocalToFieldAction.label=Convert Local Varia&ble to Field...
169Refactoring.selfEncapsulateFieldAction.label=Encap&sulate Field...
170
171Refactoring.showHistory.label=&History...
172
173##########################################################################
174# Navigate Menu
175##########################################################################
176
177GoToTypeAction.label=&Type...
178
179GoToPackageAction.label=&Package...
180
181OpenAction.label=&Open
182OpenAction.tooltip=Open an Editor on the Selected Element
183
184OpenSuperImplementationAction.label=Open &Super Implementation
185OpenSuperImplementationAction.tooltip=Opens the Implementation of the Method in a Super Type, when Super Type Exists.
186
187OpenTypeHierarchyAction.label=Ope&n Type Hierarchy
188
189OpenCallHierarchyAction.label=Open Call H&ierarchy
190
191OpenTypeInHierarchyAction.label=Open Type in Hierarch&y...
192OpenTypeInHierarchyAction.tooltip=Opens a Type in a Type Hierarchy
193
194##########################################################################
195# Open Action set
196##########################################################################
197OpenActionSet.label= DLTK Open Actions
198OpenActionSet.description= Action set containing open actions for DLTK
199
200##########################################################################
201# Source Menu
202##########################################################################
203SourceMenu.label= &Source
204
205CommentAction.label= Co&mment
206
207UncommentAction.label= &Uncomment
208
209ToggleCommentAction.label= Togg&le Comment
210
211AddBlockCommentAction.label= Add &Block Comment
212
213RemoveBlockCommentAction.label= Remove Bloc&k Comment
214
215ShiftRightAction.label= &Shift Right
216
217ShiftLeftAction.label= S&hift Left
218
219FormatAction.label=&Format
220
221FormatElementAction.label= Format Eleme&nt
222
223SortMembersAction.label= S&ort Members...
224
225AddImportAction.label= A&dd Import
226
227OrganizeImportsAction.label= Or&ganize Imports
228
229CleanUpAction.label= Clean &Up...
230
231CopyQualifiedName.label= Cop&y Qualified Name
232
233SurroundWithTemplateAction.label= Surround &With
234
235OverrideMethodsAction.label= O&verride/Implement Methods...
236
237GenerateGetterSetterAction.label= Gene&rate Getters and Setters...
238
239GenerateDelegateMethodsAction.label=Generate Delegate &Methods...
240
241AddConstructorFromSuperclassAction.label= Generate &Constructors from Superclass...
242
243GenerateConstructorUsingFieldsAction.label= Gener&ate Constructor using Fields...
244
245AddScriptDocCommentAction.label= Generate Element Comm&ent
246
247GenerateHashCodeEqualsAction.label= Generate &hashCode() and equals()...
248
249
250ExternalizeStringsAction.label= E&xternalize Strings...
251
252FindNLSProblems.label= Find Broken Ex&ternalized Strings
253
254IndentAction.label= Correct &Indentation
255
256#--- Navigate menu
257ActionDefinition.openType.name= Open Type
258ActionDefinition.openType.description= Open a type in a DLTK editor
259
260ActionDefinition.openTypeInHierarchy.name= Open Type in Hierarchy
261ActionDefinition.openTypeInHierarchy.description= Open a type in the type hierarchy view
262
263ActionDefinition.gotoPackage.name= Go to Package
264ActionDefinition.gotoPackage.description= Go to Package
265
266ActionDefinition.gotoType.name= Go to Type
267ActionDefinition.gotoType.description= Go to Type
268
269ActionDefinition.openEditor.name= Open Declaration
270ActionDefinition.openEditor.description= Open an editor on the selected element
271
272ActionDefinition.openSuperImplementation.name= Open Super Implementation
273ActionDefinition.openSuperImplementation.description= Open the Implementation in the Super Type
274
275ActionDefinition.openExternalScriptdoc.name= Open External doc
276ActionDefinition.openExternalScriptdoc.description= Open the doc of the selected element in an external browser
277
278ActionDefinition.openTypeHierarchy.name= Open Type Hierarchy
279ActionDefinition.openTypeHierarchy.description= Open a type hierarchy on the selected element
280
281ActionDefinition.openCallHierarchy.name= Open Call Hierarchy
282ActionDefinition.openCallHierarchy.description= Open a call hierarchy on the selected element
283
284ActionDefinition.showInPackageView.name= Show in Package Explorer
285ActionDefinition.showInPackageView.description= Show the selected element in the Package Explorer
286
287
288ActionDefinition.gotoMatchingBracket.name= Go to Matching Bracket
289ActionDefinition.gotoMatchingBracket.description= Moves the cursor to the matching bracket
290
291
292#--- Edit menu
293ActionDefinition.show.outline.name= Quick Outline
294ActionDefinition.show.outline.description= Show the quick outline for the editor input
295
296ActionDefinition.open.hierarchy.name= Quick Hierarchy
297ActionDefinition.open.hierarchy.description= Show the quick hierarchy of the selected element
298
299ActionDefinition.open.structure.name= Open Structure
300ActionDefinition.open.structure.description= Show the structure of the selected element
301
302ActionDefinition.gotoNextMember.name= Go to Next Member
303ActionDefinition.gotoNextMember.description= Move the caret to the next member of the compilation unit
304
305ActionDefinition.gotoPreviousMember.name= Go to Previous Member
306ActionDefinition.gotoPreviousMember.description= Move the caret to the previous member of the compilation unit
307
308ActionDefinition.selectEnclosing.name= Select Enclosing Element
309ActionDefinition.selectEnclosing.description= Expand selection to include enclosing element
310
311ActionDefinition.selectNext.name= Select Next Element
312ActionDefinition.selectNext.description= Expand selection to include next sibling
313
314ActionDefinition.selectPrevious.name= Select Previous Element
315ActionDefinition.selectPrevious.description= Expand selection to include previous sibling
316
317ActionDefinition.selectLast.name= Restore Last Selection
318ActionDefinition.selectLast.description= Restore last selection
319
320
321ActionDefinition.showDocumentation.name= Show Tooltip Description
322ActionDefinition.showDocumentation.description= Shows the tooltip description for the element at the cursor
323
324
325ActionDefinition.removeOccurrenceAnnotations.name= Remove Occurrence Annotations
326ActionDefinition.removeOccurrenceAnnotations.description= Removes the occurrence annotations from the current editor
327
328
329#--- Source menu
330ActionDefinition.sourceQuickMenu.name= Show Source Quick Menu
331ActionDefinition.sourceQuickMenu.description= Shows the source quick menu
332
333ActionDefinition.comment.name= Comment
334ActionDefinition.comment.description= Turn the selected lines into DLTK comments
335
336ActionDefinition.uncomment.name= Uncomment
337ActionDefinition.uncomment.description= Uncomment the selected DLTK comment lines
338
339ActionDefinition.toggleComment.name= Toggle Comment
340ActionDefinition.toggleComment.description= Toggle comment the selected lines
341
342ActionDefinition.addBlockComment.name= Add Block Comment
343ActionDefinition.addBlockComment.description= Enclose the selection with a block comment
344
345ActionDefinition.removeBlockComment.name= Remove Block Comment
346ActionDefinition.removeBlockComment.description= Remove the block comment enclosing the selection
347
348ActionDefinition.format.name= Format
349ActionDefinition.format.description= Format the selected text
350
351ActionDefinition.copyQualifiedName.name= Copy Qualified Name
352ActionDefinition.copyQualifiedName.description= Copy a fully qualified name to the system clipboard
353
354ActionDefinition.quickformat.name= Format Element
355ActionDefinition.quickformat.description= Format enclosing text element
356
357ActionDefinition.addImport.name= Add Import
358ActionDefinition.addImport.description= Create import statement on selection
359
360ActionDefinition.organizeImports.name= Organize Imports
361ActionDefinition.organizeImports.description= Evaluate all required imports and replace the current imports
362
363ActionDefinition.cleanUp.name= Clean Up
364ActionDefinition.cleanUp.description= Solve problems and improve code style on selected resources
365
366ActionDefinition.sortMembers.name=Sort Members
367ActionDefinition.sortMembers.description=Sort all members using the member order preference
368
369ActionDefinition.delegateMethods.name=Generate Delegate Methods
370ActionDefinition.delegateMethods.description=Add delegate methods for a type's fields
371
372ActionDefinition.getterSetter.name=Generate Getters and Setters
373ActionDefinition.getterSetter.description=Generate Getter and Setter methods for type's fields
374
375ActionDefinition.addScriptdocComment.name=Add Javadoc Comment
376ActionDefinition.addScriptdocComment.description=Add a Scriptdoc comment stub to the member element
377
378ActionDefinition.surroundWith.tryCatch.name= Surround with try/catch Block
379ActionDefinition.surroundWith.tryCatch.description= Surround the selected text with a try/catch block
380
381ActionDefinition.surroundWith.quickMenu.name= Surround With Quick Menu
382ActionDefinition.surroundWith.quickMenu.description= Shows the Surround With quick menu
383
384ActionDefinition.overrideMethods.name= Override/Implement Methods
385ActionDefinition.overrideMethods.description= Override or implement methods from super types
386
387ActionDefinition.generateHashCode.name= Generate hashCode() and equals()
388ActionDefinition.generateHashCode.description= Generates hashCode() and equals() methods for the type
389
390ActionDefinition.addUnimplementedConstructors.name= Generate Constructors from Superclass
391ActionDefinition.addUnimplementedConstructors.description= Evaluate and add constructors from superclass
392
393ActionDefinition.generateConstructorUsingFields.name= Generate Constructor using Fields
394ActionDefinition.generateConstructorsUsingFields.description= Choose fields to initialize and constructor from superclass to call
395
396
397ActionDefinition.externalizeStrings.name= Externalize Strings
398ActionDefinition.externalizeStrings.description=Finds all strings that are not externalized and moves them into a separate property file
399
400ActionDefinition.findNLSProblems.name= Find Broken Externalized Strings
401ActionDefinition.findNLSProblems.description=Finds undefined, duplicate and unused externalized string keys in property files
402
403ActionDefinition.indent.name= Indent Line
404ActionDefinition.indent.description=Indents the current line
405
406ActionDefinition.corrections.renameInFile.name=Quick Assist - Rename in file
407ActionDefinition.corrections.renameInFile.description=Invokes quick assist and selects 'Rename in file'
408
409ActionDefinition.corrections.assignToLocal.name=Quick Assist - Assign to local variable
410ActionDefinition.corrections.assignToLocal.description=Invokes quick assist and selects 'Assign to local variable'
411
412ActionDefinition.corrections.assignToField.name=Quick Assist - Assign to field
413ActionDefinition.corrections.assignToField.description=Invokes quick assist and selects 'Assign to field'
414
415ActionDefinition.corrections.assignParamToField.name=Quick Assist - Assign parameter to field
416ActionDefinition.corrections.assignParamToField.description=Invokes quick assist and selects 'Assign parameter to field'
417
418ActionDefinition.corrections.addBlock.name=Quick Assist - Replace statement with block
419ActionDefinition.corrections.addBlock.description=Invokes quick assist and selects 'Replace statement with block'
420
421ActionDefinition.corrections.addThrowsDecl.name=Quick Fix - Add throws declaration
422ActionDefinition.corrections.addThrowsDecl.description=Invokes quick assist and selects 'Add throws declaration'
423
424ActionDefinition.corrections.addCast.name=Quick Fix - Add cast
425ActionDefinition.corrections.addCast.description=Invokes quick assist and selects 'Add cast'
426
427ActionDefinition.corrections.addNonNLS.name=Quick Fix - Add non-NLS tag
428ActionDefinition.corrections.addNonNLS.description=Invokes quick assist and selects 'Add non-NLS tag'
429
430ActionDefinition.corrections.qualifyField.name=Quick Fix - Qualify field access
431ActionDefinition.corrections.qualifyField.description=Invokes quick assist and selects 'Qualify field access'
432
433ActionDefinition.corrections.changeToStatic.name=Quick Fix - Change to static access
434ActionDefinition.corrections.changeToStatic.description=Invokes quick assist and selects 'Change to static access'
435
436ActionDefinition.corrections.addImport.name=Quick Fix - Add import
437ActionDefinition.corrections.addImport.description=Invokes quick assist and selects 'Add import'
438
439ActionDefinition.corrections.addSuppressWarnings.name=Quick Fix - Add @SuppressWarnings
440ActionDefinition.corrections.addSuppressWarnings.description=Invokes quick fix and selects 'Add @SuppressWarnings'
441
442ActionDefinition.corrections.splitJoinVariableDeclaration.name=Quick Assist - Split/Join variable declaration
443ActionDefinition.corrections.splitJoinVariableDeclaration.description=Invokes quick assist and selects 'Split/Join variable declaration'
444
445ActionDefinition.corrections.extractLocal.name=Quick Assist - Extract local variable
446ActionDefinition.corrections.extractLocal.description=Invokes quick assist and selects 'Extract local variable'
447
448ActionDefinition.corrections.extractConstant.name=Quick Assist - Extract constant
449ActionDefinition.corrections.extractConstant.description=Invokes quick assist and selects 'Extract constant'
450
451ActionDefinition.corrections.convertLocalToField.name=Quick Assist - Convert local variable to field
452ActionDefinition.corrections.convertLocalToField.description=Invokes quick assist and selects 'Convert local variable to field'
453
454ActionDefinition.corrections.inlineLocal.name=Quick Assist - Inline local variable
455ActionDefinition.corrections.inlineLocal.description=Invokes quick assist and selects 'Inline local variable'
456
457ActionDefinition.corrections.convertAnonymousToLocal.name=Quick Assist - Convert anonymous to local class
458ActionDefinition.corrections.convertAnonymousToLocal.description=Invokes quick assist and selects 'Convert anonymous to local class'
asobolev98329cf2007-02-26 08:20:33 +0000459
460typeHierarchyName=Type Hierarchy
461typeHierarchy.perspective.description=This perspective is designed to support DLTK script development. It offers a Type Hierarchy and Script-specific navigation actions.
asobolev53826762007-02-26 13:18:38 +0000462
463OpenTypeInHierarchyAction.label=Open Type in Hierarch&y...
mkaluginbf7a35c2007-04-06 06:55:16 +0000464OpenTypeInHierarchyAction.tooltip=Opens a Type in a Type Hierarchy
465
mkaluginf73e2cf2007-04-20 15:24:30 +0000466DLTKSource=DLTK Source
467
asobolev219e69a2007-05-10 13:12:15 +0000468Views.ASTOutline=AST Outline
469
470##########################################################################
471# Script Search
472##########################################################################
473ScriptSearchPage.label= Script Search
474openScriptSearchPageAction.label= &Script...
475
476# Action sets
477ScriptSearchActionSet.label= Script Search
478ScriptSearchActionSet.description= Action set containing search related Script actions
479
480# Menus
481searchMenu.label= Se&arch
482declarationsSubMenu.label= Dec&larations
483referencesSubMenu.label= R&eferences
484occurrencesSubMenu.label= Occurre&nces in File
485implementorsSubMenu.label= &Implementors
486readAccessSubMenu.label= &Read Access
487writeAccessSubMenu.label= &Write Access
488
489ReferencesInWorkspace.label= &Workspace
490DeclarationsInWorkspace.label= &Workspace
491
492InWorkspace.label= &Workspace
493InProject.label= &Project
494InHierarchy.label= &Hierarchy
495InWorkingSet.label= Working &Set...
496
497CompareWithMenu.label=Comp&are With
498
499ReplaceWithMenu.label=Rep&lace With
500
501ScriptCompareFromHistoryAction.label= Element from &Local History...
502ScriptCompareFromHistoryAction.tooltip= Compares the Selected Script Element With One from Local History
503
504ScriptCompareAction.label= Other E&lement...
505ScriptCompareAction.tooltip= Compares the Selected Script Elements with Each Other
506
507ScriptReplaceFromHistoryAction.label=Element from &Local History...
508ScriptReplaceFromHistoryAction.tooltip=Replaces the Selected Script Element With One from Local History
509
510ScriptReplaceWithPreviousFromHistoryAction.label=&Previous Element from Local History
511ScriptReplaceWithPreviousFromHistoryAction.tooltip=Replaces the Selected Script Element With the Previous from Local History
512
513ScriptAddElementFromHistoryAction.label=Restore from Local Histor&y...
514ScriptAddElementFromHistoryAction.tooltip=Restores a Script Element from Local History to the Selected Container
515
516Refactoring.menu.label= Refac&tor
517
518Refactoring.renameAction.label=Re&name...
519Refactoring.moveAction.label=&Move...
520Refactoring.modifyParametersAction.label=&Change Method Signature...
521Refactoring.convertAnonymousToNestedAction.label=C&onvert Anonymous Class to Nested...
522Refactoring.convertNestedToTopAction.label=Con&vert Member Type to Top Level
523
524Refactoring.pushDownAction.label=Push &Down...
525Refactoring.pullUpAction.label=Pull &Up...
526Refactoring.extractInterfaceAction.label=&Extract Interface...
527Refactoring.extractSupertypeAction.label=Extrac&t Superclass...
528Refactoring.changeTypeAction.label=Generali&ze Declared Type...
529Refactoring.useSupertypeAction.label=Use Supertype W&here Possible...
530Refactoring.inferTypeArgumentsAction.label=Infer &Generic Type Arguments...
531
532Refactoring.inlineAction.label=&Inline...
533Refactoring.extractMethodAction.label=E&xtract Method...
534Refactoring.extractTempAction.label=Extract &Local Variable...
535Refactoring.extractConstantAction.label=Extr&act Constant...
536
537Refactoring.introduceIndirectionAction.label=Introduce Indirec&tion...
538Refactoring.introduceParameterAction.label=Introduce &Parameter...
539Refactoring.introduceFactoryAction.label=Introduce &Factory...
540Refactoring.convertLocalToFieldAction.label=Convert Local Varia&ble to Field...
541Refactoring.selfEncapsulateFieldAction.label=Encap&sulate Field...
542
543Refactoring.migrateJar.label=Migrate &JAR File...
544Refactoring.applyScript.label=Appl&y Script...
545Refactoring.createScript.label=C&reate Script...
546Refactoring.showHistory.label=&History...
547
548NewScriptProject.label= Script Project
549NewScriptProject.description=Create a Script project
550
551NewScriptPackage.label= Package
552NewScriptPackage.description=Create a Script package
553
554NewScriptClass.label= Class
555NewScriptClass.description=Create a Script class
556
557NewScriptInterface.label= Interface
558NewScriptInterface.description= Create a Script interface
559
560NewEnumType.label= Enum
561NewEnumType.description= Create an enum type
562
563NewAnnotationType.label= Annotation
564NewAnnotationType.description= Create an annotation type
565
566NewSourceFolderCreationWizard.label=Source Folder
567NewSourceFolderCreationWizard.description=Create a Script source folder
568
569
570AddBookmark.label=Add Boo&kmark
571AddBookmark.tooltip=Add Bookmark...
572
573AddTask.label=Add &Task
574AddTask.tooltip=Add Task...