-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Copy correction required for claim emails. #1550
Conversation
Signed-off-by: Aindriu Lavelle <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Following are revised email notification copies:
public static final String MAIL_TOPICREQUEST_CONTENT =
"Dear User, \nA request for creating a new topic %s has been submitted in Klaw.";
public static final String MAIL_TOPICPROMOTIONREQUEST_CONTENT =
"Dear User, \nA request to promote the topic %s to the next environment has been submitted in Klaw.";
public static final String MAIL_TOPICUPDATEREQUEST_CONTENT =
"Dear User, \nA request to update the topic %s has been submitted in Klaw.";
public static final String MAIL_TOPICDELETEREQUEST_CONTENT =
"Dear User, \nA request to delete the topic %s has been submitted in Klaw.";
public static final String MAIL_TOPICCLAIMREQUEST_CONTENT =
"Dear User,\nA request to claim the topic '%s' has been submitted in Klaw.";
public static final String MAIL_TOPICREQUESTAPPROVAL_CONTENT =
"Dear User, \nYour topic request for %s has been approved.\n";
public static final String MAIL_TOPICREQUESTDENIAL_CONTENT =
"Dear User, \nYour topic request for %s has been declined.\nReason: %s\n";
public static final String MAIL_ACLREQUEST_CONTENT =
"Dear User, \nA request to create a new ACL %s for the topic %s has been submitted in Klaw.";
public static final String MAIL_ACLREQUESTDELETE_CONTENT =
"Dear User, \nA request to delete the ACL %s for the topic %s has been submitted in Klaw.";
public static final String MAIL_ACLREQUESTAPPROVAL_CONTENT =
"Dear User, \nYour ACL request %s for the topic %s has been approved.";
public static final String MAIL_ACLREQUESTDENIAL_CONTENT =
"Dear User, \nYour ACL request for %s for the topic %s has been declined.\nReason: %s";
public static final String MAIL_REGISTERUSER_CONTENT =
"Dear Super User,\nA new user registration request is pending:\n\nUser name: %s\nName: %s\nTeam: %s\nRole: %s";
public static final String MAIL_REGISTERUSER_SAAS_CONTENT =
"Dear Super User, \nA request for new user registration has been received from:\n\nUser name: %s \nName: %s ";
public static final String MAIL_REGISTERUSERTOUSER_CONTENT =
"Dear User, \nThank you for registering in Klaw. Below are your details. \n\nUser name: %s \nName: %s \nTeam: %s \nRole: %s \n\n Your account is pending activation.";
public static final String MAIL_REGISTERUSERTOUSER_SAAS_CONTENT =
"Dear User, \nThank you for registering in Klaw. Below are your registration details. \n\nUser name: %s \nPassword: %s \nName: %s \nTenant: %s \nTeam: %s \nRole: %s \n\n Your account is pending activation.";
public static final String MAIL_REGISTERUSERTOUSER_SAAS_ADMIN_CONTENT =
"Dear User, \nThank you for registering in Klaw. Below are your registration details. \n\nUser name: %s \nPassword: %s \nName: %s \nTeam: %s \nRole: %s \n\n ACTIVATE: Click this link %s to activate your account.";
public static final String MAIL_RECONTOPICS_CONTENT =
"Dear User, \n These are the topics that require reconciliation:\n\nTenant: %s\nTopics: %s";
public static final String MAIL_NEWUSERADDED_CONTENT =
"Dear User,\n Congratulations, you have been granted access to Klaw.. \n\nUser name: %s\nPassword: %s";
public static final String MAIL_PASSWORDRESET_CONTENT =
"Dear User,\nA password reset for your Klaw account has been requested.\n\nUse the Reset Token to update your password: %s\nIt will be valid for 10 minutes.\n\nIf you did not request this change, please ignore this email.";
public static final String MAIL_PASSWORDCHANGED_CONTENT =
"Dear User,\nYou have successfully changed your password.\n If you did not request a password change, please contact your administrator.";
Signed-off-by: Aindriu Lavelle <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thanks!
About this change - What it does
Corrects mistakes in copies and or adds improvement to copy.
Resolves: #xxxxx
Why this way
This will make it easier for users to understand what is being shown to them.