Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5c141d169d6490488361b38f9f05173de99d457d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
###############################################################################
# Copyright (c) 2000, 2006 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#     IBM Corporation - initial API and implementation
###############################################################################

# ------- AbstractOpenWizardAction ------- 

AbstractOpenWizardAction.noproject.title=New
AbstractOpenWizardAction.noproject.message=A project needs to be created first.\nOpen the 'New Project' wizard'?

AbstractOpenWizardAction.createerror.title=Open Wizard
AbstractOpenWizardAction.createerror.message=The wizard could not be opened. See log for details.

# ------- NewElementWizard ------- 

NewElementWizard.op_error.title=New
NewElementWizard.op_error.message=Creation of element failed.

# -----------NewClassWizardPage -------------
NewClassWizardPage.operationdesc=Creating type....
NewClassWizardPage.classname.label=&Name:

NewClassWizardPage.baseclass.label=&Base class:
NewClassWizardPage.baseclass.button=Brows&e...
NewClassWizardPage.baseclass.access.public=&public
NewClassWizardPage.baseclass.access.protected=pro&tected
NewClassWizardPage.baseclass.access.private=p&rivate
NewClassWizardPage.baseclass.access.access=&default
NewClassWizardPage.baseclass.access.label=Access:

NewClassWizardPage.constdest.virtualdestructor=&Virtual Destructor
NewClassWizardPage.constdest.inline=&Inline
NewClassWizardPage.constdest.includeguard=Include &Guard

NewClassWizardPage.files.header=Header File:
NewClassWizardPage.files.body=Body File:
NewClassWizardPage.files.linkFileButton=Link to file

CreateLinkedResourceGroup.resolvedPathLabel=Resolved Location:
CreateLinkedResourceGroup.browseButton=Browse...
CreateLinkedResourceGroup.variablesButton=Variables...
CreateLinkedResourceGroup.open=Open
CreateLinkedResourceGroup.targetSelectionLabel= Select the link target.
CreateLinkedResourceGroup.linkTargetNotFile= Link target must be a file
CreateLinkedResourceGroup.linkTargetNotFolder= Link target must be a folder
CreateLinkedResourceGroup.linkTargetNonExistent= Link target does not exist
CreateLinkedResourceGroup.linkTargetEmpty = Link target must be specified
CreateLinkedResourceGroup.linkTargetInvalid = Link target name is invalid
CreateLinkedResourceGroup.linkTargetNotAbsolute = Link target must be absolute path or path variable and relative path.

NewClassWizardPage.error.EnterClassName=Class name is empty.
NewClassWizardPage.error.ClassNameExists=Class already exists.
NewClassWizardPage.error.InvalidClassName=Class name is not valid. {0}
NewClassWizardPage.error.QualifiedName=Class name must not be qualified.
NewClassWizardPage.warning.ClassNameDiscouraged=Class name is discouraged. {0}

NewClassWizardPage.error.InvalidBaseClassName=Base class name is not valid.
NewClassWizardPage.warning.BaseClassNotExists=Warning: Base class does not exist in current project.

NewClassWizardPage.operations.getProjectClasses=Looking for classes in project

NewClassWizardPage.error.NotAvailableForNonCppProjects= The wizard is not available for non C++ projects.
NewClassWizardPage.error.SelectedProjectError=Error in determining the selected project.
NewClassWizardPage.error.DefaultSourceFolderError=Error in determining the default source folder.

NewClassWizardPage.getProjectClasses.exception.title=Exception
NewClassWizardPage.getProjectClasses.exception.message=Unexpected exception. See log for details.
NewClassWizardPage.getProjectClasses.noclasses.title=Class Selection
NewClassWizardPage.getProjectClasses.noclasses.message=No classes available.

NewClassWizardPage.error.EnterHeaderFile=Header file is empty.
NewClassWizardPage.error.EnterBodyFile=Body file is empty.
NewClassWizardPage.error.NoHeaderFile=Header file does not exist.
NewClassWizardPage.error.NoBodyFile=Body file does not exist.

# ------- BaseClassSelectionDialog -----

BaseClassSelectionDialog.title=Choose Base Class
BaseClassSelectionDialog.message=&Choose a class (? = any character, * = any string):
BaseClassSelectionDialog.filter=

# --- New File ---
WizardNewFileCreationPage.progress = Creating
WizardNewFileCreationPage.errorTitle = Creation Problems
WizardNewFileCreationPage.fileLabel = File &name:
WizardNewFileCreationPage.file = file
WizardNewFileCreationPage.internalErrorTitle = Creation problems
WizardNewFileCreationPage.internalErrorMessage = Internal error: {0}
WizardNewFileCreationPage.fileExistsMessage = A file ''{0}'' already exists in the file system.

# ----------- SourceFolderSelectionDialog -------------
SourceFolderSelectionDialog.title= Folder Selection
SourceFolderSelectionDialog.description= &Choose a source folder:

Back to the top