new version with WorkingCopy Management
[phpeclipse.git] / net.sourceforge.phpeclipse / plugin.properties
1 #########################################
2 #
3 #########################################
4 pluginName=PHPEclipse Tools Core
5 providerName=phpeclipse.de
6 naturePHP.name=PHP Project
7 phpProblemName=PHP Problem
8 phpEditorTextHoversName=PHP Editor Text Hovers
9
10 perspectivePHP.name=PHP
11 perspectiveHTML.name=HTML
12 viewPHPResources.name=PHP Resources
13
14 newWizardCategory.name=PHP
15 newWizardPHPProject.name=PHP Project
16 newWizardPHPFile.name=PHP File
17 NewPHPClass.label= Class
18 NewPHPClass.description=Create a PHP class
19
20 ExportWizards.Obfuscator = Obfuscate PHP Project to File system
21 ExportWizards.ObfuscatorDescription = Obfuscate PHP resources to the local file system
22
23 propertyPagePHPProject.name=PHP Project Properties
24
25 #
26 # Extension point names
27 #
28 phpEditorName=PHP Editor
29 phpConsoleView=PHP Console
30 phpFileExtension=php
31 php3FileExtension=php3
32 php4FileExtension=php4
33 incFileExtension=inc
34 phtmlFileExtension=phtml
35 htmlFileExtension=html
36 htmFileExtension=htm
37 xmlFileExtension=xml
38 tplFileExtension=tpl
39
40 sourceHover= Source
41 sourceHoverDescription= Shows the source of the selected element.
42 javadocHover= PHPdoc
43 javadocHoverDescription= Shows the PHPdoc of the selected element.
44 sequentialHover= Best Match
45 sequentialHoverDescription= Shows the hover which fits best for the selected element and the current context.
46 problemHover= Problems 
47 problemHoverDescription= Shows the problem descriptions for the selected element.
48
49 #
50 # Action sets
51 #
52
53 AddBookmark.label=Add Boo&kmark
54 AddBookmark.tooltip=Add Bookmark...
55
56 AddTask.label=Add &Task
57 AddTask.tooltip=Add Task...
58 php.menu.label=&Source
59
60 ##########################################################################
61 # Coding Action set
62 ##########################################################################
63 CodingActionSet.label= PHP Coding
64 CodingActionSet.description= Action set containing coding related PHP actions
65
66 ##########################################################################
67 # Source Menu
68 ##########################################################################
69 SourceMenu.label= &Source
70
71 CommentAction.label= Co&mment@Ctrl+/
72
73 UncommentAction.label= &Uncomment@Ctrl+\\
74
75 ShiftRightAction.label= Sh&ift Right
76
77 ShiftLeftAction.label= S&hift Left
78
79 FormatAction.label= F&ormat@Ctrl+Shift+F
80
81 AddImportAction.label= A&dd Import@Ctrl+Shift+M
82
83 OrganizeImportsAction.label= Or&ganize Imports@Ctrl+Shift+O
84
85 SurroundWithTryCatchAction.label= Surround with &try/catch block
86
87 OverrideMethodsAction.label= O&verride/Implement Methods...
88
89 GenerateGetterSetterAction.label= Gene&rate Getter and Setter...
90
91 AddConstructorFromSuperclassAction.label= Add &Constructor from Superclass
92
93 AddJavaDocCommentAction.label= Add &PHPdoc Comment
94
95 FindStringsToExternalizeAction.label= &Find Strings to Externalize...
96
97 ExternalizeStringsAction.label= &Externalize Strings...
98
99 ConvertLineDelimitersActions.label= Co&nvert Line Delimiters
100 ConvertLineDelimitersToWindowsAction.label= To &Windows
101 ConvertLineDelimitersToUNIXAction.label= To &UNIX
102 ConvertLineDelimitersToMacAction.label= To &Mac
103
104 ##########################################################################
105 # Javadoc Support
106 ##########################################################################
107 PHPDocWizard.name= PHPDoc
108 PHPDocWizard.description=Generate PHPDoc
109 PHPDoc.preferencePageName= PHPDoc
110 CreatePHPDocAction.label= Run PHPDoc &Wizard...
111 CreatePHPDocAction.tooltip= Run PHPDoc Wizard
112
113 ##########################################################################
114 # PHP Working Set Support
115 ##########################################################################
116 PHPWorkingSetPage.name= PHP
117
118
119 ##########################################################################
120 # Action Definitions
121 ##########################################################################
122 #--- Edit menu
123 ActionDefinition.show.outline.name= Show Outline
124 ActionDefinition.show.outline.description= Open the outline for the editor input
125
126 ActionDefinition.open.structure.name= Open Structure
127 ActionDefinition.open.structure.description= Show the structure of the selected element
128
129 ActionDefinition.gotoNextMember.name= Go to Next Member
130 ActionDefinition.gotoNextMember.description= Move the caret to the next member of the compilation unit
131
132 ActionDefinition.gotoPreviousMember.name= Go to Previous Member
133 ActionDefinition.gotoPreviousMember.description= Move the caret to the previous member of the compilation unit
134
135 ActionDefinition.selectEnclosing.name= Select Enclosing Element
136 ActionDefinition.selectEnclosing.description= Expand selection to include enclosing element
137
138 ActionDefinition.selectNext.name= Select Next Element
139 ActionDefinition.selectNext.description= Expand selection to include next sibling
140
141 ActionDefinition.selectPrevious.name= Select Previous Element
142 ActionDefinition.selectPrevious.description= Expand selection to include previous sibling
143
144 ActionDefinition.selectLast.name= Restore Last Selection
145 ActionDefinition.selectLast.description= Restore last selection
146
147 ActionDefinition.contentAssistProposals.name= Content Assist
148 ActionDefinition.contentAssistProposals.description= Content Assist
149
150 ActionDefinition.contentAssistContextInformation.name= Parameter Hints
151 ActionDefinition.contentAssistContextInformation.description= Show Method Parameter Hints
152
153 ActionDefinition.correctionAssistProposals.name= Quick Fix
154 ActionDefinition.correctionAssistProposals.description= Quick Fix
155
156 ActionDefinition.showJavadoc.name= Show Tooltip Description
157 ActionDefinition.showJavadoc.description= Shows the tooltip description for the element at the cursor
158
159 #--- Source menu
160 ActionDefinition.comment.name= Comment
161 ActionDefinition.comment.description= Turn the selected lines into PHP comments
162
163 ActionDefinition.uncomment.name= Uncomment
164 ActionDefinition.uncomment.description= Uncomment the selected PHP comment lines
165
166 ActionDefinition.format.name= Format
167 ActionDefinition.format.description= Format the selected text
168
169 ActionDefinition.addImport.name= Add Import
170 ActionDefinition.addImport.description= Create import statement on selection
171
172 ActionDefinition.organizeImports.name= Organize Imports
173 ActionDefinition.organizeImports.description= Evaluate all required imports and replace the current imports
174
175 ActionDefinition.surroundWith.tryCatch.name= Surround with try/catch block
176 ActionDefinition.surroundWith.tryCatch.description= Surround the selected text with a try/catch block
177
178 ActionDefinition.overrideMethods.name= Override/Implement Methods
179 ActionDefinition.overrideMethods.description= Override or implement methods from super types
180
181 ActionDefinition.addUnimplementedConstructors.name= Add Constructors from Superclass
182 ActionDefinition.addUnimplementedConstructors.description= Evaluate and add constructors from superclass
183
184 ActionDefinition.findStringsToExternalize.name= Find Strings to Externalize
185 ActionDefinition.findStringsToExternalize.description= Find strings that are not externalized
186
187 ActionDefinition.externalizeStrings.name= Externalize Strings
188 ActionDefinition.externalizeStrings.description= Find all string that are not externalized and puts them into a separate property file
189
190 ActionDefinition.nextProblem.name= Go to Next Problem
191 ActionDefinition.nextProblem.description= Go to next problem
192
193 ActionDefinition.previousProblem.name= Go to Previous Problem
194 ActionDefinition.previousProblem.description= Go to previous problem
195
196 #--- Refactor menu
197 ActionDefinition.refactorRedo.name= Redo
198 ActionDefinition.refactorRedo.description= Redo the last refactoring
199
200 ActionDefinition.refactorUndo.name= Undo
201 ActionDefinition.refactorUndo.description= Undo the last refactoring
202
203 ActionDefinition.pullUp.name= Pull Up
204 ActionDefinition.pullUp.description= Move members to a superclass
205
206 ActionDefinition.renameElement.name= Rename
207 ActionDefinition.renameElement.description= Rename the selected element
208
209 ActionDefinition.modifyMethodParameters.name= Change Method Signature
210 ActionDefinition.modifyMethodParameters.description= Change method signature include parameter names and parameter order
211
212 ActionDefinition.moveElement.name= Move
213 ActionDefinition.moveElement.description= Move the selected element to a new location
214
215 ActionDefinition.extractLocalVariable.name= Extract Local Variable
216 ActionDefinition.extractLocalVariable.description= Extract an expression into a new local variable and uses the local instead
217
218 ActionDefinition.extractConstant.name= Extract Constant
219 ActionDefinition.extractConstant.description= Extract a constant into a new static field and uses the field instead
220
221 ActionDefinition.inline.name= Inline
222 ActionDefinition.inline.description= Inline a constant, local variable or method
223
224 ActionDefinition.selfEncapsulateField.name= Self Encapsulate Field
225 ActionDefinition.selfEncapsulateField.description= Create getting and setting methods for the field and use only those to access the field
226
227 ActionDefinition.extractMethod.name= Extract Method
228 ActionDefinition.extractMethod.description= Extract a set of statements or an expression into a new method and use the method instead
229
230 ActionDefinition.extractInterface.name= Extract Interface
231 ActionDefinition.extractInterface.description= Extract a set of members into a new interface and tries to use that interface instead
232
233 ActionDefinition.moveInnerToTopLevel.name= Move to Top Level
234 ActionDefinition.moveInnerToTopLevel.description= Convert an inner class to a top level class
235
236 ActionDefinition.useSupertype.name= Use Supertype Where Possible
237 ActionDefinition.useSupertype.description= Try to re-route the access via a supertype where possible
238
239 ActionDefinition.promoteLocalVariable.name= Promote Local Variable to Field
240 ActionDefinition.promoteLocalVariable.description= Convert a local variable into a field
241
242 ActionDefinition.convertAnonymousToNested.name= Convert Anonymous to Nested
243 ActionDefinition.convertAnonymousToNested.description= Convert an anonymous class to a nest class
244
245 #--- Navigate menu
246 ActionDefinition.openEditor.name= Open
247 ActionDefinition.openEditor.description= Open an editor on the selected element
248
249 ActionDefinition.openSuperImplementation.name= Open Super Implementation
250 ActionDefinition.openSuperImplementation.description= Open the Implementation in the Super Type
251
252 ActionDefinition.openExternalJavadoc.name= Open E&xternal PHPdoc
253 ActionDefinition.openExternalJavadoc.description= Open the PHPdoc of the selected element in an external browser
254
255 ActionDefinition.openTypeHierarchy.name= Open Type Hierarchy
256 ActionDefinition.openTypeHierarchy.description= Open a type hierarchy on the selected element
257
258 ActionDefinition.showInPackageView.name= Show in Package Explorer
259 ActionDefinition.showInPackageView.description= Show the selected element in Package Explorer
260
261 ActionDefinition.showInNavigatorView.name= Show in &Navigator View
262 ActionDefinition.showInNavigatorView.description= Show the selected element in the Resource Navigator
263
264 #--- Search menu
265 ActionDefinition.referencesInWorkspace.name= Search References in Workspace
266 ActionDefinition.referencesInWorkspace.description= Search for References to the Selected Element in the Workspace
267
268 ActionDefinition.referencesInHierarchy.name= Search References in Hierarchy
269 ActionDefinition.referencesInHierarchy.description= Search for References of the Selected Element in its Hierarchy
270
271 ActionDefinition.referencesInWorkingSet.name= Search References in Working Set
272 ActionDefinition.referencesInWorkingSet.description= Search for References to the Selected Element in a Working Set
273
274 ActionDefinition.readAccessInworkspace.name= Search Read Access in Workspace
275 ActionDefinition.readAccessInWorkspace.description= Search for Read References to the Selected Element in the Workspace
276
277 ActionDefinition.readAccessInHierarchy.name= Search Read Access in Hierarchy
278 ActionDefinition.readAccessInHierarchy.description= Search for Read References of the Selected Element in its Hierarchy
279
280 ActionDefinition.readAccessInWorkingSet.name= Search Read Access in Working Set
281 ActionDefinition.readAccessInWorkingSet.description= Search for Read References to the Selected Element in a Working Set
282
283 ActionDefinition.writeAccessInWorkspace.name=Search Write Access in Workspace
284 ActionDefinition.writeAccessInWorkspace.description= Search for Write References to the Selected Element in the Workspace
285
286 ActionDefinition.writeAccessInHierarchy.name= Search Write Access in Hierarchy
287 ActionDefinition.writeAccessInHierarchy.description= Search for Write References of the Selected Element in its Hierarchy
288
289 ActionDefinition.writeAccessInWorkingSet.name= Search Write Access in Working Set
290 ActionDefinition.writeAccessInWorkingSet.description= Search for Write References to the Selected Element in a Working Set
291
292 ActionDefinition.declarationsInWorkspace.name= Search Declaration in Workspace
293 ActionDefinition.declarationsInWorkspace.description= Search for Declarations of the Selected Element in the Workspace
294
295 ActionDefinition.declarationsInHierarchy.name= Search Declaration in Hierarchy
296 ActionDefinition.declarationsInHierarchy.description= Search for Declarations of the Selected Element in its Hierarchy
297
298 ActionDefinition.declarationsInWorkingSet.name= Search Declaration in Working Set
299 ActionDefinition.declarationsInWorkingSet.description= Search for Declarations of the Selected Element in a Working Set
300
301 ActionDefinition.implementorsInWorkspace.name= Search Implementors in Workspace
302 ActionDefinition.implementorsInWorkspace.description= Search for Implementors of the Selected Interface
303
304 ActionDefinition.implementorsInWorkingSet.name= Search Implementors in Working Set
305 ActionDefinition.implementorsInWorkingSet.description= Search for Implementors of the Selected Interface in a Working Set
306
307 #---  miscellaenous
308 ActionDefinition.togglePresentation.name= Show Source of Selected Element Only
309 ActionDefinition.togglePresentation.description= Show Source of Selected Element Only
310
311 ######################
312 ### External Tools ###
313 ######################
314 LaunchConfigurationTypePHPApplication.name=PHP Application
315
316 ExtPoint.configurationDuplicationMaps = Launch Configuration Duplication Maps
317 ExtPoint.toolTypes = External Tool Types
318 ExtPoint.argumentVariables  = Argument Variables
319 ExtPoint.directoryVariables = Directory Variables
320 ExtPoint.fileVariables = File Variables
321 ExtPoint.refreshVariables = Refresh Scope Variables
322 ExternalToolsLaunchGroup.label = &External Tools
323 ToolType.programName = Program
324 ToolType.programDescription = An external tool that runs an application, a batch file, etc.
325 Menu.run = &Run
326 ActionSet.externalTools = External Tools
327 Action.externalTools = &External Tools
328 Action.externalToolsTip = Run Last Tool
329 PropertyPage.main = Main
330 PropertyPage.option = Options
331 PropertyPage.refresh = Refresh Scope
332 PropertyPage.antTargets = Targets
333 PropertyPage.externalToolsBuilders = PHP Launch Builders
334 CategoryView.externalTools = PHP Launchers
335 CategoryNewWizard.externalTools = PHP Launchers
336 NewWizard.programName = Program
337 NewWizard.programDescription = Create an external tool to run an application, a batch file, etc.
338 Builder.externalTools = Integrated PHP Launcher Builder
339 View.externalToolView = PHP Launchers
340 View.logConsole = Log Console
341 PreferencePage.externalToolsPreferences = PHP Launchers
342 PreferencePage.antConsolePreferences = Console
343 PreferencePage.antRuntimePreferences = Runtime
344
345 Program.externalTools = PHP Program