Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 27011dd88bfb078202d1a8c00596b3a9ec8977ea (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
###############################################################################
# Copyright (c) 2004, 2006 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
###############################################################################

# ------- AbstractFileCreationWizard ------- 
AbstractFileCreationWizard.title= New File

# ----------- AbstractFileCreationWizardPage -------------
AbstractFileCreationWizardPage.error.SelectedProjectError= Error in determining the selected project.
AbstractFileCreationWizardPage.error.DefaultSourceFolderError= Error in determining the default source folder.
AbstractFileCreationWizardPage.error.NotAvailableForNonCProjects= The wizard is not available for non C/C++ projects.
AbstractFileCreationWizardPage.sourceFolder.label=Source &Folder:
AbstractFileCreationWizardPage.sourceFolder.button=Br&owse...
AbstractFileCreationWizardPage.ChooseSourceFolderDialog.title=Folder Selection
AbstractFileCreationWizardPage.ChooseSourceFolderDialog.description=&Choose a source folder:
AbstractFileCreationWizardPage.error.EnterSourceFolderName=Source folder name is empty.
AbstractFileCreationWizardPage.error.NotAFolder=''{0}'' is not a project or folder.
AbstractFileCreationWizardPage.error.NotASourceFolder=Folder ''{0}'' is not a source folder.
AbstractFileCreationWizardPage.error.ProjectClosed=Project ''{0}'' must be accessible.
AbstractFileCreationWizardPage.error.FolderDoesNotExist=Folder ''{0}'' does not exist.
AbstractFileCreationWizardPage.warning.NotACProject=Folder is not a C/C++ project.
AbstractFileCreationWizardPage.warning.NotInACProject=Folder is not in a C/C++ project.

# ------- NewHeaderFileCreationWizard ------- 
NewHeaderFileCreationWizard.title= New Header File

# ------- NewSourceFileCreationWizard ------- 
NewSourceFileCreationWizard.title= New Source File

# ----------- NewHeaderFileCreationWizardPage -------------
NewHeaderFileCreationWizardPage.title= New Header File
NewHeaderFileCreationWizardPage.description= Create a new header file.
NewHeaderFileCreationWizardPage.headerFile.label= Header File:
NewHeaderFileCreationWizardPage.error.EnterFileName=File name is empty.
NewHeaderFileCreationWizardPage.error.FileNotInSourceFolder=File must be inside source folder.
NewHeaderFileCreationWizardPage.error.FileExists=File already exists.
NewHeaderFileCreationWizardPage.error.MatchingFolderExists=A folder with the same name already exists.
NewHeaderFileCreationWizardPage.error.MatchingResourceExists=A resource with the same name already exists.
NewHeaderFileCreationWizardPage.error.FolderDoesNotExist=Folder ''{0}'' does not exist.
NewHeaderFileCreationWizardPage.warning.FileNameDiscouraged=File name is discouraged. {0}.
NewHeaderFileCreationWizardPage.error.InvalidFileName=File name is not valid. {0}.

# ----------- NewSourceFileCreationWizardPage -------------
NewSourceFileCreationWizardPage.title= New Source File
NewSourceFileCreationWizardPage.description= Create a new source file.
NewSourceFileCreationWizardPage.sourceFile.label= Source File:
NewSourceFileCreationWizardPage.error.EnterFileName=File name is empty.
NewSourceFileCreationWizardPage.error.FileNotInSourceFolder=File must be inside source folder.
NewSourceFileCreationWizardPage.error.FileExists=File already exists.
NewSourceFileCreationWizardPage.error.MatchingFolderExists=A folder with the same name already exists.
NewSourceFileCreationWizardPage.error.MatchingResourceExists=A resource with the same name already exists.
NewSourceFileCreationWizardPage.error.FolderDoesNotExist=Folder ''{0}'' does not exist.
NewSourceFileCreationWizardPage.warning.FileNameDiscouraged=File name is discouraged. {0}.
NewSourceFileCreationWizardPage.error.InvalidFileName=File name is not valid. {0}.

# ----------- NewSourceFileGenerator -------------
NewSourceFileGenerator.createFile.task= Creating
NewSourceFileGenerator.createFile.mainTask= Creating file....
NewSourceFileGenerator.includeGuard.suffix= _H

Back to the top