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.
17 lines
503 B
17 lines
503 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 UNNAMED_MEMBER = "Unnamed Member";
|
|
export const UNNAMED_PERSON = "That unnamed person";
|
|
export const UNNAMED_USER = "unnamed user";
|
|
|
|
// Project-related unnamed entities
|
|
export const UNNAMED_PROJECT = "Unnamed Project";
|
|
|
|
|
|
|