2004-06-24 19:29:42 +00:00
###############################################################################
2006-06-14 12:16:17 +00:00
# Copyright (c) 2003, 2006 IBM Corporation and others.
2004-06-24 19:29:42 +00:00
# All rights reserved. This program and the accompanying materials
2005-06-23 16:02:46 +00:00
# are made available under the terms of the Eclipse Public License v1.0
2004-06-24 19:29:42 +00:00
# which accompanies this distribution, and is available at
2005-06-23 16:02:46 +00:00
# http://www.eclipse.org/legal/epl-v10.html
#
2004-06-24 19:29:42 +00:00
# Contributors:
# IBM Corporation - initial API and implementation
2006-06-30 09:42:39 +00:00
# Markus Schorn (Wind River Systems)
2004-06-24 19:29:42 +00:00
###############################################################################
2002-08-26 17:43:52 +00:00
pluginName = C/C++ Development Tools UI
2002-07-16 01:52:35 +00:00
providerName = Eclipse.org
2002-06-26 20:55:44 +00:00
elementFiltersName = CElement Filters
2004-03-18 23:34:30 +00:00
binaryParserPage = Binary Parser Page
2004-04-26 14:51:52 +00:00
pathContainerPage = Path Container Page
2002-06-26 20:55:44 +00:00
textHoversName = Text Hovers
editorActionsName = Editor Actions
editorRulerActionsName = Editor Ruler Actions
2004-11-01 16:01:29 +00:00
cHelpProviderName = C Help Provider
2002-06-26 20:55:44 +00:00
nature.name = C Nature
2004-04-05 03:03:31 +00:00
perspective.name = C/C++
2005-07-28 14:26:15 +00:00
viewsCategory.name = &C/C++
2002-06-26 20:55:44 +00:00
CView.name = C/C++ Projects
2004-12-03 21:51:07 +00:00
AddBlockCommentAction.label = Add &Block Comment
RemoveBlockCommentAction.label = Remove Bloc&k Comment
2005-11-10 15:20:17 +00:00
JoinLinesAction.label = Join Lines
2003-06-09 19:22:21 +00:00
# The Wizards
2002-06-26 20:55:44 +00:00
# C
newCWizardsCategory.name = C
# C++
newCCWizardsCategory.name = C++
2002-08-13 15:05:20 +00:00
#Project Conversion
2002-10-28 16:55:36 +00:00
ConversionWizard.name = Convert a project's nature
ConversionWizard.description = Convert a project's nature
2002-08-13 15:05:20 +00:00
2004-09-22 21:00:37 +00:00
CElementCreationActionSet.label = C/C++ Element Creation
CElementCreationActionSet.description = C/C++ Element Creation Action Set
2004-09-22 18:27:55 +00:00
NewProjectDropDownAction.label = &Project...
NewProjectDropDownAction.tooltip = New C/C++ Project
2004-09-24 16:28:02 +00:00
NewFolderDropDownAction.label = &Source Folder...
NewFolderDropDownAction.tooltip = New C/C++ Source Folder
NewWizards.sourceFolder = Source Folder
NewWizards.sourceFolder.description = Create a new source folder
2003-02-01 20:00:26 +00:00
NewWizards.folder = Folder
NewWizards.folder.description = Create a new folder resource
2004-09-22 18:27:55 +00:00
NewFileDropDownAction.label = &Source File...
NewFileDropDownAction.tooltip = New C/C++ Source File
2004-09-24 16:28:02 +00:00
2004-09-22 18:27:55 +00:00
NewWizards.sourceFile = Source File
NewWizards.sourceFile.description = Create a new source file
NewWizards.headerFile = Header File
NewWizards.headerFile.description = Create a new header file
2003-02-01 20:00:26 +00:00
NewWizards.file = File
NewWizards.file.description = Create a new file resource
2004-09-22 18:27:55 +00:00
NewTypeDropDownAction.label = &Class...
NewTypeDropDownAction.tooltip = New C++ Class
2003-05-27 21:33:04 +00:00
NewWizards.class = Class
NewWizards.class.description = Create a new C++ class
2002-06-26 20:55:44 +00:00
2003-06-20 17:00:19 +00:00
# Editor
# Scope and Key Commands
scope.cEditor.name = C/C++ Editor
cEditor.description = Editor for C/C++ Source Files
category.source.name = C/C++ Source
category.source.description = C/C++ Source Actions
ActionDefinition.comment.name = Comment
ActionDefinition.comment.description = Turn the selected lines into // style comments
ActionDefinition.uncomment.name = Uncomment
ActionDefinition.uncomment.description = Uncomment the selected // style comment lines
2003-10-01 13:33:39 +00:00
ActionDefinition.opendecl.name = Open Declaration
ActionDefinition.opendecl.description = Open an editor on the selected element's declaration(s)
2005-05-03 15:48:34 +00:00
ActionDefinition.opendef.name = Open Definition
ActionDefinition.opendef.description = Open an editor on the selected element's definition
2004-01-29 17:22:26 +00:00
ActionDefinition.opencview.name = Show in C/C++ Project view
ActionDefinition.opencview.description = Show the selected resource in the C/C++ Project view
2004-08-04 14:18:28 +00:00
ActionDefinition.finddecl.name = Find Declaration
ActionDefinition.finddecl.description = Find Declaration
ActionDefinition.findrefs.name = Find References
ActionDefinition.findrefs.description = Find References
2004-12-03 21:51:07 +00:00
ActionDefinition.addBlockComment.name = Add Block Comment
ActionDefinition.addBlockComment.description = Enclose the selection with a block comment
ActionDefinition.removeBlockComment.name = Remove Block Comment
ActionDefinition.removeBlockComment.description = Remove the block comment enclosing the selection
2005-11-10 15:20:17 +00:00
ActionDefinition.joinLines.name = Join Lines
ActionDefinition.joinLines.description = Join the current and next line together
2004-09-07 20:25:17 +00:00
ActionDefinition.format.name = Format
ActionDefinition.format.description = Format Source Code
2005-02-26 01:42:42 +00:00
ActionDefinition.gotoMatchingBracket.name = Go to Matching Bracket
ActionDefinition.gotoMatchingBracket.description = Moves the cursor to the matching bracket
2006-07-07 12:39:18 +00:00
ActionDefinition.showTooltip.name = Show Tooltip Description
ActionDefinition.showTooltip.description = Shows the tooltip description for the element at the cursor
2004-06-08 17:40:04 +00:00
CEditor.name = C/C++ Editor
2004-11-05 23:24:44 +00:00
2002-06-26 20:55:44 +00:00
CPluginPreferencePage.name = C/C++
2004-06-08 17:40:04 +00:00
CPluginEditorPreferencePage.name = Editor
2005-03-30 00:17:45 +00:00
CPluginTemplatePreferencePage.name = Templates
2002-11-27 19:54:40 +00:00
CPluginBuildConsolePreferencePage.name = Build Console
2004-06-08 17:40:04 +00:00
CPluginFileTypesPreferencePage.name = File Types
2004-11-05 23:24:44 +00:00
CodeFormatterPreferencePage.name = Code Formatter
2006-05-09 15:08:50 +00:00
CodeAssistPreferencePage.name = Content Assist
2002-06-26 20:55:44 +00:00
2003-06-28 19:48:12 +00:00
todoPageName = C/C++ Task Tags
todoTaskPrefName = Task Tags
2002-06-26 20:55:44 +00:00
Editors.DefaultTextEditor = Default Text Editor
2002-10-08 20:09:14 +00:00
AsmEditor.name = Assembly Editor
2002-06-26 20:55:44 +00:00
2003-06-20 17:00:19 +00:00
CFolderActionSet.label = C Folder Actions
CFolderActionSet.description = C Folder Action Set
2002-06-26 20:55:44 +00:00
# Task Action
DeleteTaskAction.label = Delete C/C++ Markers
2005-02-02 21:08:23 +00:00
DeleteIProblemMarkerAction.label = Delete IProblem Markers
2003-06-09 19:22:21 +00:00
2006-07-03 09:11:48 +00:00
# Common Editor ruler actions
AddTask.label = Add &Task...
AddTask.tooltip = Add Task...
AddBookmark.label = Add Boo&kmark...
AddBookmark.tooltip = Add Bookmark...
2003-07-14 15:34:57 +00:00
# C/C++ Search
2003-06-28 19:56:54 +00:00
CSearchPage.label = C/C++ Search
2003-07-14 15:34:57 +00:00
openCSearchPageAction.label = &C/C++...
2003-06-28 19:56:54 +00:00
ElementNameSorter.label = &Name
ElementNameSorter.tooltip = Sort the view by C Element Name
ParentNameSorter.label = &Parent Name
ParentNameSorter.tooltip = Sort the view by C Element Parent Name
PathNameSorter.label = P&ath
PathNameSorter.tooltip = Sort the view by Resource Path
2003-07-14 15:34:57 +00:00
# Action sets
CSearchActionSet.label = C/C++ Search
CSearchActionSet.description = Action set containing search related C/C++ actions
2004-03-09 19:50:00 +00:00
RefactoringActionSet.label = Refactoring
RefactoringActionSet.description = Action set containing refactoring related actions
2003-07-14 15:34:57 +00:00
# Menus
searchMenu.label = Se&arch
2004-03-09 19:50:00 +00:00
refactoringMenu.label = Re&factor
# Refactoring
Refactoring.renameAction.label = Re&name
2004-03-11 20:15:28 +00:00
Refactoring.undoAction.label = &Undo
2004-03-15 21:17:47 +00:00
Refactoring.redoAction.label = &Redo
2004-01-28 21:23:51 +00:00
# Open Type
OpenTypeAction.label = Open &Type...
OpenTypeAction.tooltip = Open Type
ActionDefinition.openType.name = Open Type
ActionDefinition.openType.description = Open a type in a C editor
2004-09-03 19:22:25 +00:00
#Add include
ActionDefinition.addInclude.name = Add Include
ActionDefinition.addInclude.description = Create include statement on selection
2004-12-14 18:46:40 +00:00
#Show outline dialog
ActionDefinition.showOutline.name = Show outline
ActionDefinition.showOutline.description = Shows outline
2004-02-16 03:28:25 +00:00
CElementWorkingSetPage.name = C/C++
2004-03-12 16:07:50 +00:00
2004-07-21 19:14:48 +00:00
CEditorFontDefinition.description = The C/C++ editor text font is used by C/C++ editors.
2004-03-12 16:07:50 +00:00
BuildConsoleFontDefinition.description = The C-Build console font is used by the C-Build console
BuildConsoleFontDefinition.label = C-Build Console Text Font
2004-03-30 05:35:52 +00:00
2005-02-06 20:33:25 +00:00
ActionDefinition.GotoNextMember.name = Go to next C/C++ member
ActionDefinition.GotoNextMember.description = Goes to the next C/C++ member
ActionDefinition.GotoPrevMember.name = Go to previous C/C++ member
ActionDefinition.GotoPrevMember.description = Goes to the previous C/C++ member
2004-03-30 05:35:52 +00:00
##########################################################################
# Filter Support
##########################################################################
HideClosedProjects.label = Closed projects
HideClosedProjects.description = Hides closed projects
HideExecutableFiles.label = Executable files
HideExecutableFiles.description = Hides executable files
HideSharedFiles.label = Shared object files
HideSharedFiles.description = Hides shared object files
HideArchiveFiles.label = Archive files
HideArchiveFiles.description = Hides Archive files
HideObjectFiles.label = Object files
HideObjectFiles.description = Hides Object files
2004-04-02 16:27:05 +00:00
HideNonCElements.label = Non-C resource
2004-03-30 05:35:52 +00:00
HideNonCElements.description = Show only C elements
2004-04-02 16:27:05 +00:00
HideNonCProjects.label = Non-C projects
HideNonCProjects.description = Show only C projects
2004-03-30 05:35:52 +00:00
HideReferencedLibraries.label = Referenced libraries
HideReferencedLibraries.description = Hides referenced libraries i.e. those not contained inside the project itself
HideCFiles.label = C files
HideCFiles.description = Hides all C files
HideHeaderFiles.label = Header files
HideHeaderFiles.description = Hides all Header files
2004-03-31 07:57:18 +00:00
2004-08-04 20:05:53 +00:00
HideUsingDirective.label = Using directive
HideMacroDirective.description = Hides using directives
HideMacroDirective.label = Macro directive
HideMacrodirective.description = Hides Macro directives
#
2004-04-21 06:15:23 +00:00
WorkInProgress.name = Work In Progress
2004-06-11 18:38:39 +00:00
CDTSearch.name = Search
2005-03-22 17:00:43 +00:00
CDTParser.name = Parser
2004-06-11 18:38:39 +00:00
2004-05-18 02:29:20 +00:00
CDTIndexerProperty.name = C/C++ Indexer
2004-05-03 17:29:17 +00:00
2004-11-01 16:01:29 +00:00
CDTHelpProperty.name = C/C++ Documentation
2004-05-25 23:48:56 +00:00
CDTFileTypesProperty.name = C/C++ File Types
2004-04-21 06:15:23 +00:00
cDocumentFactory = C Document Factory
2004-04-26 15:51:29 +00:00
cDocumentSetupParticipant = C Document Setup Participant
2004-05-20 02:18:09 +00:00
defaultPathContainerPage = Default Path Container
## CEditor Fonts
CEditorFontDefiniton.label = C/C++ Editor Text Font
CEditorFontDefintion.description = The editor text font is used by C/C++ editors.
#--- presentation
CPresentation.label = C/C++
CEditorPresentation.label = Editor
2004-05-21 20:33:16 +00:00
CDTIndexerMarker.label = C/C++ Indexer Markers
2004-05-26 14:49:48 +00:00
#Browsing
2004-07-15 18:27:15 +00:00
CBrowsing.perspective.name = C/C++ Browsing
2004-05-26 14:49:48 +00:00
CBrowsing.viewCategoryName = C/C++ Browsing
CBrowsing.projectsViewName = Projects
CBrowsing.namespacesViewName = Namespaces
CBrowsing.typesViewName = Types
CBrowsing.membersViewName = Members
CBrowsing.preferencePageName = Browsing
2004-06-01 05:13:07 +00:00
2004-07-15 18:27:15 +00:00
#Type Hierarchy
CHierarchy.viewCategoryName = C/C++ Type Hierarchy
CHierarchy.perspective.name = C/C++ Type Hierarchy
CHierarchy.hierarchyViewName = Hierarchy
ActionDefinition.open.hierarchy.name = Open Hierarchy
ActionDefinition.open.hierarchy.description = Open the hierarchy of the selected element
OpenTypeInHierarchyAction.label = Open Type in Hierarch&y...
OpenTypeInHierarchyAction.description = Opens a type selected from the all types dialog in a type hierarchy
OpenTypeInHierarchyAction.tooltip = Opens a Type in a Type Hierarchy
ActionDefinition.openTypeInHierarchy.name = Open Type in Hierarchy
ActionDefinition.openTypeInHierarchy.description = Open a type in the type hierarchy view
ActionDefinition.openTypeHierarchy.name = Open Type Hierarchy
ActionDefinition.openTypeHierarchy.description = Open a type hierarchy on the selected element
OpenTypeHierarchyAction.label = Open Type Hie&rarchy
OpenTypeHierarchyAction.tooltip = Opens a Type Hierarchy for the Selected Element
ViewCommand.typeHierarchy.name = C Type Hierarchy
ViewCommand.typeHierarchy.description = Show the Type Hierarchy view
2004-06-01 05:13:07 +00:00
# hovering contribution
CEditorTextHoversName = C Editor Text Hovers
sourceHover = Source
sourceHoverDescription = Shows the source of the selected element.
cdocHover = Documentation
cdocHoverDescription = Shows the documentation of the selected element.
sequentialHover = Combined Hover
sequentialHoverDescription = Tries the hovers in the sequence listed below and uses the one which fits best for the selected element and the current context.
annotationHover = Annotation Description
annotationHoverDescription = Shows the description of the selected annotation.
problemHover = Problem Description
problemHoverDescription = Shows the description of the selected problem.
2004-08-04 17:05:39 +00:00
#
appearancePrefName = Appearance
2004-08-25 00:10:08 +00:00
2005-03-07 21:35:35 +00:00
# PathEntry Variable Preference Name
pathEntryVariablesPrefName = PathEntry Variables
2004-08-25 00:10:08 +00:00
#--- folding
foldingStructureProvidersExtensionPoint = Folding Structure Providers
defaultFoldingStructureProviderName = Default C Folding
Folding.label = F&olding
2004-10-26 15:02:37 +00:00
# Merge fonts
cCompareFontDefiniton.label = C/C++ compare text font
cCompareFontDefiniton.description = The C/C++ compare text font is used by C/C++ compare/merge tools.
2004-11-19 18:53:42 +00:00
# External Search Editor
ExternalSearchEditor.name = External Search Editor
2004-12-10 17:22:41 +00:00
#--- templates
c.contextType.name = C
2005-03-08 19:46:46 +00:00
# completion
2006-05-09 15:08:50 +00:00
completionContributors = Content Assist Completion Contributor
2005-04-27 19:18:13 +00:00
# Indexer Preference Name
indexerPrefName = Indexer
# indexer names
2006-05-22 19:39:55 +00:00
CDTIndexer.domsourceindexer = Full C/C++ Indexer (slow but accurate)
2005-06-10 03:13:25 +00:00
CDTIndexer.nullindexer = No Indexer (search-based features will not work correctly)
2006-05-22 19:39:55 +00:00
CDTIndexer.fastindexer = Fast C/C++ Indexer (faster but less accurate)
2005-12-21 21:01:29 +00:00
IndexView.name = C/C++ Index
2006-05-23 03:17:52 +00:00
RebuildIndex.name = Rebuild Index
2006-06-30 09:42:39 +00:00
indexerPage.name = Indexer Page
proposalFilter.name = Code Completion Proposal Filter
includeBrowser.name = Include Browser
2006-07-03 09:11:48 +00:00
cSearchPage.name = CSearchPage
# dummy label (not displayed)
Dummy.label = dummy
# Common Navigator
navigatorContent.name = CDT Elements