You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
462 B
14 lines
462 B
/**
|
|
* 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";
|
|
|