Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a2ae101587bdb5f61a37200f1aeb76ff5acd3dcc (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
###############################################################################
# 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
###############################################################################
### Eclipse CDT Core Search messages.

engine.searching = Searching...
exception.wrongFormat = Wrong format
process.name = C/C++ Indexer
manager.filesToIndex = {0} files to index
indexerJob = C/C++ Indexer
indexerMarker.prefix= C/C++ Indexer Problem:
indexerMarker.processing= Processing C/C++ Index Markers
indexNotificationJob=Updating C/C++ Indexer clients

convention.illegalIdentifier= Illegal identifier
convention.invalid= Invalid identifier
convention.scope.leadingUnderscore= Scope starts with underscore
convention.scope.lowercaseName= Scope starts with lower case
convention.scope.nullName= Scope name is null
convention.scope.emptyName= Scope name is empty
convention.scope.dotName= Scope name starts or ends with a .
convention.scope.nameWithBlanks= Scope name has blanks

convention.class.nullName= Class name is null
convention.class.nameWithBlanks= Class name has blanks
convention.class.dollarName= Class name has $
convention.class.leadingUnderscore= Class name starts with underscore
convention.class.lowercaseName= Class name starts with lower case
convention.class.invalidName= Class name is invalid

convention.namespace.nullName= Namespace is null
convention.namespace.nameWithBlanks= Namespace has blanks
convention.namespace.dollarName= Namespace has $
convention.namespace.leadingUnderscore= Namespace starts with underscore
convention.namespace.lowercaseName= Namespace starts with lower case
convention.namespace.invalidName= Namespace is invalid

convention.filename.nullName=File name is blank
convention.filename.invalid=File name contains illegal characters
convention.filename.possiblyInvalid=File name contains non-standard or illegal characters
convention.filename.nameWithBlanks=File name contains spaces
convention.headerFilename.filetype=File extension does not correspond to known header file types
convention.sourceFilename.filetype=File extension does not correspond to known source file types

convention.enum.nullName= Enum name is null
convention.enum.nameWithBlanks= Enum name has blanks
convention.enum.dollarName= Enum name has $
convention.enum.leadingUnderscore= Enum name starts with underscore
convention.enum.lowercaseName= Enum name starts with lower case
convention.enum.invalidName= Enum name is invalid
Util_unexpectedError=Unexpected error

Addr_valueOutOfRange=Address is outside valid range.

Back to the top