Some serious cleanup on manifests, plugin.xml, build.properties and plugin.properties...
[phpeclipse.git] / net.sourceforge.phpeclipse / plugin.properties
index 6b4c0dd..4cada84 100644 (file)
@@ -10,19 +10,14 @@ transientPHPProblemName=Transient PHP Problem
 phpTaskName=PHP Task
 phpSourceName=PHP Source File
 
-viewCategoryName = PHPeclipse Web Development
 phpEditorTextHoversName=PHP Editor Text Hovers
 
 perspectivePHP.name=PHP
-perspectiveHTML.name=HTML
-viewPHPResources.name=PHP Resources
 
 newWizardCategory.name=PHP
 newWizardPHPProject.name=PHP Project
 newWizardPHPFile.name=PHP File
 newWizardHTMLFile.name=HTML file
-NewPHPClass.label= Class
-NewPHPClass.description=Create a PHP class
 
 OpenActionSet.label=Open Declaration/Include
 OpenActionSet.description=Open a PHP Declaration or Include
@@ -30,7 +25,6 @@ OpenDeclaration=Open Declaration/Include
 ExportWizards.Obfuscator = Obfuscate PHP Project to File system
 ExportWizards.ObfuscatorDescription = Obfuscate PHP resources to the local file system
 
-propertyPagePHPProject.name=PHP Project Properties
 
 compilerPageName=PHP Parser
 todoPageName=PHP Task Tags
@@ -46,18 +40,6 @@ editorMarkOccurrencesPage= Mark Occurrences
 # Extension point names
 #
 phpEditorName=PHP Editor
-phpConsoleView=PHP Console
-phpFileExtension=php
-php3FileExtension=php3
-php4FileExtension=php4
-php5FileExtension=php5
-moduleFileExtension=module
-incFileExtension=inc
-phtmlFileExtension=phtml
-htmlFileExtension=html
-htmFileExtension=htm
-xmlFileExtension=xml
-tplFileExtension=tpl
 
 javaDocumentFactory=PHP Document Factory
 javaDocumentSetupParticipant=PHP Document Setup Participant
@@ -80,7 +62,6 @@ AddBookmark.tooltip=Add Bookmark...
 
 AddTask.label=Add &Task
 AddTask.tooltip=Add Task...
-php.menu.label=&Source
 
 ##########################################################################
 # Coding Action set
@@ -109,48 +90,27 @@ ShiftLeftAction.label= S&hift Left
 
 FormatAction.label= F&ormat@Ctrl+Shift+F
 
-AddImportAction.label= A&dd Import@Ctrl+Shift+M
 
-OrganizeImportsAction.label= Or&ganize Imports@Ctrl+Shift+O
 
-SurroundWithTryCatchAction.label= Surround with &try/catch block
 
-OverrideMethodsAction.label= O&verride/Implement Methods...
 
-GenerateGetterSetterAction.label= Gene&rate Getter and Setter...
 
-AddConstructorFromSuperclassAction.label= Add &Constructor from Superclass
 
-AddJavaDocCommentAction.label= Add &PHPdoc Comment
 
-FindStringsToExternalizeAction.label= &Find Strings to Externalize...
 
-ExternalizeStringsAction.label= &Externalize Strings...
 
-ConvertLineDelimitersActions.label= Co&nvert Line Delimiters To
-ConvertLineDelimitersToWindowsAction.label= &Windows
-ConvertLineDelimitersToUNIXAction.label= &UNIX
-ConvertLineDelimitersToMacAction.label= &Mac
 
 ##########################################################################
 # Javadoc Support
 ##########################################################################
-PHPDocWizard.name= PHPDoc
-PHPDocWizard.description=Generate PHPDoc
-PHPDoc.preferencePageName= PHPDoc
-CreatePHPDocAction.label= Run PHPDoc &Wizard...
-CreatePHPDocAction.tooltip= Run PHPDoc Wizard
 
 ##########################################################################
 # PHP Working Set Support
 ##########################################################################
-PHPWorkingSetPage.name= PHP
 
 
 sourceHover= Source
 sourceHoverDescription= Shows the source of the selected element.
-javadocHover= PHPdoc
-javadocHoverDescription= Shows the PHPdoc of the selected element.
 sequentialHover= Combined Hover
 sequentialHoverDescription= Tries the hovers in the sequence listed in the table below this one and uses the one which fits best for the selected element and the current context.
 annotationHover= Annotation Description
@@ -168,17 +128,12 @@ category.source.description= PHP Source Actions
 context.editingPHPSource.name= Editing PHP Source
 context.editingPHPSource.description= Editing PHP Source Context
 
-scope.javaEditor.name=PHP Editor
 
 ##########################################################################
 # Action Definitions
 ##########################################################################
 #--- Edit menu
-ActionDefinition.show.outline.name= Show Outline
-ActionDefinition.show.outline.description= Open the outline for the editor input
 
-ActionDefinition.open.structure.name= Open Structure
-ActionDefinition.open.structure.description= Show the structure of the selected element
 
 ActionDefinition.gotoNextMember.name= Go to Next Member
 ActionDefinition.gotoNextMember.description= Move the caret to the next member of the compilation unit
@@ -186,29 +141,13 @@ ActionDefinition.gotoNextMember.description= Move the caret to the next member o
 ActionDefinition.gotoPreviousMember.name= Go to Previous Member
 ActionDefinition.gotoPreviousMember.description= Move the caret to the previous member of the compilation unit
 
-ActionDefinition.selectEnclosing.name= Select Enclosing Element
-ActionDefinition.selectEnclosing.description= Expand selection to include enclosing element
 
-ActionDefinition.selectNext.name= Select Next Element
-ActionDefinition.selectNext.description= Expand selection to include next sibling
 
-ActionDefinition.selectPrevious.name= Select Previous Element
-ActionDefinition.selectPrevious.description= Expand selection to include previous sibling
 
-ActionDefinition.selectLast.name= Restore Last Selection
-ActionDefinition.selectLast.description= Restore last selection
 
-ActionDefinition.contentAssistProposals.name= Content Assist
-ActionDefinition.contentAssistProposals.description= Content Assist
 
-ActionDefinition.contentAssistContextInformation.name= Parameter Hints
-ActionDefinition.contentAssistContextInformation.description= Show Method Parameter Hints
 
-ActionDefinition.correctionAssistProposals.name= Quick Fix
-ActionDefinition.correctionAssistProposals.description= Quick Fix
 
-ActionDefinition.showJavadoc.name= Show Tooltip Description
-ActionDefinition.showJavadoc.description= Shows the tooltip description for the element at the cursor
 
 #--- Source menu
 ActionDefinition.comment.name= Comment
@@ -229,147 +168,55 @@ ActionDefinition.removeBlockComment.description= Remove the block comment enclos
 ActionDefinition.format.name= Format
 ActionDefinition.format.description= Format the selected text
 
-ActionDefinition.addImport.name= Add Import
-ActionDefinition.addImport.description= Create import statement on selection
 
-ActionDefinition.organizeImports.name= Organize Imports
-ActionDefinition.organizeImports.description= Evaluate all required imports and replace the current imports
 
-ActionDefinition.surroundWith.tryCatch.name= Surround with try/catch block
-ActionDefinition.surroundWith.tryCatch.description= Surround the selected text with a try/catch block
 
-ActionDefinition.overrideMethods.name= Override/Implement Methods
-ActionDefinition.overrideMethods.description= Override or implement methods from super types
 
-ActionDefinition.addUnimplementedConstructors.name= Add Constructors from Superclass
-ActionDefinition.addUnimplementedConstructors.description= Evaluate and add constructors from superclass
 
-ActionDefinition.findStringsToExternalize.name= Find Strings to Externalize
-ActionDefinition.findStringsToExternalize.description= Find strings that are not externalized
 
-ActionDefinition.externalizeStrings.name= Externalize Strings
-ActionDefinition.externalizeStrings.description= Find all string that are not externalized and puts them into a separate property file
 
-ActionDefinition.nextProblem.name= Go to Next Problem
-ActionDefinition.nextProblem.description= Go to next problem
 
-ActionDefinition.previousProblem.name= Go to Previous Problem
-ActionDefinition.previousProblem.description= Go to previous problem
 
 #--- Refactor menu
-ActionDefinition.refactorRedo.name= Redo
-ActionDefinition.refactorRedo.description= Redo the last refactoring
 
-ActionDefinition.refactorUndo.name= Undo
-ActionDefinition.refactorUndo.description= Undo the last refactoring
 
-ActionDefinition.pullUp.name= Pull Up
-ActionDefinition.pullUp.description= Move members to a superclass
 
-ActionDefinition.renameElement.name= Rename
-ActionDefinition.renameElement.description= Rename the selected element
 
-ActionDefinition.modifyMethodParameters.name= Change Method Signature
-ActionDefinition.modifyMethodParameters.description= Change method signature include parameter names and parameter order
 
-ActionDefinition.moveElement.name= Move
-ActionDefinition.moveElement.description= Move the selected element to a new location
 
-ActionDefinition.extractLocalVariable.name= Extract Local Variable
-ActionDefinition.extractLocalVariable.description= Extract an expression into a new local variable and uses the local instead
 
-ActionDefinition.extractConstant.name= Extract Constant
-ActionDefinition.extractConstant.description= Extract a constant into a new static field and uses the field instead
 
-ActionDefinition.inline.name= Inline
-ActionDefinition.inline.description= Inline a constant, local variable or method
 
-ActionDefinition.selfEncapsulateField.name= Self Encapsulate Field
-ActionDefinition.selfEncapsulateField.description= Create getting and setting methods for the field and use only those to access the field
 
-ActionDefinition.extractMethod.name= Extract Method
-ActionDefinition.extractMethod.description= Extract a set of statements or an expression into a new method and use the method instead
 
-ActionDefinition.extractInterface.name= Extract Interface
-ActionDefinition.extractInterface.description= Extract a set of members into a new interface and tries to use that interface instead
 
-ActionDefinition.moveInnerToTopLevel.name= Move to Top Level
-ActionDefinition.moveInnerToTopLevel.description= Convert an inner class to a top level class
 
-ActionDefinition.useSupertype.name= Use Supertype Where Possible
-ActionDefinition.useSupertype.description= Try to re-route the access via a supertype where possible
 
-ActionDefinition.promoteLocalVariable.name= Promote Local Variable to Field
-ActionDefinition.promoteLocalVariable.description= Convert a local variable into a field
 
-ActionDefinition.convertAnonymousToNested.name= Convert Anonymous to Nested
-ActionDefinition.convertAnonymousToNested.description= Convert an anonymous class to a nest class
 
 #--- Navigate menu
-ActionDefinition.openEditor.name= Open
-ActionDefinition.openEditor.description= Open an editor on the selected element
 
-ActionDefinition.openSuperImplementation.name= Open Super Implementation
-ActionDefinition.openSuperImplementation.description= Open the Implementation in the Super Type
 
-ActionDefinition.openExternalJavadoc.name= Open E&xternal PHPdoc
-ActionDefinition.openExternalJavadoc.description= Open the PHPdoc of the selected element in an external browser
 
-ActionDefinition.openTypeHierarchy.name= Open Type Hierarchy
-ActionDefinition.openTypeHierarchy.description= Open a type hierarchy on the selected element
 
-ActionDefinition.showInPackageView.name= Show in Package Explorer
-ActionDefinition.showInPackageView.description= Show the selected element in Package Explorer
 
-ActionDefinition.showInNavigatorView.name= Show in &Navigator View
-ActionDefinition.showInNavigatorView.description= Show the selected element in the Resource Navigator
 
 #--- Search menu
-ActionDefinition.referencesInWorkspace.name= Search References in Workspace
-ActionDefinition.referencesInWorkspace.description= Search for References to the Selected Element in the Workspace
 
-ActionDefinition.referencesInHierarchy.name= Search References in Hierarchy
-ActionDefinition.referencesInHierarchy.description= Search for References of the Selected Element in its Hierarchy
 
-ActionDefinition.referencesInWorkingSet.name= Search References in Working Set
-ActionDefinition.referencesInWorkingSet.description= Search for References to the Selected Element in a Working Set
 
-ActionDefinition.readAccessInworkspace.name= Search Read Access in Workspace
-ActionDefinition.readAccessInWorkspace.description= Search for Read References to the Selected Element in the Workspace
 
-ActionDefinition.readAccessInHierarchy.name= Search Read Access in Hierarchy
-ActionDefinition.readAccessInHierarchy.description= Search for Read References of the Selected Element in its Hierarchy
 
-ActionDefinition.readAccessInWorkingSet.name= Search Read Access in Working Set
-ActionDefinition.readAccessInWorkingSet.description= Search for Read References to the Selected Element in a Working Set
 
-ActionDefinition.writeAccessInWorkspace.name=Search Write Access in Workspace
-ActionDefinition.writeAccessInWorkspace.description= Search for Write References to the Selected Element in the Workspace
 
-ActionDefinition.writeAccessInHierarchy.name= Search Write Access in Hierarchy
-ActionDefinition.writeAccessInHierarchy.description= Search for Write References of the Selected Element in its Hierarchy
 
-ActionDefinition.writeAccessInWorkingSet.name= Search Write Access in Working Set
-ActionDefinition.writeAccessInWorkingSet.description= Search for Write References to the Selected Element in a Working Set
 
-ActionDefinition.declarationsInWorkspace.name= Search Declaration in Workspace
-ActionDefinition.declarationsInWorkspace.description= Search for Declarations of the Selected Element in the Workspace
 
-ActionDefinition.declarationsInHierarchy.name= Search Declaration in Hierarchy
-ActionDefinition.declarationsInHierarchy.description= Search for Declarations of the Selected Element in its Hierarchy
 
-ActionDefinition.declarationsInWorkingSet.name= Search Declaration in Working Set
-ActionDefinition.declarationsInWorkingSet.description= Search for Declarations of the Selected Element in a Working Set
 
-ActionDefinition.implementorsInWorkspace.name= Search Implementors in Workspace
-ActionDefinition.implementorsInWorkspace.description= Search for Implementors of the Selected Interface
 
-ActionDefinition.implementorsInWorkingSet.name= Search Implementors in Working Set
-ActionDefinition.implementorsInWorkingSet.description= Search for Implementors of the Selected Interface in a Working Set
 
 #---  miscellaenous
-ActionDefinition.togglePresentation.name= Show Source of Selected Element Only
-ActionDefinition.togglePresentation.description= Show Source of Selected Element Only
 
 ActionDefinition.indent.name=Correct Indentation
 ActionDefinition.indent.description=Correct Indentation
@@ -393,4 +240,4 @@ templates.html.contextType.name= html
 #--- folding
 foldingStructureProvidersExtensionPoint= Folding Structure Providers
 defaultFoldingStructureProviderName= Default PHP Folding
-Folding.label= F&olding
\ No newline at end of file
+Folding.label= F&olding