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