15 lines
462 B
TypeScript
15 lines
462 B
TypeScript
/**
|
|
* Constants for entity-related strings, particularly for unnamed/unknown person entities
|
|
*/
|
|
|
|
// Core unnamed entity names
|
|
export const UNNAMED_ENTITY_NAME = "Unnamed";
|
|
|
|
// Descriptive phrases for unnamed entities
|
|
export const SOMEONE_UNNAMED = "Someone Unnamed";
|
|
export const THAT_UNNAMED_PERSON = "That unnamed person";
|
|
export const UNNAMED_PERSON = "unnamed person";
|
|
|
|
// Project-related unnamed entities
|
|
export const UNNAMED_PROJECT = "Unnamed Project";
|