Product Information > JADE Error Messages and System Messages > 6000 through 6999 - JADE Compiler Errors > 6321 - Expecting TranslatableString name

6321   Expecting TranslatableString name

Cause

This error occurs if a translatable string name is expected but one is not provided.

In the following example, an attempt is made to add a translatable string with an invalid name greeting (translatable strings must begin with an uppercase letter), using the addCompileTranslatableString method of the Schema class.

currentSchema.addCompileTranslatableString('greeting="Hello World"',                                                            errCode, errOffset, errLength);

Action

Correct your code.