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