Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a3505483b1dc98253f1030d5d21094cd8aa63552 (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
###############################################################################
# Copyright (c) 2004, 2007 QNX Software Systems 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:
#     QNX Software Systems - Initial API and implementation
#	  IBM Corporation
###############################################################################

# ------- NewClassCreationWizard ------- 
NewClassCreationWizard.title=New C++ Class

# -----------NewClassCreationWizardPage -------------
NewClassCreationWizardPage.title=C++ Class
NewClassCreationWizardPage.description=Create a new C++ class.
NewClassCreationWizardPage.error.SelectedProjectError=Error in determining the selected project.
NewClassCreationWizardPage.error.DefaultSourceFolderError=Error in determining the default source folder.
NewClassCreationWizardPage.error.NotAvailableForNonCppProjects= The wizard is not available for non C++ projects.

NewClassCreationWizardPage.getTypes.exception.title=Exception
NewClassCreationWizardPage.getTypes.exception.message=Unexpected exception. See log for details.
NewClassCreationWizardPage.getTypes.noClasses.title=Class Selection
NewClassCreationWizardPage.getTypes.noClasses.message=No classes available.
NewClassCreationWizardPage.getTypes.noNamespaces.title=Namespace Selection
NewClassCreationWizardPage.getTypes.noNamespaces.message=No namespaces available.

NewClassCreationWizardPage.sourceFolder.label=&Source Folder:
NewClassCreationWizardPage.sourceFolder.button=Br&owse...
NewClassCreationWizardPage.error.EnterSourceFolderName=Source folder name is empty.
NewClassCreationWizardPage.error.NotAFolder=''{0}'' is not a project or folder.
NewClassCreationWizardPage.error.NotASourceFolder=Folder ''{0}'' is not a source folder.
NewClassCreationWizardPage.error.ProjectClosed=Project ''{0}'' must be accessible.
NewClassCreationWizardPage.warning.NotACProject=Folder is not a C/C++ project.
NewClassCreationWizardPage.warning.NotInACProject=Folder is not in a C/C++ project.

NewClassCreationWizardPage.namespace.label=&Namespace:
NewClassCreationWizardPage.namespace.button=Bro&wse...

NewClassCreationWizardPage.error.EnterNamespace=Namespace is empty.
NewClassCreationWizardPage.error.EnclosingNamespaceNotExists=Enclosing namespace does not exist.
NewClassCreationWizardPage.error.NamespaceExistsDifferentCase=Namespace with the same name exists in a different scope.
NewClassCreationWizardPage.error.TypeMatchingNamespaceExists=Another type with the same name as specified namespace exists.
NewClassCreationWizardPage.error.TypeMatchingNamespaceExistsDifferentCase=Another type with the same name as specified namespace exists in a different scope.
NewClassCreationWizardPage.warning.NamespaceNotExists=Namespace does not exist. A new namespace will be created.
NewClassCreationWizardPage.error.InvalidNamespace=Namespace is not valid. {0}.
NewClassCreationWizardPage.warning.NamespaceDiscouraged=Namespace is discouraged. {0}.

NewClassCreationWizardPage.error.EnterEnclosingClassName=Enclosing class name is empty.
NewClassCreationWizardPage.error.EnclosingClassNotExists=Enclosing class does not exist.
NewClassCreationWizardPage.error.EnclosingClassExistsDifferentCase=Enclosing class with same name exists in a different scope.
NewClassCreationWizardPage.error.InvalidEnclosingClassName=Enclosing class name is not valid. {0}.

NewClassCreationWizardPage.error.noTypeCache=Unable to access type cache.

NewClassCreationWizardPage.className.label=&Class Name:
NewClassCreationWizardPage.error.EnterClassName=Class name is empty.
NewClassCreationWizardPage.error.ClassNameExists=Class already exists.
NewClassCreationWizardPage.error.ClassNameExistsDifferentCase=Class with same name exists in a different scope.
NewClassCreationWizardPage.error.TypeMatchingClassExists=Another type with the same name exists.
NewClassCreationWizardPage.error.TypeMatchingClassExistsDifferentCase=Another type with the same name exists in a different scope.
NewClassCreationWizardPage.error.InvalidClassName=Class name is not valid. {0}.
NewClassCreationWizardPage.error.QualifiedClassName=Class name must not be qualified.
NewClassCreationWizardPage.warning.ClassNameDiscouraged=Class name is discouraged. {0}.

NewClassCreationWizardPage.baseClasses.label=&Base Classes:
NewClassCreationWizardPage.error.InvalidBaseClassName=Base class name is not valid. {0}.
NewClassCreationWizardPage.error.BaseClassNotExistsInProject=Base class ''{0}'' not in include paths for current project.

NewClassCreationWizardPage.methodStubs.label=&Method Stubs:

NewClassCreationWizardPage.error.NotAFile=''{0}'' is not a file.
NewClassCreationWizardPage.error.FolderDoesNotExist=Folder ''{0}'' does not exist.
NewClassCreationWizardPage.error.SourceFolderRequired=The source folder is required.

NewClassCreationWizardPage.useDefaultLocation.label=&Use Default
NewClassCreationWizardPage.headerFile.label=&Header:
NewClassCreationWizardPage.headerFile.button=Br&owse...
NewClassCreationWizardPage.ChooseHeaderFileDialog.title=Header File Selection
NewClassCreationWizardPage.error.EnterHeaderFileName=Header file name is empty.
NewClassCreationWizardPage.error.HeaderFileNotInSourceFolder=Header file must be inside source folder.
NewClassCreationWizardPage.warning.NotAHeaderFile=''{0}'' is not a header file.
NewClassCreationWizardPage.warning.HeaderFileNameDiscouraged=Header file name is discouraged. {0}.
NewClassCreationWizardPage.warning.HeaderFileExists=Header file already exists. Contents will be appended.
NewClassCreationWizardPage.error.InvalidHeaderFileName=Header file name is not valid. {0}.

NewClassCreationWizardPage.sourceFile.button=Br&owse...
NewClassCreationWizardPage.sourceFile.label=Sourc&e:
NewClassCreationWizardPage.ChooseSourceFileDialog.title=Source File Selection
NewClassCreationWizardPage.error.EnterSourceFileName=Source file name is empty.
NewClassCreationWizardPage.error.SourceFileNotInSourceFolder=Source file must be inside source folder.
NewClassCreationWizardPage.warning.NotASourceFile=''{0}'' is not a source file.
NewClassCreationWizardPage.warning.SourceFileNameDiscouraged=Source file name is discouraged. {0}
NewClassCreationWizardPage.warning.SourceFileExists=Source file already exists. Contents will be appended.
NewClassCreationWizardPage.error.InvalidSourceFileName=Source file name is not valid. {0}

# -----------BaseClassesListDialogField -------------
BaseClassesListDialogField.buttons.add=&Add...
BaseClassesListDialogField.buttons.remove=&Remove
BaseClassesListDialogField.buttons.up=U&p
BaseClassesListDialogField.buttons.down=&Down
BaseClassesListDialogField.headings.name=Name
BaseClassesListDialogField.headings.access=Access
BaseClassesListDialogField.headings.virtual=Virtual

# -----------BaseClassesLabelProvider -------------
BaseClassesLabelProvider.boolean.yes.label=yes
BaseClassesLabelProvider.boolean.no.label=no
BaseClassesLabelProvider.access.public.label=public
BaseClassesLabelProvider.access.protected.label=protected
BaseClassesLabelProvider.access.private.label=private

# -----------MethodStubsDialogField -------------
MethodStubsDialogField.headings.name=Name
MethodStubsDialogField.headings.access=Access
MethodStubsDialogField.headings.virtual=Virtual
MethodStubsDialogField.headings.inline=Inline

# ------- NamespaceSelectionDialog -----
NamespaceSelectionDialog.title=Choose Namespace
NamespaceSelectionDialog.message=&Choose a namespace (? = any character, * = any string):
NamespaceSelectionDialog.filter=

# ------- EnclosingClassSelectionDialog -----
EnclosingClassSelectionDialog.title=Choose Enclosing Class
EnclosingClassSelectionDialog.message=&Choose a class (? = any character, * = any string):
EnclosingClassSelectionDialog.filter=

# ------- NewBaseClassSelectionDialog -----
NewBaseClassSelectionDialog.title=Choose Base Class
NewBaseClassSelectionDialog.message=&Choose a class (? = any character, * = any string):
NewBaseClassSelectionDialog.filter=
NewBaseClassSelectionDialog.access.label=Access
NewBaseClassSelectionDialog.virtual.label=Virtual
NewBaseClassSelectionDialog.addButton.label=&Add
NewBaseClassSelectionDialog.classadded.info=''{0}'' added.
NewBaseClassSelectionDialog.classalreadyadded.info=''{0}'' already added.
NewBaseClassSelectionDialog.addingclass.info=Adding ''{0}''...
NewBaseClassSelectionDialog.error.classnotadded=''{0}'' could not be added.
NewBaseClassSelectionDialog.getClasses.exception.title=Exception
NewBaseClassSelectionDialog.getClasses.exception.message=Unexpected exception. See log for details.
NewBaseClassSelectionDialog.getClasses.noclasses.title=Class Selection
NewBaseClassSelectionDialog.getClasses.noclasses.message=No classes available.

# ------- SourceFileSelectionDialog -----
SourceFileSelectionDialog.folderName.label=Folder Name:
SourceFileSelectionDialog.fileName.label=File Name:
SourceFileSelectionDialog.message.emptyList=No items.
SourceFileSelectionDialog.error.EnterFolderName=Folder name is empty.
SourceFileSelectionDialog.error.FolderDoesNotExist=Folder ''{0}'' does not exist.
SourceFileSelectionDialog.error.NotAFolder=''{0}'' must be a project or folder.
SourceFileSelectionDialog.error.NotASourceFolder=Folder ''{0}'' is not a valid source folder.
SourceFileSelectionDialog.error.ProjectClosed=Project ''{0}'' must be accessible.
SourceFileSelectionDialog.warning.NotACProject=Folder is not a C/C++ project.
SourceFileSelectionDialog.warning.NotInACProject=Folder is not in a C/C++ project.
SourceFileSelectionDialog.error.EnterFileName=File name is empty.
SourceFileSelectionDialog.error.NotAFile=''{0}'' is not a source file.
SourceFileSelectionDialog.error.NotASourceFile=''{0}'' is not a valid source file.
SourceFileSelectionDialog.warning.SourceFileExists=New class contents will be appended to existing file ''{0}''.

# -----------NewClassCodeGeneration -------------
NewClassCodeGeneration.createType.mainTask=Creating type....
NewClassCodeGeneration.createType.task.header=Creating header file....
NewClassCodeGeneration.createType.task.header.includePaths=Adding include paths....
NewClassCodeGeneration.createType.task.header.addIncludePaths=Adding new include paths to project....
NewClassCodeGeneration.createType.task.source=Creating source file....
NewClassCodeGeneration.createFile.task=Creating
NewClassCodeGeneration.stub.constructor.name=Constructor
NewClassCodeGeneration.stub.destructor.name=Destructor

Back to the top