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