Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7af10d453d18f3e529cae7e4ea5eeae01a760db0 (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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
#########################################
# (c) Copyright IBM Corp. 2000, 2001.
# All Rights Reserved.
######################################### 

# ------- CView -----------------
CView.make_edit_action =Project properties

# ------- Preference Page ------- 
 
ConsolePreferencePage.clearConsole.label=Always clear console before building
ConsolePreferencePage.autoOpenConsole.label=Open console when building
ConsolePreferencePage.consoleOnTop.label=Bring console to top when building (if present)
ConsolePreferencePage.consoleLines.label=Limit console output (# lines):
ConsolePreferencePage.consoleLines.errorMessage=Value must be an integer between 10 and 2147483647
ConsolePreferencePage.tabWidth.label=Display tab width:
ConsolePreferencePage.tabWidth.errorMessage=Value must be an integer between 1 and 100
ConsolePreferencePage.colorSettings.label=Console text color settings
ConsolePreferencePage.outputColor.label=Output text color
ConsolePreferencePage.infoColor.label=Information message text color
ConsolePreferencePage.errorColor.label=Error message text color

CBasePreferencePage.linkToEditor.label=Link view selection to active editor
CBasePreferencePage.CUChildren.label=Show file members in Project View
CBasePreferencePage.OutlineView.structuralParseMode.label=Follow #include's when parsing working copies.

CBasePreferencePage.editorFont.label=C Editor font:

CBasePreferencePage.bracketHighlightBox.label=Highlight matching brackets with box 
CBasePreferencePage.bracketHighlightClr.label=Highlight matching brackets with color
CBasePreferencePage.bracketColour.label=Bracket highlighting color

# ------- Project/Prefernces/Wizards COnfiguration blocks -------

ErrorParserBlock.label=Error Parsers
ErrorParserBlock.desc=Set the error parsers for this project

BinaryParserBlock.label=Binary Parser
BinaryParserBlock.desc=Set required binary parser for this project

BaseIndexerBlock.label=C/C++ Indexer
BaseIndexerBlock.desc=C/C++ Indexer setting for this project.
BaseIndexerBlock.comboLabel=Available indexers

ReferenceBlock.label= Projects
ReferenceBlock.desc= Referenced C/C++ Projects

# ------- ProjectConfigurationBlock------- 

ProjectConfigurationBlock.buildCmdText.label=The build command is an executable program which will be used by the builder to build your C project. If the build command is not on the current system environment path, you have to enter an absolute path name. If the build command is make then it will use the makefile which is located in the project folder
ProjectConfigurationBlock.buildArgsText.label=Build can be either incremental or full. You can specify different build arguments\nfor the two kinds.
ProjectConfigurationBlock.buildArgText.label=Additional build arguments

ProjectConfigurationBlock.buildLocation.label=Build command:
ProjectConfigurationBlock.buildLocation.button=Browse...
ProjectConfigurationBlock.fullBuildArguments.label=Full Build Arguments:
ProjectConfigurationBlock.incrBuildArguments.label=Incremental Build Arguments:
ProjectConfigurationBlock.error.InvalidBuildCommand=Invalid build command
 
# --- The new wizards ----
# FIXME: Remove the properties above when satisfy with wizards.

SettingsBlock.label=Build Settings
SettingsBlock.keepOnGoing=Keep Going On Error
SettingsBlock.stopOnError=Stop On Error
SettingsBlock.makeOption.label=Build Command
SettingsBlock.makeOption.use_default=Use Default
SettingsBlock.makeOption.build_cmd=Build Command:

#Strings for the platform selection tab
PlatformBlock.label.platform=Platform:
PlatformBlock.tip.platform=Select the platform you wish to deploy on
PlatformBlock.label.configs=Configurations:

# String constants for the build configuration tab
ConfigurationBlock.label=Build Information
ConfigurationBlock.type=Project Type
ConfigurationBlock.type.app=Application
ConfigurationBlock.type.shared=Shared Library/DLL
ConfigurationBlock.type.static=Static Library
ConfigurationBlock.build.label=Build Settings
ConfigurationBlock.build.continue=Continue On Error
ConfigurationBlock.build.stop=Stop On Error

# String constants for the build include path and preprocessor symbols
BuildPathInfoBlock.label=Paths and Symbols
BuildPathInfoBlock.paths=Include paths:
BuildPathInfoBlock.symbols=Defined symbols:
BuildPathInfoBlock.browse.path=New Include Path
BuildPathInfoBlock.browse.path.label=Path:
BuildPathInfoBlock.browse.symbol=New Defined Symbol
BuildPathInfoBlock.browse.symbol.label=Symbol:

StdMakeProjectWizard.op_error=Standard Make Error
StdMakeProjectWizard.title=Standard Make Project
StdMakeProjectWizard.description=Create a new Standard Make project.
StdMakeProjectWizardSettings.title=Standard Make Settings
StdMakeProjectWizardSettings.description=Define the Standard Make build settings.

StdCWizard.title=Standard Make C Project
StdCWizard.description=Create a new Standard Make C project.
StdCWizardSettings.title=Standard Make C Settings
StdCWizardSettings.description=Define the Standard Make C build settings.

StdCCWizard.title=Standard Make C++ Project
StdCCWizard.description=Create a new Standard Make C++ Project.
StdCCWizardSettings.title=Standard Make C++ Settings
StdCCWizardSettings.description=Define the Standard Make C++ build settings.

MngMakeProjectWizard.op_error=Managed Make Error
MngMakeProjectWizard.title=Managed Make Project
MngMakeProjectWizard.description=Create a new Managed Make project.
MngMakeProjectWizardSettings.title=Managed Make Settings
MngMakeProjectWizardSettings.description=Define the Managed Make build settings.

MngCWizard.title=Managed Make C Project
MngCWizard.description=Create a new Managed Make C project.
MngCWizardSettings.title=Managed Make C Settings
MngCWizardSettings.description=Define the Managed Make C build settings.

MngCCWizard.title=Managed Make C++ Project
MngCCWizard.description=Create a new Managed Make C++ Project.
MngCCWizardSettings.title=Managed Make C++ Settings
MngCCWizardSettings.description=Define the Managed Make C++ build settings.

CProjectWizard.op_error.title=Error Creating Project
CProjectWizard.op_error.message=Project cannot be created
CProjectWizard.op_description=C Project Wizard
CProjectWizard.windowTitle=New Project
CProjectWizard.description=C Project Wizard
CProjectWizard.title=C Project Wizard
CProjectWizardPage=C Wizard Page

# Defaults from ConvertProjectWizardPage
ConversionWizard.windowTitle=Convert C/C++ Projects
ConversionWizard.description=Select project(s) for conversion
ConversionWizard.title=Add a C++ Nature to project(s)
ConversionWizard.projectlist=Candidates for conversion

# Convert to C/C++
StdMakeConversionWizard.windowTitle=Convert Projects to C or C++
StdMakeConversionWizard.description=Select project(s) for conversion
StdMakeConversionWizard.title=Add a C or C++ Nature to selected project(s)

TabFolderPage=Tab Folder Page
TabFolderPage.title=Project
TabFolderPage.desc=Project Settings

# ------- CProjectPropertyPage------- 

CProjectPropertyPage.nocproject=Not a C builder
CProjectPropertyPage.closedproject=C information is not available for a closed project

# ------- Building ------- 

CBuilder.build_error=Could not execute builder "{0}" configured in the project property page.

# ------- Properties-------

CElementProperties.name=name
CElementProperties.elf_cpu=cpu
CElementProperties.elf_text=text
CElementProperties.elf_data=data
CElementProperties.elf_bss=bss
CElementProperties.elf_type=type
CElementProperties.elf_soname=soname
CElementProperties.elf_has_debug=debug
CElementProperties.elf_needed=needed

# ------- Compare -------

CMergeViewer.title=C Compare Viewer
CStructureCreator.name=C Compare

# ------- Editor ------------

Editor.Undo.label=Undo@Ctrl+Z
Editor.Undo.tooltip=Undo
Editor.Undo.image=
Editor.Undo.description=Undo

Editor.Redo.label=Redo@Ctrl+Y
Editor.Redo.tooltip=Redo
Editor.Redo.image=
Editor.Redo.description=Redo

Editor.Cut.label=Cut@Ctrl+X
Editor.Cut.tooltip=Cut
Editor.Cut.image=
Editor.Cut.description=Cut

Editor.Copy.label=&Copy@Ctrl+C
Editor.Copy.tooltip=Copy
Editor.Copy.image=
Editor.Copy.description=Copy

Editor.Paste.label=Paste@Ctrl+V
Editor.Paste.tooltip=Paste
Editor.Paste.image=
Editor.Paste.description=Paste

Editor.Delete.label=Delete@Delete
Editor.Delete.tooltip=Delete
Editor.Delete.image=
Editor.Delete.description=Delete

Editor.SelectAll.label=Select &All@Ctrl+A
Editor.SelectAll.tooltip=Select All
Editor.SelectAll.image=
Editor.SelectAll.description=Select All

Editor.ShiftRight.label=Sh&ift Right@Ctrl+I
Editor.ShiftRight.tooltip=Shift Right
Editor.ShiftRight.image=
Editor.ShiftRight.description=Shift the selected text to the right

Editor.ShiftLeft.label=S&hift Left@Ctrl+Shift+I
Editor.ShiftLeft.tooltip=Shift Left
Editor.ShiftLeft.image=
Editor.ShiftLeft.description=Shift the selected text to the left

Editor.FindReplace.label=Find/Replace...@Ctrl+F
Editor.FindReplace.tooltip=Find/Replace
Editor.FindReplace.image=
Editor.FindReplace.description=Find/Replace

Editor.AddBookmark.label=Boo&kmark...
Editor.AddBookmark.tooltip=Bookmark
Editor.AddBookmark.image=
Editor.AddBookmark.description=Add Bookmark
Editor.AddBookmark.dialog.title=Add Bookmark
Editor.AddBookmark.dialog.message=Enter Bookmark name

Editor.AddTask.label=&Task...
Editor.AddTask.tooltip=Task
Editor.AddTask.image=
Editor.AddTask.description=Add Task

Editor.Save.label=Save@Ctrl+S
Editor.Save.tooltip=Save
Editor.Save.image=
Editor.Save.description=Save

Editor.Revert.label=Re&vert
Editor.Revert.tooltip=Revert
Editor.Revert.image=
Editor.Revert.description=Revert

Editor.GotoLine.label=&Go to Line...@Ctrl+L
Editor.GotoLine.tooltip=Go to a Line
Editor.GotoLine.image=
Editor.GotoLine.description=Go to a line
Editor.GotoLine.dialog.title=Go to Line
Editor.GotoLine.dialog.message=Enter line number:
Editor.GotoLine.dialog.invalid_input=Invalid line number
Editor.GotoLine.dialog.invalid_range=Line number out of range

Editor.NextError.label= Go To Next Error
Editor.PreviousError.label=Go To Previous Error
Editor.NextError.tooltip= Jump to next error marker
Editor.PreviousError.tooltip=Jump to previous error marker


Editor.error.no_provider=Text editor does not have a document provider
Editor.error.save.title=Save Problems
Editor.error.save.message=Internal error: 
Editor.error.revert.title=Problems While Reverting to Saved State
Editor.error.revert.message=Internal error: 
Editor.error.no_input=Unable to read text editor input
Editor.error.invalid_input=Invalid text editor input

CEditorPreferencePage.description= C/C++ Editor Preferences

# ------- OpenIncludeDeclarationAction------------

OpenIncludeAction.label=&Open
OpenIncludeAction.tooltip=Open the Selected Include in the Editor
OpenIncludeAction.description=Open the selected include in the editor
OpenIncludeAction.dialog.title=Open Include
OpenIncludeAction.dialog.message=Select the file to open
OpenIncludeAction.error = No Includes Found
OpenIncludeAction.error.description = No include files were found that matched that name.


# ------- SearchDialogAction ---------------
SearchDialogAction.label=C/C++ Search...
SearchDialogAction.tooltip=Opens C/C++ Search Dialog
SearchDialogAction.description=Opens C/C++ Search Dialog


# ------- LexicalSortingAction------------

LexicalSortingAction.label=Sort
LexicalSortingAction.description=Sorts the elements in the outliner
LexicalSortingAction.tooltip=Sort
LexicalSortingAction.tooltip.on=Do Not Sort
LexicalSortingAction.tooltip.off=Sort

# ------- ClearOutputAction------------
ClearOutputAction.label=Clea&r Console
ClearOutputAction.tooltip=Clear Console 

# ------- New menu items to overwrite superclass ----------
CreateFileAction.text = &File
CreateFolderAction.text = F&older

# ------- Drag and Drop Message Text -----------
CViewDragNDrop.txt = already exists. Would you like to overwrite it?

# ------- EditorUtility Open Closed Project Text -----------
EditorUtility.closedproject = Project is closed
Editorutility.closedproject.description = The project {0} containing that declaration is closed.

Back to the top