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.
72 lines
1.8 KiB
72 lines
1.8 KiB
// Notification message constants for user-facing notifications
|
|
// Add new notification messages here as needed
|
|
|
|
export const NOTIFY_PERSON_HIDDEN = {
|
|
title: "Person Outside Your Network",
|
|
message: "This person is not visible to you.",
|
|
};
|
|
|
|
export const NOTIFY_UNKNOWN_PERSON = {
|
|
title: "Unidentified Person",
|
|
message: "Nobody specific was recognized.",
|
|
};
|
|
|
|
export const NOTIFY_CONTACT_LOADING_ISSUE = {
|
|
title: "Contact Loading Issue",
|
|
message: "Some contact information may be unavailable.",
|
|
};
|
|
|
|
export const NOTIFY_FEED_LOADING_ISSUE = {
|
|
title: "Feed Loading Issue",
|
|
message: "Some feed data may be unavailable. Pull to refresh.",
|
|
};
|
|
|
|
export const NOTIFY_CONFIRMATION_ERROR = {
|
|
title: "Error",
|
|
message: "There was a problem submitting the confirmation.",
|
|
};
|
|
|
|
export const NOTIFY_DEFAULT_TO_ACTIVE_DID = {
|
|
title: "Your Info",
|
|
message: "No user was specified so showing your info.",
|
|
};
|
|
|
|
export const NOTIFY_CONTACT_DELETED = {
|
|
title: "Deleted",
|
|
message: "Contact has been removed.",
|
|
};
|
|
|
|
export const NOTIFY_CONTACT_DELETE_FAILED = {
|
|
title: "Error",
|
|
message: "Failed to delete contact.",
|
|
};
|
|
|
|
export const NOTIFY_REGISTRATION_SUCCESS = {
|
|
title: "Registration Success",
|
|
message: "has been registered.",
|
|
};
|
|
|
|
export const NOTIFY_REGISTRATION_ERROR = {
|
|
title: "Registration Error",
|
|
message: "Something went wrong during registration.",
|
|
};
|
|
|
|
export const NOTIFY_SERVER_ACCESS_ERROR = {
|
|
title: "Error",
|
|
message: "There was a problem accessing the server. Try again later.",
|
|
};
|
|
|
|
export const NOTIFY_NO_IDENTITY_ERROR = {
|
|
title: "No Identity",
|
|
message: "There is no identity to use to check visibility.",
|
|
};
|
|
|
|
export const NOTIFY_VISIBILITY_SET = {
|
|
title: "Visibility Set",
|
|
message: "visibility updated.",
|
|
};
|
|
|
|
export const NOTIFY_VISIBILITY_REFRESHED = {
|
|
title: "Visibility Refreshed",
|
|
message: "visibility status updated.",
|
|
};
|
|
|