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