package domain const ( DomainAlreadyExists = "A domain with this name already exists under this TLD." DomainCreationFailed = "Failed to create domain." DomainDeletionFailed = "Failed to delete domain." DomainHasMailboxes = "Cannot delete a domain that has mailboxes. Remove all mailboxes first." DomainNameInvalid = "Domain name must contain only lowercase letters, numbers, and hyphens." DomainNameRequired = "Domain name is required." DomainNotFound = "Domain not found." DomainTLDRequired = "A TLD must be selected for the domain." TLDAlreadyExists = "A TLD with this name already exists." TLDCreationFailed = "Failed to create TLD." TLDDeletionFailed = "Failed to delete TLD." TLDHasDomains = "Cannot delete a TLD that has registered domains. Remove all domains first." TLDNameInvalid = "TLD name must contain only lowercase letters, numbers, and hyphens." TLDNameRequired = "TLD name is required." TLDNotFound = "TLD not found." TLDProtected = "Default TLDs cannot be deleted." TLDUpdateFailed = "Failed to update TLD." )