1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

fix NLS strings

This commit is contained in:
Vivian Kong 2009-03-17 16:53:34 +00:00
parent 2a023a46e0
commit 0864a48b3d

View file

@ -28,14 +28,14 @@ ScannerProblemFactory.error.preproc.warning=#warning encountered with text: {0}
ScannerProblemFactory.error.preproc.inclusionNotFound=Unresolved inclusion: {0}
ScannerProblemFactory.error.preproc.definitionNotFound=Macro definition not found: {0}
ScannerProblemFactory.error.preproc.invalidMacroDefn=Macro definition malformed for macro: {0}
ScannerProblemFactory.error.preproc.invalidMacroRedefn=Invalid macro redefinition for macro : {0}
ScannerProblemFactory.error.preproc.unbalancedConditional=Preprocessor conditionals unbalanced : {0}
ScannerProblemFactory.error.preproc.conditionalEval=Expression evaluation error for condition : {0}
ScannerProblemFactory.error.preproc.macroUsage=Macro usage error for macro : {0}
ScannerProblemFactory.error.preproc.circularInclusion=Circular inclusion for file : {0}
ScannerProblemFactory.error.preproc.invalidDirective=Invalid preprocessor directive : {0}
ScannerProblemFactory.error.preproc.macroPasting=Invalid use of macro pasting in macro : {0}
ScannerProblemFactory.error.preproc.missingRParen=missing ')' in parameter list of macro : {0}
ScannerProblemFactory.error.preproc.invalidMacroRedefn=Invalid macro redefinition for macro: {0}
ScannerProblemFactory.error.preproc.unbalancedConditional=Preprocessor conditionals unbalanced: {0}
ScannerProblemFactory.error.preproc.conditionalEval=Expression evaluation error for condition: {0}
ScannerProblemFactory.error.preproc.macroUsage=Macro usage error for macro: {0}
ScannerProblemFactory.error.preproc.circularInclusion=Circular inclusion for file: {0}
ScannerProblemFactory.error.preproc.invalidDirective=Invalid preprocessor directive: {0}
ScannerProblemFactory.error.preproc.macroPasting=Invalid use of macro pasting in macro: {0}
ScannerProblemFactory.error.preproc.missingRParen=missing '')'' in parameter list of macro: {0}
ScannerProblemFactory.error.preproc.invalidVaArgs=__VA_ARGS__ can only appear in the expansion of a C99 variadic macro
ScannerProblemFactory.error.scanner.invalidEscapeChar=Invalid escape character encountered
@ -52,11 +52,11 @@ ScannerProblemFactory.error.scanner.expressionSyntaxError=Expression syntax erro
ScannerProblemFactory.error.scanner.illegalIdentifier=Illegal identifier in defined()
ScannerProblemFactory.error.scanner.badConditionalExpression=Bad conditional expression
ScannerProblemFactory.error.scanner.unexpectedEOF=Unexpected End Of File encountered
ScannerProblemFactory.error.scanner.badCharacter=Bad character sequence encountered : {0}
ScannerProblemFactory.error.scanner.badCharacter=Bad character sequence encountered: {0}
ParserProblemFactory.error.syntax.syntaxError=Syntax error
ASTProblemFactory.error.semantic.nameNotFound=Attempt to use symbol failed : {0}
ASTProblemFactory.error.semantic.nameNotFound=Attempt to use symbol failed: {0}
BaseProblemFactory.problemPattern={0} in file: {1}:{2, number, integer}